From 2ebe5caae4af54586e624fae14d1ca888fa77af7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Sun, 20 Jun 2021 12:53:46 +0300 Subject: [PATCH] changed language text for notification message.. --- resources/lang/en-GB/notifications.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/resources/lang/en-GB/notifications.php b/resources/lang/en-GB/notifications.php index d7387ec83..af74a789d 100644 --- a/resources/lang/en-GB/notifications.php +++ b/resources/lang/en-GB/notifications.php @@ -35,35 +35,45 @@ return [ 'import' => [ 'completed' => [ + 'subject' => 'Import completed', 'description' => 'The import has been completed and the records are available in your panel.', + ], 'failed' => [ + 'subject' => 'Import failed', 'description' => 'Not able to import the file due to the following issues:', + ], ], 'export' => [ 'completed' => [ + 'subject' => 'Export is ready', 'description' => 'The export file is ready to download from the following link:', + ], 'failed' => [ + 'subject' => 'Export failed', 'description' => 'Not able to create the export file due to the following issue:', + ], ], 'messages' => [ + 'mark_read' => ':type is read this notification!', 'mark_read_all' => ':type is read all notification!', 'new_app' => ':type app published.', - 'export' => ':type export is ready! The export file is ready to download from the following :file_name', - 'import' => ':type import finished! Added :count :type rows.' + 'export' => 'Your :type export file is ready to download.', + 'import' => 'Your :type lined :count data is imported successfully.', + ], ];