@things-factory/worklist 10.1.5 → 10.1.6

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.
Files changed (71) hide show
  1. package/dist-client/components/activity-approval-ribon.js +17 -2
  2. package/dist-client/components/activity-approval-ribon.js.map +1 -1
  3. package/dist-client/components/decision-slots.d.ts +89 -0
  4. package/dist-client/components/decision-slots.js +111 -0
  5. package/dist-client/components/decision-slots.js.map +1 -0
  6. package/dist-client/pages/activity-approval/activity-approval-page.d.ts +72 -0
  7. package/dist-client/pages/activity-approval/activity-approval-page.js +425 -43
  8. package/dist-client/pages/activity-approval/activity-approval-page.js.map +1 -1
  9. package/dist-client/pages/activity-catalog/activity-catalog-page.d.ts +11 -0
  10. package/dist-client/pages/activity-catalog/activity-catalog-page.js +48 -1
  11. package/dist-client/pages/activity-catalog/activity-catalog-page.js.map +1 -1
  12. package/dist-client/pages/installable-activity/installable-activity-list-page.d.ts +27 -0
  13. package/dist-client/pages/installable-activity/installable-activity-list-page.js +70 -11
  14. package/dist-client/pages/installable-activity/installable-activity-list-page.js.map +1 -1
  15. package/dist-client/route.d.ts +1 -1
  16. package/dist-client/tsconfig.tsbuildinfo +1 -1
  17. package/dist-server/controllers/activity-approval/approval-line.d.ts +32 -0
  18. package/dist-server/controllers/activity-approval/approval-line.js +35 -0
  19. package/dist-server/controllers/activity-approval/approval-line.js.map +1 -1
  20. package/dist-server/controllers/activity-approval/approve.js +17 -0
  21. package/dist-server/controllers/activity-approval/approve.js.map +1 -1
  22. package/dist-server/controllers/activity-approval/reject.js +21 -1
  23. package/dist-server/controllers/activity-approval/reject.js.map +1 -1
  24. package/dist-server/controllers/activity-installation/activity-installation-controller.js +5 -9
  25. package/dist-server/controllers/activity-installation/activity-installation-controller.js.map +1 -1
  26. package/dist-server/controllers/activity-installation/installable-to-activity.d.ts +49 -0
  27. package/dist-server/controllers/activity-installation/installable-to-activity.js +40 -0
  28. package/dist-server/controllers/activity-installation/installable-to-activity.js.map +1 -0
  29. package/dist-server/controllers/activity-installation/registry-conflict.d.ts +32 -0
  30. package/dist-server/controllers/activity-installation/registry-conflict.js +21 -0
  31. package/dist-server/controllers/activity-installation/registry-conflict.js.map +1 -0
  32. package/dist-server/service/activity/activity-decision-key-item-type.d.ts +160 -0
  33. package/dist-server/service/activity/activity-decision-key-item-type.js +176 -0
  34. package/dist-server/service/activity/activity-decision-key-item-type.js.map +1 -0
  35. package/dist-server/service/activity/activity-type.d.ts +3 -0
  36. package/dist-server/service/activity/activity-type.js +8 -0
  37. package/dist-server/service/activity/activity-type.js.map +1 -1
  38. package/dist-server/service/activity/activity.d.ts +30 -0
  39. package/dist-server/service/activity/activity.js +14 -0
  40. package/dist-server/service/activity/activity.js.map +1 -1
  41. package/dist-server/service/activity/decision-key-declaration.d.ts +33 -0
  42. package/dist-server/service/activity/decision-key-declaration.js +67 -0
  43. package/dist-server/service/activity/decision-key-declaration.js.map +1 -0
  44. package/dist-server/service/activity/{credential-guard-subscriber.d.ts → declaration-guard-subscriber.d.ts} +6 -1
  45. package/dist-server/service/activity/declaration-guard-subscriber.js +46 -0
  46. package/dist-server/service/activity/declaration-guard-subscriber.js.map +1 -0
  47. package/dist-server/service/activity/index.d.ts +3 -3
  48. package/dist-server/service/activity/index.js +2 -2
  49. package/dist-server/service/activity/index.js.map +1 -1
  50. package/dist-server/service/activity/search-key-declaration.d.ts +38 -0
  51. package/dist-server/service/activity/search-key-declaration.js +49 -0
  52. package/dist-server/service/activity/search-key-declaration.js.map +1 -0
  53. package/dist-server/service/activity-instance/activity-instance-type.js.map +1 -1
  54. package/dist-server/service/activity-instance/index.d.ts +1 -1
  55. package/dist-server/service/activity-template/index.d.ts +1 -1
  56. package/dist-server/service/activity-thread/index.d.ts +1 -1
  57. package/dist-server/service/index.d.ts +3 -3
  58. package/dist-server/service/installable-activity/installable-activity-mutation.js +24 -0
  59. package/dist-server/service/installable-activity/installable-activity-mutation.js.map +1 -1
  60. package/dist-server/service/installable-activity/installable-activity.d.ts +9 -0
  61. package/dist-server/service/installable-activity/installable-activity.js +5 -0
  62. package/dist-server/service/installable-activity/installable-activity.js.map +1 -1
  63. package/dist-server/tsconfig.tsbuildinfo +1 -1
  64. package/package.json +9 -9
  65. package/translations/en.json +28 -6
  66. package/translations/ja.json +22 -0
  67. package/translations/ko.json +28 -6
  68. package/translations/ms.json +22 -0
  69. package/translations/zh.json +22 -0
  70. package/dist-server/service/activity/credential-guard-subscriber.js +0 -35
  71. 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.5",
