ICU-9503 Undo removal of lenient parse data. Only English wasn't moved to CLDR.

X-SVN-Rev: 38461
This commit is contained in:
George Rhoten 2016-03-02 08:16:29 +00:00
parent f1a9fb1109
commit d7e92f2c9a
3 changed files with 12 additions and 7 deletions

View file

@ -42,6 +42,8 @@ en{
"0: =#,##0=$(ordinal,one{st}two{nd}few{rd}other{th})$;",
}
SpelloutRules{
"%%lenient-parse:",
"&[last primary ignorable ] << ' ' << ',' << '-' << '\u00AD';",
"%%2d-year:",
"0: hundred;",
"1: oh-=%spellout-numbering=;",

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2013-2015 International Business Machines Corporation and others. All rights reserved.
Copyright (c) 2013-2016 International Business Machines Corporation and others. All rights reserved.
-->
<!DOCTYPE ldml SYSTEM "http://www.unicode.org/repos/cldr/trunk/common/dtd/ldml.dtd">
<ldml>
@ -43,5 +43,10 @@
<rbnfrule value="0">&amp; ':' = '.' = ' ' = '-';</rbnfrule>
</ruleset>
</rulesetGrouping>
<rulesetGrouping type="SpelloutRules">
<ruleset type="lenient-parse" access="private">
<rbnfrule value="0">&amp;[last primary ignorable ] ←← ' ' ←← ',' ←← '-' ←← '­';</rbnfrule>
</ruleset>
</rulesetGrouping>
</rbnf>
</ldml>

View file

@ -1166,9 +1166,8 @@ IntlTestRBNF::TestEnglishSpellout()
doTest(formatter, testData, TRUE);
#if !UCONFIG_NO_COLLATION
if( !logKnownIssue("9503") ) {
formatter->setLenient(TRUE);
static const char* lpTestData[][2] = {
formatter->setLenient(TRUE);
static const char* lpTestData[][2] = {
{ "fifty-7", "57" },
{ " fifty-7", "57" },
{ " fifty-7", "57" },
@ -1176,9 +1175,8 @@ IntlTestRBNF::TestEnglishSpellout()
{ "fifteen hundred and zero", "1,500" },
{ "FOurhundred thiRTY six", "436" },
{ NULL, NULL}
};
doLenientParseTest(formatter, lpTestData);
}
};
doLenientParseTest(formatter, lpTestData);
#endif
}
delete formatter;