mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-30111 Rubric - some English strings rewording
This commit is contained in:
parent
903198de7b
commit
de2eb195fe
@ -26,26 +26,21 @@ defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$string['definerubric'] = 'Define rubric';
|
||||
$string['pluginname'] = 'Rubric';
|
||||
|
||||
$string['confirmdeletecriterion'] = 'Are you sure you want to delete this criterion?';
|
||||
$string['confirmdeletelevel'] = 'Are you sure you want to delete this level?';
|
||||
$string['description'] = 'Description';
|
||||
$string['name'] = 'Name';
|
||||
|
||||
$string['addcriterion'] = 'Add criterion';
|
||||
$string['criterionmoveup'] = 'Move up';
|
||||
$string['criteriondelete'] = 'Delete criterion';
|
||||
$string['criterionmovedown'] = 'Move down';
|
||||
$string['criterionaddlevel'] = 'Add level';
|
||||
$string['scorepostfix'] = ' points';
|
||||
$string['scorepostfix'] = '{$a} points';
|
||||
$string['leveldelete'] = 'Delete level';
|
||||
|
||||
$string['criterionempty'] = 'Click to edit criterion';
|
||||
$string['levelempty'] = 'Click to edit level';
|
||||
|
||||
$string['rubric'] = 'Rubric';
|
||||
$string['rubricoptions'] = 'Rubric options';
|
||||
|
||||
$string['sortlevelsasc'] = 'Sort order for levels:';
|
||||
$string['sortlevelsasc1'] = 'Ascending by number of points';
|
||||
$string['sortlevelsasc0'] = 'Descending by number of points';
|
||||
@ -55,33 +50,22 @@ $string['showscoreteacher'] = 'Display points for each level during evaluation';
|
||||
$string['showscorestudent'] = 'Display points for each level to those being graded';
|
||||
$string['enableremarks'] = 'Allow grader to add text remarks for each criteria';
|
||||
$string['showremarksstudent'] = 'Show remarks to those being graded';
|
||||
|
||||
$string['saverubric'] = 'Save rubric and make it ready';
|
||||
$string['saverubricdraft'] = 'Save as draft';
|
||||
|
||||
$string['rubricstatus'] = 'Current rubric status';
|
||||
$string['statusdraft'] = 'Draft';
|
||||
$string['statusready'] = 'Ready';
|
||||
|
||||
$string['err_nocriteria'] = 'Rubric must contain at least one criterion';
|
||||
$string['err_mintwolevels'] = 'Each criterion must have at least two levels';
|
||||
$string['err_nodescription'] = 'Criterion description can not be empty';
|
||||
$string['err_nodefinition'] = 'Level definition can not be empty';
|
||||
$string['err_scoreformat'] = 'Number of points for each level must be a valid non-negative number';
|
||||
$string['err_totalscore'] = 'Maximum number of points possible when graded by the rubric must be more than zero';
|
||||
|
||||
$string['regrademessage1'] = 'You are about to save changes to the rubric that has already been used for grading. Please indicate whether your changes
|
||||
are significant and students grades need to be reviewed.
|
||||
If students already graded are marked for re-grading their
|
||||
current grades remain in gradebook but the students will not see the rubric grading before teacher updates it.';
|
||||
$string['regrademessage5'] = 'You are about to save significant changes to the rubric that has already been used for grading. Please note that all students already graded will be marked for re-grading.
|
||||
The
|
||||
current grades remain in gradebook but the students will not see the rubric grading before teacher updates it.';
|
||||
$string['regrademessage1'] = 'You are about to save changes to a rubric that has already been used for grading. Please indicate if existing grades need to be reviewed. If you set this then the rubric will be hidden from students until their item is regraded.';
|
||||
$string['regrademessage5'] = 'You are about to save significant changes to a rubric that has already been used for grading. The gradebook value will be unchanged, but the rubric will be hidden from students until their item is regraded.';
|
||||
$string['regradeoption0'] = 'Do not mark for regrade';
|
||||
$string['regradeoption1'] = 'Mark for regrade';
|
||||
|
||||
$string['needregrademessage'] = 'Rubric definition was changed after this student had been graded. You must update the grade otherwise it will not be shown to student.';
|
||||
$string['needregrademessage'] = 'The rubric definition was changed after this student had been graded. The student can not see this rubric until you check the rubric and update the grade.';
|
||||
$string['rubricnotcompleted'] = 'Please choose something for each criterion';
|
||||
$string['restoredfromdraft'] = 'Please note: You did not submit the last attempt to grade this person. The grading is restored from draft. To cancel the changes press "Cancel" button below';
|
||||
|
||||
$string['restoredfromdraft'] = 'NOTE: The last attempt to grade this person was not saved properly so draft grades have been restored. If you want to cancel these changes use the \'Cancel\' button below.';
|
||||
$string['backtoediting'] = 'Back to editing';
|
@ -199,7 +199,7 @@ class gradingform_rubric_renderer extends plugin_renderer_base {
|
||||
if (isset($level['error_score'])) {
|
||||
$scoreclass .= ' error';
|
||||
}
|
||||
$level_template .= html_writer::tag('div', $score. get_string('scorepostfix', 'gradingform_rubric'), array('class' => $scoreclass));
|
||||
$level_template .= html_writer::tag('div', get_string('scorepostfix', 'gradingform_rubric', $score), array('class' => $scoreclass));
|
||||
}
|
||||
if ($mode == gradingform_rubric_controller::DISPLAY_EDIT_FULL) {
|
||||
$value = get_string('leveldelete', 'gradingform_rubric');
|
||||
|
Loading…
x
Reference in New Issue
Block a user