mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 09:26:35 +02:00
quiz editing: MDL-17595 changed string from "question name" to "question"
This commit is contained in:
parent
bb7e5140e0
commit
dbd2b0fd45
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue