ICU-20489 Removing resfiles.mk files.
Builds res_index.txt based on directory glob minus aliases read from deprecates XML file. In ICU 64, please use the ICU Data Build Tool instead of reslocal.mk for locale filtering.
This commit is contained in:
parent
2849784108
commit
56ffae8a0b
@ -5,13 +5,14 @@
|
||||
# TODO(ICU-20301): Remove this.
|
||||
from __future__ import print_function
|
||||
|
||||
from distutils.sysconfig import parse_makefile
|
||||
|
||||
from buildtool import *
|
||||
from buildtool import locale_dependencies
|
||||
from buildtool import utils
|
||||
from buildtool.request_types import *
|
||||
|
||||
import os
|
||||
import sys
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
|
||||
def generate(config, glob, common_vars):
|
||||
@ -41,63 +42,49 @@ def generate(config, glob, common_vars):
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"locales",
|
||||
None,
|
||||
"resfiles.mk",
|
||||
"GENRB_CLDR_VERSION",
|
||||
"GENRB_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
True,
|
||||
[])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"curr",
|
||||
"curr",
|
||||
"resfiles.mk",
|
||||
"CURR_CLDR_VERSION",
|
||||
"CURR_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
True,
|
||||
[])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"lang",
|
||||
"lang",
|
||||
"resfiles.mk",
|
||||
"LANG_CLDR_VERSION",
|
||||
"LANG_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
True,
|
||||
[])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"region",
|
||||
"region",
|
||||
"resfiles.mk",
|
||||
"REGION_CLDR_VERSION",
|
||||
"REGION_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
True,
|
||||
[])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"zone",
|
||||
"zone",
|
||||
"resfiles.mk",
|
||||
"ZONE_CLDR_VERSION",
|
||||
"ZONE_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
True,
|
||||
[])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"unit",
|
||||
"unit",
|
||||
"resfiles.mk",
|
||||
"UNIT_CLDR_VERSION",
|
||||
"UNIT_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
True,
|
||||
[])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"coll",
|
||||
"coll",
|
||||
"colfiles.mk",
|
||||
"COLLATION_CLDR_VERSION",
|
||||
"COLLATION_SOURCE",
|
||||
"icu-coll-deprecates.xml",
|
||||
False,
|
||||
# Depends on timezoneTypes.res and keyTypeData.res.
|
||||
# TODO: We should not need this dependency to build collation.
|
||||
@ -107,18 +94,14 @@ def generate(config, glob, common_vars):
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"brkitr",
|
||||
"brkitr",
|
||||
"brkfiles.mk",
|
||||
"BRK_RES_CLDR_VERSION",
|
||||
"BRK_RES_SOURCE",
|
||||
"icu-locale-deprecates.xml",
|
||||
False,
|
||||
[DepTarget("brkitr_brk"), DepTarget("dictionaries")])
|
||||
|
||||
requests += generate_tree(config, glob, common_vars,
|
||||
"rbnf",
|
||||
"rbnf",
|
||||
"rbnffiles.mk",
|
||||
"RBNF_CLDR_VERSION",
|
||||
"RBNF_SOURCE",
|
||||
"icu-rbnf-deprecates.xml",
|
||||
False,
|
||||
[])
|
||||
|
||||
@ -464,9 +447,7 @@ def generate_tree(
|
||||
common_vars,
|
||||
sub_dir,
|
||||
out_sub_dir,
|
||||
resfile_name,
|
||||
version_var,
|
||||
source_var,
|
||||
xml_filename,
|
||||
use_pool_bundle,
|
||||
dep_targets):
|
||||
requests = []
|
||||
@ -536,20 +517,25 @@ def generate_tree(
|
||||
]
|
||||
|
||||
# Generate index txt file
|
||||
# TODO: Change .mk files to .py files so they can be loaded directly.
|
||||
# Alternatively, figure out a way to not require reading this file altogether.
|
||||
# Right now, it is required for the index list file.
|
||||
# Reading these files as .py will be required for Bazel.
|
||||
mk_values = parse_makefile("{GLOB_DIR}/{IN_SUB_DIR}/{RESFILE_NAME}".format(
|
||||
IN_SUB_DIR = sub_dir,
|
||||
RESFILE_NAME = resfile_name,
|
||||
**common_vars
|
||||
))
|
||||
cldr_version = mk_values[version_var] if version_var and sub_dir == "locales" else None
|
||||
index_input_files = [
|
||||
InFile("%s/%s" % (sub_dir, basename))
|
||||
for basename in mk_values[source_var].split()
|
||||
]
|
||||
synthetic_locales = set()
|
||||
deprecates_xml_path = os.path.join(os.path.dirname(__file__), xml_filename)
|
||||
deprecates_xml = ET.parse(deprecates_xml_path)
|
||||
for child in deprecates_xml.getroot():
|
||||
if child.tag == "alias":
|
||||
synthetic_locales.add(child.attrib["from"])
|
||||
elif child.tag == "emptyLocale":
|
||||
synthetic_locales.add(child.attrib["locale"])
|
||||
else:
|
||||
raise ValueError("Unknown tag in deprecates XML: %s" % child.tag)
|
||||
index_input_files = []
|
||||
for f in input_files:
|
||||
file_stem = f.filename[f.filename.rfind("/")+1:-4]
|
||||
if file_stem == "root":
|
||||
continue
|
||||
if file_stem in synthetic_locales:
|
||||
continue
|
||||
index_input_files.append(f)
|
||||
cldr_version = locale_dependencies.data["cldrVersion"] if sub_dir == "locales" else None
|
||||
index_file_txt = TmpFile("{IN_SUB_DIR}/{INDEX_NAME}.txt".format(
|
||||
IN_SUB_DIR = sub_dir,
|
||||
**common_vars
|
||||
|
@ -1,57 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
BRK_RES_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'brklocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'brklocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | BRK_RES_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | BRK_RES_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
BRK_RES_SYNTHETIC_ALIAS =
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
BRK_RES_ALIAS_SOURCE = $(BRK_RES_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# List of dictionary files (dict).
|
||||
BRK_DICT_SOURCE = burmesedict.txt cjdict.txt khmerdict.txt laodict.txt\
|
||||
thaidict.txt
|
||||
|
||||
|
||||
# List of break iterator files (brk).
|
||||
BRK_SOURCE = char.txt line.txt line_cj.txt line_loose.txt\
|
||||
line_loose_cj.txt line_normal.txt line_normal_cj.txt sent.txt sent_el.txt\
|
||||
title.txt word.txt word_POSIX.txt
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
BRK_RES_SOURCE = de.txt el.txt en.txt en_US.txt\
|
||||
en_US_POSIX.txt es.txt fr.txt it.txt ja.txt\
|
||||
pt.txt ru.txt zh.txt zh_Hant.txt
|
||||
|
@ -111,7 +111,6 @@
|
||||
<arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/main"/>
|
||||
<arg name="--supplementaldir" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="--type" value="locales"/>
|
||||
<arg name="--makefile" value="resfiles.mk"/>
|
||||
<arg name="--depgraphfile" value="../buildtool/locale_dependencies.py"/>
|
||||
</args>
|
||||
<remapper>
|
||||
@ -163,7 +162,6 @@
|
||||
<arg name="--destdir" value="${env.ICU4C_DIR}/source/data/coll"/>
|
||||
<arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/collation"/>
|
||||
<arg name="--type" value="collation"/>
|
||||
<arg name="--makefile" value="colfiles.mk"/>
|
||||
</args>
|
||||
<!-- http://ant.apache.org/faq.html#xml-entity-include -->
|
||||
&icu-config;
|
||||
@ -179,7 +177,6 @@
|
||||
<arg name="--destdir" value="${env.ICU4C_DIR}/source/data/rbnf"/>
|
||||
<arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/rbnf"/>
|
||||
<arg name="--type" value="rbnf" />
|
||||
<arg name="--makefile" value="rbnffiles.mk"/>
|
||||
</args>
|
||||
<!-- http://ant.apache.org/faq.html#xml-entity-include -->
|
||||
&icu-config;
|
||||
@ -319,7 +316,6 @@
|
||||
<arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/brkitr"/>
|
||||
<arg name="--destdir" value="${env.ICU4C_DIR}/source/data/brkitr"/>
|
||||
<arg name="--type" value="brkitr" />
|
||||
<arg name="--makefile" value="brkfiles.mk"/>
|
||||
</args>
|
||||
<!-- The entity include is not required for this target -->
|
||||
<!-- http://ant.apache.org/faq.html#xml-entity-include
|
||||
|
@ -3,6 +3,7 @@
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
|
||||
data = {
|
||||
"cldrVersion": "35",
|
||||
"aliases": {
|
||||
"ars": "ar_SA",
|
||||
"az_AZ": "az_Latn_AZ",
|
||||
|
@ -140,6 +140,7 @@
|
||||
# 1a. Java and ant variables, adjust for your system
|
||||
|
||||
export JAVA_HOME=`/usr/libexec/java_home`
|
||||
mkdir -p /tmp/cldrdtd
|
||||
export ANT_OPTS="-Xmx4096m -DCLDR_DTD_CACHE=/tmp/cldrdtd"
|
||||
|
||||
# 1b. CLDR variables, adjust for your setup; with cygwin it might be e.g.
|
||||
|
@ -1,80 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
COLLATION_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'collocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'collocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | COLLATION_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | COLLATION_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
COLLATION_SYNTHETIC_ALIAS = ars.txt de_.txt de__PHONEBOOK.txt es_.txt\
|
||||
es__TRADITIONAL.txt he_IL.txt id_ID.txt in.txt in_ID.txt\
|
||||
iw.txt iw_IL.txt mo.txt nb_NO.txt no.txt\
|
||||
no_NO.txt pa_Guru.txt pa_Guru_IN.txt pa_IN.txt ro_MD.txt\
|
||||
sh.txt sh_BA.txt sh_CS.txt sh_YU.txt sr_BA.txt\
|
||||
sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_RS.txt sr_Latn_BA.txt\
|
||||
sr_Latn_RS.txt sr_ME.txt sr_RS.txt yue.txt yue_CN.txt\
|
||||
yue_Hans.txt zh_CN.txt zh_HK.txt zh_Hans.txt zh_Hans_CN.txt\
|
||||
zh_Hans_SG.txt zh_Hant_HK.txt zh_Hant_MO.txt zh_Hant_TW.txt zh_MO.txt\
|
||||
zh_SG.txt zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
COLLATION_ALIAS_SOURCE = $(COLLATION_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Empty locales, used for validSubLocale fallback.
|
||||
COLLATION_EMPTY_SOURCE =
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
COLLATION_SOURCE = $(COLLATION_EMPTY_SOURCE) af.txt am.txt ar.txt\
|
||||
as.txt az.txt be.txt bg.txt bn.txt\
|
||||
bo.txt bs.txt bs_Cyrl.txt ca.txt ceb.txt\
|
||||
chr.txt cs.txt cy.txt da.txt de.txt\
|
||||
de_AT.txt dsb.txt dz.txt ee.txt el.txt\
|
||||
en.txt en_US.txt en_US_POSIX.txt eo.txt es.txt\
|
||||
et.txt fa.txt fa_AF.txt fi.txt fil.txt\
|
||||
fo.txt fr.txt fr_CA.txt ga.txt gl.txt\
|
||||
gu.txt ha.txt haw.txt he.txt hi.txt\
|
||||
hr.txt hsb.txt hu.txt hy.txt id.txt\
|
||||
ig.txt is.txt it.txt ja.txt ka.txt\
|
||||
kk.txt kl.txt km.txt kn.txt ko.txt\
|
||||
kok.txt ku.txt ky.txt lb.txt lkt.txt\
|
||||
ln.txt lo.txt lt.txt lv.txt mk.txt\
|
||||
ml.txt mn.txt mr.txt ms.txt mt.txt\
|
||||
my.txt nb.txt ne.txt nl.txt nn.txt\
|
||||
om.txt or.txt pa.txt pl.txt ps.txt\
|
||||
pt.txt ro.txt ru.txt se.txt si.txt\
|
||||
sk.txt sl.txt smn.txt sq.txt sr.txt\
|
||||
sr_Latn.txt sv.txt sw.txt ta.txt te.txt\
|
||||
th.txt tk.txt to.txt tr.txt ug.txt\
|
||||
uk.txt ur.txt uz.txt vi.txt wae.txt\
|
||||
wo.txt xh.txt yi.txt yo.txt zh.txt\
|
||||
zh_Hant.txt zu.txt
|
||||
|
@ -1,145 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
CURR_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'reslocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'reslocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | CURR_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | CURR_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
CURR_SYNTHETIC_ALIAS = ar_SA.txt ars.txt az_AZ.txt az_Latn_AZ.txt\
|
||||
bs_BA.txt bs_Latn_BA.txt en_NH.txt en_RH.txt fil_PH.txt\
|
||||
he_IL.txt id_ID.txt in.txt in_ID.txt iw.txt\
|
||||
iw_IL.txt ja_JP.txt ja_JP_TRADITIONAL.txt mo.txt nb_NO.txt\
|
||||
nn_NO.txt no.txt no_NO.txt no_NO_NY.txt pa_Arab_PK.txt\
|
||||
pa_Guru_IN.txt pa_IN.txt pa_PK.txt sh.txt sh_BA.txt\
|
||||
sh_CS.txt sh_YU.txt shi_MA.txt shi_Tfng_MA.txt sr_BA.txt\
|
||||
sr_CS.txt sr_Cyrl_BA.txt sr_Cyrl_CS.txt sr_Cyrl_RS.txt sr_Cyrl_XK.txt\
|
||||
sr_Cyrl_YU.txt sr_Latn_BA.txt sr_Latn_CS.txt sr_Latn_ME.txt sr_Latn_RS.txt\
|
||||
sr_Latn_YU.txt sr_ME.txt sr_RS.txt sr_XK.txt sr_YU.txt\
|
||||
th_TH.txt th_TH_TRADITIONAL.txt tl.txt tl_PH.txt uz_AF.txt\
|
||||
uz_Arab_AF.txt uz_Latn_UZ.txt uz_UZ.txt vai_LR.txt vai_Vaii_LR.txt\
|
||||
yue_CN.txt yue_HK.txt yue_Hans_CN.txt yue_Hant_HK.txt zh_CN.txt\
|
||||
zh_HK.txt zh_Hans_CN.txt zh_Hant_TW.txt zh_MO.txt zh_SG.txt\
|
||||
zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
CURR_ALIAS_SOURCE = $(CURR_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
CURR_SOURCE = af.txt af_NA.txt agq.txt ak.txt\
|
||||
am.txt ar.txt ar_AE.txt ar_DJ.txt ar_ER.txt\
|
||||
ar_KM.txt ar_LB.txt ar_SO.txt ar_SS.txt as.txt\
|
||||
asa.txt ast.txt az.txt az_Cyrl.txt az_Latn.txt\
|
||||
bas.txt be.txt bem.txt bez.txt bg.txt\
|
||||
bm.txt bn.txt bo.txt bo_IN.txt br.txt\
|
||||
brx.txt bs.txt bs_Cyrl.txt bs_Latn.txt ca.txt\
|
||||
ca_FR.txt ccp.txt ce.txt ceb.txt cgg.txt\
|
||||
chr.txt ckb.txt cs.txt cy.txt da.txt\
|
||||
dav.txt de.txt de_CH.txt de_LI.txt de_LU.txt\
|
||||
dje.txt dsb.txt dua.txt dyo.txt dz.txt\
|
||||
ebu.txt ee.txt el.txt en.txt en_001.txt\
|
||||
en_150.txt en_AE.txt en_AG.txt en_AI.txt en_AT.txt\
|
||||
en_AU.txt en_BB.txt en_BE.txt en_BI.txt en_BM.txt\
|
||||
en_BS.txt en_BW.txt en_BZ.txt en_CA.txt en_CC.txt\
|
||||
en_CH.txt en_CK.txt en_CM.txt en_CX.txt en_CY.txt\
|
||||
en_DE.txt en_DG.txt en_DK.txt en_DM.txt en_ER.txt\
|
||||
en_FI.txt en_FJ.txt en_FK.txt en_FM.txt en_GB.txt\
|
||||
en_GD.txt en_GG.txt en_GH.txt en_GI.txt en_GM.txt\
|
||||
en_GY.txt en_HK.txt en_IE.txt en_IL.txt en_IM.txt\
|
||||
en_IN.txt en_IO.txt en_JE.txt en_JM.txt en_KE.txt\
|
||||
en_KI.txt en_KN.txt en_KY.txt en_LC.txt en_LR.txt\
|
||||
en_LS.txt en_MG.txt en_MO.txt en_MS.txt en_MT.txt\
|
||||
en_MU.txt en_MW.txt en_MY.txt en_NA.txt en_NF.txt\
|
||||
en_NG.txt en_NL.txt en_NR.txt en_NU.txt en_NZ.txt\
|
||||
en_PG.txt en_PH.txt en_PK.txt en_PN.txt en_PW.txt\
|
||||
en_RW.txt en_SB.txt en_SC.txt en_SD.txt en_SE.txt\
|
||||
en_SG.txt en_SH.txt en_SI.txt en_SL.txt en_SS.txt\
|
||||
en_SX.txt en_SZ.txt en_TC.txt en_TK.txt en_TO.txt\
|
||||
en_TT.txt en_TV.txt en_TZ.txt en_UG.txt en_VC.txt\
|
||||
en_VG.txt en_VU.txt en_WS.txt en_ZA.txt en_ZM.txt\
|
||||
en_ZW.txt eo.txt es.txt es_419.txt es_AR.txt\
|
||||
es_BO.txt es_BR.txt es_BZ.txt es_CL.txt es_CO.txt\
|
||||
es_CR.txt es_CU.txt es_DO.txt es_EC.txt es_GQ.txt\
|
||||
es_GT.txt es_HN.txt es_MX.txt es_NI.txt es_PA.txt\
|
||||
es_PE.txt es_PH.txt es_PR.txt es_PY.txt es_SV.txt\
|
||||
es_US.txt es_UY.txt es_VE.txt et.txt eu.txt\
|
||||
ewo.txt fa.txt fa_AF.txt ff.txt ff_GN.txt\
|
||||
ff_Latn.txt ff_Latn_GH.txt ff_Latn_GM.txt ff_Latn_GN.txt ff_Latn_LR.txt\
|
||||
ff_Latn_MR.txt ff_Latn_NG.txt ff_Latn_SL.txt ff_MR.txt fi.txt\
|
||||
fil.txt fo.txt fo_DK.txt fr.txt fr_BI.txt\
|
||||
fr_CA.txt fr_CD.txt fr_DJ.txt fr_DZ.txt fr_GN.txt\
|
||||
fr_HT.txt fr_KM.txt fr_LU.txt fr_MG.txt fr_MR.txt\
|
||||
fr_MU.txt fr_RW.txt fr_SC.txt fr_SY.txt fr_TN.txt\
|
||||
fr_VU.txt fur.txt fy.txt ga.txt gd.txt\
|
||||
gl.txt gsw.txt gu.txt guz.txt gv.txt\
|
||||
ha.txt ha_GH.txt ha_NE.txt haw.txt he.txt\
|
||||
hi.txt hr.txt hr_BA.txt hsb.txt hu.txt\
|
||||
hy.txt ia.txt id.txt ig.txt ii.txt\
|
||||
is.txt it.txt ja.txt jgo.txt jmc.txt\
|
||||
jv.txt ka.txt kab.txt kam.txt kde.txt\
|
||||
kea.txt khq.txt ki.txt kk.txt kkj.txt\
|
||||
kl.txt kln.txt km.txt kn.txt ko.txt\
|
||||
kok.txt ks.txt ksb.txt ksf.txt ksh.txt\
|
||||
ku.txt kw.txt ky.txt lag.txt lb.txt\
|
||||
lg.txt lkt.txt ln.txt ln_AO.txt lo.txt\
|
||||
lrc.txt lt.txt lu.txt luo.txt luy.txt\
|
||||
lv.txt mas.txt mas_TZ.txt mer.txt mfe.txt\
|
||||
mg.txt mgh.txt mgo.txt mi.txt mk.txt\
|
||||
ml.txt mn.txt mr.txt ms.txt ms_BN.txt\
|
||||
ms_SG.txt mt.txt mua.txt my.txt mzn.txt\
|
||||
naq.txt nb.txt nd.txt nds.txt ne.txt\
|
||||
nl.txt nl_AW.txt nl_BQ.txt nl_CW.txt nl_SR.txt\
|
||||
nl_SX.txt nmg.txt nn.txt nnh.txt nus.txt\
|
||||
nyn.txt om.txt om_KE.txt or.txt os.txt\
|
||||
os_RU.txt pa.txt pa_Arab.txt pa_Guru.txt pl.txt\
|
||||
ps.txt ps_PK.txt pt.txt pt_AO.txt pt_CH.txt\
|
||||
pt_CV.txt pt_GQ.txt pt_GW.txt pt_LU.txt pt_MO.txt\
|
||||
pt_MZ.txt pt_PT.txt pt_ST.txt pt_TL.txt qu.txt\
|
||||
qu_BO.txt qu_EC.txt rm.txt rn.txt ro.txt\
|
||||
ro_MD.txt rof.txt ru.txt ru_BY.txt ru_KG.txt\
|
||||
ru_KZ.txt ru_MD.txt rw.txt rwk.txt sah.txt\
|
||||
saq.txt sbp.txt sd.txt se.txt se_SE.txt\
|
||||
seh.txt ses.txt sg.txt shi.txt shi_Latn.txt\
|
||||
shi_Tfng.txt si.txt sk.txt sl.txt smn.txt\
|
||||
sn.txt so.txt so_DJ.txt so_ET.txt so_KE.txt\
|
||||
sq.txt sq_MK.txt sr.txt sr_Cyrl.txt sr_Latn.txt\
|
||||
sv.txt sw.txt sw_CD.txt sw_UG.txt ta.txt\
|
||||
ta_LK.txt ta_MY.txt ta_SG.txt te.txt teo.txt\
|
||||
teo_KE.txt tg.txt th.txt ti.txt ti_ER.txt\
|
||||
tk.txt to.txt tr.txt tt.txt twq.txt\
|
||||
tzm.txt ug.txt uk.txt ur.txt ur_IN.txt\
|
||||
uz.txt uz_Arab.txt uz_Cyrl.txt uz_Latn.txt vai.txt\
|
||||
vai_Latn.txt vai_Vaii.txt vi.txt vun.txt wae.txt\
|
||||
wo.txt xh.txt xog.txt yav.txt yi.txt\
|
||||
yo.txt yo_BJ.txt yue.txt yue_Hans.txt yue_Hant.txt\
|
||||
zgh.txt zh.txt zh_Hans.txt zh_Hans_HK.txt zh_Hans_MO.txt\
|
||||
zh_Hans_SG.txt zh_Hant.txt zh_Hant_HK.txt zh_Hant_MO.txt zu.txt
|
||||
|
@ -8,6 +8,10 @@
|
||||
*******************************************************************************
|
||||
*/
|
||||
-->
|
||||
<!--
|
||||
TODO: Most of these aliases are CLDR parent locales. Is this separate list
|
||||
necessary and can we just use the main list in icu-locale-deprecates.xml?
|
||||
-->
|
||||
<deprecates>
|
||||
<alias from="ars" to="ar" />
|
||||
<alias from="es_DO" to="es_419" />
|
||||
|
@ -1,133 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
LANG_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'reslocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'reslocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | LANG_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | LANG_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
LANG_SYNTHETIC_ALIAS = ars.txt az_AZ.txt az_Latn_AZ.txt bs_BA.txt\
|
||||
bs_Latn_BA.txt en_NH.txt en_RH.txt fil_PH.txt he_IL.txt\
|
||||
id_ID.txt in.txt in_ID.txt iw.txt iw_IL.txt\
|
||||
ja_JP.txt ja_JP_TRADITIONAL.txt mo.txt nb_NO.txt nn_NO.txt\
|
||||
no.txt no_NO.txt no_NO_NY.txt pa_Arab_PK.txt pa_Guru_IN.txt\
|
||||
pa_IN.txt pa_PK.txt sh.txt sh_BA.txt sh_CS.txt\
|
||||
sh_YU.txt shi_MA.txt shi_Tfng_MA.txt sr_BA.txt sr_CS.txt\
|
||||
sr_Cyrl_CS.txt sr_Cyrl_RS.txt sr_Cyrl_YU.txt sr_Latn_CS.txt sr_Latn_RS.txt\
|
||||
sr_Latn_YU.txt sr_ME.txt sr_RS.txt sr_XK.txt sr_YU.txt\
|
||||
th_TH.txt th_TH_TRADITIONAL.txt tl.txt tl_PH.txt uz_AF.txt\
|
||||
uz_Arab_AF.txt uz_Latn_UZ.txt uz_UZ.txt vai_LR.txt vai_Vaii_LR.txt\
|
||||
yue_CN.txt yue_HK.txt yue_Hans_CN.txt yue_Hant_HK.txt zh_CN.txt\
|
||||
zh_HK.txt zh_Hans_CN.txt zh_Hans_SG.txt zh_Hant_TW.txt zh_MO.txt\
|
||||
zh_SG.txt zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
LANG_ALIAS_SOURCE = $(LANG_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
LANG_SOURCE = af.txt agq.txt ak.txt am.txt\
|
||||
ar.txt ar_EG.txt ar_LY.txt ar_SA.txt as.txt\
|
||||
asa.txt ast.txt az.txt az_Cyrl.txt az_Latn.txt\
|
||||
bas.txt be.txt bem.txt bez.txt bg.txt\
|
||||
bm.txt bn.txt bn_IN.txt bo.txt br.txt\
|
||||
brx.txt bs.txt bs_Cyrl.txt bs_Latn.txt ca.txt\
|
||||
ccp.txt ce.txt ceb.txt cgg.txt chr.txt\
|
||||
ckb.txt cs.txt cy.txt da.txt dav.txt\
|
||||
de.txt de_AT.txt de_CH.txt de_LU.txt dje.txt\
|
||||
dsb.txt dua.txt dyo.txt dz.txt ebu.txt\
|
||||
ee.txt el.txt en.txt en_001.txt en_150.txt\
|
||||
en_AG.txt en_AI.txt en_AT.txt en_AU.txt en_BB.txt\
|
||||
en_BE.txt en_BM.txt en_BS.txt en_BW.txt en_BZ.txt\
|
||||
en_CA.txt en_CC.txt en_CH.txt en_CK.txt en_CM.txt\
|
||||
en_CX.txt en_CY.txt en_DE.txt en_DG.txt en_DK.txt\
|
||||
en_DM.txt en_ER.txt en_FI.txt en_FJ.txt en_FK.txt\
|
||||
en_FM.txt en_GB.txt en_GD.txt en_GG.txt en_GH.txt\
|
||||
en_GI.txt en_GM.txt en_GY.txt en_HK.txt en_IE.txt\
|
||||
en_IL.txt en_IM.txt en_IN.txt en_IO.txt en_JE.txt\
|
||||
en_JM.txt en_KE.txt en_KI.txt en_KN.txt en_KY.txt\
|
||||
en_LC.txt en_LR.txt en_LS.txt en_MG.txt en_MO.txt\
|
||||
en_MS.txt en_MT.txt en_MU.txt en_MW.txt en_MY.txt\
|
||||
en_NA.txt en_NF.txt en_NG.txt en_NL.txt en_NR.txt\
|
||||
en_NU.txt en_NZ.txt en_PG.txt en_PH.txt en_PK.txt\
|
||||
en_PN.txt en_PW.txt en_RW.txt en_SB.txt en_SC.txt\
|
||||
en_SD.txt en_SE.txt en_SG.txt en_SH.txt en_SI.txt\
|
||||
en_SL.txt en_SS.txt en_SX.txt en_SZ.txt en_TC.txt\
|
||||
en_TK.txt en_TO.txt en_TT.txt en_TV.txt en_TZ.txt\
|
||||
en_UG.txt en_VC.txt en_VG.txt en_VU.txt en_WS.txt\
|
||||
en_ZA.txt en_ZM.txt en_ZW.txt eo.txt es.txt\
|
||||
es_419.txt es_AR.txt es_BO.txt es_BR.txt es_BZ.txt\
|
||||
es_CL.txt es_CO.txt es_CR.txt es_CU.txt es_DO.txt\
|
||||
es_EC.txt es_GT.txt es_HN.txt es_MX.txt es_NI.txt\
|
||||
es_PA.txt es_PE.txt es_PR.txt es_PY.txt es_SV.txt\
|
||||
es_US.txt es_UY.txt es_VE.txt et.txt eu.txt\
|
||||
ewo.txt fa.txt fa_AF.txt ff.txt ff_Latn.txt\
|
||||
fi.txt fil.txt fo.txt fr.txt fr_BE.txt\
|
||||
fr_CA.txt fr_CH.txt fur.txt fy.txt ga.txt\
|
||||
gd.txt gl.txt gsw.txt gu.txt guz.txt\
|
||||
gv.txt ha.txt ha_NE.txt haw.txt he.txt\
|
||||
hi.txt hr.txt hsb.txt hu.txt hy.txt\
|
||||
ia.txt id.txt ig.txt ii.txt is.txt\
|
||||
it.txt ja.txt jgo.txt jmc.txt jv.txt\
|
||||
ka.txt kab.txt kam.txt kde.txt kea.txt\
|
||||
khq.txt ki.txt kk.txt kkj.txt kl.txt\
|
||||
kln.txt km.txt kn.txt ko.txt kok.txt\
|
||||
ks.txt ksb.txt ksf.txt ksh.txt ku.txt\
|
||||
kw.txt ky.txt lag.txt lb.txt lg.txt\
|
||||
lkt.txt ln.txt lo.txt lrc.txt lt.txt\
|
||||
lu.txt luo.txt luy.txt lv.txt mas.txt\
|
||||
mer.txt mfe.txt mg.txt mgh.txt mgo.txt\
|
||||
mi.txt mk.txt ml.txt mn.txt mr.txt\
|
||||
ms.txt mt.txt mua.txt my.txt mzn.txt\
|
||||
naq.txt nb.txt nd.txt nds.txt ne.txt\
|
||||
nl.txt nmg.txt nn.txt nnh.txt nus.txt\
|
||||
nyn.txt om.txt or.txt os.txt pa.txt\
|
||||
pa_Arab.txt pa_Guru.txt pl.txt ps.txt ps_PK.txt\
|
||||
pt.txt pt_AO.txt pt_CH.txt pt_CV.txt pt_GQ.txt\
|
||||
pt_GW.txt pt_LU.txt pt_MO.txt pt_MZ.txt pt_PT.txt\
|
||||
pt_ST.txt pt_TL.txt qu.txt rm.txt rn.txt\
|
||||
ro.txt ro_MD.txt rof.txt ru.txt rw.txt\
|
||||
rwk.txt sah.txt saq.txt sbp.txt sd.txt\
|
||||
se.txt se_FI.txt seh.txt ses.txt sg.txt\
|
||||
shi.txt shi_Latn.txt shi_Tfng.txt si.txt sk.txt\
|
||||
sl.txt smn.txt sn.txt so.txt sq.txt\
|
||||
sr.txt sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_XK.txt\
|
||||
sr_Latn.txt sr_Latn_BA.txt sr_Latn_ME.txt sr_Latn_XK.txt sv.txt\
|
||||
sv_FI.txt sw.txt sw_CD.txt sw_KE.txt ta.txt\
|
||||
te.txt teo.txt tg.txt th.txt ti.txt\
|
||||
tk.txt to.txt tr.txt tt.txt twq.txt\
|
||||
tzm.txt ug.txt uk.txt ur.txt ur_IN.txt\
|
||||
uz.txt uz_Arab.txt uz_Cyrl.txt uz_Latn.txt vai.txt\
|
||||
vai_Latn.txt vai_Vaii.txt vi.txt vun.txt wae.txt\
|
||||
wo.txt xh.txt xog.txt yav.txt yi.txt\
|
||||
yo.txt yo_BJ.txt yue.txt yue_Hans.txt yue_Hant.txt\
|
||||
zgh.txt zh.txt zh_Hans.txt zh_Hant.txt zh_Hant_HK.txt\
|
||||
zh_Hant_MO.txt zu.txt
|
||||
|
@ -1,202 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
GENRB_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'reslocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'reslocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | GENRB_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | GENRB_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
GENRB_SYNTHETIC_ALIAS = ars.txt az_AZ.txt bs_BA.txt en_NH.txt\
|
||||
en_RH.txt in.txt in_ID.txt iw.txt iw_IL.txt\
|
||||
ja_JP_TRADITIONAL.txt mo.txt no.txt no_NO.txt no_NO_NY.txt\
|
||||
pa_IN.txt pa_PK.txt sh.txt sh_BA.txt sh_CS.txt\
|
||||
sh_YU.txt shi_MA.txt sr_BA.txt sr_CS.txt sr_Cyrl_CS.txt\
|
||||
sr_Cyrl_YU.txt sr_Latn_CS.txt sr_Latn_YU.txt sr_ME.txt sr_RS.txt\
|
||||
sr_XK.txt sr_YU.txt th_TH_TRADITIONAL.txt tl.txt tl_PH.txt\
|
||||
uz_AF.txt uz_UZ.txt vai_LR.txt yue_CN.txt yue_HK.txt\
|
||||
zh_CN.txt zh_HK.txt zh_MO.txt zh_SG.txt zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
GENRB_ALIAS_SOURCE = $(GENRB_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
GENRB_SOURCE = af.txt af_NA.txt af_ZA.txt agq.txt\
|
||||
agq_CM.txt ak.txt ak_GH.txt am.txt am_ET.txt\
|
||||
ar.txt ar_001.txt ar_AE.txt ar_BH.txt ar_DJ.txt\
|
||||
ar_DZ.txt ar_EG.txt ar_EH.txt ar_ER.txt ar_IL.txt\
|
||||
ar_IQ.txt ar_JO.txt ar_KM.txt ar_KW.txt ar_LB.txt\
|
||||
ar_LY.txt ar_MA.txt ar_MR.txt ar_OM.txt ar_PS.txt\
|
||||
ar_QA.txt ar_SA.txt ar_SD.txt ar_SO.txt ar_SS.txt\
|
||||
ar_SY.txt ar_TD.txt ar_TN.txt ar_YE.txt as.txt\
|
||||
as_IN.txt asa.txt asa_TZ.txt ast.txt ast_ES.txt\
|
||||
az.txt az_Cyrl.txt az_Cyrl_AZ.txt az_Latn.txt az_Latn_AZ.txt\
|
||||
bas.txt bas_CM.txt be.txt be_BY.txt bem.txt\
|
||||
bem_ZM.txt bez.txt bez_TZ.txt bg.txt bg_BG.txt\
|
||||
bm.txt bm_ML.txt bn.txt bn_BD.txt bn_IN.txt\
|
||||
bo.txt bo_CN.txt bo_IN.txt br.txt br_FR.txt\
|
||||
brx.txt brx_IN.txt bs.txt bs_Cyrl.txt bs_Cyrl_BA.txt\
|
||||
bs_Latn.txt bs_Latn_BA.txt ca.txt ca_AD.txt ca_ES.txt\
|
||||
ca_FR.txt ca_IT.txt ccp.txt ccp_BD.txt ccp_IN.txt\
|
||||
ce.txt ce_RU.txt ceb.txt ceb_PH.txt cgg.txt\
|
||||
cgg_UG.txt chr.txt chr_US.txt ckb.txt ckb_IQ.txt\
|
||||
ckb_IR.txt cs.txt cs_CZ.txt cy.txt cy_GB.txt\
|
||||
da.txt da_DK.txt da_GL.txt dav.txt dav_KE.txt\
|
||||
de.txt de_AT.txt de_BE.txt de_CH.txt de_DE.txt\
|
||||
de_IT.txt de_LI.txt de_LU.txt dje.txt dje_NE.txt\
|
||||
dsb.txt dsb_DE.txt dua.txt dua_CM.txt dyo.txt\
|
||||
dyo_SN.txt dz.txt dz_BT.txt ebu.txt ebu_KE.txt\
|
||||
ee.txt ee_GH.txt ee_TG.txt el.txt el_CY.txt\
|
||||
el_GR.txt en.txt en_001.txt en_150.txt en_AE.txt\
|
||||
en_AG.txt en_AI.txt en_AS.txt en_AT.txt en_AU.txt\
|
||||
en_BB.txt en_BE.txt en_BI.txt en_BM.txt en_BS.txt\
|
||||
en_BW.txt en_BZ.txt en_CA.txt en_CC.txt en_CH.txt\
|
||||
en_CK.txt en_CM.txt en_CX.txt en_CY.txt en_DE.txt\
|
||||
en_DG.txt en_DK.txt en_DM.txt en_ER.txt en_FI.txt\
|
||||
en_FJ.txt en_FK.txt en_FM.txt en_GB.txt en_GD.txt\
|
||||
en_GG.txt en_GH.txt en_GI.txt en_GM.txt en_GU.txt\
|
||||
en_GY.txt en_HK.txt en_IE.txt en_IL.txt en_IM.txt\
|
||||
en_IN.txt en_IO.txt en_JE.txt en_JM.txt en_KE.txt\
|
||||
en_KI.txt en_KN.txt en_KY.txt en_LC.txt en_LR.txt\
|
||||
en_LS.txt en_MG.txt en_MH.txt en_MO.txt en_MP.txt\
|
||||
en_MS.txt en_MT.txt en_MU.txt en_MW.txt en_MY.txt\
|
||||
en_NA.txt en_NF.txt en_NG.txt en_NL.txt en_NR.txt\
|
||||
en_NU.txt en_NZ.txt en_PG.txt en_PH.txt en_PK.txt\
|
||||
en_PN.txt en_PR.txt en_PW.txt en_RW.txt en_SB.txt\
|
||||
en_SC.txt en_SD.txt en_SE.txt en_SG.txt en_SH.txt\
|
||||
en_SI.txt en_SL.txt en_SS.txt en_SX.txt en_SZ.txt\
|
||||
en_TC.txt en_TK.txt en_TO.txt en_TT.txt en_TV.txt\
|
||||
en_TZ.txt en_UG.txt en_UM.txt en_US.txt en_US_POSIX.txt\
|
||||
en_VC.txt en_VG.txt en_VI.txt en_VU.txt en_WS.txt\
|
||||
en_ZA.txt en_ZM.txt en_ZW.txt eo.txt eo_001.txt\
|
||||
es.txt es_419.txt es_AR.txt es_BO.txt es_BR.txt\
|
||||
es_BZ.txt es_CL.txt es_CO.txt es_CR.txt es_CU.txt\
|
||||
es_DO.txt es_EA.txt es_EC.txt es_ES.txt es_GQ.txt\
|
||||
es_GT.txt es_HN.txt es_IC.txt es_MX.txt es_NI.txt\
|
||||
es_PA.txt es_PE.txt es_PH.txt es_PR.txt es_PY.txt\
|
||||
es_SV.txt es_US.txt es_UY.txt es_VE.txt et.txt\
|
||||
et_EE.txt eu.txt eu_ES.txt ewo.txt ewo_CM.txt\
|
||||
fa.txt fa_AF.txt fa_IR.txt ff.txt ff_CM.txt\
|
||||
ff_GN.txt ff_Latn.txt ff_Latn_BF.txt ff_Latn_CM.txt ff_Latn_GH.txt\
|
||||
ff_Latn_GM.txt ff_Latn_GN.txt ff_Latn_GW.txt ff_Latn_LR.txt ff_Latn_MR.txt\
|
||||
ff_Latn_NE.txt ff_Latn_NG.txt ff_Latn_SL.txt ff_Latn_SN.txt ff_MR.txt\
|
||||
ff_SN.txt fi.txt fi_FI.txt fil.txt fil_PH.txt\
|
||||
fo.txt fo_DK.txt fo_FO.txt fr.txt fr_BE.txt\
|
||||
fr_BF.txt fr_BI.txt fr_BJ.txt fr_BL.txt fr_CA.txt\
|
||||
fr_CD.txt fr_CF.txt fr_CG.txt fr_CH.txt fr_CI.txt\
|
||||
fr_CM.txt fr_DJ.txt fr_DZ.txt fr_FR.txt fr_GA.txt\
|
||||
fr_GF.txt fr_GN.txt fr_GP.txt fr_GQ.txt fr_HT.txt\
|
||||
fr_KM.txt fr_LU.txt fr_MA.txt fr_MC.txt fr_MF.txt\
|
||||
fr_MG.txt fr_ML.txt fr_MQ.txt fr_MR.txt fr_MU.txt\
|
||||
fr_NC.txt fr_NE.txt fr_PF.txt fr_PM.txt fr_RE.txt\
|
||||
fr_RW.txt fr_SC.txt fr_SN.txt fr_SY.txt fr_TD.txt\
|
||||
fr_TG.txt fr_TN.txt fr_VU.txt fr_WF.txt fr_YT.txt\
|
||||
fur.txt fur_IT.txt fy.txt fy_NL.txt ga.txt\
|
||||
ga_IE.txt gd.txt gd_GB.txt gl.txt gl_ES.txt\
|
||||
gsw.txt gsw_CH.txt gsw_FR.txt gsw_LI.txt gu.txt\
|
||||
gu_IN.txt guz.txt guz_KE.txt gv.txt gv_IM.txt\
|
||||
ha.txt ha_GH.txt ha_NE.txt ha_NG.txt haw.txt\
|
||||
haw_US.txt he.txt he_IL.txt hi.txt hi_IN.txt\
|
||||
hr.txt hr_BA.txt hr_HR.txt hsb.txt hsb_DE.txt\
|
||||
hu.txt hu_HU.txt hy.txt hy_AM.txt ia.txt\
|
||||
ia_001.txt id.txt id_ID.txt ig.txt ig_NG.txt\
|
||||
ii.txt ii_CN.txt is.txt is_IS.txt it.txt\
|
||||
it_CH.txt it_IT.txt it_SM.txt it_VA.txt ja.txt\
|
||||
ja_JP.txt jgo.txt jgo_CM.txt jmc.txt jmc_TZ.txt\
|
||||
jv.txt jv_ID.txt ka.txt ka_GE.txt kab.txt\
|
||||
kab_DZ.txt kam.txt kam_KE.txt kde.txt kde_TZ.txt\
|
||||
kea.txt kea_CV.txt khq.txt khq_ML.txt ki.txt\
|
||||
ki_KE.txt kk.txt kk_KZ.txt kkj.txt kkj_CM.txt\
|
||||
kl.txt kl_GL.txt kln.txt kln_KE.txt km.txt\
|
||||
km_KH.txt kn.txt kn_IN.txt ko.txt ko_KP.txt\
|
||||
ko_KR.txt kok.txt kok_IN.txt ks.txt ks_IN.txt\
|
||||
ksb.txt ksb_TZ.txt ksf.txt ksf_CM.txt ksh.txt\
|
||||
ksh_DE.txt ku.txt ku_TR.txt kw.txt kw_GB.txt\
|
||||
ky.txt ky_KG.txt lag.txt lag_TZ.txt lb.txt\
|
||||
lb_LU.txt lg.txt lg_UG.txt lkt.txt lkt_US.txt\
|
||||
ln.txt ln_AO.txt ln_CD.txt ln_CF.txt ln_CG.txt\
|
||||
lo.txt lo_LA.txt lrc.txt lrc_IQ.txt lrc_IR.txt\
|
||||
lt.txt lt_LT.txt lu.txt lu_CD.txt luo.txt\
|
||||
luo_KE.txt luy.txt luy_KE.txt lv.txt lv_LV.txt\
|
||||
mas.txt mas_KE.txt mas_TZ.txt mer.txt mer_KE.txt\
|
||||
mfe.txt mfe_MU.txt mg.txt mg_MG.txt mgh.txt\
|
||||
mgh_MZ.txt mgo.txt mgo_CM.txt mi.txt mi_NZ.txt\
|
||||
mk.txt mk_MK.txt ml.txt ml_IN.txt mn.txt\
|
||||
mn_MN.txt mr.txt mr_IN.txt ms.txt ms_BN.txt\
|
||||
ms_MY.txt ms_SG.txt mt.txt mt_MT.txt mua.txt\
|
||||
mua_CM.txt my.txt my_MM.txt mzn.txt mzn_IR.txt\
|
||||
naq.txt naq_NA.txt nb.txt nb_NO.txt nb_SJ.txt\
|
||||
nd.txt nd_ZW.txt nds.txt nds_DE.txt nds_NL.txt\
|
||||
ne.txt ne_IN.txt ne_NP.txt nl.txt nl_AW.txt\
|
||||
nl_BE.txt nl_BQ.txt nl_CW.txt nl_NL.txt nl_SR.txt\
|
||||
nl_SX.txt nmg.txt nmg_CM.txt nn.txt nn_NO.txt\
|
||||
nnh.txt nnh_CM.txt nus.txt nus_SS.txt nyn.txt\
|
||||
nyn_UG.txt om.txt om_ET.txt om_KE.txt or.txt\
|
||||
or_IN.txt os.txt os_GE.txt os_RU.txt pa.txt\
|
||||
pa_Arab.txt pa_Arab_PK.txt pa_Guru.txt pa_Guru_IN.txt pl.txt\
|
||||
pl_PL.txt ps.txt ps_AF.txt ps_PK.txt pt.txt\
|
||||
pt_AO.txt pt_BR.txt pt_CH.txt pt_CV.txt pt_GQ.txt\
|
||||
pt_GW.txt pt_LU.txt pt_MO.txt pt_MZ.txt pt_PT.txt\
|
||||
pt_ST.txt pt_TL.txt qu.txt qu_BO.txt qu_EC.txt\
|
||||
qu_PE.txt rm.txt rm_CH.txt rn.txt rn_BI.txt\
|
||||
ro.txt ro_MD.txt ro_RO.txt rof.txt rof_TZ.txt\
|
||||
ru.txt ru_BY.txt ru_KG.txt ru_KZ.txt ru_MD.txt\
|
||||
ru_RU.txt ru_UA.txt rw.txt rw_RW.txt rwk.txt\
|
||||
rwk_TZ.txt sah.txt sah_RU.txt saq.txt saq_KE.txt\
|
||||
sbp.txt sbp_TZ.txt sd.txt sd_PK.txt se.txt\
|
||||
se_FI.txt se_NO.txt se_SE.txt seh.txt seh_MZ.txt\
|
||||
ses.txt ses_ML.txt sg.txt sg_CF.txt shi.txt\
|
||||
shi_Latn.txt shi_Latn_MA.txt shi_Tfng.txt shi_Tfng_MA.txt si.txt\
|
||||
si_LK.txt sk.txt sk_SK.txt sl.txt sl_SI.txt\
|
||||
smn.txt smn_FI.txt sn.txt sn_ZW.txt so.txt\
|
||||
so_DJ.txt so_ET.txt so_KE.txt so_SO.txt sq.txt\
|
||||
sq_AL.txt sq_MK.txt sq_XK.txt sr.txt sr_Cyrl.txt\
|
||||
sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_RS.txt sr_Cyrl_XK.txt sr_Latn.txt\
|
||||
sr_Latn_BA.txt sr_Latn_ME.txt sr_Latn_RS.txt sr_Latn_XK.txt sv.txt\
|
||||
sv_AX.txt sv_FI.txt sv_SE.txt sw.txt sw_CD.txt\
|
||||
sw_KE.txt sw_TZ.txt sw_UG.txt ta.txt ta_IN.txt\
|
||||
ta_LK.txt ta_MY.txt ta_SG.txt te.txt te_IN.txt\
|
||||
teo.txt teo_KE.txt teo_UG.txt tg.txt tg_TJ.txt\
|
||||
th.txt th_TH.txt ti.txt ti_ER.txt ti_ET.txt\
|
||||
tk.txt tk_TM.txt to.txt to_TO.txt tr.txt\
|
||||
tr_CY.txt tr_TR.txt tt.txt tt_RU.txt twq.txt\
|
||||
twq_NE.txt tzm.txt tzm_MA.txt ug.txt ug_CN.txt\
|
||||
uk.txt uk_UA.txt ur.txt ur_IN.txt ur_PK.txt\
|
||||
uz.txt uz_Arab.txt uz_Arab_AF.txt uz_Cyrl.txt uz_Cyrl_UZ.txt\
|
||||
uz_Latn.txt uz_Latn_UZ.txt vai.txt vai_Latn.txt vai_Latn_LR.txt\
|
||||
vai_Vaii.txt vai_Vaii_LR.txt vi.txt vi_VN.txt vun.txt\
|
||||
vun_TZ.txt wae.txt wae_CH.txt wo.txt wo_SN.txt\
|
||||
xh.txt xh_ZA.txt xog.txt xog_UG.txt yav.txt\
|
||||
yav_CM.txt yi.txt yi_001.txt yo.txt yo_BJ.txt\
|
||||
yo_NG.txt yue.txt yue_Hans.txt yue_Hans_CN.txt yue_Hant.txt\
|
||||
yue_Hant_HK.txt zgh.txt zgh_MA.txt zh.txt zh_Hans.txt\
|
||||
zh_Hans_CN.txt zh_Hans_HK.txt zh_Hans_MO.txt zh_Hans_SG.txt zh_Hant.txt\
|
||||
zh_Hant_HK.txt zh_Hant_MO.txt zh_Hant_TW.txt zu.txt zu_ZA.txt
|
||||
|
@ -1,63 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
RBNF_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'rbnflocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'rbnflocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | RBNF_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | RBNF_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
RBNF_SYNTHETIC_ALIAS = ars.txt es_DO.txt es_GT.txt es_HN.txt\
|
||||
es_MX.txt es_NI.txt es_PA.txt es_PR.txt es_SV.txt\
|
||||
es_US.txt in.txt iw.txt no.txt sh.txt\
|
||||
zh_HK.txt zh_Hant_HK.txt zh_MO.txt zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
RBNF_ALIAS_SOURCE = $(RBNF_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
RBNF_SOURCE = af.txt ak.txt am.txt ar.txt\
|
||||
az.txt be.txt bg.txt bs.txt ca.txt\
|
||||
ccp.txt chr.txt cs.txt cy.txt da.txt\
|
||||
de.txt de_CH.txt ee.txt el.txt en.txt\
|
||||
en_001.txt en_IN.txt eo.txt es.txt es_419.txt\
|
||||
et.txt fa.txt fa_AF.txt ff.txt fi.txt\
|
||||
fil.txt fo.txt fr.txt fr_BE.txt fr_CH.txt\
|
||||
ga.txt he.txt hi.txt hr.txt hu.txt\
|
||||
hy.txt id.txt is.txt it.txt ja.txt\
|
||||
ka.txt kl.txt km.txt ko.txt ky.txt\
|
||||
lb.txt lo.txt lrc.txt lt.txt lv.txt\
|
||||
mk.txt ms.txt mt.txt my.txt nb.txt\
|
||||
nl.txt nn.txt pl.txt pt.txt pt_PT.txt\
|
||||
qu.txt ro.txt ru.txt se.txt sk.txt\
|
||||
sl.txt sq.txt sr.txt sr_Latn.txt sv.txt\
|
||||
sw.txt ta.txt th.txt tr.txt uk.txt\
|
||||
vi.txt yue.txt yue_Hans.txt zh.txt zh_Hant.txt
|
||||
|
@ -1,133 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
REGION_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'reslocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'reslocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | REGION_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | REGION_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
REGION_SYNTHETIC_ALIAS = ars.txt az_AZ.txt az_Latn_AZ.txt bs_BA.txt\
|
||||
bs_Latn_BA.txt en_NH.txt en_RH.txt fil_PH.txt he_IL.txt\
|
||||
id_ID.txt in.txt in_ID.txt iw.txt iw_IL.txt\
|
||||
ja_JP.txt ja_JP_TRADITIONAL.txt mo.txt nb_NO.txt nn_NO.txt\
|
||||
no.txt no_NO.txt no_NO_NY.txt pa_Arab_PK.txt pa_Guru_IN.txt\
|
||||
pa_IN.txt pa_PK.txt sh.txt sh_BA.txt sh_CS.txt\
|
||||
sh_YU.txt shi_MA.txt shi_Tfng_MA.txt sr_BA.txt sr_CS.txt\
|
||||
sr_Cyrl_CS.txt sr_Cyrl_RS.txt sr_Cyrl_YU.txt sr_Latn_CS.txt sr_Latn_RS.txt\
|
||||
sr_Latn_YU.txt sr_ME.txt sr_RS.txt sr_XK.txt sr_YU.txt\
|
||||
th_TH.txt th_TH_TRADITIONAL.txt tl.txt tl_PH.txt uz_AF.txt\
|
||||
uz_Arab_AF.txt uz_Latn_UZ.txt uz_UZ.txt vai_LR.txt vai_Vaii_LR.txt\
|
||||
yue_CN.txt yue_HK.txt yue_Hans_CN.txt yue_Hant_HK.txt zh_CN.txt\
|
||||
zh_HK.txt zh_Hans_CN.txt zh_Hans_SG.txt zh_Hant_TW.txt zh_MO.txt\
|
||||
zh_SG.txt zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
REGION_ALIAS_SOURCE = $(REGION_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
REGION_SOURCE = af.txt agq.txt ak.txt am.txt\
|
||||
ar.txt ar_AE.txt ar_LY.txt ar_SA.txt as.txt\
|
||||
asa.txt ast.txt az.txt az_Cyrl.txt az_Latn.txt\
|
||||
bas.txt be.txt bem.txt bez.txt bg.txt\
|
||||
bm.txt bn.txt bn_IN.txt bo.txt bo_IN.txt\
|
||||
br.txt brx.txt bs.txt bs_Cyrl.txt bs_Latn.txt\
|
||||
ca.txt ccp.txt ce.txt ceb.txt cgg.txt\
|
||||
chr.txt ckb.txt cs.txt cy.txt da.txt\
|
||||
dav.txt de.txt de_AT.txt de_CH.txt dje.txt\
|
||||
dsb.txt dua.txt dyo.txt dz.txt ebu.txt\
|
||||
ee.txt el.txt en.txt en_150.txt en_AG.txt\
|
||||
en_AI.txt en_AT.txt en_AU.txt en_BB.txt en_BE.txt\
|
||||
en_BM.txt en_BS.txt en_BW.txt en_BZ.txt en_CA.txt\
|
||||
en_CC.txt en_CH.txt en_CK.txt en_CM.txt en_CX.txt\
|
||||
en_CY.txt en_DE.txt en_DG.txt en_DK.txt en_DM.txt\
|
||||
en_ER.txt en_FI.txt en_FJ.txt en_FK.txt en_FM.txt\
|
||||
en_GB.txt en_GD.txt en_GG.txt en_GH.txt en_GI.txt\
|
||||
en_GM.txt en_GY.txt en_HK.txt en_IE.txt en_IL.txt\
|
||||
en_IM.txt en_IN.txt en_IO.txt en_JE.txt en_JM.txt\
|
||||
en_KE.txt en_KI.txt en_KN.txt en_KY.txt en_LC.txt\
|
||||
en_LR.txt en_LS.txt en_MG.txt en_MO.txt en_MS.txt\
|
||||
en_MT.txt en_MU.txt en_MW.txt en_MY.txt en_NA.txt\
|
||||
en_NF.txt en_NG.txt en_NL.txt en_NR.txt en_NU.txt\
|
||||
en_NZ.txt en_PG.txt en_PH.txt en_PK.txt en_PN.txt\
|
||||
en_PW.txt en_RW.txt en_SB.txt en_SC.txt en_SD.txt\
|
||||
en_SE.txt en_SG.txt en_SH.txt en_SI.txt en_SL.txt\
|
||||
en_SS.txt en_SX.txt en_SZ.txt en_TC.txt en_TK.txt\
|
||||
en_TO.txt en_TT.txt en_TV.txt en_TZ.txt en_UG.txt\
|
||||
en_VC.txt en_VG.txt en_VU.txt en_WS.txt en_ZA.txt\
|
||||
en_ZM.txt en_ZW.txt eo.txt es.txt es_419.txt\
|
||||
es_AR.txt es_BO.txt es_BR.txt es_BZ.txt es_CL.txt\
|
||||
es_CO.txt es_CR.txt es_CU.txt es_DO.txt es_EC.txt\
|
||||
es_GT.txt es_HN.txt es_MX.txt es_NI.txt es_PA.txt\
|
||||
es_PE.txt es_PR.txt es_PY.txt es_SV.txt es_US.txt\
|
||||
es_UY.txt es_VE.txt et.txt eu.txt ewo.txt\
|
||||
fa.txt fa_AF.txt ff.txt ff_Latn.txt fi.txt\
|
||||
fil.txt fo.txt fr.txt fr_BE.txt fr_CA.txt\
|
||||
fur.txt fy.txt ga.txt gd.txt gl.txt\
|
||||
gsw.txt gu.txt guz.txt gv.txt ha.txt\
|
||||
ha_NE.txt haw.txt he.txt hi.txt hr.txt\
|
||||
hsb.txt hu.txt hy.txt ia.txt id.txt\
|
||||
ig.txt ii.txt is.txt it.txt ja.txt\
|
||||
jgo.txt jmc.txt jv.txt ka.txt kab.txt\
|
||||
kam.txt kde.txt kea.txt khq.txt ki.txt\
|
||||
kk.txt kkj.txt kl.txt kln.txt km.txt\
|
||||
kn.txt ko.txt ko_KP.txt kok.txt ks.txt\
|
||||
ksb.txt ksf.txt ksh.txt ku.txt kw.txt\
|
||||
ky.txt lag.txt lb.txt lg.txt lkt.txt\
|
||||
ln.txt lo.txt lrc.txt lt.txt lu.txt\
|
||||
luo.txt luy.txt lv.txt mas.txt mer.txt\
|
||||
mfe.txt mg.txt mgh.txt mgo.txt mi.txt\
|
||||
mk.txt ml.txt mn.txt mr.txt ms.txt\
|
||||
mt.txt mua.txt my.txt mzn.txt naq.txt\
|
||||
nb.txt nd.txt nds.txt ne.txt nl.txt\
|
||||
nmg.txt nn.txt nnh.txt nus.txt nyn.txt\
|
||||
om.txt or.txt os.txt pa.txt pa_Arab.txt\
|
||||
pa_Guru.txt pl.txt ps.txt ps_PK.txt pt.txt\
|
||||
pt_AO.txt pt_CH.txt pt_CV.txt pt_GQ.txt pt_GW.txt\
|
||||
pt_LU.txt pt_MO.txt pt_MZ.txt pt_PT.txt pt_ST.txt\
|
||||
pt_TL.txt qu.txt rm.txt rn.txt ro.txt\
|
||||
ro_MD.txt rof.txt ru.txt ru_UA.txt rw.txt\
|
||||
rwk.txt sah.txt saq.txt sbp.txt sd.txt\
|
||||
se.txt se_FI.txt seh.txt ses.txt sg.txt\
|
||||
shi.txt shi_Latn.txt shi_Tfng.txt si.txt sk.txt\
|
||||
sl.txt smn.txt sn.txt so.txt sq.txt\
|
||||
sr.txt sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_ME.txt sr_Cyrl_XK.txt\
|
||||
sr_Latn.txt sr_Latn_BA.txt sr_Latn_ME.txt sr_Latn_XK.txt sv.txt\
|
||||
sw.txt sw_CD.txt sw_KE.txt ta.txt te.txt\
|
||||
teo.txt tg.txt th.txt ti.txt tk.txt\
|
||||
to.txt tr.txt tt.txt twq.txt tzm.txt\
|
||||
ug.txt uk.txt ur.txt ur_IN.txt uz.txt\
|
||||
uz_Arab.txt uz_Cyrl.txt uz_Latn.txt vai.txt vai_Latn.txt\
|
||||
vai_Vaii.txt vi.txt vun.txt wae.txt wo.txt\
|
||||
xh.txt xog.txt yav.txt yi.txt yo.txt\
|
||||
yo_BJ.txt yue.txt yue_Hans.txt yue_Hant.txt zgh.txt\
|
||||
zh.txt zh_Hans.txt zh_Hant.txt zh_Hant_HK.txt zh_Hant_MO.txt\
|
||||
zu.txt
|
||||
|
@ -1,131 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
UNIT_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'reslocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'reslocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | UNIT_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | UNIT_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
UNIT_SYNTHETIC_ALIAS = ar_SA.txt ars.txt az_AZ.txt az_Latn_AZ.txt\
|
||||
bs_BA.txt bs_Latn_BA.txt en_NH.txt en_RH.txt fil_PH.txt\
|
||||
he_IL.txt id_ID.txt in.txt in_ID.txt iw.txt\
|
||||
iw_IL.txt ja_JP.txt ja_JP_TRADITIONAL.txt mo.txt nb_NO.txt\
|
||||
nn_NO.txt no.txt no_NO.txt no_NO_NY.txt pa_Arab_PK.txt\
|
||||
pa_Guru_IN.txt pa_IN.txt pa_PK.txt sh.txt sh_BA.txt\
|
||||
sh_CS.txt sh_YU.txt shi_MA.txt shi_Tfng_MA.txt sr_BA.txt\
|
||||
sr_CS.txt sr_Cyrl_BA.txt sr_Cyrl_CS.txt sr_Cyrl_RS.txt sr_Cyrl_XK.txt\
|
||||
sr_Cyrl_YU.txt sr_Latn_BA.txt sr_Latn_CS.txt sr_Latn_ME.txt sr_Latn_RS.txt\
|
||||
sr_Latn_YU.txt sr_ME.txt sr_RS.txt sr_XK.txt sr_YU.txt\
|
||||
th_TH.txt th_TH_TRADITIONAL.txt tl.txt tl_PH.txt uz_AF.txt\
|
||||
uz_Arab_AF.txt uz_Latn_UZ.txt uz_UZ.txt vai_LR.txt vai_Vaii_LR.txt\
|
||||
yue_CN.txt yue_HK.txt yue_Hans_CN.txt yue_Hant_HK.txt zh_CN.txt\
|
||||
zh_HK.txt zh_Hans_CN.txt zh_Hant_TW.txt zh_MO.txt zh_SG.txt\
|
||||
zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
UNIT_ALIAS_SOURCE = $(UNIT_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
UNIT_SOURCE = af.txt agq.txt ak.txt am.txt\
|
||||
ar.txt as.txt asa.txt ast.txt az.txt\
|
||||
az_Cyrl.txt az_Latn.txt bas.txt be.txt bem.txt\
|
||||
bez.txt bg.txt bm.txt bn.txt bo.txt\
|
||||
br.txt brx.txt bs.txt bs_Cyrl.txt bs_Latn.txt\
|
||||
ca.txt ccp.txt ce.txt ceb.txt cgg.txt\
|
||||
chr.txt ckb.txt cs.txt cy.txt da.txt\
|
||||
dav.txt de.txt de_CH.txt dje.txt dsb.txt\
|
||||
dua.txt dyo.txt dz.txt ebu.txt ee.txt\
|
||||
el.txt en.txt en_001.txt en_150.txt en_AG.txt\
|
||||
en_AI.txt en_AT.txt en_AU.txt en_BB.txt en_BE.txt\
|
||||
en_BM.txt en_BS.txt en_BW.txt en_BZ.txt en_CA.txt\
|
||||
en_CC.txt en_CH.txt en_CK.txt en_CM.txt en_CX.txt\
|
||||
en_CY.txt en_DE.txt en_DG.txt en_DK.txt en_DM.txt\
|
||||
en_ER.txt en_FI.txt en_FJ.txt en_FK.txt en_FM.txt\
|
||||
en_GB.txt en_GD.txt en_GG.txt en_GH.txt en_GI.txt\
|
||||
en_GM.txt en_GY.txt en_HK.txt en_IE.txt en_IL.txt\
|
||||
en_IM.txt en_IN.txt en_IO.txt en_JE.txt en_JM.txt\
|
||||
en_KE.txt en_KI.txt en_KN.txt en_KY.txt en_LC.txt\
|
||||
en_LR.txt en_LS.txt en_MG.txt en_MO.txt en_MS.txt\
|
||||
en_MT.txt en_MU.txt en_MW.txt en_MY.txt en_NA.txt\
|
||||
en_NF.txt en_NG.txt en_NL.txt en_NR.txt en_NU.txt\
|
||||
en_NZ.txt en_PG.txt en_PH.txt en_PK.txt en_PN.txt\
|
||||
en_PW.txt en_RW.txt en_SB.txt en_SC.txt en_SD.txt\
|
||||
en_SE.txt en_SG.txt en_SH.txt en_SI.txt en_SL.txt\
|
||||
en_SS.txt en_SX.txt en_SZ.txt en_TC.txt en_TK.txt\
|
||||
en_TO.txt en_TT.txt en_TV.txt en_TZ.txt en_UG.txt\
|
||||
en_VC.txt en_VG.txt en_VU.txt en_WS.txt en_ZA.txt\
|
||||
en_ZM.txt en_ZW.txt eo.txt es.txt es_419.txt\
|
||||
es_AR.txt es_BO.txt es_BR.txt es_BZ.txt es_CL.txt\
|
||||
es_CO.txt es_CR.txt es_CU.txt es_DO.txt es_EC.txt\
|
||||
es_GT.txt es_HN.txt es_MX.txt es_NI.txt es_PA.txt\
|
||||
es_PE.txt es_PR.txt es_PY.txt es_SV.txt es_US.txt\
|
||||
es_UY.txt es_VE.txt et.txt eu.txt ewo.txt\
|
||||
fa.txt ff.txt ff_Latn.txt fi.txt fil.txt\
|
||||
fo.txt fr.txt fr_CA.txt fr_HT.txt fur.txt\
|
||||
fy.txt ga.txt gd.txt gl.txt gsw.txt\
|
||||
gu.txt guz.txt gv.txt ha.txt ha_NE.txt\
|
||||
haw.txt he.txt hi.txt hr.txt hsb.txt\
|
||||
hu.txt hy.txt ia.txt id.txt ig.txt\
|
||||
ii.txt is.txt it.txt ja.txt jgo.txt\
|
||||
jmc.txt jv.txt ka.txt kab.txt kam.txt\
|
||||
kde.txt kea.txt khq.txt ki.txt kk.txt\
|
||||
kkj.txt kl.txt kln.txt km.txt kn.txt\
|
||||
ko.txt kok.txt ks.txt ksb.txt ksf.txt\
|
||||
ksh.txt ku.txt kw.txt ky.txt lag.txt\
|
||||
lb.txt lg.txt lkt.txt ln.txt lo.txt\
|
||||
lrc.txt lt.txt lu.txt luo.txt luy.txt\
|
||||
lv.txt mas.txt mer.txt mfe.txt mg.txt\
|
||||
mgh.txt mgo.txt mi.txt mk.txt ml.txt\
|
||||
mn.txt mr.txt ms.txt mt.txt mua.txt\
|
||||
my.txt mzn.txt naq.txt nb.txt nd.txt\
|
||||
nds.txt ne.txt nl.txt nmg.txt nn.txt\
|
||||
nnh.txt nus.txt nyn.txt om.txt or.txt\
|
||||
os.txt pa.txt pa_Arab.txt pa_Guru.txt pl.txt\
|
||||
ps.txt ps_PK.txt pt.txt pt_AO.txt pt_CH.txt\
|
||||
pt_CV.txt pt_GQ.txt pt_GW.txt pt_LU.txt pt_MO.txt\
|
||||
pt_MZ.txt pt_PT.txt pt_ST.txt pt_TL.txt qu.txt\
|
||||
rm.txt rn.txt ro.txt ro_MD.txt rof.txt\
|
||||
ru.txt rw.txt rwk.txt sah.txt saq.txt\
|
||||
sbp.txt sd.txt se.txt seh.txt ses.txt\
|
||||
sg.txt shi.txt shi_Latn.txt shi_Tfng.txt si.txt\
|
||||
sk.txt sl.txt smn.txt sn.txt so.txt\
|
||||
sq.txt sr.txt sr_Cyrl.txt sr_Latn.txt sv.txt\
|
||||
sv_FI.txt sw.txt ta.txt te.txt teo.txt\
|
||||
tg.txt th.txt ti.txt tk.txt to.txt\
|
||||
tr.txt tt.txt twq.txt tzm.txt ug.txt\
|
||||
uk.txt ur.txt ur_IN.txt uz.txt uz_Arab.txt\
|
||||
uz_Cyrl.txt uz_Latn.txt vai.txt vai_Latn.txt vai_Vaii.txt\
|
||||
vi.txt vun.txt wae.txt wo.txt xh.txt\
|
||||
xog.txt yav.txt yi.txt yo.txt yo_BJ.txt\
|
||||
yue.txt yue_Hans.txt yue_Hant.txt zgh.txt zh.txt\
|
||||
zh_Hans.txt zh_Hans_HK.txt zh_Hans_MO.txt zh_Hans_SG.txt zh_Hant.txt\
|
||||
zh_Hant_HK.txt zh_Hant_MO.txt zu.txt
|
||||
|
@ -1,133 +0,0 @@
|
||||
# © 2016 and later: Unicode, Inc. and others.
|
||||
# License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
ZONE_CLDR_VERSION = 35
|
||||
#
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
# NOTE (January 2019): Please use ICU's new data filtering to select locale
|
||||
# files. This makefile is no longer used to filter locale files.
|
||||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
#
|
||||
# Old description: A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
# If you are thinking of modifying this file, READ THIS.
|
||||
#
|
||||
# Instead of changing this file [unless you want to check it back in],
|
||||
# you should consider creating a 'reslocal.mk' file in this same directory.
|
||||
# Then, you can have your local changes remain even if you upgrade or
|
||||
# reconfigure ICU.
|
||||
#
|
||||
# Example 'reslocal.mk' files:
|
||||
#
|
||||
# * To add an additional locale to the list:
|
||||
# _____________________________________________________
|
||||
# | ZONE_SOURCE_LOCAL = myLocale.txt ...
|
||||
#
|
||||
# * To REPLACE the default list and only build with a few
|
||||
# locales:
|
||||
# _____________________________________________________
|
||||
# | ZONE_SOURCE = ar.txt ar_AE.txt en.txt de.txt zh.txt
|
||||
#
|
||||
#
|
||||
# Generated by LDML2ICUConverter, from LDML source files.
|
||||
|
||||
# Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml)
|
||||
ZONE_SYNTHETIC_ALIAS = ar_SA.txt ars.txt az_AZ.txt az_Latn_AZ.txt\
|
||||
bs_BA.txt bs_Latn_BA.txt en_NH.txt en_RH.txt fil_PH.txt\
|
||||
he_IL.txt id_ID.txt in.txt in_ID.txt iw.txt\
|
||||
iw_IL.txt ja_JP.txt ja_JP_TRADITIONAL.txt mo.txt nb_NO.txt\
|
||||
nn_NO.txt no.txt no_NO.txt no_NO_NY.txt pa_Arab_PK.txt\
|
||||
pa_Guru_IN.txt pa_IN.txt pa_PK.txt ro_MD.txt sh.txt\
|
||||
sh_BA.txt sh_CS.txt sh_YU.txt shi_MA.txt shi_Tfng_MA.txt\
|
||||
sr_BA.txt sr_CS.txt sr_Cyrl_BA.txt sr_Cyrl_CS.txt sr_Cyrl_RS.txt\
|
||||
sr_Cyrl_XK.txt sr_Cyrl_YU.txt sr_Latn_BA.txt sr_Latn_CS.txt sr_Latn_ME.txt\
|
||||
sr_Latn_RS.txt sr_Latn_YU.txt sr_ME.txt sr_RS.txt sr_XK.txt\
|
||||
sr_YU.txt th_TH.txt th_TH_TRADITIONAL.txt tl.txt tl_PH.txt\
|
||||
uz_AF.txt uz_Arab_AF.txt uz_Latn_UZ.txt uz_UZ.txt vai_LR.txt\
|
||||
vai_Vaii_LR.txt yue_CN.txt yue_HK.txt yue_Hans_CN.txt yue_Hant_HK.txt\
|
||||
zh_CN.txt zh_HK.txt zh_Hans_CN.txt zh_Hant_TW.txt zh_MO.txt\
|
||||
zh_SG.txt zh_TW.txt
|
||||
|
||||
|
||||
# All aliases (to not be included under 'installed'), but not including root.
|
||||
ZONE_ALIAS_SOURCE = $(ZONE_SYNTHETIC_ALIAS)
|
||||
|
||||
|
||||
# Ordinary resources
|
||||
ZONE_SOURCE = af.txt agq.txt ak.txt am.txt\
|
||||
ar.txt as.txt asa.txt ast.txt az.txt\
|
||||
az_Cyrl.txt az_Latn.txt bas.txt be.txt bem.txt\
|
||||
bez.txt bg.txt bm.txt bn.txt bo.txt\
|
||||
br.txt brx.txt bs.txt bs_Cyrl.txt bs_Latn.txt\
|
||||
ca.txt ccp.txt ce.txt ceb.txt cgg.txt\
|
||||
chr.txt ckb.txt cs.txt cy.txt da.txt\
|
||||
dav.txt de.txt de_CH.txt dje.txt dsb.txt\
|
||||
dua.txt dyo.txt dz.txt ebu.txt ee.txt\
|
||||
el.txt en.txt en_001.txt en_150.txt en_AE.txt\
|
||||
en_AG.txt en_AI.txt en_AT.txt en_AU.txt en_BB.txt\
|
||||
en_BE.txt en_BM.txt en_BS.txt en_BW.txt en_BZ.txt\
|
||||
en_CA.txt en_CC.txt en_CH.txt en_CK.txt en_CM.txt\
|
||||
en_CX.txt en_CY.txt en_DE.txt en_DG.txt en_DK.txt\
|
||||
en_DM.txt en_ER.txt en_FI.txt en_FJ.txt en_FK.txt\
|
||||
en_FM.txt en_GB.txt en_GD.txt en_GG.txt en_GH.txt\
|
||||
en_GI.txt en_GM.txt en_GU.txt en_GY.txt en_HK.txt\
|
||||
en_IE.txt en_IL.txt en_IM.txt en_IN.txt en_IO.txt\
|
||||
en_JE.txt en_JM.txt en_KE.txt en_KI.txt en_KN.txt\
|
||||
en_KY.txt en_LC.txt en_LR.txt en_LS.txt en_MG.txt\
|
||||
en_MH.txt en_MO.txt en_MP.txt en_MS.txt en_MT.txt\
|
||||
en_MU.txt en_MW.txt en_MY.txt en_NA.txt en_NF.txt\
|
||||
en_NG.txt en_NL.txt en_NR.txt en_NU.txt en_NZ.txt\
|
||||
en_PG.txt en_PH.txt en_PK.txt en_PN.txt en_PW.txt\
|
||||
en_RW.txt en_SB.txt en_SC.txt en_SD.txt en_SE.txt\
|
||||
en_SG.txt en_SH.txt en_SI.txt en_SL.txt en_SS.txt\
|
||||
en_SX.txt en_SZ.txt en_TC.txt en_TK.txt en_TO.txt\
|
||||
en_TT.txt en_TV.txt en_TZ.txt en_UG.txt en_VC.txt\
|
||||
en_VG.txt en_VU.txt en_WS.txt en_ZA.txt en_ZM.txt\
|
||||
en_ZW.txt eo.txt es.txt es_419.txt es_AR.txt\
|
||||
es_BO.txt es_BR.txt es_BZ.txt es_CL.txt es_CO.txt\
|
||||
es_CR.txt es_CU.txt es_DO.txt es_EC.txt es_GT.txt\
|
||||
es_HN.txt es_MX.txt es_NI.txt es_PA.txt es_PE.txt\
|
||||
es_PR.txt es_PY.txt es_SV.txt es_US.txt es_UY.txt\
|
||||
es_VE.txt et.txt eu.txt ewo.txt fa.txt\
|
||||
ff.txt ff_Latn.txt fi.txt fil.txt fo.txt\
|
||||
fr.txt fr_CA.txt fr_GF.txt fur.txt fy.txt\
|
||||
ga.txt gd.txt gl.txt gsw.txt gu.txt\
|
||||
guz.txt gv.txt ha.txt ha_NE.txt haw.txt\
|
||||
he.txt hi.txt hr.txt hsb.txt hu.txt\
|
||||
hy.txt ia.txt id.txt ig.txt ii.txt\
|
||||
is.txt it.txt ja.txt jgo.txt jmc.txt\
|
||||
jv.txt ka.txt kab.txt kam.txt kde.txt\
|
||||
kea.txt khq.txt ki.txt kk.txt kkj.txt\
|
||||
kl.txt kln.txt km.txt kn.txt ko.txt\
|
||||
ko_KP.txt kok.txt ks.txt ksb.txt ksf.txt\
|
||||
ksh.txt ku.txt kw.txt ky.txt lag.txt\
|
||||
lb.txt lg.txt lkt.txt ln.txt lo.txt\
|
||||
lrc.txt lt.txt lu.txt luo.txt luy.txt\
|
||||
lv.txt mas.txt mer.txt mfe.txt mg.txt\
|
||||
mgh.txt mgo.txt mi.txt mk.txt ml.txt\
|
||||
mn.txt mr.txt ms.txt mt.txt mua.txt\
|
||||
my.txt mzn.txt naq.txt nb.txt nd.txt\
|
||||
nds.txt ne.txt ne_IN.txt nl.txt nl_SR.txt\
|
||||
nmg.txt nn.txt nnh.txt nus.txt nyn.txt\
|
||||
om.txt or.txt os.txt pa.txt pa_Arab.txt\
|
||||
pa_Guru.txt pl.txt ps.txt ps_PK.txt pt.txt\
|
||||
pt_AO.txt pt_CH.txt pt_CV.txt pt_GQ.txt pt_GW.txt\
|
||||
pt_LU.txt pt_MO.txt pt_MZ.txt pt_PT.txt pt_ST.txt\
|
||||
pt_TL.txt qu.txt qu_BO.txt qu_EC.txt rm.txt\
|
||||
rn.txt ro.txt rof.txt ru.txt rw.txt\
|
||||
rwk.txt sah.txt saq.txt sbp.txt sd.txt\
|
||||
se.txt se_FI.txt seh.txt ses.txt sg.txt\
|
||||
shi.txt shi_Latn.txt shi_Tfng.txt si.txt sk.txt\
|
||||
sl.txt smn.txt sn.txt so.txt sq.txt\
|
||||
sr.txt sr_Cyrl.txt sr_Latn.txt sv.txt sw.txt\
|
||||
ta.txt ta_MY.txt ta_SG.txt te.txt teo.txt\
|
||||
tg.txt th.txt ti.txt tk.txt to.txt\
|
||||
tr.txt tt.txt twq.txt tzm.txt ug.txt\
|
||||
uk.txt ur.txt ur_IN.txt uz.txt uz_Arab.txt\
|
||||
uz_Cyrl.txt uz_Latn.txt vai.txt vai_Latn.txt vai_Vaii.txt\
|
||||
vi.txt vun.txt wae.txt wo.txt xh.txt\
|
||||
xog.txt yav.txt yi.txt yo.txt yo_BJ.txt\
|
||||
yue.txt yue_Hans.txt yue_Hant.txt zgh.txt zh.txt\
|
||||
zh_Hans.txt zh_Hans_SG.txt zh_Hant.txt zh_Hant_HK.txt zh_Hant_MO.txt\
|
||||
zu.txt
|
||||
|
@ -2632,29 +2632,30 @@ static void TestGetFunctionalEquivalent(void) {
|
||||
#if !UCONFIG_NO_COLLATION
|
||||
static const char * const collCases[] = {
|
||||
/* avail locale equiv */
|
||||
/* note: in ICU 64, empty locales are shown as available for collation */
|
||||
"f", "sv_US_CALIFORNIA", "sv",
|
||||
"f", "zh_TW@collation=stroke", "zh@collation=stroke", /* alias of zh_Hant_TW */
|
||||
"f", "zh_Hant_TW@collation=stroke", "zh@collation=stroke",
|
||||
"t", "zh_Hant_TW@collation=stroke", "zh@collation=stroke",
|
||||
"f", "sv_CN@collation=pinyin", "sv",
|
||||
"t", "zh@collation=pinyin", "zh",
|
||||
"f", "zh_CN@collation=pinyin", "zh", /* alias of zh_Hans_CN */
|
||||
"f", "zh_Hans_CN@collation=pinyin", "zh",
|
||||
"t", "zh_Hans_CN@collation=pinyin", "zh",
|
||||
"f", "zh_HK@collation=pinyin", "zh", /* alias of zh_Hant_HK */
|
||||
"f", "zh_Hant_HK@collation=pinyin", "zh",
|
||||
"t", "zh_Hant_HK@collation=pinyin", "zh",
|
||||
"f", "zh_HK@collation=stroke", "zh@collation=stroke", /* alias of zh_Hant_HK */
|
||||
"f", "zh_Hant_HK@collation=stroke", "zh@collation=stroke",
|
||||
"t", "zh_Hant_HK@collation=stroke", "zh@collation=stroke",
|
||||
"f", "zh_HK", "zh@collation=stroke", /* alias of zh_Hant_HK */
|
||||
"f", "zh_Hant_HK", "zh@collation=stroke",
|
||||
"t", "zh_Hant_HK", "zh@collation=stroke",
|
||||
"f", "zh_MO", "zh@collation=stroke", /* alias of zh_Hant_MO */
|
||||
"f", "zh_Hant_MO", "zh@collation=stroke",
|
||||
"t", "zh_Hant_MO", "zh@collation=stroke",
|
||||
"f", "zh_TW_STROKE", "zh@collation=stroke",
|
||||
"f", "zh_TW_STROKE@collation=pinyin", "zh",
|
||||
"f", "sv_CN@calendar=japanese", "sv",
|
||||
"t", "sv@calendar=japanese", "sv",
|
||||
"f", "zh_TW@collation=pinyin", "zh", /* alias of zh_Hant_TW */
|
||||
"f", "zh_Hant_TW@collation=pinyin", "zh",
|
||||
"t", "zh_Hant_TW@collation=pinyin", "zh",
|
||||
"f", "zh_CN@collation=stroke", "zh@collation=stroke", /* alias of zh_Hans_CN */
|
||||
"f", "zh_Hans_CN@collation=stroke", "zh@collation=stroke",
|
||||
"t", "zh_Hans_CN@collation=stroke", "zh@collation=stroke",
|
||||
"t", "de@collation=phonebook", "de@collation=phonebook",
|
||||
"t", "hi@collation=standard", "hi",
|
||||
"f", "hi_AU@collation=standard;currency=CHF;calendar=buddhist", "hi",
|
||||
|
Loading…
Reference in New Issue
Block a user