2020-02-23 23:12:14 +03:00

35 lines
914 B
PHP

<?php
return [
'accounts' => [
'cash' => 'Contant geld',
],
'categories' => [
'deposit' => 'Storting',
'sales' => 'Omzet',
],
'currencies' => [
'usd' => 'Amerikaanse Dollar',
'eur' => 'Euro',
'gbp' => 'Britse pond',
'try' => 'Turkse Lira',
],
'offline_payments' => [
'cash' => 'Cash',
'bank' => 'Bank Transfer',
],
'reports' => [
'income' => 'Monthly income summary by category.',
'expense' => 'Monthly expense summary by category.',
'income_expense' => 'Monthly income vs expense by category.',
'tax' => 'Quarterly tax summary.',
'profit_loss' => 'Quarterly profit & loss by category.',
],
];