32 lines
833 B
PHP
32 lines
833 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'accounts' => [
|
|
'cash' => 'Rahat',
|
|
],
|
|
|
|
'categories' => [
|
|
'deposit' => 'Talletus',
|
|
'sales' => 'Myynti',
|
|
],
|
|
|
|
'currencies' => [
|
|
'usd' => 'Yhdysvaltain dollari',
|
|
],
|
|
|
|
'offline_payments' => [
|
|
'cash' => 'Rahat',
|
|
'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.',
|
|
],
|
|
|
|
];
|