0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-22 07:52:36 +00:00
salesagility_SuiteCRM/modules/ProjectTask/language/en_us.lang.php
2023-09-19 12:02:50 +01:00

121 lines
4.8 KiB
PHP
Executable File

<?php
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2019 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
$mod_strings = array(
'LBL_MODULE_NAME' => 'Project Tasks',
'LBL_MODULE_TITLE' => 'Project Task: Home',
'LBL_ID' => 'Id:',
'LBL_PROJECT_TASK_ID' => 'Project Task Id:',
'LBL_PROJECT_ID' => 'Project Id:',
'LBL_DATE_ENTERED' => 'Date Created:',
'LBL_DATE_MODIFIED' => 'Date Modified:',
'LBL_ASSIGNED_USER_ID' => 'Assigned To:',
'LBL_MODIFIED_USER_ID' => 'Modified User Id:',
'LBL_CREATED_BY' => 'Created By:',
'LBL_NAME' => 'Name:',
'LBL_STATUS' => 'Status:',
'LBL_DATE_DUE' => 'Due Date:',
'LBL_TIME_DUE' => 'Due Time:',
'LBL_PREDECESSORS' => 'Predecessor',
'LBL_DATE_START' => 'Start Date:',
'LBL_DATE_FINISH' => 'Finish Date:',
'LBL_TIME_START' => 'Start Time:',
'LBL_TIME_FINISH' => 'Finish Time:',
'LBL_DURATION' => 'Duration:',
'LBL_DURATION_UNIT' => 'Duration Unit:',
'LBL_ACTUAL_DURATION' => 'Actual Duration:',
'LBL_PARENT_ID' => 'Project:',
'LBL_PARENT_TASK_ID' => 'Parent Task Id:',
'LBL_PERCENT_COMPLETE' => '% Cpl',
'LBL_PRIORITY' => 'Priority:',
'LBL_DESCRIPTION' => 'Notes:',
'LBL_ORDER_NUMBER' => 'Order:',
'LBL_TASK_NUMBER' => 'Task Number:',
'LBL_TASK_ID' => 'Task ID:',
'LBL_MILESTONE_FLAG' => 'Milestone:',
'LBL_ESTIMATED_EFFORT' => 'Estimated Effort (hrs):',
'LBL_ACTUAL_EFFORT' => 'Actual Effort (hrs):',
'LBL_UTILIZATION' => 'Utilization (%):',
'LBL_DELETED' => 'Deleted:',
'LBL_IMPORT_PROJECT_TASKS' => 'Import Project Tasks',
'LBL_LIST_NAME' => 'Name',
'LBL_LIST_PARENT_NAME' => 'Project',
'LBL_LIST_PERCENT_COMPLETE' => '% Complete',
'LBL_LIST_STATUS' => 'Status',
'LBL_LIST_ASSIGNED_USER_ID' => 'Assigned To',
'LBL_LIST_DATE_DUE' => 'Date Due',
'LBL_LIST_PRIORITY' => 'Priority',
'LBL_LIST_CLOSE' => 'Close',
'LBL_PROJECT_NAME' => 'Project Name',
'LNK_NEW_PROJECT' => 'Create Project',
'LNK_PROJECT_LIST' => 'Project List',
'LNK_NEW_PROJECT_TASK' => 'Create Project Task',
'LNK_PROJECT_TASK_LIST' => 'Project Tasks',
'LBL_LIST_MY_PROJECT_TASKS' => 'My Project Tasks',
'LBL_DEFAULT_SUBPANEL_TITLE' => 'Project Tasks',
'LBL_NEW_FORM_TITLE' => 'New Project Task',
'LBL_HISTORY_TITLE' => 'History',
'LBL_ACTIVITIES_SUBPANEL_TITLE' => 'Activities',
'LBL_HISTORY_SUBPANEL_TITLE' => 'History',
'LBL_ASSIGNED_USER_NAME' => 'Assigned To',
'LBL_PARENT_NAME' => 'Project Name',
'LBL_EDITLAYOUT' => 'Edit Layout' /*for 508 compliance fix*/,
'LBL_PANEL_TIMELINE' => 'Timeline',
'LBL_SUBTASK' => 'Sub-Task',
'LBL_LAG' => 'Lag',
'LBL_DAYS' => 'Days',
'LBL_HOURS' => 'Hours',
'LBL_RELATIONSHIP_TYPE' => 'Relationship Type',
'LBL_ASCENDING' => 'Ascending',
'LBL_DESCENDING' => 'Descending',
);