changed language text for notification message..

This commit is contained in:
Cüneyt Şentürk 2021-06-20 12:53:46 +03:00
parent dcd079d8ac
commit 2ebe5caae4

View File

@ -35,35 +35,45 @@ return [
'import' => [ 'import' => [
'completed' => [ 'completed' => [
'subject' => 'Import completed', 'subject' => 'Import completed',
'description' => 'The import has been completed and the records are available in your panel.', 'description' => 'The import has been completed and the records are available in your panel.',
], ],
'failed' => [ 'failed' => [
'subject' => 'Import failed', 'subject' => 'Import failed',
'description' => 'Not able to import the file due to the following issues:', 'description' => 'Not able to import the file due to the following issues:',
], ],
], ],
'export' => [ 'export' => [
'completed' => [ 'completed' => [
'subject' => 'Export is ready', 'subject' => 'Export is ready',
'description' => 'The export file is ready to download from the following link:', 'description' => 'The export file is ready to download from the following link:',
], ],
'failed' => [ 'failed' => [
'subject' => 'Export failed', 'subject' => 'Export failed',
'description' => 'Not able to create the export file due to the following issue:', 'description' => 'Not able to create the export file due to the following issue:',
], ],
], ],
'messages' => [ 'messages' => [
'mark_read' => ':type is read this notification!', 'mark_read' => ':type is read this notification!',
'mark_read_all' => ':type is read all notification!', 'mark_read_all' => ':type is read all notification!',
'new_app' => ':type app published.', 'new_app' => ':type app published.',
'export' => ':type export is ready! The export file is ready to download from the following <a href=":url" target="_blank">:file_name</a>', 'export' => 'Your <b>:type</b> export file is ready to <a href=":url" target="_blank"><b>download</b></a>.',
'import' => ':type import finished! Added :count :type rows.' 'import' => 'Your <b>:type</b> lined <b>:count</b> data is imported successfully.',
], ],
]; ];