ICU-3938 Add CLDR changes for English.

X-SVN-Rev: 16465
This commit is contained in:
George Rhoten 2004-10-13 00:44:55 +00:00
parent e10141ecc9
commit 94a92cdceb
3 changed files with 26 additions and 6 deletions

View file

@ -3,16 +3,36 @@
// * Copyright (C) 2004 International Business Machines
// * Corporation and others. All Rights Reserved.
// * Tool: com.ibm.icu.dev.tool.cldr.LDML2ICUConverter.java
// * Date & Time: 2004/8/26 12:55
// * Source File: \work\locale\common\collation\\en.xml
// * Source File: ../../../locale/common/collation\en.xml
// *
// ***************************************************************************
/**
* ICU <specials> source: ../../../locale/icu/collation\en.xml
*/
en{
Version{"1.1.1"}
Version{"1.2"}
collations{
standard{
Sequence{"&A<<Æ/E&a<<æ/e"}
Sequence{"&ae<<æ<<<Æ"}
Version{"1.0"}
}
validSubLocales{
en_AU{""}
en_BW{""}
en_CA{""}
en_GB{""}
en_HK{""}
en_IE{""}
en_IN{""}
en_MT{""}
en_NZ{""}
en_PH{""}
en_SG{""}
en_US{""}
en_US_POSIX{""}
en_VI{""}
en_ZA{""}
en_ZW{""}
}
}
}

View file

@ -380,7 +380,7 @@ void TestProperty()
buffer[0] = '\0';
log_verbose("ucol_getRulesEx() testing ...\n");
tempLength = ucol_getRulesEx(col,UCOL_TAILORING_ONLY,buffer,bufLen );
doAssert( tempLength == 0x0e, "getRulesEx() result incorrect" );
doAssert( tempLength == 0x0a, "getRulesEx() result incorrect" );
log_verbose("getRules tests end.\n");
log_verbose("ucol_getRulesEx() testing ...\n");

View file

@ -355,7 +355,7 @@ CollationAPITest::TestRules()
}
coll->getRules(UCOL_TAILORING_ONLY, rules);
if (rules.length() != 0x0e) {
if (rules.length() != 0x0a) {
errln("English tailored rules failed - length is 0x%x expected 0x%x", rules.length(), 0x0e);
}