@things-factory/worklist 10.1.5 → 10.1.7
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/dist-client/components/activity-approval-ribon.js +17 -2
- package/dist-client/components/activity-approval-ribon.js.map +1 -1
- package/dist-client/components/activity-instance-preview.js +5 -4
- package/dist-client/components/activity-instance-preview.js.map +1 -1
- package/dist-client/components/activity-starter-form.js +14 -10
- package/dist-client/components/activity-starter-form.js.map +1 -1
- package/dist-client/components/activity-thread-timeline.d.ts +2 -2
- package/dist-client/components/decision-slots.d.ts +118 -0
- package/dist-client/components/decision-slots.js +125 -0
- package/dist-client/components/decision-slots.js.map +1 -0
- package/dist-client/components/mutation-outcome.d.ts +57 -0
- package/dist-client/components/mutation-outcome.js +78 -0
- package/dist-client/components/mutation-outcome.js.map +1 -0
- package/dist-client/components/say-outcome.d.ts +25 -0
- package/dist-client/components/say-outcome.js +51 -0
- package/dist-client/components/say-outcome.js.map +1 -0
- package/dist-client/pages/activity/activity-list-page.js +28 -12
- package/dist-client/pages/activity/activity-list-page.js.map +1 -1
- package/dist-client/pages/activity/activity-model-item-list.js +4 -3
- package/dist-client/pages/activity/activity-model-item-list.js.map +1 -1
- package/dist-client/pages/activity/activity-page.d.ts +2 -2
- package/dist-client/pages/activity/activity-page.js +25 -21
- package/dist-client/pages/activity/activity-page.js.map +1 -1
- package/dist-client/pages/activity-approval/activity-approval-importer.js +4 -3
- package/dist-client/pages/activity-approval/activity-approval-importer.js.map +1 -1
- package/dist-client/pages/activity-approval/activity-approval-list-page.js +8 -9
- package/dist-client/pages/activity-approval/activity-approval-list-page.js.map +1 -1
- package/dist-client/pages/activity-approval/activity-approval-page.d.ts +75 -1
- package/dist-client/pages/activity-approval/activity-approval-page.js +487 -57
- package/dist-client/pages/activity-approval/activity-approval-page.js.map +1 -1
- package/dist-client/pages/activity-catalog/activity-catalog-page.d.ts +11 -0
- package/dist-client/pages/activity-catalog/activity-catalog-page.js +48 -1
- package/dist-client/pages/activity-catalog/activity-catalog-page.js.map +1 -1
- package/dist-client/pages/activity-instance/activity-instance-start-page.js +24 -18
- package/dist-client/pages/activity-instance/activity-instance-start-page.js.map +1 -1
- package/dist-client/pages/activity-instance/activity-instance-view.js +1 -0
- package/dist-client/pages/activity-instance/activity-instance-view.js.map +1 -1
- package/dist-client/pages/activity-stats/activity-stats-importer.js +4 -3
- package/dist-client/pages/activity-stats/activity-stats-importer.js.map +1 -1
- package/dist-client/pages/activity-stats/activity-stats-list-page.js +8 -9
- package/dist-client/pages/activity-stats/activity-stats-list-page.js.map +1 -1
- package/dist-client/pages/activity-template/activity-template-importer.js +4 -3
- package/dist-client/pages/activity-template/activity-template-importer.js.map +1 -1
- package/dist-client/pages/activity-template/activity-template-list-page.js +8 -9
- package/dist-client/pages/activity-template/activity-template-list-page.js.map +1 -1
- package/dist-client/pages/activity-template/activity-template-model-item-list.js +4 -3
- package/dist-client/pages/activity-template/activity-template-model-item-list.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-importer.js +4 -3
- package/dist-client/pages/activity-thread/activity-thread-importer.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-list-page.js +8 -9
- package/dist-client/pages/activity-thread/activity-thread-list-page.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-page.d.ts +1 -1
- package/dist-client/pages/activity-thread/activity-thread-page.js +22 -20
- package/dist-client/pages/activity-thread/activity-thread-page.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-view-page.d.ts +1 -1
- package/dist-client/pages/activity-thread/activity-thread-view-page.js +1 -0
- package/dist-client/pages/activity-thread/activity-thread-view-page.js.map +1 -1
- package/dist-client/pages/activity-thread/activity-thread-view.d.ts +1 -1
- package/dist-client/pages/installable-activity/installable-activity-list-page.d.ts +27 -0
- package/dist-client/pages/installable-activity/installable-activity-list-page.js +70 -11
- package/dist-client/pages/installable-activity/installable-activity-list-page.js.map +1 -1
- package/dist-client/pages/todo/draft-list-page.js +1 -0
- package/dist-client/pages/todo/draft-list-page.js.map +1 -1
- package/dist-client/route.d.ts +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/controllers/activity-approval/approval-line.d.ts +32 -0
- package/dist-server/controllers/activity-approval/approval-line.js +35 -0
- package/dist-server/controllers/activity-approval/approval-line.js.map +1 -1
- package/dist-server/controllers/activity-approval/approve.js +17 -0
- package/dist-server/controllers/activity-approval/approve.js.map +1 -1
- package/dist-server/controllers/activity-approval/reject.js +21 -1
- package/dist-server/controllers/activity-approval/reject.js.map +1 -1
- package/dist-server/controllers/activity-installation/activity-installation-controller.js +5 -9
- package/dist-server/controllers/activity-installation/activity-installation-controller.js.map +1 -1
- package/dist-server/controllers/activity-installation/installable-to-activity.d.ts +62 -0
- package/dist-server/controllers/activity-installation/installable-to-activity.js +53 -0
- package/dist-server/controllers/activity-installation/installable-to-activity.js.map +1 -0
- package/dist-server/controllers/activity-installation/registry-conflict.d.ts +32 -0
- package/dist-server/controllers/activity-installation/registry-conflict.js +21 -0
- package/dist-server/controllers/activity-installation/registry-conflict.js.map +1 -0
- package/dist-server/controllers/activity-instance/draft.js +3 -0
- package/dist-server/controllers/activity-instance/draft.js.map +1 -1
- package/dist-server/controllers/activity-instance/entitlement.d.ts +25 -0
- package/dist-server/controllers/activity-instance/entitlement.js +108 -0
- package/dist-server/controllers/activity-instance/entitlement.js.map +1 -0
- package/dist-server/controllers/activity-instance/issue.js +10 -0
- package/dist-server/controllers/activity-instance/issue.js.map +1 -1
- package/dist-server/controllers/activity-instance/pick.js +8 -0
- package/dist-server/controllers/activity-instance/pick.js.map +1 -1
- package/dist-server/service/activity/activity-decision-key-item-type.d.ts +160 -0
- package/dist-server/service/activity/activity-decision-key-item-type.js +176 -0
- package/dist-server/service/activity/activity-decision-key-item-type.js.map +1 -0
- package/dist-server/service/activity/activity-type.d.ts +3 -0
- package/dist-server/service/activity/activity-type.js +8 -0
- package/dist-server/service/activity/activity-type.js.map +1 -1
- package/dist-server/service/activity/activity.d.ts +30 -0
- package/dist-server/service/activity/activity.js +14 -0
- package/dist-server/service/activity/activity.js.map +1 -1
- package/dist-server/service/activity/decision-key-declaration.d.ts +33 -0
- package/dist-server/service/activity/decision-key-declaration.js +67 -0
- package/dist-server/service/activity/decision-key-declaration.js.map +1 -0
- package/dist-server/service/activity/{credential-guard-subscriber.d.ts → declaration-guard-subscriber.d.ts} +6 -1
- package/dist-server/service/activity/declaration-guard-subscriber.js +46 -0
- package/dist-server/service/activity/declaration-guard-subscriber.js.map +1 -0
- package/dist-server/service/activity/index.d.ts +2 -2
- package/dist-server/service/activity/index.js +2 -2
- package/dist-server/service/activity/index.js.map +1 -1
- package/dist-server/service/activity/search-key-declaration.d.ts +38 -0
- package/dist-server/service/activity/search-key-declaration.js +49 -0
- package/dist-server/service/activity/search-key-declaration.js.map +1 -0
- package/dist-server/service/activity-instance/activity-instance-mutation.js +20 -9
- package/dist-server/service/activity-instance/activity-instance-mutation.js.map +1 -1
- package/dist-server/service/activity-instance/activity-instance-query.js +25 -2
- package/dist-server/service/activity-instance/activity-instance-query.js.map +1 -1
- package/dist-server/service/activity-instance/activity-instance-type.js.map +1 -1
- package/dist-server/service/index.d.ts +2 -2
- package/dist-server/service/installable-activity/installable-activity-mutation.js +24 -0
- package/dist-server/service/installable-activity/installable-activity-mutation.js.map +1 -1
- package/dist-server/service/installable-activity/installable-activity.d.ts +9 -0
- package/dist-server/service/installable-activity/installable-activity.js +5 -0
- package/dist-server/service/installable-activity/installable-activity.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -11
- package/translations/en.json +33 -6
- package/translations/ja.json +27 -0
- package/translations/ko.json +33 -6
- package/translations/ms.json +27 -0
- package/translations/zh.json +27 -0
- package/dist-server/service/activity/credential-guard-subscriber.js +0 -35
- package/dist-server/service/activity/credential-guard-subscriber.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/worklist",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.7",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"@operato/grist-editor": "^10.0.0",
|
|
35
35
|
"@operato/moment-timezone-es": "^10.0.0",
|
|
36
36
|
"@operato/p13n": "^10.0.0",
|
|
37
|
-
"@things-factory/attachment-base": "^10.1.
|
|
38
|
-
"@things-factory/auth-base": "^10.1.
|
|
39
|
-
"@things-factory/board-service": "^10.1.
|
|
40
|
-
"@things-factory/board-ui": "^10.1.
|
|
41
|
-
"@things-factory/context-ui": "^10.1.
|
|
42
|
-
"@things-factory/organization": "^10.1.
|
|
43
|
-
"@things-factory/personalization": "^10.1.
|
|
44
|
-
"@things-factory/scheduler-client": "^10.1.
|
|
45
|
-
"@things-factory/shell": "^10.1.
|
|
37
|
+
"@things-factory/attachment-base": "^10.1.7",
|
|
38
|
+
"@things-factory/auth-base": "^10.1.7",
|
|
39
|
+
"@things-factory/board-service": "^10.1.7",
|
|
40
|
+
"@things-factory/board-ui": "^10.1.7",
|
|
41
|
+
"@things-factory/context-ui": "^10.1.7",
|
|
42
|
+
"@things-factory/organization": "^10.1.7",
|
|
43
|
+
"@things-factory/personalization": "^10.1.7",
|
|
44
|
+
"@things-factory/scheduler-client": "^10.1.7",
|
|
45
|
+
"@things-factory/shell": "^10.1.7"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "9a036f83f5751f9e4af9180e9a0018f716a4ba27"
|
|
48
48
|
}
|
package/translations/en.json
CHANGED
|
@@ -19,8 +19,11 @@
|
|
|
19
19
|
"button.unschedule-task": "unschedule task",
|
|
20
20
|
"error.activity not found": "this task template ({activity}) cannot be found.",
|
|
21
21
|
"error.activity-approval is already terminated": "this approval task ({activityApproval}) has already been terminated ({actual}).",
|
|
22
|
+
"error.activity-approval is reference only": "you are a reference on this approval. you may leave a comment; approving and rejecting is for the approvers.",
|
|
22
23
|
"error.activity-approval not found": "this approval task ({activityApproval}) cannot be found.",
|
|
23
24
|
"error.activity-approval taken by someone else": "someone else handled this approval first. reload the list to see where it stands.",
|
|
25
|
+
"error.activity-instance belongs to someone else": "{id} is someone else's draft. Only the person who wrote it, or someone who manages activity instances, may edit or issue it.",
|
|
26
|
+
"error.activity-instance is addressed to another role": "{id} is addressed to another role. Someone holding that role picks it up.",
|
|
24
27
|
"error.activity-instance is already issued": "this task ({id}) has already been issued with the {state} status.",
|
|
25
28
|
"error.activity-instance is already terminated": "this task ({id}) has already been terminated with the {state} status.",
|
|
26
29
|
"error.activity-instance not found": "this task ({activityInstance}) cannot be found.",
|
|
@@ -41,6 +44,7 @@
|
|
|
41
44
|
"field.approval-owner": "owner",
|
|
42
45
|
"field.approval-subject": "subject",
|
|
43
46
|
"field.approval-submitted-at": "submitted",
|
|
47
|
+
"field.approval-view": "approval screen",
|
|
44
48
|
"field.artifact": "artifact",
|
|
45
49
|
"field.assigned-at": "assigned at",
|
|
46
50
|
"field.assignee": "assignee",
|
|
@@ -72,6 +76,7 @@
|
|
|
72
76
|
"field.quantifier": "quantifier",
|
|
73
77
|
"field.readiness-gaps": "not done yet",
|
|
74
78
|
"field.readiness-notes": "notes",
|
|
79
|
+
"field.reason": "reason",
|
|
75
80
|
"field.release": "release",
|
|
76
81
|
"field.report-source": "report source",
|
|
77
82
|
"field.report-type": "report type",
|
|
@@ -95,6 +100,7 @@
|
|
|
95
100
|
"field.updated-at": "updated at",
|
|
96
101
|
"field.view-source": "view source",
|
|
97
102
|
"field.view-type": "view type",
|
|
103
|
+
"field.what-is-built": "what is built",
|
|
98
104
|
"field.wl-changed-at": "last change",
|
|
99
105
|
"field.wl-comment": "comment",
|
|
100
106
|
"field.wl-drafter": "submitted by",
|
|
@@ -151,6 +157,7 @@
|
|
|
151
157
|
"label.approval-info": "approval info",
|
|
152
158
|
"label.approval-noted": "noted",
|
|
153
159
|
"label.approval-round-n": "resubmitted, round {n}",
|
|
160
|
+
"label.current-state": "as it stands now",
|
|
154
161
|
"label.days": "days",
|
|
155
162
|
"label.filter-aborted": "aborted",
|
|
156
163
|
"label.filter-deprecated": "deprecated",
|
|
@@ -170,32 +177,43 @@
|
|
|
170
177
|
"label.issued-by-me": "issued by me",
|
|
171
178
|
"label.minutes": "minutes",
|
|
172
179
|
"label.no": "no",
|
|
173
|
-
"label.readiness-declared": "
|
|
174
|
-
"label.readiness-not-worklist": "
|
|
175
|
-
"label.readiness-partial": "partly
|
|
176
|
-
"label.readiness-planned": "
|
|
177
|
-
"label.readiness-working": "
|
|
180
|
+
"label.readiness-declared": "no effect yet",
|
|
181
|
+
"label.readiness-not-worklist": "handled on another screen",
|
|
182
|
+
"label.readiness-partial": "partly usable",
|
|
183
|
+
"label.readiness-planned": "not implemented",
|
|
184
|
+
"label.readiness-working": "usable",
|
|
178
185
|
"label.seconds": "seconds",
|
|
179
186
|
"label.thread-basics": "basics",
|
|
180
187
|
"label.thread-info": "task info",
|
|
181
188
|
"label.timeline": "timeline",
|
|
189
|
+
"label.what-changes": "what changes on approval",
|
|
190
|
+
"label.what-it-was-judged-from": "what it was judged from",
|
|
191
|
+
"label.why-approval": "why this came up for approval",
|
|
182
192
|
"label.yes": "yes",
|
|
193
|
+
"text.activity-activated": "{name} is now on for this domain.",
|
|
194
|
+
"text.activity-change-failed": "{name} was not changed — {why}",
|
|
195
|
+
"text.activity-change-not-allowed": "you are not allowed to change {name}. ask an administrator for the activity privilege.",
|
|
196
|
+
"text.activity-deactivated": "{name} is off. this work will no longer be raised.",
|
|
183
197
|
"text.activity-guide-unwritten": "an explanation of this work has not been written yet.",
|
|
184
198
|
"text.activity-in-use-here": "in use",
|
|
185
|
-
"text.activity-not-in-use-here": "not in use
|
|
199
|
+
"text.activity-not-in-use-here": "not in use",
|
|
186
200
|
"text.activity_instance_aborted_successfully": "activity instance aborted successfully",
|
|
187
201
|
"text.and-n-more": "{n} more",
|
|
188
202
|
"text.and-n-more-fields": "({n} more)",
|
|
189
203
|
"text.approval-comment-hint": "you can approve without a comment. to reject, you must write a reason.",
|
|
204
|
+
"text.approval-is-irreversible": "once approved, this cannot be undone.",
|
|
205
|
+
"text.approval-is-reversible": "this can be undone after approval.",
|
|
190
206
|
"text.approval-line-empty": "no approvers",
|
|
191
207
|
"text.approval-line-steps": "{n} steps",
|
|
192
208
|
"text.approval-line-unknown": "could not read the approval line",
|
|
209
|
+
"text.approval-view-not-loaded": "this activity's approval screen could not be loaded.",
|
|
193
210
|
"text.approver-not-yet": "none yet",
|
|
194
211
|
"text.assign": "assign",
|
|
195
212
|
"text.calendar-not-loaded": "could not load the calendar. an empty screen here does not mean you have nothing to do",
|
|
196
213
|
"text.catalog-not-loaded": "could not load the activity catalog.",
|
|
197
214
|
"text.copy-failed": "could not copy",
|
|
198
215
|
"text.copy-payload": "copy this value as raw json",
|
|
216
|
+
"text.decision-keys-count": "{n} decision key(s)",
|
|
199
217
|
"text.draft": "draft",
|
|
200
218
|
"text.due-just-passed": "just passed",
|
|
201
219
|
"text.due-left-in": "{span} left",
|
|
@@ -209,10 +227,13 @@
|
|
|
209
227
|
"text.filter-due-hint": "due within {hours} hours",
|
|
210
228
|
"text.filter-important-hint": "priority {from} or higher",
|
|
211
229
|
"text.finished-on-this-day": "finished on this day",
|
|
230
|
+
"text.generated-approval-view": "the generated one",
|
|
212
231
|
"text.group-approval-hint": "it moves on only after you approve or reject",
|
|
213
232
|
"text.group-reference-hint": "it does not hold up the approval. comment if you have something to say",
|
|
214
233
|
"text.handed-over-on-this-day": "no deadline. handed over on this day",
|
|
215
234
|
"text.installable-activities": "installable activities",
|
|
235
|
+
"text.it-did-not-go-through": "it did not go through — {said}",
|
|
236
|
+
"text.model-in-out": "{taking} value(s) received, {giving} to fill in",
|
|
216
237
|
"text.no activity thread info": "No activity thread information",
|
|
217
238
|
"text.no-activity-fields": "nothing to fill in",
|
|
218
239
|
"text.no-activity-fields-why": "this task ends once you review it and submit. check the information above and submit.",
|
|
@@ -224,14 +245,19 @@
|
|
|
224
245
|
"text.no-due": "no due date",
|
|
225
246
|
"text.no-installable-activity": "no activities are registered",
|
|
226
247
|
"text.no-installable-activity-why": "each feature registers its own activities.",
|
|
248
|
+
"text.no-reason-given": "no reason was written.",
|
|
227
249
|
"text.no-reference-description": "a reference is a notice, not an approval. the approval goes ahead whether you respond or not, and you can leave a comment if you have one.",
|
|
228
250
|
"text.no-reference-title": "nothing sent for your information",
|
|
229
251
|
"text.no-value": "no value",
|
|
252
|
+
"text.not-allowed-to-do-this": "you are not allowed to do this. ask an administrator.",
|
|
253
|
+
"text.own-approval-view": "its own",
|
|
230
254
|
"text.pick": "pick",
|
|
231
255
|
"text.reference-after-decision": "commented after the decision",
|
|
232
256
|
"text.reference-closed-silent": "notified, no comment",
|
|
257
|
+
"text.reference-comment-hint": "you are a reference here. you leave a comment; approving and rejecting is for the approvers.",
|
|
233
258
|
"text.reference-open": "you can leave a comment",
|
|
234
259
|
"text.save": "save",
|
|
260
|
+
"text.signed-out-sign-in-again": "you are signed out. sign in again and retry.",
|
|
235
261
|
"text.task_is_approved_successfully": "task is approved successfully",
|
|
236
262
|
"text.task_is_finished_successfully": "task is finished successfully.",
|
|
237
263
|
"text.task_is_rejected_successfully": "task is rejected successfully",
|
|
@@ -239,6 +265,7 @@
|
|
|
239
265
|
"text.task_is_saved_successfully": "task is saved successfully",
|
|
240
266
|
"text.task_is_started_successfully": "task is started successfully.",
|
|
241
267
|
"text.timeline-count": "{count} entries",
|
|
268
|
+
"text.write-your-comment-as-reference": "write your comment.",
|
|
242
269
|
"title.activity": "activity",
|
|
243
270
|
"title.activity application": "activity application",
|
|
244
271
|
"title.activity approval": "activity approval",
|
package/translations/ja.json
CHANGED
|
@@ -19,8 +19,11 @@
|
|
|
19
19
|
"button.unschedule-task": "タスクのスケジュールを解除",
|
|
20
20
|
"error.activity not found": "このタスクテンプレート({activity})が見つかりません。",
|
|
21
21
|
"error.activity-approval is already terminated": "この承認タスク({activityApproval})はすでに終了({actual})しています。",
|
|
22
|
+
"error.activity-approval is reference only": "この方は参照です。意見は残せますが、承認と却下は承認者が行います。",
|
|
22
23
|
"error.activity-approval not found": "この承認タスク({activityApproval})が見つかりません。",
|
|
23
24
|
"error.activity-approval taken by someone else": "他の方が先に処理しました。一覧を再読み込みしてください。",
|
|
25
|
+
"error.activity-instance belongs to someone else": "{id} is someone else's draft. Only the person who wrote it, or someone who manages activity instances, may edit or issue it.",
|
|
26
|
+
"error.activity-instance is addressed to another role": "{id} is addressed to another role. Someone holding that role picks it up.",
|
|
24
27
|
"error.activity-instance is already issued": "このタスク({id})はすでに{state}状態で発行されています。",
|
|
25
28
|
"error.activity-instance is already terminated": "このタスク({id})はすでに{state}状態で終了しています。",
|
|
26
29
|
"error.activity-instance not found": "このタスク({activityInstance})が見つかりません。",
|
|
@@ -41,6 +44,7 @@
|
|
|
41
44
|
"field.approval-owner": "担当者",
|
|
42
45
|
"field.approval-subject": "案件",
|
|
43
46
|
"field.approval-submitted-at": "上申日",
|
|
47
|
+
"field.approval-view": "承認画面",
|
|
44
48
|
"field.artifact": "さんしゅつぶつ",
|
|
45
49
|
"field.assigned-at": "譲受日",
|
|
46
50
|
"field.assignee": "譲受人",
|
|
@@ -72,6 +76,7 @@
|
|
|
72
76
|
"field.quantifier": "数量",
|
|
73
77
|
"field.readiness-gaps": "まだ出来ていないこと",
|
|
74
78
|
"field.readiness-notes": "参考",
|
|
79
|
+
"field.reason": "理由",
|
|
75
80
|
"field.release": "配布バージョン",
|
|
76
81
|
"field.report-source": "レポート ソース",
|
|
77
82
|
"field.report-type": "レポート タイプ",
|
|
@@ -95,6 +100,7 @@
|
|
|
95
100
|
"field.updated-at": "修正時間",
|
|
96
101
|
"field.view-source": "ビュー ソース",
|
|
97
102
|
"field.view-type": "ビュー タイプ",
|
|
103
|
+
"field.what-is-built": "実装されているもの",
|
|
98
104
|
"field.wl-changed-at": "最終変更",
|
|
99
105
|
"field.wl-comment": "意見",
|
|
100
106
|
"field.wl-drafter": "起案者",
|
|
@@ -151,6 +157,7 @@
|
|
|
151
157
|
"label.approval-info": "承認情報",
|
|
152
158
|
"label.approval-noted": "メモあり",
|
|
153
159
|
"label.approval-round-n": "{n}回目の再提出",
|
|
160
|
+
"label.current-state": "現在の状態",
|
|
154
161
|
"label.days": "日",
|
|
155
162
|
"label.filter-aborted": "中断",
|
|
156
163
|
"label.filter-deprecated": "廃棄",
|
|
@@ -179,7 +186,14 @@
|
|
|
179
186
|
"label.thread-basics": "基本情報",
|
|
180
187
|
"label.thread-info": "業務情報",
|
|
181
188
|
"label.timeline": "タイムライン",
|
|
189
|
+
"label.what-changes": "承認すると変わること",
|
|
190
|
+
"label.what-it-was-judged-from": "判断の根拠",
|
|
191
|
+
"label.why-approval": "承認に上がった理由",
|
|
182
192
|
"label.yes": "はい",
|
|
193
|
+
"text.activity-activated": "{name} をこのドメインで使用するようにしました。",
|
|
194
|
+
"text.activity-change-failed": "{name} を変更できませんでした — {why}",
|
|
195
|
+
"text.activity-change-not-allowed": "{name} を変更する権限がありません。管理者に業務活動の権限を依頼してください。",
|
|
196
|
+
"text.activity-deactivated": "{name} をオフにしました。この業務は今後上がりません。",
|
|
183
197
|
"text.activity-guide-unwritten": "この業務の説明はまだ用意されていません。",
|
|
184
198
|
"text.activity-in-use-here": "使用中",
|
|
185
199
|
"text.activity-not-in-use-here": "まだ使用していません",
|
|
@@ -187,15 +201,19 @@
|
|
|
187
201
|
"text.and-n-more": "他 {n} 件",
|
|
188
202
|
"text.and-n-more-fields": "(他{n}件)",
|
|
189
203
|
"text.approval-comment-hint": "承認は意見なしでもできます。差し戻すには理由を書く必要があります。",
|
|
204
|
+
"text.approval-is-irreversible": "承認すると元に戻せません。",
|
|
205
|
+
"text.approval-is-reversible": "承認後に元に戻せます。",
|
|
190
206
|
"text.approval-line-empty": "決裁者がいません",
|
|
191
207
|
"text.approval-line-steps": "{n}段階",
|
|
192
208
|
"text.approval-line-unknown": "決裁ラインを読めませんでした",
|
|
209
|
+
"text.approval-view-not-loaded": "この業務の承認画面を読み込めませんでした。",
|
|
193
210
|
"text.approver-not-yet": "未定",
|
|
194
211
|
"text.assign": "割当",
|
|
195
212
|
"text.calendar-not-loaded": "カレンダーを読み込めませんでした。この画面が空なのは、予定がないという意味ではありません",
|
|
196
213
|
"text.catalog-not-loaded": "業務カタログを読み込めませんでした。",
|
|
197
214
|
"text.copy-failed": "コピーできません",
|
|
198
215
|
"text.copy-payload": "この値を原文(JSON)でコピーします",
|
|
216
|
+
"text.decision-keys-count": "判断項目 {n}件",
|
|
199
217
|
"text.draft": "ドラフト保存",
|
|
200
218
|
"text.due-just-passed": "過ぎたところ",
|
|
201
219
|
"text.due-left-in": "残り{span}",
|
|
@@ -209,10 +227,13 @@
|
|
|
209
227
|
"text.filter-due-hint": "{hours}時間以内に期限",
|
|
210
228
|
"text.filter-important-hint": "優先度 {from} 以上",
|
|
211
229
|
"text.finished-on-this-day": "この日に完了しました",
|
|
230
|
+
"text.generated-approval-view": "既定の画面",
|
|
212
231
|
"text.group-approval-hint": "承認または却下すると次に進みます",
|
|
213
232
|
"text.group-reference-hint": "決裁を止めません。意見があれば書けます",
|
|
214
233
|
"text.handed-over-on-this-day": "期限がありません。この日に受け取りました",
|
|
215
234
|
"text.installable-activities": "設置可能業務",
|
|
235
|
+
"text.it-did-not-go-through": "処理できませんでした — {said}",
|
|
236
|
+
"text.model-in-out": "受け取る値 {taking}件 · 記入する値 {giving}件",
|
|
216
237
|
"text.no activity thread info": "アクティビティスレッド情報なし",
|
|
217
238
|
"text.no-activity-fields": "入力する項目がありません",
|
|
218
239
|
"text.no-activity-fields-why": "この業務は内容を確認して提出すれば終わります。上の情報を確認して提出してください。",
|
|
@@ -224,14 +245,19 @@
|
|
|
224
245
|
"text.no-due": "期限なし",
|
|
225
246
|
"text.no-installable-activity": "登録された業務がありません",
|
|
226
247
|
"text.no-installable-activity-why": "各機能が自分の業務を登録します。",
|
|
248
|
+
"text.no-reason-given": "理由が記入されていません。",
|
|
227
249
|
"text.no-reference-description": "参照は決裁ではなくお知らせです。承認や却下をしなくても決裁は進み、意見があれば書けます。",
|
|
228
250
|
"text.no-reference-title": "参照で届いた件はありません",
|
|
229
251
|
"text.no-value": "値なし",
|
|
252
|
+
"text.not-allowed-to-do-this": "この操作を行う権限がありません。管理者に依頼してください。",
|
|
253
|
+
"text.own-approval-view": "専用",
|
|
230
254
|
"text.pick": "選択",
|
|
231
255
|
"text.reference-after-decision": "決定後に書かれた意見",
|
|
232
256
|
"text.reference-closed-silent": "お知らせを受け取り、意見はありません",
|
|
257
|
+
"text.reference-comment-hint": "この方は参照です。意見のみを残し、承認と却下は承認者が行います。",
|
|
233
258
|
"text.reference-open": "意見を書けます",
|
|
234
259
|
"text.save": "保存",
|
|
260
|
+
"text.signed-out-sign-in-again": "ログインが切れました。再度ログインしてからお試しください。",
|
|
235
261
|
"text.task_is_approved_successfully": "業務が正常に承認されました。",
|
|
236
262
|
"text.task_is_finished_successfully": "業務が成功的に完了しました。",
|
|
237
263
|
"text.task_is_rejected_successfully": "業務が正常に突き返されました。",
|
|
@@ -239,6 +265,7 @@
|
|
|
239
265
|
"text.task_is_saved_successfully": "業務が正常に保存されました。",
|
|
240
266
|
"text.task_is_started_successfully": "業務が正常に開始されました。",
|
|
241
267
|
"text.timeline-count": "{count}件",
|
|
268
|
+
"text.write-your-comment-as-reference": "ご意見をご記入ください。",
|
|
242
269
|
"title.activity": "業務",
|
|
243
270
|
"title.activity application": "業務申込書作成",
|
|
244
271
|
"title.activity approval": "業務承認",
|
package/translations/ko.json
CHANGED
|
@@ -19,8 +19,11 @@
|
|
|
19
19
|
"button.unschedule-task": "스케쥴 해제",
|
|
20
20
|
"error.activity not found": "이 작업템플릿({activity})을 찾을 수 없습니다.",
|
|
21
21
|
"error.activity-approval is already terminated": "이 승인 작업({activityApproval})는 이미 종료({actual})되었습니다.",
|
|
22
|
+
"error.activity-approval is reference only": "이 자리는 참조입니다. 의견은 남길 수 있고, 승인과 반려는 결재자가 합니다.",
|
|
22
23
|
"error.activity-approval not found": "이 승인 작업({activityApproval})을 찾을 수 없습니다.",
|
|
23
24
|
"error.activity-approval taken by someone else": "다른 분이 먼저 처리했습니다. 목록을 새로 읽어 주십시오.",
|
|
25
|
+
"error.activity-instance belongs to someone else": "{id} 는 다른 사람이 쓴 초안입니다. 쓴 사람이나 업무를 관리하는 사람만 고치고 내보낼 수 있습니다.",
|
|
26
|
+
"error.activity-instance is addressed to another role": "{id} 는 다른 역할에 걸린 업무입니다. 그 역할을 가진 사람이 집습니다.",
|
|
24
27
|
"error.activity-instance is already issued": "이 작업({id})은 이미 {state} 상태로 제기되었습니다.",
|
|
25
28
|
"error.activity-instance is already terminated": "이 작업({id})는 이미 {state} 상태로 종료되었습니다.",
|
|
26
29
|
"error.activity-instance not found": "이 작업({activityInstance})을 찾을 수 없습니다.",
|
|
@@ -41,6 +44,7 @@
|
|
|
41
44
|
"field.approval-owner": "담당자",
|
|
42
45
|
"field.approval-subject": "안건",
|
|
43
46
|
"field.approval-submitted-at": "상신일",
|
|
47
|
+
"field.approval-view": "결재 화면",
|
|
44
48
|
"field.artifact": "산출물",
|
|
45
49
|
"field.assigned-at": "할당 시간",
|
|
46
50
|
"field.assignee": "피할당자",
|
|
@@ -72,6 +76,7 @@
|
|
|
72
76
|
"field.quantifier": "수량",
|
|
73
77
|
"field.readiness-gaps": "아직 안 된 것",
|
|
74
78
|
"field.readiness-notes": "참고",
|
|
79
|
+
"field.reason": "사유",
|
|
75
80
|
"field.release": "배포버전",
|
|
76
81
|
"field.report-source": "리포트 소스",
|
|
77
82
|
"field.report-type": "리포트 타입",
|
|
@@ -95,6 +100,7 @@
|
|
|
95
100
|
"field.updated-at": "수정 시간",
|
|
96
101
|
"field.view-source": "뷰 소스",
|
|
97
102
|
"field.view-type": "뷰 타입",
|
|
103
|
+
"field.what-is-built": "서 있는 것",
|
|
98
104
|
"field.wl-changed-at": "최근 변경",
|
|
99
105
|
"field.wl-comment": "의견",
|
|
100
106
|
"field.wl-drafter": "기안자",
|
|
@@ -151,6 +157,7 @@
|
|
|
151
157
|
"label.approval-info": "결재 정보",
|
|
152
158
|
"label.approval-noted": "메모 있음",
|
|
153
159
|
"label.approval-round-n": "{n}차 재상신",
|
|
160
|
+
"label.current-state": "지금 상태",
|
|
154
161
|
"label.days": "일",
|
|
155
162
|
"label.filter-aborted": "중단",
|
|
156
163
|
"label.filter-deprecated": "폐기",
|
|
@@ -170,32 +177,43 @@
|
|
|
170
177
|
"label.issued-by-me": "내가 생성한 태스크",
|
|
171
178
|
"label.minutes": "분",
|
|
172
179
|
"label.no": "아니오",
|
|
173
|
-
"label.readiness-declared": "
|
|
174
|
-
"label.readiness-not-worklist": "
|
|
175
|
-
"label.readiness-partial": "
|
|
176
|
-
"label.readiness-planned": "
|
|
177
|
-
"label.readiness-working": "
|
|
180
|
+
"label.readiness-declared": "동작 없음",
|
|
181
|
+
"label.readiness-not-worklist": "다른 화면에서 처리",
|
|
182
|
+
"label.readiness-partial": "일부 동작",
|
|
183
|
+
"label.readiness-planned": "미구현",
|
|
184
|
+
"label.readiness-working": "사용 가능",
|
|
178
185
|
"label.seconds": "초",
|
|
179
186
|
"label.thread-basics": "기본 정보",
|
|
180
187
|
"label.thread-info": "업무 정보",
|
|
181
188
|
"label.timeline": "타임라인",
|
|
189
|
+
"label.what-changes": "승인하면 달라지는 것",
|
|
190
|
+
"label.what-it-was-judged-from": "판단 근거",
|
|
191
|
+
"label.why-approval": "결재로 올라온 이유",
|
|
182
192
|
"label.yes": "예",
|
|
193
|
+
"text.activity-activated": "{name} 을 이 도메인에서 쓰도록 켰습니다.",
|
|
194
|
+
"text.activity-change-failed": "{name} 을 바꾸지 못했습니다 — {why}",
|
|
195
|
+
"text.activity-change-not-allowed": "{name} 을 바꿀 권한이 없습니다. 관리자에게 업무 활동 권한을 요청하십시오.",
|
|
196
|
+
"text.activity-deactivated": "{name} 을 껐습니다. 이 업무는 더 이상 올라오지 않습니다.",
|
|
183
197
|
"text.activity-guide-unwritten": "이 업무의 설명이 아직 준비되지 않았습니다.",
|
|
184
198
|
"text.activity-in-use-here": "사용 중",
|
|
185
|
-
"text.activity-not-in-use-here": "
|
|
199
|
+
"text.activity-not-in-use-here": "미사용",
|
|
186
200
|
"text.activity_instance_aborted_successfully": "업무인스턴스가 정상적으로 중단되었습니다.",
|
|
187
201
|
"text.and-n-more": "{n}건 더",
|
|
188
202
|
"text.and-n-more-fields": "(외 {n}개 항목)",
|
|
189
203
|
"text.approval-comment-hint": "승인은 의견 없이도 할 수 있습니다. 반려하려면 이유를 적어야 합니다.",
|
|
204
|
+
"text.approval-is-irreversible": "승인하면 되돌릴 수 없습니다.",
|
|
205
|
+
"text.approval-is-reversible": "승인한 뒤에 되돌릴 수 있습니다.",
|
|
190
206
|
"text.approval-line-empty": "결재자가 없습니다",
|
|
191
207
|
"text.approval-line-steps": "{n}단계",
|
|
192
208
|
"text.approval-line-unknown": "결재선을 읽지 못했습니다",
|
|
209
|
+
"text.approval-view-not-loaded": "이 업무의 결재 화면을 불러오지 못했습니다.",
|
|
193
210
|
"text.approver-not-yet": "아직 없음",
|
|
194
211
|
"text.assign": "할당",
|
|
195
212
|
"text.calendar-not-loaded": "달력을 불러오지 못했습니다. 이 화면이 비어 있는 것은 할 일이 없다는 뜻이 아닙니다",
|
|
196
213
|
"text.catalog-not-loaded": "업무 카탈로그를 불러오지 못했습니다.",
|
|
197
214
|
"text.copy-failed": "복사할 수 없습니다",
|
|
198
215
|
"text.copy-payload": "이 값을 원문(JSON)으로 복사합니다",
|
|
216
|
+
"text.decision-keys-count": "판단 항목 {n}개",
|
|
199
217
|
"text.draft": "초안저장",
|
|
200
218
|
"text.due-just-passed": "방금 지남",
|
|
201
219
|
"text.due-left-in": "{span} 남음",
|
|
@@ -209,10 +227,13 @@
|
|
|
209
227
|
"text.filter-due-hint": "{hours}시간 안에 만기",
|
|
210
228
|
"text.filter-important-hint": "우선순위 {from} 이상",
|
|
211
229
|
"text.finished-on-this-day": "이 날 끝났습니다",
|
|
230
|
+
"text.generated-approval-view": "기본 화면",
|
|
212
231
|
"text.group-approval-hint": "승인하거나 반려해야 다음으로 넘어갑니다",
|
|
213
232
|
"text.group-reference-hint": "결재를 막지 않습니다. 의견이 있으면 적을 수 있습니다",
|
|
214
233
|
"text.handed-over-on-this-day": "기한이 없습니다. 이 날 받았습니다",
|
|
215
234
|
"text.installable-activities": "설치 가능 업무",
|
|
235
|
+
"text.it-did-not-go-through": "처리하지 못했습니다 — {said}",
|
|
236
|
+
"text.model-in-out": "받는 값 {taking}개 · 적어 낼 값 {giving}개",
|
|
216
237
|
"text.no activity thread info": "업무활동 정보가 없습니다.",
|
|
217
238
|
"text.no-activity-fields": "입력할 항목이 없습니다",
|
|
218
239
|
"text.no-activity-fields-why": "이 업무는 내용을 확인하고 제출하면 끝납니다. 위의 정보를 보고 제출하세요.",
|
|
@@ -224,14 +245,19 @@
|
|
|
224
245
|
"text.no-due": "기한 없음",
|
|
225
246
|
"text.no-installable-activity": "등록된 업무가 없습니다",
|
|
226
247
|
"text.no-installable-activity-why": "각 기능이 자기 업무를 등록합니다.",
|
|
248
|
+
"text.no-reason-given": "사유가 적혀 있지 않습니다.",
|
|
227
249
|
"text.no-reference-description": "참조는 결재가 아니라 알림입니다. 승인이나 반려를 하지 않아도 결재는 진행되고, 의견이 있으면 적을 수 있습니다.",
|
|
228
250
|
"text.no-reference-title": "참조받은 건이 없습니다",
|
|
229
251
|
"text.no-value": "값 없음",
|
|
252
|
+
"text.not-allowed-to-do-this": "이 작업을 할 권한이 없습니다. 관리자에게 요청하십시오.",
|
|
253
|
+
"text.own-approval-view": "전용",
|
|
230
254
|
"text.pick": "선택",
|
|
231
255
|
"text.reference-after-decision": "결정 뒤에 적은 의견",
|
|
232
256
|
"text.reference-closed-silent": "알림만 받고 끝났습니다",
|
|
257
|
+
"text.reference-comment-hint": "이 자리는 참조입니다. 의견만 남기고, 승인과 반려는 결재자가 합니다.",
|
|
233
258
|
"text.reference-open": "의견을 적을 수 있습니다",
|
|
234
259
|
"text.save": "저장",
|
|
260
|
+
"text.signed-out-sign-in-again": "로그인이 풀렸습니다. 다시 로그인한 뒤 해 주십시오.",
|
|
235
261
|
"text.task_is_approved_successfully": "업무가 성공적으로 승인되었습니다.",
|
|
236
262
|
"text.task_is_finished_successfully": "업무가 성공적으로 완료되었습니다.",
|
|
237
263
|
"text.task_is_rejected_successfully": "업무가 성공적으로 반려되었습니다.",
|
|
@@ -239,6 +265,7 @@
|
|
|
239
265
|
"text.task_is_saved_successfully": "업무가 성공적으로 저장되었습니다.",
|
|
240
266
|
"text.task_is_started_successfully": "업무가 성공적으로 시작되었습니다.",
|
|
241
267
|
"text.timeline-count": "{count}건",
|
|
268
|
+
"text.write-your-comment-as-reference": "의견을 적어 주십시오.",
|
|
242
269
|
"title.activity": "업무",
|
|
243
270
|
"title.activity application": "업무 신청서 작성",
|
|
244
271
|
"title.activity approval": "업무승인",
|
package/translations/ms.json
CHANGED
|
@@ -19,8 +19,11 @@
|
|
|
19
19
|
"button.unschedule-task": "batalkan jadual tugas",
|
|
20
20
|
"error.activity not found": "Templat tugas ini ({activity}) tidak dijumpai.",
|
|
21
21
|
"error.activity-approval is already terminated": "Tugas kelulusan ini ({activityApproval}) telah tamat ({actual}).",
|
|
22
|
+
"error.activity-approval is reference only": "anda ialah rujukan bagi kelulusan ini. anda boleh tinggalkan komen; kelulusan dan penolakan adalah untuk pelulus.",
|
|
22
23
|
"error.activity-approval not found": "Tugas kelulusan ini ({activityApproval}) tidak dijumpai.",
|
|
23
24
|
"error.activity-approval taken by someone else": "orang lain telah menguruskannya dahulu. sila muat semula senarai.",
|
|
25
|
+
"error.activity-instance belongs to someone else": "{id} is someone else's draft. Only the person who wrote it, or someone who manages activity instances, may edit or issue it.",
|
|
26
|
+
"error.activity-instance is addressed to another role": "{id} is addressed to another role. Someone holding that role picks it up.",
|
|
24
27
|
"error.activity-instance is already issued": "Tugas ini ({id}) telah dikeluarkan dengan status {state}.",
|
|
25
28
|
"error.activity-instance is already terminated": "Tugas ini ({id}) telah tamat dengan status {state}.",
|
|
26
29
|
"error.activity-instance not found": "Tugas ini ({activityInstance}) tidak dijumpai.",
|
|
@@ -41,6 +44,7 @@
|
|
|
41
44
|
"field.approval-owner": "pemilik",
|
|
42
45
|
"field.approval-subject": "perkara",
|
|
43
46
|
"field.approval-submitted-at": "dihantar",
|
|
47
|
+
"field.approval-view": "skrin kelulusan",
|
|
44
48
|
"field.artifact": "hasil keluaran",
|
|
45
49
|
"field.assigned-at": "diberi pada",
|
|
46
50
|
"field.assignee": "pemberi tugasan",
|
|
@@ -72,6 +76,7 @@
|
|
|
72
76
|
"field.quantifier": "pemboleh ubah",
|
|
73
77
|
"field.readiness-gaps": "belum siap",
|
|
74
78
|
"field.readiness-notes": "nota",
|
|
79
|
+
"field.reason": "sebab",
|
|
75
80
|
"field.release": "lepas",
|
|
76
81
|
"field.report-source": "sumber laporan",
|
|
77
82
|
"field.report-type": "jenis laporan",
|
|
@@ -95,6 +100,7 @@
|
|
|
95
100
|
"field.updated-at": "dikemaskini pada",
|
|
96
101
|
"field.view-source": "sumber pandangan",
|
|
97
102
|
"field.view-type": "jenis pandangan",
|
|
103
|
+
"field.what-is-built": "apa yang dibina",
|
|
98
104
|
"field.wl-changed-at": "perubahan terakhir",
|
|
99
105
|
"field.wl-comment": "komen",
|
|
100
106
|
"field.wl-drafter": "dihantar oleh",
|
|
@@ -151,6 +157,7 @@
|
|
|
151
157
|
"label.approval-info": "maklumat kelulusan",
|
|
152
158
|
"label.approval-noted": "ada nota",
|
|
153
159
|
"label.approval-round-n": "dihantar semula, pusingan {n}",
|
|
160
|
+
"label.current-state": "keadaan sekarang",
|
|
154
161
|
"label.days": "hari",
|
|
155
162
|
"label.filter-aborted": "dibatalkan",
|
|
156
163
|
"label.filter-deprecated": "digugur",
|
|
@@ -179,7 +186,14 @@
|
|
|
179
186
|
"label.thread-basics": "maklumat asas",
|
|
180
187
|
"label.thread-info": "maklumat tugas",
|
|
181
188
|
"label.timeline": "garis masa",
|
|
189
|
+
"label.what-changes": "apa yang berubah selepas kelulusan",
|
|
190
|
+
"label.what-it-was-judged-from": "dasar penilaian",
|
|
191
|
+
"label.why-approval": "sebab ini dibawa untuk kelulusan",
|
|
182
192
|
"label.yes": "ya",
|
|
193
|
+
"text.activity-activated": "{name} kini dihidupkan untuk domain ini.",
|
|
194
|
+
"text.activity-change-failed": "{name} tidak berubah — {why}",
|
|
195
|
+
"text.activity-change-not-allowed": "anda tiada keizinan untuk mengubah {name}. minta keizinan aktiviti daripada pentadbir.",
|
|
196
|
+
"text.activity-deactivated": "{name} dimatikan. kerja ini tidak akan dibangkitkan lagi.",
|
|
183
197
|
"text.activity-guide-unwritten": "keterangan kerja ini belum disiapkan.",
|
|
184
198
|
"text.activity-in-use-here": "digunakan",
|
|
185
199
|
"text.activity-not-in-use-here": "belum digunakan",
|
|
@@ -187,15 +201,19 @@
|
|
|
187
201
|
"text.and-n-more": "{n} lagi",
|
|
188
202
|
"text.and-n-more-fields": "({n} lagi)",
|
|
189
203
|
"text.approval-comment-hint": "anda boleh meluluskan tanpa komen. untuk menolak, anda mesti menulis sebab.",
|
|
204
|
+
"text.approval-is-irreversible": "setelah diluluskan, ini tidak boleh dibatalkan.",
|
|
205
|
+
"text.approval-is-reversible": "ini boleh dibatalkan selepas kelulusan.",
|
|
190
206
|
"text.approval-line-empty": "tiada pelulus",
|
|
191
207
|
"text.approval-line-steps": "{n} peringkat",
|
|
192
208
|
"text.approval-line-unknown": "tidak dapat membaca barisan kelulusan",
|
|
209
|
+
"text.approval-view-not-loaded": "skrin kelulusan untuk aktiviti ini tidak dapat dimuatkan.",
|
|
193
210
|
"text.approver-not-yet": "belum ada",
|
|
194
211
|
"text.assign": "berikan",
|
|
195
212
|
"text.calendar-not-loaded": "kalendar tidak dapat dimuatkan. skrin kosong di sini tidak bermakna anda tiada kerja",
|
|
196
213
|
"text.catalog-not-loaded": "katalog kerja tidak dapat dimuatkan.",
|
|
197
214
|
"text.copy-failed": "tidak dapat menyalin",
|
|
198
215
|
"text.copy-payload": "salin nilai ini sebagai json asal",
|
|
216
|
+
"text.decision-keys-count": "{n} kunci keputusan",
|
|
199
217
|
"text.draft": "draf",
|
|
200
218
|
"text.due-just-passed": "baru lewat",
|
|
201
219
|
"text.due-left-in": "tinggal {span}",
|
|
@@ -209,10 +227,13 @@
|
|
|
209
227
|
"text.filter-due-hint": "tamat tempoh dalam {hours} jam",
|
|
210
228
|
"text.filter-important-hint": "keutamaan {from} atau lebih tinggi",
|
|
211
229
|
"text.finished-on-this-day": "selesai pada hari ini",
|
|
230
|
+
"text.generated-approval-view": "skrin lalai",
|
|
212
231
|
"text.group-approval-hint": "ia hanya bergerak selepas anda luluskan atau tolak",
|
|
213
232
|
"text.group-reference-hint": "ia tidak menghalang kelulusan. beri pendapat jika ada",
|
|
214
233
|
"text.handed-over-on-this-day": "tiada tarikh akhir. diterima pada hari ini",
|
|
215
234
|
"text.installable-activities": "aktiviti yang boleh dipasang",
|
|
235
|
+
"text.it-did-not-go-through": "ia tidak berjaya — {said}",
|
|
236
|
+
"text.model-in-out": "{taking} nilai diterima, {giving} untuk diisi",
|
|
216
237
|
"text.no activity thread info": "tiada maklumat thread aktiviti",
|
|
217
238
|
"text.no-activity-fields": "tiada medan untuk diisi",
|
|
218
239
|
"text.no-activity-fields-why": "tugas ini selesai apabila anda menyemak dan menghantarnya. semak maklumat di atas dan hantar.",
|
|
@@ -224,14 +245,19 @@
|
|
|
224
245
|
"text.no-due": "tiada tarikh akhir",
|
|
225
246
|
"text.no-installable-activity": "tiada kerja didaftarkan",
|
|
226
247
|
"text.no-installable-activity-why": "setiap fungsi mendaftarkan kerjanya sendiri.",
|
|
248
|
+
"text.no-reason-given": "tiada sebab ditulis.",
|
|
227
249
|
"text.no-reference-description": "rujukan ialah pemberitahuan, bukan kelulusan. kelulusan tetap diteruskan sama ada anda menjawab atau tidak, dan anda boleh beri pendapat jika ada.",
|
|
228
250
|
"text.no-reference-title": "tiada yang dihantar untuk pengetahuan anda",
|
|
229
251
|
"text.no-value": "tiada nilai",
|
|
252
|
+
"text.not-allowed-to-do-this": "anda tiada keizinan untuk melakukan ini. minta daripada pentadbir.",
|
|
253
|
+
"text.own-approval-view": "tersendiri",
|
|
230
254
|
"text.pick": "pilih",
|
|
231
255
|
"text.reference-after-decision": "pendapat selepas keputusan",
|
|
232
256
|
"text.reference-closed-silent": "dimaklumkan, tiada pendapat",
|
|
257
|
+
"text.reference-comment-hint": "anda ialah rujukan di sini. anda tinggalkan komen; kelulusan dan penolakan adalah untuk pelulus.",
|
|
233
258
|
"text.reference-open": "anda boleh beri pendapat",
|
|
234
259
|
"text.save": "simpan",
|
|
260
|
+
"text.signed-out-sign-in-again": "anda telah log keluar. log masuk semula dan cuba lagi.",
|
|
235
261
|
"text.task_is_approved_successfully": "tugas berjaya diluluskan",
|
|
236
262
|
"text.task_is_finished_successfully": "tugas berjaya selesai.",
|
|
237
263
|
"text.task_is_rejected_successfully": "tugas berjaya ditolak",
|
|
@@ -239,6 +265,7 @@
|
|
|
239
265
|
"text.task_is_saved_successfully": "tugas berjaya disimpan",
|
|
240
266
|
"text.task_is_started_successfully": "tugas berjaya bermula.",
|
|
241
267
|
"text.timeline-count": "{count} rekod",
|
|
268
|
+
"text.write-your-comment-as-reference": "tuliskan komen anda.",
|
|
242
269
|
"title.activity": "perniagaan",
|
|
243
270
|
"title.activity application": "permohonan aktiviti",
|
|
244
271
|
"title.activity approval": "kelulusan perniagaan",
|