2017-09-14 22:21:00 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
2019-12-25 23:48:13 +03:00
|
|
|
'accounts' => [
|
|
|
|
'cash' => 'Cash',
|
|
|
|
],
|
|
|
|
|
|
|
|
'categories' => [
|
|
|
|
'deposit' => 'Deposit',
|
|
|
|
'sales' => 'Sales',
|
|
|
|
],
|
|
|
|
|
|
|
|
'currencies' => [
|
|
|
|
'usd' => 'US Dollar',
|
|
|
|
'eur' => 'Euro',
|
|
|
|
'gbp' => 'British Pound',
|
|
|
|
'try' => 'Turkish Lira',
|
|
|
|
],
|
|
|
|
|
|
|
|
'reports' => [
|
|
|
|
'income' => 'Monthly income summary by category.',
|
|
|
|
'expense' => 'Monthly expense summary by category.',
|
|
|
|
'income_expense' => 'Monthly income vs expense summary by category.',
|
|
|
|
'tax' => 'Quarterly tax summary by category.',
|
|
|
|
'pl' => 'Quarterly profit & loss by category.',
|
|
|
|
],
|
2017-09-14 22:21:00 +03:00
|
|
|
|
|
|
|
];
|