Skip to content

Commit

Permalink
GIT-130: Fixed #130 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico authored May 16, 2019
1 parent f3b7a9c commit 74a1e05
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
7 changes: 3 additions & 4 deletions lang/en/bigbluebuttonbn.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@
$string['modulenameplural'] = 'BigBlueButtonBN';
$string['modulename_help'] = 'BigBlueButtonBN lets you create from within Moodle links to real-time on-line classrooms using BigBlueButton, an open source web conferencing system for distance education.
Using BigBlueButtonBN you can specify for the title, description, calendar entry (which gives a date range for joining the session), groups, and details about the recording of the on-line session.
To view later recordings, add a RecordingsBN resource to this course.';
Using BigBlueButtonBN you can specify for the title, description, calendar entry (which gives a date range for joining the session), groups, and details about the recording of the on-line session.';
$string['modulename_link'] = 'BigBlueButtonBN/view';
$string['pluginadministration'] = 'BigBlueButton administration';
$string['pluginname'] = 'BigBlueButtonBN';
Expand Down Expand Up @@ -358,6 +356,7 @@
$string['view_message_session_has_users'] = 'There are';
$string['view_message_session_for'] = 'the session for';
$string['view_message_times'] = 'times';
$string['view_message_and'] = 'and';

$string['view_message_room_closed'] = 'This room is closed.';
$string['view_message_room_ready'] = 'This room is ready.';
Expand Down Expand Up @@ -471,4 +470,4 @@
$string['index_error_bbtn'] = 'BigBlueButton ID {$a} is incorrect';

$string['view_mobile_message_reload_page_creation_time_meeting'] = 'You exceeded the 45 seconds in this page, please reload the page to join correctly to the meeting.';
$string['view_mobile_message_groups_not_supported'] = 'This instance is enable to work with groups but the mobile app has not support for this. Please open in desktop if you want to use the group support.';
$string['view_mobile_message_groups_not_supported'] = 'This instance is enable to work with groups but the mobile app has not support for this. Please open in desktop if you want to use the group support.';
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ M.mod_bigbluebuttonbn.rooms = {
msgViewers = this.msgViewersIn(viewers);
msg = M.util.get_string('view_message_session_has_users', 'bigbluebuttonbn');
if (participants > 1) {
return msg + ' <b>' + moderators + '</b> ' + msgModerators + ' and <b>' + viewers + '</b> ' + msgViewers + '.';
return msg + ' <b>' + moderators + '</b> ' + msgModerators + ' ' +
M.util.get_string('view_message_and', 'bigbluebuttonbn') + ' <b>' + viewers + '</b> ' + msgViewers + '.';
}
msg = M.util.get_string('view_message_session_has_user', 'bigbluebuttonbn');
if (moderators > 0) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ M.mod_bigbluebuttonbn.rooms = {
msgViewers = this.msgViewersIn(viewers);
msg = M.util.get_string('view_message_session_has_users', 'bigbluebuttonbn');
if (participants > 1) {
return msg + ' <b>' + moderators + '</b> ' + msgModerators + ' and <b>' + viewers + '</b> ' + msgViewers + '.';
return msg + ' <b>' + moderators + '</b> ' + msgModerators + ' ' +
M.util.get_string('view_message_and', 'bigbluebuttonbn') + ' <b>' + viewers + '</b> ' + msgViewers + '.';
}
msg = M.util.get_string('view_message_session_has_user', 'bigbluebuttonbn');
if (moderators > 0) {
Expand Down
3 changes: 2 additions & 1 deletion yui/src/rooms/js/rooms.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ M.mod_bigbluebuttonbn.rooms = {
msgViewers = this.msgViewersIn(viewers);
msg = M.util.get_string('view_message_session_has_users', 'bigbluebuttonbn');
if (participants > 1) {
return msg + ' <b>' + moderators + '</b> ' + msgModerators + ' and <b>' + viewers + '</b> ' + msgViewers + '.';
return msg + ' <b>' + moderators + '</b> ' + msgModerators + ' ' +
M.util.get_string('view_message_and', 'bigbluebuttonbn') + ' <b>' + viewers + '</b> ' + msgViewers + '.';
}
msg = M.util.get_string('view_message_session_has_user', 'bigbluebuttonbn');
if (moderators > 0) {
Expand Down

0 comments on commit 74a1e05

Please sign in to comment.