Extract list of supported languages in separate file

Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
Erik Michelson 2021-04-26 00:18:08 +02:00 committed by David Mehren
parent cf87499e38
commit 0d943d1284
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
4 changed files with 49 additions and 45 deletions

View file

@ -1,8 +1,6 @@
/* eslint-env browser, jquery */
/* global Cookies */
const supported = ['en', 'zh-CN', 'zh-TW', 'fr', 'de', 'ja', 'es', 'ca', 'el', 'pt', 'it', 'tr', 'ru', 'nl', 'hr', 'pl',
'uk', 'hi', 'sv', 'eo', 'da', 'ko', 'id', 'sr', 'vi', 'ar', 'cs', 'sk', 'ml', 'bg', 'fa', 'gl', 'he', 'hu', 'oc', 'pt-br']
const supportedLanguages = require('../../locales/_supported.json')
function detectLang () {
if (Cookies.get('locale')) {
@ -14,9 +12,10 @@ function detectLang () {
}
const userLang = navigator.language || navigator.userLanguage
const userLangCode = userLang.split('-')[0]
if (supported.includes(userLangCode)) {
const supportedLanguagesList = Object.keys(supportedLanguages)
if (supportedLanguagesList.includes(userLangCode)) {
return userLangCode
} else if (supported.includes(userLang)) {
} else if (supportedLanguagesList.includes(userLang)) {
return userLang
}
return 'en'
@ -24,6 +23,9 @@ function detectLang () {
const lang = detectLang()
const localeSelector = $('.ui-locale')
Object.entries(supportedLanguages).forEach(function ([isoCode, nativeName]) {
localeSelector.append(`<option value="${isoCode}">${nativeName}</option>`)
})
// the following condition is needed as the selector is only available in the intro/history page
if (localeSelector.length > 0) {