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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
| Edo.apply(Edo.controls.DatePicker.prototype, {
| weeks: ['Su','Mo','Tu','We','Th','Fr','Sa'],
| yearFormat: 'Y',
| monthFormat: 'm',
| todayText: 'Today',
| clearText: 'Clear'
| });
| Edo.apply(Edo.MessageBox, {
| buttonText : {
| ok : "Ok",
| cancel : "Cancel",
| yes : "Yes",
| no : "No"
| },
| saveText: 'Saving...'
| });
|
| if(Edo.data.DataGantt){
| Edo.apply(Edo.data.DataGantt, {
| PredecessorLinkType: [
| {ID: 0, Name: 'FF', EName: 'FF', Date: ['Finish', 'Finish']},
| {ID: 1, Name: 'FS', EName: 'FS', Date: ['Finish', 'Start']},
| {ID: 2, Name: 'SF', EName: 'SF', Date: ['Start', 'Finish']},
| {ID: 3, Name: 'SS', EName: 'SS', Date: ['Start', 'Start']}
| ],
| PredecessorLinkTypeMap: {
| FF: 0,
| FS: 1,
| SF: 2,
| SS: 3
| },
| dontUpgrade: 'The selected task is already the highest-level framework can not be upgraded!',
| dontDowngrade: 'Can not downgrade!'
| });
| }
| if(Edo.lists.Gantt){
| Edo.apply(Edo.lists.Gantt, {
| yearText: '',
| monthText: '',
| weekText: '',
| dayText: '',
| hourText: '',
|
| scrollDateFormat: 'Y-m-d l',
|
| No: 'ID:',
| name: 'Name:',
|
| summaryText: 'Summay',
| milestoneText: 'Milestone',
| criticalText: 'Critical',
| taskText: 'Name',
| baselineText: 'Baseline',
| percentCompleteText: 'PercentComplete',
|
| startText: 'StartDate',
| finishText: 'FinishDate',
| tipDateFormat: 'Y-m-d H',//i分
|
| linktaskText: 'LinkType',
| delaytimeText: 'LagTime',
| fromText: 'From',
| toText: 'To',
|
| weekFormat: 'Y-m-d l',
| monthFormat: 'Y-m',
| quarterFormat: 'Y-m Q',
| yearFormat: 'Y',
|
| quarterformat2: '{0} {1}',
| monthFormat2: 'Y - m'
| });
| Edo.apply(Edo.lists.Gantt.prototype, {
| weeks: ['S','M','T','W','T','F','S']
| });
| }
|
| if(GanttMenu){
| Edo.apply(GanttMenu, {
| gotoTask: 'Goto Task',
| upgradeTaskText: 'Upgrade',
| downgradeTaskText: 'Downgrade',
| addTask: 'AddTask',
| editTask: 'ModifyTask',
| deleteTask: 'RemoveTask',
|
| trackText: 'Track',
| progressLine: 'ProgressLine',
| createbaseline: 'Set Baseline',
| clearbaseline: 'Clear Baseline',
| viewAreaText: 'View Region',
| showTreeAndGantt: 'Tree and Bar',
| showTreeOnly: 'Only Tree',
| showGanttOnly: 'Only Bar',
|
| defaultDateText: 'ViewDate : Week/Day',
| dateViewText1: 'Year/Quarter',
| dateViewText2: 'Year/Month',
| dateViewText3: 'Year/Week',
| dateViewText4: 'Year/Day',
| dateViewText5: 'Quarter/Month',
| dateViewText6: 'Quarter/Week',
| dateViewText7: 'Quarter/Day',
| dateViewText8: 'Month/Week',
| dateViewText9: 'Month/Day',
| dateViewText10: 'Week/Day',
|
| viewText: 'ViewMode',
| ganttView: 'Gantt',
| trackView: 'Track',
|
| selectTask: 'Please select a task'
| });
| }
|
|