ICU-13336 Fix common typo: s/langauge/language/ig

X-SVN-Rev: 40361
This commit is contained in:
Fredrik Roubert 2017-08-30 18:15:10 +00:00
parent 994a671e4e
commit 3c9447aaea
3 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -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(",");
}
}