3
+ "version": "10.1.6",
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.4",
38
- "@things-factory/auth-base": "^10.1.4",
39
- "@things-factory/board-service": "^10.1.5",
40
- "@things-factory/board-ui": "^10.1.5",
37
+ "@things-factory/attachment-base": "^10.1.6",
38
+ "@things-factory/auth-base": "^10.1.6",
39
+ "@things-factory/board-service": "^10.1.6",
40
+ "@things-factory/board-ui": "^10.1.6",
41
41
  "@things-factory/context-ui": "^10.1.4",
42
- "@things-factory/organization": "^10.1.4",
43
- "@things-factory/personalization": "^10.1.4",
44
- "@things-factory/scheduler-client": "^10.1.4",
42
+ "@things-factory/organization": "^10.1.6",
43
+ "@things-factory/personalization": "^10.1.6",
44
+ "@things-factory/scheduler-client": "^10.1.6",
45
45
  "@things-factory/shell": "^10.1.4"
46
46
  },
47
- "gitHead": "d7e60939822ef18e5311311746b2abd28f169173"
47
+ "gitHead": "963aeb9ac470be5aea05bb5842a0a92afcab6036"
48
48
  }
@@ -19,6 +19,7 @@
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.",
24
25
  "error.activity-instance is already issued": "this task ({id}) has already been issued with the {state} status.",
@@ -41,6 +42,7 @@
41
42
  "field.approval-owner": "owner",
42
43
  "field.approval-subject": "subject",
43
44
  "field.approval-submitted-at": "submitted",
45
+ "field.approval-view": "approval screen",
44
46
  "field.artifact": "artifact",
45
47
  "field.assigned-at": "assigned at",
46
48
  "field.assignee": "assignee",
@@ -72,6 +74,7 @@
72
74
  "field.quantifier": "quantifier",
73
75
  "field.readiness-gaps": "not done yet",
74
76
  "field.readiness-notes": "notes",
77
+ "field.reason": "reason",
75
78
  "field.release": "release",
76
79
  "field.report-source": "report source",
77
80
  "field.report-type": "report type",
@@ -95,6 +98,7 @@
95
98
  "field.updated-at": "updated at",
96
99
  "field.view-source": "view source",
97
100
  "field.view-type": "view type",
101
+ "field.what-is-built": "what is built",
98
102
  "field.wl-changed-at": "last change",
99
103
  "field.wl-comment": "comment",
100
104
  "field.wl-drafter": "submitted by",
@@ -151,6 +155,7 @@
151
155
  "label.approval-info": "approval info",
152
156
  "label.approval-noted": "noted",
153
157
  "label.approval-round-n": "resubmitted, round {n}",
158
+ "label.current-state": "as it stands now",
154
159
  "label.days": "days",
155
160
  "label.filter-aborted": "aborted",
156
161
  "label.filter-deprecated": "deprecated",
@@ -170,32 +175,43 @@
170
175
  "label.issued-by-me": "issued by me",
171
176
  "label.minutes": "minutes",
172
177
  "label.no": "no",
173
- "label.readiness-declared": "does nothing yet",
174
- "label.readiness-not-worklist": "does not come here",
175
- "label.readiness-partial": "partly works",
176
- "label.readiness-planned": "planned",
177
- "label.readiness-working": "works",
178
+ "label.readiness-declared": "no effect yet",
179
+ "label.readiness-not-worklist": "handled on another screen",
180
+ "label.readiness-partial": "partly usable",
181
+ "label.readiness-planned": "not implemented",
182
+ "label.readiness-working": "usable",
178
183
  "label.seconds": "seconds",
179
184
  "label.thread-basics": "basics",
180
185
  "label.thread-info": "task info",
181
186
  "label.timeline": "timeline",
187
+ "label.what-changes": "what changes on approval",
188
+ "label.what-it-was-judged-from": "what it was judged from",
189
+ "label.why-approval": "why this came up for approval",
182
190
  "label.yes": "yes",
191
+ "text.activity-activated": "{name} is now on for this domain.",
192
+ "text.activity-change-failed": "{name} was not changed — {why}",
193
+ "text.activity-change-not-allowed": "you are not allowed to change {name}. ask an administrator for the activity privilege.",
194
+ "text.activity-deactivated": "{name} is off. this work will no longer be raised.",
183
195
  "text.activity-guide-unwritten": "an explanation of this work has not been written yet.",
184
196
  "text.activity-in-use-here": "in use",
185
- "text.activity-not-in-use-here": "not in use yet",
197
+ "text.activity-not-in-use-here": "not in use",
186
198
  "text.activity_instance_aborted_successfully": "activity instance aborted successfully",
187
199
  "text.and-n-more": "{n} more",
188
200
  "text.and-n-more-fields": "({n} more)",
189
201
  "text.approval-comment-hint": "you can approve without a comment. to reject, you must write a reason.",
202
+ "text.approval-is-irreversible": "once approved, this cannot be undone.",
203
+ "text.approval-is-reversible": "this can be undone after approval.",
190
204
  "text.approval-line-empty": "no approvers",
191
205
  "text.approval-line-steps": "{n} steps",
192
206
  "text.approval-line-unknown": "could not read the approval line",
