mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
Fixed two missing strings
This commit is contained in:
parent
31313bfb98
commit
f830b324cf
@ -10,6 +10,7 @@ $string['description'] = "Description";
|
||||
$string['duedate'] = "Due date";
|
||||
$string['early'] = "\$a early";
|
||||
$string['failedupdatefeedback'] = "Failed to update submission feedback for user \$a";
|
||||
$string['feedback'] = "Feedback";
|
||||
$string['feedbackupdated'] = "Submissions feedback updated for \$a people";
|
||||
$string['late'] = "\$a late";
|
||||
$string['maximumgrade'] = "Maximum grade";
|
||||
@ -19,6 +20,7 @@ $string['modulenameplural'] = "Assignments";
|
||||
$string['newsubmissions'] = "Assignments submitted";
|
||||
$string['notsubmittedyet'] = "Not submitted yet";
|
||||
$string['overwritewarning'] = "Warning: uploading again will REPLACE your current submission";
|
||||
$string['saveallfeedback'] = "Save all my feedback";
|
||||
$string['submissionfeedback'] = "Submission feedback";
|
||||
$string['submissions'] = "Submissions";
|
||||
$string['submitassignment'] = "Submit your assignment using this form";
|
||||
|
@ -312,7 +312,7 @@ function assignment_print_submission($assignment, $user, $submission, $teachers,
|
||||
} else {
|
||||
echo "<TD BGCOLOR=\"$THEME->cellheading\">";
|
||||
}
|
||||
echo "Teacher Feedback:";
|
||||
echo get_string("feedback", "assignment").":";
|
||||
choose_from_menu($grades, "g$submission->id", $submission->grade, get_string("grade")."...");
|
||||
if ($submission->timemarked) {
|
||||
echo " <FONT SIZE=1>".userdate($submission->timemarked)."</FONT>";
|
||||
|
@ -29,6 +29,7 @@
|
||||
$strassignments = get_string("modulenameplural", "assignment");
|
||||
$strassignment = get_string("modulename", "assignment");
|
||||
$strsubmissions = get_string("submissions", "assignment");
|
||||
$strsaveallfeedback = get_string("saveallfeedback", "assignment");
|
||||
|
||||
print_header("$course->shortname: $assignment->name", "$course->fullname",
|
||||
"$navigation <A HREF=index.php?id=$course->id>$strassignments</A> ->
|
||||
@ -122,7 +123,7 @@
|
||||
|
||||
echo "<CENTER>";
|
||||
echo "<INPUT TYPE=hidden NAME=id VALUE=\"$assignment->id\">";
|
||||
echo "<INPUT TYPE=submit VALUE=\"Save all my feedback\">";
|
||||
echo "<INPUT TYPE=submit VALUE=\"$strsaveallfeedback\">";
|
||||
echo "</CENTER>";
|
||||
echo "</FORM>";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user