CHOICE MDL-24102 fix lang string

This commit is contained in:
Dan Marsden 2010-11-19 02:48:39 +00:00
parent a467d243f9
commit f51d388c78
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -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);
}