mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
Add detect translation freeze in interface config
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user