32 lines
809 B
PHP
Raw Normal View History

2017-11-30 12:27:54 +03:00
<?php
return [
2020-02-23 23:12:14 +03:00
'accounts' => [
'cash' => 'Contant geld',
],
'categories' => [
'deposit' => 'Storting',
'sales' => 'Omzet',
],
'currencies' => [
'usd' => 'Amerikaanse Dollar',
],
'offline_payments' => [
2020-03-25 00:46:36 +03:00
'cash' => 'Contant geld',
'bank' => 'Bankoverschrijving',
2020-02-23 23:12:14 +03:00
],
'reports' => [
2020-03-25 00:46:36 +03:00
'income' => 'Maandelijkse inkomsten per categorie',
'expense' => 'Maandelijkse uitgaven per categorie',
'income_expense' => 'Maandelijkse inkomsten/uitgaven per categorie',
'tax' => 'Kwartaal - BTW overzicht',
'profit_loss' => 'Kwartaal - Winst/Verlies per categorie',
2020-02-23 23:12:14 +03:00
],
2017-11-30 12:27:54 +03:00
];