$html .= $this->print_toggle('grandtotals', true);
$html .= $this->print_toggle('groups', true);
- $html .= $this->print_toggle('scales', true);
+ $html .= $this->print_toggle('ranges', true);
$html .= '</div>';
return $html;
}
*/
function get_scalehtml() {
$scalehtml = '';
- if ($this->get_pref('showscales')) {
- $scalehtml = '<tr><td>'.$this->get_lang_string('range','grades').'</td>';
+ if ($this->get_pref('showranges')) {
+ $scalehtml = '<tr><td>'.$this->get_lang_string('range','grade').'</td>';
foreach ($this->items as $item) {
$scalehtml .= '<td>'. $this->get_grade_clean($item->grademin).'-'. $this->get_grade_clean($item->grademax).'</td>';
}
'showgrandtotals' => 'advcheckbox',
'showgroups' => 'advcheckbox',
'showlocks' => 'advcheckbox',
- 'showscales' => 'advcheckbox',
+ 'showranges' => 'advcheckbox',
'quickgrading' => 'advcheckbox',
'quickfeedback' => 'advcheckbox',
'aggregationposition' => array(get_string('left', 'grades'), get_string('right', 'grades')),
$settings->add(new admin_setting_configcheckbox('grade_report_showlocks', get_string('showlocks', 'grades'),
get_string('configshowlocks', 'grades'), 0));
-$settings->add(new admin_setting_configcheckbox('grade_report_showscales', get_string('showscales', 'grades'),
- get_string('configshowscales', 'grades'), 0));
+$settings->add(new admin_setting_configcheckbox('grade_report_showranges', get_string('showranges', 'grades'),
+ get_string('configshowranges', 'grades'), 0));
$settings->add(new admin_setting_configcheckbox('grade_report_quickgrading', get_string('quickgrading', 'grades'),
get_string('configquickgrading', 'grades'), 1));
$string['configshowgroups'] = 'Show group totals and means in the grader report.';
$string['configshowlocks'] = 'Whether to show a lock/unlock icon near each grade.';
$string['configshowfeedback'] = 'Whether to show a feedback icon (for adding/editing) near each grade.';
-$string['configshowscales'] = 'Display a row showing the scale for each grading item, in the grader report.';
+$string['configshowranges'] = 'Display a row showing the range of possible for each grading item in the grader report.';
$string['configstudentsperpage'] = 'The number of students to display per page in the grader report.';
$string['contract'] = 'Contract Category';
$string['createcategory'] = 'Create Category';
$string['hidegroups'] = 'Hide groups';
$string['hidelocks'] = 'Hide locks';
$string['hidefeedback'] = 'Hide feedback';
-$string['hidescales'] = 'Hide scales';
+$string['hideranges'] = 'Hide ranges';
$string['highgradeascending'] = 'Sort by high grade ascending';
$string['highgradedescending'] = 'Sort by high grade descending';
$string['highgradeletter'] = 'High';
$string['preferences'] = 'Preferences';
$string['quickfeedback'] = 'Quick Feedback';
$string['quickgrading'] = 'Quick Grading';
+$string['range'] = 'Range';
$string['rank'] = 'Rank';
$string['raw'] = 'Raw';
$string['rawpct'] = 'Raw %%';
$string['showgroups'] = 'Show groups';
$string['showlocks'] = 'Show locks';
$string['showfeedback'] = 'Show feedback';
-$string['showscales'] = 'Show scales';
+$string['showranges'] = 'Show ranges';
$string['showhiddenitems'] = 'Show Hidden Items';
$string['sort'] = 'sort';
$string['sortasc'] = 'Sort in ascending order';