28 lines
		
	
	
		
			1016 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1016 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',
 | |
|     'income_summary'            => 'Príjem Zhrnutie',
 | |
|     'expense_summary'           => 'Náklad Zhrnutie',
 | |
|     'income_expense_summary'    => 'Príjmy vs náklady',
 | |
|     'tax_summary'               => 'Súhrnné dane',
 | |
| 
 | |
|     'quarter' => [
 | |
|         '1'                     => 'Jan-Mar',
 | |
|         '2'                     => 'Apríl-Jún',
 | |
|         '3'                     => 'Júl-September',
 | |
|         '4'                     => 'Október-December',
 | |
|     ],
 | |
| 
 | |
| ];
 |