207
+ "text.approval-view-not-loaded": "this activity's approval screen could not be loaded.",
193
208
  "text.approver-not-yet": "none yet",
194
209
  "text.assign": "assign",
195
210
  "text.calendar-not-loaded": "could not load the calendar. an empty screen here does not mean you have nothing to do",
196
211
  "text.catalog-not-loaded": "could not load the activity catalog.",
197
212
  "text.copy-failed": "could not copy",
198
213
  "text.copy-payload": "copy this value as raw json",
214
+ "text.decision-keys-count": "{n} decision key(s)",
199
215
  "text.draft": "draft",
200
216
  "text.due-just-passed": "just passed",
201
217
  "text.due-left-in": "{span} left",
@@ -209,10 +225,12 @@
209
225
  "text.filter-due-hint": "due within {hours} hours",
210
226
  "text.filter-important-hint": "priority {from} or higher",
211
227
  "text.finished-on-this-day": "finished on this day",
228
+ "text.generated-approval-view": "the generated one",
212
229
  "text.group-approval-hint": "it moves on only after you approve or reject",
213
230
  "text.group-reference-hint": "it does not hold up the approval. comment if you have something to say",
214
231
  "text.handed-over-on-this-day": "no deadline. handed over on this day",
215
232
  "text.installable-activities": "installable activities",
233
+ "text.model-in-out": "{taking} value(s) received, {giving} to fill in",
216
234
  "text.no activity thread info": "No activity thread information",
217
235
  "text.no-activity-fields": "nothing to fill in",
218
236
  "text.no-activity-fields-why": "this task ends once you review it and submit. check the information above and submit.",
@@ -224,12 +242,15 @@
224
242
  "text.no-due": "no due date",
225
243
  "text.no-installable-activity": "no activities are registered",
226
244
  "text.no-installable-activity-why": "each feature registers its own activities.",
245
+ "text.no-reason-given": "no reason was written.",
227
246
  "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
247
  "text.no-reference-title": "nothing sent for your information",
229
248
  "text.no-value": "no value",
249
+ "text.own-approval-view": "its own",
230
250
  "text.pick": "pick",
231
251
  "text.reference-after-decision": "commented after the decision",
232
252
  "text.reference-closed-silent": "notified, no comment",
253
+ "text.reference-comment-hint": "you are a reference here. you leave a comment; approving and rejecting is for the approvers.",
233
254
  "text.reference-open": "you can leave a comment",
234
255
  "text.save": "save",
235
256
  "text.task_is_approved_successfully": "task is approved successfully",
@@ -239,6 +260,7 @@
239
260
  "text.task_is_saved_successfully": "task is saved successfully",
240
261
  "text.task_is_started_successfully": "task is started successfully.",
241
262
  "text.timeline-count": "{count} entries",
263
+ "text.write-your-comment-as-reference": "write your comment.",
242
264
  "title.activity": "activity",
243
265
  "title.activity application": "activity application",
244
266
  "title.activity approval": "activity approval",
@@ -19,6 +19,7 @@
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": "他の方が先に処理しました。一覧を再読み込みしてください。",
24
25
  "error.activity-instance is already issued": "このタスク({id})はすでに{state}状態で発行されています。",
@@ -41,6 +42,7 @@
41
42
  "field.approval-owner": "担当者",
42
43
  "field.approval-subject": "案件",
43
44
  "field.approval-submitted-at": "上申日",
45
+ "field.approval-view": "承認画面",
44
46
  "field.artifact": "さんしゅつぶつ",
45
47
  "field.assigned-at": "譲受日",
46
48
  "field.assignee": "譲受人",
@@ -72,6 +74,7 @@
72
74
  "field.quantifier": "数量",
73
75
  "field.readiness-gaps": "まだ出来ていないこと",
74
76
  "field.readiness-notes": "参考",
77
+ "field.reason": "理由",
75
78
  "field.release": "配布バージョン",
76
79
  "field.report-source": "レポート ソース",
77
80
  "field.report-type": "レポート タイプ",
@@ -95,6 +98,7 @@
95
98
  "field.updated-at": "修正時間",
96
99
  "field.view-source": "ビュー ソース",
97
100
  "field.view-type": "ビュー タイプ",
101
+ "field.what-is-built": "実装されているもの",
98
102
  "field.wl-changed-at": "最終変更",
99
103
  "field.wl-comment": "意見",
100
104
  "field.wl-drafter": "起案者",
@@ -151,6 +155,7 @@
151
155
  "label.approval-info": "承認情報",
152
156
  "label.approval-noted": "メモあり",
153
157
  "label.approval-round-n": "{n}回目の再提出",
158
+ "label.current-state": "現在の状態",
154
159
  "label.days": "日",
155
160
  "label.filter-aborted": "中断",
156
161
  "label.filter-deprecated": "廃棄",
@@ -179,7 +184,14 @@
179
184
  "label.thread-basics": "基本情報",
180
185
  "label.thread-info": "業務情報",
181
186
  "label.timeline": "タイムライン",
187
+ "label.what-changes": "承認すると変わること",
188
+ "label.what-it-was-judged-from": "判断の根拠",
189
+ "label.why-approval": "承認に上がった理由",
182
190
  "label.yes": "はい",
