]> git.mjollnir.org Git - moodle.git/commitdiff
quiz editing: MDL-17595 changed string from "question name" to "question"
authorpilpi <pilpi>
Wed, 10 Dec 2008 14:44:40 +0000 (14:44 +0000)
committerpilpi <pilpi>
Wed, 10 Dec 2008 14:44:40 +0000 (14:44 +0000)
mod/quiz/editlib.php

index 21ad67b5011d192ff28bc7f8003b03840ec869eb..858356479c3a360bd84ebb9961588b2a475a7e8d 100644 (file)
@@ -1211,7 +1211,7 @@ function quiz_question_list($contexts, $pageurl, $categoryandcontext,
     $strselectall = get_string("selectall", "quiz");
     $strselectnone = get_string("selectnone", "quiz");
     $strcreatenewquestion = get_string("createnewquestion", "quiz");
-    $strquestionname = get_string("questionname", "quiz");
+    $strquestion = get_string("question", "quiz");
     $strdelete = get_string("delete");
     $stredit = get_string("edit");
     $strmove = get_string('moveqtoanothercontext', 'question');
@@ -1332,7 +1332,7 @@ function quiz_question_list($contexts, $pageurl, $categoryandcontext,
     echo '<table id="categoryquestions" style="width: 100%"><colgroup><col id="qaction"></col><col id="qname"></col><col id="qextraactions"></col></colgroup><tr>';
     echo "<th style=\"white-space:nowrap;\" class=\"header\" scope=\"col\">$straction</th>";
 
-    echo "<th style=\"white-space:nowrap; text-align: left;\" class=\"header\" scope=\"col\">$strquestionname</th>";
+    echo "<th style=\"white-space:nowrap; text-align: left;\" class=\"header\" scope=\"col\">$strquestion</th>";
     echo "<th style=\"white-space:nowrap; text-align: left;\" class=\"header\" scope=\"col\"></th>";
     echo "</tr>\n";
     foreach ($questions as $question) {