bpo-31146: Don't fallback switcher to english on not-yet pusblished languages. (GH-10558)

This commit is contained in:
Julien Palard 2018-11-20 17:18:30 +01:00 committed by GitHub
parent 02e6bf7f20
commit 6b73bb523a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,12 @@
else
buf.push('<option value="' + language + '">' + title + '</option>');
});
if (!(current_language in all_languages)) {
// In case we're browsing a language that is not yet in all_languages.
buf.push('<option value="' + current_language + '" selected="selected">' +
current_language + '</option>');
all_languages[current_language] = current_language;
}
buf.push('</select>');
return buf.join('');
}