95 行
		
	
	
	
		
			4.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			95 行
		
	
	
	
		
			4.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * CodeIgniter
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * An open source application development framework for PHP
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * This content is released under the MIT License (MIT)
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * Copyright (c) 2014 - 2017, British Columbia Institute of Technology
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * Permission is hereby granted, free of charge, to any person obtaining a copy
							 | 
						||
| 
								 | 
							
								 * of this software and associated documentation files (the "Software"), to deal
							 | 
						||
| 
								 | 
							
								 * in the Software without restriction, including without limitation the rights
							 | 
						||
| 
								 | 
							
								 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
							 | 
						||
| 
								 | 
							
								 * copies of the Software, and to permit persons to whom the Software is
							 | 
						||
| 
								 | 
							
								 * furnished to do so, subject to the following conditions:
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * The above copyright notice and this permission notice shall be included in
							 | 
						||
| 
								 | 
							
								 * all copies or substantial portions of the Software.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
							 | 
						||
| 
								 | 
							
								 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
							 | 
						||
| 
								 | 
							
								 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
							 | 
						||
| 
								 | 
							
								 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
							 | 
						||
| 
								 | 
							
								 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
							 | 
						||
| 
								 | 
							
								 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
							 | 
						||
| 
								 | 
							
								 * THE SOFTWARE.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @package	CodeIgniter
							 | 
						||
| 
								 | 
							
								 * @author	EllisLab Dev Team
							 | 
						||
| 
								 | 
							
								 * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
							 | 
						||
| 
								 | 
							
								 * @copyright	Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
							 | 
						||
| 
								 | 
							
								 * @license	http://opensource.org/licenses/MIT	MIT License
							 | 
						||
| 
								 | 
							
								 * @link	https://codeigniter.com
							 | 
						||
| 
								 | 
							
								 * @since	Version 1.0.0
							 | 
						||
| 
								 | 
							
								 * @filesource
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								defined('BASEPATH') OR exit('Direkter Skriptzugriff ist nicht erlaubt');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$lang['date_year'] = 'Jahr';
							 | 
						||
| 
								 | 
							
								$lang['date_years'] = 'Jahre';
							 | 
						||
| 
								 | 
							
								$lang['date_month'] = 'Monat';
							 | 
						||
| 
								 | 
							
								$lang['date_months'] = 'Monate';
							 | 
						||
| 
								 | 
							
								$lang['date_week'] = 'Woche';
							 | 
						||
| 
								 | 
							
								$lang['date_weeks'] = 'Wochen';
							 | 
						||
| 
								 | 
							
								$lang['date_day'] = 'Tag';
							 | 
						||
| 
								 | 
							
								$lang['date_days'] = 'Tage';
							 | 
						||
| 
								 | 
							
								$lang['date_hour'] = 'Stunde';
							 | 
						||
| 
								 | 
							
								$lang['date_hours'] = 'Stunden';
							 | 
						||
| 
								 | 
							
								$lang['date_minute'] = 'Minute';
							 | 
						||
| 
								 | 
							
								$lang['date_minutes'] = 'Minuten';
							 | 
						||
| 
								 | 
							
								$lang['date_second'] = 'Sekunde';
							 | 
						||
| 
								 | 
							
								$lang['date_seconds'] = 'Sekunden';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$lang['UM12']  = '(UTC -12:00) Bakerinsel/Howlandinsel';
							 | 
						||
| 
								 | 
							
								$lang['UM11']  = '(UTC -11:00) Amerikanisch-Samoa, Niue';
							 | 
						||
| 
								 | 
							
								$lang['UM10']  = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cookinseln, Hawaii';
							 | 
						||
| 
								 | 
							
								$lang['UM95']  = '(UTC -9:30) Marquesas-Inseln';
							 | 
						||
| 
								 | 
							
								$lang['UM9']   = '(UTC -9:00) Alaska Standard Time, Gambierinseln';
							 | 
						||
