blob: cd6cf39c4f50258e8a4a265a3e3f31d2eed69d19 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 5.1.6 or newer
6 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Open Software License version 3.0
10 *
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 Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @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 Allard2067d1a2008-11-13 22:59:24 +000027
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";
42
43$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
Brandon Jonesdd35b152011-12-28 15:57:07 -050044$lang['UM11'] = '(UTC -11:00) Niue';
Derek Allard2067d1a2008-11-13 22:59:24 +000045$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 Jonesdd35b152011-12-28 15:57:07 -050061$lang['UP3'] = '(UTC +3:00) East Africa Time, Arabia Standard Time';
Derek Allard2067d1a2008-11-13 22:59:24 +000062$lang['UP35'] = '(UTC +3:30) Iran Standard Time';
Brandon Jonesdd35b152011-12-28 15:57:07 -050063$lang['UP4'] = '(UTC +4:00) Moscow Time, Azerbaijan Standard Time';
Derek Allard2067d1a2008-11-13 22:59:24 +000064$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 Jonesdd35b152011-12-28 15:57:07 -050081$lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga';
Derek Allard2067d1a2008-11-13 22:59:24 +000082$lang['UP14'] = '(UTC +14:00) Line Islands';
83
Derek Jones2a58e7a2010-03-02 17:53:38 -060084
Derek Allard2067d1a2008-11-13 22:59:24 +000085/* End of file date_lang.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +000086/* Location: ./system/language/english/date_lang.php */