mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 04:29:31 +00:00
ICU-1426 canonicalize case to upper in RB tag
X-SVN-Rev: 6597
This commit is contained in:
parent
1ba1555d35
commit
b706a67532
4 changed files with 8 additions and 8 deletions
|
@ -3,8 +3,8 @@
|
|||
* others. All Rights Reserved.
|
||||
**************************************************************************
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/data/Attic/LocaleElements_el.java,v $
|
||||
* $Date: 2001/11/02 19:59:11 $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2001/11/03 02:00:04 $
|
||||
* $Revision: 1.2 $
|
||||
**************************************************************************
|
||||
*/
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class LocaleElements_el extends ListResourceBundle {
|
|||
*/
|
||||
public Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Transliterate_Latin",
|
||||
{ "Transliterate_LATIN",
|
||||
new String[] { "UNGEGN",
|
||||
|
||||
"# Rules are predicated on running NFD first, and NFC afterwards\n"+
|
||||
|
|
|
@ -703,7 +703,7 @@ class TransliteratorRegistry {
|
|||
} else {
|
||||
tag.append("Transliterate_");
|
||||
}
|
||||
tag.append(specToFind.get());
|
||||
tag.append(specToFind.get().toUpperCase());
|
||||
|
||||
try {
|
||||
// The Transliterate*_xxx resource is an array of
|
||||
|
|
|
@ -703,7 +703,7 @@ class TransliteratorRegistry {
|
|||
} else {
|
||||
tag.append("Transliterate_");
|
||||
}
|
||||
tag.append(specToFind.get());
|
||||
tag.append(specToFind.get().toUpperCase());
|
||||
|
||||
try {
|
||||
// The Transliterate*_xxx resource is an array of
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
* others. All Rights Reserved.
|
||||
**************************************************************************
|
||||
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/LocaleElements_el.java,v $
|
||||
* $Date: 2001/11/02 19:59:11 $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2001/11/03 02:00:04 $
|
||||
* $Revision: 1.2 $
|
||||
**************************************************************************
|
||||
*/
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class LocaleElements_el extends ListResourceBundle {
|
|||
*/
|
||||
public Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Transliterate_Latin",
|
||||
{ "Transliterate_LATIN",
|
||||
new String[] { "UNGEGN",
|
||||
|
||||
"# Rules are predicated on running NFD first, and NFC afterwards\n"+
|
||||
|
|
Loading…
Add table
Reference in a new issue