28 lines
		
	
	
		
			945 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			945 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     'this_year'                 => '올해',
 | |
|     'previous_year'             => '전년',
 | |
|     'this_quarter'              => '이번 분기',
 | |
|     'previous_quarter'          => '이전 분기',
 | |
|     'last_12_months'            => '지난 12개월',
 | |
|     'profit_loss'               => '손익',
 | |
|     'gross_profit'              => '매출총이익',
 | |
|     'net_profit'                => '당기순이익',
 | |
|     'total_expenses'            => '총 비용',
 | |
|     'net'                       => '순',
 | |
|     'income_summary'            => '수입 요약',
 | |
|     'expense_summary'           => '비용 요약',
 | |
|     'income_expense_summary'    => '수입 vs 비용',
 | |
|     'tax_summary'               => '세금 요약',
 | |
| 
 | |
|     'quarter' => [
 | |
|         '1'                     => '1월-3월',
 | |
|         '2'                     => '4월-6월',
 | |
|         '3'                     => '7월-9월',
 | |
|         '4'                     => '10월-12월',
 | |
|     ],
 | |
| 
 | |
| ];
 |