35 lines
969 B
PHP
Raw Normal View History

2020-09-23 00:34:19 +00:00
<?php
return [
'accounts' => [
2021-01-19 01:08:51 +00:00
'cash' => 'Rahat',
2020-09-23 00:34:19 +00:00
],
'categories' => [
'deposit' => 'Talletus',
2021-01-19 01:08:51 +00:00
'sales' => 'Myynti',
2020-09-23 00:34:19 +00:00
],
'currencies' => [
'usd' => 'Yhdysvaltain dollari',
'eur' => 'Euro',
'gbp' => 'Englannin punta',
'try' => 'Turkin liira',
],
'offline_payments' => [
2021-01-19 01:08:51 +00:00
'cash' => 'Rahat',
2020-09-23 00:34:19 +00:00
'bank' => 'Tilisiirto',
],
'reports' => [
'income' => 'Kuukausittaisten tulojen yhteenveto luokittain.',
'expense' => 'Kuukausittaisten menojen yhteenveto luokittain.',
'income_expense' => 'Kuukausittaiset tulot vs. menot luokittain.',
'tax' => 'Neljännesvuosittainen veroyhteenveto.',
'profit_loss' => 'Neljännesvuosittainen tuloslaskelma luokittain.',
],
];