Use course setting for "student"

This commit is contained in:
moodler 2002-11-09 06:29:21 +00:00
parent b309c289db
commit f39d5f4576
2 changed files with 4 additions and 4 deletions

View File

@ -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.";

View File

@ -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) {