103 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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',
 | |
|         'custom'            => 'Custom',
 | |
|         'item_name'         => 'Item Name',
 | |
|         'item'              => 'Artikel|Artikelen',
 | |
|         'product'           => 'Producten',
 | |
|         'service'           => 'Services',
 | |
|         'price_name'        => 'Prijs label',
 | |
|         'price'             => 'Prijs',
 | |
|         'rate'              => 'Tarief',
 | |
|         'quantity_name'     => 'Hoeveelheid label',
 | |
|         'quantity'          => 'Aantal',
 | |
|     ],
 | |
|     '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',
 | |
|         'send_item_reminder'=> 'Send Item Reminder',
 | |
|         'item_stocks'       => 'Send When Item Stock',
 | |
|     ],
 | |
|     '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',
 | |
|     ],
 | |
| 
 | |
| ];
 |