mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
19 lines
993 B
PHP
19 lines
993 B
PHP
<?PHP // $Id$
|
|
// quiz_grading.php - created with Moodle 1.7 beta + (2006101003)
|
|
|
|
|
|
$string['essayonly'] = 'The following questions need to be graded manually';
|
|
$string['grading'] = 'Manual grading';
|
|
$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}).';
|
|
?>
|