moved conflicting local elements files

X-SVN-Rev: 729
This commit is contained in:
John Fitzpatrick 2000-02-08 06:45:26 +00:00
parent 7ce42e2f31
commit 4fdf5c9631
4 changed files with 218 additions and 0 deletions

View File

@ -0,0 +1,77 @@
/**
* IBM-specific locale data.
*
* <p>Copyright &copy; 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"
}
},
};
}
}

View File

@ -0,0 +1,32 @@
/**
* IBM-specific locale data.
*
* <p>Copyright &copy; 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" },
};
}
}

View File

@ -0,0 +1,77 @@
/**
* IBM-specific locale data.
*
* <p>Copyright &copy; 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"
}
},
};
}
}

View File

@ -0,0 +1,32 @@
/**
* IBM-specific locale data.
*
* <p>Copyright &copy; 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" },
};
}
}