diff options
author | Erik Michelson | 2021-04-26 00:18:08 +0200 |
---|---|---|
committer | David Mehren | 2021-04-26 21:45:31 +0200 |
commit | 0d943d128431f166045de53bd64575dac142d320 (patch) | |
tree | d82aa115813cf3d5be8725533219019953a696fd | |
parent | cf87499e38cfdc29e95e0c871bd80971dfe8f98b (diff) |
Extract list of supported languages in separate file
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
-rw-r--r-- | app.js | 5 | ||||
-rw-r--r-- | locales/_supported.json | 38 | ||||
-rw-r--r-- | public/js/locale.js | 12 | ||||
-rw-r--r-- | public/views/index/body.ejs | 39 |
4 files changed, 49 insertions, 45 deletions
@@ -28,6 +28,8 @@ const models = require('./lib/models') const csp = require('./lib/csp') const metrics = require('./lib/prometheus') +const supportedLocalesList = Object.keys(require('./locales/_supported.json')) + // server setup const app = express() let server = null @@ -126,8 +128,7 @@ if (config.csp.enable) { } i18n.configure({ - locales: ['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'], + locales: supportedLocalesList, cookie: 'locale', indent: ' ', // this is the style poeditor.com exports it, this creates less churn directory: path.join(__dirname, '/locales'), diff --git a/locales/_supported.json b/locales/_supported.json new file mode 100644 index 00000000..5320bce9 --- /dev/null +++ b/locales/_supported.json @@ -0,0 +1,38 @@ +{ + "en": "English", + "zh-CN": "简体中文", + "zh-TW": "繁體中文", + "fr": "Français", + "de": "Deutsch", + "ja": "日本語", + "es": "Español", + "ca": "Català", + "el": "Ελληνικά", + "pt": "Português", + "it": "Italiano", + "tr": "Türkçe", + "ru": "Русский", + "nl": "Nederlands", + "hr": "Hrvatski", + "pl": "Polski", + "uk": "Українська", + "hi": "हिन्दी", + "sv": "Svenska", + "eo": "Esperanto", + "da": "Dansk", + "ko": "한국어", + "id": "Bahasa Indonesia", + "sr": "Cрпски", + "vi": "Tiếng Việt", + "ar": "العربية", + "cs": "Česky", + "sk": "Slovensky", + "ml": "മലയാളം", + "bg": "български език", + "fa": "فارسی", + "gl": "Galego", + "he": "עברית", + "hu": "Magyar", + "oc": "Occitan", + "pt-br": "Português do Brasil" +}
\ No newline at end of file diff --git a/public/js/locale.js b/public/js/locale.js index 2470bd53..ccc1d0e4 100644 --- a/public/js/locale.js +++ b/public/js/locale.js @@ -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) { diff --git a/public/views/index/body.ejs b/public/views/index/body.ejs index 54d2b32f..ca6204b1 100644 --- a/public/views/index/body.ejs +++ b/public/views/index/body.ejs @@ -127,44 +127,7 @@ <div class="mastfoot"> <div class="inner"> - <select class="ui-locale"> - <option value="en">English</option> - <option value="zh-CN">简体中文</option> - <option value="zh-TW">繁體中文</option> - <option value="fr">Français</option> - <option value="de">Deutsch</option> - <option value="ja">日本語</option> - <option value="es">Español</option> - <option value="ca">Català</option> - <option value="el">Ελληνικά</option> - <option value="pt">Português</option> - <option value="it">Italiano</option> - <option value="tr">Türkçe</option> - <option value="ru">Русский</option> - <option value="nl">Nederlands</option> - <option value="hr">Hrvatski</option> - <option value="pl">Polski</option> - <option value="uk">Українська</option> - <option value="hi">हिन्दी</option> - <option value="sv">Svenska</option> - <option value="eo">Esperanto</option> - <option value="da">Dansk</option> - <option value="ko">한국어</option> - <option value="id">Bahasa Indonesia</option> - <option value="sr">Cрпски</option> - <option value="vi">Tiếng Việt</option> - <option value="ar">العربية</option> - <option value="cs">Česky</option> - <option value="sk">Slovensky</option> - <option value="ml">മലയാളം</option> - <option value="bg">български език</option> - <option value="fa">فارسی</option> - <option value="gl">Galego</option> - <option value="he">עברית</option> - <option value="hu">Magyar</option> - <option value="oc">Occitan</option> - <option value="pt-br">Português do Brasil</option> - </select> + <select class="ui-locale"></select> <p> <%- __('Powered by %s', '<a href="https://hedgedoc.org">HedgeDoc</a>') %> | <a href="<%- serverURL %>/s/release-notes" target="_blank" rel="noopener"><%= __('Releases') %></a> | <a href="<%- sourceURL %>" target="_blank" rel="noopener"><%= __('Source Code') %></a><% if(imprint) { %> | <a href="<%- serverURL %>/s/imprint" target="_blank" rel="noopener"><%= __('Imprint') %></a><% } %><% if(privacyStatement) { %> | <a href="<%- serverURL %>/s/privacy" target="_blank" rel="noopener"><%= __('Privacy') %></a><% } %><% if(termsOfUse) { %> | <a href="<%- serverURL %>/s/terms-of-use" target="_blank" rel="noopener"><%= __('Terms of Use') %></a><% } %> </p> |