mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
	
	
		
			52 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			52 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <?php | ||
|  | 
 | ||
|  | /** | ||
|  |  * config.php | ||
|  |  * Copyright (c) 2018 thegrumpydictator@gmail.com | ||
|  |  * | ||
|  |  * This file is part of Firefly III. | ||
|  |  * | ||
|  |  * Firefly III is free software: you can redistribute it and/or modify | ||
|  |  * it under the terms of the GNU General Public License as published by | ||
|  |  * the Free Software Foundation, either version 3 of the License, or | ||
|  |  * (at your option) any later version. | ||
|  |  * | ||
|  |  * Firefly III is distributed in the hope that it will be useful, | ||
|  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
|  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||
|  |  * GNU General Public License for more details. | ||
|  |  * | ||
|  |  * You should have received a copy of the GNU General Public License | ||
|  |  * along with Firefly III. If not, see <http://www.gnu.org/licenses/>. | ||
|  |  */ | ||
|  | 
 | ||
|  | declare(strict_types=1); | ||
|  | 
 | ||
|  | return [ | ||
|  |     'html_language'         => 'hu', | ||
|  |     'locale'                => 'hu, Hungarian, hu_HU.utf8, hu_HU.UTF-8', | ||
|  |     'month'                 => '%B %Y', | ||
|  |     'month_and_day'         => '%B %e, %Y', | ||
|  |     'month_and_date_day'    => '%Y %e %B, %A', | ||
|  |     'month_and_day_no_year' => '%e %B', | ||
|  |     'date_time'             => '%Y %B %e @ %T', | ||
|  |     'specific_day'          => '%Y %e %B', | ||
|  |     'week_in_year'          => 'Hét %W, %Y', | ||
|  |     'year'                  => '%Y', | ||
|  |     'half_year'             => '%Y %B', | ||
|  |     'month_js'              => 'YYYY MMMM', | ||
|  |     'month_and_day_js'      => 'YYYY MMMM DD', | ||
|  |     'date_time_js'          => 'YYYY MMMM DD @ HH:mm:ss', | ||
|  |     'specific_day_js'       => 'YYYY MMMM DD', | ||
|  |     'week_in_year_js'       => 'YYYY, w [Week]', | ||
|  |     'year_js'               => 'YYYY', | ||
|  |     'half_year_js'          => 'YYYY Q', | ||
|  |     'dow_1'                 => 'Hétfő', | ||
|  |     'dow_2'                 => 'Kedd', | ||
|  |     'dow_3'                 => 'Szerda', | ||
|  |     'dow_4'                 => 'Csütörtök', | ||
|  |     'dow_5'                 => 'Péntek', | ||
|  |     'dow_6'                 => 'Szombat', | ||
|  |     'dow_7'                 => 'Vasárnap', | ||
|  | ]; |