New notification page..

This commit is contained in:
Cüneyt Şentürk
2021-06-19 18:16:09 +03:00
parent 856e10a2dd
commit 4687185f4a
34 changed files with 2652 additions and 43 deletions

View File

@@ -51,6 +51,7 @@ return [
'templates' => 'Template|Templates',
'sales' => 'Sale|Sales',
'purchases' => 'Purchase|Purchases',
'notifications' => 'Notification|Notifications',
'welcome' => 'Welcome',
'banking' => 'Banking',

View File

@@ -4,12 +4,23 @@ return [
'change_language' => 'Change Language',
'last_login' => 'Last login :time',
'notifications' => [
'counter' => '{0} You have no notification|{1} You have :count notification|[2,*] You have :count notifications',
'overdue_invoices' => '{1} :count overdue invoice|[2,*] :count overdue invoices',
'upcoming_bills' => '{1} :count upcoming bill|[2,*] :count upcoming bills',
'view_all' => 'View All'
'view_all' => 'View All',
'exports' => [
'completed' => '{1} :count finished export|[2,*] :count finished exports',
'failed' => '{1} :count failed export|[2,*] :count failed exports',
],
'imports' => [
'completed' => '{1} :count finished import|[2,*] :count finished imports',
'failed' => '{1} :count failed import|[2,*] :count failed imports',
],
],
'docs_link' => 'https://akaunting.com/docs',
'support_link' => 'https://akaunting.com/support',

View File

@@ -6,6 +6,13 @@ return [
'hello' => 'Hello!',
'salutation' => 'Regards,<br> :company_name',
'subcopy' => 'If youre having trouble clicking the ":text" button, copy and paste the URL below into your web browser: [:url](:url)',
'reads' => 'Read|Reads',
'read_all' => 'Read All',
'mark_read' => 'Mark Read',
'mark_read_all' => 'Mark Read All',
'upcoming_bills' => 'Upcoming Bills',
'recurring_invoices' => 'Recurring Invoices',
'recurring_bills' => 'Recurring Bills',
'update' => [
@@ -51,4 +58,9 @@ return [
],
'messages' => [
'mark_read' => ':type is read this notification!',
'mark_read_all' => ':type is read all notification!',
'export' => ':type export is ready! The export file is ready to download from the following <a href=":url" target="_blank">:file_name</a>'
],
];