2017-12-13 14:48:50 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
2020-02-23 23:12:14 +03:00
|
|
|
'accounts' => [
|
|
|
|
'cash' => 'Hotovost',
|
|
|
|
],
|
|
|
|
|
|
|
|
'categories' => [
|
|
|
|
'deposit' => 'Vklad',
|
|
|
|
'sales' => 'Prodeje',
|
|
|
|
],
|
|
|
|
|
|
|
|
'currencies' => [
|
|
|
|
'usd' => 'Americký dolar',
|
|
|
|
'eur' => 'Euro',
|
|
|
|
'gbp' => 'Britská libra',
|
|
|
|
'try' => 'Turecká 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.',
|
|
|
|
],
|
2017-12-13 14:48:50 +03:00
|
|
|
|
|
|
|
];
|