191
+ "text.activity-activated": "{name} をこのドメインで使用するようにしました。",
192
+ "text.activity-change-failed": "{name} を変更できませんでした — {why}",
193
+ "text.activity-change-not-allowed": "{name} を変更する権限がありません。管理者に業務活動の権限を依頼してください。",
194
+ "text.activity-deactivated": "{name} をオフにしました。この業務は今後上がりません。",
183
195
  "text.activity-guide-unwritten": "この業務の説明はまだ用意されていません。",
184
196
  "text.activity-in-use-here": "使用中",
185
197
  "text.activity-not-in-use-here": "まだ使用していません",
@@ -187,15 +199,19 @@
187
199
  "text.and-n-more": "他 {n} 件",
188
200
  "text.and-n-more-fields": "(他{n}件)",
189
201
  "text.approval-comment-hint": "承認は意見なしでもできます。差し戻すには理由を書く必要があります。",
202
+ "text.approval-is-irreversible": "承認すると元に戻せません。",
203
+ "text.approval-is-reversible": "承認後に元に戻せます。",
190
204
  "text.approval-line-empty": "決裁者がいません",
191
205
  "text.approval-line-steps": "{n}段階",
192
206
  "text.approval-line-unknown": "決裁ラインを読めませんでした",
207
+ "text.approval-view-not-loaded": "この業務の承認画面を読み込めませんでした。",
193
208
  "text.approver-not-yet": "未定",
194
209
  "text.assign": "割当",
195
210
  "text.calendar-not-loaded": "カレンダーを読み込めませんでした。この画面が空なのは、予定がないという意味ではありません",
196
211
  "text.catalog-not-loaded": "業務カタログを読み込めませんでした。",
197
212
  "text.copy-failed": "コピーできません",
198
213
  "text.copy-payload": "この値を原文(JSON)でコピーします",
214
+ "text.decision-keys-count": "判断項目 {n}件",
199
215
  "text.draft": "ドラフト保存",
200
216
  "text.due-just-passed": "過ぎたところ",
201
217
  "text.due-left-in": "残り{span}",
@@ -209,10 +225,12 @@
209
225
  "text.filter-due-hint": "{hours}時間以内に期限",
210
226
  "text.filter-important-hint": "優先度 {from} 以上",
211
227
  "text.finished-on-this-day": "この日に完了しました",
228
+ "text.generated-approval-view": "既定の画面",
212
229
  "text.group-approval-hint": "承認または却下すると次に進みます",
213
230
  "text.group-reference-hint": "決裁を止めません。意見があれば書けます",
214
231
  "text.handed-over-on-this-day": "期限がありません。この日に受け取りました",
215
232
  "text.installable-activities": "設置可能業務",
233
+ "text.model-in-out": "受け取る値 {taking}件 · 記入する値 {giving}件",
216
234
  "text.no activity thread info": "アクティビティスレッド情報なし",
217
235
  "text.no-activity-fields": "入力する項目がありません",
218
236
  "text.no-activity-fields-why": "この業務は内容を確認して提出すれば終わります。上の情報を確認して提出してください。",
@@ -224,12 +242,15 @@
224
242
  "text.no-due": "期限なし",
225
243
  "text.no-installable-activity": "登録された業務がありません",
226
244
  "text.no-installable-activity-why": "各機能が自分の業務を登録します。",
245
+ "text.no-reason-given": "理由が記入されていません。",
227
246
  "text.no-reference-description": "参照は決裁ではなくお知らせです。承認や却下をしなくても決裁は進み、意見があれば書けます。",
228
247
  "text.no-reference-title": "参照で届いた件はありません",
229
248
  "text.no-value": "値なし",
249
+ "text.own-approval-view": "専用",
230
250
  "text.pick": "選択",
231
251
  "text.reference-after-decision": "決定後に書かれた意見",
232
252
  "text.reference-closed-silent": "お知らせを受け取り、意見はありません",
253
+ "text.reference-comment-hint": "この方は参照です。意見のみを残し、承認と却下は承認者が行います。",
233
254
  "text.reference-open": "意見を書けます",
234
255
  "text.save": "保存",
235
256
  "text.task_is_approved_successfully": "業務が正常に承認されました。",
@@ -239,6 +260,7 @@
239
260
  "text.task_is_saved_successfully": "業務が正常に保存されました。",
240
261
  "text.task_is_started_successfully": "業務が正常に開始されました。",
241
262
  "text.timeline-count": "{count}件",
263
+ "text.write-your-comment-as-reference": "ご意見をご記入ください。",
242
264
  "title.activity": "業務",
243
265
  "title.activity application": "業務申込書作成",
244
266
  "title.activity approval": "業務承認",
@@ -19,6 +19,7 @@
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": "다른 분이 먼저 처리했습니다. 목록을 새로 읽어 주십시오.",
24
25
  "error.activity-instance is already issued": "이 작업({id})은 이미 {state} 상태로 제기되었습니다.",
@@ -41,6 +42,7 @@
41
42
  "field.approval-owner": "담당자",
42
43
  "field.approval-subject": "안건",
43
44
  "field.approval-submitted-at": "상신일",
45
+ "field.approval-view": "결재 화면",
44
46
  "field.artifact": "산출물",
45
47
  "field.assigned-at": "할당 시간",
46
48
  "field.assignee": "피할당자",
@@ -72,6 +74,7 @@
72
74
  "field.quantifier": "수량",
73
75
  "field.readiness-gaps": "아직 안 된 것",
74
76
  "field.readiness-notes": "참고",
