Просмотр исходного кода

Make it possible to change Jitsi web UI language

Fixes #427 (Github Issue).
pull/432/head
Slavi Pantaleev 6 лет назад
Родитель
Сommit
ca04ca9ffe
3 измененных файлов: 5 добавлений и 2 удалений
  1. +3
    -0
      roles/matrix-jitsi/defaults/main.yml
  2. +1
    -1
      roles/matrix-jitsi/templates/web/config.js.j2
  3. +1
    -1
      roles/matrix-jitsi/templates/web/interface_config.js.j2

+ 3
- 0
roles/matrix-jitsi/defaults/main.yml Просмотреть файл

@@ -51,6 +51,9 @@ matrix_jitsi_web_container_extra_arguments: []
# List of systemd services that matrix-jitsi-web.service depends on
matrix_jitsi_web_systemd_required_services_list: ['docker.service']

matrix_jitsi_web_config_defaultLanguage: 'en'
matrix_jitsi_web_interface_config_lang_detection: false


matrix_jitsi_prosody_docker_image: "jitsi/prosody:4101"
matrix_jitsi_prosody_docker_image_force_pull: "{{ matrix_jitsi_prosody_docker_image.endswith(':latest') }}"


+ 1
- 1
roles/matrix-jitsi/templates/web/config.js.j2 Просмотреть файл

@@ -263,7 +263,7 @@ hiddenDomain: {{ matrix_jitsi_recorder_domain|to_json }},
// disable1On1Mode: false,

// Default language for the user interface.
// defaultLanguage: 'en',
defaultLanguage: {{ matrix_jitsi_web_config_defaultLanguage|to_json }},

// If true all users without a token will be considered guests and all users
// with token will be considered non-guests. Only guests will be allowed to


+ 1
- 1
roles/matrix-jitsi/templates/web/interface_config.js.j2 Просмотреть файл

@@ -30,7 +30,7 @@ var interfaceConfig = {
APP_NAME: 'Jitsi Meet',
NATIVE_APP_NAME: 'Jitsi Meet',
PROVIDER_NAME: 'Jitsi',
LANG_DETECTION: false, // Allow i18n to detect the system language
LANG_DETECTION: {{ matrix_jitsi_web_interface_config_lang_detection|to_json }}, // Allow i18n to detect the system language
INVITATION_POWERED_BY: true,

/**


Загрузка…
Отмена
Сохранить