31 lines
935 B
PHP
31 lines
935 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'this_year' => 'Anul curent',
|
|
'previous_year' => 'Anul precedent',
|
|
'this_quarter' => 'Trimistrul acesta',
|
|
'previous_quarter' => 'Trimestrul anterior',
|
|
'last_12_months' => 'Ultimele 12 luni',
|
|
'profit_loss' => 'Profit & Pierdere',
|
|
'gross_profit' => 'Profit Brut',
|
|
'net_profit' => 'Profit Net',
|
|
'total_expenses' => 'Total Cheltuieli',
|
|
'net' => 'NET',
|
|
|
|
'summary' => [
|
|
'income' => 'Rezumat Venituri',
|
|
'expense' => 'Rezumat Chetuieli',
|
|
'income_expense' => 'Venituri vs. Cheltuieli',
|
|
'tax' => 'Rezumat Taxe',
|
|
],
|
|
|
|
'quarter' => [
|
|
'1' => 'Ian-Mar',
|
|
'2' => 'Apr-Iun',
|
|
'3' => 'Iul-Sep',
|
|
'4' => 'Oct-Dec',
|
|
],
|
|
|
|
];
|