diff --git a/classes/local/table/interaction_remaining_table.php b/classes/local/table/interaction_remaining_table.php index c23bf583f66b2834aa9d535a3c50ac330e4927f0..5e6a06a123de3742687b7e109a902835428f80e4 100644 --- a/classes/local/table/interaction_remaining_table.php +++ b/classes/local/table/interaction_remaining_table.php @@ -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)); } diff --git a/lang/en/tool_lifecycle.php b/lang/en/tool_lifecycle.php index f0714ad97be68237cd79649f0db8599ccec03c50..875144a0f395796591f1626eb1711da247a0e95e 100644 --- a/lang/en/tool_lifecycle.php +++ b/lang/en/tool_lifecycle.php @@ -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.';