-
Notifications
You must be signed in to change notification settings - Fork 5
/
ProjectTask.php
45 lines (44 loc) · 1.79 KB
/
ProjectTask.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
************************************************************************************/
$languageStrings = array(
'SINGLE_ProjectTask' => 'Project Task' ,
'LBL_ADD_RECORD' => 'Add Project Task' ,
'LBL_RECORDS_LIST' => 'Project Task List' ,
'LBL_PROJECT_TASK_INFORMATION' => 'Project Task Details' ,
'LBL_PROJECTS_LIST' => 'Projects List' , // TODO: Review
'LBL_TASKS_LIST' => 'Tasks List' , // TODO: Review
//Field Labels
'Project Task Name' => 'Project Task Name',
'Project Task No' => 'Project Task No',
'Project Task Number' => 'Project Task Number',
'Status' => 'Status',
'Priority' => 'Priority',
'Progress' => 'Progress',
'Type'=>'Type',
'Worked Hours'=>'Worked Hours',
'Start Date'=>'Start Date',
'End Date'=>'End Date',
'Related To' => 'Related To',
'administrative' => 'administrative',
'operative' => 'operative',
'other' => 'other',
'low' => 'low',
'normal' => 'normal',
'high' => 'high',
'Created Time' => 'Created Time',
'Modified Time' => 'Modified Time',
'description' => 'Description',
'Assigned To' => 'Assigned To',
'Open' => 'Open',
'In Progress' => 'In Progress',
'Completed' => 'Completed',
'Deferred' => 'Deferred',
'Canceled ' => 'Canceled',
);