moved conflicting local elements files
X-SVN-Rev: 729
This commit is contained in:
parent
7ce42e2f31
commit
4fdf5c9631
77
icu4j/src/com/ibm/icu/impl/data/LocaleElements.java
Executable file
77
icu4j/src/com/ibm/icu/impl/data/LocaleElements.java
Executable file
@ -0,0 +1,77 @@
|
||||
/**
|
||||
* IBM-specific locale data.
|
||||
*
|
||||
* <p>Copyright © IBM Corporation 1999. All rights reserved.
|
||||
*/
|
||||
|
||||
// WARNING : the format of this file may change in the future!
|
||||
|
||||
package com.ibm.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class LocaleElements extends ListResourceBundle {
|
||||
/**
|
||||
* Overrides ListResourceBundle
|
||||
*/
|
||||
public Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "TransliteratorNamePattern",
|
||||
/* Format for the display name of a Transliterator.
|
||||
* This is the language-neutral form of this resource.
|
||||
*/
|
||||
"{0,choice,0#|1#{1}|2#{1}-{2}}", // Display name
|
||||
},
|
||||
{ "RuleBasedTransliteratorIDs",
|
||||
/* These IDs must have the form "From-To" or "SingleName".
|
||||
* The ID "From-To" will be sought in the resource bundle
|
||||
* TransliteratorRuleFromTo.java in the resources package.
|
||||
* The ID "SingleName" will be sought in
|
||||
* TransliteratorSingleName.java. In addition, a reverse
|
||||
* transliterator may be specified using "*To-From", which
|
||||
* indicates TransliteratorRuleFromTo.java with a
|
||||
* RuleBasedTransliterator.REVERSE constructor parameter.
|
||||
*/
|
||||
new String[] {
|
||||
|
||||
// Bidirectional rules
|
||||
|
||||
"Fullwidth-Halfwidth",
|
||||
"*Halfwidth-Fullwidth",
|
||||
|
||||
"Latin-Arabic",
|
||||
"*Arabic-Latin",
|
||||
|
||||
"Latin-Cyrillic",
|
||||
"*Cyrillic-Latin",
|
||||
|
||||
"Latin-Devanagari",
|
||||
"*Devanagari-Latin",
|
||||
|
||||
"Latin-Greek",
|
||||
"*Greek-Latin",
|
||||
|
||||
"Latin-Hebrew",
|
||||
"*Hebrew-Latin",
|
||||
|
||||
"Latin-Jamo",
|
||||
"*Jamo-Latin",
|
||||
|
||||
"Latin-Kana",
|
||||
"*Kana-Latin",
|
||||
|
||||
"StraightQuotes-CurlyQuotes",
|
||||
"*CurlyQuotes-StraightQuotes",
|
||||
|
||||
// One way rules (forward only)
|
||||
|
||||
"Han-Pinyin",
|
||||
"Kanji-English",
|
||||
"Kanji-OnRomaji",
|
||||
"KeyboardEscape-Latin1",
|
||||
"UnicodeName-UnicodeChar"
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
32
icu4j/src/com/ibm/icu/impl/data/LocaleElements_en.java
Executable file
32
icu4j/src/com/ibm/icu/impl/data/LocaleElements_en.java
Executable file
@ -0,0 +1,32 @@
|
||||
/**
|
||||
* IBM-specific locale data.
|
||||
*
|
||||
* <p>Copyright © IBM Corporation 1999. All rights reserved.
|
||||
*/
|
||||
|
||||
// WARNING : the format of this file may change in the future!
|
||||
|
||||
package com.ibm.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class LocaleElements_en extends ListResourceBundle {
|
||||
/**
|
||||
* Overrides ListResourceBundle
|
||||
*/
|
||||
public Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "TransliteratorNamePattern",
|
||||
/* Format for the display name of a Transliterator.
|
||||
* This is the English form of this resource.
|
||||
*/
|
||||
"{0,choice,0#|1#{1}|2#{1} to {2}}"
|
||||
},
|
||||
|
||||
// Transliterator display names
|
||||
{ "%Translit%Hex", "Hex Escape" },
|
||||
{ "%Translit%UnicodeName", "Unicode Name" },
|
||||
{ "%Translit%UnicodeChar", "Unicode Character" },
|
||||
};
|
||||
}
|
||||
}
|
77
icu4j/src/com/ibm/text/resources/LocaleElements.java
Executable file
77
icu4j/src/com/ibm/text/resources/LocaleElements.java
Executable file
@ -0,0 +1,77 @@
|
||||
/**
|
||||
* IBM-specific locale data.
|
||||
*
|
||||
* <p>Copyright © IBM Corporation 1999. All rights reserved.
|
||||
*/
|
||||
|
||||
// WARNING : the format of this file may change in the future!
|
||||
|
||||
package com.ibm.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class LocaleElements extends ListResourceBundle {
|
||||
/**
|
||||
* Overrides ListResourceBundle
|
||||
*/
|
||||
public Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "TransliteratorNamePattern",
|
||||
/* Format for the display name of a Transliterator.
|
||||
* This is the language-neutral form of this resource.
|
||||
*/
|
||||
"{0,choice,0#|1#{1}|2#{1}-{2}}", // Display name
|
||||
},
|
||||
{ "RuleBasedTransliteratorIDs",
|
||||
/* These IDs must have the form "From-To" or "SingleName".
|
||||
* The ID "From-To" will be sought in the resource bundle
|
||||
* TransliteratorRuleFromTo.java in the resources package.
|
||||
* The ID "SingleName" will be sought in
|
||||
* TransliteratorSingleName.java. In addition, a reverse
|
||||
* transliterator may be specified using "*To-From", which
|
||||
* indicates TransliteratorRuleFromTo.java with a
|
||||
* RuleBasedTransliterator.REVERSE constructor parameter.
|
||||
*/
|
||||
new String[] {
|
||||
|
||||
// Bidirectional rules
|
||||
|
||||
"Fullwidth-Halfwidth",
|
||||
"*Halfwidth-Fullwidth",
|
||||
|
||||
"Latin-Arabic",
|
||||
"*Arabic-Latin",
|
||||
|
||||
"Latin-Cyrillic",
|
||||
"*Cyrillic-Latin",
|
||||
|
||||
"Latin-Devanagari",
|
||||
"*Devanagari-Latin",
|
||||
|
||||
"Latin-Greek",
|
||||
"*Greek-Latin",
|
||||
|
||||
"Latin-Hebrew",
|
||||
"*Hebrew-Latin",
|
||||
|
||||
"Latin-Jamo",
|
||||
"*Jamo-Latin",
|
||||
|
||||
"Latin-Kana",
|
||||
"*Kana-Latin",
|
||||
|
||||
"StraightQuotes-CurlyQuotes",
|
||||
"*CurlyQuotes-StraightQuotes",
|
||||
|
||||
// One way rules (forward only)
|
||||
|
||||
"Han-Pinyin",
|
||||
"Kanji-English",
|
||||
"Kanji-OnRomaji",
|
||||
"KeyboardEscape-Latin1",
|
||||
"UnicodeName-UnicodeChar"
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
32
icu4j/src/com/ibm/text/resources/LocaleElements_en.java
Executable file
32
icu4j/src/com/ibm/text/resources/LocaleElements_en.java
Executable file
@ -0,0 +1,32 @@
|
||||
/**
|
||||
* IBM-specific locale data.
|
||||
*
|
||||
* <p>Copyright © IBM Corporation 1999. All rights reserved.
|
||||
*/
|
||||
|
||||
// WARNING : the format of this file may change in the future!
|
||||
|
||||
package com.ibm.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class LocaleElements_en extends ListResourceBundle {
|
||||
/**
|
||||
* Overrides ListResourceBundle
|
||||
*/
|
||||
public Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "TransliteratorNamePattern",
|
||||
/* Format for the display name of a Transliterator.
|
||||
* This is the English form of this resource.
|
||||
*/
|
||||
"{0,choice,0#|1#{1}|2#{1} to {2}}"
|
||||
},
|
||||
|
||||
// Transliterator display names
|
||||
{ "%Translit%Hex", "Hex Escape" },
|
||||
{ "%Translit%UnicodeName", "Unicode Name" },
|
||||
{ "%Translit%UnicodeChar", "Unicode Character" },
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user