MDL-33860: Use get_string for All option in assignment grading table
This commit is contained in:
@@ -47,7 +47,7 @@ class mod_assign_grading_options_form extends moodleform {
|
||||
|
||||
$mform->addElement('header', 'general', get_string('gradingoptions', 'assign'));
|
||||
// visible elements
|
||||
$options = array(-1=>'All',10=>'10', 20=>'20', 50=>'50', 100=>'100');
|
||||
$options = array(-1=>get_string('all'),10=>'10', 20=>'20', 50=>'50', 100=>'100');
|
||||
$mform->addElement('select', 'perpage', get_string('assignmentsperpage', 'assign'), $options);
|
||||
$options = array('' => get_string('filternone', 'assign'),
|
||||
ASSIGN_FILTER_SUBMITTED => get_string('filtersubmitted', 'assign'),
|
||||
|
||||
Reference in New Issue
Block a user