mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 12:45:04 +01:00
CHOICE MDL-24102 fix lang string
This commit is contained in:
parent
a467d243f9
commit
f51d388c78
@ -52,6 +52,7 @@ If limits are disabled then any number of participants can select each of the op
|
||||
$string['choice:readresponses'] = 'Read responses';
|
||||
$string['choicesaved'] = 'Your choice has been saved';
|
||||
$string['choicetext'] = 'Choice text';
|
||||
$string['chooseaction'] = 'Choose an action ...';
|
||||
$string['limit'] = 'Limit';
|
||||
$string['limitanswers'] = 'Limit the number of responses allowed';
|
||||
$string['modulename'] = 'Choice';
|
||||
|
@ -214,7 +214,7 @@ class mod_choice_renderer extends plugin_renderer_base {
|
||||
$actiondata .= html_writer::tag('label', ' ' . get_string('withselected', 'quiz') . ' ', array('for'=>'menuaction'));
|
||||
|
||||
$actionurl = new moodle_url('/mod/choice/view.php', array('sesskey'=>sesskey(), 'action'=>'delete_confirmation()'));
|
||||
$select = new single_select($actionurl, 'action', array('delete'=>get_string('delete')), null, array(''=>get_string('moveselectedusersto', 'choice')), 'attemptsform');
|
||||
$select = new single_select($actionurl, 'action', array('delete'=>get_string('delete')), null, array(''=>get_string('chooseaction', 'choice')), 'attemptsform');
|
||||
|
||||
$actiondata .= $this->output->render($select);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user