mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
Use course setting for "student"
This commit is contained in:
parent
b309c289db
commit
f39d5f4576
@ -7,7 +7,7 @@ $string['modulenameplural'] = "Surveys";
|
|||||||
|
|
||||||
$string['actual'] = "Actual";
|
$string['actual'] = "Actual";
|
||||||
$string['actualclass'] = "Class actual";
|
$string['actualclass'] = "Class actual";
|
||||||
$string['actualstudent'] = "Student actual";
|
$string['actualstudent'] = "\$a actual";
|
||||||
$string['allquestions'] = "All questions in order, all students";
|
$string['allquestions'] = "All questions in order, all students";
|
||||||
$string['allscales'] = "All scales, all students";
|
$string['allscales'] = "All scales, all students";
|
||||||
$string['alreadysubmitted'] = "You have already submitted this survey";
|
$string['alreadysubmitted'] = "You have already submitted this survey";
|
||||||
@ -185,7 +185,7 @@ $string['othercomments'] = "Do you have any other comments?";
|
|||||||
$string['peoplecompleted'] = "\$a people have completed this survey so far";
|
$string['peoplecompleted'] = "\$a people have completed this survey so far";
|
||||||
$string['preferred'] = "Preferred";
|
$string['preferred'] = "Preferred";
|
||||||
$string['preferredclass'] = "Class preferred";
|
$string['preferredclass'] = "Class preferred";
|
||||||
$string['preferredstudent'] = "Student preferred";
|
$string['preferredstudent'] = "\$a preferred";
|
||||||
$string['question'] = "Question";
|
$string['question'] = "Question";
|
||||||
$string['questions'] = "Questions";
|
$string['questions'] = "Questions";
|
||||||
$string['questionsnotanswered'] = "Some of the multiple choice questions have not been answered.";
|
$string['questionsnotanswered'] = "Some of the multiple choice questions have not been answered.";
|
||||||
|
@ -30,11 +30,11 @@
|
|||||||
|
|
||||||
$stractual = get_string("actual", "survey");
|
$stractual = get_string("actual", "survey");
|
||||||
$stractualclass = get_string("actualclass", "survey");
|
$stractualclass = get_string("actualclass", "survey");
|
||||||
$stractualstudent = get_string("actualstudent", "survey");
|
$stractualstudent = get_string("actualstudent", "survey", $course->student);
|
||||||
|
|
||||||
$strpreferred = get_string("preferred", "survey");
|
$strpreferred = get_string("preferred", "survey");
|
||||||
$strpreferredclass = get_string("preferredclass", "survey");
|
$strpreferredclass = get_string("preferredclass", "survey");
|
||||||
$strpreferredstudent = get_string("preferredstudent", "survey");
|
$strpreferredstudent = get_string("preferredstudent", "survey", $course->student);
|
||||||
|
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user