31 lines
		
	
	
		
			936 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			936 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     'this_year'             => 'Anno Corrente',
 | |
|     'previous_year'         => 'Anno Precedente',
 | |
|     'this_quarter'          => 'Trimestre Corrente',
 | |
|     'previous_quarter'      => 'Trimestre precedente',
 | |
|     'last_12_months'        => 'Ultimi 12 mesi',
 | |
|     'profit_loss'           => 'Profitti e perdite',
 | |
|     'gross_profit'          => 'Utile lordo',
 | |
|     'net_profit'            => 'Utile netto',
 | |
|     'total_expenses'        => 'Totale spese',
 | |
|     'net'                   => 'NET',
 | |
| 
 | |
|     'summary' => [
 | |
|         'income'            => 'Riepilogo di reddito',
 | |
|         'expense'           => 'Riepilogo spese',
 | |
|         'income_expense'    => 'Reddito vs Spese',
 | |
|         'tax'               => 'Riepilogo fiscale',
 | |
|     ],
 | |
| 
 | |
|     'quarter' => [
 | |
|         '1'                 => 'Gen-Mar',
 | |
|         '2'                 => 'Apr-Giu',
 | |
|         '3'                 => 'Lug-Set',
 | |
|         '4'                 => 'Ott-Dic',
 | |
|     ],
 | |
| 
 | |
| ];
 |