mirror of https://github.com/sualko/cloud_bbb
Compare commits
3 Commits
5e1e734412
...
9342bb2add
Author | SHA1 | Date |
---|---|---|
|
9342bb2add | |
|
84f7fdbc0e | |
|
093e286e0f |
|
@ -16,7 +16,7 @@ OC.L10N.register(
|
||||||
"Public" : "Pubblica",
|
"Public" : "Pubblica",
|
||||||
"Internal + Password protection for guests" : "Interni + Protezione con password per gli ospiti",
|
"Internal + Password protection for guests" : "Interni + Protezione con password per gli ospiti",
|
||||||
"Internal + Waiting room for guests" : "Interni + Sala d'attesa per gli ospiti",
|
"Internal + Waiting room for guests" : "Interni + Sala d'attesa per gli ospiti",
|
||||||
"Waiting room for all users" : "In attesa di tutti gli utenti",
|
"Waiting room for all users" : "Tutti gli utenti in Sala d'attesa",
|
||||||
"Internal" : "Interni",
|
"Internal" : "Interni",
|
||||||
"Internal restricted" : "Limitato agli interni",
|
"Internal restricted" : "Limitato agli interni",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "URL API o segreto non configurato. Contatta il tuo amministratore.",
|
"API URL or secret not configured. Please contact your administrator." : "URL API o segreto non configurato. Contatta il tuo amministratore.",
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"Public" : "Pubblica",
|
"Public" : "Pubblica",
|
||||||
"Internal + Password protection for guests" : "Interni + Protezione con password per gli ospiti",
|
"Internal + Password protection for guests" : "Interni + Protezione con password per gli ospiti",
|
||||||
"Internal + Waiting room for guests" : "Interni + Sala d'attesa per gli ospiti",
|
"Internal + Waiting room for guests" : "Interni + Sala d'attesa per gli ospiti",
|
||||||
"Waiting room for all users" : "In attesa di tutti gli utenti",
|
"Waiting room for all users" : "Tutti gli utenti in Sala d'attesa",
|
||||||
"Internal" : "Interni",
|
"Internal" : "Interni",
|
||||||
"Internal restricted" : "Limitato agli interni",
|
"Internal restricted" : "Limitato agli interni",
|
||||||
"API URL or secret not configured. Please contact your administrator." : "URL API o segreto non configurato. Contatta il tuo amministratore.",
|
"API URL or secret not configured. Please contact your administrator." : "URL API o segreto non configurato. Contatta il tuo amministratore.",
|
||||||
|
|
|
@ -118,7 +118,8 @@ class API {
|
||||||
$joinMeetingParams->addUserData('bbb_skip_video_preview_on_first_join', !$room->getMediaCheck()); // 2.3
|
$joinMeetingParams->addUserData('bbb_skip_video_preview_on_first_join', !$room->getMediaCheck()); // 2.3
|
||||||
|
|
||||||
if ($room->getCleanLayout()) {
|
if ($room->getCleanLayout()) {
|
||||||
$joinMeetingParams->addUserData('bbb_auto_swap_layout', true);
|
$joinMeetingParams->addUserData('bbb_auto_swap_layout', true); // 2.5 and below // ToDo: remove in the future
|
||||||
|
$joinMeetingParams->addUserData('bbb_hide_presentation_on_join', true); // 2.6 and up
|
||||||
$joinMeetingParams->addUserData('bbb_show_participants_on_login', false);
|
$joinMeetingParams->addUserData('bbb_show_participants_on_login', false);
|
||||||
$joinMeetingParams->addUserData('bbb_show_public_chat_on_login', false);
|
$joinMeetingParams->addUserData('bbb_show_public_chat_on_login', false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue