2020-06-04 14:09:57 +03:00

35 lines
899 B
PHP

<?php
return [
'accounts' => [
'cash' => 'Cash',
],
'categories' => [
'deposit' => 'Deposit',
'sales' => 'Sales',
],
'currencies' => [
'usd' => 'US Dollar',
'eur' => 'Euro',
'gbp' => 'British Pound',
'try' => 'Turkish 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.',
],
];