Improved messaging for the 'session closed' message

skala
Yannick Warnier 13 years ago
parent 804b1a93b8
commit 97bf4db3c7
  1. 1
      plugin/bbb/lang/english.php
  2. 1
      plugin/bbb/lang/french.php
  3. 1
      plugin/bbb/lang/spanish.php
  4. 2
      plugin/bbb/lib/bbb.lib.php
  5. 2
      plugin/bbb/listing.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";

@ -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";

@ -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";

@ -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'];
}

@ -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').'<br />'.get_lang('MeetingClosedComment'), 'success', false);
break;
case 'publish':
//$result = $bbb->publish_meeting($_GET['id']);

Loading…
Cancel
Save