| 
								 | 
							
								$lang['UM8']   = '(UTC -8:00) Pacific Standard Time, Clipperton-Insel';
							 | 
						||
| 
								 | 
							
								$lang['UM7']   = '(UTC -7:00) Mountain Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UM6']   = '(UTC -6:00) Central Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UM5']   = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UM45']  = '(UTC -4:30) Venezuelan Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UM4']   = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UM35']  = '(UTC -3:30) Newfoundland Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UM3']   = '(UTC -3:00) Argentinien, Brasilien, Französisch-Guayana, Uruguay';
							 | 
						||
| 
								 | 
							
								$lang['UM2']   = '(UTC -2:00) Südgeorgien und die südlichen Sandwichinseln';
							 | 
						||
| 
								 | 
							
								$lang['UM1']   = '(UTC -1:00) Azoren, Kap Verde';
							 | 
						||
| 
								 | 
							
								$lang['UTC']   = '(UTC) Greenwich Mean Time, Westeuropäische Zeit';
							 | 
						||
| 
								 | 
							
								$lang['UP1']   = '(UTC +1:00) Mitteleuropäische Zeit, West Africa Time';
							 | 
						||
| 
								 | 
							
								$lang['UP2']   = '(UTC +2:00) Central Africa Time, Osteuropäische Zeit, Kaliningrad Time';
							 | 
						||
| 
								 | 
							
								$lang['UP3']   = '(UTC +3:00) Moscow Time, East Africa Time';
							 | 
						||
| 
								 | 
							
								$lang['UP35']  = '(UTC +3:30) Iran Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UP4']   = '(UTC +4:00) Azerbaijan Standard Time, Samara Time';
							 | 
						||
| 
								 | 
							
								$lang['UP45']  = '(UTC +4:30) Afghanistan';
							 | 
						||
| 
								 | 
							
								$lang['UP5']   = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time';
							 | 
						||
| 
								 | 
							
								$lang['UP55']  = '(UTC +5:30) Indian Standard Time, Sri Lanka Time';
							 | 
						||
| 
								 | 
							
								$lang['UP575']    = '(UTC +5:45) Nepal Time';
							 | 
						||
| 
								 | 
							
								$lang['UP6']   = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time';
							 | 
						||
| 
								 | 
							
								$lang['UP65']  = '(UTC +6:30) Kokosinseln, Myanmar';
							 | 
						||
| 
								 | 
							
								$lang['UP7']   = '(UTC +7:00) Krasnoyarsk Time, Kambodscha, Laos, Thailand, Vietnam';
							 | 
						||
| 
								 | 
							
								$lang['UP8']   = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time';
							 | 
						||
| 
								 | 
							
								$lang['UP875']    = '(UTC +8:45) Australian Central Western Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UP9']   = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time';
							 | 
						||
| 
								 | 
							
								$lang['UP95']  = '(UTC +9:30) Australian Central Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UP10']  = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time';
							 | 
						||
| 
								 | 
							
								$lang['UP105']    = '(UTC +10:30) Lord-Howe-Insel';
							 | 
						||
| 
								 | 
							
								$lang['UP11']  = '(UTC +11:00) Magadan Time, Salomonen, Vanuatu';
							 | 
						||
| 
								 | 
							
								$lang['UP115']    = '(UTC +11:30) Norfolkinseln';
							 | 
						||
| 
								 | 
							
								$lang['UP12']  = '(UTC +12:00) Fidschi, Gilbertinseln, Kamtschatka, New Zealand Standard Time';
							 | 
						||
| 
								 | 
							
								$lang['UP1275'] = '(UTC +12:45) Chatham-Inseln';
							 | 
						||
| 
								 | 
							
								$lang['UP13']  = '(UTC +13:00) Phoenixinseln, Tonga';
							 | 
						||
| 
								 | 
							
								$lang['UP14']  = '(UTC +14:00) Line Islands';
							 |