]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Calendar/language/en_us.lang.php
Release 6.1.4
[Github/sugarcrm.git] / modules / Calendar / language / en_us.lang.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:  Defines the English language pack for the base application.
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45
46 $mod_strings = array (
47   'LBL_MODULE_NAME'=>'Calendar',
48   'LBL_MODULE_TITLE'=>'Calendar',
49   'LBL_MODULE_ACTION'=>'View',
50   'LNK_NEW_CALL' => 'Log Call',
51   'LNK_NEW_MEETING' => 'Schedule Meeting',
52   'LNK_NEW_APPOINTMENT' => 'Create Appointment',
53   'LNK_NEW_TASK' => 'Create Task',
54   'LNK_CALL_LIST' => 'View Calls',
55   'LNK_MEETING_LIST' => 'View Meetings',
56   'LNK_TASK_LIST' => 'View Tasks',
57   'LNK_VIEW_CALENDAR' => 'Today',
58   'LNK_IMPORT_CALLS'=>'Import Calls',
59   'LNK_IMPORT_MEETINGS'=>'Import Meetings',
60   'LNK_IMPORT_TASKS'=>'Import Tasks',
61   'LBL_MONTH' => 'Month',
62   'LBL_DAY' => 'Day',
63   'LBL_YEAR' => 'Year',
64   'LBL_WEEK' => 'Week',
65   'LBL_PREVIOUS_MONTH' => 'Previous Month',
66   'LBL_PREVIOUS_DAY' => 'Previous Day',
67   'LBL_PREVIOUS_YEAR' => 'Previous Year',
68   'LBL_PREVIOUS_WEEK' => 'Previous Week',
69   'LBL_NEXT_MONTH' => 'Next Month',
70   'LBL_NEXT_DAY' => 'Next Day',
71   'LBL_NEXT_YEAR' => 'Next Year',
72   'LBL_NEXT_WEEK' => 'Next Week',
73   'LBL_AM' => 'AM',
74   'LBL_PM' => 'PM',
75   'LBL_SCHEDULED' => 'Scheduled',
76   'LBL_BUSY' => 'Busy',
77   'LBL_CONFLICT' => 'Conflict',
78   'LBL_USER_CALENDARS' => 'User Calendars',
79   'LBL_SHARED' => 'Shared',
80   'LBL_PREVIOUS_SHARED' => 'Previous',
81   'LBL_NEXT_SHARED' => 'Next',
82   'LBL_SHARED_CAL_TITLE' => 'Shared Calendar',
83   'LBL_USERS' => 'User',
84   'LBL_REFRESH' => 'Refresh',
85   'LBL_EDIT' => 'Edit',
86   'LBL_SELECT_USERS' => 'Select users for calendar display',
87   'LBL_FILTER_BY_TEAM' => 'Filter user list by team:',
88   'LBL_ASSIGNED_TO_NAME' => 'Assigned to',
89   'LBL_DATE' => 'Start Date & Time'
90 );
91
92 $mod_list_strings = array(
93 'dom_cal_weekdays'=>array(
94 "Sun",
95 "Mon",
96 "Tue",
97 "Wed",
98 "Thu",
99 "Fri",
100 "Sat",
101 ),
102 'dom_cal_weekdays_long'=>array(
103 "Sunday",
104 "Monday",
105 "Tuesday",
106 "Wednesday",
107 "Thursday",
108 "Friday",
109 "Saturday",
110 ),
111 'dom_cal_month'=>array(
112 "",
113 "Jan",
114 "Feb",
115 "Mar",
116 "Apr",
117 "May",
118 "Jun",
119 "Jul",
120 "Aug",
121 "Sep",
122 "Oct",
123 "Nov",
124 "Dec",
125 ),
126 'dom_cal_month_long'=>array(
127 "",
128 "January",
129 "February",
130 "March",
131 "April",
132 "May",
133 "June",
134 "July",
135 "August",
136 "September",
137 "October",
138 "November",
139 "December",
140 )
141 );
142 ?>