mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
e8f99abc68
Also MDL-17585 Improve layout of manual grading forms to make them look more like formslib forms. The standard trick of stealing the HTML and class names that formslib works, so the standard style rules apply to your form.
23 lines
1.2 KiB
PHP
23 lines
1.2 KiB
PHP
<?PHP // $Id$
|
|
// quiz_grading.php - created with Moodle 1.7 beta + (2006101003)
|
|
|
|
|
|
$string['cannotloadquestioninfo'] = 'Unable to load questiontype specific question information';
|
|
$string['essayonly'] = 'The following questions need to be graded manually';
|
|
$string['invalidquestionid'] = 'Gradeable question with id $a not found';
|
|
$string['invalidattemptid'] = 'No such attempt ID exists';
|
|
$string['grading'] = 'Manual grading';
|
|
$string['gradingreport'] = 'Manual grading report';
|
|
$string['gradeall'] = 'Grade all $a attempts';
|
|
$string['graded'] = '(graded)';
|
|
$string['gradeungraded'] = 'Grade all $a ungraded attempts';
|
|
$string['gradenextungraded'] = 'Grade next $a ungraded attempts';
|
|
$string['gradinguser'] = 'Attempts for $a';
|
|
$string['gradingall'] = 'All $a attempts on this question.';
|
|
$string['gradingattempt'] = 'Attempt number $a->attempt for $a->fullname';
|
|
$string['gradingnextungraded'] = 'Next $a ungraded attempts';
|
|
$string['gradingnotallowed'] = 'You do not have permission to manually grade responses in this quiz';
|
|
$string['gradingungraded'] = '$a ungraded attempts';
|
|
$string['questiontitle'] = 'Question $a->number : \"$a->name\" ({$a->openspan}$a->gradedattempts{$a->closespan} / $a->totalattempts attempts {$a->openspan}graded{$a->closespan}).';
|
|
?>
|