ICU-9288 Merge new converter changes into trunk with regenerated data.
X-SVN-Rev: 32080
This commit is contained in:
parent
a3ed885f29
commit
bec84a2a15
@ -5,7 +5,7 @@
|
||||
<!--
|
||||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2005-2011, International Business Machines Corporation and *
|
||||
* Copyright (C) 2005-2012, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
@ -113,7 +113,7 @@
|
||||
</target>
|
||||
|
||||
<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">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" srcFile=".*xml" destFile=".*txt">
|
||||
<!-- launch the tool and generate the data after reading the config file -->
|
||||
<run>
|
||||
<args>
|
||||
@ -121,6 +121,7 @@
|
||||
<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" />
|
||||
<arg name="--type" value="locales"/>
|
||||
</args>
|
||||
<remapper>
|
||||
<remap sourcePath="/Keys" targetDir="lang" />
|
||||
@ -305,15 +306,13 @@
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="supplementalData" depends="init,setup" description="builds supplementalData.txt from supplementalData.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="supplementalData.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="supplementalData.txt" 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"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="supplementalData"/>
|
||||
</args>
|
||||
<remapper>
|
||||
<remap sourcePath="/CurrencyMap" targetDir="curr" />
|
||||
@ -323,85 +322,73 @@
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="metadata" depends="init,setup" description="builds metadata.txt from supplementalMetadata.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="metadata.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="metadata.txt" 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="-q"/>
|
||||
<arg name="-f"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="metadata"/>
|
||||
</args>
|
||||
</run>
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="metaZones" depends="init,setup" description="builds metaZones.txt from metaZones.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="metaZones.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="metaZones.txt" 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="-z"/>
|
||||
<arg name="-f"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="metaZones"/>
|
||||
</args>
|
||||
</run>
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="windowsZones" depends="init,setup" description="builds windowsZones.txt from windowsZones.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="windowsZones.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="windowsZones.txt" 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="-i"/>
|
||||
<arg name="-f"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="windowsZones"/>
|
||||
</args>
|
||||
</run>
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="likelySubtags" depends="init,setup" description="builds likelySubtags.txt from likelySubtags.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="likelySubtags.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="likelySubtags.txt" 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="-t"/>
|
||||
<arg name="-f"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="likelySubtags"/>
|
||||
</args>
|
||||
</run>
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="plurals" depends="init,setup" description="builds plurals.txt from plurals.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="plurals.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="plurals.txt" 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="-r"/>
|
||||
<arg name="-f"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="plurals"/>
|
||||
</args>
|
||||
</run>
|
||||
</cldr-build>
|
||||
</target>
|
||||
<target name="numberingSystems" depends="init,setup" description="builds numberingSystems.txt from numberingSystems.xml">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.LDML2ICUConverter" destFile="numberingSystems.txt" noArgs="true">
|
||||
<cldr-build toolName="org.unicode.cldr.icu.NewLdml2IcuConverter" destFile="numberingSystems.txt" 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="-n"/>
|
||||
<arg name="-f"/>
|
||||
<arg name="-m" value="${env.CLDR_DIR}/common/supplemental" />
|
||||
<arg name="-t" value="numberingSystems"/>
|
||||
</args>
|
||||
</run>
|
||||
</cldr-build>
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/af.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/af.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/af_NA.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/af_NA.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
af_NA{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/agq.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/agq.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ak.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ak.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/am.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/am.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ar.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ar.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/as.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/as.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/asa.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/asa.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/az.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/az.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/az_Cyrl.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/az_Cyrl.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/az_Latn.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/az_Latn.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bas.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bas.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/be.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/be.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bem.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bem.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bez.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bez.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bg.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bg.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bm.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bm.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bn.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bn.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bo.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bo.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/br.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/br.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/brx.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/brx.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/bs.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/bs.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ bs{
|
||||
"Avganistanski avgani",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"Albanski lek (1946-1965)",
|
||||
}
|
||||
ALL{
|
||||
@ -460,7 +460,7 @@ bs{
|
||||
"Izraelska funta",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"stari izraelski šekeli",
|
||||
}
|
||||
ILS{
|
||||
@ -480,7 +480,7 @@ bs{
|
||||
"Iranijski rial",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"stara islandska kruna",
|
||||
}
|
||||
ISK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ca.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ca.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ ca{
|
||||
"afgani afganès",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"lek albanès (1946-1965)",
|
||||
}
|
||||
ALL{
|
||||
@ -355,10 +355,7 @@ ca{
|
||||
"₧",
|
||||
"pesseta espanyola",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
"¤ #,##0;-¤ #,##0",
|
||||
",",
|
||||
".",
|
||||
}
|
||||
@ -484,7 +481,7 @@ ca{
|
||||
"lliura israeliana",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"xéquel israelià",
|
||||
}
|
||||
ILS{
|
||||
@ -504,7 +501,7 @@ ca{
|
||||
"rial iranià",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"corona islandesa antiga",
|
||||
}
|
||||
ISK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/cgg.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/cgg.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/chr.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/chr.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/cs.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/cs.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ cs{
|
||||
"afghánský afghán",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"albánské lek (1946-1965)",
|
||||
}
|
||||
ALL{
|
||||
@ -404,7 +404,7 @@ cs{
|
||||
"izraelská libra",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"izraelský šekel (1980-1985)",
|
||||
}
|
||||
ILS{
|
||||
@ -424,7 +424,7 @@ cs{
|
||||
"íránský rijál",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"islandská koruna (1918-1981)",
|
||||
}
|
||||
ISK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/cy.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/cy.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/da.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/da.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/dav.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/dav.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/de.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/de.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/de_LU.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/de_LU.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
de_LU{
|
||||
@ -12,9 +12,6 @@ de_LU{
|
||||
"F",
|
||||
"Luxemburgischer Franc",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
".",
|
||||
",",
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/dje.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/dje.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/dua.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/dua.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/dyo.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/dyo.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ebu.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ebu.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ee.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ee.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ ee{
|
||||
"afghanistanga afghani",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"albaniaga lek (1946-1965)",
|
||||
}
|
||||
ALL{
|
||||
@ -268,7 +268,7 @@ ee{
|
||||
"tsilega peso",
|
||||
}
|
||||
CNX{
|
||||
"CNX" /** === */,
|
||||
"CNX",
|
||||
"tsainatɔwo ƒe gadzraɖoƒe dollar",
|
||||
}
|
||||
CNY{
|
||||
@ -492,7 +492,7 @@ ee{
|
||||
"israelga pound",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"israelga sheqel (1980-1985)",
|
||||
}
|
||||
ILS{
|
||||
@ -512,7 +512,7 @@ ee{
|
||||
"iranga rial",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"aiselandga króna (1918-1981)",
|
||||
}
|
||||
ISK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/el.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/el.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -387,10 +387,7 @@ el{
|
||||
"Δρχ",
|
||||
"Δραχμή Ελλάδας",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
"#,##0.00 ¤;-#,##0.00 ¤",
|
||||
",",
|
||||
".",
|
||||
}
|
||||
@ -448,7 +445,7 @@ el{
|
||||
"Λίρα Ισραήλ",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"παλιό σεκέλ Ισραήλ",
|
||||
}
|
||||
ILS{
|
||||
@ -468,7 +465,7 @@ el{
|
||||
"Ριάλ Ιράν",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"Παλιά κορόνα Ισλανδίας",
|
||||
}
|
||||
ISK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ en{
|
||||
"Afghan Afghani",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"Albanian Lek (1946-1965)",
|
||||
}
|
||||
ALL{
|
||||
@ -268,7 +268,7 @@ en{
|
||||
"Chilean Peso",
|
||||
}
|
||||
CNX{
|
||||
"CNX" /** === */,
|
||||
"CNX",
|
||||
"Chinese People’s Bank Dollar",
|
||||
}
|
||||
CNY{
|
||||
@ -492,7 +492,7 @@ en{
|
||||
"Israeli Pound",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"Israeli Sheqel (1980-1985)",
|
||||
}
|
||||
ILS{
|
||||
@ -512,7 +512,7 @@ en{
|
||||
"Iranian Rial",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"Icelandic Króna (1918-1981)",
|
||||
}
|
||||
ISK{
|
||||
@ -700,7 +700,7 @@ en{
|
||||
"Mauritian Rupee",
|
||||
}
|
||||
MVP{
|
||||
"MVP" /** === */,
|
||||
"MVP",
|
||||
"Maldivian Rupee",
|
||||
}
|
||||
MVR{
|
||||
@ -912,7 +912,7 @@ en{
|
||||
"Surinamese Guilder",
|
||||
}
|
||||
SSP{
|
||||
"SSP" /** === */,
|
||||
"SSP",
|
||||
"South Sudanese Pound",
|
||||
}
|
||||
STD{
|
||||
@ -1124,7 +1124,7 @@ en{
|
||||
"RINET Funds",
|
||||
}
|
||||
XSU{
|
||||
"XSU" /** === */,
|
||||
"XSU",
|
||||
"Sucre",
|
||||
}
|
||||
XTS{
|
||||
@ -1132,7 +1132,7 @@ en{
|
||||
"Testing Currency Code",
|
||||
}
|
||||
XUA{
|
||||
"XUA" /** === */,
|
||||
"XUA",
|
||||
"ADB Unit of Account",
|
||||
}
|
||||
XXX{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_AU.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_AU.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_AU{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_BB.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_BB.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_BB{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_BE.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_BE.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_BE{
|
||||
@ -12,10 +12,7 @@ en_BE{
|
||||
"BEF",
|
||||
"Belgian Franc",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
"#,##0.00 ¤;-#,##0.00 ¤",
|
||||
",",
|
||||
".",
|
||||
}
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_BM.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_BM.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_BM{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_BW.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_BW.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_BW{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_BZ.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_BZ.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_BZ{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_CA.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_CA.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_CA{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_HK.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_HK.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_HK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_JM.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_JM.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_JM{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_MT.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_MT.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_MT{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_NA.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_NA.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_NA{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_NZ.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_NZ.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_NZ{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_PH.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_PH.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_PH{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_PK.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_PK.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_PK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_SG.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_SG.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_SG{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_TT.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_TT.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_TT{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/en_ZA.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/en_ZA.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
en_ZA{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/eo.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/eo.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_AR.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_AR.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_AR{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_BO.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_BO.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_BO{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_CL.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_CL.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_CL{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_CO.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_CO.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_CO{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_CR.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_CR.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_CR{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_DO.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_DO.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_DO{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_EC.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_EC.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_EC{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_GT.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_GT.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_GT{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_HN.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_HN.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_HN{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_MX.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_MX.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_MX{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_NI.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_NI.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_NI{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_PA.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_PA.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_PA{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_PE.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_PE.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_PE{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_PR.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_PR.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_PR{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_PY.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_PY.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_PY{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_US.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_US.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_US{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_UY.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_UY.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_UY{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/es_VE.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/es_VE.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
es_VE{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/et.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/et.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -263,9 +263,6 @@ et{
|
||||
"kr",
|
||||
"Eesti kroon",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
".",
|
||||
" ",
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/eu.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/eu.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -183,10 +183,7 @@ eu{
|
||||
"₧",
|
||||
"ESP",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
"¤ #,##0;-¤ #,##0",
|
||||
",",
|
||||
".",
|
||||
}
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ewo.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ewo.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fa.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fa.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -848,8 +848,5 @@ fa{
|
||||
"دلار زیمبابوه (۲۰۰۸)",
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
Version{"2.0.65.46"}
|
||||
}
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fa_AF.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fa_AF.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fa_AF{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ff.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ff.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fi.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fi.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ fi{
|
||||
"Afganistanin afgaani",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"Albanian lek (1946–1965)",
|
||||
}
|
||||
ALL{
|
||||
@ -268,7 +268,7 @@ fi{
|
||||
"Chilen peso",
|
||||
}
|
||||
CNX{
|
||||
"CNX" /** === */,
|
||||
"CNX",
|
||||
"Kiinan kansanpankin dollari",
|
||||
}
|
||||
CNY{
|
||||
@ -492,7 +492,7 @@ fi{
|
||||
"Israelin punta",
|
||||
}
|
||||
ILR{
|
||||
"ILR" /** === */,
|
||||
"ILR",
|
||||
"Israelin sekeli (1980–1985)",
|
||||
}
|
||||
ILS{
|
||||
@ -512,7 +512,7 @@ fi{
|
||||
"Iranin rial",
|
||||
}
|
||||
ISJ{
|
||||
"ISJ" /** === */,
|
||||
"ISJ",
|
||||
"Islannin kruunu (1918–1981)",
|
||||
}
|
||||
ISK{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fil.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fil.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fo.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fo.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -28,7 +28,7 @@ fr{
|
||||
"afghani afghan",
|
||||
}
|
||||
ALK{
|
||||
"ALK" /** === */,
|
||||
"ALK",
|
||||
"lek albanais (1947–1961)",
|
||||
}
|
||||
ALL{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr_BI.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr_BI.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fr_BI{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr_CA.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr_CA.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fr_CA{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr_DJ.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr_DJ.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fr_DJ{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr_GN.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr_GN.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fr_GN{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr_KM.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr_KM.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fr_KM{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/fr_LU.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/fr_LU.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
fr_LU{
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ga.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ga.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/gl.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/gl.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
@ -255,10 +255,7 @@ gl{
|
||||
"₧",
|
||||
"Peseta española",
|
||||
{
|
||||
/**
|
||||
* Duplicated from NumberPatterns resource
|
||||
*/
|
||||
"#,##0.00 ¤",
|
||||
"#,##0 ¤;-#,##0 ¤",
|
||||
",",
|
||||
".",
|
||||
}
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/gsw.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/gsw.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/gu.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/gu.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/guz.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/guz.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/gv.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/gv.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ha.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ha.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
@ -2,8 +2,8 @@
|
||||
// *
|
||||
// * Copyright (C) 2012 International Business Machines
|
||||
// * Corporation and others. All Rights Reserved.
|
||||
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
|
||||
// * Source File:<path>/common/main/ha_Latn.xml
|
||||
// * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter
|
||||
// * Source File: <path>/common/main/ha_Latn.xml
|
||||
// *
|
||||
// ***************************************************************************
|
||||
/**
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user