Add detect translation freeze in interface config

This commit is contained in:
Ilya Daynatovich 2016-10-28 16:13:29 +03:00
parent 2fe69d409b
commit 209272f940
2 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,7 @@ var interfaceConfig = { // eslint-disable-line no-unused-vars
SHOW_POWERED_BY: false,
GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
APP_NAME: "Jitsi Meet",
LANG_DETECTION: false, // Allow i18n to detect the system language
INVITATION_POWERED_BY: true,
/**
* If we should show authentication block in profile

View File

@ -83,6 +83,12 @@ module.exports = {
let options = defaultOptions;
let lang = getLangFromQuery() || settingsLang || config.defaultLanguage;
let langDetection = interfaceConfig.LANG_DETECTION;
if (!langDetection && !lang) {
lang = DEFAULT_LANG;
}
if (lang) {
options.lng = lang;
}