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 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
| 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
| 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 27 | |
vlakoff | 59d4990 | 2012-09-01 05:26:08 +0200 | [diff] [blame^] | 28 | $lang['date_year'] = 'Year'; |
| 29 | $lang['date_years'] = 'Years'; |
| 30 | $lang['date_month'] = 'Month'; |
| 31 | $lang['date_months'] = 'Months'; |
| 32 | $lang['date_week'] = 'Week'; |
| 33 | $lang['date_weeks'] = 'Weeks'; |
| 34 | $lang['date_day'] = 'Day'; |
| 35 | $lang['date_days'] = 'Days'; |
| 36 | $lang['date_hour'] = 'Hour'; |
| 37 | $lang['date_hours'] = 'Hours'; |
| 38 | $lang['date_minute'] = 'Minute'; |
| 39 | $lang['date_minutes'] = 'Minutes'; |
| 40 | $lang['date_second'] = 'Second'; |
| 41 | $lang['date_seconds'] = 'Seconds'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 42 | |
| 43 | $lang['UM12'] = '(UTC -12:00) Baker/Howland Island'; |
Brandon Jones | dd35b15 | 2011-12-28 15:57:07 -0500 | [diff] [blame] | 44 | $lang['UM11'] = '(UTC -11:00) Niue'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 45 | $lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti'; |
| 46 | $lang['UM95'] = '(UTC -9:30) Marquesas Islands'; |
| 47 | $lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands'; |
| 48 | $lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island'; |
| 49 | $lang['UM7'] = '(UTC -7:00) Mountain Standard Time'; |
| 50 | $lang['UM6'] = '(UTC -6:00) Central Standard Time'; |
| 51 | $lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time'; |
| 52 | $lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time'; |
| 53 | $lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time'; |
| 54 | $lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time'; |
| 55 | $lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay'; |
| 56 | $lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands'; |
| 57 | $lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands'; |
| 58 | $lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time'; |
| 59 | $lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time'; |
| 60 | $lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time'; |
Brandon Jones | dd35b15 | 2011-12-28 15:57:07 -0500 | [diff] [blame] | 61 | $lang['UP3'] = '(UTC +3:00) East Africa Time, Arabia Standard Time'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 62 | $lang['UP35'] = '(UTC +3:30) Iran Standard Time'; |
Brandon Jones | dd35b15 | 2011-12-28 15:57:07 -0500 | [diff] [blame] | 63 | $lang['UP4'] = '(UTC +4:00) Moscow Time, Azerbaijan Standard Time'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 64 | $lang['UP45'] = '(UTC +4:30) Afghanistan'; |
| 65 | $lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time'; |
| 66 | $lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time'; |
| 67 | $lang['UP575'] = '(UTC +5:45) Nepal Time'; |
| 68 | $lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time'; |
| 69 | $lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar'; |
| 70 | $lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam'; |
| 71 | $lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time'; |
| 72 | $lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time'; |
| 73 | $lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time'; |
| 74 | $lang['UP95'] = '(UTC +9:30) Australian Central Standard Time'; |
| 75 | $lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time'; |
| 76 | $lang['UP105'] = '(UTC +10:30) Lord Howe Island'; |
| 77 | $lang['UP11'] = '(UTC +11:00) Magadan Time, Solomon Islands, Vanuatu'; |
| 78 | $lang['UP115'] = '(UTC +11:30) Norfolk Island'; |
| 79 | $lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time'; |
| 80 | $lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time'; |
Brandon Jones | dd35b15 | 2011-12-28 15:57:07 -0500 | [diff] [blame] | 81 | $lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 82 | $lang['UP14'] = '(UTC +14:00) Line Islands'; |
| 83 | |
| 84 | /* End of file date_lang.php */ |
Derek Jones | a3ffbbb | 2008-05-11 18:18:29 +0000 | [diff] [blame] | 85 | /* Location: ./system/language/english/date_lang.php */ |