77
+ "field.reason": "사유",
75
78
  "field.release": "배포버전",
76
79
  "field.report-source": "리포트 소스",
77
80
  "field.report-type": "리포트 타입",
@@ -95,6 +98,7 @@
95
98
  "field.updated-at": "수정 시간",
96
99
  "field.view-source": "뷰 소스",
97
100
  "field.view-type": "뷰 타입",
101
+ "field.what-is-built": "서 있는 것",
98
102
  "field.wl-changed-at": "최근 변경",
99
103
  "field.wl-comment": "의견",
100
104
  "field.wl-drafter": "기안자",
@@ -151,6 +155,7 @@
151
155
  "label.approval-info": "결재 정보",
152
156
  "label.approval-noted": "메모 있음",
153
157
  "label.approval-round-n": "{n}차 재상신",
158
+ "label.current-state": "지금 상태",
154
159
  "label.days": "일",
155
160
  "label.filter-aborted": "중단",
156
161
  "label.filter-deprecated": "폐기",
@@ -170,32 +175,43 @@
170
175
  "label.issued-by-me": "내가 생성한 태스크",
171
176
  "label.minutes": "분",
172
177
  "label.no": "아니오",
173
- "label.readiness-declared": "아직 동작 안 함",
174
- "label.readiness-not-worklist": "업무함에 오지 않음",
175
- "label.readiness-partial": "일부만 동작",
176
- "label.readiness-planned": "예정",
177
- "label.readiness-working": "동작함",
178
+ "label.readiness-declared": "동작 없음",
179
+ "label.readiness-not-worklist": "다른 화면에서 처리",
180
+ "label.readiness-partial": "일부 동작",
181
+ "label.readiness-planned": "미구현",
182
+ "label.readiness-working": "사용 가능",
178
183
  "label.seconds": "초",
179
184
  "label.thread-basics": "기본 정보",
180
185
  "label.thread-info": "업무 정보",
181
186
  "label.timeline": "타임라인",
187
+ "label.what-changes": "승인하면 달라지는 것",
188
+ "label.what-it-was-judged-from": "판단 근거",
189
+ "label.why-approval": "결재로 올라온 이유",
182
190
  "label.yes": "예",
191
+ "text.activity-activated": "{name} 을 이 도메인에서 쓰도록 켰습니다.",
192
+ "text.activity-change-failed": "{name} 을 바꾸지 못했습니다 — {why}",
193
+ "text.activity-change-not-allowed": "{name} 을 바꿀 권한이 없습니다. 관리자에게 업무 활동 권한을 요청하십시오.",
194
+ "text.activity-deactivated": "{name} 을 껐습니다. 이 업무는 더 이상 올라오지 않습니다.",
183
195
  "text.activity-guide-unwritten": "이 업무의 설명이 아직 준비되지 않았습니다.",
184
196
  "text.activity-in-use-here": "사용 중",
185
- "text.activity-not-in-use-here": "아직 사용 안 함",
197
+ "text.activity-not-in-use-here": "미사용",
186
198
  "text.activity_instance_aborted_successfully": "업무인스턴스가 정상적으로 중단되었습니다.",
187
199
  "text.and-n-more": "{n}건 더",
188
200
  "text.and-n-more-fields": "(외 {n}개 항목)",
189
201
  "text.approval-comment-hint": "승인은 의견 없이도 할 수 있습니다. 반려하려면 이유를 적어야 합니다.",
202
+ "text.approval-is-irreversible": "승인하면 되돌릴 수 없습니다.",
203
+ "text.approval-is-reversible": "승인한 뒤에 되돌릴 수 있습니다.",
190
204
  "text.approval-line-empty": "결재자가 없습니다",
191
205
  "text.approval-line-steps": "{n}단계",
192
206
  "text.approval-line-unknown": "결재선을 읽지 못했습니다",
207
+ "text.approval-view-not-loaded": "이 업무의 결재 화면을 불러오지 못했습니다.",
193
208
  "text.approver-not-yet": "아직 없음",
194
209
  "text.assign": "할당",
195
210
  "text.calendar-not-loaded": "달력을 불러오지 못했습니다. 이 화면이 비어 있는 것은 할 일이 없다는 뜻이 아닙니다",
196
211
  "text.catalog-not-loaded": "업무 카탈로그를 불러오지 못했습니다.",
197
212
  "text.copy-failed": "복사할 수 없습니다",
198
213
  "text.copy-payload": "이 값을 원문(JSON)으로 복사합니다",
214
+ "text.decision-keys-count": "판단 항목 {n}개",
199
215
  "text.draft": "초안저장",
200
216
  "text.due-just-passed": "방금 지남",
201
217
  "text.due-left-in": "{span} 남음",
@@ -209,10 +225,12 @@
209
225
  "text.filter-due-hint": "{hours}시간 안에 만기",
210
226
  "text.filter-important-hint": "우선순위 {from} 이상",
211
227
  "text.finished-on-this-day": "이 날 끝났습니다",
228
+ "text.generated-approval-view": "기본 화면",
212
229
  "text.group-approval-hint": "승인하거나 반려해야 다음으로 넘어갑니다",
213
230
  "text.group-reference-hint": "결재를 막지 않습니다. 의견이 있으면 적을 수 있습니다",
214
231
  "text.handed-over-on-this-day": "기한이 없습니다. 이 날 받았습니다",
