diff --git a/app/Listeners/Menu/ShowInNotifications.php b/app/Listeners/Menu/ShowInNotifications.php
index 1c6f5103d..2b9942c81 100644
--- a/app/Listeners/Menu/ShowInNotifications.php
+++ b/app/Listeners/Menu/ShowInNotifications.php
@@ -46,7 +46,7 @@ class ShowInNotifications
$new->notifiable_id = user()->id;
$new->data = [
'title' => $name . ' (v' . $update . ')',
- 'description' => '' . trans('install.update.' . $prefix, ['module' => $name]) . '',
+ 'description' => trans('install.update.' . $prefix, ['module' => $name, 'url' => route('updates.index')]),
];
$new->created_at = \Carbon\Carbon::now();
diff --git a/resources/lang/en-GB/install.php b/resources/lang/en-GB/install.php
index af6686441..2591347de 100644
--- a/resources/lang/en-GB/install.php
+++ b/resources/lang/en-GB/install.php
@@ -45,7 +45,7 @@ return [
],
'update' => [
- 'core' => 'Akaunting new version is available! Please, update your installation.',
- 'module' => ':module new version is available! Please, update your installation.',
+ 'core' => 'Akaunting new version is available! Please, update your installation.',
+ 'module' => ':module new version is available! Please, update your installation.',
],
];