fixed import/export notification
This commit is contained in:
parent
20413c00ff
commit
2a1d61ff84
@ -65,9 +65,7 @@ class ExportFailed extends Notification implements ShouldQueue
|
|||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'title' => trans('notifications.menu.export_failed.title'),
|
'title' => trans('notifications.menu.export_failed.title'),
|
||||||
'description' => trans('notifications.menu.export_failed.description', [
|
'description' => trans('notifications.menu.export_failed.description'),
|
||||||
'issues' => $this->message,
|
|
||||||
]),
|
|
||||||
'message' => $this->message,
|
'message' => $this->message,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -70,9 +70,7 @@ class ImportFailed extends Notification implements ShouldQueue
|
|||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'title' => trans('notifications.menu.import_failed.title'),
|
'title' => trans('notifications.menu.import_failed.title'),
|
||||||
'description' => trans('notifications.menu.import_failed.description', [
|
'description' => trans('notifications.menu.import_failed.description'),
|
||||||
'issues' => $this->errors,
|
|
||||||
]),
|
|
||||||
'errors' => $this->errors,
|
'errors' => $this->errors,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -75,7 +75,7 @@ return [
|
|||||||
'export_failed' => [
|
'export_failed' => [
|
||||||
|
|
||||||
'title' => 'Export failed',
|
'title' => 'Export failed',
|
||||||
'description' => 'Not able to create the export file due to the following issue: :issues',
|
'description' => 'Not able to create the export file due to several issues. Check out your email for the details.',
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
@ -86,6 +86,13 @@ return [
|
|||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'import_failed' => [
|
||||||
|
|
||||||
|
'subject' => 'Import failed',
|
||||||
|
'description' => 'Not able to import the file due to several issues. Check out your email for the details.',
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
'new_apps' => [
|
'new_apps' => [
|
||||||
|
|
||||||
'title' => 'New App',
|
'title' => 'New App',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user