215
232
  "text.installable-activities": "설치 가능 업무",
233
+ "text.model-in-out": "받는 값 {taking}개 · 적어 낼 값 {giving}개",
216
234
  "text.no activity thread info": "업무활동 정보가 없습니다.",
217
235
  "text.no-activity-fields": "입력할 항목이 없습니다",
218
236
  "text.no-activity-fields-why": "이 업무는 내용을 확인하고 제출하면 끝납니다. 위의 정보를 보고 제출하세요.",
@@ -224,12 +242,15 @@
224
242
  "text.no-due": "기한 없음",
225
243
  "text.no-installable-activity": "등록된 업무가 없습니다",
226
244
  "text.no-installable-activity-why": "각 기능이 자기 업무를 등록합니다.",
245
+ "text.no-reason-given": "사유가 적혀 있지 않습니다.",
227
246
  "text.no-reference-description": "참조는 결재가 아니라 알림입니다. 승인이나 반려를 하지 않아도 결재는 진행되고, 의견이 있으면 적을 수 있습니다.",
228
247
  "text.no-reference-title": "참조받은 건이 없습니다",
229
248
  "text.no-value": "값 없음",
249
+ "text.own-approval-view": "전용",
230
250
  "text.pick": "선택",
231
251
  "text.reference-after-decision": "결정 뒤에 적은 의견",
232
252
  "text.reference-closed-silent": "알림만 받고 끝났습니다",
253
+ "text.reference-comment-hint": "이 자리는 참조입니다. 의견만 남기고, 승인과 반려는 결재자가 합니다.",
233
254
  "text.reference-open": "의견을 적을 수 있습니다",
234
255
  "text.save": "저장",
235
256
  "text.task_is_approved_successfully": "업무가 성공적으로 승인되었습니다.",
@@ -239,6 +260,7 @@
239
260
  "text.task_is_saved_successfully": "업무가 성공적으로 저장되었습니다.",
240
261
  "text.task_is_started_successfully": "업무가 성공적으로 시작되었습니다.",
241
262
  "text.timeline-count": "{count}건",
263
+ "text.write-your-comment-as-reference": "의견을 적어 주십시오.",
242
264
  "title.activity": "업무",
243
265
  "title.activity application": "업무 신청서 작성",
244
266
  "title.activity approval": "업무승인",
@@ -19,6 +19,7 @@
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.",
24
25
  "error.activity-instance is already issued": "Tugas ini ({id}) telah dikeluarkan dengan status {state}.",
@@ -41,6 +42,7 @@
41
42
  "field.approval-owner": "pemilik",
42
43
  "field.approval-subject": "perkara",
43
44
  "field.approval-submitted-at": "dihantar",
45
+ "field.approval-view": "skrin kelulusan",
44
46
  "field.artifact": "hasil keluaran",
45
47
  "field.assigned-at": "diberi pada",
46
48
  "field.assignee": "pemberi tugasan",
@@ -72,6 +74,7 @@
72
74
  "field.quantifier": "pemboleh ubah",
73
75
  "field.readiness-gaps": "belum siap",
74
76
  "field.readiness-notes": "nota",
77
+ "field.reason": "sebab",
75
78
  "field.release": "lepas",
76
79
  "field.report-source": "sumber laporan",
77
80
  "field.report-type": "jenis laporan",
@@ -95,6 +98,7 @@
95
98
  "field.updated-at": "dikemaskini pada",
96
99
  "field.view-source": "sumber pandangan",
97
100
  "field.view-type": "jenis pandangan",
101
+ "field.what-is-built": "apa yang dibina",
98
102
  "field.wl-changed-at": "perubahan terakhir",
99
103
  "field.wl-comment": "komen",
100
104
  "field.wl-drafter": "dihantar oleh",
@@ -151,6 +155,7 @@
151
155
  "label.approval-info": "maklumat kelulusan",
152
156
  "label.approval-noted": "ada nota",
153
157
  "label.approval-round-n": "dihantar semula, pusingan {n}",
158
+ "label.current-state": "keadaan sekarang",
154
159
  "label.days": "hari",
155
160
  "label.filter-aborted": "dibatalkan",
156
161
  "label.filter-deprecated": "digugur",
@@ -179,7 +184,14 @@
179
184
  "label.thread-basics": "maklumat asas",
180
185
  "label.thread-info": "maklumat tugas",
181
186
  "label.timeline": "garis masa",
187
+ "label.what-changes": "apa yang berubah selepas kelulusan",
188
+ "label.what-it-was-judged-from": "dasar penilaian",
189
+ "label.why-approval": "sebab ini dibawa untuk kelulusan",
182
190
  "label.yes": "ya",
191
+ "text.activity-activated": "{name} kini dihidupkan untuk domain ini.",
192
+ "text.activity-change-failed": "{name} tidak berubah — {why}",
193
+ "text.activity-change-not-allowed": "anda tiada keizinan untuk mengubah {name}. minta keizinan aktiviti daripada pentadbir.",
194
+ "text.activity-deactivated": "{name} dimatikan. kerja ini tidak akan dibangkitkan lagi.",
183
195
  "text.activity-guide-unwritten": "keterangan kerja ini belum disiapkan.",
184
196
  "text.activity-in-use-here": "digunakan",
185
197
  "text.activity-not-in-use-here": "belum digunakan",
@@ -187,15 +199,19 @@
187
199
  "text.and-n-more": "{n} lagi",
