Skip to content
Snippets Groups Projects
Commit 35572f5d authored by Tobias Reischmann's avatar Tobias Reischmann
Browse files

Added string for anonymous user

parent ed76d672
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ class interaction_remaining_table extends interaction_table {
// Otherwise, show latest action commited by user.
global $CFG;
if ($row->userid == -1) {
$userlink = get_string("anonymous_user");
$userlink = get_string("anonymous_user", 'tool_lifecycle');
} else {
$userlink = \html_writer::link($CFG->wwwroot . '/user/profile.php?id=' . $row->userid, fullname($row));
}
......
......@@ -163,6 +163,7 @@ $string['manual_trigger_process_existed'] = 'A workflow for this course already
$string['coursename'] = 'Course name';
$string['lastaction'] = 'Last action on';
$string['anonymous_user'] = 'Anonymous User';
$string['workflow_started'] = 'Workflow started.';
$string['workflow_is_running'] = 'Workflow is running.';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment