31 lines
		
	
	
		
			971 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			971 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     'this_year'             => 'Këtë Vit',
 | |
|     'previous_year'         => 'Viti i Kaluar',
 | |
|     'this_quarter'          => 'Këtë Tremujor',
 | |
|     'previous_quarter'      => 'Tremujor i Kaluar',
 | |
|     'last_12_months'        => '12 Muajt e Fundit',
 | |
|     'profit_loss'           => 'Fitimi & Humbje',
 | |
|     'gross_profit'          => 'Fitimi Bruto',
 | |
|     'net_profit'            => 'Fitimi Neto',
 | |
|     'total_expenses'        => 'Shpenzimet Totale',
 | |
|     'net'                   => 'NETO',
 | |
| 
 | |
|     'summary' => [
 | |
|         'income'            => 'Përmbledhje e të Ardhurave',
 | |
|         'expense'           => 'Përmbledhje e Shpenzimeve',
 | |
|         'income_expense'    => 'Të Ardhurat vs Shpenzimet',
 | |
|         'tax'               => 'Përmbledhje e Taksave',
 | |
|     ],
 | |
| 
 | |
|     'quarter' => [
 | |
|         '1'                 => 'Jan-Mar',
 | |
|         '2'                 => 'Prill-Qer',
 | |
|         '3'                 => 'Korr-Shta',
 | |
|         '4'                 => 'Tet-Dhje',
 | |
|     ],
 | |
| 
 | |
| ];
 |