Blame view

resources/lang/de-DE/settings.php 3.21 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'             => 'E-Mail',
          'phone'             => 'Telefon',
          'address'           => 'Adresse',
          'logo'              => 'Logo',
      ],
      'localisation' => [
          'tab'               => 'Lokalisation',
          'date' => [
              'format'        => 'Datumsformat',
              'separator'     => 'Datumstrennzeichen',
              'dash'          => 'Bindestrich (-)',
              'dot'           => 'Punkt (.)',
              'comma'         => 'Komma (,)',
              'slash'         => 'Schrägstrich (/)',
              'space'         => 'Leerzeichen ( )',
          ],
          'timezone'          => 'Zeitzone',
          'percent' => [
              'title'         => 'Position des Prozent (%)',
              'before'        => 'Vor der Zahl',
              'after'         => 'Nach der Zahl',
          ],
      ],
      'invoice' => [
          'tab'               => 'Rechnung',
          'prefix'            => 'Zahlenprefix',
          'digit'             => 'Nachkommastellen',
          'next'              => 'Nächste Nummer',
          'logo'              => 'Logo',
      ],
      'default' => [
          'tab'               => 'Standardeinstellungen',
          'account'           => 'Standardkonto',
          'currency'          => 'Standardwährung',
          'tax'               => 'Standard-Steuersatz',
          'payment'           => 'Standard-Zahlungsmethode',
          'language'          => 'Standardsprache',
      ],
      'email' => [
          'protocol'          => 'Protokoll',
          'php'               => 'PHP-Mail',
          'smtp' => [
              'name'          => 'SMTP',
              'host'          => 'SMTP Server',
              'port'          => 'SMTP-Port',
              'username'      => 'SMTP Benutzername',
              'password'      => 'SMTP-Passwort',
              'encryption'    => 'SMTP-Sicherheit',
              'none'          => 'Keine',
          ],
          'sendmail'          => 'Sendmail',
          'sendmail_path'     => 'Sendmail Pfad',
          'log'               => 'Protokoll E-Mails',
      ],
      'scheduling' => [
          'tab'               => 'Zeitpläne',
          'send_invoice'      => 'Erinnerung für Kundenrechnung senden',
          'invoice_days'      => 'Senden nach Fälligkeit (Tage)',
          'send_bill'         => 'Erinnerung für Ausgabenrechung senden',
          'bill_days'         => 'Senden vor Fälligkeit (Tage)',
          'cron_command'      => 'Cron-Befehl',
          'schedule_time'     => 'Stunde (Laufzeit)',
      ],
      'appearance' => [
          'tab'               => 'Darstellung',
          'theme'             => 'Theme',
          'light'             => 'Light',
          'dark'              => 'Dark',
          'list_limit'        => 'Datensätze pro Seite',
          'use_gravatar'      => 'Gravatar verwenden',
      ],
      'system' => [
          'tab'               => 'System',
          'session' => [
              'lifetime'      => 'Sitzungsdauer (Minuten)',
              'handler'       => 'Session-Verwaltung',
              'file'          => 'Datei',
              'database'      => 'Datenbank',
          ],
          'file_size'         => 'Max. Dateigröße (MB)',
          'file_types'        => 'Erlaubte Dateitypen',
      ],
  
  ];