Skip to content

Commit dc82ae9

Browse files
adding lang string for student_read
1 parent 1dd753a commit dc82ae9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lang/en/turnitintooltwo.php

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
$string['numberofparts_help'] = 'Allows for the creation of a multi part assignment, individual users may submit one piece of work to each part.';
8383
$string['overallgrade'] = 'Overall Grade';
8484
$string['overallgrade_help'] = 'The overall grade determines the maximum allowed grade for the overall assignment, each part of an assignment has a maximum mark allocated which is used to proportionally distribute the grades in order to determine the overall grade.';
85+
$string['paperviewed'] = 'Paper viewed';
8586
$string['partdberror'] = 'There was a problem entering Part {$a} into the database<br />';
8687
$string['partupdateerror'] = 'There was a problem updating Part {$a} in the database<br />';
8788
$string['partdeleteerror'] = 'Could not delete assignment part {$a} data';

turnitintooltwo_view.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ public function init_submission_inbox($cm, $turnitintooltwoassignment, $partdeta
504504
}
505505
}
506506
if (has_capability('mod/turnitintooltwo:grade', context_module::instance($cm->id))) {
507-
$cells["student_read"] = new html_table_cell('&nbsp;');
507+
$cells["student_read"] = new html_table_cell(get_string('paperviewed', 'turnitintooltwo'));
508508
}
509509
$cells["upload"] = new html_table_cell('&nbsp;');
510510
$cells["upload"]->attributes['class'] = "noscript_hide";

0 commit comments

Comments
 (0)