Skip to content

Commit

Permalink
MDL-45336 scorm: copied used string from quiz
Browse files Browse the repository at this point in the history
AMOS BEGIN
 CPY [deleteselected,quiz_overview],[deleteselected,mod_scorm]
AMOS END
  • Loading branch information
marinaglancy authored and stronk7 committed Sep 23, 2014
1 parent 634a5c0 commit 5639baa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions mod/scorm/lang/en/scorm.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
$string['defaultothersettings'] = 'Other default settings';
$string['deleteattemptcheck'] = 'Are you absolutely sure you want to completely delete these attempts?';
$string['deleteallattempts'] = 'Delete all SCORM attempts';
$string['deleteselected'] = 'Delete selected attempts';
$string['deleteuserattemptcheck'] = 'Are you absolutely sure you want to completely delete all your attempts?';
$string['details'] = 'Track details';
$string['directories'] = 'Show the directory links';
Expand Down
2 changes: 1 addition & 1 deletion mod/scorm/report/basic/classes/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public function display($scorm, $cm, $course, $download) {
get_string('selectnone', 'scorm'));
echo '  ';
echo \html_writer::empty_tag('input', array('type' => 'submit',
'value' => get_string('deleteselected', 'quiz_overview')));
'value' => get_string('deleteselected', 'scorm')));
echo \html_writer::end_tag('td').\html_writer::end_tag('tr').\html_writer::end_tag('table');
// Close form.
echo \html_writer::end_tag('div');
Expand Down
2 changes: 1 addition & 1 deletion mod/scorm/report/interactions/classes/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ public function display($scorm, $cm, $course, $download) {
get_string('selectnone', 'scorm'));
echo '  ';
echo \html_writer::empty_tag('input', array('type' => 'submit',
'value' => get_string('deleteselected', 'quiz_overview')));
'value' => get_string('deleteselected', 'scorm')));
echo \html_writer::end_tag('td').\html_writer::end_tag('tr').\html_writer::end_tag('table');
// Close form.
echo \html_writer::end_tag('div');
Expand Down
2 changes: 1 addition & 1 deletion mod/scorm/report/objectives/classes/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ public function display($scorm, $cm, $course, $download) {
get_string('selectnone', 'scorm'));
echo '  ';
echo \html_writer::empty_tag('input', array('type' => 'submit',
'value' => get_string('deleteselected', 'quiz_overview')));
'value' => get_string('deleteselected', 'scorm')));
echo \html_writer::end_tag('td').\html_writer::end_tag('tr').\html_writer::end_tag('table');
// Close form.
echo \html_writer::end_tag('div');
Expand Down

0 comments on commit 5639baa

Please sign in to comment.