Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Andrey Andreev | fe9309d | 2015-01-09 17:48:58 +0200 | [diff] [blame] | 5 | * An open source application development framework for PHP |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 7 | * This content is released under the MIT License (MIT) |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 8 | * |
Andrey Andreev | cce6bd1 | 2018-01-09 11:32:02 +0200 | [diff] [blame^] | 9 | * Copyright (c) 2014 - 2018, British Columbia Institute of Technology |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 10 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 11 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 12 | * of this software and associated documentation files (the "Software"), to deal |
| 13 | * in the Software without restriction, including without limitation the rights |
| 14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 15 | * copies of the Software, and to permit persons to whom the Software is |
| 16 | * furnished to do so, subject to the following conditions: |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 17 | * |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 18 | * The above copyright notice and this permission notice shall be included in |
| 19 | * all copies or substantial portions of the Software. |
| 20 | * |
| 21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 24 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 27 | * THE SOFTWARE. |
| 28 | * |
| 29 | * @package CodeIgniter |
| 30 | * @author EllisLab Dev Team |
Andrey Andreev | 1924e87 | 2016-01-11 12:55:34 +0200 | [diff] [blame] | 31 | * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) |
Andrey Andreev | cce6bd1 | 2018-01-09 11:32:02 +0200 | [diff] [blame^] | 32 | * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/) |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 33 | * @license http://opensource.org/licenses/MIT MIT License |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 34 | * @link https://codeigniter.com |
Andrey Andreev | bdb96ca | 2014-10-28 00:13:31 +0200 | [diff] [blame] | 35 | * @since Version 1.0.0 |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 36 | * @filesource |
| 37 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 39 | |
vlakoff | 59d4990 | 2012-09-01 05:26:08 +0200 | [diff] [blame] | 40 | $lang['date_year'] = 'Year'; |
| 41 | $lang['date_years'] = 'Years'; |
| 42 | $lang['date_month'] = 'Month'; |
| 43 | $lang['date_months'] = 'Months'; |
| 44 | $lang['date_week'] = 'Week'; |
| 45 | $lang['date_weeks'] = 'Weeks'; |
| 46 | $lang['date_day'] = 'Day'; |
| 47 | $lang['date_days'] = 'Days'; |
| 48 | $lang['date_hour'] = 'Hour'; |
| 49 | $lang['date_hours'] = 'Hours'; |
| 50 | $lang['date_minute'] = 'Minute'; |
| 51 | $lang['date_minutes'] = 'Minutes'; |
| 52 | $lang['date_second'] = 'Second'; |
| 53 | $lang['date_seconds'] = 'Seconds'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 54 | |
| 55 | $lang['UM12'] = '(UTC -12:00) Baker/Howland Island'; |
Brandon Jones | dd35b15 | 2011-12-28 15:57:07 -0500 | [diff] [blame] | 56 | $lang['UM11'] = '(UTC -11:00) Niue'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 57 | $lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti'; |
| 58 | $lang['UM95'] = '(UTC -9:30) Marquesas Islands'; |
| 59 | $lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands'; |
| 60 | $lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island'; |
| 61 | $lang['UM7'] = '(UTC -7:00) Mountain Standard Time'; |
| 62 | $lang['UM6'] = '(UTC -6:00) Central Standard Time'; |
| 63 | $lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time'; |
| 64 | $lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time'; |
| 65 | $lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time'; |
| 66 | $lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time'; |
| 67 | $lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay'; |
| 68 | $lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands'; |
| 69 | $lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands'; |
| 70 | $lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time'; |
| 71 | $lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time'; |
| 72 | $lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time'; |
Peter Denk | 0ef898b | 2015-01-06 16:03:17 +0100 | [diff] [blame] | 73 | $lang['UP3'] = '(UTC +3:00) Moscow Time, East Africa Time, Arabia Standard Time'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 74 | $lang['UP35'] = '(UTC +3:30) Iran Standard Time'; |
Peter Denk | d413603 | 2014-12-25 13:42:57 +0100 | [diff] [blame] | 75 | $lang['UP4'] = '(UTC +4:00) Azerbaijan Standard Time, Samara Time'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 76 | $lang['UP45'] = '(UTC +4:30) Afghanistan'; |
| 77 | $lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time'; |
| 78 | $lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time'; |
| 79 | $lang['UP575'] = '(UTC +5:45) Nepal Time'; |
| 80 | $lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time'; |
| 81 | $lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar'; |
| 82 | $lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam'; |
| 83 | $lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time'; |
| 84 | $lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time'; |
| 85 | $lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time'; |
| 86 | $lang['UP95'] = '(UTC +9:30) Australian Central Standard Time'; |
| 87 | $lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time'; |
| 88 | $lang['UP105'] = '(UTC +10:30) Lord Howe Island'; |
Peter Denk | d413603 | 2014-12-25 13:42:57 +0100 | [diff] [blame] | 89 | $lang['UP11'] = '(UTC +11:00) Srednekolymsk Time, Solomon Islands, Vanuatu'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 90 | $lang['UP115'] = '(UTC +11:30) Norfolk Island'; |
| 91 | $lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time'; |
| 92 | $lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time'; |
Brandon Jones | dd35b15 | 2011-12-28 15:57:07 -0500 | [diff] [blame] | 93 | $lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 94 | $lang['UP14'] = '(UTC +14:00) Line Islands'; |