diff --git a/resources/lang/en/cachet.php b/resources/lang/en/cachet.php index b15c7ad7..cb24fc10 100644 --- a/resources/lang/en/cachet.php +++ b/resources/lang/en/cachet.php @@ -34,7 +34,7 @@ return [ 'stickied' => 'Stickied Incidents', 'scheduled' => 'Maintenance', 'scheduled_at' => ', scheduled :timestamp', - 'posted' => 'Posted :timestamp', + 'posted' => 'Posted :timestamp by :username', 'posted_at' => 'Posted at :timestamp', 'status' => [ 1 => 'Investigating', diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index 3f70a368..7dc9af66 100644 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -35,7 +35,7 @@ return [ 'failure' => 'Something went wrong updating the incident update', ], ], - 'reported_by' => 'Reported by :user', + 'reported_by' => 'Reported :timestamp by :user', 'add' => [ 'title' => 'Report an incident', 'success' => 'Incident added.', diff --git a/resources/views/dashboard/incidents/index.blade.php b/resources/views/dashboard/incidents/index.blade.php index 14af90f0..69103049 100644 --- a/resources/views/dashboard/incidents/index.blade.php +++ b/resources/views/dashboard/incidents/index.blade.php @@ -27,7 +27,7 @@
{{ Str::words($incident->message, 5) }}
@endif @if ($incident->user) -— {{ trans('dashboard.incidents.reported_by', ['user' => $incident->user->username]) }}
+— {{ trans('dashboard.incidents.reported_by', ['timestamp' => $incident->created_at_diff, 'user' => $incident->user->username]) }}
@endif