diff --git a/plugin/bbb/lang/english.php b/plugin/bbb/lang/english.php index 613efaad90..9660d35221 100644 --- a/plugin/bbb/lang/english.php +++ b/plugin/bbb/lang/english.php @@ -13,6 +13,7 @@ $strings['plugin_comment'] = "Add a videoconference room in a Chamilo cours $strings['Videoconference'] = "Videoconference"; $strings['MeetingOpened'] = "Meeting opened"; $strings['MeetingClosed'] = "Meeting closed"; +$strings['MeetingClosedComment'] = "If you have asked for your sessions to be recorded, the recording will be available in the list below when it has been completely generated."; $strings['CloseMeeting'] = "Close meeting"; $strings['VideoConferenceXCourseX'] = "Videoconference #%s course %s"; diff --git a/plugin/bbb/lang/french.php b/plugin/bbb/lang/french.php index b894501d59..638cafd860 100644 --- a/plugin/bbb/lang/french.php +++ b/plugin/bbb/lang/french.php @@ -6,6 +6,7 @@ $strings['plugin_comment'] = "Ajoutez un espace de vidéoconférences aux c $strings['Videoconference'] = "Vidéoconférence"; $strings['MeetingOpened'] = "Session ouverte"; $strings['MeetingClosed'] = "Session fermée"; +$strings['MeetingClosedComment'] = "Si vous avez demandé l'enregistrement des sessions de conférence, cet enregistrement apparaîtra dans la liste ci-dessous dans quelques instants."; $strings['CloseMeeting'] = "Fermer la session"; $strings['VideoConferenceXCourseX'] = "Vidéoconférence #%s, cours %s"; diff --git a/plugin/bbb/lang/spanish.php b/plugin/bbb/lang/spanish.php index 5619b2697a..f2ac9a27e8 100644 --- a/plugin/bbb/lang/spanish.php +++ b/plugin/bbb/lang/spanish.php @@ -6,6 +6,7 @@ $strings['plugin_comment'] = "Añade una sala de videoconferencia en los cu $strings['Videoconference'] = "Videoconferencia"; $strings['MeetingOpened'] = "Sala abierta"; $strings['MeetingClosed'] = "Sala cerrada"; +$strings['MeetingClosedComment'] = "Si ha pedido grabar la sesión de videoconferencia en los parámetros del curso, esta grabación aparecerá en la lista siguiente una vez generada."; $strings['CloseMeeting'] = "Cerrar sala"; $strings['VideoConferenceXCourseX'] = "Videoconferencia #%s, curso %s"; diff --git a/plugin/bbb/lib/bbb.lib.php b/plugin/bbb/lib/bbb.lib.php index 9dedf44d7f..7b35765c05 100644 --- a/plugin/bbb/lib/bbb.lib.php +++ b/plugin/bbb/lib/bbb.lib.php @@ -267,7 +267,7 @@ class bbb { $count = 1; if (isset($records['message']) && !empty($records['message'])) { if ($records['messageKey'] == 'noRecordings') { - //$record_array[] = get_lang('ThereAreNotRecordingsForTheMeetings'); + $record_array[] = get_lang('NoRecording'); } else { //$record_array[] = $records['message']; } diff --git a/plugin/bbb/listing.php b/plugin/bbb/listing.php index 6bf91849bf..523ded8e7c 100644 --- a/plugin/bbb/listing.php +++ b/plugin/bbb/listing.php @@ -56,7 +56,7 @@ if ($teacher) { break; case 'end': $bbb->end_meeting($_GET['id']); - $message = Display::return_message(get_lang('MeetingClosed'), 'success'); + $message = Display::return_message(get_lang('MeetingClosed').'
'.get_lang('MeetingClosedComment'), 'success', false); break; case 'publish': //$result = $bbb->publish_meeting($_GET['id']);