Skip to content

Commit

Permalink
adding lang string for student_read
Browse files Browse the repository at this point in the history
  • Loading branch information
christina-roperto committed Aug 3, 2022
1 parent 1dd753a commit dc82ae9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lang/en/turnitintooltwo.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
$string['numberofparts_help'] = 'Allows for the creation of a multi part assignment, individual users may submit one piece of work to each part.';
$string['overallgrade'] = 'Overall Grade';
$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.';
$string['paperviewed'] = 'Paper viewed';
$string['partdberror'] = 'There was a problem entering Part {$a} into the database<br />';
$string['partupdateerror'] = 'There was a problem updating Part {$a} in the database<br />';
$string['partdeleteerror'] = 'Could not delete assignment part {$a} data';
Expand Down
2 changes: 1 addition & 1 deletion turnitintooltwo_view.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public function init_submission_inbox($cm, $turnitintooltwoassignment, $partdeta
}
}
if (has_capability('mod/turnitintooltwo:grade', context_module::instance($cm->id))) {
$cells["student_read"] = new html_table_cell('&nbsp;');
$cells["student_read"] = new html_table_cell(get_string('paperviewed', 'turnitintooltwo'));
}
$cells["upload"] = new html_table_cell('&nbsp;');
$cells["upload"]->attributes['class'] = "noscript_hide";
Expand Down

0 comments on commit dc82ae9

Please sign in to comment.