Blame view

resources/lang/nl-NL/settings.php 3.19 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'              => 'Naam',
          'email'             => 'E-mail',
          'phone'             => 'Telefoonnummer',
          'address'           => 'Adres',
          'logo'              => 'Logo',
      ],
      'localisation' => [
          'tab'               => 'Lokalisatie',
          'date' => [
              'format'        => 'Datum formaat',
              'separator'     => 'Datumscheidingsteken',
              'dash'          => 'Streepje (-)',
              'dot'           => 'Punt (.)',
              'comma'         => 'Komma (,)',
              'slash'         => 'Slash (/)',
              'space'         => 'Spatie ( ) ',
          ],
          'timezone'          => 'Tijdzone',
          'percent' => [
              'title'         => 'Procent (%) Positie',
              'before'        => 'Voor aantal',
              'after'         => 'Na aantal',
          ],
      ],
      'invoice' => [
          'tab'               => 'Factuur',
          'prefix'            => 'Nummer voorvoegsel',
          'digit'             => 'Aantal cijfers',
          'next'              => 'Volgende nummer',
          'logo'              => 'Logo',
      ],
      'default' => [
          'tab'               => 'Standaardwaarden',
          'account'           => 'Standaard account',
          'currency'          => 'Standaard Valuta',
          'tax'               => 'Standaard BTW-tarief',
          'payment'           => 'Standaard betalingsmethode',
          'language'          => 'Standaard Taal',
      ],
      'email' => [
          'protocol'          => 'Protocol',
          'php'               => 'PHP mail',
          'smtp' => [
              'name'          => 'SMTP',
              'host'          => 'SMTP host',
              'port'          => 'SMTP-poort',
              'username'      => 'SMTP gebruikersnaam',
              'password'      => 'SMTP wachtwoord',
              'encryption'    => 'SMTP beveiliging',
              'none'          => 'Geen',
          ],
          'sendmail'          => 'Sendmail',
          'sendmail_path'     => 'Sendmail pad',
          'log'               => 'E-mail logs',
      ],
      'scheduling' => [
          'tab'               => 'Schema',
          'send_invoice'      => 'Factuur herinnering sturen',
          'invoice_days'      => 'Aantal dagen na vervaldatum sturen',
          'send_bill'         => 'Factuur herinnering sturen',
          'bill_days'         => 'Aantal dagen voor vervaldatum sturen',
          'cron_command'      => 'Cron opdracht',
          'schedule_time'     => 'Uren duurtijd',
      ],
      'appearance' => [
          'tab'               => 'Opmaak',
          'theme'             => 'Thema',
          'light'             => 'Licht',
          'dark'              => 'Donker',
          'list_limit'        => 'Resultaten per pagina',
          'use_gravatar'      => 'Gebruik Gravatar',
      ],
      'system' => [
          'tab'               => 'Systeem',
          'session' => [
              'lifetime'      => 'Sessie levensduur (minuten)',
              'handler'       => 'Sessie Beheerder',
              'file'          => 'Bestand',
              'database'      => 'Database',
          ],
          'file_size'         => 'Maximale bestandsgrootte (MB)',
          'file_types'        => 'Toegestane bestandstypes',
      ],
  
  ];