Blame view

resources/lang/en-GB/settings.php 3.06 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  <?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',
          'percent' => [
              'title'         => 'Percent (%) Position',
              'before'        => 'Before Number',
              'after'         => 'After Number',
          ],
      ],
      'invoice' => [
          'tab'               => 'Invoice',
          'prefix'            => 'Number Prefix',
          'digit'             => 'Number Digit',
          'next'              => 'Next Number',
          'logo'              => 'Logo',
      ],
      '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',
      ],
      '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',
      ],
  
  ];