31 lines
935 B
PHP
31 lines
935 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'this_year' => 'Tekuća godina',
|
|
'previous_year' => 'Prethodna godina',
|
|
'this_quarter' => 'Ovaj kvartal',
|
|
'previous_quarter' => 'Prethodni kvartal',
|
|
'last_12_months' => 'Zadnjih 12 mjeseci',
|
|
'profit_loss' => 'Profit & Loss',
|
|
'gross_profit' => 'Gross Profit',
|
|
'net_profit' => 'Net Profit',
|
|
'total_expenses' => 'Total Expenses',
|
|
'net' => 'NET',
|
|
|
|
'summary' => [
|
|
'income' => 'Sažetak prihoda',
|
|
'expense' => 'Sažetak troškova',
|
|
'income_expense' => 'Prihodi nasuprot troškovima',
|
|
'tax' => 'Tax Summary',
|
|
],
|
|
|
|
'quarter' => [
|
|
'1' => 'Jan-Mar',
|
|
'2' => 'Apr-Jun',
|
|
'3' => 'Jul-Sep',
|
|
'4' => 'Oct-Dec',
|
|
],
|
|
|
|
];
|