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