quiz editing: MDL-17595 changed string from "question name" to "question"

This commit is contained in:
pilpi 2008-12-10 14:44:40 +00:00
parent bb7e5140e0
commit dbd2b0fd45

View file

@ -1211,7 +1211,7 @@ function quiz_question_list($contexts, $pageurl, $categoryandcontext,
$strselectall = get_string("selectall", "quiz"); $strselectall = get_string("selectall", "quiz");
$strselectnone = get_string("selectnone", "quiz"); $strselectnone = get_string("selectnone", "quiz");
$strcreatenewquestion = get_string("createnewquestion", "quiz"); $strcreatenewquestion = get_string("createnewquestion", "quiz");
$strquestionname = get_string("questionname", "quiz"); $strquestion = get_string("question", "quiz");
$strdelete = get_string("delete"); $strdelete = get_string("delete");
$stredit = get_string("edit"); $stredit = get_string("edit");
$strmove = get_string('moveqtoanothercontext', 'question'); $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 '<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;\" 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 "<th style=\"white-space:nowrap; text-align: left;\" class=\"header\" scope=\"col\"></th>";
echo "</tr>\n"; echo "</tr>\n";
foreach ($questions as $question) { foreach ($questions as $question) {