2017-09-14 22:21:00 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
'company' => [
|
|
|
|
'name' => 'Name',
|
|
|
|
'email' => 'Email',
|
|
|
|
'phone' => 'Phone',
|
|
|
|
'address' => 'Address',
|
|
|
|
'logo' => 'Logo',
|
|
|
|
],
|
|
|
|
'localisation' => [
|
|
|
|
'tab' => 'Localisation',
|
|
|
|
'date' => [
|
|
|
|
'format' => 'Date Format',
|
|
|
|
'separator' => 'Date Separator',
|
|
|
|
'dash' => 'Dash (-)',
|
|
|
|
'dot' => 'Dot (.)',
|
|
|
|
'comma' => 'Comma (,)',
|
|
|
|
'slash' => 'Slash (/)',
|
|
|
|
'space' => 'Space ( )',
|
|
|
|
],
|
|
|
|
'timezone' => 'Time Zone',
|
2018-04-16 19:01:29 +03:00
|
|
|
'percent' => [
|
|
|
|
'title' => 'Percent (%) Position',
|
|
|
|
'before' => 'Before Number',
|
|
|
|
'after' => 'After Number',
|
|
|
|
],
|
2017-09-14 22:21:00 +03:00
|
|
|
],
|
|
|
|
'invoice' => [
|
|
|
|
'tab' => 'Invoice',
|
2017-10-31 22:47:57 +03:00
|
|
|
'prefix' => 'Number Prefix',
|
2017-10-31 22:41:06 +03:00
|
|
|
'digit' => 'Number Digit',
|
|
|
|
'next' => 'Next Number',
|
|
|
|
'logo' => 'Logo',
|
2017-09-14 22:21:00 +03:00
|
|
|
],
|
|
|
|
'default' => [
|
|
|
|
'tab' => 'Defaults',
|
|
|
|
'account' => 'Default Account',
|
|
|
|
'currency' => 'Default Currency',
|
|
|
|
'tax' => 'Default Tax Rate',
|
|
|
|
'payment' => 'Default Payment Method',
|
|
|
|
'language' => 'Default Language',
|
|
|
|
],
|
|
|
|
'email' => [
|
|
|
|
'protocol' => 'Protocol',
|
|
|
|
'php' => 'PHP Mail',
|
|
|
|
'smtp' => [
|
|
|
|
'name' => 'SMTP',
|
|
|
|
'host' => 'SMTP Host',
|
|
|
|
'port' => 'SMTP Port',
|
|
|
|
'username' => 'SMTP Username',
|
|
|
|
'password' => 'SMTP Password',
|
|
|
|
'encryption' => 'SMTP Security',
|
|
|
|
'none' => 'None',
|
|
|
|
],
|
|
|
|
'sendmail' => 'Sendmail',
|
|
|
|
'sendmail_path' => 'Sendmail Path',
|
|
|
|
'log' => 'Log Emails',
|
|
|
|
],
|
|
|
|
'scheduling' => [
|
|
|
|
'tab' => 'Scheduling',
|
|
|
|
'send_invoice' => 'Send Invoice Reminder',
|
|
|
|
'invoice_days' => 'Send After Due Days',
|
|
|
|
'send_bill' => 'Send Bill Reminder',
|
|
|
|
'bill_days' => 'Send Before Due Days',
|
|
|
|
'cron_command' => 'Cron Command',
|
|
|
|
'schedule_time' => 'Hour To Run',
|
2018-09-29 17:48:37 +03:00
|
|
|
'send_item_reminder'=> 'Send Item Reminder',
|
|
|
|
'item_stocks' => 'Send When Item Stock',
|
2017-09-14 22:21:00 +03:00
|
|
|
],
|
|
|
|
'appearance' => [
|
|
|
|
'tab' => 'Appearance',
|
|
|
|
'theme' => 'Theme',
|
|
|
|
'light' => 'Light',
|
|
|
|
'dark' => 'Dark',
|
|
|
|
'list_limit' => 'Records Per Page',
|
|
|
|
'use_gravatar' => 'Use Gravatar',
|
|
|
|
],
|
|
|
|
'system' => [
|
|
|
|
'tab' => 'System',
|
|
|
|
'session' => [
|
|
|
|
'lifetime' => 'Session Lifetime (Minutes)',
|
|
|
|
'handler' => 'Session Handler',
|
|
|
|
'file' => 'File',
|
|
|
|
'database' => 'Database',
|
|
|
|
],
|
|
|
|
'file_size' => 'Max File Size (MB)',
|
|
|
|
'file_types' => 'Allowed File Types',
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|