Misc typofixes

Change-Id: I0da399382082ad0d197f48641050b6813e3bdc6e
This commit is contained in:
Nemo bis
2014-05-11 15:50:59 +02:00
parent c2397f420b
commit 131ca48d0b

View File

@@ -176,7 +176,7 @@
// Add previously selected languages. // Add previously selected languages.
// Previous languages are always the better suggestion // Previous languages are always the better suggestion
// because user had explicitly chosen them. // because the user has explicitly chosen them.
compactLanguages = compactLanguages.concat( this.filterByPreviousLanguages() ); compactLanguages = compactLanguages.concat( this.filterByPreviousLanguages() );
// Add all common languages to the beginning of array. // Add all common languages to the beginning of array.
@@ -184,7 +184,7 @@
compactLanguages = compactLanguages.concat( this.filterByCommonLanguages( languages ) ); compactLanguages = compactLanguages.concat( this.filterByCommonLanguages( languages ) );
// Finally add the whole languages array too. // Finally add the whole languages array too.
// We will remove duplicate and cut down to required size. // We will remove duplicates and cut down to required size.
compactLanguages = compactLanguages.concat( languages ); compactLanguages = compactLanguages.concat( languages );
// Remove duplicates // Remove duplicates
@@ -200,7 +200,7 @@
* Filter the language list by previous languages. * Filter the language list by previous languages.
* Not all previous languages will be present in interlanguage links, * Not all previous languages will be present in interlanguage links,
* so we are filtering them. * so we are filtering them.
* @return {Array} List of those language codes which are supported by article * @return {Array} List of language codes supported by the article
*/ */
filterByPreviousLanguages: function ( languages ) { filterByPreviousLanguages: function ( languages ) {
var previousLanguages = mw.uls.getPreviousLanguages(); var previousLanguages = mw.uls.getPreviousLanguages();
@@ -213,7 +213,7 @@
/** /**
* Filter the language list by common languages. * Filter the language list by common languages.
* Common languages are the most probable languages predicted by ULS. * Common languages are the most probable languages predicted by ULS.
* @return {Array} List of those language codes which are supported by article * @return {Array} List of language codes supported by the article
*/ */
filterByCommonLanguages: function ( languages ) { filterByCommonLanguages: function ( languages ) {
var commonLanguages = mw.uls.getFrequentLanguageList(); var commonLanguages = mw.uls.getFrequentLanguageList();
@@ -225,7 +225,7 @@
/** /**
* Find out the existing languages supported * Find out the existing languages supported
* by article and fetch their href. * by the article and fetch their href.
* @return {Object} List of existing language codes and their hrefs * @return {Object} List of existing language codes and their hrefs
*/ */
getInterlanguageList: function getInterlanguageList() { getInterlanguageList: function getInterlanguageList() {