From a649861ff91c24119013a7b9e047b7ada4705821 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Thu, 23 Apr 2015 07:13:31 +0000 Subject: [PATCH] ICU-10830 RBNF locale aliases need fixing X-SVN-Rev: 37382 --- .gitattributes | 18 ++ icu4c/source/data/build.xml | 4 +- icu4c/source/data/icu-config.xml | 1 + icu4c/source/data/icu-rbnf-deprecates.xml | 26 ++ icu4c/source/data/rbnf/es_003.txt | 293 ++++++++++++++++++++++ icu4c/source/data/rbnf/es_DO.txt | 11 + icu4c/source/data/rbnf/es_GT.txt | 11 + icu4c/source/data/rbnf/es_HN.txt | 11 + icu4c/source/data/rbnf/es_MX.txt | 11 + icu4c/source/data/rbnf/es_NI.txt | 11 + icu4c/source/data/rbnf/es_PA.txt | 11 + icu4c/source/data/rbnf/es_PR.txt | 11 + icu4c/source/data/rbnf/es_SV.txt | 11 + icu4c/source/data/rbnf/es_US.txt | 11 + icu4c/source/data/rbnf/in.txt | 11 + icu4c/source/data/rbnf/iw.txt | 11 + icu4c/source/data/rbnf/no.txt | 11 + icu4c/source/data/rbnf/rbnffiles.mk | 29 ++- icu4c/source/data/rbnf/sh.txt | 11 + icu4c/source/data/rbnf/zh_HK.txt | 11 + icu4c/source/data/rbnf/zh_MO.txt | 11 + icu4c/source/data/rbnf/zh_TW.txt | 11 + 22 files changed, 533 insertions(+), 14 deletions(-) create mode 100644 icu4c/source/data/icu-rbnf-deprecates.xml create mode 100644 icu4c/source/data/rbnf/es_003.txt create mode 100644 icu4c/source/data/rbnf/es_DO.txt create mode 100644 icu4c/source/data/rbnf/es_GT.txt create mode 100644 icu4c/source/data/rbnf/es_HN.txt create mode 100644 icu4c/source/data/rbnf/es_MX.txt create mode 100644 icu4c/source/data/rbnf/es_NI.txt create mode 100644 icu4c/source/data/rbnf/es_PA.txt create mode 100644 icu4c/source/data/rbnf/es_PR.txt create mode 100644 icu4c/source/data/rbnf/es_SV.txt create mode 100644 icu4c/source/data/rbnf/es_US.txt create mode 100644 icu4c/source/data/rbnf/in.txt create mode 100644 icu4c/source/data/rbnf/iw.txt create mode 100644 icu4c/source/data/rbnf/no.txt create mode 100644 icu4c/source/data/rbnf/sh.txt create mode 100644 icu4c/source/data/rbnf/zh_HK.txt create mode 100644 icu4c/source/data/rbnf/zh_MO.txt create mode 100644 icu4c/source/data/rbnf/zh_TW.txt diff --git a/.gitattributes b/.gitattributes index 31dec39bf6..3f06605624 100644 --- a/.gitattributes +++ b/.gitattributes @@ -52,6 +52,7 @@ icu4c/icu4c.css -text icu4c/source/aclocal.m4 -text icu4c/source/allinone/icucheck.bat -text icu4c/source/data/curr/pool.res -text +icu4c/source/data/icu-rbnf-deprecates.xml -text icu4c/source/data/in/coll/ucadata-implicithan.icu -text icu4c/source/data/in/coll/ucadata-unihan.icu -text icu4c/source/data/in/nfc.nrm -text @@ -66,6 +67,23 @@ icu4c/source/data/in/uts46.nrm -text icu4c/source/data/lang/pool.res -text icu4c/source/data/locales/pool.res -text icu4c/source/data/makedata.vcxproj -text +icu4c/source/data/rbnf/es_003.txt -text +icu4c/source/data/rbnf/es_DO.txt -text +icu4c/source/data/rbnf/es_GT.txt -text +icu4c/source/data/rbnf/es_HN.txt -text +icu4c/source/data/rbnf/es_MX.txt -text +icu4c/source/data/rbnf/es_NI.txt -text +icu4c/source/data/rbnf/es_PA.txt -text +icu4c/source/data/rbnf/es_PR.txt -text +icu4c/source/data/rbnf/es_SV.txt -text +icu4c/source/data/rbnf/es_US.txt -text +icu4c/source/data/rbnf/in.txt -text +icu4c/source/data/rbnf/iw.txt -text +icu4c/source/data/rbnf/no.txt -text +icu4c/source/data/rbnf/sh.txt -text +icu4c/source/data/rbnf/zh_HK.txt -text +icu4c/source/data/rbnf/zh_MO.txt -text +icu4c/source/data/rbnf/zh_TW.txt -text icu4c/source/data/region/pool.res -text icu4c/source/data/unit/pool.res -text icu4c/source/data/zone/pool.res -text diff --git a/icu4c/source/data/build.xml b/icu4c/source/data/build.xml index afa08d8274..7ffb7c315b 100644 --- a/icu4c/source/data/build.xml +++ b/icu4c/source/data/build.xml @@ -2,11 +2,12 @@ + ]> &icu-config; + &icu-rbnf-deprecates; diff --git a/icu4c/source/data/icu-config.xml b/icu4c/source/data/icu-config.xml index 9fa145d668..96704e1adf 100644 --- a/icu4c/source/data/icu-config.xml +++ b/icu4c/source/data/icu-config.xml @@ -227,6 +227,7 @@ + diff --git a/icu4c/source/data/icu-rbnf-deprecates.xml b/icu4c/source/data/icu-rbnf-deprecates.xml new file mode 100644 index 0000000000..7f77296a48 --- /dev/null +++ b/icu4c/source/data/icu-rbnf-deprecates.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icu4c/source/data/rbnf/es_003.txt b/icu4c/source/data/rbnf/es_003.txt new file mode 100644 index 0000000000..b84b4209b5 --- /dev/null +++ b/icu4c/source/data/rbnf/es_003.txt @@ -0,0 +1,293 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /common/rbnf/es_003.xml +// * +// *************************************************************************** +es_003{ + RBNFRules{ + OrdinalRules{ + "%%dord-mascabbrev:", + "0: \u00BA;", + "1: \u1D49\u02B3;", + "2: \u00BA;", + "3: \u1D49\u02B3;", + "4: \u00BA;", + "20: >>;", + "100: >>;", + "%digits-ordinal-masculine-adjective:", + "-x: \u2212>>;", + "0: =#,##0==%%dord-mascabbrev=;", + "%digits-ordinal-masculine:", + "-x: \u2212>>;", + "0: =#,##0=\u00BA;", + "%digits-ordinal-feminine:", + "-x: \u2212>>;", + "0: =#,##0=\u00AA;", + "%digits-ordinal:", + "0: =%digits-ordinal-masculine=;", + } + SpelloutRules{ + "%%lenient-parse:", + "&[last primary ignorable ] << ' ' << ',' << '-' << '\u00AD';", + "%spellout-numbering-year:", + "x.x: =#,###0.#=;", + "0: =%spellout-numbering=;", + "%spellout-numbering:", + "-x: menos >>;", + "x.x: << punto >>;", + "0: cero;", + "1: uno;", + "2: dos;", + "3: tres;", + "4: cuatro;", + "5: cinco;", + "6: seis;", + "7: siete;", + "8: ocho;", + "9: nueve;", + "10: diez;", + "11: once;", + "12: doce;", + "13: trece;", + "14: catorce;", + "15: quince;", + "16: diecis\u00E9is;", + "17: dieci>>;", + "20: veinte;", + "21: veintiuno;", + "22: veintid\u00F3s;", + "23: veintitr\u00E9s;", + "24: veinticuatro;", + "25: veinticinco;", + "26: veintis\u00E9is;", + "27: veinti>>;", + "30: treinta[ y >>];", + "40: cuarenta[ y >>];", + "50: cincuenta[ y >>];", + "60: sesenta[ y >>];", + "70: setenta[ y >>];", + "80: ochenta[ y >>];", + "90: noventa[ y >>];", + "100: cien;", + "101: ciento >>;", + "200: doscientos[ >>];", + "300: trescientos[ >>];", + "400: cuatrocientos[ >>];", + "500: quinientos[ >>];", + "600: seiscientos[ >>];", + "700: setecientos[ >>];", + "800: ochocientos[ >>];", + "900: novecientos[ >>];", + "1000: mil[ >>];", + "2000: <%spellout-cardinal-masculine< mil[ >>];", + "1000000: un mill\u00F3n[ >>];", + "2000000: <%spellout-cardinal-masculine< millones[ >>];", + "1000000000000: un bill\u00F3n[ >>];", + "2000000000000: <%spellout-cardinal-masculine< billiones[ >>];", + "1000000000000000000: =#,##0=;", + "%spellout-cardinal-masculine:", + "-x: menos >>;", + "x.x: << punto >>;", + "0: cero;", + "1: un;", + "2: =%spellout-numbering=;", + "21: veinti\u00FAn;", + "22: =%spellout-numbering=;", + "30: treinta[ y >>];", + "40: cuarenta[ y >>];", + "50: cincuenta[ y >>];", + "60: sesenta[ y >>];", + "70: setenta[ y >>];", + "80: ochenta[ y >>];", + "90: noventa[ y >>];", + "100: cien;", + "101: ciento >>;", + "200: doscientos[ >>];", + "300: trescientos[ >>];", + "400: cuatrocientos[ >>];", + "500: quinientos[ >>];", + "600: seis\u00ADcientos[ >>];", + "700: sete\u00ADcientos[ >>];", + "800: ocho\u00ADcientos[ >>];", + "900: nove\u00ADcientos[ >>];", + "1000: mil[ >>];", + "2000: <%spellout-cardinal-masculine< mil[ >>];", + "1000000: un mill\u00F3n[ >>];", + "2000000: <%spellout-cardinal-masculine< millones[ >>];", + "1000000000000: un bill\u00F3n[ >>];", + "2000000000000: <%spellout-cardinal-masculine< billiones[ >>];", + "1000000000000000000: =#,##0=;", + "%spellout-cardinal-feminine:", + "-x: menos >>;", + "x.x: << punto >>;", + "0: cero;", + "1: una;", + "2: =%spellout-numbering=;", + "21: veintiuna;", + "22: =%spellout-numbering=;", + "30: treinta[ y >>];", + "40: cuarenta[ y >>];", + "50: cincuenta[ y >>];", + "60: sesenta[ y >>];", + "70: setenta[ y >>];", + "80: ochenta[ y >>];", + "90: noventa[ y >>];", + "100: cien;", + "101: ciento >>;", + "200: dos\u00ADcientas[ >>];", + "300: tres\u00ADcientas[ >>];", + "400: cuatro\u00ADcientas[ >>];", + "500: quinientas[ >>];", + "600: seis\u00ADcientas[ >>];", + "700: sete\u00ADcientas[ >>];", + "800: ocho\u00ADcientas[ >>];", + "900: nove\u00ADcientas[ >>];", + "1000: mil[ >>];", + "2000: <%spellout-cardinal-masculine< mil[ >>];", + "1000000: un mill\u00F3n[ >>];", + "2000000: <%spellout-cardinal-masculine< millones[ >>];", + "1000000000000: un bill\u00F3n[ >>];", + "2000000000000: <%spellout-cardinal-masculine< billiones[ >>];", + "1000000000000000000: =#,##0=;", + "%spellout-ordinal-masculine-adjective:", + "-x: menos >>;", + "x.x: =#,##0.#=;", + "0: cero;", + "1: primer;", + "2: segundo;", + "3: tercer;", + "4: cuarto;", + "5: quinto;", + "6: sexto;", + "7: s\u00E9ptimo;", + "8: octavo;", + "9: noveno;", + "10: d\u00E9cimo;", + "11: und\u00E9cimo;", + "12: duod\u00E9cimo;", + "13: decimo>>;", + "20: vig\u00E9simo[ >>];", + "30: trig\u00E9simo[ >>];", + "40: cuadrag\u00E9simo[ >>];", + "50: quincuag\u00E9simo[ >>];", + "60: sexag\u00E9simo[ >>];", + "70: septuag\u00E9simo[ >>];", + "80: octog\u00E9simo[ >>];", + "90: nonag\u00E9simo[ >>];", + "100: cent\u00E9simo[ >>];", + "200: ducent\u00E9simo[ >>];", + "300: tricent\u00E9simo[ >>];", + "400: cuadringent\u00E9simo[ >>];", + "500: quingent\u00E9simo[ >>];", + "600: sexcent\u00E9simo[ >>];", + "700: septingent\u00E9simo[ >>];", + "800: octing\u00E9simo[ >>];", + "900: noningent\u00E9simo[ >>];", + "1000: mil\u00E9simo[ >>];", + "2000: <%spellout-cardinal-masculine< mil\u00E9simo[ >>];", + "1000000: un millon\u00E9simo[ >>];", + "2000000: <%spellout-cardinal-masculine< millon\u00E9simo[ >>];", + "1000000000000: un billon\u00E9simo[ >>];", + "2000000000000: <%spellout-cardinal-masculine< billon\u00E9simo[ >>];", + "1000000000000000000: =#,##0=\u00BA;", + "%spellout-ordinal-masculine-plural:", + "-x: menos >>;", + "x.x: =#,##0.#=;", + "0: =%spellout-ordinal-masculine=;", + "1: =%spellout-ordinal-masculine=s;", + "1000000000000000000: =#,##0=\u00BA;", + "%spellout-ordinal-masculine:", + "-x: menos >>;", + "x.x: =#,##0.#=;", + "0: cero;", + "1: primero;", + "2: segundo;", + "3: tercero;", + "4: cuarto;", + "5: quinto;", + "6: sexto;", + "7: s\u00E9ptimo;", + "8: octavo;", + "9: noveno;", + "10: d\u00E9cimo;", + "11: und\u00E9cimo;", + "12: duod\u00E9cimo;", + "13: decimo>>;", + "20: vig\u00E9simo[ >>];", + "30: trig\u00E9simo[ >>];", + "40: cuadrag\u00E9simo[ >>];", + "50: quincuag\u00E9simo[ >>];", + "60: sexag\u00E9simo[ >>];", + "70: septuag\u00E9simo[ >>];", + "80: octog\u00E9simo[ >>];", + "90: nonag\u00E9simo[ >>];", + "100: cent\u00E9simo[ >>];", + "200: ducent\u00E9simo[ >>];", + "300: tricent\u00E9simo[ >>];", + "400: cuadringent\u00E9simo[ >>];", + "500: quingent\u00E9simo[ >>];", + "600: sexcent\u00E9simo[ >>];", + "700: septingent\u00E9simo[ >>];", + "800: octing\u00E9simo[ >>];", + "900: noningent\u00E9simo[ >>];", + "1000: mil\u00E9simo[ >>];", + "2000: <%spellout-cardinal-masculine< mil\u00E9simo[ >>];", + "1000000: un millon\u00E9simo[ >>];", + "2000000: <%spellout-cardinal-masculine< millon\u00E9simo[ >>];", + "1000000000000: un billon\u00E9simo[ >>];", + "2000000000000: <%spellout-cardinal-masculine< billon\u00E9simo[ >>];", + "1000000000000000000: =#,##0=\u00BA;", + "%spellout-ordinal-feminine-plural:", + "-x: menos >>;", + "x.x: =#,##0.#=;", + "0: =%spellout-ordinal-feminine=;", + "1: =%spellout-ordinal-feminine=s;", + "1000000000000000000: =#,##0=\u00AA;", + "%spellout-ordinal-feminine:", + "-x: menos >>;", + "x.x: =#,##0.#=;", + "0: cero;", + "1: primera;", + "2: segunda;", + "3: tercera;", + "4: cuarta;", + "5: quinta;", + "6: sexta;", + "7: s\u00E9ptima;", + "8: octava;", + "9: novena;", + "10: d\u00E9cima;", + "11: und\u00E9cima;", + "12: duod\u00E9cima;", + "13: decimo>>;", + "20: vig\u00E9sima[ >>];", + "30: trig\u00E9sima[ >>];", + "40: cuadrag\u00E9sima[ >>];", + "50: quincuag\u00E9sima[ >>];", + "60: sexag\u00E9sima[ >>];", + "70: septuag\u00E9sima[ >>];", + "80: octog\u00E9sima[ >>];", + "90: nonag\u00E9sima[ >>];", + "100: cent\u00E9sima[ >>];", + "200: ducent\u00E9sima[ >>];", + "300: tricent\u00E9sima[ >>];", + "400: cuadringent\u00E9sima[ >>];", + "500: quingent\u00E9sima[ >>];", + "600: sexcent\u00E9sima[ >>];", + "700: septingent\u00E9sima[ >>];", + "800: octing\u00E9sima[ >>];", + "900: noningent\u00E9sima[ >>];", + "1000: mil\u00E9sima[ >>];", + "2000: <%spellout-cardinal-masculine< mil\u00E9sima[ >>];", + "1000000: un millon\u00E9sima[ >>];", + "2000000: <%spellout-cardinal-masculine< millon\u00E9sima[ >>];", + "1000000000000: un billon\u00E9sima[ >>];", + "2000000000000: <%spellout-cardinal-masculine< billon\u00E9sima[ >>];", + "1000000000000000000: =#,##0=\u00AA;", + } + } + Version{"2.1.3.1"} +} diff --git a/icu4c/source/data/rbnf/es_DO.txt b/icu4c/source/data/rbnf/es_DO.txt new file mode 100644 index 0000000000..f33184a333 --- /dev/null +++ b/icu4c/source/data/rbnf/es_DO.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_DO{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_GT.txt b/icu4c/source/data/rbnf/es_GT.txt new file mode 100644 index 0000000000..6337e72afc --- /dev/null +++ b/icu4c/source/data/rbnf/es_GT.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_GT{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_HN.txt b/icu4c/source/data/rbnf/es_HN.txt new file mode 100644 index 0000000000..461f28cfdd --- /dev/null +++ b/icu4c/source/data/rbnf/es_HN.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_HN{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_MX.txt b/icu4c/source/data/rbnf/es_MX.txt new file mode 100644 index 0000000000..9361130297 --- /dev/null +++ b/icu4c/source/data/rbnf/es_MX.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_MX{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_NI.txt b/icu4c/source/data/rbnf/es_NI.txt new file mode 100644 index 0000000000..3a6d03038d --- /dev/null +++ b/icu4c/source/data/rbnf/es_NI.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_NI{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_PA.txt b/icu4c/source/data/rbnf/es_PA.txt new file mode 100644 index 0000000000..28662e1336 --- /dev/null +++ b/icu4c/source/data/rbnf/es_PA.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_PA{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_PR.txt b/icu4c/source/data/rbnf/es_PR.txt new file mode 100644 index 0000000000..02fe310183 --- /dev/null +++ b/icu4c/source/data/rbnf/es_PR.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_PR{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_SV.txt b/icu4c/source/data/rbnf/es_SV.txt new file mode 100644 index 0000000000..1e6186ebbc --- /dev/null +++ b/icu4c/source/data/rbnf/es_SV.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_SV{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/es_US.txt b/icu4c/source/data/rbnf/es_US.txt new file mode 100644 index 0000000000..2a17f5d5f5 --- /dev/null +++ b/icu4c/source/data/rbnf/es_US.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +es_US{ + "%%ALIAS"{"es_003"} +} diff --git a/icu4c/source/data/rbnf/in.txt b/icu4c/source/data/rbnf/in.txt new file mode 100644 index 0000000000..c0a4278d56 --- /dev/null +++ b/icu4c/source/data/rbnf/in.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +in{ + "%%ALIAS"{"id"} +} diff --git a/icu4c/source/data/rbnf/iw.txt b/icu4c/source/data/rbnf/iw.txt new file mode 100644 index 0000000000..a7db8ef063 --- /dev/null +++ b/icu4c/source/data/rbnf/iw.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +iw{ + "%%ALIAS"{"he"} +} diff --git a/icu4c/source/data/rbnf/no.txt b/icu4c/source/data/rbnf/no.txt new file mode 100644 index 0000000000..fdd855f548 --- /dev/null +++ b/icu4c/source/data/rbnf/no.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +no{ + "%%ALIAS"{"nb"} +} diff --git a/icu4c/source/data/rbnf/rbnffiles.mk b/icu4c/source/data/rbnf/rbnffiles.mk index d11c026886..d986f5f94f 100644 --- a/icu4c/source/data/rbnf/rbnffiles.mk +++ b/icu4c/source/data/rbnf/rbnffiles.mk @@ -26,7 +26,10 @@ RBNF_CLDR_VERSION = %version% # Generated by LDML2ICUConverter, from LDML source files. # Aliases without a corresponding xx.xml file (see icu-config.xml & build.xml) -RBNF_SYNTHETIC_ALIAS = +RBNF_SYNTHETIC_ALIAS = 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_MO.txt zh_TW.txt # All aliases (to not be included under 'installed'), but not including root. @@ -37,16 +40,16 @@ RBNF_ALIAS_SOURCE = $(RBNF_SYNTHETIC_ALIAS) RBNF_SOURCE = af.txt am.txt ar.txt az.txt\ be.txt bg.txt bs.txt ca.txt cs.txt\ cy.txt da.txt de.txt ee.txt el.txt\ - en.txt eo.txt es.txt et.txt fa.txt\ - fa_AF.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 lo.txt lt.txt lv.txt\ - mk.txt ms.txt mt.txt nb.txt nl.txt\ - nn.txt pl.txt pt.txt pt_PT.txt ro.txt\ - ru.txt se.txt sk.txt sl.txt sq.txt\ - sr.txt sr_Latn.txt sv.txt ta.txt th.txt\ - tr.txt uk.txt vi.txt zh.txt zh_Hant.txt\ - zh_Hant_HK.txt + en.txt eo.txt es.txt es_003.txt et.txt\ + fa.txt fa_AF.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 lo.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 ro.txt ru.txt se.txt sk.txt\ + sl.txt sq.txt sr.txt sr_Latn.txt sv.txt\ + ta.txt th.txt tr.txt uk.txt vi.txt\ + zh.txt zh_Hant.txt zh_Hant_HK.txt diff --git a/icu4c/source/data/rbnf/sh.txt b/icu4c/source/data/rbnf/sh.txt new file mode 100644 index 0000000000..92016b419a --- /dev/null +++ b/icu4c/source/data/rbnf/sh.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +sh{ + "%%ALIAS"{"sr_Latn"} +} diff --git a/icu4c/source/data/rbnf/zh_HK.txt b/icu4c/source/data/rbnf/zh_HK.txt new file mode 100644 index 0000000000..81e76f7ec6 --- /dev/null +++ b/icu4c/source/data/rbnf/zh_HK.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +zh_HK{ + "%%ALIAS"{"zh_Hant_HK"} +} diff --git a/icu4c/source/data/rbnf/zh_MO.txt b/icu4c/source/data/rbnf/zh_MO.txt new file mode 100644 index 0000000000..626e59ab28 --- /dev/null +++ b/icu4c/source/data/rbnf/zh_MO.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +zh_MO{ + "%%ALIAS"{"zh_Hant_HK"} +} diff --git a/icu4c/source/data/rbnf/zh_TW.txt b/icu4c/source/data/rbnf/zh_TW.txt new file mode 100644 index 0000000000..b17183629f --- /dev/null +++ b/icu4c/source/data/rbnf/zh_TW.txt @@ -0,0 +1,11 @@ +// *************************************************************************** +// * +// * Copyright (C) 2015 International Business Machines +// * Corporation and others. All Rights Reserved. +// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter +// * Source File: /icu-locale-deprecates.xml & build.xml +// * +// *************************************************************************** +zh_TW{ + "%%ALIAS"{"zh_Hant"} +}