31 lines
971 B
PHP
31 lines
971 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'this_year' => 'Tento rok',
|
|
'previous_year' => 'Predchádzajúci rok',
|
|
'this_quarter' => 'Tento štvrťrok',
|
|
'previous_quarter' => 'Predchádzajúci štvrťrok',
|
|
'last_12_months' => 'Posledných 12 mesiacov',
|
|
'profit_loss' => 'Zisky & straty',
|
|
'gross_profit' => 'Zisk brutto',
|
|
'net_profit' => 'Čistý zisk',
|
|
'total_expenses' => 'Celkové výdavky',
|
|
'net' => 'NET',
|
|
|
|
'summary' => [
|
|
'income' => 'Príjem Zhrnutie',
|
|
'expense' => 'Náklad Zhrnutie',
|
|
'income_expense' => 'Príjmy vs náklady',
|
|
'tax' => 'Súhrnné dane',
|
|
],
|
|
|
|
'quarter' => [
|
|
'1' => 'Jan-Mar',
|
|
'2' => 'Apríl-Jún',
|
|
'3' => 'Júl-September',
|
|
'4' => 'Október-December',
|
|
],
|
|
|
|
];
|