mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-19 19:30:51 +00:00
Merge branch 'master' into accessibility
This commit is contained in:
commit
324f89f173
68
.github/actions/build-jtreg/action.yml
vendored
Normal file
68
.github/actions/build-jtreg/action.yml
vendored
Normal file
@ -0,0 +1,68 @@
|
||||
#
|
||||
# Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
# 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.
|
||||
#
|
||||
|
||||
name: 'Build JTReg'
|
||||
description: 'Build JTReg'
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: 'Get JTReg version configuration'
|
||||
id: version
|
||||
uses: ./.github/actions/config
|
||||
with:
|
||||
var: JTREG_VERSION
|
||||
|
||||
- name: 'Check cache for already built JTReg'
|
||||
id: get-cached
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: jtreg/installed
|
||||
key: jtreg-${{ steps.version.outputs.value }}
|
||||
|
||||
- name: 'Checkout the JTReg source'
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: openjdk/jtreg
|
||||
ref: jtreg-${{ steps.version.outputs.value }}
|
||||
path: jtreg/src
|
||||
if: (steps.get-cached.outputs.cache-hit != 'true')
|
||||
|
||||
- name: 'Build JTReg'
|
||||
run: |
|
||||
# Build JTReg and move files to the proper locations
|
||||
bash make/build.sh --jdk "$JAVA_HOME_17_X64"
|
||||
mkdir ../installed
|
||||
mv build/images/jtreg/* ../installed
|
||||
working-directory: jtreg/src
|
||||
shell: bash
|
||||
if: (steps.get-cached.outputs.cache-hit != 'true')
|
||||
|
||||
- name: 'Upload JTReg artifact'
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: bundles-jtreg-${{ steps.version.outputs.value }}
|
||||
path: jtreg/installed
|
||||
retention-days: 1
|
||||
34
.github/actions/get-jtreg/action.yml
vendored
34
.github/actions/get-jtreg/action.yml
vendored
@ -24,7 +24,7 @@
|
||||
#
|
||||
|
||||
name: 'Get JTReg'
|
||||
description: 'Download JTReg from cache or source location'
|
||||
description: 'Get JTReg'
|
||||
outputs:
|
||||
path:
|
||||
description: 'Path to the installed JTReg'
|
||||
@ -39,36 +39,12 @@ runs:
|
||||
with:
|
||||
var: JTREG_VERSION
|
||||
|
||||
- name: 'Check cache for JTReg'
|
||||
id: get-cached-jtreg
|
||||
uses: actions/cache@v4
|
||||
- name: 'Download JTReg artifact'
|
||||
id: download-jtreg
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: bundles-jtreg-${{ steps.version.outputs.value }}
|
||||
path: jtreg/installed
|
||||
key: jtreg-${{ steps.version.outputs.value }}
|
||||
|
||||
- name: 'Checkout the JTReg source'
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: openjdk/jtreg
|
||||
ref: jtreg-${{ steps.version.outputs.value }}
|
||||
path: jtreg/src
|
||||
if: steps.get-cached-jtreg.outputs.cache-hit != 'true'
|
||||
|
||||
- name: 'Build JTReg'
|
||||
run: |
|
||||
# If runner architecture is x64 set JAVA_HOME_17_X64 otherwise set to JAVA_HOME_17_arm64
|
||||
if [[ '${{ runner.arch }}' == 'X64' ]]; then
|
||||
JDK="$JAVA_HOME_17_X64"
|
||||
else
|
||||
JDK="$JAVA_HOME_17_arm64"
|
||||
fi
|
||||
# Build JTReg and move files to the proper locations
|
||||
bash make/build.sh --jdk "$JDK"
|
||||
mkdir ../installed
|
||||
mv build/images/jtreg/* ../installed
|
||||
working-directory: jtreg/src
|
||||
shell: bash
|
||||
if: steps.get-cached-jtreg.outputs.cache-hit != 'true'
|
||||
|
||||
- name: 'Export path to where JTReg is installed'
|
||||
id: path-name
|
||||
|
||||
120
.github/workflows/main.yml
vendored
120
.github/workflows/main.yml
vendored
@ -54,8 +54,8 @@ jobs:
|
||||
### Determine platforms to include
|
||||
###
|
||||
|
||||
select:
|
||||
name: 'Select platforms'
|
||||
prepare:
|
||||
name: 'Prepare the run'
|
||||
runs-on: ubuntu-22.04
|
||||
env:
|
||||
# List of platforms to exclude by default
|
||||
@ -73,7 +73,19 @@ jobs:
|
||||
docs: ${{ steps.include.outputs.docs }}
|
||||
|
||||
steps:
|
||||
# This function must be inlined in main.yml, or we'd be forced to checkout the repo
|
||||
- name: 'Checkout the scripts'
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
make/conf/github-actions.conf
|
||||
|
||||
- name: 'Build JTReg'
|
||||
id: jtreg
|
||||
uses: ./.github/actions/build-jtreg
|
||||
|
||||
# TODO: Now that we are checking out the repo scripts, we can put the following code
|
||||
# into a separate file
|
||||
- name: 'Check what jobs to run'
|
||||
id: include
|
||||
run: |
|
||||
@ -149,18 +161,18 @@ jobs:
|
||||
|
||||
build-linux-x64:
|
||||
name: linux-x64
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x64
|
||||
gcc-major-version: '10'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-x64 == 'true'
|
||||
if: needs.prepare.outputs.linux-x64 == 'true'
|
||||
|
||||
build-linux-x86-hs:
|
||||
name: linux-x86-hs
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x86
|
||||
@ -174,11 +186,11 @@ jobs:
|
||||
extra-conf-options: '--with-target-bits=32 --enable-fallback-linker --enable-libffi-bundling'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-x86-hs == 'true'
|
||||
if: needs.prepare.outputs.linux-x86-hs == 'true'
|
||||
|
||||
build-linux-x64-hs-nopch:
|
||||
name: linux-x64-hs-nopch
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x64
|
||||
@ -188,11 +200,11 @@ jobs:
|
||||
extra-conf-options: '--disable-precompiled-headers'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-x64-variants == 'true'
|
||||
if: needs.prepare.outputs.linux-x64-variants == 'true'
|
||||
|
||||
build-linux-x64-hs-zero:
|
||||
name: linux-x64-hs-zero
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x64
|
||||
@ -202,11 +214,11 @@ jobs:
|
||||
extra-conf-options: '--with-jvm-variants=zero --disable-precompiled-headers'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-x64-variants == 'true'
|
||||
if: needs.prepare.outputs.linux-x64-variants == 'true'
|
||||
|
||||
build-linux-x64-hs-minimal:
|
||||
name: linux-x64-hs-minimal
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x64
|
||||
@ -216,11 +228,11 @@ jobs:
|
||||
extra-conf-options: '--with-jvm-variants=minimal --disable-precompiled-headers'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-x64-variants == 'true'
|
||||
if: needs.prepare.outputs.linux-x64-variants == 'true'
|
||||
|
||||
build-linux-x64-hs-optimized:
|
||||
name: linux-x64-hs-optimized
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x64
|
||||
@ -231,32 +243,31 @@ jobs:
|
||||
extra-conf-options: '--with-debug-level=optimized --disable-precompiled-headers'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-x64-variants == 'true'
|
||||
if: needs.prepare.outputs.linux-x64-variants == 'true'
|
||||
|
||||
build-linux-cross-compile:
|
||||
name: linux-cross-compile
|
||||
needs:
|
||||
- select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-cross-compile.yml
|
||||
with:
|
||||
gcc-major-version: '10'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.linux-cross-compile == 'true'
|
||||
if: needs.prepare.outputs.linux-cross-compile == 'true'
|
||||
|
||||
build-alpine-linux-x64:
|
||||
name: alpine-linux-x64
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-alpine-linux.yml
|
||||
with:
|
||||
platform: alpine-linux-x64
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.alpine-linux-x64 == 'true'
|
||||
if: needs.prepare.outputs.alpine-linux-x64 == 'true'
|
||||
|
||||
build-macos-x64:
|
||||
name: macos-x64
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-macos.yml
|
||||
with:
|
||||
platform: macos-x64
|
||||
@ -264,23 +275,23 @@ jobs:
|
||||
xcode-toolset-version: '14.3.1'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.macos-x64 == 'true'
|
||||
if: needs.prepare.outputs.macos-x64 == 'true'
|
||||
|
||||
build-macos-aarch64:
|
||||
name: macos-aarch64
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-macos.yml
|
||||
with:
|
||||
platform: macos-aarch64
|
||||
runs-on: 'macos-14'
|
||||
xcode-toolset-version: '14.3.1'
|
||||
xcode-toolset-version: '15.4'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.macos-aarch64 == 'true'
|
||||
if: needs.prepare.outputs.macos-aarch64 == 'true'
|
||||
|
||||
build-windows-x64:
|
||||
name: windows-x64
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-windows.yml
|
||||
with:
|
||||
platform: windows-x64
|
||||
@ -288,11 +299,11 @@ jobs:
|
||||
msvc-toolset-architecture: 'x86.x64'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.windows-x64 == 'true'
|
||||
if: needs.prepare.outputs.windows-x64 == 'true'
|
||||
|
||||
build-windows-aarch64:
|
||||
name: windows-aarch64
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-windows.yml
|
||||
with:
|
||||
platform: windows-aarch64
|
||||
@ -302,11 +313,11 @@ jobs:
|
||||
extra-conf-options: '--openjdk-target=aarch64-unknown-cygwin'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.windows-aarch64 == 'true'
|
||||
if: needs.prepare.outputs.windows-aarch64 == 'true'
|
||||
|
||||
build-docs:
|
||||
name: docs
|
||||
needs: select
|
||||
needs: prepare
|
||||
uses: ./.github/workflows/build-linux.yml
|
||||
with:
|
||||
platform: linux-x64
|
||||
@ -318,7 +329,7 @@ jobs:
|
||||
gcc-major-version: '10'
|
||||
configure-arguments: ${{ github.event.inputs.configure-arguments }}
|
||||
make-arguments: ${{ github.event.inputs.make-arguments }}
|
||||
if: needs.select.outputs.docs == 'true'
|
||||
if: needs.prepare.outputs.docs == 'true'
|
||||
|
||||
###
|
||||
### Test jobs
|
||||
@ -343,6 +354,7 @@ jobs:
|
||||
platform: macos-x64
|
||||
bootjdk-platform: macos-x64
|
||||
runs-on: macos-13
|
||||
xcode-toolset-version: '14.3.1'
|
||||
|
||||
test-macos-aarch64:
|
||||
name: macos-aarch64
|
||||
@ -353,6 +365,7 @@ jobs:
|
||||
platform: macos-aarch64
|
||||
bootjdk-platform: macos-aarch64
|
||||
runs-on: macos-14
|
||||
xcode-toolset-version: '15.4'
|
||||
|
||||
test-windows-x64:
|
||||
name: windows-x64
|
||||
@ -363,48 +376,3 @@ jobs:
|
||||
platform: windows-x64
|
||||
bootjdk-platform: windows-x64
|
||||
runs-on: windows-2019
|
||||
|
||||
# Remove bundles so they are not misconstrued as binary distributions from the JDK project
|
||||
remove-bundles:
|
||||
name: 'Remove bundle artifacts'
|
||||
runs-on: ubuntu-22.04
|
||||
if: always()
|
||||
needs:
|
||||
- build-linux-x64
|
||||
- build-linux-x86-hs
|
||||
- build-linux-x64-hs-nopch
|
||||
- build-linux-x64-hs-zero
|
||||
- build-linux-x64-hs-minimal
|
||||
- build-linux-x64-hs-optimized
|
||||
- build-linux-cross-compile
|
||||
- build-alpine-linux-x64
|
||||
- build-macos-x64
|
||||
- build-macos-aarch64
|
||||
- build-windows-x64
|
||||
- build-windows-aarch64
|
||||
- test-linux-x64
|
||||
- test-macos-x64
|
||||
- test-macos-aarch64
|
||||
- test-windows-x64
|
||||
|
||||
steps:
|
||||
- name: 'Remove bundle artifacts'
|
||||
run: |
|
||||
# Find and remove all bundle artifacts
|
||||
# See: https://docs.github.com/en/rest/actions/artifacts?apiVersion=2022-11-28
|
||||
ALL_ARTIFACT_IDS="$(curl -sL \
|
||||
-H 'Accept: application/vnd.github+json' \
|
||||
-H 'Authorization: Bearer ${{ github.token }}' \
|
||||
-H 'X-GitHub-Api-Version: 2022-11-28' \
|
||||
'${{ github.api_url }}/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts?per_page=100')"
|
||||
BUNDLE_ARTIFACT_IDS="$(echo "$ALL_ARTIFACT_IDS" | jq -r -c '.artifacts | map(select(.name|startswith("bundles-"))) | .[].id')"
|
||||
for id in $BUNDLE_ARTIFACT_IDS; do
|
||||
echo "Removing $id"
|
||||
curl -sL \
|
||||
-X DELETE \
|
||||
-H 'Accept: application/vnd.github+json' \
|
||||
-H 'Authorization: Bearer ${{ github.token }}' \
|
||||
-H 'X-GitHub-Api-Version: 2022-11-28' \
|
||||
"${{ github.api_url }}/repos/${{ github.repository }}/actions/artifacts/$id" \
|
||||
|| echo "Failed to remove bundle"
|
||||
done
|
||||
|
||||
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
@ -37,6 +37,9 @@ on:
|
||||
runs-on:
|
||||
required: true
|
||||
type: string
|
||||
xcode-toolset-version:
|
||||
required: false
|
||||
type: string
|
||||
|
||||
env:
|
||||
# These are needed to make the MSYS2 bash work properly
|
||||
@ -147,7 +150,7 @@ jobs:
|
||||
run: |
|
||||
# On macOS we need to install some dependencies for testing
|
||||
brew install make
|
||||
sudo xcode-select --switch /Applications/Xcode_14.3.1.app/Contents/Developer
|
||||
sudo xcode-select --switch /Applications/Xcode_${{ inputs.xcode-toolset-version }}.app/Contents/Developer
|
||||
# This will make GNU make available as 'make' and not only as 'gmake'
|
||||
echo '/usr/local/opt/make/libexec/gnubin' >> $GITHUB_PATH
|
||||
if: runner.os == 'macOS'
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -20,3 +20,5 @@ NashornProfile.txt
|
||||
/.settings/
|
||||
/compile_commands.json
|
||||
/.cache
|
||||
/.gdbinit
|
||||
/.lldbinit
|
||||
|
||||
@ -72,6 +72,9 @@ id="toc-notes-for-specific-tests">Notes for Specific Tests</a>
|
||||
<li><a href="#non-us-locale" id="toc-non-us-locale">Non-US
|
||||
locale</a></li>
|
||||
<li><a href="#pkcs11-tests" id="toc-pkcs11-tests">PKCS11 Tests</a></li>
|
||||
<li><a href="#testing-with-alternative-security-providers"
|
||||
id="toc-testing-with-alternative-security-providers">Testing with
|
||||
alternative security providers</a></li>
|
||||
<li><a href="#client-ui-tests" id="toc-client-ui-tests">Client UI
|
||||
Tests</a></li>
|
||||
</ul></li>
|
||||
@ -586,6 +589,18 @@ element of the appropriate <code>@Artifact</code> class. (See
|
||||
JTREG="JAVA_OPTIONS=-Djdk.test.lib.artifacts.nsslib-linux_aarch64=/path/to/NSS-libs"</code></pre>
|
||||
<p>For more notes about the PKCS11 tests, please refer to
|
||||
test/jdk/sun/security/pkcs11/README.</p>
|
||||
<h3 id="testing-with-alternative-security-providers">Testing with
|
||||
alternative security providers</h3>
|
||||
<p>Some security tests use a hardcoded provider for
|
||||
<code>KeyFactory</code>, <code>Cipher</code>,
|
||||
<code>KeyPairGenerator</code>, <code>KeyGenerator</code>,
|
||||
<code>AlgorithmParameterGenerator</code>, <code>KeyAgreement</code>,
|
||||
<code>Mac</code>, <code>MessageDigest</code>, <code>SecureRandom</code>,
|
||||
<code>Signature</code>, <code>AlgorithmParameters</code>,
|
||||
<code>Configuration</code>, <code>Policy</code>, or
|
||||
<code>SecretKeyFactory</code> objects. Specify the
|
||||
<code>-Dtest.provider.name=NAME</code> property to use a different
|
||||
provider for the service(s).</p>
|
||||
<h3 id="client-ui-tests">Client UI Tests</h3>
|
||||
<h4 id="system-key-shortcuts">System key shortcuts</h4>
|
||||
<p>Some Client UI tests use key sequences which may be reserved by the
|
||||
|
||||
@ -603,6 +603,15 @@ $ make test TEST="jtreg:sun/security/pkcs11/Secmod/AddTrustedCert.java" \
|
||||
For more notes about the PKCS11 tests, please refer to
|
||||
test/jdk/sun/security/pkcs11/README.
|
||||
|
||||
### Testing with alternative security providers
|
||||
|
||||
Some security tests use a hardcoded provider for `KeyFactory`, `Cipher`,
|
||||
`KeyPairGenerator`, `KeyGenerator`, `AlgorithmParameterGenerator`,
|
||||
`KeyAgreement`, `Mac`, `MessageDigest`, `SecureRandom`, `Signature`,
|
||||
`AlgorithmParameters`, `Configuration`, `Policy`, or `SecretKeyFactory` objects.
|
||||
Specify the `-Dtest.provider.name=NAME` property to use a different provider for
|
||||
the service(s).
|
||||
|
||||
### Client UI Tests
|
||||
|
||||
#### System key shortcuts
|
||||
|
||||
@ -102,7 +102,7 @@ help:
|
||||
$(info $(_) # method is 'auto', 'ignore' or 'fail' (default))
|
||||
$(info $(_) TEST="test1 ..." # Use the given test descriptor(s) for testing, e.g.)
|
||||
$(info $(_) # make test TEST="jdk_lang gtest:all")
|
||||
$(info $(_) TEST_DEPS="dependency1 ..." # Specify additional dependencies for running tests, e.g docs-jdk
|
||||
$(info $(_) TEST_DEPS="dependency1 ..." # Specify additional dependencies for running tests, e.g docs-jdk)
|
||||
$(info $(_) JTREG="OPT1=x;OPT2=y" # Control the JTREG test harness, use 'make test-only JTREG=help' to list)
|
||||
$(info $(_) GTEST="OPT1=x;OPT2=y" # Control the GTEST test harness, use 'make test-only GTEST=help' to list)
|
||||
$(info $(_) MICRO="OPT1=x;OPT2=y" # Control the MICRO test harness, use 'make test-only MICRO=help' to list)
|
||||
|
||||
@ -96,6 +96,10 @@ JLINK_DISABLE_WARNINGS := | ( $(GREP) -v -e "WARNING: Using incubator module" ||
|
||||
JDK_IMAGE_SUPPORT_DIR := $(SUPPORT_OUTPUTDIR)/images/jdk
|
||||
JRE_IMAGE_SUPPORT_DIR := $(SUPPORT_OUTPUTDIR)/images/jre
|
||||
|
||||
ifeq ($(JLINK_PRODUCE_LINKABLE_RUNTIME), true)
|
||||
JLINK_JDK_EXTRA_OPTS += --generate-linkable-runtime
|
||||
endif
|
||||
|
||||
$(eval $(call SetupExecute, jlink_jdk, \
|
||||
WARN := Creating jdk image, \
|
||||
DEPS := $(JDK_JMODS) $(BASE_RELEASE_FILE) \
|
||||
@ -132,10 +136,16 @@ CDS_DUMP_FLAGS = -Xmx128M -Xms128M
|
||||
# Helper function for creating the CDS archives for the JDK and JRE
|
||||
#
|
||||
# Param1 - VM variant (e.g., server, client, zero, ...)
|
||||
# Param2 - _nocoops, or empty
|
||||
# Param2 - _nocoops, _coh, _nocoops_coh, or empty
|
||||
define CreateCDSArchive
|
||||
$1_$2_DUMP_EXTRA_ARG := $(if $(filter _nocoops, $2), -XX:-UseCompressedOops, )
|
||||
$1_$2_DUMP_TYPE := $(if $(filter _nocoops, $2), -NOCOOPS, )
|
||||
$1_$2_COOPS_OPTION := $(if $(findstring _nocoops, $2),-XX:-UseCompressedOops)
|
||||
# enable and also explicitly disable coh as needed.
|
||||
ifeq ($(call isTargetCpuBits, 64), true)
|
||||
$1_$2_COH_OPTION := -XX:+UnlockExperimentalVMOptions \
|
||||
$(if $(findstring _coh, $2),-XX:+UseCompactObjectHeaders,-XX:-UseCompactObjectHeaders)
|
||||
endif
|
||||
$1_$2_DUMP_EXTRA_ARG := $$($1_$2_COOPS_OPTION) $$($1_$2_COH_OPTION)
|
||||
$1_$2_DUMP_TYPE := $(if $(findstring _nocoops, $2),-NOCOOPS,)$(if $(findstring _coh, $2),-COH,)
|
||||
|
||||
# Only G1 supports dumping the shared heap, so explicitly use G1 if the JVM supports it.
|
||||
$1_$2_CDS_DUMP_FLAGS := $(CDS_DUMP_FLAGS) $(if $(filter g1gc, $(JVM_FEATURES_$1)), -XX:+UseG1GC)
|
||||
@ -190,6 +200,14 @@ ifeq ($(BUILD_CDS_ARCHIVE), true)
|
||||
$(foreach v, $(JVM_VARIANTS), \
|
||||
$(eval $(call CreateCDSArchive,$v,_nocoops)) \
|
||||
)
|
||||
ifeq ($(BUILD_CDS_ARCHIVE_COH), true)
|
||||
$(foreach v, $(JVM_VARIANTS), \
|
||||
$(eval $(call CreateCDSArchive,$v,_coh)) \
|
||||
)
|
||||
$(foreach v, $(JVM_VARIANTS), \
|
||||
$(eval $(call CreateCDSArchive,$v,_nocoops_coh)) \
|
||||
)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
@ -45,7 +45,7 @@ ifneq ($(TEST_VM_OPTS), )
|
||||
endif
|
||||
|
||||
$(eval $(call ParseKeywordVariable, TEST_OPTS, \
|
||||
SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR JCOV JCOV_DIFF_CHANGESET, \
|
||||
SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR JCOV JCOV_DIFF_CHANGESET AOT_JDK, \
|
||||
STRING_KEYWORDS := VM_OPTIONS JAVA_OPTIONS, \
|
||||
))
|
||||
|
||||
@ -202,11 +202,12 @@ $(eval $(call SetTestOpt,JOBS,JTREG))
|
||||
$(eval $(call SetTestOpt,TIMEOUT_FACTOR,JTREG))
|
||||
$(eval $(call SetTestOpt,FAILURE_HANDLER_TIMEOUT,JTREG))
|
||||
$(eval $(call SetTestOpt,REPORT,JTREG))
|
||||
$(eval $(call SetTestOpt,AOT_JDK,JTREG))
|
||||
|
||||
$(eval $(call ParseKeywordVariable, JTREG, \
|
||||
SINGLE_KEYWORDS := JOBS TIMEOUT_FACTOR FAILURE_HANDLER_TIMEOUT \
|
||||
TEST_MODE ASSERT VERBOSE RETAIN TEST_THREAD_FACTORY MAX_MEM RUN_PROBLEM_LISTS \
|
||||
RETRY_COUNT REPEAT_COUNT MAX_OUTPUT REPORT $(CUSTOM_JTREG_SINGLE_KEYWORDS), \
|
||||
RETRY_COUNT REPEAT_COUNT MAX_OUTPUT REPORT AOT_JDK $(CUSTOM_JTREG_SINGLE_KEYWORDS), \
|
||||
STRING_KEYWORDS := OPTIONS JAVA_OPTIONS VM_OPTIONS KEYWORDS \
|
||||
EXTRA_PROBLEM_LISTS LAUNCHER_OPTIONS \
|
||||
$(CUSTOM_JTREG_STRING_KEYWORDS), \
|
||||
@ -604,7 +605,7 @@ define SetupRunMicroTestBody
|
||||
$1_JMH_JVM_ARGS += $$(MICRO_VM_OPTIONS) $$(MICRO_JAVA_OPTIONS)
|
||||
endif
|
||||
|
||||
$1_MICRO_VM_OPTIONS := -jvmArgs $(call ShellQuote,$$($1_JMH_JVM_ARGS))
|
||||
$1_MICRO_VM_OPTIONS := -jvmArgsPrepend $(call ShellQuote,$$($1_JMH_JVM_ARGS))
|
||||
|
||||
ifneq ($$(MICRO_ITER), )
|
||||
$1_MICRO_ITER := -i $$(MICRO_ITER)
|
||||
@ -702,6 +703,58 @@ define SetJtregValue
|
||||
endif
|
||||
endef
|
||||
|
||||
|
||||
# Parameter 1 is the name of the rule.
|
||||
#
|
||||
# Remaining parameters are named arguments.
|
||||
# VM_OPTIONS List of JVM arguments to use when creating AOT cache
|
||||
#
|
||||
# After calling this, the following variables are defined
|
||||
# $1_AOT_TARGETS List of all targets that the test rule will need to depend on
|
||||
# $1_AOT_JDK_CACHE The AOT cache file to be used to run the test with
|
||||
#
|
||||
SetupAot = $(NamedParamsMacroTemplate)
|
||||
define SetupAotBody
|
||||
$1_AOT_JDK_CONF := $$($1_TEST_SUPPORT_DIR)/aot/jdk.aotconf
|
||||
$1_AOT_JDK_CACHE := $$($1_TEST_SUPPORT_DIR)/aot/jdk.aotcache
|
||||
|
||||
$1_JAVA_TOOL_OPTS := $$(addprefix -J, $$($1_VM_OPTIONS))
|
||||
|
||||
$$($1_AOT_JDK_CACHE): $$(JDK_IMAGE_DIR)/release
|
||||
$$(call MakeDir, $$($1_TEST_SUPPORT_DIR)/aot)
|
||||
|
||||
$(foreach jtool, javac javap jlink jar, \
|
||||
$(info AOT: Create cache configuration for $(jtool)) \
|
||||
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/aot.$(jtool), ( \
|
||||
$$(FIXPATH) $(JDK_UNDER_TEST)/bin/$(jtool) $$($1_JAVA_TOOL_OPTS) \
|
||||
-J-XX:AOTMode=record -J-XX:AOTConfiguration=$$($1_AOT_JDK_CONF).$(jtool) --help \
|
||||
))
|
||||
)
|
||||
|
||||
$$(info AOT: Copy $(JDK_UNDER_TEST)/lib/classlist to $$($1_AOT_JDK_CONF).jdk )
|
||||
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/aot, ( \
|
||||
$$(FIXPATH) $(CP) $(JDK_UNDER_TEST)/lib/classlist $$($1_AOT_JDK_CONF).jdk \
|
||||
))
|
||||
|
||||
$$(FIXPATH) $$(CAT) $$($1_AOT_JDK_CONF).* > $$($1_AOT_JDK_CONF).temp
|
||||
$$(FIXPATH) $$(CAT) $$($1_AOT_JDK_CONF).temp | $(GREP) -v '#' | $(GREP) -v '@' | $(SORT) | \
|
||||
$(SED) -e 's/id:.*//g' | uniq \
|
||||
> $$($1_AOT_JDK_CONF)
|
||||
$$(FIXPATH) $$(CAT) $$($1_AOT_JDK_CONF).temp | $(GREP) '@cp' | $(SORT) \
|
||||
>> $$($1_AOT_JDK_CONF)
|
||||
|
||||
$$(info AOT: Generate AOT cache $$($1_AOT_JDK_CACHE) with flags: $$($1_VM_OPTIONS))
|
||||
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/aot, ( \
|
||||
$$(FIXPATH) $(JDK_UNDER_TEST)/bin/java \
|
||||
$$($1_VM_OPTIONS) -Xlog:cds,cds+class=debug:file=$$($1_AOT_JDK_CACHE).log \
|
||||
-XX:AOTMode=create -XX:AOTConfiguration=$$($1_AOT_JDK_CONF) -XX:AOTCache=$$($1_AOT_JDK_CACHE) \
|
||||
))
|
||||
|
||||
$1_AOT_TARGETS += $$($1_AOT_JDK_CACHE)
|
||||
|
||||
endef
|
||||
|
||||
|
||||
SetupRunJtregTest = $(NamedParamsMacroTemplate)
|
||||
define SetupRunJtregTestBody
|
||||
$1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1
|
||||
@ -762,6 +815,7 @@ define SetupRunJtregTestBody
|
||||
JTREG_RETRY_COUNT ?= 0
|
||||
JTREG_REPEAT_COUNT ?= 0
|
||||
JTREG_REPORT ?= files
|
||||
JTREG_AOT_JDK ?= false
|
||||
|
||||
ifneq ($$(JTREG_RETRY_COUNT), 0)
|
||||
ifneq ($$(JTREG_REPEAT_COUNT), 0)
|
||||
@ -853,11 +907,11 @@ define SetupRunJtregTestBody
|
||||
endif
|
||||
|
||||
ifneq ($$(findstring -XX:+UseZGC, $$(JTREG_ALL_OPTIONS)), )
|
||||
ifneq ($$(findstring -XX:-ZGenerational, $$(JTREG_ALL_OPTIONS)), )
|
||||
JTREG_AUTO_PROBLEM_LISTS += ProblemList-zgc.txt
|
||||
else
|
||||
JTREG_AUTO_PROBLEM_LISTS += ProblemList-generational-zgc.txt
|
||||
endif
|
||||
JTREG_AUTO_PROBLEM_LISTS += ProblemList-zgc.txt
|
||||
endif
|
||||
|
||||
ifneq ($$(findstring -XX:+UseShenandoahGC, $$(JTREG_ALL_OPTIONS)), )
|
||||
JTREG_AUTO_PROBLEM_LISTS += ProblemList-shenandoah.txt
|
||||
endif
|
||||
|
||||
ifneq ($$(JTREG_EXTRA_PROBLEM_LISTS), )
|
||||
@ -891,6 +945,17 @@ define SetupRunJtregTestBody
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($$(JTREG_AOT_JDK), true)
|
||||
$$(info Add AOT target for $1)
|
||||
$$(eval $$(call SetupAot, $1, VM_OPTIONS := $$(JTREG_ALL_OPTIONS) ))
|
||||
|
||||
$$(info AOT_TARGETS=$$($1_AOT_TARGETS))
|
||||
$$(info AOT_JDK_CACHE=$$($1_AOT_JDK_CACHE))
|
||||
|
||||
$1_JTREG_BASIC_OPTIONS += -vmoption:-XX:AOTCache="$$($1_AOT_JDK_CACHE)"
|
||||
endif
|
||||
|
||||
|
||||
$$(eval $$(call SetupRunJtregTestCustom, $1))
|
||||
|
||||
# SetupRunJtregTestCustom might also adjust JTREG_AUTO_ variables
|
||||
@ -906,6 +971,7 @@ define SetupRunJtregTestBody
|
||||
JTREG_TIMEOUT_FACTOR ?= $$(JTREG_AUTO_TIMEOUT_FACTOR)
|
||||
|
||||
clean-outputdirs-$1:
|
||||
$$(call LogWarn, Clean up dirs for $1)
|
||||
$$(RM) -r $$($1_TEST_SUPPORT_DIR)
|
||||
$$(RM) -r $$($1_TEST_RESULTS_DIR)
|
||||
|
||||
@ -953,7 +1019,7 @@ define SetupRunJtregTestBody
|
||||
done
|
||||
endif
|
||||
|
||||
run-test-$1: pre-run-test clean-outputdirs-$1
|
||||
run-test-$1: clean-outputdirs-$1 pre-run-test $$($1_AOT_TARGETS)
|
||||
$$(call LogWarn)
|
||||
$$(call LogWarn, Running test '$$($1_TEST)')
|
||||
$$(call MakeDir, $$($1_TEST_RESULTS_DIR) $$($1_TEST_SUPPORT_DIR) \
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -27,7 +27,7 @@ default: all
|
||||
|
||||
include $(SPEC)
|
||||
include MakeBase.gmk
|
||||
include JavaCompilation.gmk
|
||||
include ZipArchive.gmk
|
||||
|
||||
################################################################################
|
||||
#
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -27,8 +27,8 @@ default: all
|
||||
|
||||
include $(SPEC)
|
||||
include MakeBase.gmk
|
||||
include JavaCompilation.gmk
|
||||
include Modules.gmk
|
||||
include ZipArchive.gmk
|
||||
|
||||
SRC_ZIP_WORK_DIR := $(SUPPORT_OUTPUTDIR)/src
|
||||
$(if $(filter $(TOPDIR)/%, $(SUPPORT_OUTPUTDIR)), $(eval SRC_ZIP_BASE := $(TOPDIR)), $(eval SRC_ZIP_BASE := $(SUPPORT_OUTPUTDIR)))
|
||||
|
||||
@ -76,6 +76,9 @@ AC_DEFUN_ONCE([BASIC_SETUP_PATHS],
|
||||
fi
|
||||
|
||||
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
|
||||
if test "x$OPENJDK_TARGET_CPU_BITS" = "x32"; then
|
||||
AC_MSG_ERROR([32-bit Windows builds are not supported])
|
||||
fi
|
||||
BASIC_SETUP_PATHS_WINDOWS
|
||||
fi
|
||||
|
||||
|
||||
@ -261,6 +261,7 @@ JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST
|
||||
JDKOPT_EXCLUDE_TRANSLATIONS
|
||||
JDKOPT_ENABLE_DISABLE_MANPAGES
|
||||
JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE
|
||||
JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE_COH
|
||||
JDKOPT_ENABLE_DISABLE_COMPATIBLE_CDS_ALIGNMENT
|
||||
JDKOPT_SETUP_MACOSX_SIGNING
|
||||
|
||||
|
||||
@ -912,6 +912,36 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_CPU_DEP],
|
||||
IF_FALSE: [$2FDLIBM_CFLAGS=""])
|
||||
fi
|
||||
AC_SUBST($2FDLIBM_CFLAGS)
|
||||
|
||||
# Check whether the compiler supports the Arm C Language Extensions (ACLE)
|
||||
# for SVE. Set SVE_CFLAGS to -march=armv8-a+sve if it does.
|
||||
# ACLE and this flag are required to build the aarch64 SVE related functions in
|
||||
# libvectormath.
|
||||
if test "x$OPENJDK_TARGET_CPU" = "xaarch64"; then
|
||||
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then
|
||||
AC_LANG_PUSH(C)
|
||||
OLD_CFLAGS="$CFLAGS"
|
||||
CFLAGS="$CFLAGS -march=armv8-a+sve"
|
||||
AC_MSG_CHECKING([if Arm SVE ACLE is supported])
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arm_sve.h>],
|
||||
[
|
||||
svint32_t r = svdup_n_s32(1);
|
||||
return 0;
|
||||
])],
|
||||
[
|
||||
AC_MSG_RESULT([yes])
|
||||
$2SVE_CFLAGS="-march=armv8-a+sve"
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT([no])
|
||||
$2SVE_CFLAGS=""
|
||||
]
|
||||
)
|
||||
CFLAGS="$OLD_CFLAGS"
|
||||
AC_LANG_POP(C)
|
||||
fi
|
||||
fi
|
||||
AC_SUBST($2SVE_CFLAGS)
|
||||
])
|
||||
|
||||
# FLAGS_SETUP_GCC6_COMPILER_FLAGS([PREFIX])
|
||||
|
||||
@ -73,7 +73,9 @@ AC_DEFUN([FLAGS_SETUP_LDFLAGS_HELPER],
|
||||
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
||||
# Clang needs the lld linker to work correctly
|
||||
BASIC_LDFLAGS="-fuse-ld=lld -Wl,--exclude-libs,ALL"
|
||||
UTIL_REQUIRE_PROGS(LLD, lld)
|
||||
if test "x$CXX_IS_USER_SUPPLIED" = xfalse && test "x$CC_IS_USER_SUPPLIED" = xfalse; then
|
||||
UTIL_REQUIRE_PROGS(LLD, lld, $TOOLCHAIN_PATH:$PATH)
|
||||
fi
|
||||
fi
|
||||
if test "x$OPENJDK_TARGET_OS" = xaix; then
|
||||
BASIC_LDFLAGS="-Wl,-b64 -Wl,-brtl -Wl,-bnorwexec -Wl,-bnolibpath -Wl,-bnoexpall \
|
||||
|
||||
@ -586,13 +586,42 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_JMOD_OPTIONS],
|
||||
################################################################################
|
||||
#
|
||||
# jlink options.
|
||||
# We always keep packaged modules in JDK image.
|
||||
#
|
||||
AC_DEFUN_ONCE([JDKOPT_SETUP_JLINK_OPTIONS],
|
||||
[
|
||||
UTIL_ARG_ENABLE(NAME: keep-packaged-modules, DEFAULT: true,
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Configure option for building a JDK that is suitable for linking from the
|
||||
# run-time image without JMODs.
|
||||
#
|
||||
# Determines whether or not a suitable run-time image is being produced from
|
||||
# packaged modules. If set to 'true, changes the *default* of packaged
|
||||
# modules to 'false'.
|
||||
#
|
||||
UTIL_ARG_ENABLE(NAME: linkable-runtime, DEFAULT: false,
|
||||
RESULT: JLINK_PRODUCE_LINKABLE_RUNTIME,
|
||||
DESC: [enable a JDK build suitable for linking from the run-time image],
|
||||
CHECKING_MSG: [whether or not a JDK suitable for linking from the run-time image should be produced])
|
||||
AC_SUBST(JLINK_PRODUCE_LINKABLE_RUNTIME)
|
||||
|
||||
if test "x$JLINK_PRODUCE_LINKABLE_RUNTIME" = xtrue; then
|
||||
DEFAULT_PACKAGED_MODULES=false
|
||||
else
|
||||
DEFAULT_PACKAGED_MODULES=true
|
||||
fi
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Configure option for packaged modules
|
||||
#
|
||||
# We keep packaged modules in the JDK image unless --enable-linkable-runtime is
|
||||
# requested.
|
||||
#
|
||||
UTIL_ARG_ENABLE(NAME: keep-packaged-modules, DEFAULT: $DEFAULT_PACKAGED_MODULES,
|
||||
RESULT: JLINK_KEEP_PACKAGED_MODULES,
|
||||
DESC: [enable keeping of packaged modules in jdk image],
|
||||
DEFAULT_DESC: [enabled by default unless --enable-linkable-runtime is set],
|
||||
CHECKING_MSG: [if packaged modules are kept])
|
||||
AC_SUBST(JLINK_KEEP_PACKAGED_MODULES)
|
||||
])
|
||||
@ -638,14 +667,11 @@ AC_DEFUN([JDKOPT_EXCLUDE_TRANSLATIONS],
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Optionally disable man pages
|
||||
# Optionally disable man pages (deprecated)
|
||||
#
|
||||
AC_DEFUN([JDKOPT_ENABLE_DISABLE_MANPAGES],
|
||||
[
|
||||
UTIL_ARG_ENABLE(NAME: manpages, DEFAULT: true, RESULT: BUILD_MANPAGES,
|
||||
DESC: [enable copying of static man pages],
|
||||
CHECKING_MSG: [if static man pages should be copied])
|
||||
AC_SUBST(BUILD_MANPAGES)
|
||||
UTIL_DEPRECATED_ARG_ENABLE(manpages)
|
||||
])
|
||||
|
||||
################################################################################
|
||||
@ -673,6 +699,37 @@ AC_DEFUN([JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE],
|
||||
AC_SUBST(BUILD_CDS_ARCHIVE)
|
||||
])
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Enable or disable the default CDS archive generation for Compact Object Headers
|
||||
#
|
||||
AC_DEFUN([JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE_COH],
|
||||
[
|
||||
UTIL_ARG_ENABLE(NAME: cds-archive-coh, DEFAULT: auto, RESULT: BUILD_CDS_ARCHIVE_COH,
|
||||
DESC: [enable generation of default CDS archives for compact object headers (requires --enable-cds-archive)],
|
||||
DEFAULT_DESC: [auto],
|
||||
CHECKING_MSG: [if default CDS archives for compact object headers should be generated],
|
||||
CHECK_AVAILABLE: [
|
||||
AC_MSG_CHECKING([if CDS archive with compact object headers is available])
|
||||
if test "x$BUILD_CDS_ARCHIVE" = "xfalse"; then
|
||||
AC_MSG_RESULT([no (CDS default archive generation is disabled)])
|
||||
AVAILABLE=false
|
||||
elif test "x$OPENJDK_TARGET_CPU" != "xx86_64" &&
|
||||
test "x$OPENJDK_TARGET_CPU" != "xaarch64" &&
|
||||
test "x$OPENJDK_TARGET_CPU" != "xppc64" &&
|
||||
test "x$OPENJDK_TARGET_CPU" != "xppc64le" &&
|
||||
test "x$OPENJDK_TARGET_CPU" != "xriscv64" &&
|
||||
test "x$OPENJDK_TARGET_CPU" != "xs390x"; then
|
||||
AC_MSG_RESULT([no (compact object headers not supported for this platform)])
|
||||
AVAILABLE=false
|
||||
else
|
||||
AC_MSG_RESULT([yes])
|
||||
AVAILABLE=true
|
||||
fi
|
||||
])
|
||||
AC_SUBST(BUILD_CDS_ARCHIVE_COH)
|
||||
])
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# Enable the alternative CDS core region alignment
|
||||
|
||||
@ -266,8 +266,10 @@ AC_DEFUN([LIB_SETUP_HSDIS_BINUTILS],
|
||||
HSDIS_CFLAGS="-DLIBARCH_$OPENJDK_TARGET_CPU_LEGACY_LIB"
|
||||
elif test "x$BINUTILS_INSTALL_DIR" != x; then
|
||||
disasm_header="\"$BINUTILS_INSTALL_DIR/include/dis-asm.h\""
|
||||
if test -e $BINUTILS_INSTALL_DIR/lib/libbfd.a && \
|
||||
test -e $BINUTILS_INSTALL_DIR/lib/libopcodes.a && \
|
||||
if (test -e $BINUTILS_INSTALL_DIR/lib/libbfd.a || \
|
||||
test -e $BINUTILS_INSTALL_DIR/lib64/libbfd.a) && \
|
||||
(test -e $BINUTILS_INSTALL_DIR/lib/libopcodes.a || \
|
||||
test -e $BINUTILS_INSTALL_DIR/lib64/libopcodes.a) && \
|
||||
(test -e $BINUTILS_INSTALL_DIR/lib/libiberty.a || \
|
||||
test -e $BINUTILS_INSTALL_DIR/lib64/libiberty.a || \
|
||||
test -e $BINUTILS_INSTALL_DIR/lib32/libiberty.a); then
|
||||
@ -275,7 +277,19 @@ AC_DEFUN([LIB_SETUP_HSDIS_BINUTILS],
|
||||
|
||||
# libiberty ignores --libdir and may be installed in $BINUTILS_INSTALL_DIR/lib, $BINUTILS_INSTALL_DIR/lib32
|
||||
# or $BINUTILS_INSTALL_DIR/lib64, depending on system setup
|
||||
LIBOPCODES_LIB=""
|
||||
LIBBFD_LIB=""
|
||||
LIBIBERTY_LIB=""
|
||||
if test -e $BINUTILS_INSTALL_DIR/lib/libbfd.a; then
|
||||
LIBBFD_LIB="$BINUTILS_INSTALL_DIR/lib/libbfd.a"
|
||||
else
|
||||
LIBBFD_LIB="$BINUTILS_INSTALL_DIR/lib64/libbfd.a"
|
||||
fi
|
||||
if test -e $BINUTILS_INSTALL_DIR/lib/libopcodes.a; then
|
||||
LIBOPCODES_LIB="$BINUTILS_INSTALL_DIR/lib/libopcodes.a"
|
||||
else
|
||||
LIBOPCODES_LIB="$BINUTILS_INSTALL_DIR/lib64/libopcodes.a"
|
||||
fi
|
||||
if test -e $BINUTILS_INSTALL_DIR/lib/libiberty.a; then
|
||||
LIBIBERTY_LIB="$BINUTILS_INSTALL_DIR/lib/libiberty.a"
|
||||
elif test -e $BINUTILS_INSTALL_DIR/lib32/libiberty.a; then
|
||||
@ -283,7 +297,7 @@ AC_DEFUN([LIB_SETUP_HSDIS_BINUTILS],
|
||||
else
|
||||
LIBIBERTY_LIB="$BINUTILS_INSTALL_DIR/lib64/libiberty.a"
|
||||
fi
|
||||
HSDIS_LIBS="$BINUTILS_INSTALL_DIR/lib/libbfd.a $BINUTILS_INSTALL_DIR/lib/libopcodes.a $LIBIBERTY_LIB"
|
||||
HSDIS_LIBS="$LIBBFD_LIB $LIBOPCODES_LIB $LIBIBERTY_LIB"
|
||||
# If we have libsframe add it.
|
||||
if test -e $BINUTILS_INSTALL_DIR/lib/libsframe.a; then
|
||||
HSDIS_LIBS="$HSDIS_LIBS $BINUTILS_INSTALL_DIR/lib/libsframe.a"
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -666,14 +666,14 @@ AC_DEFUN([PLATFORM_CHECK_DEPRECATION],
|
||||
[
|
||||
AC_ARG_ENABLE(deprecated-ports, [AS_HELP_STRING([--enable-deprecated-ports@<:@=yes/no@:>@],
|
||||
[Suppress the error when configuring for a deprecated port @<:@no@:>@])])
|
||||
if test "x$OPENJDK_TARGET_OS" = xwindows && test "x$OPENJDK_TARGET_CPU" = xx86; then
|
||||
if test "x$enable_deprecated_ports" = "xyes"; then
|
||||
AC_MSG_WARN([The Windows 32-bit x86 port is deprecated and may be removed in a future release.])
|
||||
else
|
||||
AC_MSG_ERROR(m4_normalize([The Windows 32-bit x86 port is deprecated and may be removed in a future release.
|
||||
Use --enable-deprecated-ports=yes to suppress this error.]))
|
||||
fi
|
||||
fi
|
||||
# if test "x$OPENJDK_TARGET_CPU" = xx86; then
|
||||
# if test "x$enable_deprecated_ports" = "xyes"; then
|
||||
# AC_MSG_WARN([The x86 port is deprecated and may be removed in a future release.])
|
||||
# else
|
||||
# AC_MSG_ERROR(m4_normalize([The 32-bit x86 port is deprecated and may be removed in a future release.
|
||||
# Use --enable-deprecated-ports=yes to suppress this error.]))
|
||||
# fi
|
||||
# fi
|
||||
])
|
||||
|
||||
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION],
|
||||
|
||||
@ -367,9 +367,8 @@ ENABLE_GENERATE_CLASSLIST := @ENABLE_GENERATE_CLASSLIST@
|
||||
|
||||
EXCLUDE_TRANSLATIONS := @EXCLUDE_TRANSLATIONS@
|
||||
|
||||
BUILD_MANPAGES := @BUILD_MANPAGES@
|
||||
|
||||
BUILD_CDS_ARCHIVE := @BUILD_CDS_ARCHIVE@
|
||||
BUILD_CDS_ARCHIVE_COH := @BUILD_CDS_ARCHIVE_COH@
|
||||
|
||||
ENABLE_COMPATIBLE_CDS_ALIGNMENT := @ENABLE_COMPATIBLE_CDS_ALIGNMENT@
|
||||
|
||||
@ -707,6 +706,7 @@ NEW_JAVADOC = $(INTERIM_LANGTOOLS_ARGS) $(JAVADOC_MAIN_CLASS)
|
||||
|
||||
JMOD_COMPRESS := @JMOD_COMPRESS@
|
||||
JLINK_KEEP_PACKAGED_MODULES := @JLINK_KEEP_PACKAGED_MODULES@
|
||||
JLINK_PRODUCE_LINKABLE_RUNTIME := @JLINK_PRODUCE_LINKABLE_RUNTIME@
|
||||
|
||||
RCFLAGS := @RCFLAGS@
|
||||
|
||||
@ -827,6 +827,9 @@ OS_VERSION_MAJOR := @OS_VERSION_MAJOR@
|
||||
OS_VERSION_MINOR := @OS_VERSION_MINOR@
|
||||
OS_VERSION_MICRO := @OS_VERSION_MICRO@
|
||||
|
||||
# Arm SVE
|
||||
SVE_CFLAGS := @SVE_CFLAGS@
|
||||
|
||||
# Images directory definitions
|
||||
JDK_IMAGE_SUBDIR := jdk
|
||||
JRE_IMAGE_SUBDIR := jre
|
||||
|
||||
@ -445,6 +445,7 @@ AC_DEFUN([TOOLCHAIN_FIND_COMPILER],
|
||||
AC_MSG_ERROR([User supplied compiler $1=[$]$1 does not exist])
|
||||
fi
|
||||
fi
|
||||
$1_IS_USER_SUPPLIED=true
|
||||
else
|
||||
# No user supplied value. Locate compiler ourselves.
|
||||
|
||||
@ -462,6 +463,7 @@ AC_DEFUN([TOOLCHAIN_FIND_COMPILER],
|
||||
HELP_MSG_MISSING_DEPENDENCY([devkit])
|
||||
AC_MSG_ERROR([Could not find a $COMPILER_NAME compiler. $HELP_MSG])
|
||||
fi
|
||||
$1_IS_USER_SUPPLIED=false
|
||||
fi
|
||||
|
||||
# Now we have a compiler binary in $1. Make sure it's okay.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -82,9 +82,7 @@ AC_DEFUN([TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT],
|
||||
fi
|
||||
|
||||
AC_MSG_NOTICE([Found Visual Studio installation at $VS_BASE using $METHOD])
|
||||
if test "x$TARGET_CPU" = xx86; then
|
||||
VCVARSFILES="vcvars32.bat vcvarsamd64_x86.bat"
|
||||
elif test "x$TARGET_CPU" = xx86_64; then
|
||||
if test "x$TARGET_CPU" = xx86_64; then
|
||||
VCVARSFILES="vcvars64.bat vcvarsx86_amd64.bat"
|
||||
elif test "x$TARGET_CPU" = xaarch64; then
|
||||
# for host x86-64, target aarch64
|
||||
@ -132,9 +130,7 @@ AC_DEFUN([TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT],
|
||||
elif test -f "$WIN_SDK_BASE/bin/setenv.cmd"; then
|
||||
AC_MSG_NOTICE([Found Windows SDK installation at $WIN_SDK_BASE using $METHOD])
|
||||
VS_ENV_CMD="$WIN_SDK_BASE/bin/setenv.cmd"
|
||||
if test "x$TARGET_CPU" = xx86; then
|
||||
VS_ENV_ARGS="/x86"
|
||||
elif test "x$TARGET_CPU" = xx86_64; then
|
||||
if test "x$TARGET_CPU" = xx86_64; then
|
||||
VS_ENV_ARGS="/x64"
|
||||
elif test "x$TARGET_CPU" = xaarch64; then
|
||||
VS_ENV_ARGS="/arm64"
|
||||
@ -438,9 +434,7 @@ AC_DEFUN([TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL],
|
||||
# Need to check if the found msvcr is correct architecture
|
||||
AC_MSG_CHECKING([found $DLL_NAME architecture])
|
||||
MSVC_DLL_FILETYPE=`$FILE -b "$POSSIBLE_MSVC_DLL"`
|
||||
if test "x$OPENJDK_TARGET_CPU" = xx86; then
|
||||
CORRECT_MSVCR_ARCH=386
|
||||
elif test "x$OPENJDK_TARGET_CPU" = xx86_64; then
|
||||
if test "x$OPENJDK_TARGET_CPU" = xx86_64; then
|
||||
CORRECT_MSVCR_ARCH=x86-64
|
||||
elif test "x$OPENJDK_TARGET_CPU" = xaarch64; then
|
||||
# The cygwin 'file' command only returns "PE32+ executable (DLL) (console), for MS Windows",
|
||||
@ -466,9 +460,7 @@ AC_DEFUN([TOOLCHAIN_SETUP_MSVC_DLL],
|
||||
DLL_HELP="$2"
|
||||
MSVC_DLL=
|
||||
|
||||
if test "x$OPENJDK_TARGET_CPU" = xx86; then
|
||||
vs_target_cpu=x86
|
||||
elif test "x$OPENJDK_TARGET_CPU" = xx86_64; then
|
||||
if test "x$OPENJDK_TARGET_CPU" = xx86_64; then
|
||||
vs_target_cpu=x64
|
||||
elif test "x$OPENJDK_TARGET_CPU" = xaarch64; then
|
||||
vs_target_cpu=arm64
|
||||
@ -522,18 +514,8 @@ AC_DEFUN([TOOLCHAIN_SETUP_MSVC_DLL],
|
||||
# Probe: Search wildly in the VCINSTALLDIR. We've probably lost by now.
|
||||
# (This was the original behaviour; kept since it might turn something up)
|
||||
if test "x$VCINSTALLDIR" != x; then
|
||||
if test "x$OPENJDK_TARGET_CPU" = xx86; then
|
||||
POSSIBLE_MSVC_DLL=`$FIND "$VCINSTALLDIR" -name $DLL_NAME \
|
||||
| $GREP x86 | $GREP -v ia64 | $GREP -v x64 | $GREP -v arm64 | $HEAD --lines 1`
|
||||
if test "x$POSSIBLE_MSVC_DLL" = x; then
|
||||
# We're grasping at straws now...
|
||||
POSSIBLE_MSVC_DLL=`$FIND "$VCINSTALLDIR" -name $DLL_NAME \
|
||||
| $HEAD --lines 1`
|
||||
fi
|
||||
else
|
||||
POSSIBLE_MSVC_DLL=`$FIND "$VCINSTALLDIR" -name $DLL_NAME \
|
||||
| $GREP x64 | $HEAD --lines 1`
|
||||
fi
|
||||
POSSIBLE_MSVC_DLL=`$FIND "$VCINSTALLDIR" -name $DLL_NAME \
|
||||
| $GREP x64 | $HEAD --lines 1`
|
||||
|
||||
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL([$DLL_NAME], [$POSSIBLE_MSVC_DLL],
|
||||
[search of VCINSTALLDIR])
|
||||
|
||||
@ -178,10 +178,8 @@ ifeq ($(call isTargetOsType, unix)+$(MAKEFILE_PREFIX), true+Launcher)
|
||||
# We assume all our man pages should reside in section 1.
|
||||
|
||||
MAN_FILES_MD := $(wildcard $(addsuffix /*.md, $(call FindModuleManDirs, $(MODULE))))
|
||||
MAN_FILES_TROFF := $(wildcard $(addsuffix /*.1, $(call FindModuleManDirs, $(MODULE))))
|
||||
|
||||
ifneq ($(MAN_FILES_MD), )
|
||||
# If we got markdown files, ignore the troff files
|
||||
ifeq ($(ENABLE_PANDOC), false)
|
||||
$(info Warning: pandoc not found. Not generating man pages)
|
||||
else
|
||||
@ -226,16 +224,5 @@ ifeq ($(call isTargetOsType, unix)+$(MAKEFILE_PREFIX), true+Launcher)
|
||||
|
||||
TARGETS += $(BUILD_MAN_PAGES)
|
||||
endif
|
||||
else
|
||||
# No markdown man pages present
|
||||
ifeq ($(BUILD_MANPAGES), true)
|
||||
# BUILD_MANPAGES is a mis-nomer. It really means "copy the pre-generated man pages".
|
||||
$(eval $(call SetupCopyFiles, COPY_MAN_PAGES, \
|
||||
DEST := $(SUPPORT_OUTPUTDIR)/modules_man/$(MODULE)/man1, \
|
||||
FILES := $(MAN_FILES_TROFF), \
|
||||
))
|
||||
|
||||
TARGETS += $(COPY_MAN_PAGES)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
@ -252,8 +252,8 @@ var getJibProfilesCommon = function (input, data) {
|
||||
default_make_targets: ["product-bundles", "test-bundles", "static-libs-bundles"],
|
||||
configure_args: concat(
|
||||
"--with-exclude-translations=es,fr,it,ko,pt_BR,sv,ca,tr,cs,sk,ja_JP_A,ja_JP_HA,ja_JP_HI,ja_JP_I,zh_TW,zh_HK",
|
||||
"--disable-manpages",
|
||||
"--disable-jvm-feature-shenandoahgc",
|
||||
"--disable-cds-archive-coh",
|
||||
versionArgs(input, common))
|
||||
};
|
||||
|
||||
|
||||
@ -318,8 +318,9 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="zrn" description="Zairean New Zaire (1993-1998)"/>
|
||||
<type name="zrz" description="Zairean Zaire (1971-1993)"/>
|
||||
<type name="zwd" description="Zimbabwean Dollar (1980-2008)"/>
|
||||
<type name="zwl" description="Zimbabwean Dollar (2009)" since="1.9"/>
|
||||
<type name="zwl" description="Zimbabwean Dollar (2009-2024)" since="1.9"/>
|
||||
<type name="zwr" description="Zimbabwean Dollar (2008)" since="1.9"/>
|
||||
<type name="zwg" description="Zimbabwean Gold" since="46"/>
|
||||
</key>
|
||||
</keyword>
|
||||
</ldmlBCP47>
|
||||
|
||||
@ -28,12 +28,14 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="ethi" description="Ethiopic numerals — algorithmic"/>
|
||||
<type name="finance" description="Financial numerals — may be algorithmic" since="21"/>
|
||||
<type name="fullwide" description="Full width digits"/>
|
||||
<type name="gara" description="Garay digits" since="46"/>
|
||||
<type name="geor" description="Georgian numerals — algorithmic"/>
|
||||
<type name="gong" description="Gunjala Gondi digits" since="33.1"/>
|
||||
<type name="gonm" description="Masaram Gondi digits" since="32"/>
|
||||
<type name="grek" description="Greek upper case numerals — algorithmic"/>
|
||||
<type name="greklow" description="Greek lower case numerals — algorithmic"/>
|
||||
<type name="gujr" description="Gujarati digits"/>
|
||||
<type name="gukh" description="Gurung Khema digits" since="46"/>
|
||||
<type name="guru" description="Gurmukhi digits"/>
|
||||
<type name="hanidays" description="Han-character day-of-month numbering for lunar/other traditional calendars" since="25"/>
|
||||
<type name="hanidec" description="Positional decimal system using Chinese number ideographs as digits" since="1.9"/>
|
||||
@ -52,6 +54,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="kawi" description="Kawi digits" since="42"/>
|
||||
<type name="khmr" description="Khmer digits"/>
|
||||
<type name="knda" description="Kannada digits"/>
|
||||
<type name="krai" description="Kirat Rai digits" since="46"/>
|
||||
<type name="lana" description="Tai Tham Hora (secular) digits" since="21"/>
|
||||
<type name="lanatham" description="Tai Tham Tham (ecclesiastical) digits" since="21"/>
|
||||
<type name="laoo" description="Lao digits"/>
|
||||
@ -69,6 +72,8 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="mroo" description="Mro digits" since="28"/>
|
||||
<type name="mtei" description="Meetei Mayek digits" since="21"/>
|
||||
<type name="mymr" description="Myanmar digits"/>
|
||||
<type name="mymrepka" description="Myanmar Eastern Pwo Karen digits" since="46"/>
|
||||
<type name="mymrpao" description="Myanmar Pao digits" since="46"/>
|
||||
<type name="mymrshan" description="Myanmar Shan digits" since="21"/>
|
||||
<type name="mymrtlng" description="Myanmar Tai Laing digits" since="28"/>
|
||||
<type name="nagm" description="Nag Mundari digits" since="42"/>
|
||||
@ -76,8 +81,10 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="newa" description="Newa digits" since="30"/>
|
||||
<type name="nkoo" description="N'Ko digits" since="21"/>
|
||||
<type name="olck" description="Ol Chiki digits" since="21"/>
|
||||
<type name="onao" description="Ol Onal digits" since="46"/>
|
||||
<type name="orya" description="Oriya digits"/>
|
||||
<type name="osma" description="Osmanya digits" since="21"/>
|
||||
<type name="outlined" description="Legacy computing outlined digits" since="46"/>
|
||||
<type name="rohg" description="Hanifi Rohingya digits" since="33.1"/>
|
||||
<type name="roman" description="Roman upper case numerals — algorithmic"/>
|
||||
<type name="romanlow" description="Roman lowercase numerals — algorithmic"/>
|
||||
@ -88,6 +95,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="sinh" description="Sinhala Lith digits" since="28"/>
|
||||
<type name="sora" description="Sora_Sompeng digits" since="21"/>
|
||||
<type name="sund" description="Sundanese digits" since="21"/>
|
||||
<type name="sunu" description="Sunuwar digits" since="46"/>
|
||||
<type name="takr" description="Takri digits" since="21"/>
|
||||
<type name="talu" description="New Tai Lue digits" since="21"/>
|
||||
<type name="taml" description="Tamil numerals — algorithmic"/>
|
||||
|
||||
@ -62,7 +62,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="basjj" description="Sarajevo, Bosnia and Herzegovina" alias="Europe/Sarajevo"/>
|
||||
<type name="bbbgi" description="Barbados" alias="America/Barbados"/>
|
||||
<type name="bddac" description="Dhaka, Bangladesh" alias="Asia/Dhaka Asia/Dacca"/>
|
||||
<type name="bebru" description="Brussels, Belgium" alias="Europe/Brussels"/>
|
||||
<type name="bebru" description="Brussels, Belgium" alias="Europe/Brussels CET MET"/>
|
||||
<type name="bfoua" description="Ouagadougou, Burkina Faso" alias="Africa/Ouagadougou"/>
|
||||
<type name="bgsof" description="Sofia, Bulgaria" alias="Europe/Sofia"/>
|
||||
<type name="bhbah" description="Bahrain" alias="Asia/Bahrain"/>
|
||||
@ -141,7 +141,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="cnurc" description="Ürümqi, China" alias="Asia/Urumqi Asia/Kashgar"/>
|
||||
<type name="cobog" description="Bogotá, Colombia" alias="America/Bogota"/>
|
||||
<type name="crsjo" description="Costa Rica" alias="America/Costa_Rica"/>
|
||||
<type name="cst6cdt" description="POSIX style time zone for US Central Time" alias="CST6CDT" since="1.8"/>
|
||||
<type name="cst6cdt" description="POSIX style time zone for US Central Time" deprecated="true" preferred="uschi"/>
|
||||
<type name="cuhav" description="Havana, Cuba" alias="America/Havana Cuba"/>
|
||||
<type name="cvrai" description="Cape Verde" alias="Atlantic/Cape_Verde"/>
|
||||
<type name="cxxch" description="Christmas Island" alias="Indian/Christmas"/>
|
||||
@ -164,7 +164,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="esceu" description="Ceuta, Spain" alias="Africa/Ceuta"/>
|
||||
<type name="eslpa" description="Canary Islands, Spain" alias="Atlantic/Canary"/>
|
||||
<type name="esmad" description="Madrid, Spain" alias="Europe/Madrid"/>
|
||||
<type name="est5edt" description="POSIX style time zone for US Eastern Time" alias="EST5EDT" since="1.8"/>
|
||||
<type name="est5edt" description="POSIX style time zone for US Eastern Time" deprecated="true" preferred="usnyc"/>
|
||||
<type name="etadd" description="Addis Ababa, Ethiopia" alias="Africa/Addis_Ababa"/>
|
||||
<type name="fihel" description="Helsinki, Finland" alias="Europe/Helsinki"/>
|
||||
<type name="fimhq" description="Mariehamn, Åland, Finland" alias="Europe/Mariehamn"/>
|
||||
@ -196,7 +196,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="gpmsb" description="Marigot, Saint Martin" alias="America/Marigot"/>
|
||||
<type name="gpsbh" description="Saint Barthélemy" alias="America/St_Barthelemy"/>
|
||||
<type name="gqssg" description="Malabo, Equatorial Guinea" alias="Africa/Malabo"/>
|
||||
<type name="grath" description="Athens, Greece" alias="Europe/Athens"/>
|
||||
<type name="grath" description="Athens, Greece" alias="Europe/Athens EET"/>
|
||||
<type name="gsgrv" description="South Georgia and the South Sandwich Islands" alias="Atlantic/South_Georgia"/>
|
||||
<type name="gtgua" description="Guatemala" alias="America/Guatemala"/>
|
||||
<type name="gugum" description="Guam" alias="Pacific/Guam"/>
|
||||
@ -265,15 +265,15 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="mkskp" description="Skopje, Macedonia" alias="Europe/Skopje"/>
|
||||
<type name="mlbko" description="Bamako, Mali" alias="Africa/Bamako Africa/Timbuktu"/>
|
||||
<type name="mmrgn" description="Yangon (Rangoon), Burma" alias="Asia/Rangoon Asia/Yangon" iana="Asia/Yangon"/>
|
||||
<type name="mncoq" description="Choibalsan, Mongolia" alias="Asia/Choibalsan"/>
|
||||
<type name="mncoq" description="Choibalsan, Mongolia" deprecated="true" preferred="mnuln"/>
|
||||
<type name="mnhvd" description="Khovd (Hovd), Mongolia" alias="Asia/Hovd"/>
|
||||
<type name="mnuln" description="Ulaanbaatar (Ulan Bator), Mongolia" alias="Asia/Ulaanbaatar Asia/Ulan_Bator"/>
|
||||
<type name="mnuln" description="Ulaanbaatar (Ulan Bator), Mongolia" alias="Asia/Ulaanbaatar Asia/Ulan_Bator Asia/Choibalsan"/>
|
||||
<type name="momfm" description="Macau SAR China" alias="Asia/Macau Asia/Macao"/>
|
||||
<type name="mpspn" description="Saipan, Northern Mariana Islands" alias="Pacific/Saipan"/>
|
||||
<type name="mqfdf" description="Martinique" alias="America/Martinique"/>
|
||||
<type name="mrnkc" description="Nouakchott, Mauritania" alias="Africa/Nouakchott"/>
|
||||
<type name="msmni" description="Montserrat" alias="America/Montserrat"/>
|
||||
<type name="mst7mdt" description="POSIX style time zone for US Mountain Time" alias="MST7MDT" since="1.8"/>
|
||||
<type name="mst7mdt" description="POSIX style time zone for US Mountain Time" deprecated="true" preferred="usden"/>
|
||||
<type name="mtmla" description="Malta" alias="Europe/Malta"/>
|
||||
<type name="muplu" description="Mauritius" alias="Indian/Mauritius"/>
|
||||
<type name="mvmle" description="Maldives" alias="Indian/Maldives"/>
|
||||
@ -308,7 +308,7 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="nzakl" description="Auckland, New Zealand" alias="Pacific/Auckland Antarctica/South_Pole NZ"/>
|
||||
<type name="nzcht" description="Chatham Islands, New Zealand" alias="Pacific/Chatham NZ-CHAT"/>
|
||||
<type name="ommct" description="Muscat, Oman" alias="Asia/Muscat"/>
|
||||
<type name="papty" description="Panama" alias="America/Panama"/>
|
||||
<type name="papty" description="Panama" alias="America/Panama EST"/>
|
||||
<type name="pelim" description="Lima, Peru" alias="America/Lima"/>
|
||||
<type name="pfgmr" description="Gambiera Islands, French Polynesia" alias="Pacific/Gambier"/>
|
||||
<type name="pfnhv" description="Marquesas Islands, French Polynesia" alias="Pacific/Marquesas"/>
|
||||
@ -321,9 +321,9 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="pmmqc" description="Saint Pierre and Miquelon" alias="America/Miquelon"/>
|
||||
<type name="pnpcn" description="Pitcairn Islands" alias="Pacific/Pitcairn"/>
|
||||
<type name="prsju" description="Puerto Rico" alias="America/Puerto_Rico"/>
|
||||
<type name="pst8pdt" description="POSIX style time zone for US Pacific Time" alias="PST8PDT" since="1.8"/>
|
||||
<type name="pst8pdt" description="POSIX style time zone for US Pacific Time" deprecated="true" preferred="uslax"/>
|
||||
<type name="ptfnc" description="Madeira, Portugal" alias="Atlantic/Madeira"/>
|
||||
<type name="ptlis" description="Lisbon, Portugal" alias="Europe/Lisbon Portugal"/>
|
||||
<type name="ptlis" description="Lisbon, Portugal" alias="Europe/Lisbon Portugal WET"/>
|
||||
<type name="ptpdl" description="Azores, Portugal" alias="Atlantic/Azores"/>
|
||||
<type name="pwror" description="Palau" alias="Pacific/Palau"/>
|
||||
<type name="pyasu" description="Asunción, Paraguay" alias="America/Asuncion"/>
|
||||
@ -403,20 +403,20 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="umawk" description="Wake Island, U.S. Minor Outlying Islands" alias="Pacific/Wake"/>
|
||||
<type name="umjon" description="Johnston Atoll, U.S. Minor Outlying Islands" deprecated="true" preferred="ushnl"/>
|
||||
<type name="ummdy" description="Midway Islands, U.S. Minor Outlying Islands" alias="Pacific/Midway"/>
|
||||
<type name="unk" description="Unknown time zone" alias="Etc/Unknown"/>
|
||||
<type name="unk" description="Unknown time zone" alias="Etc/Unknown Factory"/>
|
||||
<type name="usadk" description="Adak (Alaska), United States" alias="America/Adak America/Atka US/Aleutian"/>
|
||||
<type name="usaeg" description="Marengo (Indiana), United States" alias="America/Indiana/Marengo"/>
|
||||
<type name="usanc" description="Anchorage, United States" alias="America/Anchorage US/Alaska"/>
|
||||
<type name="usboi" description="Boise (Idaho), United States" alias="America/Boise"/>
|
||||
<type name="uschi" description="Chicago, United States" alias="America/Chicago US/Central"/>
|
||||
<type name="usden" description="Denver, United States" alias="America/Denver America/Shiprock Navajo US/Mountain"/>
|
||||
<type name="uschi" description="Chicago, United States" alias="America/Chicago US/Central CST6CDT"/>
|
||||
<type name="usden" description="Denver, United States" alias="America/Denver America/Shiprock Navajo US/Mountain MST7MDT"/>
|
||||
<type name="usdet" description="Detroit, United States" alias="America/Detroit US/Michigan"/>
|
||||
<type name="ushnl" description="Honolulu, United States" alias="Pacific/Honolulu US/Hawaii Pacific/Johnston"/>
|
||||
<type name="ushnl" description="Honolulu, United States" alias="Pacific/Honolulu US/Hawaii Pacific/Johnston HST"/>
|
||||
<type name="usind" description="Indianapolis, United States" alias="America/Indianapolis America/Fort_Wayne America/Indiana/Indianapolis US/East-Indiana" iana="America/Indiana/Indianapolis"/>
|
||||
<type name="usinvev" description="Vevay (Indiana), United States" alias="America/Indiana/Vevay"/>
|
||||
<type name="usjnu" description="Juneau (Alaska), United States" alias="America/Juneau"/>
|
||||
<type name="usknx" description="Knox (Indiana), United States" alias="America/Indiana/Knox America/Knox_IN US/Indiana-Starke"/>
|
||||
<type name="uslax" description="Los Angeles, United States" alias="America/Los_Angeles US/Pacific US/Pacific-New"/>
|
||||
<type name="uslax" description="Los Angeles, United States" alias="America/Los_Angeles US/Pacific US/Pacific-New PST8PDT"/>
|
||||
<type name="uslui" description="Louisville (Kentucky), United States" alias="America/Louisville America/Kentucky/Louisville" iana="America/Kentucky/Louisville"/>
|
||||
<type name="usmnm" description="Menominee (Michigan), United States" alias="America/Menominee"/>
|
||||
<type name="usmtm" description="Metlakatla (Alaska), United States" alias="America/Metlakatla" since="1.9.1"/>
|
||||
@ -424,10 +424,10 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="usnavajo" description="Shiprock (Navajo), United States" deprecated="true" preferred="usden"/>
|
||||
<type name="usndcnt" description="Center (North Dakota), United States" alias="America/North_Dakota/Center"/>
|
||||
<type name="usndnsl" description="New Salem (North Dakota), United States" alias="America/North_Dakota/New_Salem"/>
|
||||
<type name="usnyc" description="New York, United States" alias="America/New_York US/Eastern"/>
|
||||
<type name="usnyc" description="New York, United States" alias="America/New_York US/Eastern EST5EDT"/>
|
||||
<type name="usoea" description="Vincennes (Indiana), United States" alias="America/Indiana/Vincennes"/>
|
||||
<type name="usome" description="Nome (Alaska), United States" alias="America/Nome"/>
|
||||
<type name="usphx" description="Phoenix, United States" alias="America/Phoenix US/Arizona"/>
|
||||
<type name="usphx" description="Phoenix, United States" alias="America/Phoenix US/Arizona MST"/>
|
||||
<type name="ussit" description="Sitka (Alaska), United States" alias="America/Sitka" since="1.9.1"/>
|
||||
<type name="ustel" description="Tell City (Indiana), United States" alias="America/Indiana/Tell_City"/>
|
||||
<type name="uswlz" description="Winamac (Indiana), United States" alias="America/Indiana/Winamac"/>
|
||||
@ -453,12 +453,12 @@ For terms of use, see http://www.unicode.org/copyright.html
|
||||
<type name="utcw02" description="2 hours behind UTC" alias="Etc/GMT+2"/>
|
||||
<type name="utcw03" description="3 hours behind UTC" alias="Etc/GMT+3"/>
|
||||
<type name="utcw04" description="4 hours behind UTC" alias="Etc/GMT+4"/>
|
||||
<type name="utcw05" description="5 hours behind UTC" alias="Etc/GMT+5 EST"/>
|
||||
<type name="utcw05" description="5 hours behind UTC" alias="Etc/GMT+5"/>
|
||||
<type name="utcw06" description="6 hours behind UTC" alias="Etc/GMT+6"/>
|
||||
<type name="utcw07" description="7 hours behind UTC" alias="Etc/GMT+7 MST"/>
|
||||
<type name="utcw07" description="7 hours behind UTC" alias="Etc/GMT+7"/>
|
||||
<type name="utcw08" description="8 hours behind UTC" alias="Etc/GMT+8"/>
|
||||
<type name="utcw09" description="9 hours behind UTC" alias="Etc/GMT+9"/>
|
||||
<type name="utcw10" description="10 hours behind UTC" alias="Etc/GMT+10 HST"/>
|
||||
<type name="utcw10" description="10 hours behind UTC" alias="Etc/GMT+10"/>
|
||||
<type name="utcw11" description="11 hours behind UTC" alias="Etc/GMT+11"/>
|
||||
<type name="utcw12" description="12 hours behind UTC" alias="Etc/GMT+12"/>
|
||||
<type name="uymvd" description="Montevideo, Uruguay" alias="America/Montevideo"/>
|
||||
|
||||
@ -42,7 +42,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<!ATTLIST version number CDATA #REQUIRED >
|
||||
<!--@MATCH:regex/\$Revision.*\$-->
|
||||
<!--@METADATA-->
|
||||
<!ATTLIST version cldrVersion CDATA #FIXED "45" >
|
||||
<!ATTLIST version cldrVersion CDATA #FIXED "46" >
|
||||
<!--@MATCH:any-->
|
||||
<!--@VALUE-->
|
||||
<!ATTLIST version draft (approved | contributed | provisional | unconfirmed | true | false) #IMPLIED >
|
||||
@ -63,7 +63,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<!ATTLIST language type NMTOKEN #REQUIRED >
|
||||
<!--@MATCH:validity/locale-->
|
||||
<!ATTLIST language alt NMTOKENS #IMPLIED >
|
||||
<!--@MATCH:literal/long, secondary, short, variant, menu-->
|
||||
<!--@MATCH:literal/long, secondary, short, variant, menu, official-->
|
||||
<!ATTLIST language draft (approved | contributed | provisional | unconfirmed | true | false) #IMPLIED >
|
||||
<!--@METADATA-->
|
||||
<!--@DEPRECATED:true, false-->
|
||||
@ -2042,7 +2042,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
|
||||
<!ELEMENT decimal ( #PCDATA ) >
|
||||
<!ATTLIST decimal alt NMTOKENS #IMPLIED >
|
||||
<!--@MATCH:literal/variant-->
|
||||
<!--@MATCH:literal/variant, us, official-->
|
||||
<!ATTLIST decimal draft (approved | contributed | provisional | unconfirmed | true | false) #IMPLIED >
|
||||
<!--@METADATA-->
|
||||
<!--@DEPRECATED:true, false-->
|
||||
@ -2053,7 +2053,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
|
||||
<!ELEMENT group ( #PCDATA ) >
|
||||
<!ATTLIST group alt NMTOKENS #IMPLIED >
|
||||
<!--@MATCH:literal/variant-->
|
||||
<!--@MATCH:literal/variant, us, official-->
|
||||
<!ATTLIST group draft (approved | contributed | provisional | unconfirmed | true | false) #IMPLIED >
|
||||
<!--@METADATA-->
|
||||
<!--@DEPRECATED:true, false-->
|
||||
|
||||
@ -128,10 +128,10 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
|
||||
<xs:element name="version">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="number" use="required"/>
|
||||
<xs:attribute default="45" name="cldrVersion">
|
||||
<xs:attribute default="46" name="cldrVersion">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="45"/>
|
||||
<xs:enumeration value="46"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
|
||||
@ -12,7 +12,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<!ATTLIST version number CDATA #REQUIRED >
|
||||
<!--@MATCH:regex/\$Revision.*\$-->
|
||||
<!--@METADATA-->
|
||||
<!ATTLIST version cldrVersion CDATA #FIXED "45" >
|
||||
<!ATTLIST version cldrVersion CDATA #FIXED "46" >
|
||||
<!--@MATCH:version-->
|
||||
<!--@VALUE-->
|
||||
|
||||
|
||||
@ -24,10 +24,10 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
|
||||
<xs:element name="version">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="number" use="required"/>
|
||||
<xs:attribute default="45" name="cldrVersion">
|
||||
<xs:attribute default="46" name="cldrVersion">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="45"/>
|
||||
<xs:enumeration value="46"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
|
||||
@ -12,10 +12,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<!ATTLIST version number CDATA #REQUIRED >
|
||||
<!--@MATCH:any-->
|
||||
<!--@METADATA-->
|
||||
<!ATTLIST version cldrVersion CDATA #FIXED "45" >
|
||||
<!ATTLIST version cldrVersion CDATA #FIXED "46" >
|
||||
<!--@MATCH:version-->
|
||||
<!--@VALUE-->
|
||||
<!ATTLIST version unicodeVersion CDATA #FIXED "15.1.0" >
|
||||
<!ATTLIST version unicodeVersion CDATA #FIXED "16.0.0" >
|
||||
<!--@MATCH:version-->
|
||||
<!--@VALUE-->
|
||||
|
||||
@ -1078,7 +1078,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<!ATTLIST numberingSystem radix NMTOKEN #IMPLIED >
|
||||
<!--@VALUE-->
|
||||
<!ATTLIST numberingSystem digits CDATA #IMPLIED >
|
||||
<!--@MATCH:unicodeset/[\p{Nd}[\u3007\u4E00\u4E03\u4E09\u4E5D\u4E8C\u4E94\u516B\u516D\u56DB][\U00011F50-\U00011F59\U0001E4F0-\U0001E4F9]]-->
|
||||
<!--@MATCH:unicodeset/[\p{Nd}[\u3007\u4E00\u4E03\u4E09\u4E5D\u4E8C\u4E94\u516B\u516D\u56DB][\U00010D40-\U00010D49\U000116D0-\U000116E3\U00011BF0-\U00011BF9\U00016130-\U00016139\U00016D70-\U00016D79\U0001CCF0-\U0001CCF9\U0001E5F1-\U0001E5FA]]-->
|
||||
<!--@VALUE-->
|
||||
<!ATTLIST numberingSystem rules CDATA #IMPLIED >
|
||||
<!--@MATCH:any-->
|
||||
@ -1155,17 +1155,17 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
|
||||
<!ELEMENT matchVariable EMPTY >
|
||||
<!ATTLIST matchVariable id CDATA #REQUIRED >
|
||||
<!--@MATCH:regex/\$[a-zA-Z0-9_]+-->
|
||||
<!--@MATCH:regex/(?!undefined)\$[a-zA-Z0-9_]+-->
|
||||
<!ATTLIST matchVariable value CDATA #REQUIRED >
|
||||
<!--@MATCH:any-->
|
||||
<!--@MATCH:regex/([A-Z]{2}|[0-9]{3})(\+([A-Z]{2}|[0-9]{3}))*-->
|
||||
<!--@VALUE-->
|
||||
|
||||
<!ELEMENT languageMatch EMPTY >
|
||||
<!--@ORDERED-->
|
||||
<!ATTLIST languageMatch desired CDATA #REQUIRED >
|
||||
<!--@MATCH:any/TODO-->
|
||||
<!--@MATCH:regex/(?!undefined).*-->
|
||||
<!ATTLIST languageMatch supported CDATA #REQUIRED >
|
||||
<!--@MATCH:any/TODO-->
|
||||
<!--@MATCH:any/regex/(?!undefined).*-->
|
||||
<!ATTLIST languageMatch percent NMTOKEN #IMPLIED >
|
||||
<!--@MATCH:range/0~100-->
|
||||
<!--@VALUE-->
|
||||
@ -1278,7 +1278,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<!ATTLIST coverageLevel inLanguage CDATA #IMPLIED >
|
||||
<!--@MATCH:any-->
|
||||
<!ATTLIST coverageLevel inScript CDATA #IMPLIED >
|
||||
<!--@MATCH:validity/script-->
|
||||
<!--@MATCH:any-->
|
||||
<!ATTLIST coverageLevel inTerritory CDATA #IMPLIED >
|
||||
<!--@MATCH:any-->
|
||||
<!ATTLIST coverageLevel value CDATA #REQUIRED >
|
||||
|
||||
@ -64,17 +64,17 @@ Note: DTD @-annotations are not currently converted to .xsd. For full CLDR file
|
||||
<xs:element name="version">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="number" use="required"/>
|
||||
<xs:attribute default="45" name="cldrVersion">
|
||||
<xs:attribute default="46" name="cldrVersion">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="45"/>
|
||||
<xs:enumeration value="46"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute default="15.1.0" name="unicodeVersion">
|
||||
<xs:attribute default="16.0.0" name="unicodeVersion">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="15.1.0"/>
|
||||
<xs:enumeration value="16.0.0"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
|
||||
58
make/data/cldr/common/dtd/messageFormat/message.dtd
Normal file
58
make/data/cldr/common/dtd/messageFormat/message.dtd
Normal file
@ -0,0 +1,58 @@
|
||||
<!--
|
||||
Copyright © 1991-2024 Unicode, Inc.
|
||||
For terms of use, see http://www.unicode.org/copyright.html
|
||||
SPDX-License-Identifier: Unicode-3.0
|
||||
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
|
||||
-->
|
||||
|
||||
<!ELEMENT message (
|
||||
(declaration | unsupportedStatement)*,
|
||||
(pattern | (selectors,variant+))
|
||||
)>
|
||||
|
||||
<!-- In a <declaration type="input">, the <expression> MUST contain a <variable> -->
|
||||
<!ELEMENT declaration (expression)>
|
||||
<!ATTLIST declaration
|
||||
type (input | local) #REQUIRED
|
||||
name NMTOKEN #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT unsupportedStatement (expression)+>
|
||||
<!ATTLIST unsupportedStatement
|
||||
keyword CDATA #REQUIRED
|
||||
body CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT selectors (expression)+>
|
||||
<!ELEMENT variant (key+,pattern)>
|
||||
<!ELEMENT key (#PCDATA)>
|
||||
<!ATTLIST key catchall (true | false) "false">
|
||||
|
||||
<!ELEMENT pattern (#PCDATA | expression | markup)*>
|
||||
|
||||
<!ELEMENT expression (
|
||||
((literal | variable), (functionAnnotation | unsupportedAnnotation)?, attribute*) |
|
||||
((functionAnnotation | unsupportedAnnotation), attribute*)
|
||||
)>
|
||||
|
||||
<!ELEMENT literal (#PCDATA)>
|
||||
|
||||
<!ELEMENT variable (EMPTY)>
|
||||
<!ATTLIST variable name NMTOKEN #REQUIRED>
|
||||
|
||||
<!ELEMENT functionAnnotation (option)*>
|
||||
<!ATTLIST functionAnnotation name NMTOKEN #REQUIRED>
|
||||
|
||||
<!ELEMENT option (literal | variable)>
|
||||
<!ATTLIST option name NMTOKEN #REQUIRED>
|
||||
|
||||
<!ELEMENT unsupportedAnnotation (#PCDATA)>
|
||||
|
||||
<!ELEMENT attribute (literal | variable)?>
|
||||
<!ATTLIST attribute name NMTOKEN #REQUIRED>
|
||||
|
||||
<!ELEMENT markup (option*, attribute*)>
|
||||
<!ATTLIST markup
|
||||
kind (open | standalone | close) #REQUIRED
|
||||
name NMTOKEN #REQUIRED
|
||||
>
|
||||
242
make/data/cldr/common/dtd/messageFormat/message.json
Normal file
242
make/data/cldr/common/dtd/messageFormat/message.json
Normal file
@ -0,0 +1,242 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "https://github.com/unicode-org/cldr/blob/maint/maint-46/common/dtd/messageFormat/message.json",
|
||||
|
||||
"oneOf": [{ "$ref": "#/$defs/message" }, { "$ref": "#/$defs/select" }],
|
||||
|
||||
"$defs": {
|
||||
"literal": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "literal" },
|
||||
"value": { "type": "string" }
|
||||
},
|
||||
"required": ["type", "value"]
|
||||
},
|
||||
"variable": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "variable" },
|
||||
"name": { "type": "string" }
|
||||
},
|
||||
"required": ["type", "name"]
|
||||
},
|
||||
"options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": { "type": "string" },
|
||||
"value": {
|
||||
"oneOf": [
|
||||
{ "$ref": "#/$defs/literal" },
|
||||
{ "$ref": "#/$defs/variable" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["name", "value"]
|
||||
}
|
||||
},
|
||||
"attributes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": { "type": "string" },
|
||||
"value": {
|
||||
"oneOf": [
|
||||
{ "$ref": "#/$defs/literal" },
|
||||
{ "$ref": "#/$defs/variable" }
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["name"]
|
||||
}
|
||||
},
|
||||
|
||||
"function-annotation": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "function" },
|
||||
"name": { "type": "string" },
|
||||
"options": { "$ref": "#/$defs/options" }
|
||||
},
|
||||
"required": ["type", "name"]
|
||||
},
|
||||
"unsupported-annotation": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "unsupported-annotation" },
|
||||
"source": { "type": "string" }
|
||||
},
|
||||
"required": ["type", "source"]
|
||||
},
|
||||
"annotation": {
|
||||
"oneOf": [
|
||||
{ "$ref": "#/$defs/function-annotation" },
|
||||
{ "$ref": "#/$defs/unsupported-annotation" }
|
||||
]
|
||||
},
|
||||
|
||||
"literal-expression": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "expression" },
|
||||
"arg": { "$ref": "#/$defs/literal" },
|
||||
"annotation": { "$ref": "#/$defs/annotation" },
|
||||
"attributes": { "$ref": "#/$defs/attributes" }
|
||||
},
|
||||
"required": ["type", "arg"]
|
||||
},
|
||||
"variable-expression": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "expression" },
|
||||
"arg": { "$ref": "#/$defs/variable" },
|
||||
"annotation": { "$ref": "#/$defs/annotation" },
|
||||
"attributes": { "$ref": "#/$defs/attributes" }
|
||||
},
|
||||
"required": ["type", "arg"]
|
||||
},
|
||||
"function-expression": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "expression" },
|
||||
"annotation": { "$ref": "#/$defs/function-annotation" },
|
||||
"attributes": { "$ref": "#/$defs/attributes" }
|
||||
},
|
||||
"required": ["type", "annotation"]
|
||||
},
|
||||
"unsupported-expression": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "expression" },
|
||||
"annotation": { "$ref": "#/$defs/unsupported-annotation" },
|
||||
"attributes": { "$ref": "#/$defs/attributes" }
|
||||
},
|
||||
"required": ["type", "annotation"]
|
||||
},
|
||||
"expression": {
|
||||
"oneOf": [
|
||||
{ "$ref": "#/$defs/literal-expression" },
|
||||
{ "$ref": "#/$defs/variable-expression" },
|
||||
{ "$ref": "#/$defs/function-expression" },
|
||||
{ "$ref": "#/$defs/unsupported-expression" }
|
||||
]
|
||||
},
|
||||
|
||||
"markup": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "markup" },
|
||||
"kind": { "oneOf": [ "open", "standalone", "close" ] },
|
||||
"name": { "type": "string" },
|
||||
"options": { "$ref": "#/$defs/options" },
|
||||
"attributes": { "$ref": "#/$defs/attributes" }
|
||||
},
|
||||
"required": ["type", "kind", "name"]
|
||||
},
|
||||
|
||||
"pattern": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{ "type": "string" },
|
||||
{ "$ref": "#/$defs/expression" },
|
||||
{ "$ref": "#/$defs/markup" }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"input-declaration": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "input" },
|
||||
"name": { "type": "string" },
|
||||
"value": { "$ref": "#/$defs/variable-expression" }
|
||||
},
|
||||
"required": ["type", "name", "value"]
|
||||
},
|
||||
"local-declaration": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "local" },
|
||||
"name": { "type": "string" },
|
||||
"value": { "$ref": "#/$defs/expression" }
|
||||
},
|
||||
"required": ["type", "name", "value"]
|
||||
},
|
||||
"unsupported-statement": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "unsupported-statement" },
|
||||
"keyword": { "type": "string" },
|
||||
"body": { "type": "string" },
|
||||
"expressions": {
|
||||
"type": "array",
|
||||
"items": { "$ref": "#/$defs/expression" }
|
||||
}
|
||||
},
|
||||
"required": ["type", "keyword", "expressions"]
|
||||
},
|
||||
"declarations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{ "$ref": "#/$defs/input-declaration" },
|
||||
{ "$ref": "#/$defs/local-declaration" },
|
||||
{ "$ref": "#/$defs/unsupported-statement" }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"variant-key": {
|
||||
"oneOf": [
|
||||
{ "$ref": "#/$defs/literal" },
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "*" },
|
||||
"value": { "type": "string" }
|
||||
},
|
||||
"required": ["type"]
|
||||
}
|
||||
]
|
||||
},
|
||||
"message": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "message" },
|
||||
"declarations": { "$ref": "#/$defs/declarations" },
|
||||
"pattern": { "$ref": "#/$defs/pattern" }
|
||||
},
|
||||
"required": ["type", "declarations", "pattern"]
|
||||
},
|
||||
"select": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": { "const": "select" },
|
||||
"declarations": { "$ref": "#/$defs/declarations" },
|
||||
"selectors": {
|
||||
"type": "array",
|
||||
"items": { "$ref": "#/$defs/expression" }
|
||||
},
|
||||
"variants": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"keys": {
|
||||
"type": "array",
|
||||
"items": { "$ref": "#/$defs/variant-key" }
|
||||
},
|
||||
"value": { "$ref": "#/$defs/pattern" }
|
||||
},
|
||||
"required": ["keys", "value"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["type", "declarations", "selectors", "variants"]
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -893,7 +893,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<parseLenient sample=":" draft="unconfirmed">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£" draft="unconfirmed">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£" draft="unconfirmed">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-" draft="unconfirmed">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -2192,9 +2192,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity draft="unconfirmed">Улан-Батор</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity draft="unconfirmed">Чоибалсан</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity draft="unconfirmed">Макао</exemplarCity>
|
||||
</zone>
|
||||
@ -2975,13 +2972,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight draft="unconfirmed">Китаи, аԥхынтәи аамҭа</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic draft="unconfirmed">Чоибалсан</generic>
|
||||
<standard draft="unconfirmed">Чоибалсан, астандартә аамҭа</standard>
|
||||
<daylight draft="unconfirmed">Чоибалсан, аԥхынтәи аамҭа</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard draft="unconfirmed">ад-ха Қьырса</standard>
|
||||
|
||||
@ -58,6 +58,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bi">Bislama</language>
|
||||
<language type="bin">Bini</language>
|
||||
<language type="bla">Siksika</language>
|
||||
<language type="blo">Anii</language>
|
||||
<language type="bm">Bambara</language>
|
||||
<language type="bn">Bengaals</language>
|
||||
<language type="bo">Tibettaans</language>
|
||||
@ -104,7 +105,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="dgr">Dogrib</language>
|
||||
<language type="dje">Zarma</language>
|
||||
<language type="doi">Dogri</language>
|
||||
<language type="dsb">Benedesorbies</language>
|
||||
<language type="dsb">Nedersorbies</language>
|
||||
<language type="dua">Duala</language>
|
||||
<language type="dv">Divehi</language>
|
||||
<language type="dyo">Jola-Fonyi</language>
|
||||
@ -161,6 +162,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="hax">Suid-Haida</language>
|
||||
<language type="he">Hebreeus</language>
|
||||
<language type="hi">Hindi</language>
|
||||
<language type="hi_Latn" alt="variant">Hingels</language>
|
||||
<language type="hil">Hiligaynon</language>
|
||||
<language type="hit">Hetities</language>
|
||||
<language type="hmn">Hmong</language>
|
||||
@ -223,7 +225,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="krc">Karachay-Balkar</language>
|
||||
<language type="krl">Karelies</language>
|
||||
<language type="kru">Kurukh</language>
|
||||
<language type="ks">Kasjmirs</language>
|
||||
<language type="ks">Kasjmiri</language>
|
||||
<language type="ksb">Shambala</language>
|
||||
<language type="ksf">Bafia</language>
|
||||
<language type="ksh">Keuls</language>
|
||||
@ -232,6 +234,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">Komi</language>
|
||||
<language type="kw">Kornies</language>
|
||||
<language type="kwk">Kwak’wala</language>
|
||||
<language type="kxv">Kuvi</language>
|
||||
<language type="ky">Kirgisies</language>
|
||||
<language type="la">Latyn</language>
|
||||
<language type="lad">Ladino</language>
|
||||
@ -240,8 +243,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">Lezghies</language>
|
||||
<language type="lg">Ganda</language>
|
||||
<language type="li">Limburgs</language>
|
||||
<language type="lij">Liguries</language>
|
||||
<language type="lil">Lillooet</language>
|
||||
<language type="lkt">Lakota</language>
|
||||
<language type="lmo">Lombardies</language>
|
||||
<language type="ln">Lingaals</language>
|
||||
<language type="lo">Lao</language>
|
||||
<language type="lou">Louisiana Kreool</language>
|
||||
@ -354,7 +359,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="rwk">Rwa</language>
|
||||
<language type="sa">Sanskrit</language>
|
||||
<language type="sad">Sandawees</language>
|
||||
<language type="sah">Sakhaans</language>
|
||||
<language type="sah">Jakoeties</language>
|
||||
<language type="saq">Samburu</language>
|
||||
<language type="sat">Santalies</language>
|
||||
<language type="sba">Ngambay</language>
|
||||
@ -396,6 +401,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="sw">Swahili</language>
|
||||
<language type="swb">Comoraans</language>
|
||||
<language type="syr">Siries</language>
|
||||
<language type="szl">Silesies</language>
|
||||
<language type="ta">Tamil</language>
|
||||
<language type="tce">Suid-Tutchone</language>
|
||||
<language type="te">Teloegoe</language>
|
||||
@ -406,7 +412,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="tgx">Tagish</language>
|
||||
<language type="th">Thai</language>
|
||||
<language type="tht">Tahltan</language>
|
||||
<language type="ti">Tigrinya</language>
|
||||
<language type="ti">Tigrinja</language>
|
||||
<language type="tig">Tigre</language>
|
||||
<language type="tk">Turkmeens</language>
|
||||
<language type="tlh">Klingon</language>
|
||||
@ -433,10 +439,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="umb">Umbundu</language>
|
||||
<language type="und">Onbekende taal</language>
|
||||
<language type="ur">Oerdoe</language>
|
||||
<language type="uz">Oezbeeks</language>
|
||||
<language type="uz">Oesbekies</language>
|
||||
<language type="vai">Vai</language>
|
||||
<language type="ve">Venda</language>
|
||||
<language type="vec">Venesiaans</language>
|
||||
<language type="vi">Viëtnamees</language>
|
||||
<language type="vmw">Makhuwa</language>
|
||||
<language type="vo">Volapük</language>
|
||||
<language type="vun">Vunjo</language>
|
||||
<language type="wa">Walloon</language>
|
||||
@ -448,18 +456,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">Wu-Sjinees</language>
|
||||
<language type="xal">Kalmyk</language>
|
||||
<language type="xh">Xhosa</language>
|
||||
<language type="xnr">Kangri</language>
|
||||
<language type="xog">Soga</language>
|
||||
<language type="yav">Yangben</language>
|
||||
<language type="ybb">Yemba</language>
|
||||
<language type="yi">Jiddisj</language>
|
||||
<language type="yo">Yoruba</language>
|
||||
<language type="yo">Joroeba</language>
|
||||
<language type="yrl">Nheengatu</language>
|
||||
<language type="yue">Kantonees</language>
|
||||
<language type="yue" alt="menu">Kantonese Chinees</language>
|
||||
<language type="za">Zhuang</language>
|
||||
<language type="zgh">Standaard Marokkaanse Tamazight</language>
|
||||
<language type="zh">Chinees</language>
|
||||
<language type="zh" alt="menu">Mandarynse Chinees</language>
|
||||
<language type="zh_Hans" alt="long">Mandarynse Chinees (Vereenvoudigd)</language>
|
||||
<language type="zh_Hans" alt="long">Mandarynse Chinees (Vereenvoudig)</language>
|
||||
<language type="zh_Hant" alt="long">Mandarynse Chinees (Tradisioneel)</language>
|
||||
<language type="zu">Zoeloe</language>
|
||||
<language type="zun">Zuni</language>
|
||||
@ -479,7 +489,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<script type="Cans">Verenigde Kanadese Inheemse Lettergreepskrif</script>
|
||||
<script type="Cher">Cherokee</script>
|
||||
<script type="Copt" draft="unconfirmed">Koptieses</script>
|
||||
<script type="Cyrl">Sirillies</script>
|
||||
<script type="Cyrl">Cyrillies</script>
|
||||
<script type="Cyrs" draft="unconfirmed">Ou Kerkslawiese Sirillieses</script>
|
||||
<script type="Deva">Devanagari</script>
|
||||
<script type="Egyp" draft="unconfirmed">Egiptieses hiërogliewe</script>
|
||||
@ -487,7 +497,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<script type="Geor">Georgies</script>
|
||||
<script type="Goth" draft="unconfirmed">Gotieses</script>
|
||||
<script type="Grek">Grieks</script>
|
||||
<script type="Gujr">Gudjarati</script>
|
||||
<script type="Gujr">Goedjarati</script>
|
||||
<script type="Guru">Gurmukhi</script>
|
||||
<script type="Hanb">Han met Bopomofo</script>
|
||||
<script type="Hang">Hangul</script>
|
||||
@ -499,7 +509,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<script type="Hebr">Hebreeus</script>
|
||||
<script type="Hira">Hiragana</script>
|
||||
<script type="Hrkt">Japannese lettergreepskrif</script>
|
||||
<script type="Jamo">Jamo</script>
|
||||
<script type="Jpan">Japannees</script>
|
||||
<script type="Kana">Katakana</script>
|
||||
<script type="Khmr">Khmer</script>
|
||||
@ -523,7 +532,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<script type="Telu">Teloegoe</script>
|
||||
<script type="Tfng">Tifinagh</script>
|
||||
<script type="Thaa">Thaana</script>
|
||||
<script type="Thai">Thai</script>
|
||||
<script type="Tibt">Tibettaans</script>
|
||||
<script type="Ugar" draft="unconfirmed">Ugaritieses</script>
|
||||
<script type="Vaii">Vai</script>
|
||||
@ -533,11 +541,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<script type="Zsye">Emoji</script>
|
||||
<script type="Zsym">Simbole</script>
|
||||
<script type="Zxxx">Ongeskrewe</script>
|
||||
<script type="Zyyy">Gemeenskaplik</script>
|
||||
<script type="Zyyy">Algemeen</script>
|
||||
<script type="Zzzz">Onbekende skryfstelsel</script>
|
||||
</scripts>
|
||||
<territories>
|
||||
<territory type="001">Wêreld</territory>
|
||||
<territory type="001">wêreld</territory>
|
||||
<territory type="002">Afrika</territory>
|
||||
<territory type="003">Noord-Amerika</territory>
|
||||
<territory type="005">Suid-Amerika</territory>
|
||||
@ -611,8 +619,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="CD">Demokratiese Republiek van die Kongo</territory>
|
||||
<territory type="CD" alt="variant">Kongo (DRK)</territory>
|
||||
<territory type="CF">Sentraal-Afrikaanse Republiek</territory>
|
||||
<territory type="CG">Kongo - Brazzaville</territory>
|
||||
<territory type="CG" alt="variant">Kongo (Republiek die)</territory>
|
||||
<territory type="CG">Kongo-Brazzaville</territory>
|
||||
<territory type="CG" alt="variant">Kongo (Republiek)</territory>
|
||||
<territory type="CH">Switserland</territory>
|
||||
<territory type="CI">Ivoorkus</territory>
|
||||
<territory type="CK">Cookeilande</territory>
|
||||
@ -954,11 +962,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<type key="numbers" type="greklow">Griekse kleinletter-syfers</type>
|
||||
<type key="numbers" type="gujr">Goedjarati-syfers</type>
|
||||
<type key="numbers" type="guru">Gurmukhi-syfers</type>
|
||||
<type key="numbers" type="hanidec">Sjinese desimale syfers</type>
|
||||
<type key="numbers" type="hans">Vereenvoudigde Sjinese syfers</type>
|
||||
<type key="numbers" type="hansfin">Vereenvoudigde Sjinese finansiële syfers</type>
|
||||
<type key="numbers" type="hant">Tradisionele Sjinese syfers</type>
|
||||
<type key="numbers" type="hantfin">Tradisionele Sjinese finansiële syfers</type>
|
||||
<type key="numbers" type="hanidec">Chinese desimale syfers</type>
|
||||
<type key="numbers" type="hans">Vereenvoudigde Chinese syfers</type>
|
||||
<type key="numbers" type="hansfin">Vereenvoudigde Chinese finansiële syfers</type>
|
||||
<type key="numbers" type="hant">Tradisionele Chinese syfers</type>
|
||||
<type key="numbers" type="hantfin">Tradisionele Chinese finansiële syfers</type>
|
||||
<type key="numbers" type="hebr">Hebreeuse syfers</type>
|
||||
<type key="numbers" type="java">Javaanse syfers</type>
|
||||
<type key="numbers" type="jpan">Japannese syfers</type>
|
||||
@ -1355,7 +1363,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<eraNames>
|
||||
<era type="0">voor Christus</era>
|
||||
<era type="0" alt="variant">voor die gewone jaartelling</era>
|
||||
<era type="1">na Christus</era>
|
||||
<era type="1">ná Christus</era>
|
||||
<era type="1" alt="variant">gewone jaartelling</era>
|
||||
</eraNames>
|
||||
<eraAbbr>
|
||||
@ -1530,6 +1538,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<greatestDifference id="a">h a – h a</greatestDifference>
|
||||
<greatestDifference id="h">h – h a</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="H">
|
||||
<greatestDifference id="H">HH – HH</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="hm">
|
||||
<greatestDifference id="a">h:mm a – h:mm a</greatestDifference>
|
||||
<greatestDifference id="h">h:mm – h:mm a</greatestDifference>
|
||||
@ -2052,6 +2063,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>{0}-tyd</regionFormat>
|
||||
<regionFormat type="daylight">{0}-dagligtyd</regionFormat>
|
||||
<regionFormat type="standard">{0}-standaardtyd</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Gekoördineerde universele tyd</standard>
|
||||
@ -2082,7 +2096,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<exemplarCity>Bahrein</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/St_Barthelemy">
|
||||
<exemplarCity>Sint Barthélemy</exemplarCity>
|
||||
<exemplarCity>Sint Bartholomeus</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Brunei">
|
||||
<exemplarCity>Broenei</exemplarCity>
|
||||
@ -2111,9 +2125,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Atlantic/Cape_Verde">
|
||||
<exemplarCity>Kaap Verde</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Curacao">
|
||||
<exemplarCity>Curaçao</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Prague">
|
||||
<exemplarCity>Praag</exemplarCity>
|
||||
</zone>
|
||||
@ -2224,12 +2235,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Mexico_City">
|
||||
<exemplarCity>Meksikostad</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Merida">
|
||||
<exemplarCity>Merida</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Cancun">
|
||||
<exemplarCity>Cancun</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Kuala_Lumpur">
|
||||
<exemplarCity>Koeala-Loempoer</exemplarCity>
|
||||
</zone>
|
||||
@ -2254,15 +2259,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Lisbon">
|
||||
<exemplarCity>Lissabon</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Qatar">
|
||||
<exemplarCity>Katar</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Reunion">
|
||||
<exemplarCity>Réunion</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Bucharest">
|
||||
<exemplarCity>Boekarest</exemplarCity>
|
||||
</zone>
|
||||
@ -2308,9 +2307,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Africa/Mogadishu">
|
||||
<exemplarCity>Mogadisjoe</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Africa/Sao_Tome">
|
||||
<exemplarCity>São Tomé</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Damascus">
|
||||
<exemplarCity>Damaskus</exemplarCity>
|
||||
</zone>
|
||||
@ -2320,9 +2316,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kiëf</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/North_Dakota/Beulah">
|
||||
<exemplarCity>Beulah, Noord-Dakota</exemplarCity>
|
||||
</zone>
|
||||
@ -2583,13 +2576,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>China-dagligtyd</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Choibalsan-tyd</generic>
|
||||
<standard>Choibalsan-standaardtyd</standard>
|
||||
<daylight>Choibalsan-somertyd</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Christmaseiland-tyd</standard>
|
||||
@ -2604,7 +2590,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<long>
|
||||
<generic>Colombië-tyd</generic>
|
||||
<standard>Colombië-standaardtyd</standard>
|
||||
<daylight>Colombia-somertyd</daylight>
|
||||
<daylight>Colombië-somertyd</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Cook">
|
||||
@ -2835,6 +2821,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Petropavlovsk-Kamchatski-somertyd</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Kazakstan-tyd</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Oos-Kazakstan-tyd</standard>
|
||||
@ -3367,8 +3358,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other" alt="alphaNextToNumber">¤ 000 bn</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="AED">
|
||||
@ -3548,7 +3537,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>Guinese syli</displayName>
|
||||
</currency>
|
||||
<currency type="GTQ">
|
||||
<displayName>Guatemalaanse quetzal</displayName>
|
||||
<displayName>Guatemalaanse kwetsal</displayName>
|
||||
<displayName count="one">Guatemalaanse kwetsal</displayName>
|
||||
<displayName count="other">Guatemalaanse kwetsal</displayName>
|
||||
</currency>
|
||||
<currency type="GYD">
|
||||
<displayName>Guyanese dollar</displayName>
|
||||
@ -4191,7 +4182,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} kilobis</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-century">
|
||||
<displayName>eeu</displayName>
|
||||
<displayName>eeue</displayName>
|
||||
<unitPattern count="one">{0} eeu</unitPattern>
|
||||
<unitPattern count="other">{0} eeue</unitPattern>
|
||||
</unit>
|
||||
@ -4834,6 +4825,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} Engelse kwartgelling</unitPattern>
|
||||
<unitPattern count="other">{0} Engelse kwartgelling</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>lig</displayName>
|
||||
<unitPattern count="one">{0} lig</unitPattern>
|
||||
<unitPattern count="other">{0} lig</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>deeltjies per miljard</displayName>
|
||||
<unitPattern count="one">{0} deeltjie per miljard</unitPattern>
|
||||
<unitPattern count="other">{0} deeltjies per miljard</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nagte</displayName>
|
||||
<unitPattern count="one">{0} nag</unitPattern>
|
||||
<unitPattern count="other">{0} nagte</unitPattern>
|
||||
<perUnitPattern>{0} per nag</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>kompasrigting</displayName>
|
||||
<coordinateUnitPattern type="east">{0} oos</coordinateUnitPattern>
|
||||
@ -5080,8 +5087,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="graphics-megapixel">
|
||||
<displayName>megapieksels</displayName>
|
||||
<unitPattern count="one">{0} Mpx</unitPattern>
|
||||
<unitPattern count="other">{0} Mpx</unitPattern>
|
||||
<unitPattern count="one">{0} MP</unitPattern>
|
||||
<unitPattern count="other">{0} MP</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName>dpcm</displayName>
|
||||
@ -5415,6 +5422,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} kwart Eng.</unitPattern>
|
||||
<unitPattern count="other">{0} kwart Eng.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>lig</displayName>
|
||||
<unitPattern count="one">{0} lig</unitPattern>
|
||||
<unitPattern count="other">{0} lig</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>deeltjies/miljard</displayName>
|
||||
<unitPattern count="one">{0} deeltjie/miljard</unitPattern>
|
||||
<unitPattern count="other">{0} deeltjies/miljard</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nagte</displayName>
|
||||
<unitPattern count="one">{0} nag</unitPattern>
|
||||
<unitPattern count="other">{0} nagte</unitPattern>
|
||||
<perUnitPattern>{0}/nag</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>rigting</displayName>
|
||||
<coordinateUnitPattern type="east">{0} O</coordinateUnitPattern>
|
||||
@ -5723,8 +5746,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0}px</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-megapixel">
|
||||
<unitPattern count="one">{0}Mpx</unitPattern>
|
||||
<unitPattern count="other">{0}Mpx</unitPattern>
|
||||
<unitPattern count="one">{0} MP</unitPattern>
|
||||
<unitPattern count="other">{0} MP</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-pixel-per-centimeter">
|
||||
<unitPattern count="one">{0}ppcm</unitPattern>
|
||||
@ -5775,6 +5798,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0}jt.</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-foot">
|
||||
<displayName>vt.</displayName>
|
||||
<unitPattern count="one">{0}vt.</unitPattern>
|
||||
<unitPattern count="other">{0}vt.</unitPattern>
|
||||
</unit>
|
||||
@ -6137,6 +6161,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}kw.Eng.</unitPattern>
|
||||
<unitPattern count="other">{0}kw.Eng</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>lig</displayName>
|
||||
<unitPattern count="one">{0} lig</unitPattern>
|
||||
<unitPattern count="other">{0} lig</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>deeltjies/miljard</displayName>
|
||||
<unitPattern count="one">{0}deeltjie/miljard</unitPattern>
|
||||
<unitPattern count="other">{0}deeltjies/miljard</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nagte</displayName>
|
||||
<unitPattern count="one">{0} nag</unitPattern>
|
||||
<unitPattern count="other">{0} nagte</unitPattern>
|
||||
<perUnitPattern>{0}/nag</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
<durationUnit type="hm">
|
||||
<durationUnitPattern>hh:mm</durationUnitPattern>
|
||||
@ -6160,6 +6200,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<listPattern type="standard-narrow">
|
||||
<listPatternPart type="end">{0}, {1}</listPatternPart>
|
||||
</listPattern>
|
||||
<listPattern type="unit">
|
||||
<listPatternPart type="end">{0}, {1}</listPatternPart>
|
||||
<listPatternPart type="2">{0}, {1}</listPatternPart>
|
||||
</listPattern>
|
||||
<listPattern type="unit-narrow">
|
||||
<listPatternPart type="start">{0} {1}</listPatternPart>
|
||||
<listPatternPart type="middle">{0} {1}</listPatternPart>
|
||||
<listPatternPart type="end">{0} {1}</listPatternPart>
|
||||
<listPatternPart type="2">{0} {1}</listPatternPart>
|
||||
</listPattern>
|
||||
<listPattern type="unit-short">
|
||||
<listPatternPart type="end">{0}, {1}</listPatternPart>
|
||||
<listPatternPart type="2">{0}, {1}</listPatternPart>
|
||||
</listPattern>
|
||||
</listPatterns>
|
||||
<posix>
|
||||
<messages>
|
||||
@ -6170,7 +6224,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characterLabels>
|
||||
<characterLabelPattern type="all">{0} – alle</characterLabelPattern>
|
||||
<characterLabelPattern type="compatibility">{0} – versoenbaarheid</characterLabelPattern>
|
||||
<characterLabelPattern type="enclosed">{0} ingeslote</characterLabelPattern>
|
||||
<characterLabelPattern type="enclosed">{0} – ingeslote</characterLabelPattern>
|
||||
<characterLabelPattern type="extended">{0} – uitgebreid</characterLabelPattern>
|
||||
<characterLabelPattern type="facing-left">{0} kyk na links</characterLabelPattern>
|
||||
<characterLabelPattern type="facing-right">{0} kyk na regs</characterLabelPattern>
|
||||
@ -6190,14 +6244,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characterLabel type="arrows">pyltjie</characterLabel>
|
||||
<characterLabel type="body">liggaam</characterLabel>
|
||||
<characterLabel type="box_drawing">bokstekening</characterLabel>
|
||||
<characterLabel type="braille">Braille</characterLabel>
|
||||
<characterLabel type="building">gebou</characterLabel>
|
||||
<characterLabel type="bullets_stars">kolpunt/sterretjie</characterLabel>
|
||||
<characterLabel type="bullets_stars">kolpunt of sterretjie</characterLabel>
|
||||
<characterLabel type="consonantal_jamo">konsonantale jamo</characterLabel>
|
||||
<characterLabel type="currency_symbols">geldeenheidsimbool</characterLabel>
|
||||
<characterLabel type="dash_connector">koppelteken/koppelaar</characterLabel>
|
||||
<characterLabel type="dash_connector">koppelteken of koppelaar</characterLabel>
|
||||
<characterLabel type="digits">syfer</characterLabel>
|
||||
<characterLabel type="divination_symbols">towersimbool</characterLabel>
|
||||
<characterLabel type="divination_symbols">waarsêerysimbool</characterLabel>
|
||||
<characterLabel type="downwards_arrows">af-pyltjie</characterLabel>
|
||||
<characterLabel type="downwards_upwards_arrows">af-op-pyltjie</characterLabel>
|
||||
<characterLabel type="east_asian_scripts">Oos-Asiese skrif</characterLabel>
|
||||
@ -6210,7 +6263,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characterLabel type="format_whitespace">formatering en witspasie</characterLabel>
|
||||
<characterLabel type="full_width_form_variant">volwye variant</characterLabel>
|
||||
<characterLabel type="geometric_shapes">geometriese vorm</characterLabel>
|
||||
<characterLabel type="half_width_form_variant">Halfwye variant</characterLabel>
|
||||
<characterLabel type="half_width_form_variant">halfwye variant</characterLabel>
|
||||
<characterLabel type="han_characters">Han-karakter</characterLabel>
|
||||
<characterLabel type="han_radicals">Han-radikaal</characterLabel>
|
||||
<characterLabel type="hanzi_simplified">Hanzi (vereenvoudig)</characterLabel>
|
||||
@ -6236,7 +6289,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characterLabel type="numbers">nommers</characterLabel>
|
||||
<characterLabel type="objects">voorwerp</characterLabel>
|
||||
<characterLabel type="other">ander</characterLabel>
|
||||
<characterLabel type="paired">Saamgevoeg</characterLabel>
|
||||
<characterLabel type="paired">saamgevoeg</characterLabel>
|
||||
<characterLabel type="person">persoon</characterLabel>
|
||||
<characterLabel type="phonetic_alphabet">fonetiese alfabet</characterLabel>
|
||||
<characterLabel type="pictographs">piktogram</characterLabel>
|
||||
@ -6245,8 +6298,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characterLabel type="rightwards_arrows">regs-pyltjie</characterLabel>
|
||||
<characterLabel type="sign_standard_symbols">teken of simbool</characterLabel>
|
||||
<characterLabel type="small_form_variant">klein variante</characterLabel>
|
||||
<characterLabel type="smiley">gesiggie</characterLabel>
|
||||
<characterLabel type="smileys_people">emosiekoon of mens</characterLabel>
|
||||
<characterLabel type="smiley">glimlaggesiggie</characterLabel>
|
||||
<characterLabel type="smileys_people">glimlaggesiggie of mens</characterLabel>
|
||||
<characterLabel type="south_asian_scripts">Suid-Asiese skrif</characterLabel>
|
||||
<characterLabel type="southeast_asian_scripts">Suidoos-Asiese skrif</characterLabel>
|
||||
<characterLabel type="spacing">spasiëring</characterLabel>
|
||||
@ -6270,7 +6323,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<styleName type="ital" subtype="1">kursief</styleName>
|
||||
<styleName type="opsz" subtype="8">onderskrif</styleName>
|
||||
<styleName type="opsz" subtype="12">teks</styleName>
|
||||
<styleName type="opsz" subtype="18">kantel</styleName>
|
||||
<styleName type="opsz" subtype="18">betiteling</styleName>
|
||||
<styleName type="opsz" subtype="72">vertoon</styleName>
|
||||
<styleName type="opsz" subtype="144">plakkaat</styleName>
|
||||
<styleName type="slnt" subtype="-12">skuins na agtertoe</styleName>
|
||||
@ -6470,7 +6523,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<nameField type="given-informal">Bertie</nameField>
|
||||
<nameField type="given2">Henri Retief</nameField>
|
||||
<nameField type="surname-prefix">∅∅∅</nameField>
|
||||
<nameField type="surname-core">Wyk</nameField>
|
||||
<nameField type="surname-core">Willemse</nameField>
|
||||
<nameField type="surname2">∅∅∅</nameField>
|
||||
<nameField type="generation">jnr.</nameField>
|
||||
<nameField type="credentials">LP</nameField>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -879,8 +879,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMEd">
|
||||
<greatestDifference id="d" draft="unconfirmed">E, d/M/y – E, d/M/y</greatestDifference>
|
||||
<greatestDifference id="M" draft="unconfirmed">E, d/M/y</greatestDifference>
|
||||
<greatestDifference id="y" draft="unconfirmed">E, d/M/Y – E, d/M/Y</greatestDifference>
|
||||
<greatestDifference id="M" draft="unconfirmed">E, d/M/y – E, d/M/y</greatestDifference>
|
||||
<greatestDifference id="y" draft="unconfirmed">E, d/M/y – E, d/M/y</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMM">
|
||||
<greatestDifference id="M" draft="unconfirmed">LLL–LLL y</greatestDifference>
|
||||
|
||||
@ -74,6 +74,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">البينية</language>
|
||||
<language type="bkm">لغة الكوم</language>
|
||||
<language type="bla">السيكسيكية</language>
|
||||
<language type="blo" draft="contributed">الآنية</language>
|
||||
<language type="bm">البامبارا</language>
|
||||
<language type="bn">البنغالية</language>
|
||||
<language type="bo">التبتية</language>
|
||||
@ -132,7 +133,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="dav">تيتا</language>
|
||||
<language type="de">الألمانية</language>
|
||||
<language type="de_AT">الألمانية النمساوية</language>
|
||||
<language type="de_CH">الألمانية العليا السويسرية</language>
|
||||
<language type="del">الديلوير</language>
|
||||
<language type="den">السلافية</language>
|
||||
<language type="dgr">الدوجريب</language>
|
||||
@ -155,11 +155,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="el">اليونانية</language>
|
||||
<language type="elx">الإمايت</language>
|
||||
<language type="en">الإنجليزية</language>
|
||||
<language type="en_AU">الإنجليزية الأسترالية</language>
|
||||
<language type="en_CA">الإنجليزية الكندية</language>
|
||||
<language type="en_GB">الإنجليزية البريطانية</language>
|
||||
<language type="en_GB" alt="short">الإنجليزية المملكة المتحدة</language>
|
||||
<language type="en_US">الإنجليزية الأمريكية</language>
|
||||
<language type="en_US" alt="short">الإنجليزية الولايات المتحدة</language>
|
||||
<language type="enm">الإنجليزية الوسطى</language>
|
||||
<language type="eo">الإسبرانتو</language>
|
||||
@ -181,8 +177,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="fo">الفاروية</language>
|
||||
<language type="fon">الفون</language>
|
||||
<language type="fr">الفرنسية</language>
|
||||
<language type="fr_CA">الفرنسية الكندية</language>
|
||||
<language type="fr_CH">الفرنسية السويسرية</language>
|
||||
<language type="frc">الفرنسية الكاجونية</language>
|
||||
<language type="frm">الفرنسية الوسطى</language>
|
||||
<language type="fro">الفرنسية القديمة</language>
|
||||
@ -302,6 +296,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">الكومي</language>
|
||||
<language type="kw">الكورنية</language>
|
||||
<language type="kwk">الكواكوالا</language>
|
||||
<language type="kxv">الكوفية</language>
|
||||
<language type="ky">القيرغيزية</language>
|
||||
<language type="la">اللاتينية</language>
|
||||
<language type="lad">اللادينو</language>
|
||||
@ -312,9 +307,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">الليزجية</language>
|
||||
<language type="lg">الغاندا</language>
|
||||
<language type="li">الليمبورغية</language>
|
||||
<language type="lij">الليغورية</language>
|
||||
<language type="lil">الليلويتية</language>
|
||||
<language type="lkt">لاكوتا</language>
|
||||
<language type="lmo" draft="contributed">اللومبردية</language>
|
||||
<language type="lmo">اللومبردية</language>
|
||||
<language type="ln">اللينجالا</language>
|
||||
<language type="lo">اللاوية</language>
|
||||
<language type="lol">منغولى</language>
|
||||
@ -384,7 +380,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="nia">النياس</language>
|
||||
<language type="niu">النيوي</language>
|
||||
<language type="nl">الهولندية</language>
|
||||
<language type="nl_BE">الفلمنكية</language>
|
||||
<language type="nmg">كواسيو</language>
|
||||
<language type="nn">النرويجية نينورسك</language>
|
||||
<language type="nnh">لغة النجيمبون</language>
|
||||
@ -508,6 +503,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">القمرية</language>
|
||||
<language type="syc">سريانية تقليدية</language>
|
||||
<language type="syr">السريانية</language>
|
||||
<language type="szl" draft="contributed">السيليزية</language>
|
||||
<language type="ta">التاميلية</language>
|
||||
<language type="tce">التوتشون الجنوبية</language>
|
||||
<language type="te">التيلوغوية</language>
|
||||
@ -557,7 +553,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="uz">الأوزبكية</language>
|
||||
<language type="vai">الفاي</language>
|
||||
<language type="ve">الفيندا</language>
|
||||
<language type="vec">البندقية</language>
|
||||
<language type="vi">الفيتنامية</language>
|
||||
<language type="vmw" draft="contributed">الماكوا</language>
|
||||
<language type="vo">لغة الفولابوك</language>
|
||||
<language type="vot">الفوتيك</language>
|
||||
<language type="vun">الفونجو</language>
|
||||
@ -571,6 +569,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">الوو الصينية</language>
|
||||
<language type="xal">الكالميك</language>
|
||||
<language type="xh">الخوسا</language>
|
||||
<language type="xnr">كانغري</language>
|
||||
<language type="xog">السوغا</language>
|
||||
<language type="yao">الياو</language>
|
||||
<language type="yap">اليابيز</language>
|
||||
@ -1831,22 +1830,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<greatestDifference id="y">E، d/M/y – E، d/M/y</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMM">
|
||||
<greatestDifference id="M">MMM – MMM، y</greatestDifference>
|
||||
<greatestDifference id="y">MMM، y – MMM، y</greatestDifference>
|
||||
<greatestDifference id="M">MMM – MMM y</greatestDifference>
|
||||
<greatestDifference id="y">MMM y – MMM y</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMMd">
|
||||
<greatestDifference id="d">d–d MMM، y</greatestDifference>
|
||||
<greatestDifference id="M">d MMM – d MMM، y</greatestDifference>
|
||||
<greatestDifference id="y">d MMM، y – d MMM، y</greatestDifference>
|
||||
<greatestDifference id="d">d–d MMM y</greatestDifference>
|
||||
<greatestDifference id="M">d MMM – d MMM y</greatestDifference>
|
||||
<greatestDifference id="y">d MMM y – d MMM y</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMMEd">
|
||||
<greatestDifference id="d">E، d – E، d MMM، y</greatestDifference>
|
||||
<greatestDifference id="M">E، d MMM – E، d MMM، y</greatestDifference>
|
||||
<greatestDifference id="y">E، d MMM، y – E، d MMM، y</greatestDifference>
|
||||
<greatestDifference id="y">E، d MMM y – E، d MMM y</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMMM">
|
||||
<greatestDifference id="M">MMMM – MMMM، y</greatestDifference>
|
||||
<greatestDifference id="y">MMMM، y – MMMM، y</greatestDifference>
|
||||
<greatestDifference id="M">MMMM – MMMM y</greatestDifference>
|
||||
<greatestDifference id="y">MMMM y – MMMM y</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
</intervalFormats>
|
||||
</dateTimeFormats>
|
||||
@ -2816,6 +2815,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>توقيت {0}</regionFormat>
|
||||
<regionFormat type="daylight">توقيت {0} الصيفي</regionFormat>
|
||||
<regionFormat type="standard">توقيت {0} الرسمي</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>هونولولو</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>التوقيت العالمي المنسق</standard>
|
||||
@ -3553,9 +3555,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>آلانباتار</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>تشوبالسان</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>ماكاو</exemplarCity>
|
||||
</zone>
|
||||
@ -3955,9 +3954,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>نوم</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>هونولولو</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>أنشوراج</exemplarCity>
|
||||
</zone>
|
||||
@ -4309,13 +4305,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>توقيت الصين الصيفي</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>توقيت شويبالسان</generic>
|
||||
<standard>توقيت شويبالسان الرسمي</standard>
|
||||
<daylight>التوقيت الصيفي لشويبالسان</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>توقيت جزر الكريسماس</standard>
|
||||
@ -4569,6 +4558,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight draft="contributed">توقيت بيتروبافلوفسك-كامتشاتسكي الصيفي</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>توقيت كازاخستان</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>توقيت شرق كازاخستان</standard>
|
||||
@ -4998,14 +4992,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</timeZoneNames>
|
||||
</dates>
|
||||
<numbers>
|
||||
<defaultNumberingSystem>arab</defaultNumberingSystem>
|
||||
<defaultNumberingSystem>latn</defaultNumberingSystem>
|
||||
<defaultNumberingSystem alt="latn">latn</defaultNumberingSystem>
|
||||
<otherNumberingSystems>
|
||||
<native>arab</native>
|
||||
</otherNumberingSystems>
|
||||
<symbols numberSystem="arab">
|
||||
<exponential>أس</exponential>
|
||||
<nan>ليس رقم</nan>
|
||||
<nan>ليس رقمًا</nan>
|
||||
</symbols>
|
||||
<symbols numberSystem="arabext">
|
||||
<nan draft="contributed">ليس رقمًا</nan>
|
||||
</symbols>
|
||||
<symbols numberSystem="latn">
|
||||
<percentSign>%</percentSign>
|
||||
@ -5232,12 +5229,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<currencyPatternAppendISO>{0} ¤¤</currencyPatternAppendISO>
|
||||
<unitPattern count="zero">{0} {1}</unitPattern>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="two">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="many">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6471,13 +6462,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} قيراط</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<displayName>مغم/ديسيبل</displayName>
|
||||
<unitPattern count="zero">{0} مغم/ديسيبل</unitPattern>
|
||||
<unitPattern count="one">{0} مغم/ديسيبل</unitPattern>
|
||||
<unitPattern count="two">{0} مغم/ديسيبل</unitPattern>
|
||||
<unitPattern count="few">{0} مغم/ديسيبل</unitPattern>
|
||||
<unitPattern count="many">{0} مغم/ديسيبل</unitPattern>
|
||||
<unitPattern count="other">{0} مغم/ديسيبل</unitPattern>
|
||||
<gender>masculine</gender>
|
||||
<displayName>مغم/ديسيلتر</displayName>
|
||||
<unitPattern count="zero">{0} مغم/ديسيل</unitPattern>
|
||||
<unitPattern count="one">مغم/ديسيلتر</unitPattern>
|
||||
<unitPattern count="two">مغم/ديسيلتر</unitPattern>
|
||||
<unitPattern count="few">{0} مغم/ديسيلتر</unitPattern>
|
||||
<unitPattern count="many">{0} مغم/ديسيلتر</unitPattern>
|
||||
<unitPattern count="other">{0} مغم/ديسيلتر</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-millimole-per-liter">
|
||||
<gender>masculine</gender>
|
||||
@ -6636,7 +6628,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<perUnitPattern>{0} في السنة</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-quarter">
|
||||
<gender draft="contributed">masculine</gender>
|
||||
<gender>masculine</gender>
|
||||
<displayName>أرباع</displayName>
|
||||
<unitPattern count="zero">{0} ربع سنوي</unitPattern>
|
||||
<unitPattern count="one">ربع سنوي</unitPattern>
|
||||
@ -6743,6 +6735,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<gender>masculine</gender>
|
||||
</unit>
|
||||
<unit type="energy-kilocalorie">
|
||||
<gender draft="contributed">masculine</gender>
|
||||
<displayName>كيلو سعرة</displayName>
|
||||
<unitPattern count="zero">{0} كيلو سعرة</unitPattern>
|
||||
<unitPattern count="one">{0} كيلو سعرة</unitPattern>
|
||||
@ -6890,7 +6883,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} بكسل لكل بوصة</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName draft="contributed">نقطة لكل سنتيمتر</displayName>
|
||||
<displayName>نقطة لكل سنتيمتر</displayName>
|
||||
<unitPattern count="zero">{0} نقطة لكل سنتيمتر</unitPattern>
|
||||
<unitPattern count="one">{0} نقطة لكل سنتيمتر</unitPattern>
|
||||
<unitPattern count="two">نقطتان لكل سنتيمتر</unitPattern>
|
||||
@ -6999,6 +6992,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="length-mile-scandinavian">
|
||||
<gender>masculine</gender>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<gender>feminine</gender>
|
||||
</unit>
|
||||
<unit type="length-solar-radius">
|
||||
<displayName>نصف قطر شمسي</displayName>
|
||||
<unitPattern count="zero">{0} نصف قطر شمسي</unitPattern>
|
||||
@ -7140,6 +7136,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} قوة حصان</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<gender>masculine</gender>
|
||||
<displayName>مليمتر زئبقي</displayName>
|
||||
<unitPattern count="zero">{0} مليمتر زئبقي</unitPattern>
|
||||
<unitPattern count="one">{0} مليمتر زئبقي</unitPattern>
|
||||
@ -7462,6 +7459,27 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} رشّة</unitPattern>
|
||||
<unitPattern count="other">{0} رشّة</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<gender>masculine</gender>
|
||||
<displayName>جزء بالمليار</displayName>
|
||||
<unitPattern count="zero">{0} جزء بالمليار</unitPattern>
|
||||
<unitPattern count="one">{0} جزء بالمليار</unitPattern>
|
||||
<unitPattern count="two">جزآن بالمليار</unitPattern>
|
||||
<unitPattern count="few">{0} أجزاء بالمليار</unitPattern>
|
||||
<unitPattern count="many">{0} جزءًا بالمليار</unitPattern>
|
||||
<unitPattern count="other">{0} جزء بالمليار</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<gender>feminine</gender>
|
||||
<displayName>ليالي</displayName>
|
||||
<unitPattern count="zero">{0} ليلة</unitPattern>
|
||||
<unitPattern count="one">ليلة</unitPattern>
|
||||
<unitPattern count="two">ليلتان</unitPattern>
|
||||
<unitPattern count="few">{0} ليالٍ</unitPattern>
|
||||
<unitPattern count="many">{0} ليلةً</unitPattern>
|
||||
<unitPattern count="other">{0} ليلة</unitPattern>
|
||||
<perUnitPattern>{0} في الليلة</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>اتجاه أساسي</displayName>
|
||||
<coordinateUnitPattern type="east">{0} شرقًا</coordinateUnitPattern>
|
||||
@ -7735,13 +7753,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} قيراط</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<displayName>مغم/ديسبل</displayName>
|
||||
<unitPattern count="zero">{0} مغم/ديسبل</unitPattern>
|
||||
<unitPattern count="one">{0} مغم/ديسبل</unitPattern>
|
||||
<unitPattern count="two">{0} مغم/ديسبل</unitPattern>
|
||||
<unitPattern count="few">{0} مغم/ديسبل</unitPattern>
|
||||
<unitPattern count="many">{0} مغم/ديسبل</unitPattern>
|
||||
<unitPattern count="other">{0} مغم/ديسبل</unitPattern>
|
||||
<displayName>مغم/ديسيل</displayName>
|
||||
<unitPattern count="zero">{0} مغم/ديسيل</unitPattern>
|
||||
<unitPattern count="one">{0} مغم/ديسيل</unitPattern>
|
||||
<unitPattern count="two">{0} مغم/ديسيل</unitPattern>
|
||||
<unitPattern count="few">{0} مغم/ديسيل</unitPattern>
|
||||
<unitPattern count="many">{0} مغم/ديسيل</unitPattern>
|
||||
<unitPattern count="other">{0} مغم/ديسيل</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-millimole-per-liter">
|
||||
<displayName>م.مول/ل</displayName>
|
||||
@ -8283,19 +8301,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} بكسل/بوصة</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName draft="contributed">نقطة/سم</displayName>
|
||||
<displayName>نقطة/سم</displayName>
|
||||
<unitPattern count="zero">{0} نقطة/سم</unitPattern>
|
||||
<unitPattern count="one">{0} نقطة/سم</unitPattern>
|
||||
<unitPattern count="two">{0} نقطتان/سم</unitPattern>
|
||||
<unitPattern count="two">{0} نقطة/سم</unitPattern>
|
||||
<unitPattern count="few">{0} نقاط/سم</unitPattern>
|
||||
<unitPattern count="many">{0} نقطة/سم</unitPattern>
|
||||
<unitPattern count="other">{0} نقطة/سم</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-inch">
|
||||
<displayName>نقطة لكل بوصة</displayName>
|
||||
<displayName>نقطة/بوصة</displayName>
|
||||
<unitPattern count="zero">{0} نقطة/بوصة</unitPattern>
|
||||
<unitPattern count="one">{0} نقطة/بوصة</unitPattern>
|
||||
<unitPattern count="two">نقطة/بوصة</unitPattern>
|
||||
<unitPattern count="two">{0} نقطة/بوصة</unitPattern>
|
||||
<unitPattern count="few">{0} نقاط/بوصة</unitPattern>
|
||||
<unitPattern count="many">{0} نقطة/بوصة</unitPattern>
|
||||
<unitPattern count="other">{0} نقطة/بوصة</unitPattern>
|
||||
@ -9223,6 +9241,25 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} ربع غالون إمبراطوري</unitPattern>
|
||||
<unitPattern count="other">{0} ربع غالون إمبراطوري</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>جزء/مليار</displayName>
|
||||
<unitPattern count="zero">{0} جزء/مليار</unitPattern>
|
||||
<unitPattern count="one">{0} جزء/مليار</unitPattern>
|
||||
<unitPattern count="two">جزآن/مليار</unitPattern>
|
||||
<unitPattern count="few">{0} أجزاء/مليار</unitPattern>
|
||||
<unitPattern count="many">{0} جزءًا/مليار</unitPattern>
|
||||
<unitPattern count="other">{0} جزء/مليار</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ليلة</displayName>
|
||||
<unitPattern count="zero">{0} ليلة</unitPattern>
|
||||
<unitPattern count="one">ليلة</unitPattern>
|
||||
<unitPattern count="two">ليلتان</unitPattern>
|
||||
<unitPattern count="few">{0} ليالٍ</unitPattern>
|
||||
<unitPattern count="many">{0} ليلةً</unitPattern>
|
||||
<unitPattern count="other">{0} ليلة</unitPattern>
|
||||
<perUnitPattern>{0}/ل</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>اتجاه</displayName>
|
||||
<coordinateUnitPattern type="east">{0} شرق</coordinateUnitPattern>
|
||||
@ -9271,13 +9308,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} ث قوسية</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<displayName>مغ/ديسبل</displayName>
|
||||
<unitPattern count="zero">{0} مغ/ديسبل</unitPattern>
|
||||
<unitPattern count="one">{0} مغ/ديسبل</unitPattern>
|
||||
<unitPattern count="two">{0} مغ/ديسبل</unitPattern>
|
||||
<unitPattern count="few">{0} مغ/ديسبل</unitPattern>
|
||||
<unitPattern count="many">{0} مغ/ديسبل</unitPattern>
|
||||
<unitPattern count="other">{0} مغ/ديسبل</unitPattern>
|
||||
<displayName>مغ/ديسيل</displayName>
|
||||
<unitPattern count="zero">{0} مغ/ديسيل</unitPattern>
|
||||
<unitPattern count="one">{0} مغ/ديسيل</unitPattern>
|
||||
<unitPattern count="two">{0} مغ/ديسيل</unitPattern>
|
||||
<unitPattern count="few">{0} مغ/ديسيل</unitPattern>
|
||||
<unitPattern count="many">{0} مغ/ديسيل</unitPattern>
|
||||
<unitPattern count="other">{0} مغ/ديسيل</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-item">
|
||||
<unitPattern count="zero">{0} عنصر</unitPattern>
|
||||
@ -9469,7 +9506,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} بك/بوصة</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName draft="contributed">ن/سم</displayName>
|
||||
<displayName>ن/سم</displayName>
|
||||
<unitPattern count="zero">{0} ن/سم</unitPattern>
|
||||
<unitPattern count="one">{0} ن/سم</unitPattern>
|
||||
<unitPattern count="two">{0} ن/سم</unitPattern>
|
||||
@ -9478,6 +9515,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} ن/سم</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-inch">
|
||||
<displayName>ن/بوصة</displayName>
|
||||
<unitPattern count="zero">{0} ن/بوصة</unitPattern>
|
||||
<unitPattern count="one">{0} ن/بوصة</unitPattern>
|
||||
<unitPattern count="two">{0} ن/بوصة</unitPattern>
|
||||
@ -9643,6 +9681,25 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} قدح</unitPattern>
|
||||
<unitPattern count="other">{0} قدح</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>جزء/مليار</displayName>
|
||||
<unitPattern count="zero">{0} جزء/مليار</unitPattern>
|
||||
<unitPattern count="one">{0} جزء/مليار</unitPattern>
|
||||
<unitPattern count="two">جزآن/مليار</unitPattern>
|
||||
<unitPattern count="few">{0} أجزاء/مليار</unitPattern>
|
||||
<unitPattern count="many">{0} جزءًا/مليار</unitPattern>
|
||||
<unitPattern count="other">{0} جزء/مليار</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ليلة</displayName>
|
||||
<unitPattern count="zero">{0} ل</unitPattern>
|
||||
<unitPattern count="one">{0} ل</unitPattern>
|
||||
<unitPattern count="two">{0} ل</unitPattern>
|
||||
<unitPattern count="few">{0} ل</unitPattern>
|
||||
<unitPattern count="many">{0} ل</unitPattern>
|
||||
<unitPattern count="other">{0} ل</unitPattern>
|
||||
<perUnitPattern>{0}/ل</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
<listPatterns>
|
||||
|
||||
@ -55,6 +55,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bi">বিছলামা</language>
|
||||
<language type="bin">বিনি</language>
|
||||
<language type="bla">ছিক্সিকা</language>
|
||||
<language type="blo">আনি</language>
|
||||
<language type="bm">বামবাৰা</language>
|
||||
<language type="bn">বাংলা</language>
|
||||
<language type="bo">তিব্বতী</language>
|
||||
@ -176,7 +177,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="iba">ইবান</language>
|
||||
<language type="ibb">ইবিবিও</language>
|
||||
<language type="id">ইণ্ডোনেচিয়</language>
|
||||
<language type="ie" draft="unconfirmed">উপস্থাপন ভাষা</language>
|
||||
<language type="ie">ইণ্টাৰলিংগুৱে</language>
|
||||
<language type="ig">ইগ্বো</language>
|
||||
<language type="ii">ছিচুৱান ই</language>
|
||||
<language type="ikt">ৱেষ্টাৰ্ণ কানাডিয়ান ইনক্টিটুট</language>
|
||||
@ -229,6 +230,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">কোমি</language>
|
||||
<language type="kw">কোৰ্নিচ</language>
|
||||
<language type="kwk">ক্বাকৱালা</language>
|
||||
<language type="kxv">কুভি</language>
|
||||
<language type="ky">কিৰ্গিজ</language>
|
||||
<language type="la">লেটিন</language>
|
||||
<language type="lad">লাডিনো</language>
|
||||
@ -237,6 +239,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">লেজঘিয়ান</language>
|
||||
<language type="lg">গান্দা</language>
|
||||
<language type="li">লিম্বুৰ্গিচ</language>
|
||||
<language type="lij">লিংগুৰিয়ান</language>
|
||||
<language type="lil">লিল্লোৱেট</language>
|
||||
<language type="lkt">লাকোটা</language>
|
||||
<language type="lmo">ল’ম্বাৰ্ড</language>
|
||||
@ -393,6 +396,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="sw_CD">কঙ্গো স্বাহিলি</language>
|
||||
<language type="swb">কোমোৰিয়ান</language>
|
||||
<language type="syr">চিৰিয়াক</language>
|
||||
<language type="szl">ছাইলেছিয়ান</language>
|
||||
<language type="ta">তামিল</language>
|
||||
<language type="tce">দাক্ষিণাত্যৰ টুটচ’ন</language>
|
||||
<language type="te">তেলুগু</language>
|
||||
@ -432,7 +436,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="uz">উজবেক</language>
|
||||
<language type="vai">ভাই</language>
|
||||
<language type="ve">ভেণ্ডা</language>
|
||||
<language type="vec">ভেনেছিয়ান</language>
|
||||
<language type="vi">ভিয়েটনামী</language>
|
||||
<language type="vmw">মাখুৱা</language>
|
||||
<language type="vo">ভোলাপুক</language>
|
||||
<language type="vun">ভুঞ্জু</language>
|
||||
<language type="wa">ৱালুন</language>
|
||||
@ -443,6 +449,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">ৱু চাইনিজ</language>
|
||||
<language type="xal">কাল্মিক</language>
|
||||
<language type="xh">হোছা</language>
|
||||
<language type="xnr">কাংগৰি</language>
|
||||
<language type="xog">ছোগা</language>
|
||||
<language type="yav">য়াংবেন</language>
|
||||
<language type="ybb">য়েম্বা</language>
|
||||
@ -451,6 +458,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="yrl">হিংগাটো</language>
|
||||
<language type="yue">কেণ্টোনীজ</language>
|
||||
<language type="yue" alt="menu">চাইনিজ, কেণ্টোনীজ</language>
|
||||
<language type="za">ঝুৱাং</language>
|
||||
<language type="zgh">ষ্টেণ্ডাৰ্ড মোৰোক্কান তামাজাইট</language>
|
||||
<language type="zh">চীনা</language>
|
||||
<language type="zh" alt="menu">চীনা, মেণ্ডাৰিন</language>
|
||||
@ -945,12 +953,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<exemplarCharacters type="index">[় অ আ ই ঈ উ ঊ ঋ এ ঐ ও ঔ ং ঃ ক খ গ ঘ ঙ চ ছ জ ঝ ঞ ট ঠ ড ঢ ণ ৎ ত থ দ ধ ন প ফ ব ভ ম য ৰ ল ৱ শ ষ স হ ্]</exemplarCharacters>
|
||||
<exemplarCharacters type="numbers">[\- ‑ , . % ‰ + 0০ 1১ 2২ 3৩ 4৪ 5৫ 6৬ 7৭ 8৮ 9৯]</exemplarCharacters>
|
||||
<exemplarCharacters type="punctuation">[\- ‐‑ – — , ; \: ! ? . … । '‘’ "“” ( ) \[ \] § @ * / \& # † ‡ ′ ″]</exemplarCharacters>
|
||||
<parseLenients scope="date" level="lenient">
|
||||
<parseLenient sample=":">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£" draft="contributed">[£ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
<parseLenient sample=",">[,,﹐︐ ، ٫ 、﹑、︑]</parseLenient>
|
||||
@ -1199,9 +1201,27 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</quarters>
|
||||
<dayPeriods>
|
||||
<dayPeriodContext type="format">
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">am</dayPeriod>
|
||||
<dayPeriod type="pm">pm</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="am">AM</dayPeriod>
|
||||
<dayPeriod type="pm">PM</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
<dayPeriodContext type="stand-alone">
|
||||
<dayPeriodWidth type="abbreviated">
|
||||
<dayPeriod type="am">পূৰ্বাহ্ন</dayPeriod>
|
||||
<dayPeriod type="pm">অপৰাহ্ন</dayPeriod>
|
||||
<dayPeriod type="am">AM</dayPeriod>
|
||||
<dayPeriod type="pm">PM</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">AM</dayPeriod>
|
||||
<dayPeriod type="pm">PM</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="am">AM</dayPeriod>
|
||||
<dayPeriod type="pm">PM</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
</dayPeriods>
|
||||
@ -2525,9 +2545,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>উলানবাটাৰ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>কোইবাল্ছন</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>মাকাও</exemplarCity>
|
||||
</zone>
|
||||
@ -3271,13 +3288,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>চীনৰ ডেলাইট সময়</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>কোইবাল্ছনৰ সময়</generic>
|
||||
<standard>কোইবাল্ছনৰ মান সময়</standard>
|
||||
<daylight>কোইবাল্ছনৰ গ্ৰীষ্মকালীন সময়</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>খ্ৰীষ্টমাছ দ্বীপৰ সময়</standard>
|
||||
@ -3519,6 +3529,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>জাপানৰ ডেলাইট সময়</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>কাজাখস্তানৰ সময়</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>পূব কাজাখস্তানৰ সময়</standard>
|
||||
@ -4060,8 +4075,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<currencyPatternAppendISO>{0} ¤¤</currencyPatternAppendISO>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="AED">
|
||||
@ -5321,6 +5334,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} ইম্পেৰিয়েল কুৱাৰ্ট</unitPattern>
|
||||
<unitPattern count="other">{0} ইম্পেৰিয়েল কুৱাৰ্ট</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>আলোক</displayName>
|
||||
<unitPattern count="one">{0} আলোক</unitPattern>
|
||||
<unitPattern count="other">{0} আলোক</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>প্ৰতি বিলিয়নত অংশ</displayName>
|
||||
<unitPattern count="one">{0} প্ৰতি বিলিয়নত অংশ</unitPattern>
|
||||
<unitPattern count="other">{0} প্ৰতি বিলিয়নত অংশ</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>নিশা</displayName>
|
||||
<unitPattern count="one">{0} নিশা</unitPattern>
|
||||
<unitPattern count="other">{0} নিশা</unitPattern>
|
||||
<perUnitPattern>{0}/নিশা</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>প্ৰধান দিক্-নিৰ্দেশনা</displayName>
|
||||
<coordinateUnitPattern type="east">{0} পূব</coordinateUnitPattern>
|
||||
@ -6230,6 +6259,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} পিঞ্চ</unitPattern>
|
||||
<unitPattern count="other">{0} পিঞ্চ</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>আলোক</displayName>
|
||||
<unitPattern count="one">{0} আলোক</unitPattern>
|
||||
<unitPattern count="other">{0} আলোক</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>অংশ/বিলিয়ন</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>নিশা</displayName>
|
||||
<unitPattern count="one">{0} নিশা</unitPattern>
|
||||
<unitPattern count="other">{0} নিশা</unitPattern>
|
||||
<perUnitPattern>{0}/নিশা</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>দিক্-নিৰ্দেশনা</displayName>
|
||||
<coordinateUnitPattern type="east">{0} পূঃ</coordinateUnitPattern>
|
||||
@ -6395,6 +6438,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="force-newton">
|
||||
<displayName>N</displayName>
|
||||
</unit>
|
||||
<unit type="force-kilowatt-hour-per-100-kilometer">
|
||||
<unitPattern count="one">{0}kWh/100km</unitPattern>
|
||||
<unitPattern count="other">{0} kWh/100km</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-pixel">
|
||||
<displayName>পি.</displayName>
|
||||
<unitPattern count="one">{0} পি</unitPattern>
|
||||
@ -6468,6 +6515,21 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}dsp-Imp</unitPattern>
|
||||
<unitPattern count="other">{0}dsp-Imp</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>আলোক</displayName>
|
||||
<unitPattern count="one">{0}আলোক</unitPattern>
|
||||
<unitPattern count="other">{0}আলোক</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<unitPattern count="one">{0}ppb</unitPattern>
|
||||
<unitPattern count="other">{0}ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>নিশা</displayName>
|
||||
<unitPattern count="one">{0} নিশা</unitPattern>
|
||||
<unitPattern count="other">{0} নিশা</unitPattern>
|
||||
<perUnitPattern>{0}/নিশা</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
<listPatterns>
|
||||
@ -6675,6 +6737,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<personNames>
|
||||
<nameOrderLocales order="givenFirst">und as</nameOrderLocales>
|
||||
<nameOrderLocales order="surnameFirst">ko si ta te vi yue zh</nameOrderLocales>
|
||||
<parameterDefault parameter="formality">informal</parameterDefault>
|
||||
<personName order="givenFirst" length="long" usage="referring" formality="formal">
|
||||
<namePattern>{given} {given2} {surname} {credentials}</namePattern>
|
||||
</personName>
|
||||
|
||||
@ -208,7 +208,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="gmh">altualemán mediu</language>
|
||||
<language type="gn">guaraní</language>
|
||||
<language type="goh">altualemán antiguu</language>
|
||||
<language type="gom">goan konkani</language>
|
||||
<language type="gon">gondi</language>
|
||||
<language type="gor">gorontalo</language>
|
||||
<language type="got">góticu</language>
|
||||
@ -1321,7 +1320,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<parseLenient sample=":" draft="contributed">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£" draft="contributed">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£" draft="contributed">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-" draft="contributed">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -3376,6 +3375,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<regionFormat>Hora de {0}</regionFormat>
|
||||
<regionFormat type="daylight">Hora braniega de {0}</regionFormat>
|
||||
<regionFormat type="standard">Hora estándar de {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>HST</generic>
|
||||
<standard>HST</standard>
|
||||
<daylight>HDT</daylight>
|
||||
</short>
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Hora coordinada universal</standard>
|
||||
@ -3705,14 +3712,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kiev</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>HST</generic>
|
||||
<standard>HST</standard>
|
||||
<daylight>HDT</daylight>
|
||||
</short>
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/North_Dakota/Beulah">
|
||||
<exemplarCity>Beulah, Dakota del Norte</exemplarCity>
|
||||
</zone>
|
||||
@ -4025,13 +4024,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Hora braniega de China</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Hora de Choibalsan</generic>
|
||||
<standard>Hora estándar de Choibalsan</standard>
|
||||
<daylight>Hora braniega de Choibalsan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Hora estándar de la Islla Christmas</standard>
|
||||
|
||||
@ -67,6 +67,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bik">bikol</language>
|
||||
<language type="bin">bini</language>
|
||||
<language type="bla">siksikə</language>
|
||||
<language type="blo">anii</language>
|
||||
<language type="bm">bambara</language>
|
||||
<language type="bn">benqal</language>
|
||||
<language type="bo">tibet</language>
|
||||
@ -291,6 +292,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">komi</language>
|
||||
<language type="kw">korn</language>
|
||||
<language type="kwk">Kvakvala</language>
|
||||
<language type="kxv">kuvi</language>
|
||||
<language type="ky">qırğız</language>
|
||||
<language type="la">latın</language>
|
||||
<language type="lad">sefard</language>
|
||||
@ -301,8 +303,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">ləzgi</language>
|
||||
<language type="lg">qanda</language>
|
||||
<language type="li">limburq</language>
|
||||
<language type="lij">liquriya dili</language>
|
||||
<language type="lil">Liluet</language>
|
||||
<language type="lkt">lakota</language>
|
||||
<language type="lmo">lombard dili</language>
|
||||
<language type="ln">linqala</language>
|
||||
<language type="lo">laos</language>
|
||||
<language type="lol">monqo</language>
|
||||
@ -315,7 +319,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lua">luba-lulua</language>
|
||||
<language type="lui">luyseno</language>
|
||||
<language type="lun">lunda</language>
|
||||
<language type="luo">luo</language>
|
||||
<language type="lus">mizo</language>
|
||||
<language type="luy">luyia</language>
|
||||
<language type="lv">latış</language>
|
||||
@ -490,6 +493,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="sw_CD">Konqo suahilicəsi</language>
|
||||
<language type="swb">komor</language>
|
||||
<language type="syr">suriya</language>
|
||||
<language type="szl">silez dili</language>
|
||||
<language type="ta">tamil</language>
|
||||
<language type="tce">cənubi tuçon</language>
|
||||
<language type="te">teluqu</language>
|
||||
@ -536,9 +540,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="und">naməlum dil</language>
|
||||
<language type="ur">urdu</language>
|
||||
<language type="uz">özbək</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">venda</language>
|
||||
<language type="vec">venet dili</language>
|
||||
<language type="vi">vyetnam</language>
|
||||
<language type="vmw">makua dili</language>
|
||||
<language type="vo">volapük</language>
|
||||
<language type="vot">votik</language>
|
||||
<language type="vun">vunyo</language>
|
||||
@ -552,6 +557,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">vu</language>
|
||||
<language type="xal">kalmık</language>
|
||||
<language type="xh">xosa</language>
|
||||
<language type="xnr">kanqri</language>
|
||||
<language type="xog">soqa</language>
|
||||
<language type="yao">yao</language>
|
||||
<language type="yap">yapiz</language>
|
||||
@ -1133,7 +1139,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<parseLenient sample=":">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -2028,6 +2034,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>{0} Vaxtı</regionFormat>
|
||||
<regionFormat type="daylight">{0} Yay Vaxtı</regionFormat>
|
||||
<regionFormat type="standard">{0} Standart Vaxtı</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Koordinasiya edilmiş ümumdünya vaxtı</standard>
|
||||
@ -2595,9 +2604,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Ulanbator</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Çoybalsan</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Makao</exemplarCity>
|
||||
</zone>
|
||||
@ -2853,9 +2859,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>Nom</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>Ankorac</exemplarCity>
|
||||
</zone>
|
||||
@ -3167,13 +3170,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Çin Yay Vaxtı</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Çoybalsan Vaxtı</generic>
|
||||
<standard>Çoybalsan Standart Vaxtı</standard>
|
||||
<daylight>Çoybalsan Yay Vaxtı</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Milad Adası Vaxtı</standard>
|
||||
@ -3412,6 +3408,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Yaponiya Yay Vaxtı</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Qazaxıstan vaxtı</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Şərqi Qazaxıstan Vaxtı</standard>
|
||||
@ -3836,10 +3837,36 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</timeZoneNames>
|
||||
</dates>
|
||||
<numbers>
|
||||
<symbols numberSystem="arab">
|
||||
<group>,</group>
|
||||
<percentSign>٪</percentSign>
|
||||
<plusSign>+</plusSign>
|
||||
<minusSign>-</minusSign>
|
||||
</symbols>
|
||||
<symbols numberSystem="arabext">
|
||||
<decimal>,</decimal>
|
||||
<percentSign>~</percentSign>
|
||||
<plusSign>+</plusSign>
|
||||
<minusSign>-</minusSign>
|
||||
</symbols>
|
||||
<symbols numberSystem="latn">
|
||||
<decimal>,</decimal>
|
||||
<group>.</group>
|
||||
</symbols>
|
||||
<decimalFormats numberSystem="arab">
|
||||
<decimalFormatLength>
|
||||
<decimalFormat>
|
||||
<pattern>standart onluq kəsr0.###</pattern>
|
||||
</decimalFormat>
|
||||
</decimalFormatLength>
|
||||
</decimalFormats>
|
||||
<decimalFormats numberSystem="arabext">
|
||||
<decimalFormatLength>
|
||||
<decimalFormat>
|
||||
<pattern>standart onluq kəsr0.###</pattern>
|
||||
</decimalFormat>
|
||||
</decimalFormatLength>
|
||||
</decimalFormats>
|
||||
<decimalFormats numberSystem="latn">
|
||||
<decimalFormatLength type="long">
|
||||
<decimalFormat>
|
||||
@ -3892,6 +3919,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</decimalFormat>
|
||||
</decimalFormatLength>
|
||||
</decimalFormats>
|
||||
<scientificFormats numberSystem="arab">
|
||||
<scientificFormatLength>
|
||||
<scientificFormat>
|
||||
<pattern>standart elmi#</pattern>
|
||||
</scientificFormat>
|
||||
</scientificFormatLength>
|
||||
</scientificFormats>
|
||||
<currencyFormats numberSystem="latn">
|
||||
<currencyFormatLength>
|
||||
<currencyFormat type="standard">
|
||||
@ -3929,8 +3963,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000T ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6056,6 +6088,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} İmp. kvarta</unitPattern>
|
||||
<unitPattern count="other">{0} İmp. kvarta</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>işıq</displayName>
|
||||
<unitPattern count="one">{0} işıq</unitPattern>
|
||||
<unitPattern count="other">{0} işıq</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>bir milyarda düşən hissə sayı</displayName>
|
||||
<unitPattern count="one">bir milyarda düşən {0} hissə</unitPattern>
|
||||
<unitPattern count="other">bir milyarda düşən {0} hissə</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>gecə</displayName>
|
||||
<unitPattern count="one">{0} gecə</unitPattern>
|
||||
<unitPattern count="other">{0} gecə</unitPattern>
|
||||
<perUnitPattern>{0}/gecə</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>kardinal istiqamət</displayName>
|
||||
</coordinateUnit>
|
||||
@ -6609,6 +6657,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} kvarta İmp.</unitPattern>
|
||||
<unitPattern count="other">{0} kvarta İmp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>işıq</displayName>
|
||||
<unitPattern count="one">{0} işıq</unitPattern>
|
||||
<unitPattern count="other">{0} işıq</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>hissə/milyard</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>gecə</displayName>
|
||||
<unitPattern count="one">{0} gecə</unitPattern>
|
||||
<unitPattern count="other">{0} gecə</unitPattern>
|
||||
<perUnitPattern>{0}/gecə</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>istiqamət</displayName>
|
||||
</coordinateUnit>
|
||||
@ -6862,6 +6924,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}qt-Imp.</unitPattern>
|
||||
<unitPattern count="other">{0}qt-Imp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>işıq</displayName>
|
||||
<unitPattern count="one">{0}işıq</unitPattern>
|
||||
<unitPattern count="other">{0}işıq</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>gecə</displayName>
|
||||
<unitPattern count="one">{0}gecə</unitPattern>
|
||||
<unitPattern count="other">{0}gecə</unitPattern>
|
||||
<perUnitPattern>{0}/gecə</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
<listPatterns>
|
||||
|
||||
@ -48,7 +48,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<script type="Cyrl" draft="provisional">روسی</script>
|
||||
<script type="Hans" draft="provisional">هان (ساده کرتگێن)</script>
|
||||
<script type="Hant" draft="provisional">هان (اسلیگێن)</script>
|
||||
<script type="Latn" draft="provisional">لاتین</script>
|
||||
<script type="Latn">لاتینی</script>
|
||||
<script type="Zxxx" draft="provisional">نبشته نبوتگێن سیاهگ</script>
|
||||
<script type="Zzzz" draft="provisional">کۆڈ نبوتگێن سیاهگ</script>
|
||||
</scripts>
|
||||
@ -252,6 +252,13 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<pattern draft="provisional">{1} {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<availableFormats>
|
||||
<dateFormatItem id="yMd">dd-MM-y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMd">d MMM y</dateFormatItem>
|
||||
</availableFormats>
|
||||
<intervalFormats>
|
||||
<intervalFormatFallback>{1} - {0}</intervalFormatFallback>
|
||||
</intervalFormats>
|
||||
</dateTimeFormats>
|
||||
</calendar>
|
||||
</calendars>
|
||||
@ -373,6 +380,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight draft="provisional">رۆنندی یورپئے گرماگی ساهت</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="GMT">
|
||||
<long>
|
||||
<standard>گرینوِچ مین ٹائم</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Hawaii_Aleutian">
|
||||
<long>
|
||||
<generic draft="provisional">هئواییئے ساهت</generic>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -58,6 +58,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bi">біслама</language>
|
||||
<language type="bin">эда</language>
|
||||
<language type="bla">блэкфут</language>
|
||||
<language type="blo">аніі</language>
|
||||
<language type="bm">бамбара</language>
|
||||
<language type="bn">бенгальская</language>
|
||||
<language type="bo">тыбецкая</language>
|
||||
@ -242,6 +243,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">комі</language>
|
||||
<language type="kw">корнская</language>
|
||||
<language type="kwk">квакіутль</language>
|
||||
<language type="kxv">куві</language>
|
||||
<language type="ky">кіргізская</language>
|
||||
<language type="la">лацінская</language>
|
||||
<language type="lad">ладына</language>
|
||||
@ -250,8 +252,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">лезгінская</language>
|
||||
<language type="lg">ганда</language>
|
||||
<language type="li">лімбургская</language>
|
||||
<language type="lij">лігурская</language>
|
||||
<language type="lil">лілуэт</language>
|
||||
<language type="lkt">лакота</language>
|
||||
<language type="lmo">ламбардская</language>
|
||||
<language type="ln">лінгала</language>
|
||||
<language type="lo">лаоская</language>
|
||||
<language type="lol">монга</language>
|
||||
@ -417,6 +421,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="sw_CD">кангалезская суахілі</language>
|
||||
<language type="swb">каморская</language>
|
||||
<language type="syr">сірыйская</language>
|
||||
<language type="szl">сілезская</language>
|
||||
<language type="ta">тамільская</language>
|
||||
<language type="tce">паўднёвая тутчонэ</language>
|
||||
<language type="te">тэлугу</language>
|
||||
@ -456,7 +461,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="uz">узбекская</language>
|
||||
<language type="vai">ваі</language>
|
||||
<language type="ve">венда</language>
|
||||
<language type="vec">венецыянская</language>
|
||||
<language type="vi">в’етнамская</language>
|
||||
<language type="vmw">макуа</language>
|
||||
<language type="vo">валапюк</language>
|
||||
<language type="vun">вунджо</language>
|
||||
<language type="wa">валонская</language>
|
||||
@ -468,6 +475,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">ву</language>
|
||||
<language type="xal">калмыцкая</language>
|
||||
<language type="xh">коса</language>
|
||||
<language type="xnr">кангры</language>
|
||||
<language type="xog">сога</language>
|
||||
<language type="yav">янгбэн</language>
|
||||
<language type="ybb">йемба</language>
|
||||
@ -476,6 +484,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="yrl">ньенгату</language>
|
||||
<language type="yue">кантонскі дыялект кітайскай</language>
|
||||
<language type="yue" alt="menu">кітайская, кантонскі дыялект</language>
|
||||
<language type="za">чжуанская</language>
|
||||
<language type="zap">сапатэк</language>
|
||||
<language type="zgh">стандартная мараканская тамазіхт</language>
|
||||
<language type="zh">кітайская</language>
|
||||
@ -702,7 +711,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="IM">Востраў Мэн</territory>
|
||||
<territory type="IN">Індыя</territory>
|
||||
<territory type="IO">Брытанская тэрыторыя ў Індыйскім акіяне</territory>
|
||||
<territory type="IO" alt="chagos">архіпелаг Чагас</territory>
|
||||
<territory type="IO" alt="chagos">Архіпелаг Чагас</territory>
|
||||
<territory type="IQ">Ірак</territory>
|
||||
<territory type="IR">Іран</territory>
|
||||
<territory type="IS">Ісландыя</territory>
|
||||
@ -2170,6 +2179,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>Час: {0}</regionFormat>
|
||||
<regionFormat type="daylight">Летні час: {0}</regionFormat>
|
||||
<regionFormat type="standard">Стандартны час: {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Ганалулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Універсальны каардынаваны час</standard>
|
||||
@ -2907,9 +2919,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Улан-Батар</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Чайбалсан</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Макаа</exemplarCity>
|
||||
</zone>
|
||||
@ -3309,9 +3318,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>Ном</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Ганалулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>Анкарыдж</exemplarCity>
|
||||
</zone>
|
||||
@ -3656,13 +3662,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Летні час Кітая</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Час Чайбалсана</generic>
|
||||
<standard>Стандартны час Чайбалсана</standard>
|
||||
<daylight>Летні час Чайбалсана</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Час вострава Каляд</standard>
|
||||
@ -3901,6 +3900,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Летні час Японіі</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Казахстанскі час</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Усходнеказахстанскі час</standard>
|
||||
@ -4471,10 +4475,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 трлн ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="many">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="AED">
|
||||
@ -6932,6 +6932,21 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>брыт. кварты</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>частак на мільярд</displayName>
|
||||
<unitPattern count="one">{0} частка на мільярд</unitPattern>
|
||||
<unitPattern count="few">{0} часткі на мільярд</unitPattern>
|
||||
<unitPattern count="many">{0} частак на мільярд</unitPattern>
|
||||
<unitPattern count="other">{0} часткі на мільярд</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ночы</displayName>
|
||||
<unitPattern count="one">{0} ноч</unitPattern>
|
||||
<unitPattern count="few">{0} ночы</unitPattern>
|
||||
<unitPattern count="many">{0} начэй</unitPattern>
|
||||
<unitPattern count="other">{0} ночы</unitPattern>
|
||||
<perUnitPattern>{0} за ноч</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>кірунак свету</displayName>
|
||||
<coordinateUnitPattern type="east">{0} усходняй даўгаты</coordinateUnitPattern>
|
||||
@ -8285,6 +8300,21 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} брыт. кварт</unitPattern>
|
||||
<unitPattern count="other">{0} брыт. кварты</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>частак/мільярд</displayName>
|
||||
<unitPattern count="one">{0} ч/млрд</unitPattern>
|
||||
<unitPattern count="few">{0} ч/млрд</unitPattern>
|
||||
<unitPattern count="many">{0} ч/млрд</unitPattern>
|
||||
<unitPattern count="other">{0} ч/млрд</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ночы</displayName>
|
||||
<unitPattern count="one">{0} ноч</unitPattern>
|
||||
<unitPattern count="few">{0} ноч</unitPattern>
|
||||
<unitPattern count="many">{0} начэй</unitPattern>
|
||||
<unitPattern count="other">{0} ночы</unitPattern>
|
||||
<perUnitPattern>{0}/ноч</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>кірунак</displayName>
|
||||
<coordinateUnitPattern type="east">{0} усх. д.</coordinateUnitPattern>
|
||||
@ -8324,6 +8354,21 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} дэс. лыжак</unitPattern>
|
||||
<unitPattern count="other">{0} дэс. лыжкі</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>ч/млрд</displayName>
|
||||
<unitPattern count="one">{0} ч/млрд</unitPattern>
|
||||
<unitPattern count="few">{0} ч/млрд</unitPattern>
|
||||
<unitPattern count="many">{0} ч/млрд</unitPattern>
|
||||
<unitPattern count="other">{0} ч/млрд</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ночы</displayName>
|
||||
<unitPattern count="one">{0} ноч</unitPattern>
|
||||
<unitPattern count="few">{0} ночы</unitPattern>
|
||||
<unitPattern count="many">{0} начэй</unitPattern>
|
||||
<unitPattern count="other">{0} ночы</unitPattern>
|
||||
<perUnitPattern>{0}/ноч</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="east">{0} У</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="north">{0} Пн</coordinateUnitPattern>
|
||||
|
||||
@ -1546,13 +1546,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight draft="provisional">Летні час Кітаю</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic draft="provisional">Час Чайбалсану</generic>
|
||||
<standard draft="provisional">Змоўчны час Чайбалсану</standard>
|
||||
<daylight draft="provisional">Летні час Чайбалсану</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard draft="provisional">Час вострава Раства</standard>
|
||||
|
||||
@ -97,7 +97,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="crr" draft="unconfirmed">Algonkin Karolina</language>
|
||||
<language type="cs" draft="unconfirmed">Cèk</language>
|
||||
<language type="csw" draft="unconfirmed">Kri Rawa</language>
|
||||
<language type="cu" draft="unconfirmed">Slawen Gerèja</language>
|
||||
<language type="cu" draft="unconfirmed">Slawen Geréja</language>
|
||||
<language type="cv" draft="unconfirmed">Cuwas</language>
|
||||
<language type="cy" draft="unconfirmed">Walès</language>
|
||||
<language type="da" draft="unconfirmed">Dèn</language>
|
||||
@ -109,7 +109,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="dgr" draft="unconfirmed">Dogrib</language>
|
||||
<language type="dje" draft="unconfirmed">Jarma</language>
|
||||
<language type="doi" draft="unconfirmed">Dograb</language>
|
||||
<language type="dsb" draft="unconfirmed">Sorben Bawa</language>
|
||||
<language type="dsb" draft="unconfirmed">Soreb Bawa</language>
|
||||
<language type="dua" draft="unconfirmed">Duala</language>
|
||||
<language type="dv" draft="unconfirmed">Diwéhi</language>
|
||||
<language type="dyo" draft="unconfirmed">Jola-Poni</language>
|
||||
@ -123,11 +123,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="en" draft="unconfirmed">Inggris</language>
|
||||
<language type="en_GB" draft="unconfirmed">Inggris (Britani)</language>
|
||||
<language type="en_GB" alt="short" draft="unconfirmed">Inggris (Kerajaan Rempug)</language>
|
||||
<language type="eo" draft="unconfirmed">Èspèranto</language>
|
||||
<language type="eo" draft="unconfirmed">Sepèranto</language>
|
||||
<language type="es" draft="unconfirmed">Spanyol</language>
|
||||
<language type="es_ES" draft="unconfirmed">Spanyol (Èropa)</language>
|
||||
<language type="et" draft="unconfirmed">Èst</language>
|
||||
<language type="eu" draft="unconfirmed">Basken</language>
|
||||
<language type="et" draft="unconfirmed">Èstlan</language>
|
||||
<language type="eu" draft="unconfirmed">Basek</language>
|
||||
<language type="ewo" draft="unconfirmed">Èwondo</language>
|
||||
<language type="fa" draft="unconfirmed">Parsi</language>
|
||||
<language type="fa_AF" draft="unconfirmed">Parsi Dari</language>
|
||||
@ -135,16 +135,16 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="fi" draft="unconfirmed">Pin</language>
|
||||
<language type="fil" draft="unconfirmed">Pilipèn</language>
|
||||
<language type="fj" draft="unconfirmed">Piji</language>
|
||||
<language type="fo" draft="unconfirmed">Perower</language>
|
||||
<language type="fo" draft="unconfirmed">Pèrower</language>
|
||||
<language type="fon" draft="unconfirmed">Pon</language>
|
||||
<language type="fr" draft="unconfirmed">Prasman</language>
|
||||
<language type="frc" draft="unconfirmed">Prasman Kajen</language>
|
||||
<language type="frr" draft="unconfirmed">Pris Lor</language>
|
||||
<language type="frr" draft="unconfirmed">Peris Lor</language>
|
||||
<language type="fur" draft="unconfirmed">Priuli</language>
|
||||
<language type="fy" draft="unconfirmed">Pris Kulon</language>
|
||||
<language type="fy" draft="unconfirmed">Peris Kulon</language>
|
||||
<language type="ga" draft="unconfirmed">Ir</language>
|
||||
<language type="gaa" draft="unconfirmed">Gang</language>
|
||||
<language type="gd" draft="unconfirmed">Gaèlik Skot</language>
|
||||
<language type="gd" draft="unconfirmed">Gaèlik Sekot</language>
|
||||
<language type="gez" draft="unconfirmed">Gé’ès</language>
|
||||
<language type="gil" draft="unconfirmed">Gilbet</language>
|
||||
<language type="gl" draft="unconfirmed">Galisi</language>
|
||||
@ -166,14 +166,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="hmn" draft="unconfirmed">Mong</language>
|
||||
<language type="hnj" draft="unconfirmed">Mong Njua</language>
|
||||
<language type="hr" draft="unconfirmed">Kroat</language>
|
||||
<language type="hsb" draft="unconfirmed">Sorben Atas</language>
|
||||
<language type="ht" draft="unconfirmed">Kréol Haiti</language>
|
||||
<language type="hsb" draft="unconfirmed">Soreb Atas</language>
|
||||
<language type="ht" draft="unconfirmed">Peranakan Haiti</language>
|
||||
<language type="hu" draft="unconfirmed">Honggari</language>
|
||||
<language type="hup" draft="unconfirmed">Hupa</language>
|
||||
<language type="hur" draft="unconfirmed">Halkomélem</language>
|
||||
<language type="hy" draft="unconfirmed">Lemènder</language>
|
||||
<language type="hz" draft="unconfirmed">Hèrèro</language>
|
||||
<language type="ia" draft="unconfirmed">Interlingua</language>
|
||||
<language type="hz" draft="unconfirmed">Héréro</language>
|
||||
<language type="ia" draft="unconfirmed">Anterlida</language>
|
||||
<language type="iba" draft="unconfirmed">Iban</language>
|
||||
<language type="ibb" draft="unconfirmed">Ibibio</language>
|
||||
<language type="id" draft="unconfirmed">Indonésia</language>
|
||||
@ -182,7 +182,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="ii" draft="unconfirmed">I Sucoan</language>
|
||||
<language type="ikt" draft="unconfirmed">Inuktitut Kanada Kulon</language>
|
||||
<language type="ilo" draft="unconfirmed">Iloko</language>
|
||||
<language type="inh" draft="unconfirmed">Inggusèti</language>
|
||||
<language type="inh" draft="unconfirmed">Inggus</language>
|
||||
<language type="io" draft="unconfirmed">Ido</language>
|
||||
<language type="is" draft="unconfirmed">Èslan</language>
|
||||
<language type="it" draft="unconfirmed">Itali</language>
|
||||
@ -193,6 +193,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="jmc" draft="unconfirmed">Masamé</language>
|
||||
<language type="jv" draft="unconfirmed">Jawa</language>
|
||||
<language type="ka" draft="unconfirmed">Géorgi</language>
|
||||
<language type="kaa" draft="unconfirmed">Karakalpak</language>
|
||||
<language type="kab" draft="unconfirmed">Kabili</language>
|
||||
<language type="kac" draft="unconfirmed">Kacin</language>
|
||||
<language type="kaj" draft="unconfirmed">Kajé</language>
|
||||
@ -220,7 +221,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="kpe" draft="unconfirmed">Kepèle</language>
|
||||
<language type="kr" draft="unconfirmed">Kenuri</language>
|
||||
<language type="krc" draft="unconfirmed">Karacé-Balkar</language>
|
||||
<language type="krl" draft="unconfirmed">Karèli</language>
|
||||
<language type="krl" draft="unconfirmed">Karéli</language>
|
||||
<language type="kru" draft="unconfirmed">Kuruk</language>
|
||||
<language type="ks" draft="unconfirmed">Kasmir</language>
|
||||
<language type="ksb" draft="unconfirmed">Sambala</language>
|
||||
@ -233,7 +234,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="kwk" draft="unconfirmed">Kuakuala</language>
|
||||
<language type="kxv" draft="unconfirmed">Kuwi</language>
|
||||
<language type="ky" draft="unconfirmed">Kirgis</language>
|
||||
<language type="la" draft="unconfirmed">Latin</language>
|
||||
<language type="la" draft="unconfirmed">Latèn</language>
|
||||
<language type="lad" draft="unconfirmed">Spanyol Yahudi</language>
|
||||
<language type="lag" draft="unconfirmed">Langgi</language>
|
||||
<language type="lb" draft="unconfirmed">Leksembereh</language>
|
||||
@ -243,6 +244,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="lij" draft="unconfirmed">Liguri</language>
|
||||
<language type="lil" draft="unconfirmed">Lilowèt</language>
|
||||
<language type="lkt" draft="unconfirmed">Lakota</language>
|
||||
<language type="lld" draft="unconfirmed">Ladin</language>
|
||||
<language type="lmo" draft="unconfirmed">Lombardi</language>
|
||||
<language type="ln" draft="unconfirmed">Linggala</language>
|
||||
<language type="lo" draft="unconfirmed">Laos</language>
|
||||
@ -251,6 +253,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="lrc" draft="unconfirmed">Lur Lor</language>
|
||||
<language type="lsm" draft="unconfirmed">Samia</language>
|
||||
<language type="lt" draft="unconfirmed">Litowen</language>
|
||||
<language type="ltg" draft="unconfirmed">Lètgal</language>
|
||||
<language type="lu" draft="unconfirmed">Luba-Katangga</language>
|
||||
<language type="lua" draft="unconfirmed">Luba-Lulua</language>
|
||||
<language type="lun" draft="unconfirmed">Lunda</language>
|
||||
@ -271,6 +274,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="mgh" draft="unconfirmed">Makhuwa-Mèto</language>
|
||||
<language type="mgo" draft="unconfirmed">Mèta’</language>
|
||||
<language type="mh" draft="unconfirmed">Marsal</language>
|
||||
<language type="mhn" draft="unconfirmed">Pèrsental</language>
|
||||
<language type="mi" draft="unconfirmed">Maori</language>
|
||||
<language type="mic" draft="unconfirmed">Mikmak</language>
|
||||
<language type="min" draft="unconfirmed">Minangkabo</language>
|
||||
@ -285,7 +289,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="ms" draft="unconfirmed">Melayu</language>
|
||||
<language type="mt" draft="unconfirmed">Malta</language>
|
||||
<language type="mua" draft="unconfirmed">Mundang</language>
|
||||
<language type="mul" draft="unconfirmed">Beberapa basa</language>
|
||||
<language type="mul" draft="unconfirmed">Banyak basa</language>
|
||||
<language type="mus" draft="unconfirmed">Muskogi</language>
|
||||
<language type="mwl" draft="unconfirmed">Miranda</language>
|
||||
<language type="my" draft="unconfirmed">Birma</language>
|
||||
@ -303,8 +307,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="ng" draft="unconfirmed">Ndongga</language>
|
||||
<language type="nia" draft="unconfirmed">Nias</language>
|
||||
<language type="niu" draft="unconfirmed">Niué</language>
|
||||
<language type="nl" draft="unconfirmed">Belanda</language>
|
||||
<language type="nl_BE" draft="unconfirmed">Plam</language>
|
||||
<language type="nl" draft="unconfirmed">Welanda</language>
|
||||
<language type="nl_BE" draft="unconfirmed">Pelam</language>
|
||||
<language type="nmg" draft="unconfirmed">Ngumba</language>
|
||||
<language type="nn" draft="unconfirmed">Nor Baru</language>
|
||||
<language type="nnh" draft="unconfirmed">Nggièmbong</language>
|
||||
@ -315,7 +319,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="nso" draft="unconfirmed">Soto Lor</language>
|
||||
<language type="nus" draft="unconfirmed">Nuwer</language>
|
||||
<language type="nv" draft="unconfirmed">Nabaho</language>
|
||||
<language type="ny" draft="unconfirmed">Cicèwa</language>
|
||||
<language type="ny" draft="unconfirmed">Céwa</language>
|
||||
<language type="nyn" draft="unconfirmed">Nyangkolé</language>
|
||||
<language type="oc" draft="unconfirmed">Oksitan</language>
|
||||
<language type="ojb" draft="unconfirmed">Ojibwé Lor-kulon</language>
|
||||
@ -336,7 +340,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="pis" draft="unconfirmed">Pijin</language>
|
||||
<language type="pl" draft="unconfirmed">Pol</language>
|
||||
<language type="pqm" draft="unconfirmed">Malisèt-Pasamakuodi</language>
|
||||
<language type="prg" draft="unconfirmed">Près</language>
|
||||
<language type="prg" draft="unconfirmed">Perès</language>
|
||||
<language type="ps" draft="unconfirmed">Pastun</language>
|
||||
<language type="pt" draft="unconfirmed">Portugis</language>
|
||||
<language type="pt_PT" draft="unconfirmed">Portugis (Èropa)</language>
|
||||
@ -364,10 +368,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="sbp" draft="unconfirmed">Sanggu</language>
|
||||
<language type="sc" draft="unconfirmed">Sardèn</language>
|
||||
<language type="scn" draft="unconfirmed">Sisilian</language>
|
||||
<language type="sco" draft="unconfirmed">Skot</language>
|
||||
<language type="sd" draft="unconfirmed">Sind</language>
|
||||
<language type="sco" draft="unconfirmed">Sekot</language>
|
||||
<language type="sd" draft="unconfirmed">Sindi</language>
|
||||
<language type="sdh" draft="unconfirmed">Kurdi Kidul</language>
|
||||
<language type="se" draft="unconfirmed">Samen Lor</language>
|
||||
<language type="se" draft="unconfirmed">Sami Lor</language>
|
||||
<language type="seh" draft="unconfirmed">Séna</language>
|
||||
<language type="ses" draft="unconfirmed">Koyra Sèni</language>
|
||||
<language type="sg" draft="unconfirmed">Sanggo</language>
|
||||
@ -432,7 +436,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="ty" draft="unconfirmed">Tahiti</language>
|
||||
<language type="tyv" draft="unconfirmed">Tuwin</language>
|
||||
<language type="tzm" draft="unconfirmed">Bèrbèr Atlas Tenga</language>
|
||||
<language type="udm" draft="unconfirmed">Udmut</language>
|
||||
<language type="udm" draft="unconfirmed">Udmuret</language>
|
||||
<language type="ug" draft="unconfirmed">Uigur</language>
|
||||
<language type="uk" draft="unconfirmed">Ukrain</language>
|
||||
<language type="umb" draft="unconfirmed">Umbundu</language>
|
||||
@ -464,6 +468,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="yrl" draft="unconfirmed">Nyè’èngatu</language>
|
||||
<language type="yue" draft="unconfirmed">Kanton</language>
|
||||
<language type="yue" alt="menu" draft="unconfirmed">Tionghoa, Kanton</language>
|
||||
<language type="za" draft="unconfirmed">Cong</language>
|
||||
<language type="zgh" draft="unconfirmed">Bèrbèr Maroko Pakem</language>
|
||||
<language type="zh" draft="unconfirmed">Tionghoa</language>
|
||||
<language type="zh" alt="menu" draft="unconfirmed">Tionghoa, Mandarin</language>
|
||||
@ -514,7 +519,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<script type="Elym" draft="unconfirmed">Èlimais</script>
|
||||
<script type="Ethi" draft="unconfirmed">Gé’ès</script>
|
||||
<script type="Geor" draft="unconfirmed">Géorgi</script>
|
||||
<script type="Glag" draft="unconfirmed">Glagolitis</script>
|
||||
<script type="Glag" draft="unconfirmed">Glagolitik</script>
|
||||
<script type="Gong" draft="unconfirmed">Gunjala Gondi</script>
|
||||
<script type="Gonm" draft="unconfirmed">Masaram Gondi</script>
|
||||
<script type="Goth" draft="unconfirmed">Gotis</script>
|
||||
@ -554,7 +559,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<script type="Kthi" draft="unconfirmed">Kaiti</script>
|
||||
<script type="Lana" draft="unconfirmed">Lanna</script>
|
||||
<script type="Laoo" draft="unconfirmed">Laos</script>
|
||||
<script type="Latn" draft="unconfirmed">Latin</script>
|
||||
<script type="Latn" draft="unconfirmed">Latèn</script>
|
||||
<script type="Lepc" draft="unconfirmed">Rong</script>
|
||||
<script type="Limb" draft="unconfirmed">Limbu</script>
|
||||
<script type="Lina" draft="unconfirmed">Linièr A</script>
|
||||
@ -670,23 +675,23 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="019" draft="unconfirmed">Amrik</territory>
|
||||
<territory type="021" draft="unconfirmed">Amrik Belèlir</territory>
|
||||
<territory type="029" draft="unconfirmed">Karaiben</territory>
|
||||
<territory type="030" draft="unconfirmed">Asia Belètan</territory>
|
||||
<territory type="034" draft="unconfirmed">Asia Bekidul</territory>
|
||||
<territory type="030" draft="unconfirmed">Asia Wètan</territory>
|
||||
<territory type="034" draft="unconfirmed">Asia Kidul</territory>
|
||||
<territory type="035" draft="unconfirmed">Asia Kidul-wètan</territory>
|
||||
<territory type="039" draft="unconfirmed">Èropa Bekidul</territory>
|
||||
<territory type="053" draft="unconfirmed">Ostralasia</territory>
|
||||
<territory type="054" draft="unconfirmed">Melanésia</territory>
|
||||
<territory type="057" draft="unconfirmed">Daèrah Mikronésia</territory>
|
||||
<territory type="061" draft="unconfirmed">Polinésia</territory>
|
||||
<territory type="039" draft="unconfirmed">Èropa Kidul</territory>
|
||||
<territory type="053" draft="unconfirmed">Ostralasi</territory>
|
||||
<territory type="054" draft="unconfirmed">Mélanési</territory>
|
||||
<territory type="057" draft="unconfirmed">Daèrah Mikronési</territory>
|
||||
<territory type="061" draft="unconfirmed">Polinési</territory>
|
||||
<territory type="142" draft="unconfirmed">Asia</territory>
|
||||
<territory type="143" draft="unconfirmed">Asia Tenga</territory>
|
||||
<territory type="145" draft="unconfirmed">Asia Bekulon</territory>
|
||||
<territory type="145" draft="unconfirmed">Asia Kulon</territory>
|
||||
<territory type="150" draft="unconfirmed">Èropa</territory>
|
||||
<territory type="151" draft="unconfirmed">Èropa Belètan</territory>
|
||||
<territory type="154" draft="unconfirmed">Èropa Belèlir</territory>
|
||||
<territory type="155" draft="unconfirmed">Èropa Bekulon</territory>
|
||||
<territory type="151" draft="unconfirmed">Èropa Wètan</territory>
|
||||
<territory type="154" draft="unconfirmed">Èropa Lor</territory>
|
||||
<territory type="155" draft="unconfirmed">Èropa Kulon</territory>
|
||||
<territory type="202" draft="unconfirmed">Aprika Kidulnya Sahara</territory>
|
||||
<territory type="419" draft="unconfirmed">Amrik Latin</territory>
|
||||
<territory type="419" draft="unconfirmed">Amrik Latèn</territory>
|
||||
<territory type="AC" draft="unconfirmed">Pulo Kenaèkan</territory>
|
||||
<territory type="AD" draft="unconfirmed">Andora</territory>
|
||||
<territory type="AE" draft="unconfirmed">Imarat Arab Rempug</territory>
|
||||
@ -717,7 +722,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="BM" draft="unconfirmed">Bermuda</territory>
|
||||
<territory type="BN" draft="unconfirmed">Bruné</territory>
|
||||
<territory type="BO" draft="unconfirmed">Boliwi</territory>
|
||||
<territory type="BQ" draft="unconfirmed">Belanda Karaiben</territory>
|
||||
<territory type="BQ" draft="unconfirmed">Welanda Karaiben</territory>
|
||||
<territory type="BR" draft="unconfirmed">Brasil</territory>
|
||||
<territory type="BS" draft="unconfirmed">Bahama</territory>
|
||||
<territory type="BT" draft="unconfirmed">Butan</territory>
|
||||
@ -765,13 +770,13 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="ES" draft="unconfirmed">Spanyol</territory>
|
||||
<territory type="ET" draft="unconfirmed">Habsi (Ètiopi)</territory>
|
||||
<territory type="EU" draft="unconfirmed">Uni Èropa</territory>
|
||||
<territory type="EZ" draft="unconfirmed">Kawasan Èuro</territory>
|
||||
<territory type="EZ" draft="unconfirmed">Gutekan Èuro</territory>
|
||||
<territory type="FI" draft="unconfirmed">Pinlan</territory>
|
||||
<territory type="FJ" draft="unconfirmed">Piji</territory>
|
||||
<territory type="FK" draft="unconfirmed">Pulo Paklan</territory>
|
||||
<territory type="FK" alt="variant" draft="unconfirmed">Pulo Paklan (Malbinas)</territory>
|
||||
<territory type="FM" draft="unconfirmed">Mikronésia</territory>
|
||||
<territory type="FO" draft="unconfirmed">Pulo Perower</territory>
|
||||
<territory type="FM" draft="unconfirmed">Mikronési</territory>
|
||||
<territory type="FO" draft="unconfirmed">Pulo Pèrower</territory>
|
||||
<territory type="FR" draft="unconfirmed">Prasman</territory>
|
||||
<territory type="GA" draft="unconfirmed">Gabon</territory>
|
||||
<territory type="GB" draft="unconfirmed">Kerajaan Rempug</territory>
|
||||
@ -795,7 +800,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="GY" draft="unconfirmed">Guyana</territory>
|
||||
<territory type="HK" draft="unconfirmed">Daèrah Bestir Istimèwa Hongkong</territory>
|
||||
<territory type="HK" alt="short" draft="unconfirmed">Hongkong</territory>
|
||||
<territory type="HM" draft="unconfirmed">Pulo Heard èn McDonald</territory>
|
||||
<territory type="HM" draft="unconfirmed">Pulo Hered èn MikDonal</territory>
|
||||
<territory type="HN" draft="unconfirmed">Honduras</territory>
|
||||
<territory type="HR" draft="unconfirmed">Kroasi</territory>
|
||||
<territory type="HT" draft="unconfirmed">Haiti</territory>
|
||||
@ -854,7 +859,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="MP" draft="unconfirmed">Pulo Mariana Lor</territory>
|
||||
<territory type="MQ" draft="unconfirmed">Martinik</territory>
|
||||
<territory type="MR" draft="unconfirmed">Moritani</territory>
|
||||
<territory type="MS" draft="unconfirmed">Monsérat</territory>
|
||||
<territory type="MS" draft="unconfirmed">Monsèrat</territory>
|
||||
<territory type="MT" draft="unconfirmed">Malta</territory>
|
||||
<territory type="MU" draft="unconfirmed">Moritius</territory>
|
||||
<territory type="MV" draft="unconfirmed">Maladéwa</territory>
|
||||
@ -865,10 +870,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="NA" draft="unconfirmed">Namibi</territory>
|
||||
<territory type="NC" draft="unconfirmed">Kalédoni Baru</territory>
|
||||
<territory type="NE" draft="unconfirmed">Nigèr</territory>
|
||||
<territory type="NF" draft="unconfirmed">Pulo Norpok</territory>
|
||||
<territory type="NF" draft="unconfirmed">Pulo Norpolek</territory>
|
||||
<territory type="NG" draft="unconfirmed">Nigéria</territory>
|
||||
<territory type="NI" draft="unconfirmed">Nikaragua</territory>
|
||||
<territory type="NL" draft="unconfirmed">Belanda</territory>
|
||||
<territory type="NL" draft="unconfirmed">Welanda</territory>
|
||||
<territory type="NO" draft="unconfirmed">Norwèhen</territory>
|
||||
<territory type="NP" draft="unconfirmed">Népal</territory>
|
||||
<territory type="NR" draft="unconfirmed">Nauru</territory>
|
||||
@ -878,7 +883,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="OM" draft="unconfirmed">Oman</territory>
|
||||
<territory type="PA" draft="unconfirmed">Panama</territory>
|
||||
<territory type="PE" draft="unconfirmed">Péru</territory>
|
||||
<territory type="PF" draft="unconfirmed">Polinésia Prasman</territory>
|
||||
<territory type="PF" draft="unconfirmed">Polinési Prasman</territory>
|
||||
<territory type="PG" draft="unconfirmed">Papua Giné Baru (Papua Nugini)</territory>
|
||||
<territory type="PH" draft="unconfirmed">Pilipénen (Pilipina)</territory>
|
||||
<territory type="PK" draft="unconfirmed">Pakistan</territory>
|
||||
@ -892,7 +897,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="PW" draft="unconfirmed">Palau</territory>
|
||||
<territory type="PY" draft="unconfirmed">Paragué</territory>
|
||||
<territory type="QA" draft="unconfirmed">Katar</territory>
|
||||
<territory type="QO" draft="unconfirmed">Oséania Paling Luar</territory>
|
||||
<territory type="QO" draft="unconfirmed">Oséani Luar</territory>
|
||||
<territory type="RE" draft="unconfirmed">Réunion</territory>
|
||||
<territory type="RO" draft="unconfirmed">Ruméni</territory>
|
||||
<territory type="RS" draft="unconfirmed">Sèrwi</territory>
|
||||
@ -906,7 +911,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="SG" draft="unconfirmed">Singapur</territory>
|
||||
<territory type="SH" draft="unconfirmed">Sint-Héléna</territory>
|
||||
<territory type="SI" draft="unconfirmed">Slowéni</territory>
|
||||
<territory type="SJ" draft="unconfirmed">Spitbèrhen</territory>
|
||||
<territory type="SJ" draft="unconfirmed">Spitbèrhen & Jan Mayen</territory>
|
||||
<territory type="SK" draft="unconfirmed">Slowaki</territory>
|
||||
<territory type="SL" draft="unconfirmed">Gunung Singa (Sièra Léon)</territory>
|
||||
<territory type="SM" draft="unconfirmed">San Marino</territory>
|
||||
@ -923,9 +928,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="TA" draft="unconfirmed">Tristang da Kunya</territory>
|
||||
<territory type="TC" draft="unconfirmed">Pulo Turks èn Kaikos</territory>
|
||||
<territory type="TD" draft="unconfirmed">Cad</territory>
|
||||
<territory type="TF" draft="unconfirmed">Wilayah Kulon Prasman</territory>
|
||||
<territory type="TF" draft="unconfirmed">Wilayah Kidul Prasman</territory>
|
||||
<territory type="TG" draft="unconfirmed">Togo</territory>
|
||||
<territory type="TH" draft="unconfirmed">Muang-Tay</territory>
|
||||
<territory type="TH" draft="unconfirmed">Siam</territory>
|
||||
<territory type="TJ" draft="unconfirmed">Tajikistan</territory>
|
||||
<territory type="TK" draft="unconfirmed">Tokélau</territory>
|
||||
<territory type="TL" draft="unconfirmed">Timor Wètan</territory>
|
||||
@ -939,8 +944,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="TZ" draft="unconfirmed">Tansania</territory>
|
||||
<territory type="UA" draft="unconfirmed">Ukrain</territory>
|
||||
<territory type="UG" draft="unconfirmed">Uganda</territory>
|
||||
<territory type="UM" draft="unconfirmed">Kepuloan AS Paling Luar</territory>
|
||||
<territory type="UN" draft="unconfirmed">Perserèkatan Bangsa-Bangsa</territory>
|
||||
<territory type="UM" draft="unconfirmed">Kepuloan Mentil AS Luar</territory>
|
||||
<territory type="UN" draft="unconfirmed">Peserèkatan Bangsa-Bangsa</territory>
|
||||
<territory type="US" draft="unconfirmed">Amrik Serèkat</territory>
|
||||
<territory type="US" alt="short" draft="unconfirmed">AS</territory>
|
||||
<territory type="UY" draft="unconfirmed">Urugué</territory>
|
||||
@ -968,12 +973,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<variant type="1901" draft="unconfirmed">èjaan Dèt Terdisionil</variant>
|
||||
<variant type="1994" draft="unconfirmed">èjaan Résia Pakem</variant>
|
||||
<variant type="1996" draft="unconfirmed">èjaan Dèt tahon 1996</variant>
|
||||
<variant type="1606NICT" draft="unconfirmed">Prasman Pertengahan Akir ampé 1606</variant>
|
||||
<variant type="1606NICT" draft="unconfirmed">Prasman Tenga Akir ampé 1606</variant>
|
||||
<variant type="1694ACAD" draft="unconfirmed">Prasman Modèren Awal</variant>
|
||||
<variant type="1959ACAD" draft="unconfirmed">Akadémis</variant>
|
||||
<variant type="1959ACAD" draft="unconfirmed">Akademi</variant>
|
||||
<variant type="ABL1943" draft="unconfirmed">Rancangan èjaan tahon 1943</variant>
|
||||
<variant type="AKUAPEM" draft="unconfirmed">Akuapèm</variant>
|
||||
<variant type="ALALC97" draft="unconfirmed">Penglatinan ALA-LC tahon 1997</variant>
|
||||
<variant type="ALALC97" draft="unconfirmed">Penglatènan ALA-LC tahon 1997</variant>
|
||||
<variant type="ALUKU" draft="unconfirmed">logat Aluku</variant>
|
||||
<variant type="AO1990" draft="unconfirmed">Mupakat Èjaan Basa Portugis tahon 1990</variant>
|
||||
<variant type="ARANES" draft="unconfirmed">Aranis</variant>
|
||||
@ -983,7 +988,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<variant type="BALANKA" draft="unconfirmed">logat Balangka basa Ani</variant>
|
||||
<variant type="BARLA" draft="unconfirmed">kelompok logat Barlawèntu basa Tanjung Ijo</variant>
|
||||
<variant type="BASICENG" draft="unconfirmed">Inggris Dasar</variant>
|
||||
<variant type="BAUDDHA" draft="unconfirmed">Ragem Buddha</variant>
|
||||
<variant type="BAUDDHA" draft="unconfirmed">Cara Buda</variant>
|
||||
<variant type="BISCAYAN" draft="unconfirmed">Biskaye</variant>
|
||||
<variant type="BISKE" draft="unconfirmed">logat San Giorgio/Bila</variant>
|
||||
<variant type="BOHORIC" draft="unconfirmed">hurup Bohorič</variant>
|
||||
@ -994,22 +999,22 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<variant type="DAJNKO" draft="unconfirmed">hurup Dajnko</variant>
|
||||
<variant type="EKAVSK" draft="unconfirmed">Sèrwi paké lapal Èkawia</variant>
|
||||
<variant type="EMODENG" draft="unconfirmed">Inggris Modèren Awal</variant>
|
||||
<variant type="FONIPA" draft="unconfirmed">Hurup Ponètis Antèrobangsa</variant>
|
||||
<variant type="FONKIRSH" draft="unconfirmed">Hurup Ponètis Kirshenbaum</variant>
|
||||
<variant type="FONNAPA" draft="unconfirmed">Hurup Ponètis Amrik Lor</variant>
|
||||
<variant type="FONUPA" draft="unconfirmed">Hurup Ponètis Ural</variant>
|
||||
<variant type="FONXSAMP" draft="unconfirmed">Hurup Ponètis X-SAMPA</variant>
|
||||
<variant type="FONIPA" draft="unconfirmed">Hurup Pengucapan Antérobangsa</variant>
|
||||
<variant type="FONKIRSH" draft="unconfirmed">Hurup Pengucapan Kirshenbaum</variant>
|
||||
<variant type="FONNAPA" draft="unconfirmed">Hurup Pengucapan Amrik Lor</variant>
|
||||
<variant type="FONUPA" draft="unconfirmed">Hurup Pengucapan Ural</variant>
|
||||
<variant type="FONXSAMP" draft="unconfirmed">Hurup Pengucapan X-SAMPA</variant>
|
||||
<variant type="GASCON" draft="unconfirmed">Gaskon</variant>
|
||||
<variant type="GRCLASS" draft="unconfirmed">Èjaan Oksitan Klasik</variant>
|
||||
<variant type="GRITAL" draft="unconfirmed">Èjaan Oksitan Keitalian</variant>
|
||||
<variant type="GRMISTR" draft="unconfirmed">Èjaan Oksitan Mistral</variant>
|
||||
<variant type="HEPBURN" draft="unconfirmed">penglatinan Hepburn</variant>
|
||||
<variant type="HEPBURN" draft="unconfirmed">penglatènan Hepburn</variant>
|
||||
<variant type="HOGNORSK" draft="unconfirmed">Nor Tinggi</variant>
|
||||
<variant type="HSISTEMO" draft="unconfirmed">Sistim Èjaan H Èspèranto</variant>
|
||||
<variant type="HSISTEMO" draft="unconfirmed">Sistim Èjaan H Sepèranto</variant>
|
||||
<variant type="IJEKAVSK" draft="unconfirmed">Sèrwi paké lapal Iyèkawia</variant>
|
||||
<variant type="IVANCHOV" draft="unconfirmed">Èjaan Bulgari tahon 1899</variant>
|
||||
<variant type="JAUER" draft="unconfirmed">Jawer</variant>
|
||||
<variant type="JYUTPING" draft="unconfirmed">Penglatinan Jyutping</variant>
|
||||
<variant type="JYUTPING" draft="unconfirmed">Penglatènan Jyutping</variant>
|
||||
<variant type="KKCOR" draft="unconfirmed">Èjaan Umum</variant>
|
||||
<variant type="KOCIEWIE" draft="unconfirmed">Kociéwié</variant>
|
||||
<variant type="KSCOR" draft="unconfirmed">Èjaan Pakem</variant>
|
||||
@ -1055,13 +1060,13 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<variant type="UCCOR" draft="unconfirmed">Èjaan Kegabreg</variant>
|
||||
<variant type="UCRCOR" draft="unconfirmed">Èjaan Kegabreg Perbaèkan</variant>
|
||||
<variant type="ULSTER" draft="unconfirmed">Èjaan Ulster</variant>
|
||||
<variant type="UNIFON" draft="unconfirmed">Hurup Ponètis Unifon</variant>
|
||||
<variant type="VAIDIKA" draft="unconfirmed">Ragem Wèda</variant>
|
||||
<variant type="UNIFON" draft="unconfirmed">Hurup Pengucapan Unifon</variant>
|
||||
<variant type="VAIDIKA" draft="unconfirmed">Cara Wéda</variant>
|
||||
<variant type="VALENCIA" draft="unconfirmed">Balènsi</variant>
|
||||
<variant type="VALLADER" draft="unconfirmed">Waladèr</variant>
|
||||
<variant type="VIVARAUP" draft="unconfirmed">Wiwaro-Alpen</variant>
|
||||
<variant type="WADEGILE" draft="unconfirmed">Penglatinan Wade-Giles</variant>
|
||||
<variant type="XSISTEMO" draft="unconfirmed">Sistim Èjaan X Èspèranto</variant>
|
||||
<variant type="WADEGILE" draft="unconfirmed">Penglatènan Wade-Giles</variant>
|
||||
<variant type="XSISTEMO" draft="unconfirmed">Sistim Èjaan X Sepèranto</variant>
|
||||
</variants>
|
||||
<keys>
|
||||
<key type="calendar" draft="unconfirmed">Almenak</key>
|
||||
@ -1938,7 +1943,13 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</calendars>
|
||||
<fields>
|
||||
<field type="era">
|
||||
<displayName draft="unconfirmed">éra</displayName>
|
||||
<displayName draft="unconfirmed">jaman</displayName>
|
||||
</field>
|
||||
<field type="era-short">
|
||||
<displayName draft="unconfirmed">jmn</displayName>
|
||||
</field>
|
||||
<field type="era-narrow">
|
||||
<displayName draft="unconfirmed">jmn</displayName>
|
||||
</field>
|
||||
<field type="year">
|
||||
<displayName draft="unconfirmed">tahon</displayName>
|
||||
@ -2019,6 +2030,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</field>
|
||||
<field type="week">
|
||||
<displayName draft="unconfirmed">minggu</displayName>
|
||||
<relative type="-1" draft="unconfirmed">minggu marèn</relative>
|
||||
<relative type="0" draft="unconfirmed">ni minggu</relative>
|
||||
<relative type="1" draft="unconfirmed">minggu bèsok</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="other" draft="unconfirmed">{0} minggu lagi</relativeTimePattern>
|
||||
</relativeTime>
|
||||
@ -2087,17 +2101,18 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<field type="weekdayOfMonth">
|
||||
<displayName draft="unconfirmed">ari gawé</displayName>
|
||||
</field>
|
||||
<field type="sun">
|
||||
<relative type="-1" draft="unconfirmed">Minggu kemarèn</relative>
|
||||
<relative type="0" draft="unconfirmed">ni Minggu</relative>
|
||||
<relative type="1" draft="unconfirmed">Minggu bèsok</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="other" draft="unconfirmed">{0} Minggu lagi</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="other" draft="unconfirmed">{0} Minggu nyang liwat</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<!-- <field type="sun">
|
||||
<relative type="-1" draft="unconfirmed">Minggu kemarèn</relative>
|
||||
<relative type="0" draft="unconfirmed">ni Minggu</relative>
|
||||
<relative type="1" draft="unconfirmed">Minggu bèsok</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="other" draft="unconfirmed">{0} Minggu lagi</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="other" draft="unconfirmed">{0} Minggu nyang liwat</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
-->
|
||||
<field type="sun-short">
|
||||
<relative type="-1" draft="unconfirmed">Min marèn</relative>
|
||||
<relative type="0" draft="unconfirmed">ni Min</relative>
|
||||
@ -2322,13 +2337,13 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="zone">
|
||||
<displayName draft="unconfirmed">kawasan waktu</displayName>
|
||||
<displayName draft="unconfirmed">gutekan wayah</displayName>
|
||||
</field>
|
||||
<field type="zone-short">
|
||||
<displayName draft="unconfirmed">kawasan wkt</displayName>
|
||||
<displayName draft="unconfirmed">gutekan wyh</displayName>
|
||||
</field>
|
||||
<field type="zone-narrow">
|
||||
<displayName draft="unconfirmed">kwsn wkt</displayName>
|
||||
<displayName draft="unconfirmed">gtkn wyh</displayName>
|
||||
</field>
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
@ -2338,7 +2353,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<regionFormat type="standard" draft="unconfirmed">Waktu Pakem {0}</regionFormat>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard draft="unconfirmed">Waktu Dunia Kekordinir</standard>
|
||||
<standard draft="unconfirmed">Waktu Kabèhan Ragem</standard>
|
||||
</long>
|
||||
</zone>
|
||||
<zone type="Etc/Unknown">
|
||||
@ -2757,9 +2772,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity draft="unconfirmed">Ulanbator</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity draft="unconfirmed">Coibalsan</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity draft="unconfirmed">Makao</exemplarCity>
|
||||
</zone>
|
||||
@ -3333,13 +3345,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight draft="unconfirmed">Waktu Musim Pentèr Tiongkok</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic draft="unconfirmed">Waktu Coibalsan</generic>
|
||||
<standard draft="unconfirmed">Waktu Pakem Coibalsan</standard>
|
||||
<daylight draft="unconfirmed">Waktu Musim Pentèr Coibalsan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard draft="unconfirmed">Waktu Pulo Natal</standard>
|
||||
@ -3467,7 +3472,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</metazone>
|
||||
<metazone type="Gilbert_Islands">
|
||||
<long>
|
||||
<standard draft="unconfirmed">Waktu Pulo Gilbert</standard>
|
||||
<standard draft="unconfirmed">Waktu Pulo Gilbet</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="GMT">
|
||||
@ -5121,7 +5126,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="other" draft="unconfirmed">{0} hertz</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-em">
|
||||
<displayName draft="unconfirmed">em tipograpis</displayName>
|
||||
<displayName draft="unconfirmed">em tulisan</displayName>
|
||||
</unit>
|
||||
<unit type="graphics-pixel">
|
||||
<displayName draft="unconfirmed">piksel</displayName>
|
||||
@ -6109,11 +6114,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<characterLabel type="flag" draft="unconfirmed">bendèra</characterLabel>
|
||||
<characterLabel type="flags" draft="unconfirmed">bendèra</characterLabel>
|
||||
<characterLabel type="food_drink" draft="unconfirmed">makanan & minuman</characterLabel>
|
||||
<characterLabel type="format" draft="unconfirmed">pormat</characterLabel>
|
||||
<characterLabel type="format_whitespace" draft="unconfirmed">pormat & apstan kosong</characterLabel>
|
||||
<characterLabel type="full_width_form_variant" draft="unconfirmed">ragem lèbar-penu</characterLabel>
|
||||
<characterLabel type="format" draft="unconfirmed">bentukan</characterLabel>
|
||||
<characterLabel type="format_whitespace" draft="unconfirmed">bentukan & apstan kosong</characterLabel>
|
||||
<characterLabel type="full_width_form_variant" draft="unconfirmed">macem lèbar-tutug</characterLabel>
|
||||
<characterLabel type="geometric_shapes" draft="unconfirmed">bentuk géomètris</characterLabel>
|
||||
<characterLabel type="half_width_form_variant" draft="unconfirmed">ragem lèbar-paro</characterLabel>
|
||||
<characterLabel type="half_width_form_variant" draft="unconfirmed">macem lèbar-paro</characterLabel>
|
||||
<characterLabel type="han_characters" draft="unconfirmed">hurup Han</characterLabel>
|
||||
<characterLabel type="han_radicals" draft="unconfirmed">oyod Han</characterLabel>
|
||||
<characterLabel type="hanja" draft="unconfirmed">Hanja</characterLabel>
|
||||
@ -6121,7 +6126,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<characterLabel type="hanzi_traditional" draft="unconfirmed">hurup Tionghoa (terdisionil)</characterLabel>
|
||||
<characterLabel type="heart" draft="unconfirmed">ati</characterLabel>
|
||||
<characterLabel type="historic_scripts" draft="unconfirmed">hurup jaman dulu</characterLabel>
|
||||
<characterLabel type="ideographic_desc_characters" draft="unconfirmed">lèter jab. idéograpis</characterLabel>
|
||||
<characterLabel type="ideographic_desc_characters" draft="unconfirmed">lèter jab. gambar arti</characterLabel>
|
||||
<characterLabel type="japanese_kana" draft="unconfirmed">gana Jepang</characterLabel>
|
||||
<characterLabel type="kanbun" draft="unconfirmed">kambun</characterLabel>
|
||||
<characterLabel type="kanji" draft="unconfirmed">Kanji</characterLabel>
|
||||
@ -6130,7 +6135,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<characterLabel type="letterlike_symbols" draft="unconfirmed">lambang kaya’ hurup</characterLabel>
|
||||
<characterLabel type="limited_use" draft="unconfirmed">pemakéan kewates</characterLabel>
|
||||
<characterLabel type="male" draft="unconfirmed">lanang</characterLabel>
|
||||
<characterLabel type="math_symbols" draft="unconfirmed">lambang matimatis</characterLabel>
|
||||
<characterLabel type="math_symbols" draft="unconfirmed">lambang ètung-ètungan</characterLabel>
|
||||
<characterLabel type="middle_eastern_scripts" draft="unconfirmed">hurup Wètan Tenga</characterLabel>
|
||||
<characterLabel type="miscellaneous" draft="unconfirmed">laèn-laèn</characterLabel>
|
||||
<characterLabel type="modern_scripts" draft="unconfirmed">hurup modèren</characterLabel>
|
||||
@ -6150,20 +6155,20 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<characterLabel type="punctuation" draft="unconfirmed">tenger baca</characterLabel>
|
||||
<characterLabel type="rightwards_arrows" draft="unconfirmed">panah kanan</characterLabel>
|
||||
<characterLabel type="sign_standard_symbols" draft="unconfirmed">tenger atawa lambang</characterLabel>
|
||||
<characterLabel type="small_form_variant" draft="unconfirmed">ragem kecil</characterLabel>
|
||||
<characterLabel type="small_form_variant" draft="unconfirmed">macem kecil</characterLabel>
|
||||
<characterLabel type="smiley" draft="unconfirmed">mèseman</characterLabel>
|
||||
<characterLabel type="smileys_people" draft="unconfirmed">mèseman atawa orang</characterLabel>
|
||||
<characterLabel type="south_asian_scripts" draft="unconfirmed">hurup Asia Kidul</characterLabel>
|
||||
<characterLabel type="southeast_asian_scripts" draft="unconfirmed">hurup Asia Kidul-wètan</characterLabel>
|
||||
<characterLabel type="spacing" draft="unconfirmed">apstan</characterLabel>
|
||||
<characterLabel type="sport" draft="unconfirmed">olaraga</characterLabel>
|
||||
<characterLabel type="sport" draft="unconfirmed">gerak badan</characterLabel>
|
||||
<characterLabel type="symbols" draft="unconfirmed">lambang</characterLabel>
|
||||
<characterLabel type="technical_symbols" draft="unconfirmed">lambang tèhnis</characterLabel>
|
||||
<characterLabel type="tone_marks" draft="unconfirmed">tenger nada</characterLabel>
|
||||
<characterLabel type="travel" draft="unconfirmed">plesir</characterLabel>
|
||||
<characterLabel type="travel_places" draft="unconfirmed">plesir atawa tempat</characterLabel>
|
||||
<characterLabel type="travel" draft="unconfirmed">ladog</characterLabel>
|
||||
<characterLabel type="travel_places" draft="unconfirmed">ladog atawa tempat</characterLabel>
|
||||
<characterLabel type="upwards_arrows" draft="unconfirmed">panah atas</characterLabel>
|
||||
<characterLabel type="variant_forms" draft="unconfirmed">ragem</characterLabel>
|
||||
<characterLabel type="variant_forms" draft="unconfirmed">macem</characterLabel>
|
||||
<characterLabel type="vocalic_jamo" draft="unconfirmed">camo hurup idup</characterLabel>
|
||||
<characterLabel type="weather" draft="unconfirmed">cuaca</characterLabel>
|
||||
<characterLabel type="western_asian_scripts" draft="unconfirmed">hurup Asia Kulon</characterLabel>
|
||||
|
||||
@ -66,6 +66,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bik">биколски</language>
|
||||
<language type="bin">бини</language>
|
||||
<language type="bla">сиксика</language>
|
||||
<language type="blo">ании</language>
|
||||
<language type="bm">бамбара</language>
|
||||
<language type="bn">бенгалски</language>
|
||||
<language type="bo">тибетски</language>
|
||||
@ -217,7 +218,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="iba">ибан</language>
|
||||
<language type="ibb">ибибио</language>
|
||||
<language type="id">индонезийски</language>
|
||||
<language type="ie">оксидентал</language>
|
||||
<language type="ie">интерлингве</language>
|
||||
<language type="ig">игбо</language>
|
||||
<language type="ii">съчуански йи</language>
|
||||
<language type="ik">инупиак</language>
|
||||
@ -280,6 +281,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">коми</language>
|
||||
<language type="kw">корнуолски</language>
|
||||
<language type="kwk">куак’уала</language>
|
||||
<language type="kxv">кови</language>
|
||||
<language type="ky">киргизки</language>
|
||||
<language type="la">латински</language>
|
||||
<language type="lad">ладино</language>
|
||||
@ -290,9 +292,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">лезгински</language>
|
||||
<language type="lg">ганда</language>
|
||||
<language type="li">лимбургски</language>
|
||||
<language type="lij">лигурски</language>
|
||||
<language type="lil">лилоует</language>
|
||||
<language type="lkt">лакота</language>
|
||||
<language type="lmo" draft="contributed">ломбардски</language>
|
||||
<language type="lmo">ломбардски</language>
|
||||
<language type="ln">лингала</language>
|
||||
<language type="lo">лаоски</language>
|
||||
<language type="lol">монго</language>
|
||||
@ -480,6 +483,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">коморски</language>
|
||||
<language type="syc">класически сирийски</language>
|
||||
<language type="syr">сирийски</language>
|
||||
<language type="szl">силезийски</language>
|
||||
<language type="ta">тамилски</language>
|
||||
<language type="tce">южен тучоне</language>
|
||||
<language type="te">телугу</language>
|
||||
@ -528,7 +532,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="uz">узбекски</language>
|
||||
<language type="vai">ваи</language>
|
||||
<language type="ve">венда</language>
|
||||
<language type="vec">венециански</language>
|
||||
<language type="vi">виетнамски</language>
|
||||
<language type="vmw">макува</language>
|
||||
<language type="vo">волапюк</language>
|
||||
<language type="vot">вотик</language>
|
||||
<language type="vun">вунджо</language>
|
||||
@ -542,6 +548,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">ву китайски</language>
|
||||
<language type="xal">калмик</language>
|
||||
<language type="xh">кхоса</language>
|
||||
<language type="xnr">кангри</language>
|
||||
<language type="xog">сога</language>
|
||||
<language type="yao">яо</language>
|
||||
<language type="yap">япезе</language>
|
||||
@ -1192,7 +1199,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characters>
|
||||
<exemplarCharacters>[а б в г д е ж з и й к л м н о п р с т у ф х ц ч ш щ ъ ь ю я]</exemplarCharacters>
|
||||
<exemplarCharacters type="auxiliary">[{а̀} ѐё ѝ {о̀} {у̀} {ъ̀} ы ѣ э {ю̀} {я̀} ѫ]</exemplarCharacters>
|
||||
<exemplarCharacters type="index" draft="contributed">[А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ю Я]</exemplarCharacters>
|
||||
<exemplarCharacters type="index">[А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ю Я]</exemplarCharacters>
|
||||
<exemplarCharacters type="numbers">[ \- ‑ , % ‰ + 0 1 2 3 4 5 6 7 8 9]</exemplarCharacters>
|
||||
<exemplarCharacters type="punctuation">[\- ‐‑ – — , ; \: ! ? . … '‘‚ "“„ ( ) \[ \] § @ * / ″ №]</exemplarCharacters>
|
||||
<ellipsis type="medial">{0}… {1}</ellipsis>
|
||||
@ -2553,6 +2560,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<gmtZeroFormat>Гринуич</gmtZeroFormat>
|
||||
<regionFormat type="daylight">{0} – лятно часово време</regionFormat>
|
||||
<regionFormat type="standard">{0} – стандартно време</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Хонолулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Координирано универсално време</standard>
|
||||
@ -3171,7 +3181,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<exemplarCity>Ендърбъри</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Kanton">
|
||||
<exemplarCity draft="contributed">Кантон</exemplarCity>
|
||||
<exemplarCity>Кантон</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Kiritimati">
|
||||
<exemplarCity>Киритимати</exemplarCity>
|
||||
@ -3290,9 +3300,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Улан Батор</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Чойбалсан</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Макао</exemplarCity>
|
||||
</zone>
|
||||
@ -3692,9 +3699,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>Ноум</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Хонолулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>Анкъридж</exemplarCity>
|
||||
</zone>
|
||||
@ -4046,13 +4050,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Китайско лятно часово време</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Чойбалсанско време</generic>
|
||||
<standard>Чойбалсанско стандартно време</standard>
|
||||
<daylight>Чойбалсанско лятно часово време</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Остров Рождество</standard>
|
||||
@ -4298,6 +4295,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Петропавловск-Камчатски – лятно часово време</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Казахстанско време</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Източноказахстанско време</standard>
|
||||
@ -4823,8 +4825,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 трлн'.' ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -5847,9 +5847,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">сиералеонски леоне</displayName>
|
||||
</currency>
|
||||
<currency type="SLL">
|
||||
<displayName>Сиералеонско леоне (1964—2022)</displayName>
|
||||
<displayName count="one">сиералеонско леоне (1964—2022)</displayName>
|
||||
<displayName count="other">сиералеонски леоне (1964—2022)</displayName>
|
||||
<displayName>Сиералеонско леоне (1964 – 2022)</displayName>
|
||||
<displayName count="one">сиералеонско леоне (1964 – 2022)</displayName>
|
||||
<displayName count="other">сиералеонски леоне (1964 – 2022)</displayName>
|
||||
</currency>
|
||||
<currency type="SOS">
|
||||
<displayName>Сомалийски шилинг</displayName>
|
||||
@ -7190,6 +7190,22 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} имперска кварта</unitPattern>
|
||||
<unitPattern count="other">{0} имперски кварти</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>светлина</displayName>
|
||||
<unitPattern count="one">{0} светлина</unitPattern>
|
||||
<unitPattern count="other">{0} светлина</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>части на милиард</displayName>
|
||||
<unitPattern count="one">{0} част на милиард</unitPattern>
|
||||
<unitPattern count="other">{0} части на милиард</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>нощи</displayName>
|
||||
<unitPattern count="one">{0} нощ</unitPattern>
|
||||
<unitPattern count="other">{0} нощи</unitPattern>
|
||||
<perUnitPattern>{0} на нощ</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>основна посока</displayName>
|
||||
</coordinateUnit>
|
||||
@ -7538,6 +7554,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} имп. кварта</unitPattern>
|
||||
<unitPattern count="other">{0} имп. кварти</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>светлина</displayName>
|
||||
<unitPattern count="one">{0} светлина</unitPattern>
|
||||
<unitPattern count="other">{0} светлина</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>части/милиард</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>нощи</displayName>
|
||||
<unitPattern count="one">{0} нощ</unitPattern>
|
||||
<unitPattern count="other">{0} нощи</unitPattern>
|
||||
<perUnitPattern>{0}/нощ</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>посока</displayName>
|
||||
<coordinateUnitPattern type="east">{0}И</coordinateUnitPattern>
|
||||
@ -7554,13 +7584,15 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} кв. миля</unitPattern>
|
||||
<unitPattern count="other">{0} кв. мили</unitPattern>
|
||||
</unit>
|
||||
<unit type="area-square-foot">
|
||||
<unitPattern count="one">{0} кв. фут</unitPattern>
|
||||
<unitPattern count="other">{0} кв. фута</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-percent">
|
||||
<displayName>%</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-permyriad">
|
||||
<displayName>‱</displayName>
|
||||
</unit>
|
||||
<unit type="digital-petabyte">
|
||||
<displayName>PB</displayName>
|
||||
</unit>
|
||||
<unit type="duration-year">
|
||||
<displayName>г.</displayName>
|
||||
<unitPattern count="one">{0} г.</unitPattern>
|
||||
@ -7573,11 +7605,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="duration-month">
|
||||
<displayName>мес.</displayName>
|
||||
<perUnitPattern draft="contributed">{0}/мес.</perUnitPattern>
|
||||
<perUnitPattern>{0}/мес.</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-week">
|
||||
<displayName>седм.</displayName>
|
||||
<perUnitPattern draft="contributed">{0}/седм.</perUnitPattern>
|
||||
<perUnitPattern>{0}/седм.</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-day">
|
||||
<displayName>д</displayName>
|
||||
@ -7596,32 +7628,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="graphics-dot">
|
||||
<displayName>точка</displayName>
|
||||
</unit>
|
||||
<unit type="length-mile">
|
||||
<unitPattern count="one">{0} миля</unitPattern>
|
||||
<unitPattern count="other">{0} мили</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-yard">
|
||||
<unitPattern count="one">{0} ярд</unitPattern>
|
||||
<unitPattern count="other">{0} ярда</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-foot">
|
||||
<unitPattern count="one">{0} фут</unitPattern>
|
||||
<unitPattern count="other">{0} фута</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-inch">
|
||||
<unitPattern count="one">{0}"</unitPattern>
|
||||
<unitPattern count="other">{0}"</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-pound">
|
||||
<unitPattern count="one">{0} фунт</unitPattern>
|
||||
<unitPattern count="other">{0} фунта</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-ounce">
|
||||
<unitPattern count="one">{0} унц.</unitPattern>
|
||||
<unitPattern count="other">{0} унц.</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-dalton">
|
||||
<displayName draft="contributed">Da</displayName>
|
||||
<displayName>Da</displayName>
|
||||
</unit>
|
||||
<unit type="power-horsepower">
|
||||
<unitPattern count="one">{0} к.с.</unitPattern>
|
||||
@ -7635,16 +7647,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} по Б</unitPattern>
|
||||
<unitPattern count="other">{0} по Б</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-fahrenheit">
|
||||
<unitPattern count="one">{0} °F</unitPattern>
|
||||
<unitPattern count="other">{0} °F</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-cubic-mile">
|
||||
<unitPattern count="one">{0} куб. миля</unitPattern>
|
||||
<unitPattern count="other">{0} куб. мили</unitPattern>
|
||||
<unit type="volume-pint-metric">
|
||||
<displayName>pt</displayName>
|
||||
</unit>
|
||||
<unit type="volume-barrel">
|
||||
<displayName draft="contributed">bbl</displayName>
|
||||
<displayName>bbl</displayName>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon">
|
||||
<unitPattern count="one">{0} дес. лъж.</unitPattern>
|
||||
@ -7654,6 +7661,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} брит. дес. лъж.</unitPattern>
|
||||
<unitPattern count="other">{0} брит. дес. лъж.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>светлина</displayName>
|
||||
<unitPattern count="one">{0} светлина</unitPattern>
|
||||
<unitPattern count="other">{0} светлина</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>нощи</displayName>
|
||||
<unitPattern count="one">{0} нощ</unitPattern>
|
||||
<unitPattern count="other">{0} нощи</unitPattern>
|
||||
<perUnitPattern>{0}/нощ</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
<listPatterns>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -66,6 +66,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bik">বিকোল</language>
|
||||
<language type="bin">বিনি</language>
|
||||
<language type="bla">সিকসিকা</language>
|
||||
<language type="blo">অ্যানি</language>
|
||||
<language type="bm">বামবারা</language>
|
||||
<language type="bn">বাংলা</language>
|
||||
<language type="bo">তিব্বতি</language>
|
||||
@ -281,6 +282,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">কোমি</language>
|
||||
<language type="kw">কর্ণিশ</language>
|
||||
<language type="kwk">কোয়াক’ওয়ালা</language>
|
||||
<language type="kxv">কুভি</language>
|
||||
<language type="ky">কির্গিজ</language>
|
||||
<language type="la">লাতিন</language>
|
||||
<language type="lad">লাদিনো</language>
|
||||
@ -291,9 +293,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">লেজঘিয়ান</language>
|
||||
<language type="lg">গান্ডা</language>
|
||||
<language type="li">লিম্বুর্গিশ</language>
|
||||
<language type="lij">লিগুরিয়ান</language>
|
||||
<language type="lil">লিল্লুয়েট</language>
|
||||
<language type="lkt">লাকোটা</language>
|
||||
<language type="lmo" draft="contributed">লম্বার্ড</language>
|
||||
<language type="lmo">লম্বার্ড</language>
|
||||
<language type="ln">লিঙ্গালা</language>
|
||||
<language type="lo">লাও</language>
|
||||
<language type="lol">মোঙ্গো</language>
|
||||
@ -482,6 +485,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">কমোরিয়ান</language>
|
||||
<language type="syc">প্রাচীন সিরিও</language>
|
||||
<language type="syr">সিরিয়াক</language>
|
||||
<language type="szl">সিলেশিয়ান</language>
|
||||
<language type="ta">তামিল</language>
|
||||
<language type="tce">দক্ষিণী টুচোন</language>
|
||||
<language type="te">তেলুগু</language>
|
||||
@ -530,7 +534,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="uz">উজবেক</language>
|
||||
<language type="vai">ভাই</language>
|
||||
<language type="ve">ভেন্ডা</language>
|
||||
<language type="vec">ভেনেশিয়ান</language>
|
||||
<language type="vi">ভিয়েতনামী</language>
|
||||
<language type="vmw">মাখুওয়া</language>
|
||||
<language type="vo">ভোলাপুক</language>
|
||||
<language type="vot">ভোটিক</language>
|
||||
<language type="vun">ভুঞ্জো</language>
|
||||
@ -544,6 +550,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">উ চীনা</language>
|
||||
<language type="xal">কাল্মাইক</language>
|
||||
<language type="xh">জোসা</language>
|
||||
<language type="xnr">কাংরি</language>
|
||||
<language type="xog">সোগা</language>
|
||||
<language type="yao">ইয়াও</language>
|
||||
<language type="yap">ইয়াপেসে</language>
|
||||
@ -1060,7 +1067,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<type key="calendar" type="indian">ভারতীয় জাতীয় বর্ষপঞ্জী</type>
|
||||
<type key="calendar" type="islamic">ইসলামিক ক্যালেন্ডার</type>
|
||||
<type key="calendar" type="islamic-civil">ইসলামিক-সিভিল বর্ষপঞ্জী</type>
|
||||
<type key="calendar" type="islamic-rgsa" draft="provisional">ইসলামিক বর্ষপঞ্জী (সৌদি আরব, দৃশ্যমান)</type>
|
||||
<type key="calendar" type="islamic-rgsa" draft="contributed">ইসলামিক বর্ষপঞ্জী (সৌদি আরব, দৃশ্যমান)</type>
|
||||
<type key="calendar" type="islamic-tbla">ইসলামিক বর্ষপঞ্জী (ছকবদ্ধ, জ্যোতির্বিদ্যীয় যুগ)</type>
|
||||
<type key="calendar" type="islamic-umalqura">ইসলামিক বর্ষপঞ্জী (উম্মা আল-কুরআ)</type>
|
||||
<type key="calendar" type="iso8601">ISO-861 ক্যালেন্ডার</type>
|
||||
@ -1222,7 +1229,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<parseLenient sample=":">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -1655,7 +1662,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</eraNames>
|
||||
<eraAbbr>
|
||||
<era type="0">খ্রিস্টপূর্ব</era>
|
||||
<era type="0" alt="variant">খ্রিষ্টপূর্বাব্দ</era>
|
||||
<era type="0" alt="variant">"খ্রিঃপূঃ"</era>
|
||||
<era type="1">খৃষ্টাব্দ</era>
|
||||
<era type="1" alt="variant">খ্রিষ্টাব্দ</era>
|
||||
</eraAbbr>
|
||||
@ -2016,7 +2023,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<month type="6" draft="contributed">শাহরিবার</month>
|
||||
<month type="7" draft="contributed">মেহের</month>
|
||||
<month type="8" draft="contributed">আবান</month>
|
||||
<month type="9" draft="contributed">আজার</month>
|
||||
<month type="9">সেপ্ট</month>
|
||||
<month type="10" draft="contributed">দে</month>
|
||||
<month type="11" draft="contributed">বাহমান</month>
|
||||
<month type="12" draft="contributed">এসফ্যান্ড</month>
|
||||
@ -2281,10 +2288,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relativeTimePattern count="other">{0} সেকেন্ডে</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} সেকেন্ড পূর্বে</relativeTimePattern>
|
||||
<relativeTimePattern count="one">{0} সেকেন্ড আগে</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} সেকেন্ড পূর্বে</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="second-short">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} সেকেন্ড আগে</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} সেকেন্ড আগে</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="second-narrow">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} সেকেন্ড আগে</relativeTimePattern>
|
||||
@ -2303,6 +2316,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>{0} সময়</regionFormat>
|
||||
<regionFormat type="daylight">{0} দিবালোক সময়</regionFormat>
|
||||
<regionFormat type="standard">{0} মানক সময়</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>হনোলুলু</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>স্থানাংকিত আন্তর্জাতিক সময়</standard>
|
||||
@ -3040,9 +3056,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>উলানবাতার</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>চোইবাল্স্যান</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>ম্যাকাও</exemplarCity>
|
||||
</zone>
|
||||
@ -3442,9 +3455,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>নোম</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>হনোলুলু</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>এনকোরেজ</exemplarCity>
|
||||
</zone>
|
||||
@ -3824,13 +3834,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>চীন দিবালোক সময়</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>চয়বালসন সময়</generic>
|
||||
<standard>চয়বালসন মানক সময়</standard>
|
||||
<daylight>চয়বালসন গ্রীষ্মকালীন সময়</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>ক্রিসমাস দ্বীপ সময়</standard>
|
||||
@ -4084,6 +4087,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight draft="contributed">পিত্রেপ্যাভলস্ক- ক্যামচ্যাটস্কি গৃষ্মকালীন সময়</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard draft="contributed">কাজাখাস্তান সময়</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>পূর্ব কাজাখাস্তান সময়</standard>
|
||||
@ -4678,8 +4686,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other" alt="alphaNextToNumber">000 লা'.'কো'.' ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -5029,6 +5035,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</currency>
|
||||
<currency type="INR">
|
||||
<displayName>ভারতীয় রুপি</displayName>
|
||||
<displayName count="one">ভারতীয় টাকা</displayName>
|
||||
<displayName count="other">ভারতীয় টাকা</displayName>
|
||||
</currency>
|
||||
<currency type="IQD">
|
||||
<displayName>ইরাকি দিনার</displayName>
|
||||
@ -5312,10 +5320,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>স্লোভাক কোরুনা</displayName>
|
||||
</currency>
|
||||
<currency type="SLE">
|
||||
<displayName>সিয়েরালিয়ন লিয়ন</displayName>
|
||||
<displayName>সিয়েরা লিয়নের লিয়ন</displayName>
|
||||
<displayName count="one">সিয়েরা লিয়নের লিয়ন</displayName>
|
||||
<displayName count="other">সিয়েরা লিয়নের লিয়ন</displayName>
|
||||
</currency>
|
||||
<currency type="SLL">
|
||||
<displayName>সিয়েরালিয়ন লিয়ন (1964—2022)</displayName>
|
||||
<displayName>সিয়েরা লিয়নের লিয়ন (1964—2022)</displayName>
|
||||
<displayName count="one">সিয়েরা লিয়নের লিয়ন (1964—2022)</displayName>
|
||||
<displayName count="other">সিয়েরা লিয়নের লিয়ন (1964—2022)</displayName>
|
||||
</currency>
|
||||
<currency type="SOS">
|
||||
<displayName>সোমালি শিলিং</displayName>
|
||||
@ -6343,6 +6355,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} Imp. quart</unitPattern>
|
||||
<unitPattern count="other">{0} Imp. quart</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>পার্ট প্রতি বিলিয়ন</displayName>
|
||||
<unitPattern count="one">{0} পার্ট প্রতি বিলিয়ন</unitPattern>
|
||||
<unitPattern count="other">{0} পার্ট প্রতি বিলিয়ন</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>রাত্রি</displayName>
|
||||
<unitPattern count="one">{0} রাত্রি</unitPattern>
|
||||
<unitPattern count="other">{0} রাত্রি</unitPattern>
|
||||
<perUnitPattern>{0}/রাত্রি</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>প্রধান দিকনির্দেশ</displayName>
|
||||
<coordinateUnitPattern type="east">{0} পূর্ব</coordinateUnitPattern>
|
||||
@ -6585,7 +6608,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>দিন</displayName>
|
||||
<unitPattern count="one">{0} দিন</unitPattern>
|
||||
<unitPattern count="other">{0} দিন</unitPattern>
|
||||
<perUnitPattern>{0} প্রতি দিন</perUnitPattern>
|
||||
<perUnitPattern>{0}/দিন</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-hour">
|
||||
<displayName>ঘন্টা</displayName>
|
||||
@ -6839,6 +6862,15 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} চিমটে</unitPattern>
|
||||
<unitPattern count="other">{0} চিমটে</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>পার্ট/ বিলিয়ন</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>রাত্রি</displayName>
|
||||
<unitPattern count="one">{0} রাত্রি</unitPattern>
|
||||
<unitPattern count="other">{0} রাত্রি</unitPattern>
|
||||
<perUnitPattern>{0}/রাত্রি</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>দিকনির্দেশ</displayName>
|
||||
<coordinateUnitPattern type="east">{0}পূ</coordinateUnitPattern>
|
||||
@ -6976,7 +7008,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="duration-second">
|
||||
<unitPattern count="one">{0} সেঃ</unitPattern>
|
||||
<unitPattern count="other">{0} সেঃ</unitPattern>
|
||||
<perUnitPattern>{0}/সে:</perUnitPattern>
|
||||
<perUnitPattern>{0}/সেঃ</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-microsecond">
|
||||
<unitPattern count="one">{0}μs</unitPattern>
|
||||
@ -7133,6 +7165,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}fl.dr.</unitPattern>
|
||||
<unitPattern count="other">{0}fl.dr.</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<unitPattern count="one">{0}ppb</unitPattern>
|
||||
<unitPattern count="other">{0} ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>রাত্রি</displayName>
|
||||
<unitPattern count="one">{0}রাত্রি</unitPattern>
|
||||
<unitPattern count="other">{0}রাত্রি</unitPattern>
|
||||
<perUnitPattern>{0}/রাত্রি</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="north">{0}উ</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="south">{0}দ</coordinateUnitPattern>
|
||||
|
||||
@ -1266,7 +1266,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="’" draft="contributed">[''’ ՚ ᾽᾿ ʼ ߴ]</parseLenient>
|
||||
<parseLenient sample="£" draft="contributed">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£" draft="contributed">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-" draft="contributed">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -2871,6 +2871,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<regionFormat>eur {0}</regionFormat>
|
||||
<regionFormat type="daylight">eur hañv {0}</regionFormat>
|
||||
<regionFormat type="standard">eur cʼhoañv {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>amzer hollvedel kenurzhiet</standard>
|
||||
@ -3155,9 +3158,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kiev</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Tashkent">
|
||||
<exemplarCity>Toshkent</exemplarCity>
|
||||
</zone>
|
||||
@ -3399,13 +3399,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>eur hañv Sina</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>eur Choibalsan</generic>
|
||||
<standard>eur cʼhoañv Choibalsan</standard>
|
||||
<daylight>eur hañv Choibalsan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>eur Enez Christmas</standard>
|
||||
|
||||
@ -847,7 +847,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="IL">इज्राईल</territory>
|
||||
<territory type="IM">आयोल अफ मेन</territory>
|
||||
<territory type="IN">भारत</territory>
|
||||
<territory type="IO" draft="provisional">ब्रिटिशनि भारतारि लैथो बाहागो</territory>
|
||||
<territory type="IO">ब्रिटिशनि भारतारि लैथो बाहागो</territory>
|
||||
<territory type="IQ">ईराक</territory>
|
||||
<territory type="IR">ईरान</territory>
|
||||
<territory type="IS">आइसलेण्ड</territory>
|
||||
@ -1050,9 +1050,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<type key="calendar" type="gregorian">ग्रेग’रियान फान्जामुथि</type>
|
||||
<type key="calendar" type="hebrew">हिब्रिउ फान्जामुथि</type>
|
||||
<type key="calendar" type="indian">भारतनि हादोरनां फान्जामुथि</type>
|
||||
<type key="calendar" type="islamic" draft="provisional">इस्लामिक फान्जामुथि</type>
|
||||
<type key="calendar" type="islamic-civil" draft="provisional">इस्लामिक फान्जामुथि ( फारि, हादोरारि मुगा)</type>
|
||||
<type key="calendar" type="islamic-umalqura" draft="provisional">इस्लामिक फान्जामुथि( ऊम आल-कूरा)</type>
|
||||
<type key="calendar" type="islamic">इस्लामिक फान्जामुथि</type>
|
||||
<type key="calendar" type="islamic-civil">इस्लामिक फान्जामुथि ( फारि, हादोरारि मुगा)</type>
|
||||
<type key="calendar" type="islamic-umalqura">इस्लामिक फान्जामुथि( ऊम आल-कूरा)</type>
|
||||
<type key="calendar" type="iso8601">आइ.एस.अ-8601 फान्जामुथि</type>
|
||||
<type key="calendar" type="japanese">जापानीज फान्जामुथि</type>
|
||||
<type key="calendar" type="persian">पार्सियान फान्जामुथि</type>
|
||||
@ -1557,6 +1557,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormatItem id="MEd">E, M/d</dateFormatItem>
|
||||
<dateFormatItem id="MMMd">d-MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEd">E, MMM d</dateFormatItem>
|
||||
<dateFormatItem id="MMMMd">MMMM d</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEd">E, MMMM d</dateFormatItem>
|
||||
<dateFormatItem id="yM">M/y</dateFormatItem>
|
||||
<dateFormatItem id="yMd">dd-MM-y</dateFormatItem>
|
||||
@ -1956,6 +1957,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<regionFormat>{0} सम</regionFormat>
|
||||
<regionFormat type="daylight">{0} साननि सोरां सम</regionFormat>
|
||||
<regionFormat type="standard">{0} थाखोआरि सम</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>हनलुलु</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>गोरोबहोनाय मुलुगनां सम</standard>
|
||||
@ -2693,9 +2697,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>उलानबातार</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>च’इबालसान</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>माकाऊ</exemplarCity>
|
||||
</zone>
|
||||
@ -3092,9 +3093,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>न’म</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>हनलुलु</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>एंकरेज</exemplarCity>
|
||||
</zone>
|
||||
@ -3474,13 +3472,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>चाईना सानारि सम</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>च’इबालसान सम</generic>
|
||||
<standard>च’इबालसान थाखोआरि सम</standard>
|
||||
<daylight>च’इबालसान दैज्लां सम</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>ख्रीस्टमास द्वीप सम</standard>
|
||||
@ -4294,8 +4285,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<currencyPatternAppendISO>{0} ¤¤</currencyPatternAppendISO>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -5232,7 +5221,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</currency>
|
||||
<currency type="XOF">
|
||||
<displayName>सोनाब आफ्रिकानि सि.एफ.ए फ्रांक</displayName>
|
||||
<symbol draft="contributed">एफ सि.एफ.ए</symbol>
|
||||
</currency>
|
||||
<currency type="XPD">
|
||||
<displayName>पैलेडियम</displayName>
|
||||
|
||||
@ -70,6 +70,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">bini</language>
|
||||
<language type="bkm">kom</language>
|
||||
<language type="bla">siksika</language>
|
||||
<language type="blo">anii</language>
|
||||
<language type="bm">bambara</language>
|
||||
<language type="bn">bengalski</language>
|
||||
<language type="bo">tibetanski</language>
|
||||
@ -283,6 +284,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">komi</language>
|
||||
<language type="kw">kornski</language>
|
||||
<language type="kwk">kvakvala</language>
|
||||
<language type="kxv">kuvi</language>
|
||||
<language type="ky">kirgiški</language>
|
||||
<language type="la">latinski</language>
|
||||
<language type="lad">ladino</language>
|
||||
@ -309,7 +311,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lua">luba-lulua</language>
|
||||
<language type="lui">luiseno</language>
|
||||
<language type="lun">lunda</language>
|
||||
<language type="luo">luo</language>
|
||||
<language type="lus">mizo</language>
|
||||
<language type="luy">luhija</language>
|
||||
<language type="lv">latvijski</language>
|
||||
@ -488,6 +489,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">komorski</language>
|
||||
<language type="syc">klasični sirijski</language>
|
||||
<language type="syr">sirijski</language>
|
||||
<language type="szl">šleski</language>
|
||||
<language type="ta">tamilski</language>
|
||||
<language type="tce">južni tučoni</language>
|
||||
<language type="te">telugu</language>
|
||||
@ -534,10 +536,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="und">nepoznati jezik</language>
|
||||
<language type="ur">urdu</language>
|
||||
<language type="uz">uzbečki</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">venda</language>
|
||||
<language type="vec">venecijanski</language>
|
||||
<language type="vi">vijetnamski</language>
|
||||
<language type="vmw">makua</language>
|
||||
<language type="vo">volapuk</language>
|
||||
<language type="vot">votski</language>
|
||||
<language type="vun">vunjo</language>
|
||||
@ -551,6 +553,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">Wu kineski</language>
|
||||
<language type="xal">kalmik</language>
|
||||
<language type="xh">hosa</language>
|
||||
<language type="xnr">kangri</language>
|
||||
<language type="xog">soga</language>
|
||||
<language type="yao">jao</language>
|
||||
<language type="yap">japeški</language>
|
||||
@ -934,7 +937,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="IL">Izrael</territory>
|
||||
<territory type="IM">Ostrvo Man</territory>
|
||||
<territory type="IN">Indija</territory>
|
||||
<territory type="IO" draft="provisional">Britanska Teritorija u Indijskom Okeanu</territory>
|
||||
<territory type="IO">Britanska Teritorija u Indijskom Okeanu</territory>
|
||||
<territory type="IO" alt="chagos">arhipelag Chagos</territory>
|
||||
<territory type="IQ">Irak</territory>
|
||||
<territory type="IR">Iran</territory>
|
||||
@ -1232,7 +1235,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<types>
|
||||
<type key="calendar" type="buddhist">budistički kalendar</type>
|
||||
<type key="calendar" type="chinese">kineski kalendar</type>
|
||||
<type key="calendar" type="coptic">Koptski kalendar</type>
|
||||
<type key="calendar" type="coptic">koptski kalendar</type>
|
||||
<type key="calendar" type="dangi">dangi kalendar</type>
|
||||
<type key="calendar" type="ethiopic">etiopski kalendar</type>
|
||||
<type key="calendar" type="ethiopic-amete-alem">etiopski kalendar "Amete Alem"</type>
|
||||
@ -1241,8 +1244,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<type key="calendar" type="indian">indijski nacionalni kalendar</type>
|
||||
<type key="calendar" type="islamic">islamski kalendar</type>
|
||||
<type key="calendar" type="islamic-civil">islamski građanski kalendar, tabelarni</type>
|
||||
<type key="calendar" type="islamic-rgsa" draft="provisional">islamski kalendar za Saudijsku Arabiju</type>
|
||||
<type key="calendar" type="islamic-tbla" draft="provisional">islamski kalendar, tabelarni, astronomska epoha</type>
|
||||
<type key="calendar" type="islamic-rgsa">islamski kalendar za Saudijsku Arabiju</type>
|
||||
<type key="calendar" type="islamic-tbla">islamski kalendar, tabelarni, astronomska epoha</type>
|
||||
<type key="calendar" type="islamic-umalqura">islamski kalendar, Umm al-Qura</type>
|
||||
<type key="calendar" type="iso8601">kalendar ISO-8601</type>
|
||||
<type key="calendar" type="japanese">japanski kalendar</type>
|
||||
@ -1358,7 +1361,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<type key="numbers" type="mymrshan">mijanmarske šan cifre</type>
|
||||
<type key="numbers" type="mymrtlng">mijanmarske tai laing cifre</type>
|
||||
<type key="numbers" type="nagm">nag mundari cifre</type>
|
||||
<type key="numbers" type="native">Izvorne cifre</type>
|
||||
<type key="numbers" type="native">izvorni brojevi</type>
|
||||
<type key="numbers" type="nkoo">n’ko cifre</type>
|
||||
<type key="numbers" type="olck">ol čiki cifre</type>
|
||||
<type key="numbers" type="orya">orijski brojevi</type>
|
||||
@ -1422,7 +1425,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characters>
|
||||
<exemplarCharacters>[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 ž]</exemplarCharacters>
|
||||
<exemplarCharacters type="auxiliary">[q w x y]</exemplarCharacters>
|
||||
<exemplarCharacters type="index" draft="contributed">[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 Ž]</exemplarCharacters>
|
||||
<exemplarCharacters type="index">[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 Ž]</exemplarCharacters>
|
||||
<exemplarCharacters type="punctuation">[‐ – — , ; \: ! ? . … '‘’ "“”„ ( ) \[ \] @ * / ′ ″]</exemplarCharacters>
|
||||
<ellipsis type="medial">{0}… {1}</ellipsis>
|
||||
<ellipsis type="word-final">{0}…</ellipsis>
|
||||
@ -1704,6 +1707,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
|
||||
<dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
|
||||
<dateFormatItem id="Gy">y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMd">d. M. y. GGGG</dateFormatItem>
|
||||
<dateFormatItem id="GyMMM">MMM y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMd">d. MMM y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEd">E, d. MMM y. G</dateFormatItem>
|
||||
@ -1975,15 +1979,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dayPeriodContext type="format">
|
||||
<dayPeriodWidth type="abbreviated">
|
||||
<dayPeriod type="midnight">ponoć</dayPeriod>
|
||||
<dayPeriod type="am">a. m.</dayPeriod>
|
||||
<dayPeriod type="noon">podne</dayPeriod>
|
||||
<dayPeriod type="pm">p. m.</dayPeriod>
|
||||
<dayPeriod type="morning1">ujutro</dayPeriod>
|
||||
<dayPeriod type="afternoon1">poslijepodne</dayPeriod>
|
||||
<dayPeriod type="evening1">navečer</dayPeriod>
|
||||
<dayPeriod type="night1">po noći</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">prijepodne</dayPeriod>
|
||||
<dayPeriod type="pm">popodne</dayPeriod>
|
||||
<dayPeriod type="am">a. m.</dayPeriod>
|
||||
<dayPeriod type="pm">p. m.</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="am">prijepodne</dayPeriod>
|
||||
@ -1991,6 +1997,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
<dayPeriodContext type="stand-alone">
|
||||
<dayPeriodWidth type="abbreviated">
|
||||
<dayPeriod type="am">a. m.</dayPeriod>
|
||||
<dayPeriod type="pm">p. m.</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">prijepodne</dayPeriod>
|
||||
<dayPeriod type="pm">popodne</dayPeriod>
|
||||
@ -2005,12 +2015,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<eraNames>
|
||||
<era type="0">prije nove ere</era>
|
||||
<era type="1">nove ere</era>
|
||||
<era type="1" alt="variant">Nove ere</era>
|
||||
<era type="1" alt="variant">nove ere</era>
|
||||
</eraNames>
|
||||
<eraAbbr>
|
||||
<era type="0">p. n. e.</era>
|
||||
<era type="1">n. e.</era>
|
||||
<era type="1" alt="variant">n.e.</era>
|
||||
</eraAbbr>
|
||||
<eraNarrow>
|
||||
<era type="0">p.n.e.</era>
|
||||
@ -2100,7 +2109,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dateFormatItem id="Ehm">E h:mm a</dateFormatItem>
|
||||
<dateFormatItem id="Ehms">E h:mm:ss a</dateFormatItem>
|
||||
<dateFormatItem id="Gy">y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMd">d/M/y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMd">d. M. y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMM">MMM y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMd">d. MMM y. G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEd">E, d. MMM y. G</dateFormatItem>
|
||||
@ -2111,8 +2120,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dateFormatItem id="Hmsv">HH:mm:ss (v)</dateFormatItem>
|
||||
<dateFormatItem id="hmv">h:mm a (v)</dateFormatItem>
|
||||
<dateFormatItem id="Hmv">HH:mm (v)</dateFormatItem>
|
||||
<dateFormatItem id="Md">d.M.</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E, d.M.</dateFormatItem>
|
||||
<dateFormatItem id="Md">d. M.</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E, d. M.</dateFormatItem>
|
||||
<dateFormatItem id="MMdd">d. M.</dateFormatItem>
|
||||
<dateFormatItem id="MMMd">d. MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEd">E, d. MMM</dateFormatItem>
|
||||
@ -2123,9 +2132,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dateFormatItem id="MMMMW" count="other">W. 'sedmica' 'mjesec' MMMM</dateFormatItem>
|
||||
<dateFormatItem id="y">y.</dateFormatItem>
|
||||
<dateFormatItem id="yM">MM/y</dateFormatItem>
|
||||
<dateFormatItem id="yMd">d.M.y.</dateFormatItem>
|
||||
<dateFormatItem id="yMEd">E, d.M.y.</dateFormatItem>
|
||||
<dateFormatItem id="yMM">M/y</dateFormatItem>
|
||||
<dateFormatItem id="yMd">d. M. y.</dateFormatItem>
|
||||
<dateFormatItem id="yMEd">E, d. M. y.</dateFormatItem>
|
||||
<dateFormatItem id="yMM">M. y.</dateFormatItem>
|
||||
<dateFormatItem id="yMMM">MMM y.</dateFormatItem>
|
||||
<dateFormatItem id="yMMMd">d. MMM y.</dateFormatItem>
|
||||
<dateFormatItem id="yMMMEd">E, d. MMM y.</dateFormatItem>
|
||||
@ -2151,7 +2160,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="Gy">
|
||||
<greatestDifference id="G">y. G – y. G</greatestDifference>
|
||||
<greatestDifference id="y">y – y. G</greatestDifference>
|
||||
<greatestDifference id="y">y–y. G</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="GyM">
|
||||
<greatestDifference id="G">M. y. G – M. y. G</greatestDifference>
|
||||
@ -2176,7 +2185,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<greatestDifference id="y">MMM y – MMM y. G</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="GyMMMd">
|
||||
<greatestDifference id="d">d – d. MMM y. G</greatestDifference>
|
||||
<greatestDifference id="d">d–d. MMM y. G</greatestDifference>
|
||||
<greatestDifference id="G">d. MMM y. G – d. MMM y. G</greatestDifference>
|
||||
<greatestDifference id="M">d. MMM – d. MMM y. G</greatestDifference>
|
||||
<greatestDifference id="y">d. MMM y – d. MMM y. G</greatestDifference>
|
||||
@ -2189,7 +2198,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="h">
|
||||
<greatestDifference id="a">h a – h a</greatestDifference>
|
||||
<greatestDifference id="h">h – h'h' a</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="H">
|
||||
<greatestDifference id="H">HH – HH'h'</greatestDifference>
|
||||
@ -2227,48 +2235,48 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<greatestDifference id="M">d. M – d. M.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="MEd">
|
||||
<greatestDifference id="d">E, d.M. – E, d.M.</greatestDifference>
|
||||
<greatestDifference id="M">E, d.M. – E, d.M.</greatestDifference>
|
||||
<greatestDifference id="d">E, d. M – E, d. M.</greatestDifference>
|
||||
<greatestDifference id="M">E, d. M – E, d. M.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="MMMd">
|
||||
<greatestDifference id="d">d.–d. MMM</greatestDifference>
|
||||
<greatestDifference id="d">d–d. MMM</greatestDifference>
|
||||
<greatestDifference id="M">d. MMM – d. MMM</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="MMMEd">
|
||||
<greatestDifference id="d">E, d. – E, d. MMM</greatestDifference>
|
||||
<greatestDifference id="d">E, d – E, d. MMM</greatestDifference>
|
||||
<greatestDifference id="M">E, d. MMM – E, d. MMM</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yM">
|
||||
<greatestDifference id="M">M/y – M/y</greatestDifference>
|
||||
<greatestDifference id="y">M/y – M/y</greatestDifference>
|
||||
<greatestDifference id="M">M. y – M. y.</greatestDifference>
|
||||
<greatestDifference id="y">M. y – M. y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMd">
|
||||
<greatestDifference id="d">d. M. y – d. M. y.</greatestDifference>
|
||||
<greatestDifference id="M">d.M.y. – d.M.y.</greatestDifference>
|
||||
<greatestDifference id="y">d.M.y. – d.M.y.</greatestDifference>
|
||||
<greatestDifference id="M">d. M. y – d. M. y.</greatestDifference>
|
||||
<greatestDifference id="y">d. M. y – d. M. y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMEd">
|
||||
<greatestDifference id="d">E, d.M.y. – E, d.M.y.</greatestDifference>
|
||||
<greatestDifference id="M">E, d.M.y. – E, d.M.y.</greatestDifference>
|
||||
<greatestDifference id="y">E, d.M.y. – E, d.M.y.</greatestDifference>
|
||||
<greatestDifference id="d">E, d. M. y – E, d. M. y.</greatestDifference>
|
||||
<greatestDifference id="M">E, d. M. y – E, d. M. y.</greatestDifference>
|
||||
<greatestDifference id="y">E, d. M. y – E, d. M. y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMM">
|
||||
<greatestDifference id="M">LLL – LLL y.</greatestDifference>
|
||||
<greatestDifference id="y">LLL y. – LLL y.</greatestDifference>
|
||||
<greatestDifference id="y">LLL y – LLL y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMMd">
|
||||
<greatestDifference id="d">d. – d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="d">d–d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="M">d. MMM – d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="y">d. MMM y. – d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="y">d. MMM y – d. MMM y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMMEd">
|
||||
<greatestDifference id="d">E, d. – E, d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="d">E, d – E, d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="M">E, d. MMM – E, d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="y">E, d. MMM y. – E, d. MMM y.</greatestDifference>
|
||||
<greatestDifference id="y">E, d. MMM y – E, d. MMM y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
<intervalFormatItem id="yMMMM">
|
||||
<greatestDifference id="M">LLLL – LLLL y.</greatestDifference>
|
||||
<greatestDifference id="y">LLLL y. – LLLL y.</greatestDifference>
|
||||
<greatestDifference id="y">LLLL y – LLLL y.</greatestDifference>
|
||||
</intervalFormatItem>
|
||||
</intervalFormats>
|
||||
</dateTimeFormats>
|
||||
@ -2634,11 +2642,31 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relative type="-1">prošli pon.</relative>
|
||||
<relative type="0">ovaj pon.</relative>
|
||||
<relative type="1">sljedeći pon</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">za {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="few">za {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="other">za {0} pon</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">prije {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="few">prije {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="other">prije {0} pon</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="mon-narrow">
|
||||
<relative type="-1">prošli pon.</relative>
|
||||
<relative type="0">ovaj pon.</relative>
|
||||
<relative type="1">sljedeći pon.</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">za {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="few">za {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="other">za {0} pon</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">prije {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="few">prije {0} pon</relativeTimePattern>
|
||||
<relativeTimePattern count="other">prije {0} pon</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="tue">
|
||||
<relative type="-1">prošli utorak</relative>
|
||||
@ -2792,7 +2820,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<field type="minute-short">
|
||||
<displayName>min</displayName>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">za {0} min.</relativeTimePattern>
|
||||
<relativeTimePattern count="one">za {0} min</relativeTimePattern>
|
||||
<relativeTimePattern count="few">za {0} min.</relativeTimePattern>
|
||||
<relativeTimePattern count="other">za {0} min.</relativeTimePattern>
|
||||
</relativeTime>
|
||||
@ -2802,9 +2830,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relativeTimePattern count="other">prije {0} min.</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="minute-narrow">
|
||||
<displayName>min.</displayName>
|
||||
</field>
|
||||
<field type="second">
|
||||
<displayName>sekunda</displayName>
|
||||
<relative type="0">sada</relative>
|
||||
@ -2820,7 +2845,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="second-short">
|
||||
<displayName>sek.</displayName>
|
||||
<displayName>s</displayName>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">za {0} sek.</relativeTimePattern>
|
||||
<relativeTimePattern count="few">za {0} sek.</relativeTimePattern>
|
||||
@ -2847,6 +2872,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<gmtFormat>GMT {0}</gmtFormat>
|
||||
<regionFormat type="daylight">{0}, ljetno vrijeme</regionFormat>
|
||||
<regionFormat type="standard">{0}, standardno vrijeme</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Koordinirano svjetsko vrijeme</standard>
|
||||
@ -3085,9 +3113,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Ulan Bator</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Čojbalsan</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Makau</exemplarCity>
|
||||
</zone>
|
||||
@ -3214,9 +3239,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Simferopol">
|
||||
<exemplarCity>Simferopolj</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/North_Dakota/Beulah">
|
||||
<exemplarCity>Beulah, Sjeverna Dakota</exemplarCity>
|
||||
</zone>
|
||||
@ -3488,13 +3510,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Kinesko ljetno vrijeme</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Čojbalsansko vrijeme</generic>
|
||||
<standard>Čojbalsansko standardno vrijeme</standard>
|
||||
<daylight>Čojbalsansko ljetno vrijeme</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Vrijeme na Božićnom Ostrvu</standard>
|
||||
@ -3763,14 +3778,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Petropavlovsk-Kamčatski letnje računanje vremena</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>kazahstansko vrijeme</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Istočnokazahstansko vrijeme</standard>
|
||||
<standard>istočnokazahstansko vrijeme</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Western">
|
||||
<long>
|
||||
<standard>Zapadnokazahstansko vrijeme</standard>
|
||||
<standard>zapadnokazahstansko vrijeme</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Korea">
|
||||
@ -3794,7 +3814,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Kyrgystan">
|
||||
<long>
|
||||
<standard>Kirgistansko vrijeme</standard>
|
||||
<standard>kirgistansko vrijeme</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Lanka">
|
||||
@ -4102,7 +4122,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Tajikistan">
|
||||
<long>
|
||||
<standard>Tadžikistansko vrijeme</standard>
|
||||
<standard>tadžikistansko vrijeme</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Tokelau">
|
||||
@ -4124,9 +4144,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Turkmenistan">
|
||||
<long>
|
||||
<generic>Turkmenistansko vrijeme</generic>
|
||||
<standard>Turkmenistansko standardno vrijeme</standard>
|
||||
<daylight>Turkmenistansko ljetno vrijeme</daylight>
|
||||
<generic>turkmenistansko vrijeme</generic>
|
||||
<standard>turkmenistansko standardno vrijeme</standard>
|
||||
<daylight>turkmenistansko ljetno vrijeme</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Tuvalu">
|
||||
@ -4143,9 +4163,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Uzbekistan">
|
||||
<long>
|
||||
<generic>Uzbekistansko vrijeme</generic>
|
||||
<standard>Uzbekistansko standardno vrijeme</standard>
|
||||
<daylight>Uzbekistansko ljetno vrijeme</daylight>
|
||||
<generic>uzbekistansko vrijeme</generic>
|
||||
<standard>uzbekistansko standardno vrijeme</standard>
|
||||
<daylight>uzbekistansko ljetno vrijeme</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Vanuatu">
|
||||
@ -4594,111 +4614,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</percentFormat>
|
||||
</percentFormatLength>
|
||||
</percentFormats>
|
||||
<currencyFormats numberSystem="adlm">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="arabext">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="bali">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="beng">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="brah">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="cakm">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="cham">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="deva">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="fullwide">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="gong">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="gonm">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="gujr">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="guru">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="hanidec">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="java">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="kali">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="khmr">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="knda">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="lana">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="lanatham">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="laoo">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="latn">
|
||||
<currencyFormatLength>
|
||||
<currencyFormat type="standard">
|
||||
@ -4745,124 +4660,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 bil'.' ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="lepc">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="limb">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="mlym">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="mong">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="mtei">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="mymr">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="mymrshan">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="nkoo">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="olck">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="orya">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="osma">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="rohg">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="saur">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="shrd">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="sora">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="sund">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="takr">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="talu">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="tamldec">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="telu">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="thai">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="tibt">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencyFormats numberSystem="vaii">
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6802,6 +6599,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<perUnitPattern>{0} po kvadratnoj milji</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="area-acre">
|
||||
<displayName>akeri</displayName>
|
||||
<unitPattern count="one">{0} katastarsko jutro</unitPattern>
|
||||
<unitPattern count="few">{0} katastarska jutra</unitPattern>
|
||||
<unitPattern count="other">{0} katastarskih jutara</unitPattern>
|
||||
@ -7162,20 +6960,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName>tačaka po centimetru</displayName>
|
||||
<unitPattern count="one">{0} tačka po centimetru</unitPattern>
|
||||
<unitPattern count="few">{0} ppcm</unitPattern>
|
||||
<unitPattern count="few">{0} dpcm</unitPattern>
|
||||
<unitPattern count="other">{0} tačaka po centimetru</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-inch">
|
||||
<displayName>tačaka po inču</displayName>
|
||||
<unitPattern count="one">{0} tačka po inču</unitPattern>
|
||||
<unitPattern count="few">{0} ppi</unitPattern>
|
||||
<unitPattern count="few">{0} dpi</unitPattern>
|
||||
<unitPattern count="other">{0} tačaka po inču</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-earth-radius">
|
||||
<displayName>radijus zemlje</displayName>
|
||||
<unitPattern count="one">{0} radijus zemlje</unitPattern>
|
||||
<unitPattern count="few">{0} radijusa zemlje</unitPattern>
|
||||
<unitPattern count="other">{0} radijus zemlje</unitPattern>
|
||||
<displayName>radijus Zemlje</displayName>
|
||||
<unitPattern count="one">{0} radijus Zemlje</unitPattern>
|
||||
<unitPattern count="few">{0} radijusa Zemlje</unitPattern>
|
||||
<unitPattern count="other">{0} radijusa Zemlje</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-kilometer">
|
||||
<displayName>kilometri</displayName>
|
||||
@ -7740,6 +7538,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="few">{0} imperijalna kvarca</unitPattern>
|
||||
<unitPattern count="other">{0} imperijalnih kvarca</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noći</displayName>
|
||||
<unitPattern count="one">{0} noć</unitPattern>
|
||||
<unitPattern count="few">{0} noći</unitPattern>
|
||||
<unitPattern count="other">{0} noći</unitPattern>
|
||||
<perUnitPattern>{0} po noći</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>glavni pravac</displayName>
|
||||
<coordinateUnitPattern type="east">{0} istok</coordinateUnitPattern>
|
||||
@ -7775,9 +7580,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="area-acre">
|
||||
<displayName>katastarska jutra</displayName>
|
||||
<unitPattern count="one">{0} kj</unitPattern>
|
||||
<unitPattern count="few">{0} kj</unitPattern>
|
||||
<unitPattern count="other">{0} kj</unitPattern>
|
||||
<unitPattern count="one">{0} ac</unitPattern>
|
||||
<unitPattern count="few">{0} ac</unitPattern>
|
||||
<unitPattern count="other">{0} ac</unitPattern>
|
||||
</unit>
|
||||
<unit type="area-dunam">
|
||||
<displayName>dunumi</displayName>
|
||||
@ -7935,13 +7740,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName>dpcm</displayName>
|
||||
<unitPattern count="one">{0} dpcm</unitPattern>
|
||||
<unitPattern count="few">{0} ppcm</unitPattern>
|
||||
<unitPattern count="few">{0} dpcm</unitPattern>
|
||||
<unitPattern count="other">{0} dpcm</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-inch">
|
||||
<displayName>dpi</displayName>
|
||||
<unitPattern count="one">{0} dpi</unitPattern>
|
||||
<unitPattern count="few">{0} ppi</unitPattern>
|
||||
<unitPattern count="few">{0} dpi</unitPattern>
|
||||
<unitPattern count="other">{0} dpi</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot">
|
||||
@ -7951,7 +7756,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} tačaka</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-meter">
|
||||
<displayName>metri</displayName>
|
||||
<displayName>m</displayName>
|
||||
</unit>
|
||||
<unit type="length-mile">
|
||||
<displayName>milje</displayName>
|
||||
@ -8055,9 +7860,39 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="few">{0} Nm</unitPattern>
|
||||
<unitPattern count="other">{0} Nm</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-megaliter">
|
||||
<displayName>Ml</displayName>
|
||||
<unitPattern count="one">{0} Ml</unitPattern>
|
||||
<unitPattern count="few">{0} Ml</unitPattern>
|
||||
<unitPattern count="other">{0} Ml</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-hectoliter">
|
||||
<displayName>hl</displayName>
|
||||
<unitPattern count="one">{0} hl</unitPattern>
|
||||
<unitPattern count="few">{0} hl</unitPattern>
|
||||
<unitPattern count="other">{0} hl</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-liter">
|
||||
<displayName>litri</displayName>
|
||||
</unit>
|
||||
<unit type="volume-deciliter">
|
||||
<displayName>dl</displayName>
|
||||
<unitPattern count="one">{0} dl</unitPattern>
|
||||
<unitPattern count="few">{0} dl</unitPattern>
|
||||
<unitPattern count="other">{0} dl</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-centiliter">
|
||||
<displayName>cl</displayName>
|
||||
<unitPattern count="one">{0} cl</unitPattern>
|
||||
<unitPattern count="few">{0} cl</unitPattern>
|
||||
<unitPattern count="other">{0} cl</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-milliliter">
|
||||
<displayName>ml</displayName>
|
||||
<unitPattern count="one">{0} ml</unitPattern>
|
||||
<unitPattern count="few">{0} ml</unitPattern>
|
||||
<unitPattern count="other">{0} ml</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-gallon">
|
||||
<displayName>gal</displayName>
|
||||
<unitPattern count="one">{0} gal</unitPattern>
|
||||
@ -8091,14 +7926,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} imp. fl oz</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-tablespoon">
|
||||
<displayName>kašike</displayName>
|
||||
<unitPattern count="one">{0} kšk.</unitPattern>
|
||||
<unitPattern count="few">{0} kšk.</unitPattern>
|
||||
<unitPattern count="other">{0} tbsp</unitPattern>
|
||||
<unitPattern count="other">{0} kšk.</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-teaspoon">
|
||||
<displayName>kšč.</displayName>
|
||||
<unitPattern count="one">{0} kšč.</unitPattern>
|
||||
<unitPattern count="few">{0} kšč.</unitPattern>
|
||||
<unitPattern count="other">{0} tsp</unitPattern>
|
||||
<unitPattern count="other">{0} kšč.</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon">
|
||||
<displayName>kš. des.</displayName>
|
||||
@ -8138,9 +7975,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>imp. kvarc</displayName>
|
||||
<unitPattern count="one">{0} imp. kvarc</unitPattern>
|
||||
<unitPattern count="few">{0} imp. kvarca</unitPattern>
|
||||
<unitPattern count="other">{0} imp. kvarca</unitPattern>
|
||||
<unitPattern count="one">{0} imp. kvart</unitPattern>
|
||||
<unitPattern count="few">{0} imp. kvarta</unitPattern>
|
||||
<unitPattern count="other">{0} imp. kvarata</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noći</displayName>
|
||||
<unitPattern count="one">{0} noć</unitPattern>
|
||||
<unitPattern count="few">{0} noći</unitPattern>
|
||||
<unitPattern count="other">{0} noći</unitPattern>
|
||||
<perUnitPattern>{0}/noć</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>pravac</displayName>
|
||||
@ -8151,6 +7995,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</coordinateUnit>
|
||||
</unitLength>
|
||||
<unitLength type="narrow">
|
||||
<unit type="area-acre">
|
||||
<displayName>aker</displayName>
|
||||
<unitPattern count="one">{0} ac</unitPattern>
|
||||
<unitPattern count="few">{0} ac</unitPattern>
|
||||
<unitPattern count="other">{0} ac</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-permillion">
|
||||
<displayName>ppm</displayName>
|
||||
</unit>
|
||||
@ -8205,6 +8055,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>ns</displayName>
|
||||
</unit>
|
||||
<unit type="energy-calorie">
|
||||
<displayName>cal</displayName>
|
||||
<unitPattern count="one">{0} kal.</unitPattern>
|
||||
<unitPattern count="few">{0} kal.</unitPattern>
|
||||
<unitPattern count="other">{0} cal</unitPattern>
|
||||
@ -8229,19 +8080,34 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<unitPattern count="one">{0}dpcm</unitPattern>
|
||||
<unitPattern count="few">{0} ppcm</unitPattern>
|
||||
<unitPattern count="few">{0} dpcm</unitPattern>
|
||||
<unitPattern count="other">{0} dpcm</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-inch">
|
||||
<unitPattern count="one">{0}dpi</unitPattern>
|
||||
<unitPattern count="few">{0} ppi</unitPattern>
|
||||
<unitPattern count="few">{0} dpi</unitPattern>
|
||||
<unitPattern count="other">{0} dpi</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot">
|
||||
<displayName>tačka</displayName>
|
||||
</unit>
|
||||
<unit type="length-meter">
|
||||
<displayName>metar</displayName>
|
||||
<displayName>m</displayName>
|
||||
</unit>
|
||||
<unit type="length-mile">
|
||||
<displayName>mi</displayName>
|
||||
</unit>
|
||||
<unit type="length-yard">
|
||||
<displayName>yd</displayName>
|
||||
</unit>
|
||||
<unit type="length-foot">
|
||||
<displayName>ft</displayName>
|
||||
</unit>
|
||||
<unit type="length-inch">
|
||||
<displayName>in</displayName>
|
||||
</unit>
|
||||
<unit type="length-light-year">
|
||||
<displayName>sg</displayName>
|
||||
</unit>
|
||||
<unit type="mass-gram">
|
||||
<displayName>gram</displayName>
|
||||
@ -8258,6 +8124,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} ct</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-grain">
|
||||
<displayName>gr</displayName>
|
||||
<unitPattern count="one">{0} gr</unitPattern>
|
||||
<unitPattern count="few">{0} gr</unitPattern>
|
||||
<unitPattern count="other">{0} gr</unitPattern>
|
||||
@ -8277,12 +8144,36 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="few">{0} °F</unitPattern>
|
||||
<unitPattern count="other">{0}°F</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-megaliter">
|
||||
<displayName>Ml</displayName>
|
||||
</unit>
|
||||
<unit type="volume-hectoliter">
|
||||
<displayName>hl</displayName>
|
||||
</unit>
|
||||
<unit type="volume-liter">
|
||||
<displayName>litar</displayName>
|
||||
<unitPattern count="one">{0}l</unitPattern>
|
||||
<unitPattern count="few">{0}l</unitPattern>
|
||||
<unitPattern count="other">{0}l</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-deciliter">
|
||||
<displayName>dl</displayName>
|
||||
<unitPattern count="one">{0} dl</unitPattern>
|
||||
<unitPattern count="few">{0} dl</unitPattern>
|
||||
<unitPattern count="other">{0} dl</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-centiliter">
|
||||
<displayName>cl</displayName>
|
||||
<unitPattern count="one">{0} cl</unitPattern>
|
||||
<unitPattern count="few">{0} cl</unitPattern>
|
||||
<unitPattern count="other">{0} cl</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-milliliter">
|
||||
<displayName>ml</displayName>
|
||||
<unitPattern count="one">{0} ml</unitPattern>
|
||||
<unitPattern count="few">{0} ml</unitPattern>
|
||||
<unitPattern count="other">{0} ml</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-tablespoon">
|
||||
<displayName>kšk.</displayName>
|
||||
<unitPattern count="one">{0} kšk.</unitPattern>
|
||||
@ -8295,6 +8186,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="few">{0} kšč.</unitPattern>
|
||||
<unitPattern count="other">{0} kšč.</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>imp. kvart</displayName>
|
||||
<unitPattern count="one">{0} imp. kvart</unitPattern>
|
||||
<unitPattern count="few">{0} imp. kvarta</unitPattern>
|
||||
<unitPattern count="other">{0} imp. kvarata</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noći</displayName>
|
||||
<unitPattern count="one">{0} noć</unitPattern>
|
||||
<unitPattern count="few">{0} noći</unitPattern>
|
||||
<unitPattern count="other">{0} noći</unitPattern>
|
||||
<perUnitPattern>{0}/noć</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="east">{0}I</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="north">{0}S</coordinateUnitPattern>
|
||||
|
||||
@ -900,7 +900,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<territory type="IL">Израел</territory>
|
||||
<territory type="IM">Острво Мен</territory>
|
||||
<territory type="IN">Индија</territory>
|
||||
<territory type="IO" draft="provisional">Британска територија у Индијском океану</territory>
|
||||
<territory type="IO">Британска територија у Индијском океану</territory>
|
||||
<territory type="IQ">Ирак</territory>
|
||||
<territory type="IR">Иран</territory>
|
||||
<territory type="IS">Исланд</territory>
|
||||
@ -1136,7 +1136,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<type key="calendar" type="gregorian">грегоријански календар</type>
|
||||
<type key="calendar" type="hebrew">хебрејски календар</type>
|
||||
<type key="calendar" type="indian">Индијски национални календар</type>
|
||||
<type key="calendar" type="islamic" draft="provisional">исламски календар</type>
|
||||
<type key="calendar" type="islamic">исламски календар</type>
|
||||
<type key="calendar" type="islamic-civil" draft="provisional">Исламски цивилни календар</type>
|
||||
<type key="calendar" type="iso8601">ISO-8601 календар</type>
|
||||
<type key="calendar" type="japanese">јапански календар</type>
|
||||
@ -2528,6 +2528,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
<regionFormat>Време: {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Хонолулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Координисано универзално вријеме</standard>
|
||||
@ -3262,9 +3265,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Улан Батор</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Чојбалсан</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Макау</exemplarCity>
|
||||
</zone>
|
||||
@ -3661,9 +3661,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>Ном</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Хонолулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>Енкориџ</exemplarCity>
|
||||
</zone>
|
||||
@ -4043,13 +4040,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Кина љетње рачунање времена</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Чојбалсан вријеме</generic>
|
||||
<standard>Чојбалсан стандардно вријеме</standard>
|
||||
<daylight>Чојбалсан љетње рачунање времена</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Божићна острва вријеме</standard>
|
||||
@ -4300,6 +4290,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Петропавловско-камчатско летње рачунање вемена</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Kazakhstan Time</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Источно-казахстанско вријеме</standard>
|
||||
@ -4740,6 +4735,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Јекатеринбург љетње рачунање времена</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Yukon">
|
||||
<long>
|
||||
<standard>Yukon Time</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
</timeZoneNames>
|
||||
</dates>
|
||||
<numbers>
|
||||
@ -4863,9 +4863,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<pattern type="100000000000000" count="other">000 бил ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6783,10 +6780,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName>мегапиксели</displayName>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-centimeter">
|
||||
<displayName draft="provisional">тачке по центиметру</displayName>
|
||||
<displayName>тачке по центиметру</displayName>
|
||||
</unit>
|
||||
<unit type="graphics-dot-per-inch">
|
||||
<displayName draft="provisional">тачке по инчу</displayName>
|
||||
<displayName>тачке по инчу</displayName>
|
||||
</unit>
|
||||
<unit type="length-kilometer">
|
||||
<displayName>километри</displayName>
|
||||
|
||||
@ -65,6 +65,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="be">belarús</language>
|
||||
<language type="bej">beja</language>
|
||||
<language type="bem">bemba</language>
|
||||
<language type="bew" draft="unconfirmed">betawi</language>
|
||||
<language type="bez">bena</language>
|
||||
<language type="bfd">bafut</language>
|
||||
<language type="bfq">badaga</language>
|
||||
@ -77,6 +78,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">edo</language>
|
||||
<language type="bkm">kom</language>
|
||||
<language type="bla">blackfoot</language>
|
||||
<language type="blo">anii</language>
|
||||
<language type="bm">bambara</language>
|
||||
<language type="bn">bengalí</language>
|
||||
<language type="bo">tibetà</language>
|
||||
@ -110,6 +112,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="chp">chipewyan</language>
|
||||
<language type="chr">cherokee</language>
|
||||
<language type="chy">xeiene</language>
|
||||
<language type="cic" draft="unconfirmed">chickasaw</language>
|
||||
<language type="ckb">kurd central</language>
|
||||
<language type="ckb" alt="menu">sorani</language>
|
||||
<language type="ckb" alt="variant">kurd sorani</language>
|
||||
@ -211,7 +214,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="gmh">alt alemany mitjà</language>
|
||||
<language type="gn">guaraní</language>
|
||||
<language type="goh">alt alemany antic</language>
|
||||
<language type="gom">concani de Goa</language>
|
||||
<language type="gon">gondi</language>
|
||||
<language type="gor">gorontalo</language>
|
||||
<language type="got">gòtic</language>
|
||||
@ -235,6 +237,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="hil">híligaynon</language>
|
||||
<language type="hit">hitita</language>
|
||||
<language type="hmn">hmong</language>
|
||||
<language type="hnj" draft="unconfirmed">hmong njua</language>
|
||||
<language type="ho">hiri motu</language>
|
||||
<language type="hr">croat</language>
|
||||
<language type="hsb">alt sòrab</language>
|
||||
@ -316,6 +319,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">komi</language>
|
||||
<language type="kw">còrnic</language>
|
||||
<language type="kwk">kwak’wala</language>
|
||||
<language type="kxv">kuvi</language>
|
||||
<language type="ky">kirguís</language>
|
||||
<language type="la">llatí</language>
|
||||
<language type="lad">judeocastellà</language>
|
||||
@ -329,6 +333,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lij">lígur</language>
|
||||
<language type="lil">lillooet</language>
|
||||
<language type="lkt">lakota</language>
|
||||
<language type="lld" draft="unconfirmed">ladí</language>
|
||||
<language type="lmo">llombard</language>
|
||||
<language type="ln">lingala</language>
|
||||
<language type="lo">laosià</language>
|
||||
@ -342,7 +347,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lua">luba-lulua</language>
|
||||
<language type="lui">luisenyo</language>
|
||||
<language type="lun">lunda</language>
|
||||
<language type="luo">luo</language>
|
||||
<language type="lus">mizo</language>
|
||||
<language type="luy">luyia</language>
|
||||
<language type="lv">letó</language>
|
||||
@ -586,12 +590,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="und">idioma desconegut</language>
|
||||
<language type="ur">urdú</language>
|
||||
<language type="uz">uzbek</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">venda</language>
|
||||
<language type="vec">vènet</language>
|
||||
<language type="vep">vepse</language>
|
||||
<language type="vi">vietnamita</language>
|
||||
<language type="vls">flamenc occidental</language>
|
||||
<language type="vmw">makua</language>
|
||||
<language type="vo">volapük</language>
|
||||
<language type="vot">vòtic</language>
|
||||
<language type="vun">vunjo</language>
|
||||
@ -606,6 +610,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="xal">calmuc</language>
|
||||
<language type="xh">xosa</language>
|
||||
<language type="xmf">mingrelià</language>
|
||||
<language type="xnr">kangri</language>
|
||||
<language type="xog">soga</language>
|
||||
<language type="yao">yao</language>
|
||||
<language type="yap">yapeà</language>
|
||||
@ -900,6 +905,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="CN">Xina</territory>
|
||||
<territory type="CO">Colòmbia</territory>
|
||||
<territory type="CP">Illa Clipperton</territory>
|
||||
<territory type="CQ" draft="unconfirmed">Sark</territory>
|
||||
<territory type="CR">Costa Rica</territory>
|
||||
<territory type="CU">Cuba</territory>
|
||||
<territory type="CV">Cap Verd</territory>
|
||||
@ -927,8 +933,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="EZ">zona euro</territory>
|
||||
<territory type="FI">Finlàndia</territory>
|
||||
<territory type="FJ">Fiji</territory>
|
||||
<territory type="FK">Illes Malvines</territory>
|
||||
<territory type="FK" alt="variant">Illes Malvines (Illes Falkland)</territory>
|
||||
<territory type="FK">Illes Falkland</territory>
|
||||
<territory type="FK" alt="variant">Illes Falkland (Illes Malvines)</territory>
|
||||
<territory type="FM">Micronèsia</territory>
|
||||
<territory type="FO">Illes Fèroe</territory>
|
||||
<territory type="FR">França</territory>
|
||||
@ -966,7 +972,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="IM">Illa de Man</territory>
|
||||
<territory type="IN">Índia</territory>
|
||||
<territory type="IO">Territori Britànic de l’Oceà Índic</territory>
|
||||
<territory type="IO" alt="chagos">Arxipèlag de Chagos</territory>
|
||||
<territory type="IO" alt="chagos">Illes Chagos</territory>
|
||||
<territory type="IQ">Iraq</territory>
|
||||
<territory type="IR">Iran</territory>
|
||||
<territory type="IS">Islàndia</territory>
|
||||
@ -986,7 +992,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="KW">Kuwait</territory>
|
||||
<territory type="KY">Illes Caiman</territory>
|
||||
<territory type="KZ">Kazakhstan</territory>
|
||||
<territory type="LA">Laos</territory>
|
||||
<territory type="LA">Lao</territory>
|
||||
<territory type="LB">Líban</territory>
|
||||
<territory type="LC">Saint Lucia</territory>
|
||||
<territory type="LI">Liechtenstein</territory>
|
||||
@ -1024,7 +1030,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="NA">Namíbia</territory>
|
||||
<territory type="NC">Nova Caledònia</territory>
|
||||
<territory type="NE">Níger</territory>
|
||||
<territory type="NF">Norfolk</territory>
|
||||
<territory type="NF">Illa Norfolk</territory>
|
||||
<territory type="NG">Nigèria</territory>
|
||||
<territory type="NI">Nicaragua</territory>
|
||||
<territory type="NL">Països Baixos</territory>
|
||||
@ -1082,7 +1088,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="TA">Tristan da Cunha</territory>
|
||||
<territory type="TC">Illes Turks i Caicos</territory>
|
||||
<territory type="TD">Txad</territory>
|
||||
<territory type="TF">Territoris Australs Francesos</territory>
|
||||
<territory type="TF">Terres Australs Antàrtiques Franceses</territory>
|
||||
<territory type="TG">Togo</territory>
|
||||
<territory type="TH">Tailàndia</territory>
|
||||
<territory type="TJ">Tadjikistan</territory>
|
||||
@ -1093,13 +1099,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="TN">Tunísia</territory>
|
||||
<territory type="TO">Tonga</territory>
|
||||
<territory type="TR">Turquia</territory>
|
||||
<territory type="TT">Trinitat i Tobago</territory>
|
||||
<territory type="TT">Trinidad i Tobago</territory>
|
||||
<territory type="TV">Tuvalu</territory>
|
||||
<territory type="TW">Taiwan</territory>
|
||||
<territory type="TZ">Tanzània</territory>
|
||||
<territory type="UA">Ucraïna</territory>
|
||||
<territory type="UG">Uganda</territory>
|
||||
<territory type="UM">Illes Perifèriques Menors dels EUA</territory>
|
||||
<territory type="UM">Illes Menors Allunyades dels Estats Units</territory>
|
||||
<territory type="UN">Nacions Unides</territory>
|
||||
<territory type="UN" alt="short">ONU</territory>
|
||||
<territory type="US">Estats Units</territory>
|
||||
@ -1109,8 +1115,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="VA">Ciutat del Vaticà</territory>
|
||||
<territory type="VC">Saint Vincent i les Grenadines</territory>
|
||||
<territory type="VE">Veneçuela</territory>
|
||||
<territory type="VG">Illes Verges britàniques</territory>
|
||||
<territory type="VI">Illes Verges nord-americanes</territory>
|
||||
<territory type="VG">Illes Verges Britàniques</territory>
|
||||
<territory type="VI">Illes Verges dels Estats Units</territory>
|
||||
<territory type="VN">Vietnam</territory>
|
||||
<territory type="VU">Vanuatu</territory>
|
||||
<territory type="WF">Wallis i Futuna</territory>
|
||||
@ -1120,7 +1126,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<territory type="XK">Kosovo</territory>
|
||||
<territory type="YE">Iemen</territory>
|
||||
<territory type="YT">Mayotte</territory>
|
||||
<territory type="ZA">República de Sud-àfrica</territory>
|
||||
<territory type="ZA">Sud-àfrica</territory>
|
||||
<territory type="ZM">Zàmbia</territory>
|
||||
<territory type="ZW">Zimbàbue</territory>
|
||||
<territory type="ZZ">regió desconeguda</territory>
|
||||
@ -1360,9 +1366,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<parseLenients scope="date" level="lenient">
|
||||
<parseLenient sample=":">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£">[£ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
<parseLenient sample=",">[,,﹐︐ ، ٫ 、﹑、︑]</parseLenient>
|
||||
@ -1842,15 +1845,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dayPeriod type="evening1">vespre</dayPeriod>
|
||||
<dayPeriod type="night1">nit</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="midnight">mitjanit</dayPeriod>
|
||||
<dayPeriod type="morning1">mat.</dayPeriod>
|
||||
<dayPeriod type="morning2">matí</dayPeriod>
|
||||
<dayPeriod type="afternoon1">migdia</dayPeriod>
|
||||
<dayPeriod type="afternoon2">tarda</dayPeriod>
|
||||
<dayPeriod type="evening1">vespre</dayPeriod>
|
||||
<dayPeriod type="night1">nit</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="am">a. m.</dayPeriod>
|
||||
<dayPeriod type="pm">p. m.</dayPeriod>
|
||||
@ -1999,7 +1993,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dateFormatItem id="yMMMMd">d MMMM 'del' y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMMEd">E, d MMMM 'del' y</dateFormatItem>
|
||||
<dateFormatItem id="yQQQ">QQQ y</dateFormatItem>
|
||||
<dateFormatItem id="yQQQQ">QQQQ y</dateFormatItem>
|
||||
<dateFormatItem id="yQQQQ">QQQQ 'del' y</dateFormatItem>
|
||||
<dateFormatItem id="yw" count="one">'setmana' w 'del' Y</dateFormatItem>
|
||||
<dateFormatItem id="yw" count="other">'setmana' w 'del' Y</dateFormatItem>
|
||||
</availableFormats>
|
||||
@ -2574,6 +2568,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>Hora de: {0}</regionFormat>
|
||||
<regionFormat type="daylight">Hora d’estiu, {0}</regionFormat>
|
||||
<regionFormat type="standard">Hora estàndard, {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Temps universal coordinat</standard>
|
||||
@ -2651,9 +2648,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Atlantic/Cape_Verde">
|
||||
<exemplarCity>Cap Verd</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Curacao">
|
||||
<exemplarCity>Curaçao</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Nicosia">
|
||||
<exemplarCity>Nicòsia</exemplarCity>
|
||||
</zone>
|
||||
@ -2834,9 +2828,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Lisbon">
|
||||
<exemplarCity>Lisboa</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Reunion">
|
||||
<exemplarCity>Reunió</exemplarCity>
|
||||
</zone>
|
||||
@ -2912,9 +2903,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Africa/Mogadishu">
|
||||
<exemplarCity>Mogadiscio</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Africa/Sao_Tome">
|
||||
<exemplarCity>São Tomé</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Damascus">
|
||||
<exemplarCity>Damasc</exemplarCity>
|
||||
</zone>
|
||||
@ -2933,9 +2921,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Simferopol">
|
||||
<exemplarCity>Simferòpol</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/North_Dakota/Beulah">
|
||||
<exemplarCity>Beulah, Dakota del Nord</exemplarCity>
|
||||
</zone>
|
||||
@ -2973,24 +2958,24 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Africa_Central">
|
||||
<long>
|
||||
<standard>Hora de l’Àfrica Central</standard>
|
||||
<standard>Hora de l’Àfrica central</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Africa_Eastern">
|
||||
<long>
|
||||
<standard>Hora de l’Àfrica Oriental</standard>
|
||||
<standard>Hora de l’Àfrica oriental</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Africa_Southern">
|
||||
<long>
|
||||
<standard>Hora estàndard del sud de l’Àfrica</standard>
|
||||
<standard>Hora estàndard de l’Àfrica meridional</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Africa_Western">
|
||||
<long>
|
||||
<generic>Hora de l’Àfrica Occidental</generic>
|
||||
<standard>Hora estàndard de l’Àfrica Occidental</standard>
|
||||
<daylight>Hora d’estiu de l’Àfrica Occidental</daylight>
|
||||
<generic>Hora de l’Àfrica occidental</generic>
|
||||
<standard>Hora estàndard de l’Àfrica occidental</standard>
|
||||
<daylight>Hora d’estiu de l’Àfrica occidental</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Alaska">
|
||||
@ -3037,7 +3022,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Anadyr">
|
||||
<long>
|
||||
<generic draft="contributed">Hora d’Anadyr</generic>
|
||||
<generic>Hora d’Anàdir</generic>
|
||||
<standard draft="contributed">Hora estàndard d’Anadyr</standard>
|
||||
<daylight draft="contributed">Horari d’estiu d’Anadyr</daylight>
|
||||
</long>
|
||||
@ -3086,9 +3071,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Australia_Central">
|
||||
<long>
|
||||
<generic>Hora d’Austràlia Central</generic>
|
||||
<standard>Hora estàndard d’Austràlia Central</standard>
|
||||
<daylight>Hora d’estiu d’Austràlia Central</daylight>
|
||||
<generic>Hora d’Austràlia central</generic>
|
||||
<standard>Hora estàndard d’Austràlia central</standard>
|
||||
<daylight>Hora d’estiu d’Austràlia central</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Australia_CentralWestern">
|
||||
@ -3100,16 +3085,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Australia_Eastern">
|
||||
<long>
|
||||
<generic>Hora d’Austràlia Oriental</generic>
|
||||
<standard>Hora estàndard d’Austràlia Oriental</standard>
|
||||
<daylight>Hora d’estiu d’Austràlia Oriental</daylight>
|
||||
<generic>Hora d’Austràlia oriental</generic>
|
||||
<standard>Hora estàndard d’Austràlia oriental</standard>
|
||||
<daylight>Hora d’estiu d’Austràlia oriental</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Australia_Western">
|
||||
<long>
|
||||
<generic>Hora d’Austràlia Occidental</generic>
|
||||
<standard>Hora estàndard d’Austràlia Occidental</standard>
|
||||
<daylight>Hora d’estiu d’Austràlia Occidental</daylight>
|
||||
<generic>Hora d’Austràlia occidental</generic>
|
||||
<standard>Hora estàndard d’Austràlia occidental</standard>
|
||||
<daylight>Hora d’estiu d’Austràlia occidental</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Azerbaijan">
|
||||
@ -3188,13 +3173,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Hora d’estiu de la Xina</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Hora de Choibalsan</generic>
|
||||
<standard>Hora estàndard de Choibalsan</standard>
|
||||
<daylight>Hora d’estiu de Choibalsan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Hora de Kiritimati</standard>
|
||||
@ -3255,9 +3233,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Europe_Central">
|
||||
<long>
|
||||
<generic>Hora del Centre d’Europa</generic>
|
||||
<standard>Hora estàndard del Centre d’Europa</standard>
|
||||
<daylight>Hora d’estiu del Centre d’Europa</daylight>
|
||||
<generic>Hora d’Europa central</generic>
|
||||
<standard>Hora estàndard d’Europa central</standard>
|
||||
<daylight>Hora d’estiu d’Europa central</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<generic>CET</generic>
|
||||
@ -3267,9 +3245,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Europe_Eastern">
|
||||
<long>
|
||||
<generic>Hora de l’Est d’Europa</generic>
|
||||
<standard>Hora estàndard de l’Est d’Europa</standard>
|
||||
<daylight>Hora d’estiu de l’Est d’Europa</daylight>
|
||||
<generic>Hora d’Europa oriental</generic>
|
||||
<standard>Hora estàndard d’Europa oriental</standard>
|
||||
<daylight>Hora d’estiu d’Europa oriental</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<generic>EET</generic>
|
||||
@ -3279,14 +3257,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="Europe_Further_Eastern">
|
||||
<long>
|
||||
<standard>Hora de l’Extrem Orient Europeu</standard>
|
||||
<standard>Hora de l’extrem oriental d’Europa</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Europe_Western">
|
||||
<long>
|
||||
<generic>Hora de l’Oest d’Europa</generic>
|
||||
<standard>Hora estàndard de l’Oest d’Europa</standard>
|
||||
<daylight>Hora d’estiu de l’Oest d’Europa</daylight>
|
||||
<generic>Hora d’Europa occidental</generic>
|
||||
<standard>Hora estàndard d’Europa occidental</standard>
|
||||
<daylight>Hora d’estiu d’Europa occidental</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<generic>WET</generic>
|
||||
@ -3315,7 +3293,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="French_Southern">
|
||||
<long>
|
||||
<standard>Hora d’Antàrtida i França del Sud</standard>
|
||||
<standard>Hora d’Antàrtida i de les Terres Australs Antàrtiques Franceses</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Galapagos">
|
||||
@ -3342,12 +3320,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</metazone>
|
||||
<metazone type="GMT">
|
||||
<long>
|
||||
<standard>Hora del Meridià de Greenwich</standard>
|
||||
<standard>Hora del meridià de Greenwich</standard>
|
||||
</long>
|
||||
<short>
|
||||
<standard>GMT</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Greenland">
|
||||
<long>
|
||||
<generic draft="unconfirmed">Hora de Groenlàndia</generic>
|
||||
<standard draft="unconfirmed">Hora estàndard de Groenlàndia</standard>
|
||||
<daylight draft="unconfirmed">Hora d’estiu de Groenlàndia</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Greenland_Eastern">
|
||||
<long>
|
||||
<generic>Hora de l’Est de Groenlàndia</generic>
|
||||
@ -3458,6 +3443,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight draft="contributed">Horari d’estiu de Petropavlovsk de Kamtxatka</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Hora del Kazakhstan</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Hora de l’est del Kazakhstan</standard>
|
||||
@ -3996,8 +3986,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 B¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -4271,9 +4259,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">nous rubles bielorussos (1994–1999)</displayName>
|
||||
</currency>
|
||||
<currency type="BYN">
|
||||
<displayName>ruble bielorús</displayName>
|
||||
<displayName count="one">ruble bielorús</displayName>
|
||||
<displayName count="other">rubles bielorussos</displayName>
|
||||
<displayName>ruble belarús</displayName>
|
||||
<displayName count="one">ruble belarús</displayName>
|
||||
<displayName count="other">rubles belarussos</displayName>
|
||||
<symbol alt="narrow">р.</symbol>
|
||||
</currency>
|
||||
<currency type="BYR">
|
||||
@ -5728,6 +5716,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} quirats</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<gender>masculine</gender>
|
||||
<displayName>mil·ligrams per decilitre</displayName>
|
||||
<unitPattern count="one">{0} mil·ligram per decilitre</unitPattern>
|
||||
<unitPattern count="other">{0} mil·ligrams per decilitre</unitPattern>
|
||||
@ -5956,6 +5945,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} volts</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-kilocalorie">
|
||||
<gender>feminine</gender>
|
||||
<displayName>quilocalories</displayName>
|
||||
<unitPattern count="one">{0} quilocaloria</unitPattern>
|
||||
<unitPattern count="other">{0} quilocalories</unitPattern>
|
||||
@ -6193,6 +6183,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} milles escandinaves</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<gender>masculine</gender>
|
||||
<unitPattern count="one">{0} punt tipogràfic</unitPattern>
|
||||
<unitPattern count="other">{0} punts tipogràfics</unitPattern>
|
||||
</unit>
|
||||
@ -6340,6 +6331,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} cavalls de vapor</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<gender>masculine</gender>
|
||||
<displayName>mil·límetres de mercuri</displayName>
|
||||
<unitPattern count="one">{0} mil·límetre de mercuri</unitPattern>
|
||||
<unitPattern count="other">{0} mil·límetres de mercuri</unitPattern>
|
||||
@ -6632,6 +6624,25 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>quarts imperials</displayName>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<gender>feminine</gender>
|
||||
<displayName>llum</displayName>
|
||||
<unitPattern count="one">{0} llum</unitPattern>
|
||||
<unitPattern count="other">{0} llum</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<gender>masculine</gender>
|
||||
<displayName>part per mil milions</displayName>
|
||||
<unitPattern count="one">{0} part per mil milions</unitPattern>
|
||||
<unitPattern count="other">{0} parts per mil milions</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<gender>feminine</gender>
|
||||
<displayName>nits</displayName>
|
||||
<unitPattern count="one">{0} nit</unitPattern>
|
||||
<unitPattern count="other">{0} nits</unitPattern>
|
||||
<perUnitPattern>{0} per nit</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>punt cardinal</displayName>
|
||||
<coordinateUnitPattern type="east">{0} est</coordinateUnitPattern>
|
||||
@ -7055,6 +7066,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} quart imperial</unitPattern>
|
||||
<unitPattern count="other">{0} quarts imperials</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>llum</displayName>
|
||||
<unitPattern count="one">{0} llum</unitPattern>
|
||||
<unitPattern count="other">{0} llum</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>part/mil milions</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nits</displayName>
|
||||
<unitPattern count="one">{0} nit</unitPattern>
|
||||
<unitPattern count="other">{0} nits</unitPattern>
|
||||
<perUnitPattern>{0}/nit</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>punt</displayName>
|
||||
<coordinateUnitPattern type="west">{0}O</coordinateUnitPattern>
|
||||
@ -7222,6 +7247,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} qt imp</unitPattern>
|
||||
<unitPattern count="other">{0} qt imp</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>llum</displayName>
|
||||
<unitPattern count="one">{0} llum</unitPattern>
|
||||
<unitPattern count="other">{0} llum</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nit</displayName>
|
||||
<unitPattern count="one">{0}/nit</unitPattern>
|
||||
<unitPattern count="other">{0}/nit</unitPattern>
|
||||
<perUnitPattern>{0}/nit</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
<listPatterns>
|
||||
|
||||
@ -19,17 +19,25 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="as" draft="unconfirmed">assamés</language>
|
||||
<language type="az" draft="unconfirmed">azerbaidjanés</language>
|
||||
<language type="ban" draft="unconfirmed">balinés</language>
|
||||
<language type="bar" draft="unconfirmed">bavarés</language>
|
||||
<language type="ce" draft="unconfirmed">txetxé</language>
|
||||
<language type="cy" draft="unconfirmed">gal·lés</language>
|
||||
<language type="da" draft="unconfirmed">danés</language>
|
||||
<language type="dum" draft="unconfirmed">neerlandés mitjà</language>
|
||||
<language type="en" draft="unconfirmed">anglés</language>
|
||||
<language type="en_AU" draft="unconfirmed">anglés australià</language>
|
||||
<language type="en_CA" draft="unconfirmed">anglés canadenc</language>
|
||||
<language type="en_GB" draft="unconfirmed">anglés britànic</language>
|
||||
<language type="en_GB" alt="short" draft="unconfirmed">anglés (GB)</language>
|
||||
<language type="en_US" draft="unconfirmed">anglés americà</language>
|
||||
<language type="en_US" alt="short" draft="unconfirmed">anglés (EUA)</language>
|
||||
<language type="enm" draft="unconfirmed">anglés mitjà</language>
|
||||
<language type="fi" draft="unconfirmed">finés</language>
|
||||
<language type="fo" draft="unconfirmed">feroés</language>
|
||||
<language type="fr" draft="unconfirmed">francés</language>
|
||||
<language type="fr_CA" draft="unconfirmed">francés canadenc</language>
|
||||
<language type="fr_CH" draft="unconfirmed">francés suís</language>
|
||||
<language type="frc" draft="unconfirmed">francés cajun</language>
|
||||
<language type="frm" draft="unconfirmed">francés mitjà</language>
|
||||
<language type="fro" draft="unconfirmed">francés antic</language>
|
||||
<language type="ga" draft="unconfirmed">irlandés</language>
|
||||
@ -52,6 +60,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="nl" draft="unconfirmed">neerlandés</language>
|
||||
<language type="pl" draft="unconfirmed">polonés</language>
|
||||
<language type="pt" draft="unconfirmed">portugués</language>
|
||||
<language type="pt_BR" draft="unconfirmed">portugués del Brasil</language>
|
||||
<language type="pt_PT" draft="unconfirmed">portugués de Portugal</language>
|
||||
<language type="ro" draft="unconfirmed">romanés</language>
|
||||
<language type="rup" draft="unconfirmed">aromanés</language>
|
||||
<language type="rw" draft="unconfirmed">ruandés</language>
|
||||
@ -66,9 +76,16 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="to" draft="unconfirmed">tongalés</language>
|
||||
<language type="uk" draft="unconfirmed">ucraïnés</language>
|
||||
<language type="yue" draft="unconfirmed">cantonés</language>
|
||||
<language type="yue" alt="menu" draft="unconfirmed">xinés, cantonés</language>
|
||||
<language type="zh" draft="unconfirmed">xinés</language>
|
||||
<language type="zh" alt="menu" draft="unconfirmed">xinés, mandarí</language>
|
||||
<language type="zh_Hans" draft="unconfirmed">xinés simplificat</language>
|
||||
<language type="zh_Hans" alt="long" draft="unconfirmed">xinés mandarí (simplificat)</language>
|
||||
<language type="zh_Hant" draft="unconfirmed">xinés tradicional</language>
|
||||
<language type="zh_Hant" alt="long" draft="unconfirmed">xinés mandarí (tradicional)</language>
|
||||
</languages>
|
||||
<scripts>
|
||||
<script type="Aghb" draft="unconfirmed">albanés caucàsic</script>
|
||||
<script type="Bali" draft="unconfirmed">balinés</script>
|
||||
<script type="Bugi" draft="unconfirmed">buginés</script>
|
||||
<script type="Hung" draft="unconfirmed">hongarés antic</script>
|
||||
@ -86,6 +103,33 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<type key="collation" type="gb2312han" draft="unconfirmed">ordre del xinés simplificat - GB2312</type>
|
||||
</types>
|
||||
</localeDisplayNames>
|
||||
<dates>
|
||||
<calendars>
|
||||
<calendar type="gregorian">
|
||||
<dayPeriods>
|
||||
<dayPeriodContext type="format">
|
||||
<dayPeriodWidth type="abbreviated">
|
||||
<dayPeriod type="afternoon2" draft="unconfirmed">vesprada</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="afternoon2" draft="unconfirmed">vesprada</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="afternoon2" draft="unconfirmed">vesprada</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
<dayPeriodContext type="stand-alone">
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="afternoon2" draft="unconfirmed">vesprada</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="afternoon2" draft="unconfirmed">vesprada</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
</dayPeriods>
|
||||
</calendar>
|
||||
</calendars>
|
||||
</dates>
|
||||
<numbers>
|
||||
<currencies>
|
||||
<currency type="AFA">
|
||||
@ -108,6 +152,22 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one" draft="unconfirmed">lek albanés</displayName>
|
||||
<displayName count="other" draft="unconfirmed">lekë albanesos</displayName>
|
||||
</currency>
|
||||
<currency type="AOA">
|
||||
<displayName draft="unconfirmed">kwanza angolés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">kwanza angolés</displayName>
|
||||
</currency>
|
||||
<currency type="AOK">
|
||||
<displayName draft="unconfirmed">kwanza angolés (1977–1991)</displayName>
|
||||
<displayName count="one" draft="unconfirmed">kwanza angolés (1977–1991)</displayName>
|
||||
</currency>
|
||||
<currency type="AON">
|
||||
<displayName draft="unconfirmed">nou kwanza angolés (1990–2000)</displayName>
|
||||
<displayName count="one" draft="unconfirmed">nou kwanza angolés (1990–2000)</displayName>
|
||||
</currency>
|
||||
<currency type="AOR">
|
||||
<displayName draft="unconfirmed">kwanza angolés reajustat (1995–1999)</displayName>
|
||||
<displayName count="one" draft="unconfirmed">kwanza angolés reajustat (1995–1999)</displayName>
|
||||
</currency>
|
||||
<currency type="AZM">
|
||||
<displayName draft="unconfirmed">manat azerbaidjanés (1993–2006)</displayName>
|
||||
<displayName count="one" draft="unconfirmed">manat azerbaidjanés (1993–2006)</displayName>
|
||||
@ -118,6 +178,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one" draft="unconfirmed">manat azerbaidjanés</displayName>
|
||||
<displayName count="other" draft="unconfirmed">manats azerbaidjanesos</displayName>
|
||||
</currency>
|
||||
<currency type="CDF">
|
||||
<displayName draft="unconfirmed">franc congolés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">franc congolés</displayName>
|
||||
</currency>
|
||||
<currency type="CLE">
|
||||
<displayName draft="unconfirmed">escut xilé</displayName>
|
||||
<displayName count="one" draft="unconfirmed">escut xilé</displayName>
|
||||
@ -128,6 +192,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one" draft="unconfirmed">peso xilé</displayName>
|
||||
<displayName count="other" draft="unconfirmed">pesos xilens</displayName>
|
||||
</currency>
|
||||
<currency type="CNH">
|
||||
<displayName draft="unconfirmed">iuan xinés extracontinental</displayName>
|
||||
<displayName count="one" draft="unconfirmed">iuan xinés extracontinental</displayName>
|
||||
</currency>
|
||||
<currency type="CNX">
|
||||
<displayName draft="unconfirmed">dòlar del Banc Popular Xinés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">dòlar del Banc Popular Xinés</displayName>
|
||||
@ -148,6 +216,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one" draft="unconfirmed">franc francés</displayName>
|
||||
<displayName count="other" draft="unconfirmed">francs francesos</displayName>
|
||||
</currency>
|
||||
<currency type="GHC">
|
||||
<displayName draft="unconfirmed">cedi ghanés (1979–2007)</displayName>
|
||||
<displayName count="one" draft="unconfirmed">cedi ghanés (1979–2007)</displayName>
|
||||
</currency>
|
||||
<currency type="GHS">
|
||||
<displayName draft="unconfirmed">cedi ghanés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">cedi ghanés</displayName>
|
||||
</currency>
|
||||
<currency type="HUF">
|
||||
<displayName draft="unconfirmed">fòrint hongarés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">fòrint hongarés</displayName>
|
||||
@ -228,6 +304,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one" draft="unconfirmed">franc rwandés</displayName>
|
||||
<displayName count="other" draft="unconfirmed">francs de Ruanda</displayName>
|
||||
</currency>
|
||||
<currency type="SDD">
|
||||
<displayName draft="unconfirmed">dinar sudanés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">dinar sudanés</displayName>
|
||||
</currency>
|
||||
<currency type="SIT">
|
||||
<displayName draft="unconfirmed">tolar eslové</displayName>
|
||||
<displayName count="one" draft="unconfirmed">tolar eslové</displayName>
|
||||
@ -263,6 +343,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one" draft="unconfirmed">franc UIC francés</displayName>
|
||||
<displayName count="other" draft="unconfirmed">francs UIC francesos</displayName>
|
||||
</currency>
|
||||
<currency type="ZRN">
|
||||
<displayName draft="unconfirmed">nou zaire zairés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">nou zaire zairés</displayName>
|
||||
</currency>
|
||||
<currency type="ZRZ">
|
||||
<displayName draft="unconfirmed">zaire zairés</displayName>
|
||||
<displayName count="one" draft="unconfirmed">zaire zairés</displayName>
|
||||
</currency>
|
||||
<currency type="ZWD">
|
||||
<displayName draft="unconfirmed">dòlar zimbabués (1980–2008)</displayName>
|
||||
<displayName count="one" draft="unconfirmed">dòlar zimbabués (1980–2008)</displayName>
|
||||
@ -280,4 +368,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</currency>
|
||||
</currencies>
|
||||
</numbers>
|
||||
<characterLabels>
|
||||
<characterLabel type="japanese_kana" draft="unconfirmed">kana japonés</characterLabel>
|
||||
</characterLabels>
|
||||
</ldml>
|
||||
|
||||
@ -1931,6 +1931,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<regionFormat>{0} 𑄃𑄧𑄇𑄴𑄖𑄧</regionFormat>
|
||||
<regionFormat type="daylight">{0} 𑄘𑄨𑄝𑄪𑄌𑄴𑄎𑄳𑄠 𑄃𑄧𑄇𑄴𑄖𑄧𑄖𑄴</regionFormat>
|
||||
<regionFormat type="standard">{0} 𑄟𑄚𑄧𑄇𑄴 𑄃𑄧𑄇𑄴𑄖𑄧𑄖𑄴</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>𑄦𑄧𑄚𑄮𑄣𑄪𑄣𑄪</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>𑄘𑄇𑄴𑄘𑄨𑄠 𑄛𑄨𑄖𑄴𑄗𑄨𑄟𑄨𑄢𑄴 𑄃𑄧𑄇𑄴𑄖𑄧</standard>
|
||||
@ -2653,9 +2656,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>𑄃𑄪𑄣𑄚𑄴𑄝𑄖𑄢𑄴</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>𑄌𑄰𑄱𑄝𑄣𑄴𑄥𑄳𑄠𑄚𑄴</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>𑄟𑄳𑄠𑄇𑄃𑄮</exemplarCity>
|
||||
</zone>
|
||||
@ -3049,9 +3049,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>𑄚𑄮𑄟𑄴</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>𑄦𑄧𑄚𑄮𑄣𑄪𑄣𑄪</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>𑄃𑄬𑄚𑄴𑄇𑄮𑄢𑄬𑄌𑄴</exemplarCity>
|
||||
</zone>
|
||||
@ -3424,13 +3421,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>𑄌𑄨𑄚𑄴 𑄘𑄨𑄚𑄮𑄃𑄣𑄮𑄢𑄴 𑄃𑄧𑄇𑄴𑄖𑄧</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>𑄌𑄧𑄠𑄴𑄝𑄣𑄴𑄥𑄧𑄚𑄴 𑄃𑄧𑄇𑄴𑄖𑄧</generic>
|
||||
<standard>𑄌𑄧𑄠𑄴𑄝𑄣𑄴𑄥𑄧𑄚𑄴 𑄟𑄚𑄧𑄇𑄴 𑄃𑄧𑄇𑄴𑄖𑄧</standard>
|
||||
<daylight>𑄌𑄧𑄠𑄴𑄝𑄣𑄴𑄥𑄧𑄚𑄴 𑄉𑄧𑄢𑄧𑄟𑄴𑄇𑄣𑄧𑄢𑄴 𑄃𑄧𑄇𑄴𑄖𑄧</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>𑄇𑄳𑄢𑄨𑄌𑄴𑄟𑄥𑄴 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄬 𑄃𑄧𑄇𑄴𑄖𑄧</standard>
|
||||
|
||||
@ -1250,6 +1250,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</field>
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Гонолулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/Unknown">
|
||||
<exemplarCity>Йоьвзуш йоцу гӀала</exemplarCity>
|
||||
</zone>
|
||||
@ -1976,9 +1979,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Улан-Батор</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Чойбалсан</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Макао</exemplarCity>
|
||||
</zone>
|
||||
@ -2375,9 +2375,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>Ном</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Гонолулу</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>Анкоридж</exemplarCity>
|
||||
</zone>
|
||||
@ -2722,13 +2719,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Цийчоьнан, аьхкенан хан</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Чойбалсан</generic>
|
||||
<standard>Чойбалсан, стандартан хан</standard>
|
||||
<daylight>Чойбалсан, аьхкенан хан</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Ӏийса пайхамар винчу ден гӀайре</standard>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -53,6 +53,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bi">ᏈᏍᎳᎹ</language>
|
||||
<language type="bin">ᏈᏂ</language>
|
||||
<language type="bla">ᏏᎩᏏᎧ</language>
|
||||
<language type="blo">ᎠᏂᎵ</language>
|
||||
<language type="bm">ᏆᎻᏆᎳ</language>
|
||||
<language type="bn">ᏇᏂᎦᎳ</language>
|
||||
<language type="bo">ᏘᏇᏔᏂ</language>
|
||||
@ -174,6 +175,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="iba">ᎢᏆᏂ</language>
|
||||
<language type="ibb">ᎢᏈᏈᎣ</language>
|
||||
<language type="id">ᎢᏂᏙᏂᏏᎠ</language>
|
||||
<language type="ie">ᏈᏖᎵᏆ</language>
|
||||
<language type="ig">ᎢᎦᎪ</language>
|
||||
<language type="ii">ᏏᏧᏩᏂ Ᏹ</language>
|
||||
<language type="ikt">ᏭᏕᎵᎬ ᎨᎾᏓ ᎢᏄᎩᏘᏚᏘ</language>
|
||||
@ -226,6 +228,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="kv">ᎪᎻ</language>
|
||||
<language type="kw">ᏎᎷᎭ</language>
|
||||
<language type="kwk">ᏆᏆᎳ</language>
|
||||
<language type="kxv">ᎫᏈ</language>
|
||||
<language type="ky">ᎩᎵᏣᎢᏍ</language>
|
||||
<language type="la">ᎳᏘᏂ</language>
|
||||
<language type="lad">ᎳᏗᏃ</language>
|
||||
@ -234,8 +237,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="lez">ᎴᏏᎦᏂ</language>
|
||||
<language type="lg">ᎦᏂᏓ</language>
|
||||
<language type="li">ᎴᎹᏊᎵᏏ</language>
|
||||
<language type="lij">ᎵᏇᎢᎠ</language>
|
||||
<language type="lil">ᎵᎶᎡᏘ</language>
|
||||
<language type="lkt">ᎳᎪᏓ</language>
|
||||
<language type="lmo">ᎶᏆᏗ</language>
|
||||
<language type="ln">ᎵᏂᎦᎳ</language>
|
||||
<language type="lo">ᎳᎣ</language>
|
||||
<language type="lou">ᎷᏫᏏᎡᎾ ᎦᏬᏂᎯᏍᏗ</language>
|
||||
@ -391,6 +396,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="sw_CD">ᎧᏂᎪ ᏍᏩᎯᎵ</language>
|
||||
<language type="swb">ᎪᎼᎵᎠᏂ</language>
|
||||
<language type="syr">ᏏᎵᎠᎩ</language>
|
||||
<language type="szl">ᏏᎴᏏᏂ</language>
|
||||
<language type="ta">ᏔᎻᎵ</language>
|
||||
<language type="tce">ᏧᎦᏃᏮ ᏚᏦᏁ</language>
|
||||
<language type="te">ᏖᎷᎦ</language>
|
||||
@ -430,7 +436,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="uz">ᎤᏍᏇᎩ</language>
|
||||
<language type="vai">ᏩᏱ</language>
|
||||
<language type="ve">ᏫᏂᏓ</language>
|
||||
<language type="vec">ᏈᏂᏒᏂ</language>
|
||||
<language type="vi">ᏫᎡᏘᎾᎻᏍ</language>
|
||||
<language type="vmw">ᎹᎱᏩ</language>
|
||||
<language type="vo">ᏬᎳᏊᎩ</language>
|
||||
<language type="vun">ᏭᎾᏦ</language>
|
||||
<language type="wa">ᏩᎷᎾ</language>
|
||||
@ -441,6 +449,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="wuu">Ꮽ ᏓᎶᏂᎨᏍᏛ</language>
|
||||
<language type="xal">ᎧᎳᎻᎧ</language>
|
||||
<language type="xh">ᏠᏌ</language>
|
||||
<language type="xnr">ᎧᏈᎢ</language>
|
||||
<language type="xog">ᏐᎦ</language>
|
||||
<language type="yav">ᏰᎾᎦᏇᏂ</language>
|
||||
<language type="ybb">ᏰᎹᏋ</language>
|
||||
@ -449,6 +458,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="yrl">ᏂᎾᎦᏚ</language>
|
||||
<language type="yue">ᎨᎾᏙᏂᏏ</language>
|
||||
<language type="yue" alt="menu">ᏓᎶᏂᎨ, ᎨᎾᏙᏂᏏ</language>
|
||||
<language type="za">ᎱᎠᏂ</language>
|
||||
<language type="zgh">ᎠᏟᎶᏍᏗ ᎼᎶᎪ ᏔᎹᏏᏘ</language>
|
||||
<language type="zh">ᏓᎶᏂᎨ</language>
|
||||
<language type="zh" alt="menu">ᏓᎶᏂᎨ, ᎹᏓᏈᏂ</language>
|
||||
@ -931,7 +941,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<parseLenient sample=":" draft="contributed">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£" draft="contributed">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£" draft="contributed">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-" draft="contributed">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -2027,6 +2037,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<regionFormat>{0} ᎠᏟᎢᎵᏒ</regionFormat>
|
||||
<regionFormat type="daylight">{0} ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ</regionFormat>
|
||||
<regionFormat type="standard">{0} ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>HST</generic>
|
||||
<standard>HST</standard>
|
||||
<daylight>HDT</daylight>
|
||||
</short>
|
||||
<exemplarCity>ᎭᏃᎷᎷ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>ᎢᎩᏠᏱ ᏂᎦᏓ ᎠᏟᎢᎵᏒ</standard>
|
||||
@ -2764,9 +2782,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>ᎤᎳᏂᏆᏔ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>ᏦᏱᏆᎵᏌᏂ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>ᎹᎧᎤ</exemplarCity>
|
||||
</zone>
|
||||
@ -3166,14 +3181,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>ᏃᎺ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>HST</generic>
|
||||
<standard>HST</standard>
|
||||
<daylight>HDT</daylight>
|
||||
</short>
|
||||
<exemplarCity>ᎭᏃᎷᎷ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>ᎠᏂᎪᎴᏥ</exemplarCity>
|
||||
</zone>
|
||||
@ -3548,13 +3555,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>ᏓᎶᏂᎨᏍᏛ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>ᏦᏱᏆᎵᏌᏂ ᎠᏟᎢᎵᏒ</generic>
|
||||
<standard>ᏦᏱᏆᎵᏌᏂ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ</standard>
|
||||
<daylight>ᏦᏱᏆᎵᏌᏂ ᎪᎩ ᎠᏟᎢᎵᏒ</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>ᏓᏂᏍᏓᏲᎯᎲ ᎤᎦᏚᏛᎢ ᎠᏟᎢᎵᏒ</standard>
|
||||
@ -3798,6 +3798,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>ᏣᏩᏂᏏ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>ᎧᏎᎧᏍᏕᏂ ᎠᏟᎢᎵᏒ</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>ᏗᎧᎸᎬ ᎧᏎᎧᏍᏕᏂ ᎠᏟᎢᎵᏒ</standard>
|
||||
@ -4319,8 +4324,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<pattern type="100000000000000" count="other" alt="alphaNextToNumber">¤ 000T</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="AED">
|
||||
@ -5793,6 +5796,22 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0} ᏂᎬᎾᏛᎢ ᎤᏓᏤᎵᎦᏯ ᏅᎩ ᎢᏗᎧᎵᎢ</unitPattern>
|
||||
<unitPattern count="other">{0} ᏂᎬᎾᏛᎢ ᎤᏓᏤᎵᎦᏯ ᏅᎩ ᎢᏗᎧᎵᎢ</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>ᎠᏨᏍᏗ</displayName>
|
||||
<unitPattern count="one">{0} ᎠᏨᏍᏗ</unitPattern>
|
||||
<unitPattern count="other">{0} ᎠᏨᏍᏗ</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>ᏚᏙᏢᏒ ᎢᏳᏓᎵ ᎢᏳᏔᎵᎳᏗᏅᏛ</displayName>
|
||||
<unitPattern count="one">{0} ᎤᏙᏢᏒ ᎢᏳᏓᎵ ᎢᏳᏔᎵᎳᏗᏅᏛ</unitPattern>
|
||||
<unitPattern count="other">{0} ᏚᏙᏢᏒ ᎢᏳᏓᎵ ᎢᏳᏔᎵᎳᏗᏅᏛ</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ᏚᎵᏏᏂᏒ</displayName>
|
||||
<unitPattern count="one">{0} ᎤᏒ</unitPattern>
|
||||
<unitPattern count="other">{0} ᏚᎵᏏᏂᏒ</unitPattern>
|
||||
<perUnitPattern>{0}/ᎤᏒ</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>ᏅᎩ ᏫᏂᏚᏳᎪᏛᎢ</displayName>
|
||||
<coordinateUnitPattern type="east">{0} ᏗᎧᎸᎬ</coordinateUnitPattern>
|
||||
@ -6259,6 +6278,20 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0} ᏗᏓᏇᏄᎩᏍᏗ</unitPattern>
|
||||
<unitPattern count="other">{0} ᏗᏓᏇᏄᎩᏍᏗ</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>ᎠᏨᏍᏗ</displayName>
|
||||
<unitPattern count="one">{0} ᎠᏨᏍᏗ</unitPattern>
|
||||
<unitPattern count="other">{0} ᎠᏨᏍᏗ</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>ᏚᏙᏢᏒ/ᎢᏳᏔᎵᎳᏗᏅᏛ</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ᏚᎵᏏᏂᏒ</displayName>
|
||||
<unitPattern count="one">{0} ᎤᏒ</unitPattern>
|
||||
<unitPattern count="other">{0} ᏚᎵᏏᏂᏒ</unitPattern>
|
||||
<perUnitPattern>{0}/ᎤᏒ</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>ᏫᏚᏳᎪᏛ</displayName>
|
||||
<coordinateUnitPattern type="east">{0} Ꮧ</coordinateUnitPattern>
|
||||
@ -7075,6 +7108,21 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0}qt-Imp.</unitPattern>
|
||||
<unitPattern count="other">{0}qt-Imp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>ᎠᏨᏍᏗ</displayName>
|
||||
<unitPattern count="one">{0}ᎠᏨᏍᏗ</unitPattern>
|
||||
<unitPattern count="other">{0}ᎠᏨᏍᏗ</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<unitPattern count="one">{0}ppb</unitPattern>
|
||||
<unitPattern count="other">{0}ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>ᏚᎵᏏᏂᏒ</displayName>
|
||||
<unitPattern count="one">{0}ᎤᏒ</unitPattern>
|
||||
<unitPattern count="other">{0}ᏚᎵᏏᏂᏒ</unitPattern>
|
||||
<perUnitPattern>{0}/ᎤᏒ</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="east">{0}Ꮧ</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="north">{0}ᏧᏴ</coordinateUnitPattern>
|
||||
|
||||
@ -84,6 +84,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bjn">bandžarština</language>
|
||||
<language type="bkm">kom</language>
|
||||
<language type="bla">siksika</language>
|
||||
<language type="blo">aniiština</language>
|
||||
<language type="bm">bambarština</language>
|
||||
<language type="bn">bengálština</language>
|
||||
<language type="bo">tibetština</language>
|
||||
@ -217,7 +218,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="gmh">hornoněmčina (středověká)</language>
|
||||
<language type="gn">guaranština</language>
|
||||
<language type="goh">hornoněmčina (stará)</language>
|
||||
<language type="gom">konkánština (Goa)</language>
|
||||
<language type="gon">góndština</language>
|
||||
<language type="gor">gorontalo</language>
|
||||
<language type="got">gótština</language>
|
||||
@ -328,6 +328,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">komijština</language>
|
||||
<language type="kw">kornština</language>
|
||||
<language type="kwk">kvakiutština</language>
|
||||
<language type="kxv">kúvi</language>
|
||||
<language type="ky">kyrgyzština</language>
|
||||
<language type="la">latina</language>
|
||||
<language type="lad">ladinština</language>
|
||||
@ -616,13 +617,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="und">neznámý jazyk</language>
|
||||
<language type="ur">urdština</language>
|
||||
<language type="uz">uzbečtina</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">venda</language>
|
||||
<language type="vec">benátština</language>
|
||||
<language type="vep">vepština</language>
|
||||
<language type="vi">vietnamština</language>
|
||||
<language type="vls">vlámština (západní)</language>
|
||||
<language type="vmf">němčina (mohansko-franské dialekty)</language>
|
||||
<language type="vmw">makhuwština</language>
|
||||
<language type="vo">volapük</language>
|
||||
<language type="vot">votština</language>
|
||||
<language type="vro">võruština</language>
|
||||
@ -638,6 +639,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="xal">kalmyčtina</language>
|
||||
<language type="xh">xhoština</language>
|
||||
<language type="xmf">mingrelština</language>
|
||||
<language type="xnr">kángrí</language>
|
||||
<language type="xog">sogština</language>
|
||||
<language type="yao">jaoština</language>
|
||||
<language type="yap">japština</language>
|
||||
@ -2838,6 +2840,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<timeZoneNames>
|
||||
<hourFormat>+H:mm;-H:mm</hourFormat>
|
||||
<regionFormat>časové pásmo {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic draft="contributed">HST</generic>
|
||||
<standard draft="contributed">HST</standard>
|
||||
<daylight draft="contributed">HDT</daylight>
|
||||
</short>
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>koordinovaný světový čas</standard>
|
||||
@ -2927,9 +2937,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Atlantic/Cape_Verde">
|
||||
<exemplarCity>Kapverdy</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Curacao">
|
||||
<exemplarCity>Curaçao</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Christmas">
|
||||
<exemplarCity>Vánoční ostrov</exemplarCity>
|
||||
</zone>
|
||||
@ -3106,9 +3113,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Ulánbátar</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Čojbalsan</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Martinique">
|
||||
<exemplarCity>Martinik</exemplarCity>
|
||||
</zone>
|
||||
@ -3172,15 +3176,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Lisbon">
|
||||
<exemplarCity>Lisabon</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Qatar">
|
||||
<exemplarCity>Katar</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Reunion">
|
||||
<exemplarCity>Réunion</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Bucharest">
|
||||
<exemplarCity>Bukurešť</exemplarCity>
|
||||
</zone>
|
||||
@ -3274,14 +3272,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kyjev</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic draft="contributed">HST</generic>
|
||||
<standard draft="contributed">HST</standard>
|
||||
<daylight draft="contributed">HDT</daylight>
|
||||
</short>
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/North_Dakota/Beulah">
|
||||
<exemplarCity>Beulah, Severní Dakota</exemplarCity>
|
||||
</zone>
|
||||
@ -3594,13 +3584,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>čínský letní čas</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>čojbalsanský čas</generic>
|
||||
<standard>čojbalsanský standardní čas</standard>
|
||||
<daylight>čojbalsanský letní čas</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>čas Vánočního ostrova</standard>
|
||||
@ -3856,6 +3839,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>petropavlovsko-kamčatský letní čas</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>kazachstánský čas</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>východokazachstánský čas</standard>
|
||||
@ -4456,10 +4444,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<currencyPatternAppendISO>{0} ¤¤</currencyPatternAppendISO>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="many">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6040,18 +6024,18 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">slovenských korun</displayName>
|
||||
</currency>
|
||||
<currency type="SLE">
|
||||
<displayName>sierro-leonský leone</displayName>
|
||||
<displayName count="one">sierro-leonský leone</displayName>
|
||||
<displayName count="few">sierro-leonské leone</displayName>
|
||||
<displayName count="many">sierro-leonského leone</displayName>
|
||||
<displayName count="other">sierro-leonských leone</displayName>
|
||||
<displayName>sierraleonský leone</displayName>
|
||||
<displayName count="one">sierraleonský leone</displayName>
|
||||
<displayName count="few">sierraleonské leone</displayName>
|
||||
<displayName count="many">sierraleonského leone</displayName>
|
||||
<displayName count="other">sierraleonských leone</displayName>
|
||||
</currency>
|
||||
<currency type="SLL">
|
||||
<displayName>sierro-leonský leone (1964—2022)</displayName>
|
||||
<displayName count="one">sierro-leonský leone (1964—2022)</displayName>
|
||||
<displayName count="few">sierro-leonské leone (1964—2022)</displayName>
|
||||
<displayName count="many">sierro-leonského leone (1964—2022)</displayName>
|
||||
<displayName count="other">sierro-leonských leone (1964—2022)</displayName>
|
||||
<displayName>sierraleonský leone (1964—2022)</displayName>
|
||||
<displayName count="one">sierraleonský leone (1964—2022)</displayName>
|
||||
<displayName count="few">sierraleonské leone (1964—2022)</displayName>
|
||||
<displayName count="many">sierraleonského leone (1964—2022)</displayName>
|
||||
<displayName count="other">sierraleonských leone (1964—2022)</displayName>
|
||||
</currency>
|
||||
<currency type="SOS">
|
||||
<displayName>somálský šilink</displayName>
|
||||
@ -7221,11 +7205,32 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="locative">{0} karátech</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<gender>inanimate</gender>
|
||||
<displayName>miligramy na decilitr</displayName>
|
||||
<unitPattern count="one">{0} miligram na decilitr</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} miligram na decilitr</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} miligramem na decilitr</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="few">{0} miligramy na decilitr</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} miligramy na decilitr</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} miligramům na decilitr</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} miligramů na decilitr</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} miligramy na decilitr</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} miligramech na decilitr</unitPattern>
|
||||
<unitPattern count="many">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} miligramu na decilitr</unitPattern>
|
||||
<unitPattern count="other">{0} miligramů na decilitr</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} miligramů na decilitr</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} miligramům na decilitr</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} miligramů na decilitr</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} miligramy na decilitr</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} miligramech na decilitr</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-millimole-per-liter">
|
||||
<gender>inanimate</gender>
|
||||
@ -8302,11 +8307,32 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="locative">{0} voltech</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-kilocalorie">
|
||||
<gender>feminine</gender>
|
||||
<displayName>kilokalorie</displayName>
|
||||
<unitPattern count="one">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} kilokalorii</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} kilokalorii</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} kilokalorií</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} kilokalorii</unitPattern>
|
||||
<unitPattern count="few">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} kilokaloriím</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} kilokalorií</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} kilokaloriemi</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} kilokaloriích</unitPattern>
|
||||
<unitPattern count="many">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="other">{0} kilokalorií</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} kilokalorií</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} kilokaloriím</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} kilokalorií</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} kilokaloriemi</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} kilokaloriích</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-calorie">
|
||||
<gender>feminine</gender>
|
||||
@ -9098,11 +9124,32 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="locative">{0} skandinávských mílích</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<gender>inanimate</gender>
|
||||
<displayName>body</displayName>
|
||||
<unitPattern count="one">{0} bod</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} bod</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} bodu</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} bodu</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} bodem</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} bodu</unitPattern>
|
||||
<unitPattern count="few">{0} body</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} body</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} bodům</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} bodů</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} body</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} bodech</unitPattern>
|
||||
<unitPattern count="many">{0} bodu</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} bodů</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} bodům</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} bodů</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} body</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} bodech</unitPattern>
|
||||
<unitPattern count="other">{0} bodů</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} bodů</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} bodům</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} bodů</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} body</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} bodech</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-solar-radius">
|
||||
<displayName>poloměr Slunce</displayName>
|
||||
@ -9585,11 +9632,32 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} koňských sil</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<gender>inanimate</gender>
|
||||
<displayName>milimetry rtuťového sloupce</displayName>
|
||||
<unitPattern count="one">{0} milimetr rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} milimetr rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} milimetru rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} milimetru rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} milimetrem rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} milimetru rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="few">{0} milimetry rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} milimetry rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} milimetrům rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} milimetrů rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} milimetry rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} milimetrech rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="many">{0} milimetru rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} milimetrů rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} milimetrům rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} milimetrů rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} milimetry rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} milimetrech rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="other">{0} milimetrů rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} milimetrů rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} milimetrům rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} milimetrů rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} milimetry rtuťového sloupce</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} milimetrech rtuťového sloupce</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-pound-force-per-square-inch">
|
||||
<displayName>libry na čtvereční palec</displayName>
|
||||
@ -10464,6 +10532,91 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} britského kvartu</unitPattern>
|
||||
<unitPattern count="other">{0} britských kvartů</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<gender>neuter</gender>
|
||||
<displayName>světlo</displayName>
|
||||
<unitPattern count="one">{0} světlo</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} světlo</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} světlu</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} světla</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} světlem</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} světle</unitPattern>
|
||||
<unitPattern count="few">{0} světla</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} světla</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} světlům</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} světel</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} světly</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} světlech</unitPattern>
|
||||
<unitPattern count="many">{0} světla</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} světla</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} světla</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} světla</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} světla</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} světla</unitPattern>
|
||||
<unitPattern count="other">{0} světel</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} světel</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} světlům</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} světel</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} světly</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} světlech</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<gender>feminine</gender>
|
||||
<displayName>částice na miliardu</displayName>
|
||||
<unitPattern count="one">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} částici na miliardu</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} částici na miliardu</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} částicí na miliardu</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} částici na miliardu</unitPattern>
|
||||
<unitPattern count="few">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} částicím na miliardu</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} částic na miliardu</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} částicemi na miliardu</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} částicích na miliardu</unitPattern>
|
||||
<unitPattern count="many">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} částice na miliardu</unitPattern>
|
||||
<unitPattern count="other">{0} částic na miliardu</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} částic na miliardu</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} částicím na miliardu</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} částic na miliardu</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} částicemi na miliardu</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} částicích na miliardu</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<gender>feminine</gender>
|
||||
<displayName>noci</displayName>
|
||||
<unitPattern count="one">{0} noc</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} noc</unitPattern>
|
||||
<unitPattern count="one" case="dative">{0} noci</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} noci</unitPattern>
|
||||
<unitPattern count="one" case="instrumental">{0} nocí</unitPattern>
|
||||
<unitPattern count="one" case="locative">{0} noci</unitPattern>
|
||||
<unitPattern count="few">{0} noci</unitPattern>
|
||||
<unitPattern count="few" case="accusative">{0} noci</unitPattern>
|
||||
<unitPattern count="few" case="dative">{0} nocím</unitPattern>
|
||||
<unitPattern count="few" case="genitive">{0} nocí</unitPattern>
|
||||
<unitPattern count="few" case="instrumental">{0} nocemi</unitPattern>
|
||||
<unitPattern count="few" case="locative">{0} nocích</unitPattern>
|
||||
<unitPattern count="many">{0} noci</unitPattern>
|
||||
<unitPattern count="many" case="accusative">{0} noci</unitPattern>
|
||||
<unitPattern count="many" case="dative">{0} noci</unitPattern>
|
||||
<unitPattern count="many" case="genitive">{0} noci</unitPattern>
|
||||
<unitPattern count="many" case="instrumental">{0} noci</unitPattern>
|
||||
<unitPattern count="many" case="locative">{0} noci</unitPattern>
|
||||
<unitPattern count="other">{0} nocí</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} nocí</unitPattern>
|
||||
<unitPattern count="other" case="dative">{0} nocím</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} nocí</unitPattern>
|
||||
<unitPattern count="other" case="instrumental">{0} nocemi</unitPattern>
|
||||
<unitPattern count="other" case="locative">{0} nocích</unitPattern>
|
||||
<perUnitPattern>{0} za noc</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>světová strana</displayName>
|
||||
<coordinateUnitPattern type="east">{0} východní délky</coordinateUnitPattern>
|
||||
@ -10473,9 +10626,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</coordinateUnit>
|
||||
</unitLength>
|
||||
<unitLength type="short">
|
||||
<compoundUnit type="times">
|
||||
<compoundUnitPattern>{0}{1}</compoundUnitPattern>
|
||||
</compoundUnit>
|
||||
<unit type="acceleration-g-force">
|
||||
<displayName>G</displayName>
|
||||
</unit>
|
||||
@ -10709,6 +10859,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="length-meter">
|
||||
<displayName>m</displayName>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<displayName>body</displayName>
|
||||
</unit>
|
||||
<unit type="mass-gram">
|
||||
<displayName>g</displayName>
|
||||
</unit>
|
||||
@ -10861,6 +11014,28 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>qt Imp.</displayName>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>světlo</displayName>
|
||||
<unitPattern count="one">{0} světlo</unitPattern>
|
||||
<unitPattern count="few">{0} světla</unitPattern>
|
||||
<unitPattern count="many">{0} světla</unitPattern>
|
||||
<unitPattern count="other">{0} světel</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>částic/mld.</displayName>
|
||||
<unitPattern count="one">{0} částice na mld</unitPattern>
|
||||
<unitPattern count="few">{0} částice na mld</unitPattern>
|
||||
<unitPattern count="many">{0} částic na mld</unitPattern>
|
||||
<unitPattern count="other">{0} částic na mld</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noci</displayName>
|
||||
<unitPattern count="one">{0} noc</unitPattern>
|
||||
<unitPattern count="few">{0} noci</unitPattern>
|
||||
<unitPattern count="many">{0} noci</unitPattern>
|
||||
<unitPattern count="other">{0} nocí</unitPattern>
|
||||
<perUnitPattern>{0}/noc</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>směr</displayName>
|
||||
<coordinateUnitPattern type="east">{0} v. d.</coordinateUnitPattern>
|
||||
@ -10961,6 +11136,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0}″</unitPattern>
|
||||
<unitPattern count="other">{0}″</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<displayName>b.</displayName>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<displayName>mmHg</displayName>
|
||||
<unitPattern count="one">{0} mmHg</unitPattern>
|
||||
@ -11011,6 +11189,21 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} šp.</unitPattern>
|
||||
<unitPattern count="other">{0} šp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>světlo</displayName>
|
||||
<unitPattern count="one">{0} sv.</unitPattern>
|
||||
<unitPattern count="few">{0} sv.</unitPattern>
|
||||
<unitPattern count="many">{0} sv.</unitPattern>
|
||||
<unitPattern count="other">{0} sv.</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noci</displayName>
|
||||
<unitPattern count="one">{0} noc</unitPattern>
|
||||
<unitPattern count="few">{0} noci</unitPattern>
|
||||
<unitPattern count="many">{0} noci</unitPattern>
|
||||
<unitPattern count="other">{0} nocí</unitPattern>
|
||||
<perUnitPattern>{0}/noc</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="east">{0}E</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="north">{0}N</coordinateUnitPattern>
|
||||
|
||||
@ -12,89 +12,869 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</identity>
|
||||
<localeDisplayNames>
|
||||
<languages>
|
||||
<language type="chr">ᒉᕑᐅᑫᕀ</language>
|
||||
<language type="csw">ᓀᐦᐃᓇᐍᐏᐣ</language>
|
||||
<language type="en">ᐊᑲᓇᓯᒧᐏᐣ</language>
|
||||
<language type="en_CA">ᒧᓀᐅ ᐏᓂᓀᐤ ᐋᑲᓇᓯᓄᒯᐣ</language>
|
||||
<language type="en">ᐊᑲᓈᓰᒧᐏᐣ</language>
|
||||
<language type="en_AU">ᐊᑲᓈᓰᒧᐏᐣ (AU)</language>
|
||||
<language type="en_CA">ᐊᑲᓈᓰᒧᐏᐣ (ᑳᓇᑕ)</language>
|
||||
<language type="en_GB">ᐊᑲᓈᓰᒧᐏᐣ (GB)</language>
|
||||
<language type="en_US">ᐊᑲᓈᓰᒧᐏᐣ (US)</language>
|
||||
<language type="fr">ᐹᕽᐘᔦᓰᒧᐏᐣ</language>
|
||||
<language type="fr_CA">ᐹᕽᐘᔦᓰᒧᐏᐣ (ᑳᓇᑕ)</language>
|
||||
<language type="fr_CH">ᐹᕽᐘᔦᓰᒧᐏᐣ (CH)</language>
|
||||
<language type="he">ᐦᐄᑊᕑᐅᐤ</language>
|
||||
<language type="mul">ᒥᐦᒉᐟ ᐊᔭᒧᐏᓇ</language>
|
||||
<language type="und">ᓇᒨᓇ ᐃᐦᑕᐟᐘᐣ ᐊᔭᒧᐏᐣ</language>
|
||||
</languages>
|
||||
<scripts>
|
||||
<script type="Cans">ᓀᐦᐃᔭᐊᐧᓯᓇᐦᐃᑳᑌᐤ</script>
|
||||
<script type="Cans">ᓀᐦᐃᔭᐘᓯᓇᐦᐃᑳᑌᐤ</script>
|
||||
<script type="Cher">ᒉᕑᐅᑫᕀ</script>
|
||||
<script type="Latn">ᐋᑲᓈᓰᒨᐏᐣ</script>
|
||||
</scripts>
|
||||
<territories>
|
||||
<territory type="CA">ᑲᓇᑕ</territory>
|
||||
<territory type="001">ᐊᐢᑭᕀ</territory>
|
||||
<territory type="003">ᒥᐦᑭᓇᕽ ᒥᓂᐢᑎᐠ</territory>
|
||||
<territory type="005">ᓵᐘᓄᕽ ᒥᐦᑭᓇᕽ ᒥᓂᐢᑎᐠ</territory>
|
||||
<territory type="013">ᐋᐱᐦᑕᐤ ᒥᐦᑭᓇᕽ ᒥᓂᐢᑎᐠ</territory>
|
||||
<territory type="021">ᑮᐍᑎᓄᕽ ᒥᐦᑭᓇᕽ ᒥᓂᐢᑎᐠ</territory>
|
||||
<territory type="CA">ᑳᓇᑕ</territory>
|
||||
<territory type="EU">ᐊᑳᒪᐢᑮᔭ</territory>
|
||||
<territory type="EZ">ᐊᑳᒪᐢᑮᕽ</territory>
|
||||
<territory type="UN">ᒫᒫᐏ ᐊᐢᑮᔭ</territory>
|
||||
<territory type="US">ᑭᐦᒋ ᒨᑯᒫᓂᕽ</territory>
|
||||
</territories>
|
||||
<keys>
|
||||
<key type="calendar">ᐲᓯᒧᐊᓯᓇᐦᐃᑲᐣ</key>
|
||||
</keys>
|
||||
<codePatterns>
|
||||
<codePattern type="language">ᐊᔭᒥᐏᐣ: {0}</codePattern>
|
||||
<codePattern type="script">ᒪᓯᓇᐦᐃᑫᐃᐧᐣ: {0}</codePattern>
|
||||
<codePattern type="territory">ᓀᐦᐃᔭᐊᐧᐢᑭᕀ: {0}</codePattern>
|
||||
<codePattern type="script">ᒪᓯᓇᐦᐃᑫᐏᐣ: {0}</codePattern>
|
||||
<codePattern type="territory">ᓀᐦᐃᔭᐘᐣᑭᕀ: {0}</codePattern>
|
||||
</codePatterns>
|
||||
</localeDisplayNames>
|
||||
<characters>
|
||||
<exemplarCharacters>[ᐁ ᐃ ᐄ ᐅ ᐆ ᐊ ᐋ ᐍ ᐏ ᐑ ᐓ ᐕ ᐘ ᐚ ᐟ ᐠ ᐢ ᐣ ᐤ ᐦ ᐨ ᐩ ᐯ ᐱ ᐲ ᐳ ᐴ ᐸ ᐹ ᐻ ᐽ ᐿ ᑁ ᑃ ᑅ ᑇ ᑊ ᑌ ᑎ ᑏ ᑐ ᑑ ᑕ ᑖ ᑘ ᑚ ᑜ ᑞ ᑠ ᑢ ᑤ ᑫ ᑭ ᑮ ᑯ ᑰ ᑲ ᑳ ᑵ ᑷ ᑹ ᑻ ᑽ ᑿ ᒁ ᒉ ᒋ ᒌ ᒍ ᒎ ᒐ ᒑ ᒓ ᒕ ᒗ ᒙ ᒛ ᒝ ᒟ ᒣ ᒥ ᒦ ᒧ ᒨ ᒪ ᒫ ᒭ ᒯ ᒱ ᒳ ᒵ ᒷ ᒹ ᒼ ᓀ ᓂ ᓃ ᓄ ᓅ ᓇ ᓈ ᓊ ᓌ ᓎ ᓭ ᓯ ᓰ ᓱ ᓲ ᓴ ᓵ ᓷ ᓹ ᓻ ᓽ ᓿ ᔁ ᔃ ᔦ ᔨ ᔩ ᔪ ᔫ ᔭ ᔮ ᔰ ᔲ ᔴ ᔶ ᔸ ᔺ ᔼ]</exemplarCharacters>
|
||||
<exemplarCharacters>[ᐁ ᐃ ᐄ ᐅ ᐆ ᐊ ᐋ ᐍ ᐏ ᐑ ᐓ ᐕ ᐘ ᐚ ᐟ ᐠ ᐢ ᐣ ᐤ ᐦ ᐨ ᐯ ᐱ ᐲ ᐳ ᐴ ᐸ ᐹ ᑊ ᑌ ᑎ ᑏ ᑐ ᑑ ᑕ ᑖ ᑫ ᑭ ᑮ ᑯ ᑰ ᑲ ᑳ ᒉ ᒋ ᒌ ᒍ ᒎ ᒐ ᒑ ᒣ ᒥ ᒦ ᒧ ᒨ ᒪ ᒫ ᒼ ᓀ ᓂ ᓃ ᓄ ᓅ ᓇ ᓈ ᓓ ᓕ ᓖ ᓗ ᓘ ᓚ ᓛ ᓫ ᓭ ᓯ ᓰ ᓱ ᓲ ᓴ ᓵ ᔦ ᔨ ᔩ ᔪ ᔫ ᔭ ᔮ ᕀ ᕃ ᕆ ᕇ ᕈ ᕉ ᕋ ᕌ ᕑ ᕽ]</exemplarCharacters>
|
||||
<exemplarCharacters type="auxiliary">[ᔐ ᔑ ᔒ ᔓ ᔔ ᔕ ᔖ]</exemplarCharacters>
|
||||
<exemplarCharacters type="punctuation">[\- ‐‑ – — , ; \: ! ? . … ᙮ '‘’ "“” ( ) \[ \] § @ * / \& # † ‡ ′ ″]</exemplarCharacters>
|
||||
</characters>
|
||||
<dates>
|
||||
<calendars>
|
||||
<calendar type="gregorian">
|
||||
<months>
|
||||
<monthContext type="format">
|
||||
<monthWidth type="abbreviated">
|
||||
<month type="1">ᐅᒉᒥᑮᓯᑳᐏᐲᓯᒼ</month>
|
||||
<month type="2">ᐸᐚᐦᒐᑭᓇᓰᐢ</month>
|
||||
<month type="3">ᒥᑭᓯᐏᐲᓯᒼ</month>
|
||||
<month type="4">ᓂᐢᑭᐲᓯᒼ</month>
|
||||
<month type="5">ᐊᓃᑭᐲᓯᒼ</month>
|
||||
<month type="6">ᐚᐏᐲᓯᒼ</month>
|
||||
<month type="7">ᐹᐢᑲᐦᐋᐏᐲᓯᒼ</month>
|
||||
<month type="8">ᐅᐸᐦᐅᐏᐲᓯᒼ</month>
|
||||
<month type="9">ᓄᒌᑐᐏᐲᓯᒼ</month>
|
||||
<month type="10">ᐱᓈᐢᑯᐏᐲᓯᒼ</month>
|
||||
<month type="11">ᐋᕽᐘᑎᓄᐏᐲᓯᒼ</month>
|
||||
<month type="12">ᒪᑯᓭᑮᓭᑳᐏᐲᓯᒼ</month>
|
||||
</monthWidth>
|
||||
<monthWidth type="wide">
|
||||
<month type="1">ᑭᓴᐱᓯᒼ</month>
|
||||
<month type="2">ᒥᑭᓯᐏᐱᓯᒼ</month>
|
||||
<month type="3">ᓂᐢᑭᐱᓯᒼ</month>
|
||||
<month type="4">ᐊᓂᑭᐱᓯᒼ</month>
|
||||
<month type="5">ᓴᑭᐸᑲᐏᐱᓯᒼ</month>
|
||||
<month type="6">ᐸᐢᑲᐍᐦᐅᐱᓯᒼ</month>
|
||||
<month type="7">ᐸᐢᑯᐏᐱᓯᒼ</month>
|
||||
<month type="8">ᐅᐸᐦᐅᐏᐱᓯᒼ</month>
|
||||
<month type="9">ᑕᐦᑿᑭᐱᓯᒼ</month>
|
||||
<month type="10">ᐱᒪᐦᐊᒧᐏᐱᓯᒼ</month>
|
||||
<month type="11">ᐊᑿᑎᓄᐏᐱᓯᒼ</month>
|
||||
<month type="12">ᐸᐘᐢᒐᑲᓂᓹᐱᓯᒼ</month>
|
||||
<month type="1">ᐅᒉᒥᑮᓯᑳᐏᐲᓯᒼ</month>
|
||||
<month type="2">ᐸᐚᐦᒐᑭᓇᓰᐢ</month>
|
||||
<month type="3">ᒥᑭᓯᐏᐲᓯᒼ</month>
|
||||
<month type="4">ᓂᐢᑭᐲᓯᒼ</month>
|
||||
<month type="5">ᐊᓃᑭᐲᓯᒼ</month>
|
||||
<month type="6">ᐚᐏᐲᓯᒼ</month>
|
||||
<month type="7">ᐹᐢᑲᐦᐋᐏᐲᓯᒼ</month>
|
||||
<month type="8">ᐅᐸᐦᐅᐏᐲᓯᒼ</month>
|
||||
<month type="9">ᓄᒌᑐᐏᐲᓯᒼ</month>
|
||||
<month type="10">ᐱᓈᐢᑯᐏᐲᓯᒼ</month>
|
||||
<month type="11">ᐋᕽᐘᑎᓄᐏᐲᓯᒼ</month>
|
||||
<month type="12">ᒪᑯᓭᑮᓭᑳᐏᐲᓯᒼ</month>
|
||||
</monthWidth>
|
||||
</monthContext>
|
||||
<monthContext type="stand-alone">
|
||||
<monthWidth type="abbreviated">
|
||||
<month type="1">ᐅᒉᒥᑮᓯᑳᐏᐲᓯᒼ</month>
|
||||
<month type="2">ᐸᐚᐦᒐᑭᓇᓰᐢ</month>
|
||||
<month type="3">ᒥᑭᓯᐏᐲᓯᒼ</month>
|
||||
<month type="4">ᓂᐢᑭᐲᓯᒼ</month>
|
||||
<month type="5">ᐊᓃᑭᐲᓯᒼ</month>
|
||||
<month type="6">ᐚᐏᐲᓯᒼ</month>
|
||||
<month type="7">ᐹᐢᑲᐦᐋᐏᐲᓯᒼ</month>
|
||||
<month type="8">ᐅᐸᐦᐅᐏᐲᓯᒼ</month>
|
||||
<month type="9">ᓄᒌᑐᐏᐲᓯᒼ</month>
|
||||
<month type="10">ᐱᓈᐢᑯᐏᐲᓯᒼ</month>
|
||||
<month type="11">ᐋᕽᐘᑎᓄᐏᐲᓯᒼ</month>
|
||||
<month type="12">ᒪᑯᓭᑮᓭᑳᐏᐲᓯᒼ</month>
|
||||
</monthWidth>
|
||||
<monthWidth type="wide">
|
||||
<month type="1">ᐅᒉᒥᑮᓯᑳᐏᐲᓯᒼ</month>
|
||||
<month type="2">ᐸᐚᐦᒐᑭᓇᓰᐢ</month>
|
||||
<month type="3">ᒥᑭᓯᐏᐲᓯᒼ</month>
|
||||
<month type="4">ᓂᐢᑭᐲᓯᒼ</month>
|
||||
<month type="5">ᐊᓃᑭᐲᓯᒼ</month>
|
||||
<month type="6">ᐚᐏᐲᓯᒼ</month>
|
||||
<month type="7">ᐹᐢᑲᐦᐋᐏᐲᓯᒼ</month>
|
||||
<month type="8">ᐅᐸᐦᐅᐏᐲᓯᒼ</month>
|
||||
<month type="9">ᓄᒌᑐᐏᐲᓯᒼ</month>
|
||||
<month type="10">ᐱᓈᐢᑯᐏᐲᓯᒼ</month>
|
||||
<month type="11">ᐋᕽᐘᑎᓄᐏᐲᓯᒼ</month>
|
||||
<month type="12">ᒪᑯᓭᑮᓭᑳᐏᐲᓯᒼ</month>
|
||||
</monthWidth>
|
||||
</monthContext>
|
||||
</months>
|
||||
<days>
|
||||
<dayContext type="format">
|
||||
<dayWidth type="abbreviated">
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="mon">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="tue">ᓃᓱᑮᓯᑳᐤ</day>
|
||||
<day type="wed">ᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᐴᓂᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="fri">ᑫᑳᐨ ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
<day type="sat">ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
</dayWidth>
|
||||
<dayWidth type="narrow">
|
||||
<day type="sun">ᐊ</day>
|
||||
<day type="mon">ᐴ</day>
|
||||
<day type="tue">ᓃ</day>
|
||||
<day type="wed">ᐋ</day>
|
||||
<day type="thu">ᐴ</day>
|
||||
<day type="fri">ᑫ</day>
|
||||
<day type="sat">ᒫ</day>
|
||||
</dayWidth>
|
||||
<dayWidth type="short">
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="mon">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="tue">ᓃᓱᑮᓯᑳᐤ</day>
|
||||
<day type="wed">ᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᐴᓂᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="fri">ᑫᑳᐨ ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
<day type="sat">ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
</dayWidth>
|
||||
<dayWidth type="wide">
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᐃ ᑭᓯᑲᐤ</day>
|
||||
<day type="mon">ᐯᔭᐠᑭᓯᑲᐤ</day>
|
||||
<day type="tue">ᓂᓱᑭᓯᑲᐤ</day>
|
||||
<day type="wed">ᐊᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᓀᐓᑭᓯᑲᐤ</day>
|
||||
<day type="fri">ᓂᔭᓇᓄᑭᓯᑲᐤ</day>
|
||||
<day type="sat">ᒪᑎᓄᐏᑭᓯᑲᐤ</day>
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="mon">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="tue">ᓃᓱᑮᓯᑳᐤ</day>
|
||||
<day type="wed">ᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᐴᓂᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="fri">ᑫᑳᐨ ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
<day type="sat">ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
</dayWidth>
|
||||
</dayContext>
|
||||
<dayContext type="stand-alone">
|
||||
<dayWidth type="abbreviated">
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="mon">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="tue">ᓃᓱᑮᓯᑳᐤ</day>
|
||||
<day type="wed">ᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᐴᓂᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="fri">ᑫᑳᐨ ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
<day type="sat">ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
</dayWidth>
|
||||
<dayWidth type="narrow">
|
||||
<day type="sun">ᐊ</day>
|
||||
<day type="mon">ᐴ</day>
|
||||
<day type="tue">ᓃ</day>
|
||||
<day type="wed">ᐋ</day>
|
||||
<day type="thu">ᐴ</day>
|
||||
<day type="fri">ᑫ</day>
|
||||
<day type="sat">ᒫ</day>
|
||||
</dayWidth>
|
||||
<dayWidth type="short">
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="mon">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="tue">ᓃᓱᑮᓯᑳᐤ</day>
|
||||
<day type="wed">ᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᐴᓂᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="fri">ᑫᑳᐨ ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
<day type="sat">ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
</dayWidth>
|
||||
<dayWidth type="wide">
|
||||
<day type="sun">ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="mon">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᐤ</day>
|
||||
<day type="tue">ᓃᓱᑮᓯᑳᐤ</day>
|
||||
<day type="wed">ᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="thu">ᐴᓂᐋᐱᐦᑕᐘᐣ</day>
|
||||
<day type="fri">ᑫᑳᐨ ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
<day type="sat">ᒫᑎᓇᐍᑮᓯᑳᐤ</day>
|
||||
</dayWidth>
|
||||
</dayContext>
|
||||
</days>
|
||||
<dayPeriods>
|
||||
<dayPeriodContext type="format">
|
||||
<dayPeriodWidth type="abbreviated">
|
||||
<dayPeriod type="am">ᐊᒼ</dayPeriod>
|
||||
<dayPeriod type="pm">ᐲᒼ</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">ᐊᒼ</dayPeriod>
|
||||
<dayPeriod type="pm">ᐲᒼ</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="am">ᐁᒼ</dayPeriod>
|
||||
<dayPeriod type="pm">ᐲᒼ</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
<dayPeriodContext type="stand-alone">
|
||||
<dayPeriodWidth type="abbreviated">
|
||||
<dayPeriod type="am">ᐊᒼ</dayPeriod>
|
||||
<dayPeriod type="pm">ᐲᒼ</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">ᐊᒼ</dayPeriod>
|
||||
<dayPeriod type="pm">ᐲᒼ</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="wide">
|
||||
<dayPeriod type="am">ᐊᒼ</dayPeriod>
|
||||
<dayPeriod type="pm">ᐲᒼ</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
</dayPeriods>
|
||||
<dateFormats>
|
||||
<dateFormatLength type="full">
|
||||
<dateFormat>
|
||||
<pattern>y MMMM d, EEEE</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="long">
|
||||
<dateFormat>
|
||||
<pattern>y MMMM d</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="medium">
|
||||
<dateFormat>
|
||||
<pattern>y MMM d</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="short">
|
||||
<dateFormat>
|
||||
<pattern>y-MM-dd</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
</dateFormats>
|
||||
<timeFormats>
|
||||
<timeFormatLength type="full">
|
||||
<timeFormat>
|
||||
<pattern>h:mm:ss a zzzz</pattern>
|
||||
<pattern alt="ascii" draft="contributed">h:mm:ss a zzzz</pattern>
|
||||
<datetimeSkeleton draft="contributed">ahmmsszzzz</datetimeSkeleton>
|
||||
</timeFormat>
|
||||
</timeFormatLength>
|
||||
<timeFormatLength type="long">
|
||||
<timeFormat>
|
||||
<pattern>h:mm:ss a z</pattern>
|
||||
<pattern alt="ascii" draft="contributed">h:mm:ss a z</pattern>
|
||||
<datetimeSkeleton draft="contributed">ahmmssz</datetimeSkeleton>
|
||||
</timeFormat>
|
||||
</timeFormatLength>
|
||||
<timeFormatLength type="medium">
|
||||
<timeFormat>
|
||||
<pattern>h:mm:ss a</pattern>
|
||||
<pattern alt="ascii" draft="contributed">h:mm:ss a</pattern>
|
||||
<datetimeSkeleton draft="contributed">ahmmss</datetimeSkeleton>
|
||||
</timeFormat>
|
||||
</timeFormatLength>
|
||||
<timeFormatLength type="short">
|
||||
<timeFormat>
|
||||
<pattern>h:mm a</pattern>
|
||||
<pattern alt="ascii" draft="contributed">h:mm a</pattern>
|
||||
<datetimeSkeleton draft="contributed">ahmm</datetimeSkeleton>
|
||||
</timeFormat>
|
||||
</timeFormatLength>
|
||||
</timeFormats>
|
||||
<dateTimeFormats>
|
||||
<dateTimeFormatLength type="full">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1} {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<dateTimeFormatLength type="long">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1} {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<dateTimeFormatLength type="medium">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1} {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<dateTimeFormatLength type="short">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1} {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
</dateTimeFormats>
|
||||
</calendar>
|
||||
</calendars>
|
||||
<fields>
|
||||
<field type="year">
|
||||
<displayName>ᐊᐢᑭ</displayName>
|
||||
<displayName>ᐊᐢᑭᕀ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᐊᐢᑭᕀ</relative>
|
||||
<relative type="0">ᐆᒪ ᐊᐢᑫᕀ</relative>
|
||||
<relative type="1">ᒦᓇ ᐊᐢᑭᕀ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐊᐢᑮᐊᐧᐦᑭᕀ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐊᐢᑮᐊᐧᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑲᔮᐢ ᐊᐢᑭᕀ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑲᔮᐢ ᐊᐢᑭᕀ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="year-short">
|
||||
<displayName>ᐊᐢᑭᕀ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᐊᐢᑭᕀ</relative>
|
||||
<relative type="0">ᐆᒪ ᐊᐢᑫᕀ</relative>
|
||||
<relative type="1">ᒦᓇ ᐊᐢᑭᕀ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐊᐢᑮᐊᐧᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐊᐢᑮᐊᐧᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑲᔮᐢ ᐊᐢᑭᕀ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑲᔮᐢ ᐊᐢᑭᕀ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="year-narrow">
|
||||
<displayName>ᐊᐢᑭᕀ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᐊᐢᑭᕀ</relative>
|
||||
<relative type="0">ᐆᒪ ᐊᐢᑫᕀ</relative>
|
||||
<relative type="1">ᒦᓇ ᐊᐢᑭᕀ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0}ᐊᐢᑮᐊᐧᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0}ᐊᐢᑮᐊᐧᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑲᔮᐢ ᐊᐢᑭᕀ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑲᔮᐢ ᐊᐢᑭᕀ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="month">
|
||||
<displayName>ᐱᓯᒧᐘᐠ</displayName>
|
||||
<displayName>ᐲᓯᒼ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᐲᓯᒼ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ ᐲᓯᒼ</relative>
|
||||
<relative type="1">ᒦᓇ ᐲᓯᒼ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐲᓯᒧᐤᐊᐧᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐲᓯᒧᐤᐊᐧᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐃᐢᐠᐚᐨ ᐲᓯᒼ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑕᐦᑐ ᐲᓯᒼ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="month-short">
|
||||
<displayName>ᐲᓯᒼ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᐲᓯᒼ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ ᐲᓯᒼ</relative>
|
||||
<relative type="1">ᒦᓇ ᐲᓯᒼ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐲᓯᒧᐤᐊᐧᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐲᓯᒧᐤᐊᐧᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐃᐢᐠᐚᐨ ᐲᓯᒼ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑕᐦᑐ ᐲᓯᒼ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="month-narrow">
|
||||
<displayName>ᐲᓯᒼ</displayName>
|
||||
<relative type="-1">ᐃᐢᑳᐤᐨ ᐲᓯᒼ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ ᐲᓯᒼ</relative>
|
||||
<relative type="1">ᒦᓇ ᐲᓯᒼ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐲᓯᒧᐤᐊᐧᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐲᓯᒧᐤᐊᐧᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐃᐢᐠᐚᐨ ᐲᓯᒼ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑕᐦᑐ ᐲᓯᒼ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="week">
|
||||
<displayName>ᑭᓯᑲᐘ</displayName>
|
||||
<displayName>ᑮᓯᑳᐘ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᑳᐃᐢᐸᓂᐠ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ ᑳᐃᐢᐸᓂᐠ</relative>
|
||||
<relative type="1">ᒦᓇ ᐃᐢᐸᓂᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐃᐢᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐃᐢᐸᓂᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">ᑳᑮ {0} ᐃᐢᐸᓂᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑳᑮ {0} ᐃᐢᐸᓂᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativePeriod>ᑳᑮ {0} ᐃᐢᐸᓂᐠ</relativePeriod>
|
||||
</field>
|
||||
<field type="week-short">
|
||||
<displayName>ᑮᓯᑳᐘ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᑳᐃᐢᐸᓂᐠ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ ᑳᐃᐢᐸᓂᐠ</relative>
|
||||
<relative type="1">ᒦᓇ ᐃᐢᐸᓂᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐃᐢᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐃᐢᐸᓂᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">ᑳᑮ {0} ᐃᐢᐸᓂᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑳᑮ {0} ᐃᐢᐸᓂᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativePeriod>ᑳᑮ {0} ᐃᐢᐸᓂᐠ</relativePeriod>
|
||||
</field>
|
||||
<field type="week-narrow">
|
||||
<displayName>ᑮᓯᑳᐘ</displayName>
|
||||
<relative type="-1">ᐃᐢᐠᐚᐨ ᑳᐃᐢᐸᓂᐠ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ ᑳᐃᐢᐸᓂᐠ</relative>
|
||||
<relative type="1">ᒦᓇ ᐃᐢᐸᓂᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᓃᑳᐣ {0} ᐃᐢᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᓃᑳᐣ {0} ᐃᐢᐸᓂᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐅᑖᑯᓰᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑮ ᐃᐢᐸᓂᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativePeriod>ᑳᑮ ᐃᐢᐸᓂᐠ {0}</relativePeriod>
|
||||
</field>
|
||||
<field type="day">
|
||||
<displayName>ᑭᓯᑲᐤ</displayName>
|
||||
<relative type="-1">ᐅᑕᑯᓯᐠ</relative>
|
||||
<relative type="0">ᐊᓄᐢᐨ</relative>
|
||||
<relative type="1">ᐘᐸᐦᑫ</relative>
|
||||
<displayName>ᑮᓯᑳᐤ</displayName>
|
||||
<relative type="-1">ᐅᑖᑯᓯᕽ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ</relative>
|
||||
<relative type="1">ᐚᐸᐦᑫ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑮ ᑕᐦᑐ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑮ ᑕᐦᑐ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="day-short">
|
||||
<displayName>ᑮᓯᑳᐤ</displayName>
|
||||
<relative type="-1">ᐅᑖᑯᓰᕽ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ</relative>
|
||||
<relative type="1">ᐚᐸᐦᑫ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑮ ᑕᐦᑐ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑮ ᑕᐦᑐ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="day-narrow">
|
||||
<displayName>ᑮᓯᑳᐤ</displayName>
|
||||
<relative type="-1">ᐅᑖᑯᓰᕽ</relative>
|
||||
<relative type="0">ᐊᓄᐦᐨ</relative>
|
||||
<relative type="1">ᐚᐸᐦᑫ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0}ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0}ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐅᑖᑯᓰᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑮ ᑕᐦᑐ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sun">
|
||||
<relative type="-1">ᑳᐊᔭᒥᐦᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐤ</relative>
|
||||
<relative type="1">ᐊᔭᒥᐦᐁ ᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᒦᓄ {0} ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᒦᓄ {0} ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑕᐦᑐ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑕᐦᑐ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sun-short">
|
||||
<relative type="-1">ᑳᐊᔭᒥᐦᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐤ</relative>
|
||||
<relative type="1">ᐊᔭᒥᐦᐁ ᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᒦᓄ {0} ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᒦᓄ {0} ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑕᐦᑐ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑕᐦᑐ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sun-narrow">
|
||||
<relative type="-1">ᑳᐊᔭᒥᐦᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐤ</relative>
|
||||
<relative type="1">ᐊᔭᒥᐦᐁ ᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᒦᓄ {0} ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᒦᓄ {0} ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑕᐦᑐ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑕᐦᑐ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="mon">
|
||||
<relative type="-1">ᑳᐴᓂ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐴᓂ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="mon-short">
|
||||
<relative type="-1">ᑳᐴᓂ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐴᓂ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="mon-narrow">
|
||||
<relative type="-1">ᑳᐴᓂ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐴᓂ ᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᐴᓂ ᐊᔭᒥᐦᐁᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐴᓂᐊᔭᒥᐦᐁ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="tue">
|
||||
<relative type="-1">ᑳᓃᓱᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᓃᓱᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᓃᓯᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᓃᓱᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᓃᓱᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᓃᓱᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᓃᓱᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="tue-short">
|
||||
<relative type="-1">ᑳᓃᓱᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᓃᓱᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᓃᓯᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᓃᓱᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᓃᓱᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᓃᓱᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᓃᓱᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="tue-narrow">
|
||||
<relative type="-1">ᑳᓃᓱᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᓃᓱᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᓃᓯᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᓃᓱᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᓃᓱᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᓃᓱᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᓃᓱᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="wed">
|
||||
<relative type="-1">ᑳᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="1">ᒦᓇ ᐋᐱᐦᑕᐘᐦᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="wed-short">
|
||||
<relative type="-1">ᑳᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="1">ᒦᓇ ᐋᐱᐦᑕᐘᐦᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="wed-narrow">
|
||||
<relative type="-1">ᑳᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="1">ᒦᓇ ᐋᐱᐦᑕᐘᐦᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="thu">
|
||||
<relative type="-1">ᑳᐴᓂ ᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐴᓂ ᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="1">ᒦᓇ ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐴᓂ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐴᓂ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="thu-short">
|
||||
<relative type="-1">ᑳᐴᓂ ᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐴᓂ ᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="1">ᒦᓇ ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐴᓂ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐴᓂ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="thu-narrow">
|
||||
<relative type="-1">ᑳᐴᓂ ᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="0">ᐆᒪ ᑳᐴᓂ ᐋᐱᐦᑕᐘᕽ</relative>
|
||||
<relative type="1">ᒦᓇ ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐴᓂ ᐋᐱᐦᑕᐘᐦᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᐴᓂ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᐴᓂ ᐋᐱᐦᑕᐘᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="fri">
|
||||
<relative type="-1">ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᒦᓇ ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="fri-short">
|
||||
<relative type="-1">ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᒦᓇ ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="fri-narrow">
|
||||
<relative type="-1">ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="0">ᐆᒪ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relative>
|
||||
<relative type="1">ᒦᓇ ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑫᑳᐨ ᒫᑎᓇᐍ ᑮᓯᑳᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᑫᑳᐨ ᑳᒫᑎᓇᐍ ᑮᓯᑳᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sat">
|
||||
<relative type="-1">ᑫᑳᐨ ᑳᒫᑎᓇᐍᑮᓯᑲᐠ</relative>
|
||||
<relative type="0">ᒦᓇ ᑮᑳᐨᒪᑎᓇᐍᑮᓯᑳᐤ</relative>
|
||||
<relative type="1">ᒦᓇ ᑮᑳᐨᒪᑎᓇᐍᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᒫᑎᓇᐍᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᒫᑎᓇᐍᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᒫᑎᓇᐍᑮᓯᑲᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᒫᑎᓇᐍᑮᓯᑲᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sat-short">
|
||||
<relative type="-1">ᑫᑳᐨ ᑳᒫᑎᓇᐍᑮᓯᑲᐠ</relative>
|
||||
<relative type="0">ᒦᓇ ᑮᑳᐨᒪᑎᓇᐍᑮᓯᑳᐤ</relative>
|
||||
<relative type="1">ᒦᓇ ᑮᑳᐨᒪᑎᓇᐍᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᒫᑎᓇᐍᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᒫᑎᓇᐍᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᒫᑎᓇᐍᑮᓯᑲᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᒫᑎᓇᐍᑮᓯᑲᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sat-narrow">
|
||||
<relative type="-1">ᑫᑳᐨ ᑳᒫᑎᓇᐍᑮᓯᑲᐠ</relative>
|
||||
<relative type="0">ᒦᓇ ᑮᑳᐨᒪᑎᓇᐍᑮᓯᑳᐤ</relative>
|
||||
<relative type="1">ᒦᓇ ᑮᑳᐨᒪᑎᓇᐍᑮᓯᑳᑭ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᒫᑎᓇᐍᑮᓯᑳᐘ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᒫᑎᓇᐍᑮᓯᑳᐘ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑳᑕᐦᑐ ᒫᑎᓇᐍᑮᓯᑲᐠ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑳᑕᐦᑐ ᒫᑎᓇᐍᑮᓯᑲᐠ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="hour">
|
||||
<displayName>ᐚᐢᑳᐸᓂᐤ</displayName>
|
||||
<relative type="0">ᐆᒪ ᐘᐢᑳᐸᓄᐤ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐘᐢᑳᐸᓂᑯᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᐘᐢᑳᐸᓂᑯᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="hour-short">
|
||||
<displayName>ᐚᐢᑳᐸᓂᐤ</displayName>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᐘᐢᑳᐸᓂᑯᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᐘᐢᑳᐸᓂᑯᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="hour-narrow">
|
||||
<displayName>ᐚᐢᑳᐸᓂᐤ</displayName>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑕᐦᑐ ᐘᐢᑳᐸᓂᑭ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᐘᐢᑳᐸᓂᑯᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="minute">
|
||||
<displayName>ᑎᐸᐦᐃᑲᓂᐢ</displayName>
|
||||
<relative type="0">ᐆᒪ ᑎᐸᐦᐃᑲᓂᐢ</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑎᐸᐦᐃᑲᓂᓴ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑎᐸᐦᐃᑲᓂᓴ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑎᐸᐦᐃᑲᓂᓯᐦᑯᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑎᐸᐦᐃᑲᓂᓯᐦᑯᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="minute-short">
|
||||
<displayName>ᑎᐸᐦᐃᑲᓂᐢ</displayName>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">ᑕᐦᑐ {0} ᑎᐸᐦᐃᑲᓂᓴ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ᑕᐦᑐ {0} ᑎᐸᐦᐃᑲᓂᓴ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">{0} ᑎᐸᐦᐃᑲᓂᓯᐦᑯᕽ</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} ᑎᐸᐦᐃᑲᓂᓯᐦᑯᕽ</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="minute-narrow">
|
||||
<displayName>ᑎᐸᐦᐃᑲᓂᐢ</displayName>
|
||||
</field>
|
||||
<field type="second">
|
||||
<relative type="0">ᒣᐠᐚᐨ</relative>
|
||||
</field>
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
<regionFormat>{0} ᐁᐃᐢᐸᓂᐟ</regionFormat>
|
||||
<regionFormat type="daylight">{0} ᑮᓯᑳᐤ ᐁᐃᐢᐸᓂᐟ</regionFormat>
|
||||
<regionFormat type="standard">{0} ᐯᔭᑯᐦᑕᐃᐧᐣ ᐁᐃᐢᐸᓂᐟ</regionFormat>
|
||||
<regionFormat>{0} ᐁᐃᐢᐸᓂᐠ</regionFormat>
|
||||
<regionFormat type="daylight">{0} ᑮᓯᑳᐤ ᐁᐃᐢᐸᓂᐠ</regionFormat>
|
||||
<regionFormat type="standard">{0} ᐯᔭᑯᐦᑖᐏᐣ ᐁᐃᐢᐸᓂᐠ</regionFormat>
|
||||
<zone type="Etc/Unknown">
|
||||
<exemplarCity>ᓇᒨᓇ ᑭᐢᑫᓂᑖᑿᐣ ᐃᐦᑖᐏᐣ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Inuvik">
|
||||
<exemplarCity>ᐃᓄᐱᐠ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Edmonton">
|
||||
<exemplarCity>ᐁᐟᒪᐣᑐᐣ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Swift_Current">
|
||||
<exemplarCity>ᓴᐢᑳᐟᒉᐘᐣ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Winnipeg">
|
||||
<exemplarCity>ᐑᓂᐯᐠ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Coral_Harbour">
|
||||
<exemplarCity>ᐊᑎᐦᑯᑲᐣ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Iqaluit">
|
||||
<exemplarCity>ᐃᑳᓫᐅᐃᐟ</exemplarCity>
|
||||
</zone>
|
||||
<metazone type="GMT">
|
||||
<long>
|
||||
<standard>ᕒᐁᐁᐣᐤᐏᐨ ᒣᐊᐣ ᐁᐃᐢᐸᓂᐟ</standard>
|
||||
<standard>ᐠᕑᐁᓂᐨ ᐯᔭᑯᐦᑖᐏᐣ ᐁᐃᐢᐸᓂᐠ</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
</timeZoneNames>
|
||||
</dates>
|
||||
<numbers>
|
||||
<currencies>
|
||||
<currency type="CAD">
|
||||
<displayName>ᑲᓀᑎᔭᐣ ᐯᔭᐠᐚᐱᐢᐠ</displayName>
|
||||
<displayName count="one">ᑲᓀᑎᔭᐣ ᐯᔭᐠᐚᐱᐢᐠ</displayName>
|
||||
<displayName count="other">ᑲᓀᑎᔭᐣ ᐯᔭᐠᐚᐱᐢᐠᐘᐠ</displayName>
|
||||
</currency>
|
||||
</currencies>
|
||||
<minimalPairs>
|
||||
<pluralMinimalPairs count="one" draft="contributed">{0} ᑮᓯᑳᐤ</pluralMinimalPairs>
|
||||
<pluralMinimalPairs count="other" draft="contributed">{0} ᑮᓯᑳᐘ</pluralMinimalPairs>
|
||||
</minimalPairs>
|
||||
</numbers>
|
||||
<listPatterns>
|
||||
<listPattern>
|
||||
<listPatternPart type="2">{0} ᐊᐠᐘ {1}</listPatternPart>
|
||||
</listPattern>
|
||||
<listPattern type="or">
|
||||
<listPatternPart type="end">{0}, ᐊᐍᑳ {1}</listPatternPart>
|
||||
<listPatternPart type="2">{0} ᐊᐍᑳ {1}</listPatternPart>
|
||||
</listPattern>
|
||||
</listPatterns>
|
||||
<posix>
|
||||
<messages>
|
||||
<yesstr>ᐁᐦᐁ:ᐁ</yesstr>
|
||||
<nostr>ᓇᒨᓇ:ᓇ</nostr>
|
||||
</messages>
|
||||
</posix>
|
||||
<characterLabels>
|
||||
<characterLabel type="person">ᐊᓂᓯᓂᐤ</characterLabel>
|
||||
</characterLabels>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -57,7 +57,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="awa">Awadhi</language>
|
||||
<language type="ay">Aymareg</language>
|
||||
<language type="az">Aserbaijaneg</language>
|
||||
<language type="az" alt="short">Aseri</language>
|
||||
<language type="az_Arab">Aserbaijaneg Deheuol</language>
|
||||
<language type="ba">Bashcorteg</language>
|
||||
<language type="bal">Balwtsi</language>
|
||||
@ -78,6 +77,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">Bini</language>
|
||||
<language type="bkm">Comeg</language>
|
||||
<language type="bla">Siksika</language>
|
||||
<language type="blo">Anii</language>
|
||||
<language type="bm">Bambareg</language>
|
||||
<language type="bn">Bengaleg</language>
|
||||
<language type="bo">Tibeteg</language>
|
||||
@ -290,6 +290,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">Comi</language>
|
||||
<language type="kw">Cernyweg</language>
|
||||
<language type="kwk">Kwakʼwala</language>
|
||||
<language type="kxv">Kuvi</language>
|
||||
<language type="ky">Cirgiseg</language>
|
||||
<language type="la">Lladin</language>
|
||||
<language type="lad">Iddew-Sbaeneg</language>
|
||||
@ -300,6 +301,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">Lezgheg</language>
|
||||
<language type="lg">Ganda</language>
|
||||
<language type="li">Limbwrgeg</language>
|
||||
<language type="lij">Ligwreg</language>
|
||||
<language type="lil">Lillooet</language>
|
||||
<language type="lkt">Lakota</language>
|
||||
<language type="lmo">Lombardeg</language>
|
||||
@ -561,6 +563,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="vep">Feps</language>
|
||||
<language type="vi">Fietnameg</language>
|
||||
<language type="vls">Fflemeg Gorllewinol</language>
|
||||
<language type="vmw">Macua</language>
|
||||
<language type="vo">Folapük</language>
|
||||
<language type="vot">Foteg</language>
|
||||
<language type="vun">Funjo</language>
|
||||
@ -574,6 +577,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">Wu Tsieineaidd</language>
|
||||
<language type="xal">Calmyceg</language>
|
||||
<language type="xh">Xhosa</language>
|
||||
<language type="xnr">Kangri</language>
|
||||
<language type="xog">Soga</language>
|
||||
<language type="yav">Iangben</language>
|
||||
<language type="ybb">Iembaeg</language>
|
||||
@ -582,6 +586,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="yrl">Nheengatu</language>
|
||||
<language type="yue">Cantoneeg</language>
|
||||
<language type="yue" alt="menu">Tsieinëeg, Cantoneg</language>
|
||||
<language type="za">Zhuang</language>
|
||||
<language type="zap">Zapoteceg</language>
|
||||
<language type="zbl">Blisssymbols</language>
|
||||
<language type="zea">Zêlandeg</language>
|
||||
@ -625,7 +630,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<script type="Hebr">Hebreig</script>
|
||||
<script type="Hira">Hiragana</script>
|
||||
<script type="Hrkt">Syllwyddor Japaneaidd</script>
|
||||
<script type="Jamo">Jamo</script>
|
||||
<script type="Jpan">Japaneaidd</script>
|
||||
<script type="Kana">Catacana</script>
|
||||
<script type="Khmr">Chmeraidd</script>
|
||||
@ -1178,6 +1182,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<dateFormatItem id="MEd">E, d/M</dateFormatItem>
|
||||
<dateFormatItem id="MMMd">d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEd">E, d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMd">d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="y">y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyy">y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMM">MMM y G</dateFormatItem>
|
||||
@ -1698,7 +1703,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relative type="0">eleni</relative>
|
||||
<relative type="1">blwyddyn nesaf</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="zero">ymhen {0} mlynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="zero">ymhen {0} o flynyddoedd</relativeTimePattern>
|
||||
<relativeTimePattern count="one">ymhen blwyddyn</relativeTimePattern>
|
||||
<relativeTimePattern count="two">ymhen {0} flynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="few">ymhen {0} blynedd</relativeTimePattern>
|
||||
@ -1709,20 +1714,28 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relativeTimePattern count="zero">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="one">blwyddyn yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="two">{0} flynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="few">{0} blynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="many">{0} blynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="few">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="many">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="year-short">
|
||||
<displayName>bl.</displayName>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="zero">ymhen {0} o flynyddoedd</relativeTimePattern>
|
||||
<relativeTimePattern count="one">ymhen blwyddyn</relativeTimePattern>
|
||||
<relativeTimePattern count="two">ymhen {0} flynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="few">ymhen {0} blynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="many">ymhen {0} blynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ymhen {0} o flynyddoedd</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="zero">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="one">{0} bl. yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="two">{0} flynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="few">{0} blynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="many">{0} blynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} bl. yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="few">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="many">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="year-narrow">
|
||||
@ -1730,20 +1743,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relative type="0">eleni</relative>
|
||||
<relative type="1">bl. nesaf</relative>
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="zero">ymhen {0} mlynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="zero">ymhen {0} o flynyddoedd</relativeTimePattern>
|
||||
<relativeTimePattern count="one">ymhen bl.</relativeTimePattern>
|
||||
<relativeTimePattern count="two">ymhen {0} flynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="few">ymhen {0} blynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="many">ymhen {0} blynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ymhen {0} mlynedd</relativeTimePattern>
|
||||
<relativeTimePattern count="other">ymhen {0} o flynyddoedd</relativeTimePattern>
|
||||
</relativeTime>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="zero">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="one">blwyddyn yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="two">{0} flynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="few">{0} blynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="many">{0} blynedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} bl. yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="few">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="many">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
<relativeTimePattern count="other">{0} o flynyddoedd yn ôl</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="quarter">
|
||||
@ -2493,6 +2506,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>Amser {0}</regionFormat>
|
||||
<regionFormat type="daylight">Amser Haf {0}</regionFormat>
|
||||
<regionFormat type="standard">Amser Safonol {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Amser Cyffredniol Cydlynol</standard>
|
||||
@ -2510,9 +2526,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Brussels">
|
||||
<exemplarCity>Brwsel</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/St_Barthelemy">
|
||||
<exemplarCity>St. Barthélemy</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Eirunepe">
|
||||
<exemplarCity>Eirunepé</exemplarCity>
|
||||
</zone>
|
||||
@ -2531,9 +2544,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Bogota">
|
||||
<exemplarCity>Bogotá</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Curacao">
|
||||
<exemplarCity>Curaçao</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Christmas">
|
||||
<exemplarCity>Ynys y Nadolig</exemplarCity>
|
||||
</zone>
|
||||
@ -2609,27 +2619,15 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Gaza">
|
||||
<exemplarCity>Gasa</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Reunion">
|
||||
<exemplarCity>Réunion</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Bucharest">
|
||||
<exemplarCity>Bwcarést</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Africa/Sao_Tome">
|
||||
<exemplarCity>São Tomé</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Istanbul">
|
||||
<exemplarCity>Caergystennin</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kiev</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/North_Dakota/Beulah">
|
||||
<exemplarCity>Beulah, Gogledd Dakota</exemplarCity>
|
||||
</zone>
|
||||
@ -2866,13 +2864,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Amser Haf Tsieina</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Amser Choibalsan</generic>
|
||||
<standard>Amser Safonol Choibalsan</standard>
|
||||
<daylight>Amser Haf Choibalsan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Amser Ynys Y Nadolig</standard>
|
||||
@ -3129,6 +3120,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Amser Haf Japan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Amser Kazakhstan</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Amser Dwyrain Kazakhstan</standard>
|
||||
@ -3765,12 +3761,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other" alt="alphaNextToNumber">¤ 000T</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="zero">{0} {1}</unitPattern>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="two">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="many">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="AED">
|
||||
@ -7656,6 +7646,34 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>chwart Imp</displayName>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>golau</displayName>
|
||||
<unitPattern count="zero">golau</unitPattern>
|
||||
<unitPattern count="one">golau</unitPattern>
|
||||
<unitPattern count="two">golau</unitPattern>
|
||||
<unitPattern count="few">golau</unitPattern>
|
||||
<unitPattern count="many">golau</unitPattern>
|
||||
<unitPattern count="other">{0} golau</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>rhannau fesul biliwn</displayName>
|
||||
<unitPattern count="zero">ppb</unitPattern>
|
||||
<unitPattern count="one">{0} rhan fesul biliwn</unitPattern>
|
||||
<unitPattern count="two">{0} rhan fesul biliwn</unitPattern>
|
||||
<unitPattern count="few">{0} rhan fesul biliwn</unitPattern>
|
||||
<unitPattern count="many">{0} rhan fesul biliwn</unitPattern>
|
||||
<unitPattern count="other">{0} rhan fesul biliwn</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nosau</displayName>
|
||||
<unitPattern count="zero">{0} noson</unitPattern>
|
||||
<unitPattern count="one">{0} noson</unitPattern>
|
||||
<unitPattern count="two">{0} noson</unitPattern>
|
||||
<unitPattern count="few">{0} noson</unitPattern>
|
||||
<unitPattern count="many">{0} noson</unitPattern>
|
||||
<unitPattern count="other">{0} noson</unitPattern>
|
||||
<perUnitPattern>{0}/noson</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>cyfeiriad cardinal</displayName>
|
||||
<coordinateUnitPattern type="east">{0} i’r dwyrain</coordinateUnitPattern>
|
||||
@ -8348,6 +8366,28 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} cht Imp.</unitPattern>
|
||||
<unitPattern count="other">{0} cht Imp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>golau</displayName>
|
||||
<unitPattern count="zero">golau</unitPattern>
|
||||
<unitPattern count="one">{0} golau</unitPattern>
|
||||
<unitPattern count="two">{0} golau</unitPattern>
|
||||
<unitPattern count="few">{0} golau</unitPattern>
|
||||
<unitPattern count="many">{0} golau</unitPattern>
|
||||
<unitPattern count="other">{0} golau</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>rhannau/biliwn</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nosau</displayName>
|
||||
<unitPattern count="zero">{0} noson</unitPattern>
|
||||
<unitPattern count="one">{0} noson</unitPattern>
|
||||
<unitPattern count="two">{0} noson</unitPattern>
|
||||
<unitPattern count="few">{0} noson</unitPattern>
|
||||
<unitPattern count="many">{0} noson</unitPattern>
|
||||
<unitPattern count="other">{0} noson</unitPattern>
|
||||
<perUnitPattern>{0}/noson</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>cyfeiriad</displayName>
|
||||
<coordinateUnitPattern type="east">{0} dn</coordinateUnitPattern>
|
||||
@ -9444,6 +9484,33 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="many">{0} qt Imp.</unitPattern>
|
||||
<unitPattern count="other">{0}qt-Imp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>golau</displayName>
|
||||
<unitPattern count="zero">{0} golau</unitPattern>
|
||||
<unitPattern count="one">{0} golau</unitPattern>
|
||||
<unitPattern count="two">{0} golau</unitPattern>
|
||||
<unitPattern count="few">{0} golau</unitPattern>
|
||||
<unitPattern count="many">{0} golau</unitPattern>
|
||||
<unitPattern count="other">{0} golau</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<unitPattern count="zero">{0} ppb</unitPattern>
|
||||
<unitPattern count="one">{0}ppb</unitPattern>
|
||||
<unitPattern count="two">{0} ppb</unitPattern>
|
||||
<unitPattern count="few">{0} ppb</unitPattern>
|
||||
<unitPattern count="many">{0} ppb</unitPattern>
|
||||
<unitPattern count="other">{0}ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nosau</displayName>
|
||||
<unitPattern count="zero">{0} noson</unitPattern>
|
||||
<unitPattern count="one">{0}noson</unitPattern>
|
||||
<unitPattern count="two">{0}noson</unitPattern>
|
||||
<unitPattern count="few">{0}noson</unitPattern>
|
||||
<unitPattern count="many">{0}noson</unitPattern>
|
||||
<unitPattern count="other">{0}noson</unitPattern>
|
||||
<perUnitPattern>{0}/noson</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="east">{0}dn</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="north">{0}g</coordinateUnitPattern>
|
||||
|
||||
@ -71,6 +71,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">bini</language>
|
||||
<language type="bkm">kom</language>
|
||||
<language type="bla">siksika</language>
|
||||
<language type="blo">anii</language>
|
||||
<language type="bm">bambara</language>
|
||||
<language type="bn">bengali</language>
|
||||
<language type="bo">tibetansk</language>
|
||||
@ -298,6 +299,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">komi</language>
|
||||
<language type="kw">cornisk</language>
|
||||
<language type="kwk">kwakʼwala</language>
|
||||
<language type="kxv">kuvi</language>
|
||||
<language type="ky">kirgisisk</language>
|
||||
<language type="la">latin</language>
|
||||
<language type="lad">ladino</language>
|
||||
@ -308,8 +310,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">lezghian</language>
|
||||
<language type="lg">ganda</language>
|
||||
<language type="li">limburgsk</language>
|
||||
<language type="lij">ligurisk</language>
|
||||
<language type="lil">lillooet</language>
|
||||
<language type="lkt">lakota</language>
|
||||
<language type="lmo">lombardisk</language>
|
||||
<language type="ln">lingala</language>
|
||||
<language type="lo">lao</language>
|
||||
<language type="lol">mongo</language>
|
||||
@ -322,7 +326,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lua">luba-Lulua</language>
|
||||
<language type="lui">luiseno</language>
|
||||
<language type="lun">lunda</language>
|
||||
<language type="luo">luo</language>
|
||||
<language type="lus">lushai</language>
|
||||
<language type="luy">luyana</language>
|
||||
<language type="lv">lettisk</language>
|
||||
@ -355,7 +358,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="moe">innu-aimun</language>
|
||||
<language type="moh">mohawk</language>
|
||||
<language type="mos">mossi</language>
|
||||
<language type="mr">marathisk</language>
|
||||
<language type="mr">marathi</language>
|
||||
<language type="ms">malajisk</language>
|
||||
<language type="mt">maltesisk</language>
|
||||
<language type="mua">mundang</language>
|
||||
@ -411,7 +414,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="os">ossetisk</language>
|
||||
<language type="osa">osage</language>
|
||||
<language type="ota">osmannisk tyrkisk</language>
|
||||
<language type="pa">punjabisk</language>
|
||||
<language type="pa">punjabi</language>
|
||||
<language type="pag">pangasinan</language>
|
||||
<language type="pal">pahlavi</language>
|
||||
<language type="pam">pampanga</language>
|
||||
@ -505,6 +508,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">comorisk</language>
|
||||
<language type="syc">klassisk syrisk</language>
|
||||
<language type="syr">syrisk</language>
|
||||
<language type="szl">schlesisk</language>
|
||||
<language type="ta">tamil</language>
|
||||
<language type="tce">sydtutchone</language>
|
||||
<language type="te">telugu</language>
|
||||
@ -552,9 +556,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="und">ukendt sprog</language>
|
||||
<language type="ur">urdu</language>
|
||||
<language type="uz">usbekisk</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">venda</language>
|
||||
<language type="vec">venetiansk</language>
|
||||
<language type="vi">vietnamesisk</language>
|
||||
<language type="vmw">makhuwa</language>
|
||||
<language type="vo">volapyk</language>
|
||||
<language type="vot">votisk</language>
|
||||
<language type="vun">vunjo</language>
|
||||
@ -568,6 +573,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">wu-kinesisk</language>
|
||||
<language type="xal">kalmyk</language>
|
||||
<language type="xh">xhosa</language>
|
||||
<language type="xnr">kangri</language>
|
||||
<language type="xog">soga</language>
|
||||
<language type="yao">yao</language>
|
||||
<language type="yap">yapese</language>
|
||||
@ -2654,6 +2660,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>{0}-tid</regionFormat>
|
||||
<regionFormat type="daylight">{0}-sommertid</regionFormat>
|
||||
<regionFormat type="standard">{0}-normaltid</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Koordineret universaltid</standard>
|
||||
@ -2692,9 +2701,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Atlantic/Cape_Verde">
|
||||
<exemplarCity>Kap Verde</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Curacao">
|
||||
<exemplarCity>Curaçao</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Christmas">
|
||||
<exemplarCity>Juleøen</exemplarCity>
|
||||
</zone>
|
||||
@ -2771,9 +2777,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Ulan Bator</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Tsjojbalsan</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Maldives">
|
||||
<exemplarCity>Maldiverne</exemplarCity>
|
||||
</zone>
|
||||
@ -2798,12 +2801,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Lisbon">
|
||||
<exemplarCity>Lissabon</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Reunion">
|
||||
<exemplarCity>Réunion</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Bucharest">
|
||||
<exemplarCity>Bukarest</exemplarCity>
|
||||
</zone>
|
||||
@ -2831,9 +2828,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Kamchatka">
|
||||
<exemplarCity>Kamtjatka</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Africa/Sao_Tome">
|
||||
<exemplarCity>São Tomé</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Damascus">
|
||||
<exemplarCity>Damaskus</exemplarCity>
|
||||
</zone>
|
||||
@ -2846,9 +2840,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kiev</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Tashkent">
|
||||
<exemplarCity>Tasjkent</exemplarCity>
|
||||
</zone>
|
||||
@ -3108,13 +3099,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Kinesisk sommertid</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Tsjojbalsan-tid</generic>
|
||||
<standard>Tsjojbalsan-normaltid</standard>
|
||||
<daylight>Tsjojbalsan-sommertid</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Juleøen-normaltid</standard>
|
||||
@ -3380,6 +3364,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Petropavlovsk-Kamchatski sommertid</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Kasakhstansk tid</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Østkasakhstansk tid</standard>
|
||||
@ -3932,8 +3921,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 bio'.' ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -5510,9 +5497,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<compoundUnitPattern1 count="other" gender="common">kubik{0}</compoundUnitPattern1>
|
||||
<compoundUnitPattern1 count="other" gender="common" case="genitive">kubik{0}s</compoundUnitPattern1>
|
||||
</compoundUnit>
|
||||
<compoundUnit type="times">
|
||||
<compoundUnitPattern>{0} gange {1}</compoundUnitPattern>
|
||||
</compoundUnit>
|
||||
<unit type="acceleration-g-force">
|
||||
<gender>common</gender>
|
||||
<unitPattern count="one">{0} G-kraft</unitPattern>
|
||||
@ -5633,9 +5617,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} karats</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<gender>neuter</gender>
|
||||
<displayName>milligram pr. deciliter</displayName>
|
||||
<unitPattern count="one">{0} milligram pr. deciliter</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} milligram pr. deciliters</unitPattern>
|
||||
<unitPattern count="other">{0} milligram pr. deciliter</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} milligram pr. deciliters</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-millimole-per-liter">
|
||||
<gender>neuter</gender>
|
||||
@ -5945,7 +5932,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<gender>common</gender>
|
||||
<displayName>kilokalorier</displayName>
|
||||
<unitPattern count="one">{0} kilokalorie</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} kilokalories</unitPattern>
|
||||
<unitPattern count="other">{0} kilokalorier</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} kilokaloriers</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-calorie">
|
||||
<gender>common</gender>
|
||||
@ -6007,33 +5996,33 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<gender>common</gender>
|
||||
<displayName>gigahertz</displayName>
|
||||
<unitPattern count="one">{0} gigahertz</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} gigahertz'</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} gigahertz’</unitPattern>
|
||||
<unitPattern count="other">{0} gigahertz</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} gigahertz'</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} gigahertz’</unitPattern>
|
||||
</unit>
|
||||
<unit type="frequency-megahertz">
|
||||
<gender>common</gender>
|
||||
<displayName>megahertz</displayName>
|
||||
<unitPattern count="one">{0} megahertz</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} megahertz'</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} megahertz’</unitPattern>
|
||||
<unitPattern count="other">{0} megahertz</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} megahertz'</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} megahertz’</unitPattern>
|
||||
</unit>
|
||||
<unit type="frequency-kilohertz">
|
||||
<gender>common</gender>
|
||||
<displayName>kilohertz</displayName>
|
||||
<unitPattern count="one">{0} kilohertz</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} kilohertz'</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} kilohertz’</unitPattern>
|
||||
<unitPattern count="other">{0} kilohertz</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} kilohertz'</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} kilohertz’</unitPattern>
|
||||
</unit>
|
||||
<unit type="frequency-hertz">
|
||||
<gender>common</gender>
|
||||
<displayName>hertz</displayName>
|
||||
<unitPattern count="one">{0} hertz</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} hertz'</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} hertz’</unitPattern>
|
||||
<unitPattern count="other">{0} hertz</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} hertz'</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} hertz’</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-em">
|
||||
<gender>common</gender>
|
||||
@ -6159,7 +6148,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="length-mile">
|
||||
<gender>common</gender>
|
||||
<unitPattern count="one">{0} engelsk mil</unitPattern>
|
||||
<unitPattern count="one">{0} mile</unitPattern>
|
||||
<unitPattern count="other">{0} miles</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-yard">
|
||||
@ -6208,9 +6197,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} svenske mils</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<gender>neuter</gender>
|
||||
<displayName>punkt</displayName>
|
||||
<unitPattern count="one">{0} punkt</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} punkts</unitPattern>
|
||||
<unitPattern count="other">{0} punkt</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} punkts</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-solar-radius">
|
||||
<gender>common</gender>
|
||||
@ -6384,9 +6376,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} hestekræfter</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<gender>common</gender>
|
||||
<displayName>millimeter kviksølv</displayName>
|
||||
<unitPattern count="one">{0} millimeter kviksølv</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} millimeter kviksølvs</unitPattern>
|
||||
<unitPattern count="other">{0} millimeter kviksølv</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} millimeter kviksølvs</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-pound-force-per-square-inch">
|
||||
<displayName>pounds pr. kvadrattomme</displayName>
|
||||
@ -6616,7 +6611,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} metrisk pint</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} metrisk pints</unitPattern>
|
||||
<unitPattern count="other">{0} metriske pints</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} metriske pints'</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} metriske pints’</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-cup-metric">
|
||||
<gender>common</gender>
|
||||
@ -6730,6 +6725,23 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} britisk quart</unitPattern>
|
||||
<unitPattern count="other">{0} britiske quarts</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<gender>common</gender>
|
||||
<displayName>milliardtedele</displayName>
|
||||
<unitPattern count="one">{0} milliardtedel</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} milliardtedels</unitPattern>
|
||||
<unitPattern count="other">{0} milliardtedele</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} milliardtedeles</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<gender>common</gender>
|
||||
<displayName>nætter</displayName>
|
||||
<unitPattern count="one">{0} nat</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} nats</unitPattern>
|
||||
<unitPattern count="other">{0} nætter</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} nætters</unitPattern>
|
||||
<perUnitPattern>{0} pr. nat</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>kompasretning</displayName>
|
||||
<coordinateUnitPattern type="east">{0} øst</coordinateUnitPattern>
|
||||
@ -6739,9 +6751,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</coordinateUnit>
|
||||
</unitLength>
|
||||
<unitLength type="short">
|
||||
<compoundUnit type="times">
|
||||
<compoundUnitPattern>{0} ⋅ {1}</compoundUnitPattern>
|
||||
</compoundUnit>
|
||||
<unit type="acceleration-g-force">
|
||||
<displayName>G-kraft</displayName>
|
||||
</unit>
|
||||
@ -7138,6 +7147,15 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} britisk qt</unitPattern>
|
||||
<unitPattern count="other">{0} britiske qt</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>dele/milliard</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nætter</displayName>
|
||||
<unitPattern count="one">{0} nat</unitPattern>
|
||||
<unitPattern count="other">{0} nætter</unitPattern>
|
||||
<perUnitPattern>{0}/nat</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>retning</displayName>
|
||||
<coordinateUnitPattern type="east">{0}Ø</coordinateUnitPattern>
|
||||
@ -7145,9 +7163,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</coordinateUnit>
|
||||
</unitLength>
|
||||
<unitLength type="narrow">
|
||||
<compoundUnit type="times">
|
||||
<compoundUnitPattern>{0}⋅{1}</compoundUnitPattern>
|
||||
</compoundUnit>
|
||||
<unit type="acceleration-g-force">
|
||||
<unitPattern count="one">{0}G</unitPattern>
|
||||
<unitPattern count="other">{0}G</unitPattern>
|
||||
@ -7266,7 +7281,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="force-kilowatt-hour-per-100-kilometer">
|
||||
<displayName>kWh/100 km</displayName>
|
||||
<unitPattern count="one">{0}kWh/100km</unitPattern>
|
||||
<unitPattern count="other">{0}kWh/100km</unitPattern>
|
||||
<unitPattern count="other">{0} kWh/100 km</unitPattern>
|
||||
</unit>
|
||||
<unit type="graphics-dot">
|
||||
<displayName>prik</displayName>
|
||||
@ -7336,8 +7351,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0}hk</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-inch-ofhg">
|
||||
<unitPattern count="one">{0}" Hg</unitPattern>
|
||||
<unitPattern count="other">{0}" Hg</unitPattern>
|
||||
<unitPattern count="one">{0}″ Hg</unitPattern>
|
||||
<unitPattern count="other">{0}″ Hg</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millibar">
|
||||
<unitPattern count="one">{0} mb</unitPattern>
|
||||
@ -7398,6 +7413,12 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} br. qt.</unitPattern>
|
||||
<unitPattern count="other">{0} br. qt.</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nætter</displayName>
|
||||
<unitPattern count="one">{0}nat</unitPattern>
|
||||
<unitPattern count="other">{0}nætter</unitPattern>
|
||||
<perUnitPattern>{0}/nat</perUnitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
<durationUnit type="hm">
|
||||
<durationUnitPattern>h.mm</durationUnitPattern>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -228,7 +228,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</unit>
|
||||
<unit type="volume-jigger">
|
||||
<displayName>Schuss</displayName>
|
||||
<unitPattern count="one">Schuss</unitPattern>
|
||||
<unitPattern count="one">{0} Schuss</unitPattern>
|
||||
<unitPattern count="other">{0} Schuss</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-pinch">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -53,6 +53,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bi">bislamšćina</language>
|
||||
<language type="bin">binišćina</language>
|
||||
<language type="bla">siksikášćina</language>
|
||||
<language type="blo">aniišćina</language>
|
||||
<language type="bm">bambara</language>
|
||||
<language type="bn">bengalšćina</language>
|
||||
<language type="bo">tibetšćina</language>
|
||||
@ -176,6 +177,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="iba">ibanšćina</language>
|
||||
<language type="ibb">ibibiošćina</language>
|
||||
<language type="id">indonešćina</language>
|
||||
<language type="ie">interlinguešćina</language>
|
||||
<language type="ig">igbo</language>
|
||||
<language type="ii">sichuan yi</language>
|
||||
<language type="ik">inupiak</language>
|
||||
@ -231,6 +233,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="kv">komišćina</language>
|
||||
<language type="kw">kornišćina</language>
|
||||
<language type="kwk">kwakʼwalašćina</language>
|
||||
<language type="kxv">kuvišćina</language>
|
||||
<language type="ky">kirgišćina</language>
|
||||
<language type="la">łatyńšćina</language>
|
||||
<language type="lad">ladinšćina</language>
|
||||
@ -239,8 +242,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="lez">lezgianšćina</language>
|
||||
<language type="lg">gandšćina</language>
|
||||
<language type="li">limburšćina</language>
|
||||
<language type="lij">liguriańšćina</language>
|
||||
<language type="lil">lillooetšćina</language>
|
||||
<language type="lkt">lakotšćina</language>
|
||||
<language type="lmo">lombardišćina</language>
|
||||
<language type="ln">lingala</language>
|
||||
<language type="lo">laošćina</language>
|
||||
<language type="lou">Louisiana kreolšćina</language>
|
||||
@ -251,7 +256,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="lu">luba-katanga</language>
|
||||
<language type="lua">luba-luluašćina</language>
|
||||
<language type="lun">lundašćina</language>
|
||||
<language type="luo">luo</language>
|
||||
<language type="lus">mizošćina</language>
|
||||
<language type="luy">luhya</language>
|
||||
<language type="lv">letišćina</language>
|
||||
@ -395,6 +399,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="sw_CD">kongojska swahilišćina</language>
|
||||
<language type="swb">comorianšćina</language>
|
||||
<language type="syr">syriacšćina</language>
|
||||
<language type="szl">šlazyńšćina</language>
|
||||
<language type="ta">tamilšćina</language>
|
||||
<language type="tce">pódpołdnjowa tutchonšćina</language>
|
||||
<language type="te">telugšćina</language>
|
||||
@ -434,9 +439,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="und">njeznata rěc</language>
|
||||
<language type="ur">urdušćina</language>
|
||||
<language type="uz">usbekšćina</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">vendašćina</language>
|
||||
<language type="vec">venetišćina</language>
|
||||
<language type="vi">vietnamšćina</language>
|
||||
<language type="vmw">makhuwašćina</language>
|
||||
<language type="vo">volapük</language>
|
||||
<language type="vun">vunjo</language>
|
||||
<language type="wa">walonšćina</language>
|
||||
@ -447,6 +453,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="wuu">wu chinšćina</language>
|
||||
<language type="xal">kalmykšćina</language>
|
||||
<language type="xh">xhosa</language>
|
||||
<language type="xnr">kangrišćina</language>
|
||||
<language type="xog">soga</language>
|
||||
<language type="yav">yangben</language>
|
||||
<language type="ybb">yembašćina</language>
|
||||
@ -2319,9 +2326,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Atlantic/Cape_Verde">
|
||||
<exemplarCity>Kap Verde</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Curacao">
|
||||
<exemplarCity>Curaçao</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Christmas">
|
||||
<exemplarCity>Gódowne kupy</exemplarCity>
|
||||
</zone>
|
||||
@ -2410,6 +2414,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Asia/Bishkek">
|
||||
<exemplarCity>Biškek</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Enderbury">
|
||||
<exemplarCity>Enderbury</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Comoro">
|
||||
<exemplarCity>Komory</exemplarCity>
|
||||
</zone>
|
||||
@ -2458,15 +2465,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Europe/Lisbon">
|
||||
<exemplarCity>Lissabon</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Qatar">
|
||||
<exemplarCity>Katar</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Indian/Reunion">
|
||||
<exemplarCity>Réunion</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Europe/Bucharest">
|
||||
<exemplarCity>Bukarest</exemplarCity>
|
||||
</zone>
|
||||
@ -2515,9 +2516,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Africa/Mogadishu">
|
||||
<exemplarCity>Mogadišu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Africa/Sao_Tome">
|
||||
<exemplarCity>São Tomé</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Damascus">
|
||||
<exemplarCity>Damaskus</exemplarCity>
|
||||
</zone>
|
||||
@ -2763,13 +2761,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Chinski lěśojski cas</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Choibalsański cas</generic>
|
||||
<standard>Choibalsański standardny cas</standard>
|
||||
<daylight>Choibalsański lěśojski cas</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>cas Gódownych kupow</standard>
|
||||
@ -3023,6 +3014,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Japański lěśojski cas</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>kazachiski cas</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Pódzajtšnokazachski cas</standard>
|
||||
@ -3593,10 +3589,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<pattern type="100000000000000" count="other">000 bil'.' ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="two">{0} {1}</unitPattern>
|
||||
<unitPattern count="few">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6324,6 +6316,28 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="few">{0} britiske běrtyle</unitPattern>
|
||||
<unitPattern count="other">{0} britiskich běrtylow</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>spěšnosć swětła</displayName>
|
||||
<unitPattern count="one">{0} spěšnosć swětła</unitPattern>
|
||||
<unitPattern count="two">{0} spěšnosći swětła</unitPattern>
|
||||
<unitPattern count="few">{0} spěšnosći swětła</unitPattern>
|
||||
<unitPattern count="other">{0} spěšnosćow swětła</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>miliardnina</displayName>
|
||||
<unitPattern count="one">{0} miliardnina</unitPattern>
|
||||
<unitPattern count="two">{0} miliardninje</unitPattern>
|
||||
<unitPattern count="few">{0} miliardniny</unitPattern>
|
||||
<unitPattern count="other">{0} miliardninow</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>pśenocowanja</displayName>
|
||||
<unitPattern count="one">{0} pśenocowanje</unitPattern>
|
||||
<unitPattern count="two">{0} pśenocowani</unitPattern>
|
||||
<unitPattern count="few">{0} pśenocowanja</unitPattern>
|
||||
<unitPattern count="other">{0} pśenocowanjow</unitPattern>
|
||||
<perUnitPattern>{0} na pśenocowanje</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>njebjaski směr</displayName>
|
||||
<coordinateUnitPattern type="east">{0} pódzajtšo</coordinateUnitPattern>
|
||||
@ -6740,6 +6754,28 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="few">{0} šćipki</unitPattern>
|
||||
<unitPattern count="other">{0} šćipkow</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>spěšnosć sw.</displayName>
|
||||
<unitPattern count="one">{0} spěšnosć sw.</unitPattern>
|
||||
<unitPattern count="two">{0} spěšnosći sw.</unitPattern>
|
||||
<unitPattern count="few">{0} spěšnosći sw.</unitPattern>
|
||||
<unitPattern count="other">{0} spěšnosćow sw.</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>nano</displayName>
|
||||
<unitPattern count="one">{0} nano</unitPattern>
|
||||
<unitPattern count="two">{0} nano</unitPattern>
|
||||
<unitPattern count="few">{0} nano</unitPattern>
|
||||
<unitPattern count="other">{0} nano</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nocy</displayName>
|
||||
<unitPattern count="one">{0} noc</unitPattern>
|
||||
<unitPattern count="two">{0} nocy</unitPattern>
|
||||
<unitPattern count="few">{0} nocy</unitPattern>
|
||||
<unitPattern count="other">{0} nocow</unitPattern>
|
||||
<perUnitPattern>{0} na noc</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>směr</displayName>
|
||||
<coordinateUnitPattern type="east">{0} pz</coordinateUnitPattern>
|
||||
@ -6810,6 +6846,20 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="few">{0} šć</unitPattern>
|
||||
<unitPattern count="other">{0} šć</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>c</displayName>
|
||||
<unitPattern count="one">{0} c</unitPattern>
|
||||
<unitPattern count="two">{0} c</unitPattern>
|
||||
<unitPattern count="few">{0} c</unitPattern>
|
||||
<unitPattern count="other">{0} c</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>n</displayName>
|
||||
<unitPattern count="one">{0} n</unitPattern>
|
||||
<unitPattern count="two">{0} n</unitPattern>
|
||||
<unitPattern count="few">{0} n</unitPattern>
|
||||
<unitPattern count="other">{0} n</unitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
<listPatterns>
|
||||
|
||||
@ -62,10 +62,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="dyo" draft="unconfirmed">dzola-fonyigbe</language>
|
||||
<language type="dz">dzongkhagbe</language>
|
||||
<language type="ebu">embugbe</language>
|
||||
<language type="ee">Eʋegbe</language>
|
||||
<language type="ee">eʋegbe</language>
|
||||
<language type="efi">efigbe</language>
|
||||
<language type="el">grisigbe</language>
|
||||
<language type="en">Yevugbe</language>
|
||||
<language type="en">iŋlisigbe</language>
|
||||
<language type="en_AU">Yevugbe (Australia)</language>
|
||||
<language type="en_CA">Yevugbe (Canada)</language>
|
||||
<language type="en_GB">Yevugbe (Britain)</language>
|
||||
@ -334,7 +334,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<script type="Laoo">laogbeŋɔŋlɔ</script>
|
||||
<script type="Latf" draft="unconfirmed">fraktur latin gbeŋɔŋlɔ</script>
|
||||
<script type="Latg" draft="unconfirmed">gaelia latin gbeŋɔŋlɔ</script>
|
||||
<script type="Latn">Latingbeŋɔŋlɔ</script>
|
||||
<script type="Latn">latingbeŋɔŋlɔ</script>
|
||||
<script type="Lepc" draft="unconfirmed">leptsa gbeŋɔŋlɔ</script>
|
||||
<script type="Limb" draft="unconfirmed">limbu gbeŋɔŋlɔ</script>
|
||||
<script type="Lina" draft="unconfirmed">linia a gbeŋɔŋlɔ</script>
|
||||
@ -795,14 +795,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<type key="numbers" type="vaii" draft="unconfirmed">vaii digitwo</type>
|
||||
</types>
|
||||
<measurementSystemNames>
|
||||
<measurementSystemName type="metric">metric</measurementSystemName>
|
||||
<measurementSystemName type="metric">dzidzeti</measurementSystemName>
|
||||
<measurementSystemName type="UK">uk</measurementSystemName>
|
||||
<measurementSystemName type="US">us</measurementSystemName>
|
||||
</measurementSystemNames>
|
||||
<codePatterns>
|
||||
<codePattern type="language">gbegbɔgblɔ {0}</codePattern>
|
||||
<codePattern type="script">gbeŋɔŋlɔ {0}</codePattern>
|
||||
<codePattern type="territory">memama {0}</codePattern>
|
||||
<codePattern type="territory">nutome {0}</codePattern>
|
||||
</codePatterns>
|
||||
</localeDisplayNames>
|
||||
<characters>
|
||||
@ -1153,7 +1153,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<month type="2">dzodze</month>
|
||||
<month type="3">tedoxe</month>
|
||||
<month type="4">afɔfĩe</month>
|
||||
<month type="5">dama</month>
|
||||
<month type="5">dame</month>
|
||||
<month type="6">masa</month>
|
||||
<month type="7">siamlɔm</month>
|
||||
<month type="8">deasiamime</month>
|
||||
@ -1880,9 +1880,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
<gmtFormat>{0} GMT</gmtFormat>
|
||||
<regionFormat>{0} gaƒoƒo me</regionFormat>
|
||||
<regionFormat type="daylight">{0} kele gaƒoƒo me</regionFormat>
|
||||
<regionFormat type="standard">{0} nutome gaƒoƒo me</regionFormat>
|
||||
<regionFormat>{0} game</regionFormat>
|
||||
<regionFormat type="daylight">{0} ŋkekemeɣeyiɣi</regionFormat>
|
||||
<regionFormat type="standard">{0} game ɖoɖoea</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Xexeme gaƒoƒoɖoanyi me</standard>
|
||||
@ -1922,9 +1925,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Europe/Kiev">
|
||||
<exemplarCity>Kiev</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<metazone type="Acre">
|
||||
<long>
|
||||
<generic draft="unconfirmed">Eker gaƒoƒome</generic>
|
||||
@ -1963,7 +1963,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</metazone>
|
||||
<metazone type="Africa_Western">
|
||||
<long>
|
||||
<generic>West Africa gaƒoƒo me</generic>
|
||||
<generic>West Africa game</generic>
|
||||
<standard>West Africa nutome gaƒoƒo me</standard>
|
||||
<daylight>West Africa dzomeŋɔli gaƒoƒo me</daylight>
|
||||
</long>
|
||||
@ -2189,13 +2189,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>China kele gaƒoƒo me</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Choibalsan gaƒoƒo me</generic>
|
||||
<standard>Choibalsan nutome gaƒoƒo me</standard>
|
||||
<daylight>Choibalsan dzomeŋɔli gaƒoƒo me</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Christmas Island gaƒoƒo me</standard>
|
||||
|
||||
@ -70,6 +70,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">Μπίνι</language>
|
||||
<language type="bkm">Κομ</language>
|
||||
<language type="bla">Σικσίκα</language>
|
||||
<language type="blo">Ανίι</language>
|
||||
<language type="bm">Μπαμπάρα</language>
|
||||
<language type="bn">Βεγγαλικά</language>
|
||||
<language type="bo">Θιβετιανά</language>
|
||||
@ -296,6 +297,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">Κόμι</language>
|
||||
<language type="kw">Κορνουαλικά</language>
|
||||
<language type="kwk">Κουακουάλα</language>
|
||||
<language type="kxv">Κούβι</language>
|
||||
<language type="ky">Κιργιζικά</language>
|
||||
<language type="la">Λατινικά</language>
|
||||
<language type="lad">Λαδίνο</language>
|
||||
@ -306,8 +308,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">Λεζγκικά</language>
|
||||
<language type="lg">Γκάντα</language>
|
||||
<language type="li">Λιμβουργιανά</language>
|
||||
<language type="lij">Λιγουριανά</language>
|
||||
<language type="lil">Λιλουέτ</language>
|
||||
<language type="lkt">Λακότα</language>
|
||||
<language type="lmo">Λομβαρδικά</language>
|
||||
<language type="ln">Λινγκάλα</language>
|
||||
<language type="lo">Λαοτινά</language>
|
||||
<language type="lol">Μόνγκο</language>
|
||||
@ -501,6 +505,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">Κομοριανά</language>
|
||||
<language type="syc">Κλασικά Συριακά</language>
|
||||
<language type="syr">Συριακά</language>
|
||||
<language type="szl">Σιλεσικά</language>
|
||||
<language type="ta">Ταμιλικά</language>
|
||||
<language type="tce">Νότια Τουτσόνε</language>
|
||||
<language type="te">Τελούγκου</language>
|
||||
@ -550,7 +555,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="uz">Ουζμπεκικά</language>
|
||||
<language type="vai">Βάι</language>
|
||||
<language type="ve">Βέντα</language>
|
||||
<language type="vec">Βενετικά</language>
|
||||
<language type="vi">Βιετναμικά</language>
|
||||
<language type="vmw">Μακούα</language>
|
||||
<language type="vo">Βολαπιούκ</language>
|
||||
<language type="vot">Βότικ</language>
|
||||
<language type="vun">Βούντζο</language>
|
||||
@ -564,6 +571,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">Κινεζικά Γου</language>
|
||||
<language type="xal">Καλμίκ</language>
|
||||
<language type="xh">Κόσα</language>
|
||||
<language type="xnr">Κάνγκρι</language>
|
||||
<language type="xog">Σόγκα</language>
|
||||
<language type="yao">Γιάο</language>
|
||||
<language type="yap">Γιαπίζ</language>
|
||||
@ -1243,7 +1251,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<parseLenient sample=":">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -2576,6 +2584,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat type="daylight">Θερινή ώρα ({0})</regionFormat>
|
||||
<regionFormat type="standard">Χειμερινή ώρα ({0})</regionFormat>
|
||||
<fallbackFormat>[{1} ({0})]</fallbackFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Χονολουλού</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Συντονισμένη Παγκόσμια Ώρα</standard>
|
||||
@ -3313,9 +3324,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Asia/Ulaanbaatar">
|
||||
<exemplarCity>Ουλάν Μπατόρ</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Choibalsan">
|
||||
<exemplarCity>Τσοϊμπαλσάν</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Macau">
|
||||
<exemplarCity>Μακάο</exemplarCity>
|
||||
</zone>
|
||||
@ -3712,9 +3720,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>Νόμε</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Χονολουλού</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>Άνκορατζ</exemplarCity>
|
||||
</zone>
|
||||
@ -4066,13 +4071,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>Θερινή ώρα Κίνας</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Ώρα Τσοϊμπαλσάν</generic>
|
||||
<standard>Χειμερινή ώρα Τσοϊμπαλσάν</standard>
|
||||
<daylight>Θερινή ώρα Τσοϊμπαλσάν</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Ώρα Νήσου Χριστουγέννων</standard>
|
||||
@ -4338,6 +4336,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight draft="contributed">Θερινή ώρα Πετροπαβλόβσκ-Καμτσάτσκι</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Ώρα Καζακστάν</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>Ώρα Ανατολικού Καζακστάν</standard>
|
||||
@ -4874,8 +4877,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 τρισ'.' ¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -6605,9 +6606,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} καρατίων</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<gender>neuter</gender>
|
||||
<displayName>χιλιοστόγραμμα ανά δεκατόλιτρο</displayName>
|
||||
<unitPattern count="one">{0} χιλιοστόγραμμο ανά δεκατόλιτρο</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} χιλιοστόγραμμο ανά δεκατόλιτρο</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} χιλιοστόγραμμου ανά δεκατόλιτρο</unitPattern>
|
||||
<unitPattern count="other">{0} χιλιοστόγραμμα ανά δεκατόλιτρο</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} χιλιοστόγραμμα ανά δεκατόλιτρο</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} χιλιοστόγραμμων ανά δεκατόλιτρο</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-millimole-per-liter">
|
||||
<gender>neuter</gender>
|
||||
@ -6789,10 +6795,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} kilobit</unitPattern>
|
||||
</unit>
|
||||
<unit type="digital-byte">
|
||||
<gender draft="contributed">neuter</gender>
|
||||
<gender>neuter</gender>
|
||||
</unit>
|
||||
<unit type="digital-bit">
|
||||
<gender draft="contributed">neuter</gender>
|
||||
<gender>neuter</gender>
|
||||
</unit>
|
||||
<unit type="duration-century">
|
||||
<gender>masculine</gender>
|
||||
@ -6815,7 +6821,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} δεκαετιών</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-year">
|
||||
<gender draft="contributed">neuter</gender>
|
||||
<gender>neuter</gender>
|
||||
<unitPattern count="one">{0} έτος</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} έτος</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} έτους</unitPattern>
|
||||
@ -6835,7 +6841,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} τέταρτων</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-month">
|
||||
<gender draft="contributed">masculine</gender>
|
||||
<gender>masculine</gender>
|
||||
<unitPattern count="one">{0} μήνας</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} μήνα</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} μήνα</unitPattern>
|
||||
@ -6874,7 +6880,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} ημερών</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-hour">
|
||||
<gender draft="contributed">feminine</gender>
|
||||
<gender>feminine</gender>
|
||||
<unitPattern count="one">{0} ώρα</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} ώρα</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} ώρας</unitPattern>
|
||||
@ -6976,9 +6982,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} βολτ</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-kilocalorie">
|
||||
<gender>feminine</gender>
|
||||
<displayName>χιλιοθερμίδες</displayName>
|
||||
<unitPattern count="one">{0} χιλιοθερμίδα</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} χιλιοθερμίδα</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} χιλιοθερμίδας</unitPattern>
|
||||
<unitPattern count="other">{0} χιλιοθερμίδες</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} χιλιοθερμίδες</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} χιλιοθερμίδων</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-calorie">
|
||||
<gender>feminine</gender>
|
||||
@ -7300,8 +7311,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other" case="genitive">{0} σκανδιναβικών μιλίων</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<gender>feminine</gender>
|
||||
<unitPattern count="one">{0} στιγμή</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} στιγμή</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} στιγμής</unitPattern>
|
||||
<unitPattern count="other">{0} στιγμές</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} στιγμές</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} στιγμών</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-solar-radius">
|
||||
<displayName>ακτίνες του Ήλιου</displayName>
|
||||
@ -7490,9 +7506,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} ίπποι</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<gender>neuter</gender>
|
||||
<displayName>χιλιοστόμετρα στήλης υδραργύρου</displayName>
|
||||
<unitPattern count="one">{0} χιλιοστόμετρο στήλης υδραργύρου</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} χιλιοστόμετρο στήλης υδραργύρου</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} χιλιοστομέτρου στήλης υδραργύρου</unitPattern>
|
||||
<unitPattern count="other">{0} χιλιοστόμετρα στήλης υδραργύρου</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} χιλιοστόμετρα στήλης υδραργύρου</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} χιλιοστόμετρων στήλης υδραργύρου</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-pound-force-per-square-inch">
|
||||
<displayName>λίβρες ανά τετραγωνική ίντσα</displayName>
|
||||
@ -7598,9 +7619,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} κόμβοι</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-beaufort">
|
||||
<gender>neuter</gender>
|
||||
<displayName>μποφόρ</displayName>
|
||||
<unitPattern count="one">{0} μποφόρ</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} μποφόρ</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} μποφόρ</unitPattern>
|
||||
<unitPattern count="other">{0} μποφόρ</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} μποφόρ</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} μποφόρ</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-generic">
|
||||
<gender>masculine</gender>
|
||||
@ -7878,6 +7904,37 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} αγγλοσαξονικό τέταρτο του γαλονιού</unitPattern>
|
||||
<unitPattern count="other">{0} αγγλοσαξονικά τέταρτα του γαλονιού</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<gender>neuter</gender>
|
||||
<displayName>φως</displayName>
|
||||
<unitPattern count="one">{0} φως</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} φως</unitPattern>
|
||||
<unitPattern count="one" case="genitive">φωτός</unitPattern>
|
||||
<unitPattern count="other">{0} φως</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} φως</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} φωτός</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<gender>neuter</gender>
|
||||
<displayName>μέρη στο δισεκατομμύριο</displayName>
|
||||
<unitPattern count="one">{0} μέρος στο δισεκατομμύριο</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} μέρος στο δισεκατομμύριο</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} μέρους στο δισεκατομμύριο</unitPattern>
|
||||
<unitPattern count="other">{0} μέρη στο δισεκατομμύριο</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} μέρη στο δισεκατομμύριο</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} μερών στο δισεκατομμύριο</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<gender>feminine</gender>
|
||||
<displayName>νύχτες</displayName>
|
||||
<unitPattern count="one">{0} νύχτα</unitPattern>
|
||||
<unitPattern count="one" case="accusative">{0} νύχτα</unitPattern>
|
||||
<unitPattern count="one" case="genitive">{0} νύχτας</unitPattern>
|
||||
<unitPattern count="other">{0} νύχτες</unitPattern>
|
||||
<unitPattern count="other" case="accusative">{0} νύχτες</unitPattern>
|
||||
<unitPattern count="other" case="genitive">{0} νυχτών</unitPattern>
|
||||
<perUnitPattern>{0}/νύχτα</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>σημεία ορίζοντα</displayName>
|
||||
<coordinateUnitPattern type="east">{0} ανατολικά</coordinateUnitPattern>
|
||||
@ -8606,6 +8663,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} αγγλ. τέτ. γαλ.</unitPattern>
|
||||
<unitPattern count="other">{0} αγγλ. τέτ. γαλ.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>φως</displayName>
|
||||
<unitPattern count="one">{0} φως</unitPattern>
|
||||
<unitPattern count="other">{0} φως</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>μέρη/δισεκατομμύριο</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>νύχτ.</displayName>
|
||||
<unitPattern count="one">{0} νύχτ.</unitPattern>
|
||||
<unitPattern count="other">{0} νύχτ.</unitPattern>
|
||||
<perUnitPattern>{0}/νύχτ.</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>σημείο</displayName>
|
||||
<coordinateUnitPattern type="east">{0} Α</coordinateUnitPattern>
|
||||
@ -8696,7 +8767,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>°</displayName>
|
||||
</unit>
|
||||
<unit type="angle-arc-minute">
|
||||
<displayName draft="contributed">′</displayName>
|
||||
<displayName>′</displayName>
|
||||
<unitPattern count="one">{0}′</unitPattern>
|
||||
<unitPattern count="other">{0}′</unitPattern>
|
||||
</unit>
|
||||
@ -8755,7 +8826,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>mpg</displayName>
|
||||
</unit>
|
||||
<unit type="digital-petabyte">
|
||||
<displayName draft="contributed">PB</displayName>
|
||||
<displayName>PB</displayName>
|
||||
</unit>
|
||||
<unit type="duration-year">
|
||||
<displayName>έτ.</displayName>
|
||||
@ -8898,7 +8969,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>γρ.</displayName>
|
||||
</unit>
|
||||
<unit type="mass-ton">
|
||||
<displayName draft="contributed">τ. ΗΠΑ</displayName>
|
||||
<displayName>τ. ΗΠΑ</displayName>
|
||||
</unit>
|
||||
<unit type="mass-pound">
|
||||
<displayName>λβ</displayName>
|
||||
@ -8907,16 +8978,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>oz t</displayName>
|
||||
</unit>
|
||||
<unit type="mass-carat">
|
||||
<displayName draft="contributed">κρτ</displayName>
|
||||
<displayName>κρτ</displayName>
|
||||
</unit>
|
||||
<unit type="mass-dalton">
|
||||
<displayName draft="contributed">Da</displayName>
|
||||
<displayName>Da</displayName>
|
||||
</unit>
|
||||
<unit type="mass-earth-mass">
|
||||
<displayName draft="contributed">M⊕</displayName>
|
||||
<displayName>M⊕</displayName>
|
||||
</unit>
|
||||
<unit type="mass-solar-mass">
|
||||
<displayName draft="contributed">M☉</displayName>
|
||||
<displayName>M☉</displayName>
|
||||
</unit>
|
||||
<unit type="power-gigawatt">
|
||||
<displayName>GW</displayName>
|
||||
@ -8965,7 +9036,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>°F</displayName>
|
||||
</unit>
|
||||
<unit type="volume-cubic-yard">
|
||||
<displayName draft="contributed">yd³</displayName>
|
||||
<displayName>yd³</displayName>
|
||||
</unit>
|
||||
<unit type="volume-liter">
|
||||
<displayName>λίτρο</displayName>
|
||||
@ -8983,24 +9054,35 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} μ. κύπ.</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-acre-foot">
|
||||
<displayName draft="contributed">ακρ πδ</displayName>
|
||||
<displayName>ακρ πδ</displayName>
|
||||
</unit>
|
||||
<unit type="volume-quart">
|
||||
<displayName draft="contributed">τέτ. γαλ.</displayName>
|
||||
<displayName>τέτ. γαλ.</displayName>
|
||||
</unit>
|
||||
<unit type="volume-pint">
|
||||
<displayName draft="contributed">πντ</displayName>
|
||||
<displayName>πντ</displayName>
|
||||
</unit>
|
||||
<unit type="volume-barrel">
|
||||
<displayName draft="contributed">βρλ</displayName>
|
||||
<displayName>βρλ</displayName>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon-imperial">
|
||||
<displayName draft="contributed">αγγλ. κ.φρ.</displayName>
|
||||
<unitPattern count="one" draft="contributed">{0} αγγλ. κ.φρ.</unitPattern>
|
||||
<unitPattern count="other" draft="contributed">{0} αγγλ. κ.φρ.</unitPattern>
|
||||
<displayName>αγγλ. κ.φρ.</displayName>
|
||||
<unitPattern count="one">{0} αγγλ. κ.φρ.</unitPattern>
|
||||
<unitPattern count="other">{0} αγγλ. κ.φρ.</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dram">
|
||||
<displayName draft="contributed">δρ. όγκου</displayName>
|
||||
<displayName>δρ. όγκου</displayName>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>φώς</displayName>
|
||||
<unitPattern count="one">{0} φως</unitPattern>
|
||||
<unitPattern count="other">{0} φως</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>νύχτ.</displayName>
|
||||
<unitPattern count="one">{0} νύχτ.</unitPattern>
|
||||
<unitPattern count="other">{0} νύχτ.</unitPattern>
|
||||
<perUnitPattern>{0}/νύχτ.</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>σημεία</displayName>
|
||||
|
||||
@ -239,7 +239,6 @@ annotations.
|
||||
<language type="gmh">Middle High German</language>
|
||||
<language type="gn">Guarani</language>
|
||||
<language type="goh">Old High German</language>
|
||||
<language type="gom">Goan Konkani</language>
|
||||
<language type="gon">Gondi</language>
|
||||
<language type="gor">Gorontalo</language>
|
||||
<language type="got">Gothic</language>
|
||||
@ -427,6 +426,7 @@ annotations.
|
||||
<language type="mua">Mundang</language>
|
||||
<language type="mul">Multiple languages</language>
|
||||
<language type="mus">Muscogee</language>
|
||||
<language type="mus" alt="official">Mvskoke</language>
|
||||
<language type="mwl">Mirandese</language>
|
||||
<language type="mwr">Marwari</language>
|
||||
<language type="mwv">Mentawai</language>
|
||||
@ -755,6 +755,7 @@ annotations.
|
||||
<script type="Elba">Elbasan</script>
|
||||
<script type="Elym">Elymaic</script>
|
||||
<script type="Ethi">Ethiopic</script>
|
||||
<script type="Gara">Garay</script>
|
||||
<script type="Geok">Georgian Khutsuri</script>
|
||||
<script type="Geor">Georgian</script>
|
||||
<script type="Glag">Glagolitic</script>
|
||||
@ -764,6 +765,7 @@ annotations.
|
||||
<script type="Gran">Grantha</script>
|
||||
<script type="Grek">Greek</script>
|
||||
<script type="Gujr">Gujarati</script>
|
||||
<script type="Gukh">Gurung Khema</script>
|
||||
<script type="Guru">Gurmukhi</script>
|
||||
<script type="Hanb">Han with Bopomofo</script>
|
||||
<script type="Hang">Hangul</script>
|
||||
@ -797,6 +799,7 @@ annotations.
|
||||
<script type="Knda">Kannada</script>
|
||||
<script type="Kore">Korean</script>
|
||||
<script type="Kpel">Kpelle</script>
|
||||
<script type="Krai">Kirat Rai</script>
|
||||
<script type="Kthi">Kaithi</script>
|
||||
<script type="Lana">Lanna</script>
|
||||
<script type="Laoo">Lao</script>
|
||||
@ -839,6 +842,7 @@ annotations.
|
||||
<script type="Nshu">Nüshu</script>
|
||||
<script type="Ogam">Ogham</script>
|
||||
<script type="Olck">Ol Chiki</script>
|
||||
<script type="Onao">Ol Onal</script>
|
||||
<script type="Orkh">Orkhon</script>
|
||||
<script type="Orya">Odia</script>
|
||||
<script type="Osge">Osage</script>
|
||||
@ -875,6 +879,7 @@ annotations.
|
||||
<script type="Sora">Sora Sompeng</script>
|
||||
<script type="Soyo">Soyombo</script>
|
||||
<script type="Sund">Sundanese</script>
|
||||
<script type="Sunu">Sunuwar</script>
|
||||
<script type="Sylo">Syloti Nagri</script>
|
||||
<script type="Syrc">Syriac</script>
|
||||
<script type="Syre">Estrangelo Syriac</script>
|
||||
@ -896,7 +901,9 @@ annotations.
|
||||
<script type="Tibt">Tibetan</script>
|
||||
<script type="Tirh">Tirhuta</script>
|
||||
<script type="Tnsa">Tangsa</script>
|
||||
<script type="Todr">Todhri</script>
|
||||
<script type="Toto">Toto</script>
|
||||
<script type="Tutg">Tulu-Tigalari</script>
|
||||
<script type="Ugar">Ugaritic</script>
|
||||
<script type="Vaii">Vai</script>
|
||||
<script type="Visp">Visible Speech</script>
|
||||
@ -1535,12 +1542,14 @@ annotations.
|
||||
<type key="numbers" type="ethi">Ethiopic Numerals</type>
|
||||
<type key="numbers" type="finance">Financial Numerals</type>
|
||||
<type key="numbers" type="fullwide">Full-Width Digits</type>
|
||||
<type key="numbers" type="gara">Garay Digits</type>
|
||||
<type key="numbers" type="geor">Georgian Numerals</type>
|
||||
<type key="numbers" type="gong">Gunjala Gondi digits</type>
|
||||
<type key="numbers" type="gonm">Masaram Gondi digits</type>
|
||||
<type key="numbers" type="grek">Greek Numerals</type>
|
||||
<type key="numbers" type="greklow">Greek Lowercase Numerals</type>
|
||||
<type key="numbers" type="gujr">Gujarati Digits</type>
|
||||
<type key="numbers" type="gukh">Gurung Khema Digits</type>
|
||||
<type key="numbers" type="guru">Gurmukhi Digits</type>
|
||||
<type key="numbers" type="hanidays">Chinese Calendar Day-of-Month Numerals</type>
|
||||
<type key="numbers" type="hanidec">Chinese Decimal Numerals</type>
|
||||
@ -1559,6 +1568,7 @@ annotations.
|
||||
<type key="numbers" type="kawi">Kawi Digits</type>
|
||||
<type key="numbers" type="khmr">Khmer Digits</type>
|
||||
<type key="numbers" type="knda">Kannada Digits</type>
|
||||
<type key="numbers" type="krai">Kirat Rai Digits</type>
|
||||
<type key="numbers" type="lana">Tai Tham Hora Digits</type>
|
||||
<type key="numbers" type="lanatham">Tai Tham Tham Digits</type>
|
||||
<type key="numbers" type="laoo">Lao Digits</type>
|
||||
@ -1576,6 +1586,8 @@ annotations.
|
||||
<type key="numbers" type="mroo">Mro Digits</type>
|
||||
<type key="numbers" type="mtei">Meetei Mayek Digits</type>
|
||||
<type key="numbers" type="mymr">Myanmar Digits</type>
|
||||
<type key="numbers" type="mymrepka">Myanmar Eastern Pwo Karen Digits</type>
|
||||
<type key="numbers" type="mymrpao">Myanmar Pao Digits</type>
|
||||
<type key="numbers" type="mymrshan">Myanmar Shan Digits</type>
|
||||
<type key="numbers" type="mymrtlng">Myanmar Tai Laing Digits</type>
|
||||
<type key="numbers" type="nagm">Nag Mundari Digits</type>
|
||||
@ -1583,8 +1595,10 @@ annotations.
|
||||
<type key="numbers" type="newa">Newa Digits</type>
|
||||
<type key="numbers" type="nkoo">N’Ko Digits</type>
|
||||
<type key="numbers" type="olck">Ol Chiki Digits</type>
|
||||
<type key="numbers" type="onao">Ol Onal Digits</type>
|
||||
<type key="numbers" type="orya">Odia Digits</type>
|
||||
<type key="numbers" type="osma">Osmanya Digits</type>
|
||||
<type key="numbers" type="outlined">Outlined Digits</type>
|
||||
<type key="numbers" type="rohg">Hanifi Rohingya digits</type>
|
||||
<type key="numbers" type="roman">Roman Numerals</type>
|
||||
<type key="numbers" type="romanlow">Roman Lowercase Numerals</type>
|
||||
@ -1595,6 +1609,7 @@ annotations.
|
||||
<type key="numbers" type="sinh">Sinhala Lith Digits</type>
|
||||
<type key="numbers" type="sora">Sora Sompeng Digits</type>
|
||||
<type key="numbers" type="sund">Sundanese Digits</type>
|
||||
<type key="numbers" type="sunu">Sunuwar Digits</type>
|
||||
<type key="numbers" type="takr">Takri Digits</type>
|
||||
<type key="numbers" type="talu">New Tai Lue Digits</type>
|
||||
<type key="numbers" type="taml">Traditional Tamil Numerals</type>
|
||||
@ -3897,6 +3912,13 @@ annotations.
|
||||
<regionFormat type="daylight">{0} Daylight Time</regionFormat>
|
||||
<regionFormat type="standard">{0} Standard Time</regionFormat>
|
||||
<fallbackFormat>{1} ({0})</fallbackFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>HST</generic>
|
||||
<standard>HST</standard>
|
||||
<daylight>HDT</daylight>
|
||||
</short>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>Coordinated Universal Time</standard>
|
||||
@ -3918,13 +3940,6 @@ annotations.
|
||||
<zone type="Asia/Qostanay">
|
||||
<exemplarCity>Kostanay</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>HST</generic>
|
||||
<standard>HST</standard>
|
||||
<daylight>HDT</daylight>
|
||||
</short>
|
||||
</zone>
|
||||
<zone type="Asia/Saigon">
|
||||
<exemplarCity>Ho Chi Minh City</exemplarCity>
|
||||
</zone>
|
||||
@ -4213,13 +4228,6 @@ annotations.
|
||||
<daylight>China Daylight Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>Choibalsan Time</generic>
|
||||
<standard>Choibalsan Standard Time</standard>
|
||||
<daylight>Choibalsan Summer Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>Christmas Island Time</standard>
|
||||
@ -4485,6 +4493,11 @@ annotations.
|
||||
<daylight>Petropavlovsk-Kamchatski Summer Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>Kazakhstan Time</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>East Kazakhstan Time</standard>
|
||||
@ -6614,10 +6627,15 @@ annotations.
|
||||
<displayName count="one">Zimbabwean dollar (1980–2008)</displayName>
|
||||
<displayName count="other">Zimbabwean dollars (1980–2008)</displayName>
|
||||
</currency>
|
||||
<currency type="ZWG">
|
||||
<displayName>Zimbabwean Gold</displayName>
|
||||
<displayName count="one">Zimbabwean gold</displayName>
|
||||
<displayName count="other">Zimbabwean gold</displayName>
|
||||
</currency>
|
||||
<currency type="ZWL">
|
||||
<displayName>Zimbabwean Dollar (2009)</displayName>
|
||||
<displayName count="one">Zimbabwean dollar (2009)</displayName>
|
||||
<displayName count="other">Zimbabwean dollars (2009)</displayName>
|
||||
<displayName>Zimbabwean Dollar (2009–2024)</displayName>
|
||||
<displayName count="one">Zimbabwean dollar (2009–2024)</displayName>
|
||||
<displayName count="other">Zimbabwean dollars (2009–2024)</displayName>
|
||||
</currency>
|
||||
<currency type="ZWR">
|
||||
<displayName>Zimbabwean Dollar (2008)</displayName>
|
||||
@ -7703,6 +7721,22 @@ annotations.
|
||||
<unitPattern count="one">{0} of gasoline equivalent</unitPattern>
|
||||
<unitPattern count="other">{0} of gasoline equivalent</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>light</displayName>
|
||||
<unitPattern count="one">{0} light</unitPattern>
|
||||
<unitPattern count="other">{0} light</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>parts per billion</displayName>
|
||||
<unitPattern count="one">{0} part per billion</unitPattern>
|
||||
<unitPattern count="other">{0} parts per billion</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nights</displayName>
|
||||
<unitPattern count="one">{0} night</unitPattern>
|
||||
<unitPattern count="other">{0} nights</unitPattern>
|
||||
<perUnitPattern>{0} per night</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>cardinal direction</displayName>
|
||||
<coordinateUnitPattern type="east">{0} east</coordinateUnitPattern>
|
||||
@ -8775,6 +8809,22 @@ annotations.
|
||||
<unitPattern count="one">{0} gas-equiv</unitPattern>
|
||||
<unitPattern count="other">{0} gas-equiv</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>light</displayName>
|
||||
<unitPattern count="one">{0} light</unitPattern>
|
||||
<unitPattern count="other">{0} light</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>parts/billion</displayName>
|
||||
<unitPattern count="one">{0} ppb</unitPattern>
|
||||
<unitPattern count="other">{0} ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nights</displayName>
|
||||
<unitPattern count="one">{0} night</unitPattern>
|
||||
<unitPattern count="other">{0} nights</unitPattern>
|
||||
<perUnitPattern>{0}/night</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>direction</displayName>
|
||||
<coordinateUnitPattern type="east">{0} E</coordinateUnitPattern>
|
||||
@ -9846,6 +9896,22 @@ annotations.
|
||||
<unitPattern count="one">{0}gas-equiv</unitPattern>
|
||||
<unitPattern count="other">{0}gas-equiv</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>light</displayName>
|
||||
<unitPattern count="one">{0}light</unitPattern>
|
||||
<unitPattern count="other">{0}light</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>ppb</displayName>
|
||||
<unitPattern count="one">{0}ppb</unitPattern>
|
||||
<unitPattern count="other">{0}ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>nights</displayName>
|
||||
<unitPattern count="one">{0}night</unitPattern>
|
||||
<unitPattern count="other">{0}nights</unitPattern>
|
||||
<perUnitPattern>{0}/night</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>direction</displayName>
|
||||
<coordinateUnitPattern type="east">{0}E</coordinateUnitPattern>
|
||||
|
||||
@ -778,6 +778,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</field>
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>∅∅∅</generic>
|
||||
<standard>∅∅∅</standard>
|
||||
<daylight>∅∅∅</daylight>
|
||||
</short>
|
||||
</zone>
|
||||
<zone type="America/St_Barthelemy">
|
||||
<exemplarCity>St Barthélemy</exemplarCity>
|
||||
</zone>
|
||||
@ -799,13 +806,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Atlantic/St_Helena">
|
||||
<exemplarCity>St Helena</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<short>
|
||||
<generic>∅∅∅</generic>
|
||||
<standard>∅∅∅</standard>
|
||||
<daylight>∅∅∅</daylight>
|
||||
</short>
|
||||
</zone>
|
||||
<zone type="America/St_Vincent">
|
||||
<exemplarCity>St Vincent</exemplarCity>
|
||||
</zone>
|
||||
@ -1021,7 +1021,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} kilowatt-hour</unitPattern>
|
||||
</unit>
|
||||
<unit type="force-kilowatt-hour-per-100-kilometer">
|
||||
<displayName>kilowatt-hour per 100 kilometres</displayName>
|
||||
<displayName>kilowatt-hours per 100 kilometres</displayName>
|
||||
<unitPattern count="one">{0} kilowatt-hour per 100 kilometres</unitPattern>
|
||||
<unitPattern count="other">{0} kilowatt-hours per 100 kilometres</unitPattern>
|
||||
</unit>
|
||||
@ -1051,7 +1051,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<perUnitPattern>{0} per metre</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="length-decimeter">
|
||||
<displayName>decimetre</displayName>
|
||||
<displayName>decimetres</displayName>
|
||||
<unitPattern count="one">{0} decimetre</unitPattern>
|
||||
<unitPattern count="other">{0} decimetres</unitPattern>
|
||||
</unit>
|
||||
@ -1067,7 +1067,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} millimetres</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-micrometer">
|
||||
<displayName>micrometre</displayName>
|
||||
<displayName>micrometres</displayName>
|
||||
<unitPattern count="one">{0} micrometre</unitPattern>
|
||||
<unitPattern count="other">{0} micrometres</unitPattern>
|
||||
</unit>
|
||||
@ -1118,7 +1118,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} metres per second</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-generic">
|
||||
<displayName>degree</displayName>
|
||||
<displayName>degrees</displayName>
|
||||
</unit>
|
||||
<unit type="temperature-kelvin">
|
||||
<displayName>kelvin</displayName>
|
||||
@ -1206,17 +1206,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} fluid ounces</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon">
|
||||
<displayName>US dessertspoon</displayName>
|
||||
<displayName>US dessertspoons</displayName>
|
||||
<unitPattern count="one">{0} US dessertspoon</unitPattern>
|
||||
<unitPattern count="other">{0} US dessertspoons</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon-imperial">
|
||||
<displayName>dessertspoon</displayName>
|
||||
<displayName>dessertspoons</displayName>
|
||||
<unitPattern count="one">{0} dessertspoon</unitPattern>
|
||||
<unitPattern count="other">{0} dessertspoons</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-quart-imperial">
|
||||
<displayName>quart</displayName>
|
||||
<displayName>quarts</displayName>
|
||||
<unitPattern count="one">{0} quart</unitPattern>
|
||||
<unitPattern count="other">{0} quarts</unitPattern>
|
||||
</unit>
|
||||
@ -1229,7 +1229,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} revs</unitPattern>
|
||||
</unit>
|
||||
<unit type="area-square-meter">
|
||||
<displayName>metres²</displayName>
|
||||
<displayName>m²</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-karat">
|
||||
<displayName>carats</displayName>
|
||||
@ -1284,9 +1284,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} sec</unitPattern>
|
||||
<unitPattern count="other">{0} secs</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-meter">
|
||||
<displayName>metres</displayName>
|
||||
</unit>
|
||||
<unit type="length-micrometer">
|
||||
<displayName>μmetres</displayName>
|
||||
</unit>
|
||||
@ -1297,10 +1294,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} ct</unitPattern>
|
||||
<unitPattern count="other">{0} ct</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-grain">
|
||||
<unitPattern count="one">{0} grains</unitPattern>
|
||||
<unitPattern count="other">{0} grains</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-meter-per-second">
|
||||
<displayName>metres/sec</displayName>
|
||||
</unit>
|
||||
@ -1373,14 +1366,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} dstspn</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-drop">
|
||||
<unitPattern count="one">{0} drops</unitPattern>
|
||||
<unitPattern count="one">{0} drop</unitPattern>
|
||||
<unitPattern count="other">{0} drops</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dram">
|
||||
<displayName>dram</displayName>
|
||||
</unit>
|
||||
<unit type="volume-pinch">
|
||||
<unitPattern count="one">{0} pinches</unitPattern>
|
||||
<unitPattern count="one">{0} pinch</unitPattern>
|
||||
<unitPattern count="other">{0} pinches</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-quart-imperial">
|
||||
@ -1390,8 +1383,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
</unitLength>
|
||||
<unitLength type="narrow">
|
||||
<unit type="acceleration-g-force">
|
||||
<unitPattern count="other">{0}G</unitPattern>
|
||||
</unit>
|
||||
<unit type="area-square-meter">
|
||||
<displayName draft="contributed">metres²</displayName>
|
||||
<displayName draft="contributed">m²</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-karat">
|
||||
<displayName>carat</displayName>
|
||||
@ -1428,23 +1424,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}mpg</unitPattern>
|
||||
<unitPattern count="other">{0}mpg</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-meter">
|
||||
<displayName>metre</displayName>
|
||||
</unit>
|
||||
<unit type="mass-pound">
|
||||
<unitPattern count="one">{0}lb</unitPattern>
|
||||
<unitPattern count="other">{0}lb</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-carat">
|
||||
<unitPattern count="one">{0}ct</unitPattern>
|
||||
<unitPattern count="other">{0}ct</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-kilometer-per-hour">
|
||||
<displayName>km/h</displayName>
|
||||
</unit>
|
||||
<unit type="speed-mile-per-hour">
|
||||
<displayName>mph</displayName>
|
||||
</unit>
|
||||
<unit type="temperature-celsius">
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
<unitPattern count="other">{0}°</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-fahrenheit">
|
||||
<unitPattern count="one">{0}°F</unitPattern>
|
||||
<unitPattern count="other">{0}°F</unitPattern>
|
||||
@ -1482,9 +1475,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
</unit>
|
||||
<unit type="volume-gallon">
|
||||
<displayName>US gal</displayName>
|
||||
<unitPattern count="one">{0}galUS</unitPattern>
|
||||
<unitPattern count="other">{0}galUS</unitPattern>
|
||||
<perUnitPattern>{0}/galUS</perUnitPattern>
|
||||
<unitPattern count="one">{0}USgal</unitPattern>
|
||||
<unitPattern count="other">{0}USgal</unitPattern>
|
||||
<perUnitPattern>{0}/USgal</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="volume-gallon-imperial">
|
||||
<displayName>gal</displayName>
|
||||
@ -1492,6 +1485,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0}gal</unitPattern>
|
||||
<perUnitPattern>{0}/gal</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="volume-quart">
|
||||
<displayName>USqt</displayName>
|
||||
<unitPattern count="one">{0}USqt</unitPattern>
|
||||
<unitPattern count="other">{0}USqt</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-fluid-ounce">
|
||||
<displayName>US fl oz</displayName>
|
||||
<unitPattern count="one">{0}US fl oz</unitPattern>
|
||||
|
||||
@ -228,7 +228,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormats>
|
||||
<dateFormatLength type="full">
|
||||
<dateFormat>
|
||||
<pattern>EEEE d MMMM y</pattern>
|
||||
<pattern>EEEE, d MMMM y</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="long">
|
||||
@ -292,7 +292,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<availableFormats>
|
||||
<dateFormatItem id="GyMd">d/M/y GGGGG</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="Md">d/M</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E, d/M</dateFormatItem>
|
||||
@ -794,16 +793,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unit type="length-kilometer">
|
||||
<displayName>kilometre</displayName>
|
||||
</unit>
|
||||
<unit type="length-micrometer">
|
||||
<displayName>micrometres</displayName>
|
||||
</unit>
|
||||
<unit type="pressure-pound-force-per-square-inch">
|
||||
<displayName>pounds per square inch</displayName>
|
||||
<unitPattern count="one">{0} pound per square inch</unitPattern>
|
||||
<unitPattern count="other">{0} pounds per square inch</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-generic">
|
||||
<displayName>degrees</displayName>
|
||||
<unitPattern count="one">{0} degree</unitPattern>
|
||||
<unitPattern count="other">{0} degrees</unitPattern>
|
||||
</unit>
|
||||
@ -856,24 +851,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="other">{0} m.p.g.</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-century">
|
||||
<displayName>C.</displayName>
|
||||
<unitPattern count="one">{0} C.</unitPattern>
|
||||
<unitPattern count="other">{0} C.</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-second">
|
||||
<displayName>sec.</displayName>
|
||||
<unitPattern count="one">{0} sec.</unitPattern>
|
||||
<unitPattern count="other">{0} secs</unitPattern>
|
||||
<perUnitPattern>{0} ps.</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-millisecond">
|
||||
<displayName>millisec.</displayName>
|
||||
</unit>
|
||||
<unit type="duration-microsecond">
|
||||
<displayName>μsec.</displayName>
|
||||
</unit>
|
||||
<unit type="duration-nanosecond">
|
||||
<displayName>nanosec.</displayName>
|
||||
<displayName>C</displayName>
|
||||
<unitPattern count="one">{0} C</unitPattern>
|
||||
<unitPattern count="other">{0} C</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-kilocalorie">
|
||||
<displayName>Cal</displayName>
|
||||
@ -993,30 +973,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="other">{0}L/100km</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-century">
|
||||
<displayName>C.</displayName>
|
||||
<unitPattern count="one">{0}C.</unitPattern>
|
||||
<unitPattern count="other">{0}C.</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-second">
|
||||
<displayName>sec.</displayName>
|
||||
<unitPattern count="one">{0}s.</unitPattern>
|
||||
<unitPattern count="other">{0}s.</unitPattern>
|
||||
<perUnitPattern>{0} ps.</perUnitPattern>
|
||||
</unit>
|
||||
<unit type="duration-millisecond">
|
||||
<displayName>msec.</displayName>
|
||||
</unit>
|
||||
<unit type="duration-microsecond">
|
||||
<displayName>μsec.</displayName>
|
||||
<displayName>C</displayName>
|
||||
<unitPattern count="one">{0}C</unitPattern>
|
||||
<unitPattern count="other">{0}C</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-kilometer-per-hour">
|
||||
<unitPattern count="one">{0} km/h</unitPattern>
|
||||
<unitPattern count="other">{0} km/h</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-celsius">
|
||||
<unitPattern count="one">{0}°C</unitPattern>
|
||||
<unitPattern count="other">{0}°C</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-megaliter">
|
||||
<displayName>ML</displayName>
|
||||
<unitPattern count="one">{0}ML</unitPattern>
|
||||
|
||||
@ -20,10 +20,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</numbers>
|
||||
<units>
|
||||
<unitLength type="narrow">
|
||||
<unit type="temperature-celsius">
|
||||
<unitPattern count="one">{0}°C</unitPattern>
|
||||
<unitPattern count="other">{0}°C</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-fahrenheit">
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
<unitPattern count="other">{0}°</unitPattern>
|
||||
|
||||
@ -203,10 +203,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</numbers>
|
||||
<units>
|
||||
<unitLength type="narrow">
|
||||
<unit type="temperature-celsius">
|
||||
<unitPattern count="one">{0}°C</unitPattern>
|
||||
<unitPattern count="other">{0}°C</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-fahrenheit">
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
<unitPattern count="other">{0}°</unitPattern>
|
||||
|
||||
@ -1040,9 +1040,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/St_Kitts">
|
||||
<exemplarCity>Saint Kitts</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Aqtau">
|
||||
<exemplarCity>Aktau</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/St_Lucia">
|
||||
<exemplarCity>Saint Lucia</exemplarCity>
|
||||
</zone>
|
||||
@ -1084,59 +1081,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>Eastern Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="America_Mountain">
|
||||
<long>
|
||||
<generic>Mountain Time</generic>
|
||||
<standard>Mountain Standard Time</standard>
|
||||
<daylight>Mountain Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="America_Pacific">
|
||||
<long>
|
||||
<generic>Pacific Time</generic>
|
||||
<standard>Pacific Standard Time</standard>
|
||||
<daylight>Pacific Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Apia">
|
||||
<long>
|
||||
<generic>Apia Time</generic>
|
||||
<standard>Apia Standard Time</standard>
|
||||
<daylight>Apia Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Arabian">
|
||||
<long>
|
||||
<generic>Arabian Time</generic>
|
||||
<standard>Arabian Standard Time</standard>
|
||||
<daylight>Arabian Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Argentina">
|
||||
<short>
|
||||
<generic>ART</generic>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Atlantic">
|
||||
<long>
|
||||
<generic>Atlantic Time</generic>
|
||||
<standard>Atlantic Standard Time</standard>
|
||||
<daylight>Atlantic Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Australia_Central">
|
||||
<long>
|
||||
<generic>Central Australia Time</generic>
|
||||
<standard>Australian Central Standard Time</standard>
|
||||
<daylight>Australian Central Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Australia_CentralWestern">
|
||||
<long>
|
||||
<generic>Australian Central Western Time</generic>
|
||||
<standard>Australian Central Western Standard Time</standard>
|
||||
<daylight>Australian Central Western Daylight Saving Time</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<generic>ACWT</generic>
|
||||
<standard>ACWST</standard>
|
||||
@ -1144,11 +1094,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Australia_Eastern">
|
||||
<long>
|
||||
<generic>Eastern Australia Time</generic>
|
||||
<standard>Australian Eastern Standard Time</standard>
|
||||
<daylight>Australian Eastern Daylight Saving Time</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<generic>AET</generic>
|
||||
<standard>AEST</standard>
|
||||
@ -1156,11 +1101,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Australia_Western">
|
||||
<long>
|
||||
<generic>Western Australia Time</generic>
|
||||
<standard>Australian Western Standard Time</standard>
|
||||
<daylight>Australian Western Daylight Saving Time</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<standard>AWST</standard>
|
||||
<daylight>AWDT</daylight>
|
||||
@ -1188,23 +1128,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Chatham">
|
||||
<long>
|
||||
<generic>Chatham Time</generic>
|
||||
<standard>Chatham Standard Time</standard>
|
||||
<daylight>Chatham Daylight Saving Time</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<standard>CHAST</standard>
|
||||
<daylight>CHADT</daylight>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="China">
|
||||
<long>
|
||||
<generic>China Time</generic>
|
||||
<standard>China Standard Time</standard>
|
||||
<daylight>China Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<short>
|
||||
<standard>CXT</standard>
|
||||
@ -1220,13 +1148,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>COST</daylight>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Cuba">
|
||||
<long>
|
||||
<generic>Cuba Time</generic>
|
||||
<standard>Cuba Standard Time</standard>
|
||||
<daylight>Cuba Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="East_Timor">
|
||||
<short>
|
||||
<standard>TLT</standard>
|
||||
@ -1264,18 +1185,16 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<generic>EGT</generic>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Gulf">
|
||||
<short>
|
||||
<standard>Gulf Time</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Guyana">
|
||||
<short>
|
||||
<standard>GYT</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Hawaii_Aleutian">
|
||||
<long>
|
||||
<generic>Hawaii-Aleutian Time</generic>
|
||||
<standard>Hawaii-Aleutian Standard Time</standard>
|
||||
<daylight>Hawaii-Aleutian Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="India">
|
||||
<short>
|
||||
<standard>IST</standard>
|
||||
@ -1312,34 +1231,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>IRDT</daylight>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Israel">
|
||||
<long>
|
||||
<generic>Israel Time</generic>
|
||||
<standard>Israel Standard Time</standard>
|
||||
<daylight>Israel Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Japan">
|
||||
<long>
|
||||
<generic>Japan Time</generic>
|
||||
<standard>Japan Standard Time</standard>
|
||||
<daylight>Japan Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Korea">
|
||||
<long>
|
||||
<generic>Korean Time</generic>
|
||||
<standard>Korean Standard Time</standard>
|
||||
<daylight>Korean Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Lord_Howe">
|
||||
<long>
|
||||
<generic>Lord Howe Time</generic>
|
||||
<standard>Lord Howe Standard Time</standard>
|
||||
<daylight>Lord Howe Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Malaysia">
|
||||
<short>
|
||||
<standard>MYT</standard>
|
||||
@ -1350,44 +1241,18 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<standard>MVT</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Mexico_Pacific">
|
||||
<long>
|
||||
<generic>Mexican Pacific Time</generic>
|
||||
<standard>Mexican Pacific Standard Time</standard>
|
||||
<daylight>Mexican Pacific Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Nepal">
|
||||
<short>
|
||||
<standard>NPT</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="New_Zealand">
|
||||
<long>
|
||||
<generic>New Zealand Time</generic>
|
||||
<standard>New Zealand Standard Time</standard>
|
||||
<daylight>New Zealand Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Newfoundland">
|
||||
<long>
|
||||
<generic>Newfoundland Time</generic>
|
||||
<standard>Newfoundland Standard Time</standard>
|
||||
<daylight>Newfoundland Daylight Saving Time</daylight>
|
||||
</long>
|
||||
<short>
|
||||
<generic>NT</generic>
|
||||
<standard>NST</standard>
|
||||
<daylight>NDT</daylight>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Norfolk">
|
||||
<long>
|
||||
<generic>Norfolk Island Time</generic>
|
||||
<standard>Norfolk Island Standard Time</standard>
|
||||
<daylight>Norfolk Island Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Noronha">
|
||||
<short>
|
||||
<generic>FNT</generic>
|
||||
@ -1425,14 +1290,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<long>
|
||||
<generic>Samoa Time</generic>
|
||||
<standard>Samoa Standard Time</standard>
|
||||
<daylight>Samoa Daylight Saving Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Taipei">
|
||||
<long>
|
||||
<generic>Taipei Time</generic>
|
||||
<standard>Taipei Standard Time</standard>
|
||||
<daylight>Taipei Daylight Saving Time</daylight>
|
||||
<daylight>Samoan Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Uruguay">
|
||||
@ -1469,11 +1327,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one">Belarusian new rouble (1994–1999)</displayName>
|
||||
<displayName count="other">Belarusian new roubles (1994–1999)</displayName>
|
||||
</currency>
|
||||
<currency type="BYN">
|
||||
<displayName>Belarusian Rouble</displayName>
|
||||
<displayName count="one">Belarusian rouble</displayName>
|
||||
<displayName count="other">Belarusian roubles</displayName>
|
||||
</currency>
|
||||
<currency type="BYR">
|
||||
<displayName>Belarusian Rouble (2000–2016)</displayName>
|
||||
<displayName count="one">Belarusian rouble (2000–2016)</displayName>
|
||||
@ -1490,11 +1343,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one">Latvian rouble</displayName>
|
||||
<displayName count="other">Latvian roubles</displayName>
|
||||
</currency>
|
||||
<currency type="RUB">
|
||||
<displayName>Russian Rouble</displayName>
|
||||
<displayName count="one">Russian rouble</displayName>
|
||||
<displayName count="other">Russian roubles</displayName>
|
||||
</currency>
|
||||
<currency type="RUR">
|
||||
<displayName>Russian Rouble (1991–1998)</displayName>
|
||||
<displayName count="one">Russian rouble (1991–1998)</displayName>
|
||||
@ -1795,7 +1643,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="other">{0} fluid ounces</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon">
|
||||
<displayName>US dessertspoon</displayName>
|
||||
<unitPattern count="one">{0} US dessertspoon</unitPattern>
|
||||
<unitPattern count="other">{0} US dessertspoons</unitPattern>
|
||||
</unit>
|
||||
@ -1846,9 +1693,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unit type="concentr-millimole-per-liter">
|
||||
<displayName>millimoles/litre</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-item">
|
||||
<displayName>items</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-permille">
|
||||
<displayName>per mille</displayName>
|
||||
</unit>
|
||||
@ -1875,12 +1719,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="other">{0} mpg</unitPattern>
|
||||
</unit>
|
||||
<unit type="digital-byte">
|
||||
<displayName>bytes</displayName>
|
||||
<unitPattern count="one">{0} byte</unitPattern>
|
||||
<unitPattern count="other">{0} bytes</unitPattern>
|
||||
</unit>
|
||||
<unit type="digital-bit">
|
||||
<displayName>bits</displayName>
|
||||
<unitPattern count="one">{0} bit</unitPattern>
|
||||
<unitPattern count="other">{0} bits</unitPattern>
|
||||
</unit>
|
||||
@ -2034,11 +1876,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0} fl oz</unitPattern>
|
||||
<unitPattern count="other">{0} fl oz</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon">
|
||||
<displayName>US dssp</displayName>
|
||||
<unitPattern count="one">{0} US dssp</unitPattern>
|
||||
<unitPattern count="other">{0} US dssp</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon-imperial">
|
||||
<displayName>dssp</displayName>
|
||||
<unitPattern count="one">{0} dssp</unitPattern>
|
||||
@ -2114,9 +1951,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unit type="electric-ampere">
|
||||
<displayName>A</displayName>
|
||||
</unit>
|
||||
<unit type="electric-ohm">
|
||||
<displayName>Ω</displayName>
|
||||
</unit>
|
||||
<unit type="electric-volt">
|
||||
<displayName>V</displayName>
|
||||
</unit>
|
||||
@ -2190,11 +2024,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0}fl oz</unitPattern>
|
||||
<unitPattern count="other">{0}fl oz</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon">
|
||||
<displayName>US dsp</displayName>
|
||||
<unitPattern count="one">{0}USdsp</unitPattern>
|
||||
<unitPattern count="other">{0}USdsp</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-dessert-spoon-imperial">
|
||||
<displayName>dsp</displayName>
|
||||
<unitPattern count="one">{0}dsp</unitPattern>
|
||||
|
||||
@ -691,6 +691,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<gmtFormat>𐐘𐐣𐐓 {0}</gmtFormat>
|
||||
<gmtZeroFormat>𐐘𐐣𐐓</gmtZeroFormat>
|
||||
<regionFormat>{0} 𐐓𐐴𐑋</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>𐐐𐐪𐑌𐐲𐑊𐐭𐑊𐐭</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/Unknown">
|
||||
<exemplarCity>𐐊𐑌𐑌𐐬𐑌</exemplarCity>
|
||||
</zone>
|
||||
@ -706,9 +709,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="America/Nome">
|
||||
<exemplarCity>𐐤𐐬𐑋</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>𐐐𐐪𐑌𐐲𐑊𐐭𐑊𐐭</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Anchorage">
|
||||
<exemplarCity>𐐁𐑍𐐿𐐲𐑉𐐮𐐾</exemplarCity>
|
||||
</zone>
|
||||
|
||||
@ -19,55 +19,15 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dates>
|
||||
<calendars>
|
||||
<calendar type="generic">
|
||||
<dateFormats>
|
||||
<dateFormatLength type="full">
|
||||
<dateFormat>
|
||||
<pattern>EEEE d MMMM y G</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="long">
|
||||
<dateFormat>
|
||||
<pattern>d MMMM y G</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="medium">
|
||||
<dateFormat>
|
||||
<pattern>d MMM y G</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="short">
|
||||
<dateFormat>
|
||||
<pattern>dd/MM/y GGGGG</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
</dateFormats>
|
||||
<dateTimeFormats>
|
||||
<dateTimeFormatLength type="full">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1}, {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<dateTimeFormatLength type="long">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1}, {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<dateTimeFormatLength type="medium">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1}, {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<dateTimeFormatLength type="short">
|
||||
<dateTimeFormat>
|
||||
<pattern>{1}, {0}</pattern>
|
||||
</dateTimeFormat>
|
||||
</dateTimeFormatLength>
|
||||
<availableFormats>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E dd/MM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEEE d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">EEEE d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEEEEd">EEEE d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMMEEEEd">EEEE d MMMM y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMMEEEEd">EEEE, d MMMM y G</dateFormatItem>
|
||||
</availableFormats>
|
||||
<intervalFormats>
|
||||
<intervalFormatItem id="GyMMMEEEEd">
|
||||
@ -99,7 +59,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormats>
|
||||
<dateFormatLength type="full">
|
||||
<dateFormat>
|
||||
<pattern>EEEE d MMMM y</pattern>
|
||||
<pattern>EEEE, d MMMM y</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="long">
|
||||
@ -167,11 +127,13 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</dateTimeFormatLength>
|
||||
<availableFormats>
|
||||
<dateFormatItem id="GyMd">dd/MM/y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E dd/MM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEd">E d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEEE d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">EEEE d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="yMMMEEEEd">EEEE d MMM y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMMEEEEd">EEEE d MMMM y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMEEEEd">EEEE, d MMM y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMMEEEEd">EEEE, d MMMM y</dateFormatItem>
|
||||
</availableFormats>
|
||||
<intervalFormats>
|
||||
<intervalFormatItem id="GyMMMEEEEd">
|
||||
@ -203,8 +165,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateTimeFormats>
|
||||
<availableFormats>
|
||||
<dateFormatItem id="Ed">E d</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="M">LL</dateFormatItem>
|
||||
<dateFormatItem id="yyyyM">MM/y GGGGG</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMMEEEEd">EEEE, d MMMM y G</dateFormatItem>
|
||||
</availableFormats>
|
||||
</dateTimeFormats>
|
||||
</calendar>
|
||||
@ -245,6 +210,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<daylight>WEST</daylight>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Gulf">
|
||||
<short>
|
||||
<standard>GST</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
</timeZoneNames>
|
||||
</dates>
|
||||
<personNames>
|
||||
|
||||
@ -30,7 +30,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormats>
|
||||
<dateFormatLength type="full">
|
||||
<dateFormat>
|
||||
<pattern>EEEE d MMMM, y G</pattern>
|
||||
<pattern>EEEE, d MMMM y G</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="long">
|
||||
@ -83,20 +83,20 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormatItem id="GyMMM">MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMd">d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEd">E, d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="Md">d/M</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E, d/M</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEEE d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">EEEE d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEEE, d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">EEEE, d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="yyyyM">M/y GGGGG</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMd">d/M/y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMEd">E, d/M/y GGGGG</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMM">MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMd">d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEd">E, d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEEEEd">EEEE d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMM">MMMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMMEEEEd">EEEE d MMMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMMEEEEd">EEEE, d MMMM y G</dateFormatItem>
|
||||
</availableFormats>
|
||||
<intervalFormats>
|
||||
<intervalFormatItem id="GyMd">
|
||||
@ -159,7 +159,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormats>
|
||||
<dateFormatLength type="full">
|
||||
<dateFormat>
|
||||
<pattern>EEEE d MMMM, y</pattern>
|
||||
<pattern>EEEE, d MMMM y</pattern>
|
||||
</dateFormat>
|
||||
</dateFormatLength>
|
||||
<dateFormatLength type="long">
|
||||
@ -232,14 +232,14 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormatItem id="Ehms">E, h:mm:ss a</dateFormatItem>
|
||||
<dateFormatItem id="Ehms" alt="ascii">E, h:mm:ss a</dateFormatItem>
|
||||
<dateFormatItem id="EHms">E, HH:mm:ss</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEEE d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">EEEE d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE, d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEEE, d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">EEEE, d MMMM</dateFormatItem>
|
||||
<dateFormatItem id="yMd">d/M/y</dateFormatItem>
|
||||
<dateFormatItem id="yMEd">E, d/M/y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMEd">E, d MMM, y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMEEEEd">EEEE d MMM, y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMMEEEEd">EEEE d MMMM, y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMEEEEd">EEEE, d MMM y</dateFormatItem>
|
||||
<dateFormatItem id="yMMMMEEEEd">EEEE, d MMMM y</dateFormatItem>
|
||||
</availableFormats>
|
||||
<intervalFormats>
|
||||
<intervalFormatItem id="GyMMMEEEEd">
|
||||
@ -303,27 +303,42 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dateFormatItem id="GyMMM">MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMd">d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEd">E, d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="GyMMMEEEEd">EEEE d MMM y G</dateFormatItem>
|
||||
<dateFormatItem id="Md">d/M</dateFormatItem>
|
||||
<dateFormatItem id="MEd">E, d/M</dateFormatItem>
|
||||
<dateFormatItem id="MMMEEEEd">EEE, d MMM</dateFormatItem>
|
||||
<dateFormatItem id="MMMMEEEEd">d EEEE MMMM</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMd">d/M/y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMEd">E d/M/y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMM">MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMd">d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEd">E, d MMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMEEEEd">EEEE, d MMM y</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMM">MMMM, y G</dateFormatItem>
|
||||
<dateFormatItem id="yyyyMMMMEEEEd">EEEE, d MMMM y</dateFormatItem>
|
||||
</availableFormats>
|
||||
</dateTimeFormats>
|
||||
</calendar>
|
||||
</calendars>
|
||||
<timeZoneNames>
|
||||
<zone type="Asia/Rangoon">
|
||||
<exemplarCity>Rangoon</exemplarCity>
|
||||
<zone type="Asia/Qyzylorda">
|
||||
<exemplarCity>Kyzylorda</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Hovd">
|
||||
<exemplarCity>Khovd</exemplarCity>
|
||||
</zone>
|
||||
<metazone type="Gulf">
|
||||
<short>
|
||||
<standard draft="contributed">GST</standard>
|
||||
<standard>GST</standard>
|
||||
</short>
|
||||
</metazone>
|
||||
<metazone type="Hovd">
|
||||
<long>
|
||||
<generic>Khovd Time</generic>
|
||||
<standard>Khovd Standard Time</standard>
|
||||
<daylight>Khovd Summer Time</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="India">
|
||||
<short>
|
||||
<standard>IST</standard>
|
||||
@ -428,18 +443,43 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</currencyFormatLength>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="KGS">
|
||||
<displayName>Kyrgyzstani Som</displayName>
|
||||
<displayName count="one">Kyrgyzstani som</displayName>
|
||||
<displayName count="other">Kyrgyzstani soms</displayName>
|
||||
</currency>
|
||||
<currency type="KZT">
|
||||
<displayName count="one">Kazakhstani Tenge</displayName>
|
||||
<displayName count="other">Kazakhstani Tenges</displayName>
|
||||
</currency>
|
||||
<currency type="SLE">
|
||||
<displayName count="one">Sierra Leonean Leone</displayName>
|
||||
<displayName count="other">Sierra Leonean Leones</displayName>
|
||||
</currency>
|
||||
<currency type="TJS">
|
||||
<displayName count="one">Tajikistani Somoni</displayName>
|
||||
<displayName count="other">Tajikistani Somonis</displayName>
|
||||
</currency>
|
||||
<currency type="TMT">
|
||||
<displayName count="one">Turkmenistani Manat</displayName>
|
||||
<displayName count="other">Turkmenistani Manat</displayName>
|
||||
</currency>
|
||||
<currency type="USD">
|
||||
<symbol>$</symbol>
|
||||
</currency>
|
||||
<currency type="UZS">
|
||||
<displayName count="one">Uzbekistani Som</displayName>
|
||||
<displayName count="other">Uzbekistani Som</displayName>
|
||||
</currency>
|
||||
<currency type="VEF">
|
||||
<displayName>Venezuelan Bolívar</displayName>
|
||||
<displayName count="one">Venezuelan bolívar</displayName>
|
||||
<displayName count="other">Venezuelan bolívars</displayName>
|
||||
</currency>
|
||||
<currency type="VES">
|
||||
<displayName>VES</displayName>
|
||||
<displayName count="one">VES</displayName>
|
||||
<displayName count="other">VES</displayName>
|
||||
<displayName>VEF</displayName>
|
||||
<displayName count="one">VEF</displayName>
|
||||
<displayName count="other">VEF</displayName>
|
||||
</currency>
|
||||
</currencies>
|
||||
</numbers>
|
||||
@ -449,6 +489,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0} earth radius</unitPattern>
|
||||
<unitPattern count="other">{0} earth radius</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-tonne">
|
||||
<displayName>metric tonnes</displayName>
|
||||
</unit>
|
||||
<unit type="temperature-generic">
|
||||
<displayName>°</displayName>
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
|
||||
@ -20,10 +20,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</numbers>
|
||||
<units>
|
||||
<unitLength type="narrow">
|
||||
<unit type="temperature-celsius">
|
||||
<unitPattern count="one">{0}°C</unitPattern>
|
||||
<unitPattern count="other">{0}°C</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-fahrenheit">
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
<unitPattern count="other">{0}°</unitPattern>
|
||||
|
||||
@ -13,10 +13,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</identity>
|
||||
<units>
|
||||
<unitLength type="narrow">
|
||||
<unit type="temperature-celsius">
|
||||
<unitPattern count="one">{0}°C</unitPattern>
|
||||
<unitPattern count="other">{0}°C</unitPattern>
|
||||
</unit>
|
||||
<unit type="temperature-fahrenheit">
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
<unitPattern count="other">{0}°</unitPattern>
|
||||
|
||||
@ -235,6 +235,19 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</timeZoneNames>
|
||||
</dates>
|
||||
<numbers>
|
||||
<symbols numberSystem="latn">
|
||||
<decimal>,</decimal>
|
||||
<decimal alt="us">.</decimal>
|
||||
<group> </group>
|
||||
<group alt="us">,</group>
|
||||
</symbols>
|
||||
<currencyFormats numberSystem="latn">
|
||||
<currencyFormatLength>
|
||||
<currencyFormat type="standard">
|
||||
<pattern alt="alphaNextToNumber">¤#,##0.00</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ZAR">
|
||||
<symbol>R</symbol>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -70,6 +70,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="bin">bini</language>
|
||||
<language type="bkm">kom</language>
|
||||
<language type="bla">siksika</language>
|
||||
<language type="blo">anii</language>
|
||||
<language type="bm">bambara</language>
|
||||
<language type="bn">bengalí</language>
|
||||
<language type="bo">tibetano</language>
|
||||
@ -298,6 +299,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kv">komi</language>
|
||||
<language type="kw">córnico</language>
|
||||
<language type="kwk">kwakʼwala</language>
|
||||
<language type="kxv">kuvi</language>
|
||||
<language type="ky">kirguís</language>
|
||||
<language type="la">latín</language>
|
||||
<language type="lad">ladino</language>
|
||||
@ -308,9 +310,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lez">lezgiano</language>
|
||||
<language type="lg">ganda</language>
|
||||
<language type="li">limburgués</language>
|
||||
<language type="lij">ligur</language>
|
||||
<language type="lil">lillooet</language>
|
||||
<language type="lkt">lakota</language>
|
||||
<language type="lmo" draft="contributed">lombardo</language>
|
||||
<language type="lmo">lombardo</language>
|
||||
<language type="ln">lingala</language>
|
||||
<language type="lo">lao</language>
|
||||
<language type="lol">mongo</language>
|
||||
@ -323,7 +326,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="lua">luba-lulua</language>
|
||||
<language type="lui">luiseño</language>
|
||||
<language type="lun">lunda</language>
|
||||
<language type="luo">luo</language>
|
||||
<language type="lus">mizo</language>
|
||||
<language type="luy">luyia</language>
|
||||
<language type="lv">letón</language>
|
||||
@ -506,6 +508,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="swb">comorense</language>
|
||||
<language type="syc">siríaco clásico</language>
|
||||
<language type="syr">siriaco</language>
|
||||
<language type="szl">silesio</language>
|
||||
<language type="ta">tamil</language>
|
||||
<language type="tce">tutchone meridional</language>
|
||||
<language type="te">telugu</language>
|
||||
@ -553,9 +556,10 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="und">lengua desconocida</language>
|
||||
<language type="ur">urdu</language>
|
||||
<language type="uz">uzbeko</language>
|
||||
<language type="vai">vai</language>
|
||||
<language type="ve">venda</language>
|
||||
<language type="vec">veneciano</language>
|
||||
<language type="vi">vietnamita</language>
|
||||
<language type="vmw">makua</language>
|
||||
<language type="vo">volapük</language>
|
||||
<language type="vot">vótico</language>
|
||||
<language type="vun">vunjo</language>
|
||||
@ -569,6 +573,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="wuu">chino wu</language>
|
||||
<language type="xal">kalmyk</language>
|
||||
<language type="xh">xhosa</language>
|
||||
<language type="xnr">kangri</language>
|
||||
<language type="xog">soga</language>
|
||||
<language type="yao">yao</language>
|
||||
<language type="yap">yapés</language>
|
||||
@ -1263,7 +1268,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<parseLenient sample=":">[\: ∶]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="general" level="lenient">
|
||||
<parseLenient sample="£">[£ ₤]</parseLenient>
|
||||
<parseLenient sample="£">[££ ₤]</parseLenient>
|
||||
</parseLenients>
|
||||
<parseLenients scope="number" level="lenient">
|
||||
<parseLenient sample="-">[\--﹣ ‑ ‒ −⁻₋ ➖]</parseLenient>
|
||||
@ -2649,6 +2654,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<regionFormat>hora de {0}</regionFormat>
|
||||
<regionFormat type="daylight">horario de verano de {0}</regionFormat>
|
||||
<regionFormat type="standard">horario estándar de {0}</regionFormat>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulú</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Etc/UTC">
|
||||
<long>
|
||||
<standard>tiempo universal coordinado</standard>
|
||||
@ -3023,9 +3031,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Pacific/Palau">
|
||||
<exemplarCity>Palaos</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Asuncion">
|
||||
<exemplarCity>Asunción</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Asia/Qatar">
|
||||
<exemplarCity>Catar</exemplarCity>
|
||||
</zone>
|
||||
@ -3149,9 +3154,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<zone type="Europe/Simferopol">
|
||||
<exemplarCity>Simferópol</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulú</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/Los_Angeles">
|
||||
<exemplarCity>Los Ángeles</exemplarCity>
|
||||
</zone>
|
||||
@ -3437,13 +3439,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>hora de verano de China</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Choibalsan">
|
||||
<long>
|
||||
<generic>hora de Choibalsan</generic>
|
||||
<standard>hora estándar de Choibalsan</standard>
|
||||
<daylight>hora de verano de Choibalsan</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Christmas">
|
||||
<long>
|
||||
<standard>hora de la Isla de Navidad</standard>
|
||||
@ -3712,6 +3707,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<daylight>hora de verano de Kamchatka</daylight>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan">
|
||||
<long>
|
||||
<standard>hora de Kazajistán</standard>
|
||||
</long>
|
||||
</metazone>
|
||||
<metazone type="Kazakhstan_Eastern">
|
||||
<long>
|
||||
<standard>hora de Kazajistán oriental</standard>
|
||||
@ -4264,8 +4264,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<pattern type="100000000000000" count="other">000 B¤</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one">{0} {1}</unitPattern>
|
||||
<unitPattern count="other">{0} {1}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="ADP">
|
||||
@ -4282,19 +4280,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>afgani (1927–2002)</displayName>
|
||||
</currency>
|
||||
<currency type="AFN">
|
||||
<displayName>afgani</displayName>
|
||||
<displayName count="one">afgani</displayName>
|
||||
<displayName count="other">afganis</displayName>
|
||||
<displayName>afgani afgano</displayName>
|
||||
<displayName count="one">afgani afgano</displayName>
|
||||
<displayName count="other">afganis afganos</displayName>
|
||||
</currency>
|
||||
<currency type="ALL">
|
||||
<displayName>lek</displayName>
|
||||
<displayName count="one">lek</displayName>
|
||||
<displayName count="other">leks</displayName>
|
||||
<displayName>lek albanés</displayName>
|
||||
<displayName count="one">lek albanés</displayName>
|
||||
<displayName count="other">leks albaneses</displayName>
|
||||
</currency>
|
||||
<currency type="AMD">
|
||||
<displayName>dram</displayName>
|
||||
<displayName count="one">dram</displayName>
|
||||
<displayName count="other">drams</displayName>
|
||||
<displayName>dram armenio</displayName>
|
||||
<displayName count="one">dram armenio</displayName>
|
||||
<displayName count="other">drams armenios</displayName>
|
||||
</currency>
|
||||
<currency type="ANG">
|
||||
<displayName>florín antillano</displayName>
|
||||
@ -4302,9 +4300,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">florines antillanos</displayName>
|
||||
</currency>
|
||||
<currency type="AOA">
|
||||
<displayName>kuanza</displayName>
|
||||
<displayName count="one">kuanza</displayName>
|
||||
<displayName count="other">kuanzas</displayName>
|
||||
<displayName>kuanza angoleño</displayName>
|
||||
<displayName count="one">kuanza angoleño</displayName>
|
||||
<displayName count="other">kuanzas angoleños</displayName>
|
||||
</currency>
|
||||
<currency type="AOK">
|
||||
<displayName>kwanza angoleño (1977–1990)</displayName>
|
||||
@ -4370,9 +4368,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dólares barbadenses</displayName>
|
||||
</currency>
|
||||
<currency type="BDT">
|
||||
<displayName>taka</displayName>
|
||||
<displayName count="one">taka</displayName>
|
||||
<displayName count="other">takas</displayName>
|
||||
<displayName>taka bangladesí</displayName>
|
||||
<displayName count="one">taka bangladesí</displayName>
|
||||
<displayName count="other">takas bangladesíes</displayName>
|
||||
</currency>
|
||||
<currency type="BEC">
|
||||
<displayName>franco belga (convertible)</displayName>
|
||||
@ -4471,9 +4469,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dólares bahameños</displayName>
|
||||
</currency>
|
||||
<currency type="BTN">
|
||||
<displayName>gultrum</displayName>
|
||||
<displayName count="one">gultrum</displayName>
|
||||
<displayName count="other">gultrums</displayName>
|
||||
<displayName>gultrum butanés</displayName>
|
||||
<displayName count="one">gultrum butanés</displayName>
|
||||
<displayName count="other">gultrums butaneses</displayName>
|
||||
</currency>
|
||||
<currency type="BUK">
|
||||
<displayName>kyat birmano</displayName>
|
||||
@ -4481,9 +4479,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">kyat birmanos</displayName>
|
||||
</currency>
|
||||
<currency type="BWP">
|
||||
<displayName>pula</displayName>
|
||||
<displayName count="one">pula</displayName>
|
||||
<displayName count="other">pulas</displayName>
|
||||
<displayName>pula botsuano</displayName>
|
||||
<displayName count="one">pula botsuano</displayName>
|
||||
<displayName count="other">pulas botsuanos</displayName>
|
||||
</currency>
|
||||
<currency type="BYB">
|
||||
<displayName>nuevo rublo bielorruso (1994–1999)</displayName>
|
||||
@ -4548,9 +4546,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">yuanes chinos (extracontinentales)</displayName>
|
||||
</currency>
|
||||
<currency type="CNY">
|
||||
<displayName>yuan</displayName>
|
||||
<displayName count="one">yuan</displayName>
|
||||
<displayName count="other">yuanes</displayName>
|
||||
<displayName>yuan renminbi</displayName>
|
||||
<displayName count="one">yuan renminbi</displayName>
|
||||
<displayName count="other">yuanes renminbi</displayName>
|
||||
<symbol>CNY</symbol>
|
||||
</currency>
|
||||
<currency type="COP">
|
||||
@ -4655,9 +4653,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<symbol alt="narrow">EGP</symbol>
|
||||
</currency>
|
||||
<currency type="ERN">
|
||||
<displayName>nakfa</displayName>
|
||||
<displayName count="one">nakfa</displayName>
|
||||
<displayName count="other">nakfas</displayName>
|
||||
<displayName>nakfa eritreo</displayName>
|
||||
<displayName count="one">nakfa eritreo</displayName>
|
||||
<displayName count="other">nakfas eritreos</displayName>
|
||||
</currency>
|
||||
<currency type="ESA">
|
||||
<displayName>peseta española (cuenta A)</displayName>
|
||||
@ -4676,9 +4674,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<symbol>₧</symbol>
|
||||
</currency>
|
||||
<currency type="ETB">
|
||||
<displayName>bir</displayName>
|
||||
<displayName count="one">bir</displayName>
|
||||
<displayName count="other">bires</displayName>
|
||||
<displayName>bir etíope</displayName>
|
||||
<displayName count="one">bir etíope</displayName>
|
||||
<displayName count="other">bires etíopes</displayName>
|
||||
</currency>
|
||||
<currency type="EUR">
|
||||
<displayName>euro</displayName>
|
||||
@ -4715,17 +4713,17 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>kupon larit georgiano</displayName>
|
||||
</currency>
|
||||
<currency type="GEL">
|
||||
<displayName>lari</displayName>
|
||||
<displayName count="one">lari</displayName>
|
||||
<displayName count="other">laris</displayName>
|
||||
<displayName>lari georgiano</displayName>
|
||||
<displayName count="one">lari georgiano</displayName>
|
||||
<displayName count="other">laris georgianos</displayName>
|
||||
</currency>
|
||||
<currency type="GHC">
|
||||
<displayName>cedi ghanés (1979–2007)</displayName>
|
||||
</currency>
|
||||
<currency type="GHS">
|
||||
<displayName>cedi</displayName>
|
||||
<displayName count="one">cedi</displayName>
|
||||
<displayName count="other">cedis</displayName>
|
||||
<displayName>cedi ghanés</displayName>
|
||||
<displayName count="one">cedi ghanés</displayName>
|
||||
<displayName count="other">cedis ghaneses</displayName>
|
||||
</currency>
|
||||
<currency type="GIP">
|
||||
<displayName>libra gibraltareña</displayName>
|
||||
@ -4733,9 +4731,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">libras gibraltareñas</displayName>
|
||||
</currency>
|
||||
<currency type="GMD">
|
||||
<displayName>dalasi</displayName>
|
||||
<displayName count="one">dalasi</displayName>
|
||||
<displayName count="other">dalasis</displayName>
|
||||
<displayName>dalasi gambiano</displayName>
|
||||
<displayName count="one">dalasi gambiano</displayName>
|
||||
<displayName count="other">dalasis gambianos</displayName>
|
||||
</currency>
|
||||
<currency type="GNF">
|
||||
<displayName>franco guineano</displayName>
|
||||
@ -4788,9 +4786,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dinares croatas</displayName>
|
||||
</currency>
|
||||
<currency type="HRK">
|
||||
<displayName>kuna</displayName>
|
||||
<displayName count="one">kuna</displayName>
|
||||
<displayName count="other">kunas</displayName>
|
||||
<displayName>kuna croata</displayName>
|
||||
<displayName count="one">kuna croata</displayName>
|
||||
<displayName count="other">kunas croatas</displayName>
|
||||
</currency>
|
||||
<currency type="HTG">
|
||||
<displayName>gurde haitiano</displayName>
|
||||
@ -4860,9 +4858,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dinares jordanos</displayName>
|
||||
</currency>
|
||||
<currency type="JPY">
|
||||
<displayName>yen</displayName>
|
||||
<displayName count="one">yen</displayName>
|
||||
<displayName count="other">yenes</displayName>
|
||||
<displayName>yen japonés</displayName>
|
||||
<displayName count="one">yen japonés</displayName>
|
||||
<displayName count="other">yenes japoneses</displayName>
|
||||
<symbol>JPY</symbol>
|
||||
</currency>
|
||||
<currency type="KES">
|
||||
@ -4871,14 +4869,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">chelines kenianos</displayName>
|
||||
</currency>
|
||||
<currency type="KGS">
|
||||
<displayName>som</displayName>
|
||||
<displayName count="one">som</displayName>
|
||||
<displayName count="other">soms</displayName>
|
||||
<displayName>som kirguís</displayName>
|
||||
<displayName count="one">som kirguís</displayName>
|
||||
<displayName count="other">soms kirguises</displayName>
|
||||
</currency>
|
||||
<currency type="KHR">
|
||||
<displayName>riel</displayName>
|
||||
<displayName count="one">riel</displayName>
|
||||
<displayName count="other">rieles</displayName>
|
||||
<displayName>riel camboyano</displayName>
|
||||
<displayName count="one">riel camboyano</displayName>
|
||||
<displayName count="other">rieles camboyanos</displayName>
|
||||
</currency>
|
||||
<currency type="KMF">
|
||||
<displayName>franco comorense</displayName>
|
||||
@ -4912,9 +4910,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">tengues kazajos</displayName>
|
||||
</currency>
|
||||
<currency type="LAK">
|
||||
<displayName>kip</displayName>
|
||||
<displayName count="one">kip</displayName>
|
||||
<displayName count="other">kips</displayName>
|
||||
<displayName>kip laosiano</displayName>
|
||||
<displayName count="one">kip laosiano</displayName>
|
||||
<displayName count="other">kips laosianos</displayName>
|
||||
</currency>
|
||||
<currency type="LBP">
|
||||
<displayName>libra libanesa</displayName>
|
||||
@ -4992,9 +4990,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">leus moldavos</displayName>
|
||||
</currency>
|
||||
<currency type="MGA">
|
||||
<displayName>ariari</displayName>
|
||||
<displayName count="one">ariari</displayName>
|
||||
<displayName count="other">ariaris</displayName>
|
||||
<displayName>ariari malgache</displayName>
|
||||
<displayName count="one">ariari malgache</displayName>
|
||||
<displayName count="other">ariaris malgaches</displayName>
|
||||
</currency>
|
||||
<currency type="MGF">
|
||||
<displayName>franco malgache</displayName>
|
||||
@ -5008,19 +5006,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>franco malí</displayName>
|
||||
</currency>
|
||||
<currency type="MMK">
|
||||
<displayName>kiat</displayName>
|
||||
<displayName count="one">kiat</displayName>
|
||||
<displayName count="other">kiats</displayName>
|
||||
<displayName>kiat de Myanmar</displayName>
|
||||
<displayName count="one">kiat de Myanmar</displayName>
|
||||
<displayName count="other">kiats de Myanmar</displayName>
|
||||
</currency>
|
||||
<currency type="MNT">
|
||||
<displayName>tugrik</displayName>
|
||||
<displayName count="one">tugrik</displayName>
|
||||
<displayName count="other">tugriks</displayName>
|
||||
<displayName>tugrik mongol</displayName>
|
||||
<displayName count="one">tugrik mongol</displayName>
|
||||
<displayName count="other">tugriks mongoles</displayName>
|
||||
</currency>
|
||||
<currency type="MOP">
|
||||
<displayName>pataca de Macao</displayName>
|
||||
<displayName count="one">pataca de Macao</displayName>
|
||||
<displayName count="other">patacas de Macao</displayName>
|
||||
<displayName>pataca macaense</displayName>
|
||||
<displayName count="one">pataca macaense</displayName>
|
||||
<displayName count="other">patacas macaenses</displayName>
|
||||
</currency>
|
||||
<currency type="MRO">
|
||||
<displayName>uguiya (1973–2017)</displayName>
|
||||
@ -5028,9 +5026,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">uguiyas (1973–2017)</displayName>
|
||||
</currency>
|
||||
<currency type="MRU">
|
||||
<displayName>uguiya</displayName>
|
||||
<displayName count="one">uguiya</displayName>
|
||||
<displayName count="other">uguiyas</displayName>
|
||||
<displayName>uguiya mauritano</displayName>
|
||||
<displayName count="one">uguiya mauritano</displayName>
|
||||
<displayName count="other">uguiyas mauritanos</displayName>
|
||||
</currency>
|
||||
<currency type="MTL">
|
||||
<displayName>lira maltesa</displayName>
|
||||
@ -5048,9 +5046,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">rupias mauricianas</displayName>
|
||||
</currency>
|
||||
<currency type="MVR">
|
||||
<displayName>rufiya</displayName>
|
||||
<displayName count="one">rufiya</displayName>
|
||||
<displayName count="other">rufiyas</displayName>
|
||||
<displayName>rufiya maldiva</displayName>
|
||||
<displayName count="one">rufiya maldiva</displayName>
|
||||
<displayName count="other">rufiyas maldivas</displayName>
|
||||
</currency>
|
||||
<currency type="MWK">
|
||||
<displayName>kuacha malauí</displayName>
|
||||
@ -5074,9 +5072,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">unidades de inversión (UDI) mexicanas</displayName>
|
||||
</currency>
|
||||
<currency type="MYR">
|
||||
<displayName>ringit</displayName>
|
||||
<displayName count="one">ringit</displayName>
|
||||
<displayName count="other">ringits</displayName>
|
||||
<displayName>ringit malasio</displayName>
|
||||
<displayName count="one">ringit malasio</displayName>
|
||||
<displayName count="other">ringits malasios</displayName>
|
||||
</currency>
|
||||
<currency type="MZE">
|
||||
<displayName>escudo mozambiqueño</displayName>
|
||||
@ -5087,9 +5085,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>antiguo metical mozambiqueño</displayName>
|
||||
</currency>
|
||||
<currency type="MZN">
|
||||
<displayName>metical</displayName>
|
||||
<displayName count="one">metical</displayName>
|
||||
<displayName count="other">meticales</displayName>
|
||||
<displayName>metical mozambiqueño</displayName>
|
||||
<displayName count="one">metical mozambiqueño</displayName>
|
||||
<displayName count="other">meticales mozambiqueños</displayName>
|
||||
</currency>
|
||||
<currency type="NAD">
|
||||
<displayName>dólar namibio</displayName>
|
||||
@ -5097,9 +5095,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dólares namibios</displayName>
|
||||
</currency>
|
||||
<currency type="NGN">
|
||||
<displayName>naira</displayName>
|
||||
<displayName count="one">naira</displayName>
|
||||
<displayName count="other">nairas</displayName>
|
||||
<displayName>naira nigeriano</displayName>
|
||||
<displayName count="one">naira nigeriano</displayName>
|
||||
<displayName count="other">nairas nigerianos</displayName>
|
||||
</currency>
|
||||
<currency type="NIC">
|
||||
<displayName>córdoba nicaragüense (1988–1991)</displayName>
|
||||
@ -5158,9 +5156,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">soles peruanos (1863–1965)</displayName>
|
||||
</currency>
|
||||
<currency type="PGK">
|
||||
<displayName>kina</displayName>
|
||||
<displayName count="one">kina</displayName>
|
||||
<displayName count="other">kinas</displayName>
|
||||
<displayName>kina papú</displayName>
|
||||
<displayName count="one">kina papú</displayName>
|
||||
<displayName count="other">kinas papúes</displayName>
|
||||
</currency>
|
||||
<currency type="PHP">
|
||||
<displayName>peso filipino</displayName>
|
||||
@ -5174,9 +5172,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">rupias pakistaníes</displayName>
|
||||
</currency>
|
||||
<currency type="PLN">
|
||||
<displayName>esloti</displayName>
|
||||
<displayName count="one">esloti</displayName>
|
||||
<displayName count="other">eslotis</displayName>
|
||||
<displayName>esloti polaco</displayName>
|
||||
<displayName count="one">esloti polaco</displayName>
|
||||
<displayName count="other">eslotis polacos</displayName>
|
||||
</currency>
|
||||
<currency type="PLZ">
|
||||
<displayName>zloty polaco (1950–1995)</displayName>
|
||||
@ -5288,14 +5286,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">coronas eslovacas</displayName>
|
||||
</currency>
|
||||
<currency type="SLE">
|
||||
<displayName>leona</displayName>
|
||||
<displayName count="one">leona</displayName>
|
||||
<displayName count="other">leonas</displayName>
|
||||
<displayName>leona sierraleonesa</displayName>
|
||||
<displayName count="one">leona sierraleonesa</displayName>
|
||||
<displayName count="other">leonas sierraleonesas</displayName>
|
||||
</currency>
|
||||
<currency type="SLL">
|
||||
<displayName>leona (1964—2022)</displayName>
|
||||
<displayName count="one">leona (1964—2022)</displayName>
|
||||
<displayName count="other">leonas (1964—2022)</displayName>
|
||||
<displayName>leona sierraleonesa (1964–2022)</displayName>
|
||||
<displayName count="one">leona sierraleonesa (1964–2022)</displayName>
|
||||
<displayName count="other">leonas sierraleonesas (1964–2022)</displayName>
|
||||
</currency>
|
||||
<currency type="SOS">
|
||||
<displayName>chelín somalí</displayName>
|
||||
@ -5321,9 +5319,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dobras (1977–2017)</displayName>
|
||||
</currency>
|
||||
<currency type="STN">
|
||||
<displayName>dobra</displayName>
|
||||
<displayName count="one">dobra</displayName>
|
||||
<displayName count="other">dobras</displayName>
|
||||
<displayName>dobra santotomense</displayName>
|
||||
<displayName count="one">dobra santotomense</displayName>
|
||||
<displayName count="other">dobras santotomenses</displayName>
|
||||
</currency>
|
||||
<currency type="SUR">
|
||||
<displayName>rublo soviético</displayName>
|
||||
@ -5341,14 +5339,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">libras sirias</displayName>
|
||||
</currency>
|
||||
<currency type="SZL">
|
||||
<displayName>lilangeni</displayName>
|
||||
<displayName count="one">lilangeni</displayName>
|
||||
<displayName count="other">lilangenis</displayName>
|
||||
<displayName>lilangeni esuatiní</displayName>
|
||||
<displayName count="one">lilangeni esuatiní</displayName>
|
||||
<displayName count="other">lilangenis esuatiníes</displayName>
|
||||
</currency>
|
||||
<currency type="THB">
|
||||
<displayName>bat</displayName>
|
||||
<displayName count="one">bat</displayName>
|
||||
<displayName count="other">bats</displayName>
|
||||
<displayName>bat tailandés</displayName>
|
||||
<displayName count="one">bat tailandés</displayName>
|
||||
<displayName count="other">bats tailandeses</displayName>
|
||||
<symbol>฿</symbol>
|
||||
</currency>
|
||||
<currency type="TJR">
|
||||
@ -5375,9 +5373,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">dinares tunecinos</displayName>
|
||||
</currency>
|
||||
<currency type="TOP">
|
||||
<displayName>paanga</displayName>
|
||||
<displayName count="one">paanga</displayName>
|
||||
<displayName count="other">paangas</displayName>
|
||||
<displayName>paanga tongano</displayName>
|
||||
<displayName count="one">paanga tongano</displayName>
|
||||
<displayName count="other">paangas tonganos</displayName>
|
||||
</currency>
|
||||
<currency type="TPE">
|
||||
<displayName>escudo timorense</displayName>
|
||||
@ -5410,9 +5408,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">chelines tanzanos</displayName>
|
||||
</currency>
|
||||
<currency type="UAH">
|
||||
<displayName>grivna</displayName>
|
||||
<displayName count="one">grivna</displayName>
|
||||
<displayName count="other">grivnas</displayName>
|
||||
<displayName>grivna ucraniana</displayName>
|
||||
<displayName count="one">grivna ucraniana</displayName>
|
||||
<displayName count="other">grivnas ucranianas</displayName>
|
||||
</currency>
|
||||
<currency type="UAK">
|
||||
<displayName>karbovanet ucraniano</displayName>
|
||||
@ -5463,9 +5461,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">unidades previsionales uruguayos</displayName>
|
||||
</currency>
|
||||
<currency type="UZS">
|
||||
<displayName>sum</displayName>
|
||||
<displayName count="one">sum</displayName>
|
||||
<displayName count="other">sums</displayName>
|
||||
<displayName>sum uzbeko</displayName>
|
||||
<displayName count="one">sum uzbeko</displayName>
|
||||
<displayName count="other">sums uzbekos</displayName>
|
||||
</currency>
|
||||
<currency type="VEB">
|
||||
<displayName>bolívar venezolano (1871–2008)</displayName>
|
||||
@ -5483,19 +5481,19 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="other">bolívares venezolanos</displayName>
|
||||
</currency>
|
||||
<currency type="VND">
|
||||
<displayName>dong</displayName>
|
||||
<displayName count="one">dong</displayName>
|
||||
<displayName count="other">dongs</displayName>
|
||||
<displayName>dong vietnamita</displayName>
|
||||
<displayName count="one">dong vietnamita</displayName>
|
||||
<displayName count="other">dongs vietnamitas</displayName>
|
||||
</currency>
|
||||
<currency type="VUV">
|
||||
<displayName>vatu</displayName>
|
||||
<displayName count="one">vatu</displayName>
|
||||
<displayName count="other">vatus</displayName>
|
||||
<displayName>vatu vanuatense</displayName>
|
||||
<displayName count="one">vatu vanuatense</displayName>
|
||||
<displayName count="other">vatus vanuatenses</displayName>
|
||||
</currency>
|
||||
<currency type="WST">
|
||||
<displayName>tala</displayName>
|
||||
<displayName count="one">tala</displayName>
|
||||
<displayName count="other">talas</displayName>
|
||||
<displayName>tala samoano</displayName>
|
||||
<displayName count="one">tala samoano</displayName>
|
||||
<displayName count="other">talas samoanos</displayName>
|
||||
</currency>
|
||||
<currency type="XAF">
|
||||
<displayName>franco CFA de África Central</displayName>
|
||||
@ -5609,9 +5607,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName>rand sudafricano (financiero)</displayName>
|
||||
</currency>
|
||||
<currency type="ZAR">
|
||||
<displayName>rand</displayName>
|
||||
<displayName count="one">rand</displayName>
|
||||
<displayName count="other">rands</displayName>
|
||||
<displayName>rand sudafricano</displayName>
|
||||
<displayName count="one">rand sudafricano</displayName>
|
||||
<displayName count="other">rands sudafricanos</displayName>
|
||||
</currency>
|
||||
<currency type="ZMK">
|
||||
<displayName>kwacha zambiano (1968–2012)</displayName>
|
||||
@ -5871,6 +5869,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} quilates</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<gender>masculine</gender>
|
||||
<displayName>miligramos por decilitro</displayName>
|
||||
<unitPattern count="one">{0} miligramo por decilitro</unitPattern>
|
||||
<unitPattern count="other">{0} miligramos por decilitro</unitPattern>
|
||||
@ -6369,6 +6368,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} millas escandinavas</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-point">
|
||||
<gender>masculine</gender>
|
||||
<displayName>puntos</displayName>
|
||||
<unitPattern count="one">{0} punto</unitPattern>
|
||||
<unitPattern count="other">{0} puntos</unitPattern>
|
||||
@ -6530,6 +6530,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} caballos de vapor</unitPattern>
|
||||
</unit>
|
||||
<unit type="pressure-millimeter-ofhg">
|
||||
<gender>masculine</gender>
|
||||
<displayName>milímetros de mercurio</displayName>
|
||||
<unitPattern count="one">{0} milímetro de mercurio</unitPattern>
|
||||
<unitPattern count="other">{0} milímetros de mercurio</unitPattern>
|
||||
@ -6610,6 +6611,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="other">{0} nudos</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-beaufort">
|
||||
<gender>feminine</gender>
|
||||
<displayName>Beaufort</displayName>
|
||||
<unitPattern count="one">Beaufort {0}</unitPattern>
|
||||
<unitPattern count="other">Beaufort {0}</unitPattern>
|
||||
@ -6852,6 +6854,25 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} cuarto imperial</unitPattern>
|
||||
<unitPattern count="other">{0} cuartos imperiales</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<gender>feminine</gender>
|
||||
<displayName>luz</displayName>
|
||||
<unitPattern count="one">{0} luz</unitPattern>
|
||||
<unitPattern count="other">{0} luz</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<gender>feminine</gender>
|
||||
<displayName>partes por millardo</displayName>
|
||||
<unitPattern count="one">{0} parte por millardo</unitPattern>
|
||||
<unitPattern count="other">{0} partes por millardo</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<gender>feminine</gender>
|
||||
<displayName>noches</displayName>
|
||||
<unitPattern count="one">{0} noche</unitPattern>
|
||||
<unitPattern count="other">{0} noches</unitPattern>
|
||||
<perUnitPattern>{0} por noche</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>punto cardinal</displayName>
|
||||
<coordinateUnitPattern type="east">{0} este</coordinateUnitPattern>
|
||||
@ -7230,6 +7251,20 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} qt imp.</unitPattern>
|
||||
<unitPattern count="other">{0} qt imp.</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>luz</displayName>
|
||||
<unitPattern count="one">{0} luz</unitPattern>
|
||||
<unitPattern count="other">{0} luz</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>partes/millardo</displayName>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noches</displayName>
|
||||
<unitPattern count="one">{0} noche</unitPattern>
|
||||
<unitPattern count="other">{0} noches</unitPattern>
|
||||
<perUnitPattern>{0}/noche</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<displayName>punto</displayName>
|
||||
<coordinateUnitPattern type="east">{0} E</coordinateUnitPattern>
|
||||
@ -7985,6 +8020,21 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}qt imp</unitPattern>
|
||||
<unitPattern count="other">{0}qt imp</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-light-speed">
|
||||
<displayName>luz</displayName>
|
||||
<unitPattern count="one">{0}luz</unitPattern>
|
||||
<unitPattern count="other">{0}luz</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<unitPattern count="one">{0}ppb</unitPattern>
|
||||
<unitPattern count="other">{0}ppb</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<displayName>noches</displayName>
|
||||
<unitPattern count="one">{0}noche</unitPattern>
|
||||
<unitPattern count="other">{0}noches</unitPattern>
|
||||
<perUnitPattern>{0}/noche</perUnitPattern>
|
||||
</unit>
|
||||
<coordinateUnit>
|
||||
<coordinateUnitPattern type="east">{0}E</coordinateUnitPattern>
|
||||
<coordinateUnitPattern type="north">{0}N</coordinateUnitPattern>
|
||||
|
||||
@ -28,7 +28,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="kbd">cabardiano</language>
|
||||
<language type="krc">karachái-bálkaro</language>
|
||||
<language type="ks">cachemiro</language>
|
||||
<language type="lo">laosiano</language>
|
||||
<language type="lij">genovés</language>
|
||||
<language type="ml">malabar</language>
|
||||
<language type="mni">manipuri</language>
|
||||
<language type="nr">ndebele del sur</language>
|
||||
@ -47,6 +47,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<language type="tet">tetun</language>
|
||||
<language type="tyv">tuvano</language>
|
||||
<language type="ug" alt="variant">uighur</language>
|
||||
<language type="vec">véneto</language>
|
||||
<language type="wal">walamo</language>
|
||||
<language type="wuu">wu</language>
|
||||
<language type="xal">calmuco</language>
|
||||
@ -96,8 +97,8 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<key type="colNormalization">orden normalizado</key>
|
||||
</keys>
|
||||
<types>
|
||||
<type key="calendar" type="islamic-rgsa" draft="provisional">calendario islámico (Arabia Saudita)</type>
|
||||
<type key="calendar" type="islamic-tbla" draft="provisional">calendario islámico tabular</type>
|
||||
<type key="calendar" type="islamic-rgsa" draft="contributed">calendario islámico (Arabia Saudita)</type>
|
||||
<type key="calendar" type="islamic-tbla">calendario islámico tabular</type>
|
||||
<type key="colAlternate" type="non-ignorable">ordenar símbolos</type>
|
||||
<type key="colAlternate" type="shifted">ordenar ignorando símbolos</type>
|
||||
<type key="colBackwards" type="no">ordenar acentos normalmente</type>
|
||||
@ -576,24 +577,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<relativeTimePattern count="other">en {0} domingos</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="fri-short">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">hace {0} viernes</relativeTimePattern>
|
||||
<relativeTimePattern count="other">hace {0} viernes</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="fri-narrow">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">hace {0} viernes</relativeTimePattern>
|
||||
<relativeTimePattern count="other">hace {0} viernes</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sat-narrow">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">hace {0} sábados</relativeTimePattern>
|
||||
<relativeTimePattern count="other">hace {0} sábados</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="dayperiod">
|
||||
<displayName>a.m./p.m.</displayName>
|
||||
</field>
|
||||
@ -774,16 +757,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<group>,</group>
|
||||
</symbols>
|
||||
<decimalFormats numberSystem="latn">
|
||||
<decimalFormatLength type="long">
|
||||
<decimalFormat>
|
||||
<pattern type="1000000000000" count="one">0 billón</pattern>
|
||||
<pattern type="1000000000000" count="other">0 billón</pattern>
|
||||
<pattern type="10000000000000" count="one">00 billones</pattern>
|
||||
<pattern type="10000000000000" count="other">00 billones</pattern>
|
||||
<pattern type="100000000000000" count="one">000 billones</pattern>
|
||||
<pattern type="100000000000000" count="other">000 billones</pattern>
|
||||
</decimalFormat>
|
||||
</decimalFormatLength>
|
||||
<decimalFormatLength type="short">
|
||||
<decimalFormat>
|
||||
<pattern type="1000" count="one">0 K</pattern>
|
||||
@ -902,6 +875,16 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<displayName count="one">córdoba nicaragüense</displayName>
|
||||
<displayName count="other">córdobas nicaragüenses</displayName>
|
||||
</currency>
|
||||
<currency type="SLE">
|
||||
<displayName>leone</displayName>
|
||||
<displayName count="one">leone</displayName>
|
||||
<displayName count="other">leones</displayName>
|
||||
</currency>
|
||||
<currency type="SLL">
|
||||
<displayName>leones (1964—2022)</displayName>
|
||||
<displayName count="one">leone (1964—2022)</displayName>
|
||||
<displayName count="other">leones (1964—2022)</displayName>
|
||||
</currency>
|
||||
<currency type="SSP">
|
||||
<symbol alt="narrow">SD£</symbol>
|
||||
</currency>
|
||||
@ -941,9 +924,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} unidad de fuerza gravitacional</unitPattern>
|
||||
<unitPattern count="other">{0} unidades de fuerza gravitacional</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<displayName>mg/dL</displayName>
|
||||
</unit>
|
||||
<unit type="electric-ampere">
|
||||
<displayName>amperes</displayName>
|
||||
<unitPattern count="one">{0} ampere</unitPattern>
|
||||
@ -990,6 +970,9 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">caballo de fuerza</unitPattern>
|
||||
<unitPattern count="other">{0} caballos de fuerza</unitPattern>
|
||||
</unit>
|
||||
<unit type="speed-beaufort">
|
||||
<gender>masculine</gender>
|
||||
</unit>
|
||||
<unit type="temperature-generic">
|
||||
<unitPattern count="one">{0}°</unitPattern>
|
||||
<unitPattern count="other">{0}°</unitPattern>
|
||||
@ -1009,6 +992,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0} onza fluida</unitPattern>
|
||||
<unitPattern count="other">{0} onzas fluidas</unitPattern>
|
||||
</unit>
|
||||
<unit type="concentr-portion-per-1e9">
|
||||
<displayName>partes por mil millones</displayName>
|
||||
<unitPattern count="one">{0} parte por mil millones</unitPattern>
|
||||
<unitPattern count="other">{0} partes por mil millones</unitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
<unitLength type="short">
|
||||
<unit type="acceleration-g-force">
|
||||
@ -1148,10 +1136,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}d.</unitPattern>
|
||||
<unitPattern count="other">{0}dd.</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-calorie">
|
||||
<unitPattern count="one">{0} cal</unitPattern>
|
||||
<unitPattern count="other">{0}cal</unitPattern>
|
||||
</unit>
|
||||
<unit type="energy-therm-us">
|
||||
<unitPattern count="one">{0}thm EE.UU.</unitPattern>
|
||||
<unitPattern count="other">{0}thm EE.UU.</unitPattern>
|
||||
@ -1170,7 +1154,11 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unit type="length-light-year">
|
||||
<displayName>aa. l.</displayName>
|
||||
<unitPattern count="one">{0}a. l.</unitPattern>
|
||||
<unitPattern count="other">{0}a.a. l.</unitPattern>
|
||||
<unitPattern count="other">{0}aa. l.</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-astronomical-unit">
|
||||
<unitPattern count="one">{0}ua</unitPattern>
|
||||
<unitPattern count="other">{0}ua</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-nautical-mile">
|
||||
<unitPattern count="one">{0}nmi</unitPattern>
|
||||
@ -1184,14 +1172,6 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}ton</unitPattern>
|
||||
<unitPattern count="other">{0}ton</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-pound">
|
||||
<unitPattern count="one">{0} lb</unitPattern>
|
||||
<unitPattern count="other">{0}lb</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-ounce">
|
||||
<unitPattern count="one">{0} oz</unitPattern>
|
||||
<unitPattern count="other">{0}oz</unitPattern>
|
||||
</unit>
|
||||
<unit type="mass-ounce-troy">
|
||||
<unitPattern count="one">{0}ozt</unitPattern>
|
||||
<unitPattern count="other">{0}ozt</unitPattern>
|
||||
@ -1221,9 +1201,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<unitPattern count="one">{0}bbl</unitPattern>
|
||||
<unitPattern count="other">{0}bbl</unitPattern>
|
||||
</unit>
|
||||
<unit type="volume-quart-imperial">
|
||||
<unitPattern count="one">{0} qt imp.</unitPattern>
|
||||
<unitPattern count="other">{0}qt imp</unitPattern>
|
||||
<unit type="speed-light-speed">
|
||||
<unitPattern count="one">{0} luz</unitPattern>
|
||||
<unitPattern count="other">{0} luz</unitPattern>
|
||||
</unit>
|
||||
<unit type="duration-night">
|
||||
<unitPattern count="one">{0} noche</unitPattern>
|
||||
<unitPattern count="other">{0} noches</unitPattern>
|
||||
</unit>
|
||||
</unitLength>
|
||||
</units>
|
||||
@ -1243,7 +1227,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
|
||||
<characterLabel type="building">edificio</characterLabel>
|
||||
<characterLabel type="consonantal_jamo">Jamo consonántico</characterLabel>
|
||||
<characterLabel type="currency_symbols">símbolos de monedas</characterLabel>
|
||||
<characterLabel type="dash_connector">Guión/conector</characterLabel>
|
||||
<characterLabel type="dash_connector">Guion/conector</characterLabel>
|
||||
<characterLabel type="digits">dígitos</characterLabel>
|
||||
<characterLabel type="downwards_upwards_arrows">Flechas hacia arriba y hacia abajo</characterLabel>
|
||||
<characterLabel type="european_scripts">Símbolos de escritura de Europa</characterLabel>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
@ -260,8 +259,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<pattern type="100000000000" count="other" alt="alphaNextToNumber" draft="contributed">¤ 000MRD</pattern>
|
||||
</currencyFormat>
|
||||
</currencyFormatLength>
|
||||
<unitPattern count="one" draft="contributed">{0} {1}</unitPattern>
|
||||
<unitPattern count="other" draft="contributed">{1} {0}</unitPattern>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="GTQ">
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -45,7 +45,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="kgp">kaingang</language>
|
||||
<language type="krc">karachái bálkaro</language>
|
||||
<language type="kum">cumuco</language>
|
||||
<language type="lo">lao</language>
|
||||
<language type="mga" draft="contributed">irlandés medieval</language>
|
||||
<language type="nan" draft="contributed">min nan (Chino)</language>
|
||||
<language type="nr">ndebele meridional</language>
|
||||
@ -154,10 +153,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<dayPeriod type="am">a. m.</dayPeriod>
|
||||
<dayPeriod type="pm">p. m.</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
<dayPeriodWidth type="narrow">
|
||||
<dayPeriod type="am">a. m.</dayPeriod>
|
||||
<dayPeriod type="pm">p. m.</dayPeriod>
|
||||
</dayPeriodWidth>
|
||||
</dayPeriodContext>
|
||||
</dayPeriods>
|
||||
<dateFormats>
|
||||
@ -392,27 +387,15 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<field type="weekOfMonth-short">
|
||||
<displayName>sem. de m</displayName>
|
||||
</field>
|
||||
<field type="weekOfMonth-narrow">
|
||||
<displayName>sem. de m</displayName>
|
||||
</field>
|
||||
<field type="day-short">
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">en {0} día</relativeTimePattern>
|
||||
<relativeTimePattern count="other">en {0} días</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="day-narrow">
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">en {0} día</relativeTimePattern>
|
||||
<relativeTimePattern count="other">en {0} días</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="dayOfYear-short">
|
||||
<displayName>día del a</displayName>
|
||||
</field>
|
||||
<field type="dayOfYear-narrow">
|
||||
<displayName>día del a</displayName>
|
||||
</field>
|
||||
<field type="sun">
|
||||
<relative type="-1">el domingo pasado</relative>
|
||||
<relative type="0">este domingo</relative>
|
||||
@ -456,28 +439,12 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<relative type="-1">el vier. pasado</relative>
|
||||
<relative type="0">este vier.</relative>
|
||||
<relative type="1">el próximo vier.</relative>
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">hace {0} vie.</relativeTimePattern>
|
||||
<relativeTimePattern count="other">hace {0} vie.</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="fri-narrow">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">hace {0} VI</relativeTimePattern>
|
||||
<relativeTimePattern count="other">hace {0} VI</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="sat">
|
||||
<relative type="-1">el sábado pasado</relative>
|
||||
<relative type="0">este sábado</relative>
|
||||
<relative type="1">el sábado próximo</relative>
|
||||
</field>
|
||||
<field type="sat-narrow">
|
||||
<relativeTime type="past">
|
||||
<relativeTimePattern count="one">hace {0} SA</relativeTimePattern>
|
||||
<relativeTimePattern count="other">hace {0} SA</relativeTimePattern>
|
||||
</relativeTime>
|
||||
</field>
|
||||
<field type="hour-short">
|
||||
<relativeTime type="future">
|
||||
<relativeTimePattern count="one">en {0} h</relativeTimePattern>
|
||||
@ -492,6 +459,9 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</field>
|
||||
</fields>
|
||||
<timeZoneNames>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Africa/Bujumbura">
|
||||
<exemplarCity>Buyumbura</exemplarCity>
|
||||
</zone>
|
||||
@ -519,9 +489,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<zone type="Pacific/Wake">
|
||||
<exemplarCity>Wake</exemplarCity>
|
||||
</zone>
|
||||
<zone type="Pacific/Honolulu">
|
||||
<exemplarCity>Honolulu</exemplarCity>
|
||||
</zone>
|
||||
<zone type="America/St_Thomas">
|
||||
<exemplarCity>St. Thomas</exemplarCity>
|
||||
</zone>
|
||||
@ -611,16 +578,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</dates>
|
||||
<numbers>
|
||||
<decimalFormats numberSystem="latn">
|
||||
<decimalFormatLength type="long">
|
||||
<decimalFormat>
|
||||
<pattern type="1000000000000" count="one">0 billón</pattern>
|
||||
<pattern type="1000000000000" count="other">0 billones</pattern>
|
||||
<pattern type="10000000000000" count="one">00 billones</pattern>
|
||||
<pattern type="10000000000000" count="other">00 billones</pattern>
|
||||
<pattern type="100000000000000" count="one">000 billones</pattern>
|
||||
<pattern type="100000000000000" count="other">000 billones</pattern>
|
||||
</decimalFormat>
|
||||
</decimalFormatLength>
|
||||
<decimalFormatLength type="short">
|
||||
<decimalFormat>
|
||||
<pattern type="1000" count="one">0 k</pattern>
|
||||
@ -683,15 +640,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</currencyFormatLength>
|
||||
</currencyFormats>
|
||||
<currencies>
|
||||
<currency type="AMD">
|
||||
<displayName count="one">dram armenio</displayName>
|
||||
<displayName count="other">drams armenios</displayName>
|
||||
</currency>
|
||||
<currency type="BDT">
|
||||
<displayName>taka bangladesí</displayName>
|
||||
<displayName count="one">taka bangladesí</displayName>
|
||||
<displayName count="other">takas bangladesíes</displayName>
|
||||
</currency>
|
||||
<currency type="BTN">
|
||||
<displayName>ngultrum butanés</displayName>
|
||||
<displayName count="one">ngultrum butanés</displayName>
|
||||
@ -703,21 +651,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<currency type="FKP">
|
||||
<symbol alt="narrow">£</symbol>
|
||||
</currency>
|
||||
<currency type="KGS">
|
||||
<displayName>som kirguís</displayName>
|
||||
<displayName count="one">som kirguís</displayName>
|
||||
<displayName count="other">soms kirguises</displayName>
|
||||
</currency>
|
||||
<currency type="KHR">
|
||||
<displayName>riel camboyano</displayName>
|
||||
<displayName count="one">riel camboyano</displayName>
|
||||
<displayName count="other">rieles camboyanos</displayName>
|
||||
</currency>
|
||||
<currency type="LAK">
|
||||
<displayName>kip laosiano</displayName>
|
||||
<displayName count="one">kip laosiano</displayName>
|
||||
<displayName count="other">kips laosianos</displayName>
|
||||
</currency>
|
||||
<currency type="LVL">
|
||||
<displayName count="one" draft="contributed">lats letón</displayName>
|
||||
<displayName count="other" draft="contributed">lats letones</displayName>
|
||||
@ -744,11 +677,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<currency type="SSP">
|
||||
<symbol alt="narrow">£</symbol>
|
||||
</currency>
|
||||
<currency type="STN">
|
||||
<displayName>dobra santotomense</displayName>
|
||||
<displayName count="one">dobra santotomense</displayName>
|
||||
<displayName count="other">dobras santotomenses</displayName>
|
||||
</currency>
|
||||
<currency type="SYP">
|
||||
<symbol alt="narrow">£</symbol>
|
||||
</currency>
|
||||
@ -764,11 +692,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<displayName count="one">bolívar venezolano</displayName>
|
||||
<displayName count="other">bolivares venezolanos</displayName>
|
||||
</currency>
|
||||
<currency type="VND">
|
||||
<displayName>dong vietnamita</displayName>
|
||||
<displayName count="one">dong vietnamita</displayName>
|
||||
<displayName count="other">dongs vietnamitas</displayName>
|
||||
</currency>
|
||||
<currency type="XXX">
|
||||
<displayName count="one">(moneda desconocida)</displayName>
|
||||
<displayName count="other">(moneda desconocida)</displayName>
|
||||
@ -782,9 +705,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
</numbers>
|
||||
<units>
|
||||
<unitLength type="long">
|
||||
<unit type="concentr-milligram-ofglucose-per-deciliter">
|
||||
<displayName>miligramos por decilitro</displayName>
|
||||
</unit>
|
||||
<unit type="concentr-percent">
|
||||
<displayName>por ciento</displayName>
|
||||
</unit>
|
||||
@ -1020,16 +940,10 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<unitPattern count="one">{0} mm</unitPattern>
|
||||
<unitPattern count="other">{0}mm</unitPattern>
|
||||
</unit>
|
||||
<unit type="length-nautical-mile">
|
||||
<displayName>M</displayName>
|
||||
</unit>
|
||||
<unit type="mass-kilogram">
|
||||
<unitPattern count="one">{0} kg</unitPattern>
|
||||
<unitPattern count="other">{0}kg</unitPattern>
|
||||
</unit>
|
||||
<unit type="power-horsepower">
|
||||
<displayName>CV</displayName>
|
||||
</unit>
|
||||
<unit type="pressure-atmosphere">
|
||||
<unitPattern count="one">{0} atm</unitPattern>
|
||||
<unitPattern count="other">{0}atm</unitPattern>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
@ -18,7 +18,6 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
||||
<language type="bho" draft="contributed">bhojpuri</language>
|
||||
<language type="eu" draft="contributed">euskera</language>
|
||||
<language type="grc" draft="contributed">griego antiguo</language>
|
||||
<language type="lo" draft="contributed">lao</language>
|
||||
<language type="nso" draft="contributed">sotho septentrional</language>
|
||||
<language type="pa" draft="contributed">punyabí</language>
|
||||
<language type="ss" draft="contributed">siswati</language>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user