From: Fredrik Roubert Date: Wed, 30 Aug 2017 18:15:10 +0000 (+0000) Subject: ICU-13336 Fix common typo: s/langauge/language/ig X-Git-Tag: release-60-rc~169 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c9447aaeabdfb12da51df0a95ffca66bf0c23d5;p=icu ICU-13336 Fix common typo: s/langauge/language/ig X-SVN-Rev: 40361 --- diff --git a/icu4c/source/common/unicode/locid.h b/icu4c/source/common/unicode/locid.h index a37c4a3ce28..dd7d068a4e5 100644 --- a/icu4c/source/common/unicode/locid.h +++ b/icu4c/source/common/unicode/locid.h @@ -88,7 +88,7 @@ class UnicodeString; *

* The third constructor requires a third argument--the Variant. * 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 diff --git a/icu4c/source/i18n/unicode/coll.h b/icu4c/source/i18n/unicode/coll.h index 7e467df80e0..d03570509ec 100644 --- a/icu4c/source/i18n/unicode/coll.h +++ b/icu4c/source/i18n/unicode/coll.h @@ -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 diff --git a/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java b/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java index 7f651097664..c04e56edbf7 100644 --- a/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java +++ b/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java @@ -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(","); } }