31 lines
		
	
	
		
			900 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			900 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'                   => '순',
 | |
| 
 | |
|     'summary' => [
 | |
|         'income'            => '수입 요약',
 | |
|         'expense'           => '비용 요약',
 | |
|         'income_expense'    => '수입 vs 비용',
 | |
|         'tax'               => '세금 요약',
 | |
|     ],
 | |
| 
 | |
|     'quarter' => [
 | |
|         '1'                 => '1월-3월',
 | |
|         '2'                 => '4월-6월',
 | |
|         '3'                 => '7월-9월',
 | |
|         '4'                 => '10월-12월',
 | |
|     ],
 | |
| 
 | |
| ];
 |