mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
145 lines
6.1 KiB
PHP
Executable File
145 lines
6.1 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_ASSIGNED_TO_ID' => 'Assigned User Id',
|
|
'LBL_ASSIGNED_TO_NAME' => 'Project Manager',
|
|
'LBL_ID' => 'ID',
|
|
'LBL_DATE_ENTERED' => 'Date Created',
|
|
'LBL_DATE_MODIFIED' => 'Date Modified',
|
|
'LBL_MODIFIED' => 'Modified By',
|
|
'LBL_MODIFIED_NAME' => 'Modified By Name',
|
|
'LBL_CREATED' => 'Created By',
|
|
'LBL_DELETED' => 'Deleted',
|
|
'LBL_NAME' => 'Template Name',
|
|
'LBL_CREATED_USER' => 'Created by User',
|
|
'LBL_MODIFIED_USER' => 'Modified by User',
|
|
'LBL_LIST_NAME' => 'Name',
|
|
'LBL_EDIT_BUTTON' => 'Edit',
|
|
'LBL_REMOVE' => 'Remove',
|
|
'LBL_LIST_FORM_TITLE' => 'Project Templates List',
|
|
'LBL_MODULE_NAME' => 'Project Templates',
|
|
'LBL_MODULE_TITLE' => 'Project Templates',
|
|
'LBL_HOMEPAGE_TITLE' => 'My Project Templates',
|
|
'LNK_NEW_RECORD' => 'Create Project Templates',
|
|
'LNK_LIST' => 'View Project Templates',
|
|
'LNK_IMPORT_AM_PROJECTTEMPLATES' => 'Import Project Templates',
|
|
'LBL_SEARCH_FORM_TITLE' => 'Search Project Templates',
|
|
'LBL_HISTORY_SUBPANEL_TITLE' => 'View History',
|
|
'LBL_ACTIVITIES_SUBPANEL_TITLE' => 'Activities',
|
|
'LBL_NEW_FORM_TITLE' => 'New Project Templates',
|
|
'LBL_STATUS' => 'Status',
|
|
'LBL_PRIORITY' => 'Priority',
|
|
'LBL_PROJECT_NAME' => 'Project Name',
|
|
'LBL_START_DATE' => 'Start Date',
|
|
'LBL_CREATE_PROJECT_TITLE' => 'Create a new project from this template?',
|
|
'LBL_AM_TASKTEMPLATES_AM_PROJECTTEMPLATES_FROM_AM_TASKTEMPLATES_TITLE' => 'Task Templates',
|
|
'LBL_AM_PROJECTTEMPLATES_USERS_1_TITLE' => 'Users',
|
|
'LBL_AM_PROJECTTEMPLATES_CONTACTS_1_TITLE' => 'Contacts',
|
|
'LBL_AM_PROJECTTEMPLATES_RESOURCES_TITLE' => 'Select Resources',
|
|
'LBL_NEW_PROJECT_CREATED' => 'New Project Created',
|
|
'LBL_NEW_PROJECT' => 'Create Project',
|
|
'LBL_CANCEL_PROJECT' => 'Cancel',
|
|
|
|
'LBL_SUBTASK' => 'Task',
|
|
'LBL_MILESTONE_FLAG' => 'Milestone',
|
|
'LBL_RELATIONSHIP_TYPE' => 'Relation Type',
|
|
'LBL_LAG' => 'Lag',
|
|
'LBL_DAYS' => 'Days',
|
|
'LBL_HOURS' => 'Hours',
|
|
'LBL_MONTHS' => 'Months',
|
|
|
|
'LBL_PROJECT_TASKS_SUBPANEL_TITLE' => 'Project Tasks',
|
|
'LBL_VIEW_GANTT_TITLE' => 'View Gantt',
|
|
'LBL_VIEW_GANTT_DURATION' => 'Duration',
|
|
'LBL_TASK_TITLE' => 'Edit Task',
|
|
'LBL_DURATION_TITLE' => 'Edit Duration',
|
|
'LBL_DESCRIPTION' => 'Notes',
|
|
'LBL_ASSIGNED_USER_ID' => 'Assigned To:',
|
|
|
|
'LBL_LIST_ASSIGNED_USER' => 'Project Manager',
|
|
'LBL_UNASSIGNED' => 'Unassigned',
|
|
'LBL_PROJECT_USERS_1_FROM_USERS_TITLE' => 'Resources',
|
|
'LBL_DELETE_TASK' => 'Delete Task',
|
|
'LBL_VIEW_DETAIL' => 'View Details',
|
|
'LBL_ADD_NEW_TASK' => 'Add New Task',
|
|
'LBL_ASSIGNED_USER_NAME' => 'Project Manager:',
|
|
|
|
'LBL_TASK_ID' => 'ID',
|
|
'LBL_TASK_NAME' => 'Task Name',
|
|
'LBL_DURATION' => 'Duration',
|
|
'LBL_ACTUAL_DURATION' => 'Actual Duration',
|
|
'LBL_START' => 'Start',
|
|
'LBL_FINISH' => 'Finish',
|
|
'LBL_PREDECESSORS' => 'Predecessors',
|
|
'LBL_PERCENT_COMPLETE' => '% Complete',
|
|
'LBL_EDIT_TASK_PROPERTIES' => 'Edit task properties.',
|
|
|
|
'LBL_OVERRIDE_BUSINESS_HOURS' => 'Consider Working days',
|
|
'LBL_COPY_ALL_TASKS' => 'Copy All Tasks With Resources',
|
|
'LBL_COPY_SEL_TASKS' => 'Copy Selected Tasks With Resources',
|
|
'LBL_TOOLTIP_TITLE' => 'Hint',
|
|
'LBL_TOOLTIP_TEXT' => 'Copies All tasks with assigned users',
|
|
|
|
'LBL_EMAIL' => 'Email',
|
|
'LBL_PHONE' => 'Phone Office:',
|
|
'LBL_ADD_BUTTON' => 'Add',
|
|
'LBL_ADD_INVITEE' => 'Add Resource',
|
|
'LBL_FIRST_NAME' => 'First Name',
|
|
'LBL_LAST_NAME' => 'Last Name',
|
|
'LBL_SEARCH_BUTTON' => 'Search',
|
|
'LBL_EMPTY_SEARCH_RESULT' => 'Sorry, no results were found. Please create an invitee below.',
|
|
'LBL_CREATE_INVITEE' => 'Create a Resource',
|
|
'LBL_CREATE_CONTACT' => 'As Contact',
|
|
'LBL_CREATE_AND_ADD' => 'Create & Add',
|
|
'LBL_CANCEL_CREATE_INVITEE' => 'Cancel',
|
|
'LBL_NO_ACCESS' => 'You have no access to create $module',
|
|
'LBL_SCHEDULING_FORM_TITLE' => 'Resource List',
|
|
'LBL_NONE' => 'None',
|
|
|
|
'LBL_AM_PROJECTTEMPLATES_PROJECT_1_FROM_PROJECT_TITLE' => 'Project Templates: Project from Project Title',
|
|
|
|
|
|
);
|