Merge branch 'akaunting:master' into master

This commit is contained in:
Burak Civan 2022-11-22 17:58:00 +03:00 committed by GitHub
commit bc72f8d505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ class ShowInNotifications
$new->notifiable_id = user()->id;
$new->data = [
'title' => $name . ' (v' . $update . ')',
'description' => '<a href="' . route('updates.index') . '">' . trans('install.update.' . $prefix, ['module' => $name]) . '</a>',
'description' => trans('install.update.' . $prefix, ['module' => $name, 'url' => route('updates.index')]),
];
$new->created_at = \Carbon\Carbon::now();

View File

@ -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 <a href=":url">your installation.</a>',
'module' => ':module new version is available! Please, update <a href=":url">your installation.</a>',
],
];