188
200
  "text.and-n-more-fields": "({n} lagi)",
189
201
  "text.approval-comment-hint": "anda boleh meluluskan tanpa komen. untuk menolak, anda mesti menulis sebab.",
202
+ "text.approval-is-irreversible": "setelah diluluskan, ini tidak boleh dibatalkan.",
203
+ "text.approval-is-reversible": "ini boleh dibatalkan selepas kelulusan.",
190
204
  "text.approval-line-empty": "tiada pelulus",
191
205
  "text.approval-line-steps": "{n} peringkat",
192
206
  "text.approval-line-unknown": "tidak dapat membaca barisan kelulusan",
207
+ "text.approval-view-not-loaded": "skrin kelulusan untuk aktiviti ini tidak dapat dimuatkan.",
193
208
  "text.approver-not-yet": "belum ada",
194
209
  "text.assign": "berikan",
195
210
  "text.calendar-not-loaded": "kalendar tidak dapat dimuatkan. skrin kosong di sini tidak bermakna anda tiada kerja",
196
211
  "text.catalog-not-loaded": "katalog kerja tidak dapat dimuatkan.",
197
212
  "text.copy-failed": "tidak dapat menyalin",
198
213
  "text.copy-payload": "salin nilai ini sebagai json asal",
214
+ "text.decision-keys-count": "{n} kunci keputusan",
199
215
  "text.draft": "draf",
200
216
  "text.due-just-passed": "baru lewat",
201
217
  "text.due-left-in": "tinggal {span}",
@@ -209,10 +225,12 @@
209
225
  "text.filter-due-hint": "tamat tempoh dalam {hours} jam",
210
226
  "text.filter-important-hint": "keutamaan {from} atau lebih tinggi",
211
227
  "text.finished-on-this-day": "selesai pada hari ini",
228
+ "text.generated-approval-view": "skrin lalai",
212
229
  "text.group-approval-hint": "ia hanya bergerak selepas anda luluskan atau tolak",
213
230
  "text.group-reference-hint": "ia tidak menghalang kelulusan. beri pendapat jika ada",
214
231
  "text.handed-over-on-this-day": "tiada tarikh akhir. diterima pada hari ini",
215
232
  "text.installable-activities": "aktiviti yang boleh dipasang",
233
+ "text.model-in-out": "{taking} nilai diterima, {giving} untuk diisi",
216
234
  "text.no activity thread info": "tiada maklumat thread aktiviti",
217
235
  "text.no-activity-fields": "tiada medan untuk diisi",
218
236
  "text.no-activity-fields-why": "tugas ini selesai apabila anda menyemak dan menghantarnya. semak maklumat di atas dan hantar.",
@@ -224,12 +242,15 @@
224
242
  "text.no-due": "tiada tarikh akhir",
225
243
  "text.no-installable-activity": "tiada kerja didaftarkan",
226
244
  "text.no-installable-activity-why": "setiap fungsi mendaftarkan kerjanya sendiri.",
245
+ "text.no-reason-given": "tiada sebab ditulis.",
227
246
  "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
247
  "text.no-reference-title": "tiada yang dihantar untuk pengetahuan anda",
229
248
  "text.no-value": "tiada nilai",
249
+ "text.own-approval-view": "tersendiri",
230
250
  "text.pick": "pilih",
231
251
  "text.reference-after-decision": "pendapat selepas keputusan",
232
252
  "text.reference-closed-silent": "dimaklumkan, tiada pendapat",
253
+ "text.reference-comment-hint": "anda ialah rujukan di sini. anda tinggalkan komen; kelulusan dan penolakan adalah untuk pelulus.",
233
254
  "text.reference-open": "anda boleh beri pendapat",
234
255
  "text.save": "simpan",
235
256
  "text.task_is_approved_successfully": "tugas berjaya diluluskan",
@@ -239,6 +260,7 @@
239
260
  "text.task_is_saved_successfully": "tugas berjaya disimpan",
240
261
  "text.task_is_started_successfully": "tugas berjaya bermula.",
241
262
  "text.timeline-count": "{count} rekod",
263
+ "text.write-your-comment-as-reference": "tuliskan komen anda.",
242
264
  "title.activity": "perniagaan",
243
265
  "title.activity application": "permohonan aktiviti",
244
266
  "title.activity approval": "kelulusan perniagaan",
@@ -19,6 +19,7 @@
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": "他人已先行处理,请重新加载列表。",
24
25
  "error.activity-instance is already issued": "此任务({id})已被以{state}状态提出。",
@@ -41,6 +42,7 @@
41
42
  "field.approval-owner": "负责人",
42
43
  "field.approval-subject": "事项",
43
44
  "field.approval-submitted-at": "提交日",
45
+ "field.approval-view": "审批界面",
44
46
  "field.artifact": "产物",
45
47
  "field.assigned-at": "分配于",
46
48
  "field.assignee": "受让人",
@@ -72,6 +74,7 @@
72
74
  "field.quantifier": "定量器",
73
75
  "field.readiness-gaps": "尚未完成的部分",
74
76
  "field.readiness-notes": "参考",
77
+ "field.reason": "事由",
75
78
  "field.release": "释放",
76
79
  "field.report-source": "报告来源",
77
80
  "field.report-type": "报告类型",
@@ -95,6 +98,7 @@
95
98
  "field.updated-at": "更新于",
96
99
  "field.view-source": "视图来源",
