ICU-4450 synch up with cldr and add a new way for generating data from cldr

X-SVN-Rev: 18841
This commit is contained in:
Ram Viswanadha 2005-11-30 23:44:06 +00:00
parent 6f73b511e1
commit deb08768aa
475 changed files with 1942 additions and 1384 deletions

206
icu4c/source/data/build.xml Normal file
View file

@ -0,0 +1,206 @@
<!DOCTYPE project [
<!ENTITY icu-config SYSTEM "file:./icu-config.xml">
]>
<!--
/*
*******************************************************************************
* Copyright (C) 2005, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
-->
<project name="icu-build" default="util" basedir=".">
<target name="init">
<tstamp/>
<!-- Load environment variables -->
<property environment="env"/>
<condition property="is.icu4j.classes.set" >
<or>
<isset property="env.ICU4J_CLASSES" />
<isset property="env.ICU4J_JAR" />
</or>
</condition >
<fail unless="is.icu4j.classes.set" message="Please set the ICU4J_CLASSES or ICU4J_JAR environment variable."/>
<condition property="is.icu4c.dir.set" >
<isset property="env.ICU4C_DIR" />
</condition >
<fail unless="is.icu4c.dir.set" message="Please set the ICU4C_DIR environment variable."/>
<condition property="is.cldr.dir.set" >
<isset property="env.CLDR_DIR" />
</condition >
<fail unless="is.cldr.dir.set" message="Please set the CLDR_DIR environment variable."/>
<condition property="is.cldr.classes.set" >
<or>
<isset property="env.CLDR_CLASSES" />
<isset property="env.CLDR_JAR" />
</or>
</condition >
<fail unless="is.cldr.classes.set" message="Please set the CLDR_CLASSES or CLDR_JAR environment variable."/>
<condition property="is.utilities.classes.set" >
<or>
<isset property="env.ICU4J_CLASSES" />
<isset property="env.UTILITIES_JAR" />
</or>
</condition >
<fail unless="is.utilities.classes.set" message="Please set the ICU4J_CLASSES or UTILITIES_JAR environment variable."/>
<echo message="java home: ${java.home}"/>
<echo message="java version: ${java.version}"/>
<echo message="ant java version: ${ant.java.version}"/>
<echo message="${ant.version}"/>
</target>
<target name="setup">
<echo message="${env.CLDR_CLASSES}"/>
<taskdef name="cldr-build" classname="org.unicode.cldr.ant.CLDRBuild">
<classpath>
<pathelement path="${java.class.path}/"/>
<pathelement path="${env.ICU4J_CLASSES}"/>
<pathelement path="${env.CLDR_CLASSES}"/>
<pathelement location="${env.ICU4J_JAR}"/>
<pathelement location="${env.CLDR_JAR}"/>
<pathelement location="${env.UTILITIES_JAR}"/>
</classpath>
</taskdef>
</target>
<!-- target for generating ICU data -->
<target name="all" depends="locales, resfiles, collation, colfiles" />
<target name="locales" depends="init,setup" description="builds locale files in ICU text format">
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" srcFile=".*xml" destFile=".*txt">
<!-- launch the tool and generate the data after reading the config file -->
<run>
<args>
<arg name="--sourcedir" value="${env.CLDR_DIR}/common/main" />
<arg name="--destdir" value="${env.ICU4C_DIR}/source/data/locales"/>
<arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/main"/>
<arg name="--supplementaldir" value="${env.CLDR_DIR}/common/supplemental" />
</args>
<!-- http://ant.apache.org/faq.html#xml-entity-include -->
&icu-config;
</run>
</cldr-build>
</target>
<target name="resfiles" depends="init,setup" description="builds resfiles.mk">
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="resfiles.mk" noArgs="true">
<run>
<args>
<arg name="-s" value="${env.CLDR_DIR}/common/main" />
<arg name="-d" value="${env.ICU4C_DIR}/source/data/locales"/>
<arg name="-p" value="${env.ICU4C_DIR}/source/data/xml/main"/>
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
<arg name="-w" value="${env.CLDR_DIR}/common/main" />
</args>
<!-- locale aliases (main) -->
<deprecates>
<alias from="in" to="id" />
<alias from="in_ID" to="id_ID" />
<alias from="iw" to="he" />
<alias from="iw_IL" to="he_IL" />
<alias from="ja_JP_TRADITIONAL" to="ja_JP@calendar=japanese" xpath="//ldml/dates/calendars/default[@type='japanese']"/>
<alias from="ji" to="yi" />
<alias from="jw" to="jv"/>
<alias from="no" to="nb"/>
<alias from="no_NO" to="nb_NO"/>
<alias from="no_NO_NY" to="nn_NO" />
<alias from="en_RH" to="en_ZW" />
<alias from="th_TH_TRADITIONAL" to="th_TH@calendar=buddhist" xpath="//ldml/dates/calendars/default[@type='buddhist']" />
<aliasLocale locale="az_AZ" />
<aliasLocale locale="sh" />
<aliasLocale locale="sh_BA" />
<aliasLocale locale="sh_CS" />
<aliasLocale locale="sh_YU" />
<aliasLocale locale="sr_BA" />
<aliasLocale locale="sr_CS" />
<aliasLocale locale="sr_YU" />
<aliasLocale locale="sr_Cyrl_YU" />
<aliasLocale locale="sr_Latn_YU" />
<aliasLocale locale="uz_AF" />
<aliasLocale locale="uz_UZ" />
<aliasLocale locale="zh_CN" />
<aliasLocale locale="zh_HK" />
<aliasLocale locale="zh_MO" />
<aliasLocale locale="zh_SG" />
<aliasLocale locale="zh_TW" />
</deprecates>
</run>
</cldr-build>
</target>
<target name="collation" depends="init,setup" description="builds collation files in ICU text format">
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" srcFile=".*xml" destFile=".*txt">
<run>
<args>
<arg name="--sourcedir" value="${env.CLDR_DIR}/common/collation" />
<arg name="--destdir" value="${env.ICU4C_DIR}/source/data/coll"/>
<arg name="--specialsdir" value="${env.ICU4C_DIR}/source/data/xml/collation"/>
<arg name="--supplementaldir" value="${env.CLDR_DIR}/common/supplemental" />
</args>
<!-- http://ant.apache.org/faq.html#xml-entity-include -->
&icu-config;
</run>
</cldr-build>
</target>
<target name="colfiles" depends="init, setup" description="builds colfiles.mk">
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="colfiles.mk" noArgs="true">
<!-- launch the tool and generate the data after reading the config file -->
<run>
<args>
<arg name="-s" value="${env.CLDR_DIR}/common/collation" />
<arg name="-d" value="${env.ICU4C_DIR}/source/data/coll"/>
<arg name="-p" value="${env.ICU4C_DIR}/source/data/xml/collation"/>
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
<arg name="-w" value="${env.CLDR_DIR}/common/collation" />
</args>
<deprecates>
<alias from="de__PHONEBOOK" to="de@collation=phonebook" xpath="//ldml/collations/default[@type='phonebook']"/>
<alias from="es__TRADITIONAL" to="es@collation=traditional" xpath="//ldml/collations/default[@type='traditional']"/>
<alias from="hi__DIRECT" to="hi@collation=direct" xpath="//ldml/collations/default[@type='direct']"/>
<alias from="zh__PINYIN" to="zh@collation=pinyin" xpath="//ldml/collations/default[@type='pinyin']"/>
<alias from="zh_TW_STROKE" to="zh@collation=stroke" xpath="//ldml/collations/default[@type='stroke']"/>
<alias from="in" to="id" />
<alias from="in_ID" to="id_ID" />
<alias from="iw" to="he" />
<alias from="iw_IL" to="he_IL" />
<emptyLocale locale="de_" />
<emptyLocale locale="es_" />
<emptyLocale locale="hi_" />
<emptyLocale locale="zh_" />
</deprecates>
</run>
</cldr-build>
</target>
<target name="currencydata" depends="init,setup" description="builds CurrencyData.txt from supplementalData.xml">
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="CurrencyData.txt" srcFile="supplementalData.xml" noArgs="true">
<!-- launch the tool and generate the data after reading the config file -->
<run>
<args>
<arg name="-s" value="${env.CLDR_DIR}/common/supplemental" />
<arg name="-d" value="${env.ICU4C_DIR}/source/data/misc"/>
<arg name="-l"/>
<arg name="-f"/>
</args>
</run>
</cldr-build>
</target>
<target name="clean" depends="init, setup" description="deletes all txt files and mk files from coll and locales directories">
<delete>
<fileset id="locales" dir="${env.ICU4C_DIR}/source/data/locales">
<include name="*.txt" />
<include name="resfiles.mk" />
</fileset>
<fileset id="locales" dir="${env.ICU4C_DIR}/source/data/coll">
<include name="*.txt" />
<include name="colfiles.mk" />
</fileset>
<fileset id="locales" dir="${env.ICU4C_DIR}/source/data/misc">
<include name="CurrencyData.txt" />
</fileset>
</delete>
</target>
</project>

View file

@ -0,0 +1,57 @@
# ***************************************************************************
# *
# * Copyright (C) 1997-2005, International Business Machines
# * Corporation and others. All Rights Reserved.
# *
# ***************************************************************************
Steps for building ICU data from CLDR:
Developers of CLDR:
1. Check out CLDR from the CVS repository
2. Check out ICU from ICU CVS repository
3. Check out ICU4J from ICU CVS repository
4. Set the required environment variables
export JAVA_HOME=<path>/java
export ANT_OPTS="-DCLDR_DTD_CACHE=<path>/temp/cldrdtd"
export CLDR_DIR=<path>/cldr
export CLDR_CLASSES=<path>/cldr/tools/java/classes
export ICU4C_DIR=/work/icu
export ICU4J_CLASSES=<path>/icu4j/classes
5. Change directory to <path>/icu/source/data/
6. Enter command
<path>/ant/bin/ant all
Debugging in Eclipse:
1. From Eclipse select Run > Run from toolbar
2. Click New button
3. Go to Main tab and enter
Name: Ant_Launcher
Project: cldr
Main class: org.apache.tools.ant.launch.Launcher
4. Go to Arguments tab and enter
Program Arguments: -buildfile c:\work\cldr\tools\java\build.xml icu4c
VM Arguments: -classpath C:\work\apache-ant-1.6.1\lib\ant-launcher.jar
-Dant.home=C:\work\apache-ant-1.6.1
-DCLDR_DTD_CACHE=/work/temp/cldrdtd/
5. Go to Environment tag and create new variables
CLDR_DIR=<path>/cldr
CLDR_CLASSES=<path>/cldr/tools/java/classes
ICU4C_DIR=/work/icu
ICU4J_CLASSES=<path>/icu4j/classes
6. Set a break point in CLDRBuild or the tool class that needs to be debugged.
Users of CLDR:
1. Download cldrtools.zip from the CLDR website and unzip in a directory
2. Download cldr.zip from the CLDR website and unzip in cldr directory
3. Check out ICU from ICU CVS repository
4. Set the required environment variables
export JAVA_HOME=<path>/java
export ANT_OPTS="-DCLDR_DTD_CACHE=<path>/temp/cldrdtd"
export CLDR_DIR=<path>/cldr
export CLDR_JAR=<path>/cldr.jar
export ICU4C_DIR=<path>/icu
export ICU4J_JAR=<path>/icu4j.jar
export UTILITIES_JAR=<path>/utilities.jar
5. Change directory to <path>/icu/source/data/
6. Enter command
<path>/ant/bin/ant all

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/ar.xml
// * Source File:<path>/common/collation/ar.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/ar.xml
* ICU <specials> source: <path>/xml/collation/ar.xml
*/
ar{
Version{"1.18"}
Version{"1.19"}
collations{
standard{
Sequence{"&ة=ت"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,13 +3,13 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/be.xml
// * Source File:<path>/common/collation/be.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/be.xml
* ICU <specials> source: <path>/xml/collation/be.xml
*/
be{
Version{"1.15"}
Version{"1.16"}
collations:alias{"ru/collations"}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,13 +3,13 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/bg.xml
// * Source File:<path>/common/collation/bg.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/bg.xml
* ICU <specials> source: <path>/xml/collation/bg.xml
*/
bg{
Version{"1.15"}
Version{"1.16"}
collations:alias{"ru/collations"}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/ca.xml
// * Source File:<path>/common/collation/ca.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/ca.xml
* ICU <specials> source: <path>/xml/collation/ca.xml
*/
ca{
Version{"1.18"}
Version{"1.20"}
collations{
standard{
Sequence{" [backwards 2]&C<ch<<<Ch<<<CH&L<ll<<<l·l<<<Ll<<<L·l<<<LL<<<L·L"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -24,8 +24,8 @@
#
# Generated by LDML2ICUConverter, from LDML source files.
# Aliases which do not have a corresponding xx.xml file (see deprecatedList.xml)
COLLATION_SYNTHETIC_ALIAS = de_.txt es_.txt hi_.txt zh_.txt de__PHONEBOOK.txt es__TRADITIONAL.txt hi__DIRECT.txt in.txt\
# Aliases which do not have a corresponding xx.xml file (see icu-config.xml & build.xml)
COLLATION_SYNTHETIC_ALIAS = de__PHONEBOOK.txt es__TRADITIONAL.txt hi__DIRECT.txt in.txt\
in_ID.txt iw.txt iw_IL.txt zh_TW_STROKE.txt zh__PINYIN.txt
@ -38,30 +38,30 @@ COLLATION_EMPTY_SOURCE = ar_AE.txt ar_BH.txt ar_DZ.txt ar_EG.txt\
ar_IN.txt ar_IQ.txt ar_JO.txt ar_KW.txt ar_LB.txt\
ar_LY.txt ar_MA.txt ar_OM.txt ar_QA.txt ar_SA.txt\
ar_SD.txt ar_SY.txt ar_TN.txt ar_YE.txt be_BY.txt\
bg_BG.txt ca_ES.txt cs_CZ.txt da_DK.txt de_AT.txt\
de_BE.txt de_CH.txt de_DE.txt de_LU.txt el_GR.txt\
en_AU.txt en_BW.txt en_CA.txt en_GB.txt en_HK.txt\
en_IE.txt en_IN.txt en_MT.txt en_NZ.txt en_PH.txt\
en_SG.txt en_US.txt en_US_POSIX.txt en_VI.txt en_ZA.txt\
en_ZW.txt es_AR.txt es_BO.txt es_CL.txt es_CO.txt\
es_CR.txt es_DO.txt es_EC.txt es_ES.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_EE.txt fa_IR.txt fi_FI.txt fo_FO.txt\
fr_BE.txt fr_CA.txt fr_CH.txt fr_FR.txt fr_LU.txt\
ga.txt ga_IE.txt gu_IN.txt he_IL.txt hi_IN.txt\
hr_HR.txt hu_HU.txt id.txt id_ID.txt is_IS.txt\
it_CH.txt it_IT.txt ja_JP.txt kk_KZ.txt kl_GL.txt\
kn_IN.txt ko_KR.txt lt_LT.txt lv_LV.txt mk_MK.txt\
mr_IN.txt ms.txt ms_BN.txt ms_MY.txt mt_MT.txt\
nb_NO.txt nl.txt nl_BE.txt nl_NL.txt nn_NO.txt\
om_ET.txt om_KE.txt pa_IN.txt pl_PL.txt ps_AF.txt\
pt.txt pt_BR.txt pt_PT.txt ro_RO.txt ru_RU.txt\
ru_UA.txt sh_BA.txt sh_YU.txt sk_SK.txt sl_SI.txt\
sq_AL.txt sr_BA.txt sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_YU.txt\
sr_YU.txt sv_FI.txt sv_SE.txt ta_IN.txt te_IN.txt\
th_TH.txt tr_TR.txt uk_UA.txt vi_VN.txt zh_CN.txt\
zh_SG.txt
bg_BG.txt ca_ES.txt cs_CZ.txt da_DK.txt de_.txt\
de_AT.txt de_BE.txt de_CH.txt de_DE.txt de_LU.txt\
el_GR.txt en_AU.txt en_BW.txt en_CA.txt en_GB.txt\
en_HK.txt en_IE.txt en_IN.txt en_MT.txt en_NZ.txt\
en_PH.txt en_SG.txt en_US.txt en_US_POSIX.txt en_VI.txt\
en_ZA.txt en_ZW.txt es_.txt es_AR.txt es_BO.txt\
es_CL.txt es_CO.txt es_CR.txt es_DO.txt es_EC.txt\
es_ES.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_EE.txt fa_IR.txt\
fi_FI.txt fo_FO.txt fr_BE.txt fr_CA.txt fr_CH.txt\
fr_FR.txt fr_LU.txt ga.txt ga_IE.txt gu_IN.txt\
he_IL.txt hi_.txt hi_IN.txt hr_HR.txt hu_HU.txt\
id.txt id_ID.txt is_IS.txt it_CH.txt it_IT.txt\
ja_JP.txt kk_KZ.txt kl_GL.txt kn_IN.txt ko_KR.txt\
lt_LT.txt lv_LV.txt mk_MK.txt mr_IN.txt ms.txt\
ms_BN.txt ms_MY.txt mt_MT.txt nb_NO.txt nl.txt\
nl_BE.txt nl_NL.txt nn_NO.txt om_ET.txt om_KE.txt\
pa_IN.txt pl_PL.txt ps_AF.txt pt.txt pt_BR.txt\
pt_PT.txt ro_RO.txt ru_RU.txt ru_UA.txt sh_BA.txt\
sh_YU.txt sk_SK.txt sl_SI.txt sq_AL.txt sr_BA.txt\
sr_Cyrl.txt sr_Cyrl_BA.txt sr_Cyrl_YU.txt sr_YU.txt sv_FI.txt\
sv_SE.txt ta_IN.txt te_IN.txt th_TH.txt tr_TR.txt\
uk_UA.txt vi_VN.txt zh_.txt zh_CN.txt zh_SG.txt
# Ordinary resources

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/cs.xml
// * Source File:<path>/common/collation/cs.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/cs.xml
* ICU <specials> source: <path>/xml/collation/cs.xml
*/
cs{
Version{"1.20"}
Version{"1.21"}
collations{
standard{
Sequence{"&C<č<<<Č&H<ch<<<cH<<<Ch<<<CH&R<ř<<<Ř&S<š<<<Š&Z<ž<<<Ž"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,14 +3,14 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/da.xml
// * Source File:<path>/common/collation/da.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/da.xml
* ICU <specials> source: <path>/xml/collation/da.xml
*/
da{
Version{"1.18"}
Version{"1.20"}
collations{
standard{
Sequence{
@ -22,7 +22,7 @@ da{
"&[before 1]ʒ<æ<<<Æ<<ä<<<Ä<<ę<<<Ę<ø<<<Ø<<ö<<<Ö<<ő<<<Ő<<œ<<<Œ<å<<<Å<<<"
"aa<<<Aa<<<AA"
}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,22 +3,22 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/de.xml
// * Source File:<path>/common/collation/de.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/de.xml
* ICU <specials> source: <path>/xml/collation/de.xml
*/
de{
Version{"1.21"}
Version{"1.22"}
collations{
phonebook{
Sequence{"&a<<æ/e<<ä/e&A<<Æ/E<<Ä/E&œ<<ö/e&Œ<<Ö/E&u<<ü/e&U<<Ü/E"}
Version{"1.3"}
Version{"1.4"}
}
standard{
Sequence{"&ae<<æ<<<Æ"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,9 +3,12 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**
* empty locale file for dependency checking
*/
de_{
/**
* so genrb doesn't issue warnings

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
de__PHONEBOOK{

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/el.xml
// * Source File:<path>/common/collation/el.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/el.xml
* ICU <specials> source: <path>/xml/collation/el.xml
*/
el{
Version{"1.19"}
Version{"1.20"}
collations{
standard{
Sequence{" [normalization on ]"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/en.xml
// * Source File:<path>/common/collation/en.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/en.xml
* ICU <specials> source: <path>/xml/collation/en.xml
*/
en{
Version{"1.19"}
Version{"1.20"}
collations{
standard{
Sequence{"&ae<<æ<<<Æ"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/en_BE.xml
// * Source File:<path>/common/collation/en_BE.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/en_BE.xml
* ICU <specials> source: <path>/xml/collation/en_BE.xml
*/
en_BE{
Version{"1.18"}
Version{"1.19"}
collations{
standard{
Sequence{" [backwards 2]"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/eo.xml
// * Source File:<path>/common/collation/eo.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/eo.xml
* ICU <specials> source: <path>/xml/collation/eo.xml
*/
eo{
Version{"1.17"}
Version{"1.18"}
collations{
standard{
Sequence{"&C<ĉ<<<Ĉ&G<ĝ<<<Ĝ&H<ĥ<<<Ĥ&J<ĵ<<<Ĵ&S<ŝ<<<Ŝ&U<ŭ<<<Ŭ"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,22 +3,22 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/es.xml
// * Source File:<path>/common/collation/es.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/es.xml
* ICU <specials> source: <path>/xml/collation/es.xml
*/
es{
Version{"1.19"}
Version{"1.21"}
collations{
standard{
Sequence{"&N<ñ<<<Ñ&ae<<æ<<<Æ"}
Version{"1.3"}
Version{"1.4"}
}
traditional{
Sequence{"&N<ñ<<<Ñ&C<ch<<<Ch<<<CH&l<ll<<<Ll<<<LL"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,9 +3,12 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**
* empty locale file for dependency checking
*/
es_{
/**
* so genrb doesn't issue warnings

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
es__TRADITIONAL{

View file

@ -3,14 +3,14 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/et.xml
// * Source File:<path>/common/collation/et.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/et.xml
* ICU <specials> source: <path>/xml/collation/et.xml
*/
et{
Version{"1.18"}
Version{"1.19"}
collations{
standard{
Sequence{
@ -18,7 +18,7 @@ et{
"&v<<w<<<W"
"&[before 1]X<õ<<<Õ<ä<<<Ä<ö<<<Ö<ü<<<Ü"
}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,14 +3,14 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/fa.xml
// * Source File:<path>/common/collation/fa.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/fa.xml
* ICU <specials> source: <path>/xml/collation/fa.xml
*/
fa{
Version{"1.19"}
Version{"1.20"}
collations{
standard{
Sequence{
@ -22,7 +22,7 @@ fa{
"&ۏ<ه<<ە<<ہ<<ة<<ۃ<<ۀ<<ھ"
"&ی<<ى<<ے<<ي<<ې<<ۑ<<ۍ<<ێ"
}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,13 +3,13 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/fa_AF.xml
// * Source File:<path>/common/collation/fa_AF.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/fa_AF.xml
* ICU <specials> source: <path>/xml/collation/fa_AF.xml
*/
fa_AF{
Version{"1.14"}
Version{"1.15"}
collations:alias{"ps/collations"}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,14 +3,14 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/fi.xml
// * Source File:<path>/common/collation/fi.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/fi.xml
* ICU <specials> source: <path>/xml/collation/fi.xml
*/
fi{
Version{"1.20"}
Version{"1.21"}
collations{
standard{
Sequence{
@ -21,7 +21,7 @@ fi{
"&Y<<ü<<<Ü<<ű<<<Ű"
"&[before 1]ʒ<å<<<Å<ä<<<Ä<<æ<<<Æ<ö<<<Ö<<ø<<<Ø<<ő<<<Ő<<õ<<<Õ<<œ<<<Œ"
}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,14 +3,14 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/fo.xml
// * Source File:<path>/common/collation/fo.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/fo.xml
* ICU <specials> source: <path>/xml/collation/fo.xml
*/
fo{
Version{"1.18"}
Version{"1.20"}
collations{
standard{
Sequence{
@ -21,7 +21,7 @@ fo{
"&[before 1]ʒ<æ<<<Æ<<ä<<<Ä<<ę<<<Ę<ø<<<Ø<<ö<<<Ö<<ő<<<Ő<<œ<<<Œ<å<<<Å<<<"
"aa<<<Aa<<<AA"
}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,18 +3,18 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: ../../../cldr/common/collation/fr.xml
// * Source File:<path>/common/collation/fr.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ./xml/collation/fr.xml
* ICU <specials> source: <path>/xml/collation/fr.xml
*/
fr{
Version{"1.19"}
Version{"1.20"}
collations{
standard{
Sequence{" [backwards 2]&ae<<æ<<<Æ"}
Version{"1.3"}
Version{"1.4"}
}
}
}

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

View file

@ -3,7 +3,7 @@
// * Copyright (C) 2005 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Source File: deprecatedList.xml
// * Source File:<path>/icu-config.xml & build.xml
// *
// ***************************************************************************
/**

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