@things-factory/worklist 6.1.55 → 6.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/components/activity-approval-ribon.ts +165 -0
- package/client/components/activity-instance-ribon.ts +19 -93
- package/client/components/activity-thread-ribon.ts +160 -0
- package/client/pages/activity/activity-page.ts +2 -0
- package/client/pages/activity-approval/activity-approval-page.ts +32 -3
- package/client/pages/activity-instance/activity-instance-start-page.ts +4 -2
- package/client/pages/activity-instance/activity-instance-view.ts +17 -10
- package/client/pages/activity-thread/activity-thread-page.ts +14 -7
- package/client/pages/activity-thread/activity-thread-view-page.ts +2 -0
- package/client/templates/activity-approval-context-template.ts +121 -23
- package/client/templates/activity-instance-context-template.ts +116 -115
- package/client/templates/activity-thread-context-template.ts +117 -18
- package/dist-client/components/activity-approval-ribon.d.ts +13 -0
- package/dist-client/components/activity-approval-ribon.js +166 -0
- package/dist-client/components/activity-approval-ribon.js.map +1 -0
- package/dist-client/components/activity-instance-ribon.d.ts +1 -0
- package/dist-client/components/activity-instance-ribon.js +19 -80
- package/dist-client/components/activity-instance-ribon.js.map +1 -1
- package/dist-client/components/activity-thread-ribon.d.ts +13 -0
- package/dist-client/components/activity-thread-ribon.js +160 -0
- package/dist-client/components/activity-thread-ribon.js.map +1 -0
- package/dist-client/pages/activity/activity-page.js +2 -2
- package/dist-client/pages/activity/activity-page.js.map +1 -1
- package/dist-client/pages/activity-approval/activity-approval-page.d.ts +5 -4
- package/dist-client/pages/activity-approval/activity-approval-page.js +28 -5
- package/dist-client/pages/activity-approval/activity-approval-page.js.map +1 -1
- package/dist-client/pages/activity-instance/activity-instance-start-page.d.ts +0 -1
- package/dist-client/pages/activity-instance/activity-instance-start-page.js +4 -4
- package/dist-client/pages/activity-instance/activity-instance-start-page.js.map +1 -1
- package/dist-client/pages/activity-instance/activity-instance-view.d.ts +1 -1
- package/dist-client/pages/activity-instance/activity-instance-view.js +17 -10
- package/dist-client/pages/activity-instance/activity-instance-view.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-page.d.ts +4 -4
- package/dist-client/pages/activity-thread/activity-thread-page.js +13 -9
- package/dist-client/pages/activity-thread/activity-thread-page.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-view-page.js +2 -2
- package/dist-client/pages/activity-thread/activity-thread-view-page.js.map +1 -1
- package/dist-client/route.d.ts +1 -1
- package/dist-client/templates/activity-approval-context-template.js +124 -23
- package/dist-client/templates/activity-approval-context-template.js.map +1 -1
- package/dist-client/templates/activity-instance-context-template.js +116 -102
- package/dist-client/templates/activity-instance-context-template.js.map +1 -1
- package/dist-client/templates/activity-thread-context-template.js +120 -18
- package/dist-client/templates/activity-thread-context-template.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/activity-approval/activity-approval-mutation.js +12 -0
- package/dist-server/service/activity-approval/activity-approval-mutation.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/server/service/activity-approval/activity-approval-mutation.ts +19 -1
- package/translations/en.json +3 -0
- package/translations/ja.json +3 -0
- package/translations/ko.json +3 -0
- package/translations/ms.json +136 -133
- package/translations/zh.json +133 -130
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/worklist",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.57",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"@things-factory/auth-base": "^6.1.48",
|
|
34
34
|
"@things-factory/board-service": "^6.1.55",
|
|
35
35
|
"@things-factory/context-ui": "^6.1.48",
|
|
36
|
-
"@things-factory/organization": "^6.1.
|
|
36
|
+
"@things-factory/organization": "^6.1.57",
|
|
37
37
|
"@things-factory/scheduler-client": "^6.1.48",
|
|
38
38
|
"@things-factory/shell": "^6.1.48",
|
|
39
39
|
"moment-timezone": "^0.5.40"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "1e7203fb2b8504736774d28db9c817693c96cf74"
|
|
42
42
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resolver, Mutation, Arg, Ctx, Directive } from 'type-graphql'
|
|
2
2
|
|
|
3
|
-
import { ActivityApproval
|
|
3
|
+
import { ActivityApproval } from './activity-approval'
|
|
4
4
|
import { reject } from '../../controllers/activity-approval/reject'
|
|
5
5
|
import { approve } from '../../controllers/activity-approval/approve'
|
|
6
6
|
import { delegate } from '../../controllers/activity-approval/delegate'
|
|
@@ -47,6 +47,12 @@ export class ActivityApprovalMutation {
|
|
|
47
47
|
@Arg('comment', { nullable: true }) comment: string,
|
|
48
48
|
@Ctx() context: ResolverContext
|
|
49
49
|
): Promise<ActivityApproval> {
|
|
50
|
+
const { t } = context
|
|
51
|
+
|
|
52
|
+
if (!comment) {
|
|
53
|
+
throw t('text.enter a comment')
|
|
54
|
+
}
|
|
55
|
+
|
|
50
56
|
return await approve({ id, comment }, context)
|
|
51
57
|
}
|
|
52
58
|
|
|
@@ -57,6 +63,12 @@ export class ActivityApprovalMutation {
|
|
|
57
63
|
@Arg('comment', { nullable: true }) comment: string,
|
|
58
64
|
@Ctx() context: ResolverContext
|
|
59
65
|
): Promise<ActivityApproval> {
|
|
66
|
+
const { t } = context
|
|
67
|
+
|
|
68
|
+
if (!comment) {
|
|
69
|
+
throw t('text.enter a comment')
|
|
70
|
+
}
|
|
71
|
+
|
|
60
72
|
return await reject({ id, comment }, context)
|
|
61
73
|
}
|
|
62
74
|
|
|
@@ -68,6 +80,12 @@ export class ActivityApprovalMutation {
|
|
|
68
80
|
@Arg('comment', { nullable: true }) comment: string,
|
|
69
81
|
@Ctx() context: ResolverContext
|
|
70
82
|
): Promise<ActivityApproval> {
|
|
83
|
+
const { t } = context
|
|
84
|
+
|
|
85
|
+
if (!comment) {
|
|
86
|
+
throw t('text.enter a comment')
|
|
87
|
+
}
|
|
88
|
+
|
|
71
89
|
return await delegate({ id, to, comment }, context)
|
|
72
90
|
}
|
|
73
91
|
}
|
package/translations/en.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"button.submit": "submit",
|
|
15
15
|
"field.activity-type": "activity type",
|
|
16
16
|
"field.approval-line": "approval line",
|
|
17
|
+
"field.assigned-at": "assigned at",
|
|
17
18
|
"field.assignee": "assignee",
|
|
18
19
|
"field.assignees": "assignees",
|
|
19
20
|
"field.assignee-role": "assignee role",
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
"field.inout": "inout",
|
|
25
26
|
"field.input-key": "input-key",
|
|
26
27
|
"field.issuer": "issuer",
|
|
28
|
+
"field.approval-order": "order",
|
|
27
29
|
"field.round": "round",
|
|
28
30
|
"field.judgment": "judgment",
|
|
29
31
|
"field.comment": "comment",
|
|
@@ -98,6 +100,7 @@
|
|
|
98
100
|
"text.installable-activities": "installable activities",
|
|
99
101
|
"text.pick": "pick",
|
|
100
102
|
"text.save": "save",
|
|
103
|
+
"text.enter a comment": "please, enter a comment",
|
|
101
104
|
"text.task_is_finished_successfully": "task is finished successfully.",
|
|
102
105
|
"text.task_is_saved_successfully": "task is saved successfully",
|
|
103
106
|
"text.task_is_started_successfully": "task is started successfully.",
|
package/translations/ja.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"button.submit": "提出",
|
|
15
15
|
"field.activity-type": "業務タイプ",
|
|
16
16
|
"field.approval-line": "決裁ライン",
|
|
17
|
+
"field.assigned-at": "譲受日",
|
|
17
18
|
"field.assignee": "譲受人",
|
|
18
19
|
"field.assignees": "譲受人",
|
|
19
20
|
"field.assignee-role": "譲受ロール",
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
"field.inout": "入出力",
|
|
25
26
|
"field.input-key": "入力キー",
|
|
26
27
|
"field.issuer": "発行者",
|
|
28
|
+
"field.approval-order": "承認順序",
|
|
27
29
|
"field.round": "次数",
|
|
28
30
|
"field.judgment": "判定",
|
|
29
31
|
"field.comment": "コメント",
|
|
@@ -98,6 +100,7 @@
|
|
|
98
100
|
"text.installable-activities": "設置可能業務",
|
|
99
101
|
"text.pick": "選択",
|
|
100
102
|
"text.save": "保存",
|
|
103
|
+
"text.enter a comment": "コメントを残してください。",
|
|
101
104
|
"text.task_is_finished_successfully": "業務が成功的に完了しました.",
|
|
102
105
|
"text.task_is_saved_successfully": "業務が正常に保存されました.",
|
|
103
106
|
"text.task_is_started_successfully": "業務が正常に開始されました.",
|
package/translations/ko.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"button.submit": "제출",
|
|
15
15
|
"field.activity-type": "업무 타입",
|
|
16
16
|
"field.approval-line": "결재선",
|
|
17
|
+
"field.assigned-at": "할당 시간",
|
|
17
18
|
"field.assignee": "피할당자",
|
|
18
19
|
"field.assignees": "피할당자",
|
|
19
20
|
"field.assignee-role": "피할당 역할",
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
"field.inout": "입출력",
|
|
25
26
|
"field.input-key": "입력키",
|
|
26
27
|
"field.issuer": "발급자",
|
|
28
|
+
"field.approval-order": "결재순번",
|
|
27
29
|
"field.round": "차수",
|
|
28
30
|
"field.judgment": "판정",
|
|
29
31
|
"field.comment": "코멘트",
|
|
@@ -98,6 +100,7 @@
|
|
|
98
100
|
"text.installable-activities": "설치 가능 업무",
|
|
99
101
|
"text.pick": "선택",
|
|
100
102
|
"text.save": "저장",
|
|
103
|
+
"text.enter a comment": "코멘트를 남겨주세요.",
|
|
101
104
|
"text.task_is_finished_successfully": "업무가 성공적으로 완료되었습니다.",
|
|
102
105
|
"text.task_is_saved_successfully": "업무가 성공적으로 저장되었습니다.",
|
|
103
106
|
"text.task_is_started_successfully": "업무가 성공적으로 시작되었습니다.",
|
package/translations/ms.json
CHANGED
|
@@ -1,137 +1,140 @@
|
|
|
1
1
|
{
|
|
2
|
-
"button.abort": "
|
|
3
|
-
"button.approve": "
|
|
4
|
-
"button.assign": "
|
|
5
|
-
"button.buy": "
|
|
6
|
-
"button.delegate": "
|
|
7
|
-
"button.draft": "
|
|
8
|
-
"button.finish": "
|
|
9
|
-
"button.issue": "
|
|
10
|
-
"button.pick": "
|
|
11
|
-
"button.post": "
|
|
12
|
-
"button.restart": "
|
|
13
|
-
"button.start": "
|
|
14
|
-
"button.submit": "
|
|
15
|
-
"field.activity-type": "
|
|
16
|
-
"field.approval-line": "
|
|
17
|
-
"field.
|
|
18
|
-
"field.
|
|
19
|
-
"field.
|
|
20
|
-
"field.
|
|
21
|
-
"field.
|
|
22
|
-
"field.due-
|
|
23
|
-
"field.
|
|
24
|
-
"field.
|
|
25
|
-
"field.
|
|
26
|
-
"field.
|
|
27
|
-
"field.
|
|
28
|
-
"field.
|
|
29
|
-
"field.
|
|
30
|
-
"field.
|
|
31
|
-
"field.
|
|
32
|
-
"field.
|
|
33
|
-
"field.
|
|
34
|
-
"field.
|
|
35
|
-
"field.
|
|
36
|
-
"field.
|
|
37
|
-
"field.
|
|
38
|
-
"field.
|
|
39
|
-
"field.
|
|
40
|
-
"field.
|
|
41
|
-
"field.
|
|
2
|
+
"button.abort": "batal",
|
|
3
|
+
"button.approve": "lulus",
|
|
4
|
+
"button.assign": "assign",
|
|
5
|
+
"button.buy": "beli",
|
|
6
|
+
"button.delegate": "delegasi",
|
|
7
|
+
"button.draft": "draf",
|
|
8
|
+
"button.finish": "selesai",
|
|
9
|
+
"button.issue": "isu",
|
|
10
|
+
"button.pick": "pilih",
|
|
11
|
+
"button.post": "pos",
|
|
12
|
+
"button.restart": "mulai semula",
|
|
13
|
+
"button.start": "mulakan",
|
|
14
|
+
"button.submit": "hantar",
|
|
15
|
+
"field.activity-type": "jenis aktiviti",
|
|
16
|
+
"field.approval-line": "garisan kelulusan",
|
|
17
|
+
"field.assigned-at": "diberi pada",
|
|
18
|
+
"field.assignee": "pemberi tugasan",
|
|
19
|
+
"field.assignees": "penerima tugasan",
|
|
20
|
+
"field.assignee-role": "peranan pemberi tugasan",
|
|
21
|
+
"field.cycle-time": "CT(detik)",
|
|
22
|
+
"field.due-at": "due pada",
|
|
23
|
+
"field.due-in": "due in",
|
|
24
|
+
"field.hidden": "tersembunyi",
|
|
25
|
+
"field.inout": "masuk/keluar",
|
|
26
|
+
"field.input-key": "kunci input",
|
|
27
|
+
"field.issuer": "penerbit",
|
|
28
|
+
"field.approval-order": "susunan kelulusan",
|
|
29
|
+
"field.round": "pusingan",
|
|
30
|
+
"field.judgment": "penghakiman",
|
|
31
|
+
"field.comment": "komen",
|
|
32
|
+
"field.issued-at": "dikeluarkan pada",
|
|
33
|
+
"field.posted-at": "di pos pada",
|
|
34
|
+
"field.issuer-role": "peranan penerbit",
|
|
35
|
+
"field.lead-time": "LT(detik)",
|
|
36
|
+
"field.mandatory": "wajib",
|
|
37
|
+
"field.multiple": "pelbagai",
|
|
38
|
+
"field.options": "pilihan",
|
|
39
|
+
"field.priority": "keutamaan",
|
|
40
|
+
"field.provider": "penyedia",
|
|
41
|
+
"field.quantifier": "pemboleh ubah",
|
|
42
|
+
"field.report-type": "jenis laporan",
|
|
43
|
+
"field.report-source": "sumber laporan",
|
|
42
44
|
"field.schedule": "jadual",
|
|
43
|
-
"field.search-keys": "
|
|
44
|
-
"field.release": "
|
|
45
|
-
"field.spec": "
|
|
46
|
-
"field.standard-time": "ST(
|
|
47
|
-
"field.startable": "
|
|
48
|
-
"field.starting-type": "
|
|
49
|
-
"field.started-at": "
|
|
50
|
-
"field.status": "
|
|
51
|
-
"field.supervisory-role": "
|
|
52
|
-
"field.tact-time": "TT(
|
|
53
|
-
"field.tag": "
|
|
54
|
-
"field.t-key": "
|
|
55
|
-
"field.created-at": "
|
|
56
|
-
"field.updated-at": "
|
|
57
|
-
"field.terminated-at": "
|
|
58
|
-
"field.ui-type": "UI
|
|
59
|
-
"field.ui-source": "UI
|
|
60
|
-
"field.unit": "
|
|
61
|
-
"field.view-type": "
|
|
62
|
-
"field.view-source": "
|
|
63
|
-
"label.activity-instance": "
|
|
64
|
-
"label.activity-starting-type-issue": "
|
|
65
|
-
"label.activity-starting-type-post": "
|
|
66
|
-
"label.activity-state-draft": "
|
|
67
|
-
"label.activity-state-released": "
|
|
68
|
-
"label.activity-state-deprecated": "
|
|
69
|
-
"label.activity-state-posted": "
|
|
70
|
-
"label.activity-state-pending-assignment": "
|
|
71
|
-
"label.activity-state-assigned": "
|
|
72
|
-
"label.activity-state-started": "
|
|
73
|
-
"label.activity-state-delegated": "
|
|
74
|
-
"label.activity-state-submitted": "
|
|
75
|
-
"label.activity-state-escalated": "
|
|
76
|
-
"label.activity-state-pending": "
|
|
77
|
-
"label.activity-state-approved": "
|
|
78
|
-
"label.activity-state-rejected": "
|
|
79
|
-
"label.activity-state-ended": "
|
|
80
|
-
"label.activity-state-aborted": "
|
|
81
|
-
"label.days": "
|
|
82
|
-
"label.filter-released": "
|
|
83
|
-
"label.filter-draft": "
|
|
84
|
-
"label.filter-deprecated": "
|
|
85
|
-
"label.filter-aborted": "
|
|
86
|
-
"label.filter-rejected": "
|
|
87
|
-
"label.filter-important": "
|
|
45
|
+
"field.search-keys": "kunci carian",
|
|
46
|
+
"field.release": "lepas",
|
|
47
|
+
"field.spec": "spesifikasi",
|
|
48
|
+
"field.standard-time": "ST(detik)",
|
|
49
|
+
"field.startable": "boleh bermula",
|
|
50
|
+
"field.starting-type": "jenis mula",
|
|
51
|
+
"field.started-at": "bermula pada",
|
|
52
|
+
"field.status": "status",
|
|
53
|
+
"field.supervisory-role": "peranan penyelia",
|
|
54
|
+
"field.tact-time": "TT(detik)",
|
|
55
|
+
"field.tag": "nama tag",
|
|
56
|
+
"field.t-key": "kunci terjemahan",
|
|
57
|
+
"field.created-at": "dicipta pada",
|
|
58
|
+
"field.updated-at": "dikemaskini pada",
|
|
59
|
+
"field.terminated-at": "berakhir pada",
|
|
60
|
+
"field.ui-type": "jenis UI",
|
|
61
|
+
"field.ui-source": "sumber UI",
|
|
62
|
+
"field.unit": "unit",
|
|
63
|
+
"field.view-type": "jenis pandangan",
|
|
64
|
+
"field.view-source": "sumber pandangan",
|
|
65
|
+
"label.activity-instance": "pembabitan aktiviti",
|
|
66
|
+
"label.activity-starting-type-issue": "isu",
|
|
67
|
+
"label.activity-starting-type-post": "pos",
|
|
68
|
+
"label.activity-state-draft": "draf",
|
|
69
|
+
"label.activity-state-released": "dikeluarkan",
|
|
70
|
+
"label.activity-state-deprecated": "digugur",
|
|
71
|
+
"label.activity-state-posted": "dipos",
|
|
72
|
+
"label.activity-state-pending-assignment": "tungguan tugasan",
|
|
73
|
+
"label.activity-state-assigned": "diberi tugasan",
|
|
74
|
+
"label.activity-state-started": "bermula",
|
|
75
|
+
"label.activity-state-delegated": "delegasi",
|
|
76
|
+
"label.activity-state-submitted": "hantar",
|
|
77
|
+
"label.activity-state-escalated": "eskalkasi",
|
|
78
|
+
"label.activity-state-pending": "tungguan",
|
|
79
|
+
"label.activity-state-approved": "diluluskan",
|
|
80
|
+
"label.activity-state-rejected": "ditolak",
|
|
81
|
+
"label.activity-state-ended": "berakhir",
|
|
82
|
+
"label.activity-state-aborted": "dibatalkan",
|
|
83
|
+
"label.days": "hari",
|
|
84
|
+
"label.filter-released": "dikeluarkan",
|
|
85
|
+
"label.filter-draft": "draf",
|
|
86
|
+
"label.filter-deprecated": "digugur",
|
|
87
|
+
"label.filter-aborted": "dibatalkan",
|
|
88
|
+
"label.filter-rejected": "ditolak",
|
|
89
|
+
"label.filter-important": "penting",
|
|
88
90
|
"label.filter-due": "due",
|
|
89
|
-
"label.filter-recent": "
|
|
90
|
-
"label.filter-proceeding": "
|
|
91
|
-
"label.filter-resubmitted": "
|
|
92
|
-
"label.filter-pending-approval": "
|
|
93
|
-
"label.hours": "
|
|
94
|
-
"label.minutes": "
|
|
95
|
-
"label.seconds": "
|
|
96
|
-
"text.assign": "
|
|
97
|
-
"text.draft": "
|
|
98
|
-
"text.installable-activities": "
|
|
99
|
-
"text.pick": "
|
|
100
|
-
"text.save": "
|
|
101
|
-
"text.
|
|
102
|
-
"text.
|
|
103
|
-
"text.
|
|
104
|
-
"text.
|
|
105
|
-
"text.
|
|
106
|
-
"text.
|
|
107
|
-
"
|
|
108
|
-
"title.activity
|
|
109
|
-
"title.activity
|
|
110
|
-
"title.activity
|
|
111
|
-
"title.activity
|
|
112
|
-
"title.activity
|
|
113
|
-
"title.activity instance
|
|
114
|
-
"title.activity instance
|
|
115
|
-
"title.activity
|
|
116
|
-
"title.activity
|
|
117
|
-
"title.activity
|
|
118
|
-
"title.activity
|
|
119
|
-
"title.activity
|
|
120
|
-
"title.activity starter
|
|
121
|
-
"title.activity
|
|
122
|
-
"title.activity
|
|
123
|
-
"title.activity
|
|
124
|
-
"title.activity template list": "
|
|
125
|
-
"title.
|
|
126
|
-
"title.approval
|
|
127
|
-
"title.
|
|
128
|
-
"title.
|
|
129
|
-
"title.done list
|
|
130
|
-
"title.
|
|
131
|
-
"title.
|
|
132
|
-
"title.
|
|
133
|
-
"title.
|
|
134
|
-
"title.
|
|
135
|
-
"title.
|
|
136
|
-
"title.
|
|
91
|
+
"label.filter-recent": "baru-baru ini",
|
|
92
|
+
"label.filter-proceeding": "proses",
|
|
93
|
+
"label.filter-resubmitted": "hantar semula",
|
|
94
|
+
"label.filter-pending-approval": "tungguan kelulusan",
|
|
95
|
+
"label.hours": "jam",
|
|
96
|
+
"label.minutes": "minit",
|
|
97
|
+
"label.seconds": "saat",
|
|
98
|
+
"text.assign": "berikan",
|
|
99
|
+
"text.draft": "draf",
|
|
100
|
+
"text.installable-activities": "aktiviti yang boleh dipasang",
|
|
101
|
+
"text.pick": "pilih",
|
|
102
|
+
"text.save": "simpan",
|
|
103
|
+
"text.enter a comment": "sila masukkan komen",
|
|
104
|
+
"text.task_is_finished_successfully": "tugas berjaya selesai.",
|
|
105
|
+
"text.task_is_saved_successfully": "tugas berjaya disimpan",
|
|
106
|
+
"text.task_is_started_successfully": "tugas berjaya bermula.",
|
|
107
|
+
"text.task_is_approved_successfully": "tugas berjaya diluluskan",
|
|
108
|
+
"text.task_is_rejected_successfully": "tugas berjaya ditolak",
|
|
109
|
+
"text.task_is_restarted_successfully": "tugas berjaya dimulakan semula",
|
|
110
|
+
"title.activity application": "permohonan aktiviti",
|
|
111
|
+
"title.activity bank": "bank aktiviti",
|
|
112
|
+
"title.activity shopping": "beli-belah aktiviti",
|
|
113
|
+
"title.activity list": "senarai aktiviti",
|
|
114
|
+
"title.activity model item list": "senarai item model aktiviti",
|
|
115
|
+
"title.activity instance list": "senarai pembabitan aktiviti",
|
|
116
|
+
"title.activity instance search": "cari pembabitan aktiviti",
|
|
117
|
+
"title.activity instance view": "pandangan pembabitan aktiviti",
|
|
118
|
+
"title.activity intro": "pengenalan aktiviti",
|
|
119
|
+
"title.activity preview": "pra-lihat aktiviti",
|
|
120
|
+
"title.activity reporter list": "senarai pemberi laporan aktiviti",
|
|
121
|
+
"title.activity schedule (un)register": "(batal)daftar jadual aktiviti",
|
|
122
|
+
"title.activity starter": "penggerak aktiviti",
|
|
123
|
+
"title.activity starter list": "senarai penggerak aktiviti",
|
|
124
|
+
"title.activity store": "kedai aktiviti",
|
|
125
|
+
"title.activity summary": "ringkasan aktiviti",
|
|
126
|
+
"title.activity template model item list": "senarai item model templat aktiviti",
|
|
127
|
+
"title.activity template list": "senarai templat aktiviti",
|
|
128
|
+
"title.approval done list": "senarai kelulusan selesai",
|
|
129
|
+
"title.approval pending list": "senarai kelulusan yang tertunggu",
|
|
130
|
+
"title.assigned list": "senarai tugasan",
|
|
131
|
+
"title.done list": "senarai selesai",
|
|
132
|
+
"title.done list calendar": "kalendar senarai selesai",
|
|
133
|
+
"title.draft list": "senarai draf",
|
|
134
|
+
"title.edit duration": "edit jangka masa",
|
|
135
|
+
"title.installable activity list": "senarai aktiviti yang boleh dipasang",
|
|
136
|
+
"title.open this activity page": "buka laman aktiviti ini",
|
|
137
|
+
"title.pick activity": "pilih aktiviti ini untuk ditangani",
|
|
138
|
+
"title.todo list": "senarai todo",
|
|
139
|
+
"title.view page": "pandangan laman"
|
|
137
140
|
}
|