32 lines
765 B
PHP
Raw Normal View History

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',
],
2020-01-08 17:07:18 +03:00
'offline_payments' => [
'cash' => 'Cash',
'bank' => 'Bank Transfer',
],
2019-12-25 23:48:13 +03:00
'reports' => [
'income' => 'Monthly income summary by category.',
'expense' => 'Monthly expense summary by category.',
2019-12-27 15:15:50 +03:00
'income_expense' => 'Monthly income vs expense by category.',
2020-01-27 22:41:08 +03:00
'tax' => 'Quarterly tax summary.',
2020-01-16 15:39:37 +03:00
'profit_loss' => 'Quarterly profit & loss by category.',
2019-12-25 23:48:13 +03:00
],
2017-09-14 22:21:00 +03:00
];