mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 22:15:31 +00:00
ICU-13336 Fix common typo: s/langauge/language/ig
X-SVN-Rev: 40361
This commit is contained in:
parent
994a671e4e
commit
3c9447aaea
3 changed files with 7 additions and 7 deletions
|
@ -88,7 +88,7 @@ class UnicodeString;
|
|||
* <P>
|
||||
* The third constructor requires a third argument--the <STRONG>Variant.</STRONG>
|
||||
* The Variant codes are vendor and browser-specific.
|
||||
* For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX.
|
||||
* For example, use REVISED for a language's revised script orthography, and POSIX for POSIX.
|
||||
* Where there are two variants, separate them with an underscore, and
|
||||
* put the most important one first. For
|
||||
* example, a Traditional Spanish collation might be referenced, with
|
||||
|
|
|
@ -672,7 +672,7 @@ public:
|
|||
UErrorCode& status);
|
||||
|
||||
/**
|
||||
* Get name of the object for the desired Locale, in the desired langauge
|
||||
* Get name of the object for the desired Locale, in the desired language
|
||||
* @param objectLocale must be from getAvailableLocales
|
||||
* @param displayLocale specifies the desired locale for output
|
||||
* @param name the fill-in parameter of the return value
|
||||
|
@ -685,7 +685,7 @@ public:
|
|||
UnicodeString& name);
|
||||
|
||||
/**
|
||||
* Get name of the object for the desired Locale, in the langauge of the
|
||||
* Get name of the object for the desired Locale, in the language of the
|
||||
* default locale.
|
||||
* @param objectLocale must be from getAvailableLocales
|
||||
* @param name the fill-in parameter of the return value
|
||||
|
|
|
@ -172,16 +172,16 @@ public class ScriptIDModuleWriter extends ScriptModuleWriter
|
|||
output.println(format.format(args));
|
||||
}
|
||||
|
||||
for (int langauge = previousTotalLanguages+1; langauge <= totalLanguage; langauge += 1) {
|
||||
for (int language = previousTotalLanguages+1; language <= totalLanguage; language += 1) {
|
||||
output.print(" ");
|
||||
output.print(languageData.getTagLabel(langauge).toLowerCase());
|
||||
output.print(languageData.getTagLabel(language).toLowerCase());
|
||||
output.print("ScriptCode = ");
|
||||
|
||||
if (langauge < 10) {
|
||||
if (language < 10) {
|
||||
output.print(" ");
|
||||
}
|
||||
|
||||
output.print(langauge);
|
||||
output.print(language);
|
||||
output.println(",");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue