]> git.mjollnir.org Git - moodle.git/commitdiff
The "Reports" tab is now a "Results" tab so that the grading fits in better.
authorgustav_delius <gustav_delius>
Mon, 27 Mar 2006 08:45:02 +0000 (08:45 +0000)
committergustav_delius <gustav_delius>
Mon, 27 Mar 2006 08:45:02 +0000 (08:45 +0000)
lang/en_utf8/quiz.php
mod/quiz/tabs.php

index 5c564a976cc0b8b3a535f10e4367fa9a2a901523..571bd721b7416f1fed3e17626ee93218143cf46c 100644 (file)
@@ -387,6 +387,7 @@ $string['requirepasswordmessage'] = 'To attempt this quiz you need to know the q
 $string['requiresubnet'] = 'Require network address';
 $string['response'] = 'Response';
 $string['responses'] = 'Responses';
+$string['results'] = 'Results';
 $string['reuseifpossible'] = 'reuse previously removed';
 $string['review'] = 'Review';
 $string['reviewafter'] = 'Allow review after quiz is closed';
index 502a5c4727d68375c51ce4179b604a99a0442518..3607a3ec29a250c5278b79b781f53d5770744cf8 100644 (file)
     $inactive = array();
 
     $row[] = new tabobject('info', "$CFG->wwwroot/mod/quiz/view.php?q=$quiz->id", get_string('info', 'quiz'));
-    $row[] = new tabobject('reports', "$CFG->wwwroot/mod/quiz/report.php?q=$quiz->id", get_string('reports', 'quiz'));
+    $row[] = new tabobject('reports', "$CFG->wwwroot/mod/quiz/report.php?q=$quiz->id", get_string('results', 'quiz'));
     $row[] = new tabobject('preview', "$CFG->wwwroot/mod/quiz/attempt.php?q=$quiz->id", get_string('preview', 'quiz'), get_string('previewquiz', 'quiz', format_string($quiz->name)));
     if (isteacheredit($course->id)) {
         $row[] = new tabobject('edit', "$CFG->wwwroot/mod/quiz/edit.php?quizid=$quiz->id", get_string('edit'), get_string('editquizquestions', 'quiz'));
-        $row[] = new tabobject('manualgrading', "$CFG->wwwroot/mod/quiz/grading.php?quizid=$quiz->id", get_string("manualgrading", "quiz")); 
     }
 
     $tabs[] = $row;