97
100
  "field.view-type": "视图类型",
101
+ "field.what-is-built": "已实现的部分",
98
102
  "field.wl-changed-at": "最近变更",
99
103
  "field.wl-comment": "意见",
100
104
  "field.wl-drafter": "起草人",
@@ -151,6 +155,7 @@
151
155
  "label.approval-info": "审批信息",
152
156
  "label.approval-noted": "有备注",
153
157
  "label.approval-round-n": "第{n}次重新提交",
158
+ "label.current-state": "当前状态",
154
159
  "label.days": "天",
155
160
  "label.filter-aborted": "已中止",
156
161
  "label.filter-deprecated": "已弃用",
@@ -179,7 +184,14 @@
179
184
  "label.thread-basics": "基本信息",
180
185
  "label.thread-info": "任务信息",
181
186
  "label.timeline": "时间线",
187
+ "label.what-changes": "批准后将发生的变化",
188
+ "label.what-it-was-judged-from": "判断依据",
189
+ "label.why-approval": "提交审批的原因",
182
190
  "label.yes": "是",
191
+ "text.activity-activated": "已在此域中启用 {name}。",
192
+ "text.activity-change-failed": "未能更改 {name} — {why}",
193
+ "text.activity-change-not-allowed": "您无权更改 {name}。请向管理员申请业务活动权限。",
194
+ "text.activity-deactivated": "已停用 {name}。此业务将不再提交。",
183
195
  "text.activity-guide-unwritten": "此业务的说明尚未准备。",
184
196
  "text.activity-in-use-here": "使用中",
185
197
  "text.activity-not-in-use-here": "尚未使用",
@@ -187,15 +199,19 @@
187
199
  "text.and-n-more": "还有 {n} 件",
188
200
  "text.and-n-more-fields": "(另{n}项)",
189
201
  "text.approval-comment-hint": "批准时可以不填意见。驳回时必须填写理由。",
202
+ "text.approval-is-irreversible": "批准后无法撤销。",
203
+ "text.approval-is-reversible": "批准后可以撤销。",
190
204
  "text.approval-line-empty": "没有审批人",
191
205
  "text.approval-line-steps": "{n} 级",
192
206
  "text.approval-line-unknown": "无法读取审批线",
207
+ "text.approval-view-not-loaded": "无法加载此业务的审批界面。",
193
208
  "text.approver-not-yet": "尚未确定",
194
209
  "text.assign": "分配",
195
210
  "text.calendar-not-loaded": "无法加载日历。此处为空并不表示您没有待办事项",
196
211
  "text.catalog-not-loaded": "无法加载业务目录。",
197
212
  "text.copy-failed": "无法复制",
198
213
  "text.copy-payload": "以原始 JSON 复制此值",
214
+ "text.decision-keys-count": "判断项 {n} 个",
199
215
  "text.draft": "草稿",
200
216
  "text.due-just-passed": "刚刚超期",
201
217
  "text.due-left-in": "剩余{span}",
@@ -209,10 +225,12 @@
209
225
  "text.filter-due-hint": "{hours}小时内到期",
210
226
  "text.filter-important-hint": "优先级 {from} 及以上",
211
227
  "text.finished-on-this-day": "这天完成",
228
+ "text.generated-approval-view": "默认界面",
212
229
  "text.group-approval-hint": "您批准或驳回后才会继续",
213
230
  "text.group-reference-hint": "不会阻断审批。有意见可以写下来",
214
231
  "text.handed-over-on-this-day": "没有期限。这天收到",
215
232
  "text.installable-activities": "可安装的业务",
233
+ "text.model-in-out": "接收值 {taking} 项 · 待填写 {giving} 项",
216
234
  "text.no activity thread info": "无活动线程信息",
217
235
  "text.no-activity-fields": "没有需要填写的项目",
218
236
  "text.no-activity-fields-why": "此任务只需确认内容并提交即可完成。请查看以上信息后提交。",
@@ -224,12 +242,15 @@
224
242
  "text.no-due": "无期限",
225
243
  "text.no-installable-activity": "没有已注册的业务",
226
244
  "text.no-installable-activity-why": "各功能注册自己的业务。",
245
+ "text.no-reason-given": "未填写事由。",
227
246
  "text.no-reference-description": "知会是通知,不是审批。您不回应审批也会继续,有意见可以写下来。",
228
247
  "text.no-reference-title": "没有知会您的事项",
229
248
  "text.no-value": "无值",
249
+ "text.own-approval-view": "专用",
230
250
  "text.pick": "挑选",
231
251
  "text.reference-after-decision": "决定之后写的意见",
232
252
  "text.reference-closed-silent": "只收到通知,没有意见",
253
+ "text.reference-comment-hint": "您在此为参照人。仅留下意见,批准与驳回由审批人处理。",
233
254
  "text.reference-open": "可以写意见",
234
255
  "text.save": "保存",
235
256
  "text.task_is_approved_successfully": "任务已成功批准。",
@@ -239,6 +260,7 @@
239
260
  "text.task_is_saved_successfully": "任务已成功保存。",
240
261
  "text.task_is_started_successfully": "任务已成功开始。",
241
262
  "text.timeline-count": "{count}条",
263
+ "text.write-your-comment-as-reference": "请填写您的意见。",
242
264
  "title.activity": "业务",
243
265
  "title.activity application": "业务申请",
244
266
  "title.activity approval": "业务批准",