35 lines
928 B
PHP
Raw Normal View History

2018-06-20 12:36:35 +03:00
<?php
return [
2020-03-17 16:39:03 +03:00
'accounts' => [
'cash' => 'Dinheiro',
],
'categories' => [
'deposit' => 'Depósito',
'sales' => 'Vendas',
],
'currencies' => [
'usd' => 'Dólar Americano',
'eur' => 'Euro',
'gbp' => 'Libra Esterlina',
'try' => 'Lira Turca',
],
'offline_payments' => [
'cash' => 'Dinheiro',
'bank' => 'Transferência Bancária',
],
'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.',
],
2018-06-20 12:36:35 +03:00
];