@masterteam/governance 0.0.8 → 0.0.9

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.
@@ -1,199 +1,199 @@
1
- {
2
- "governance": {
3
- "governance-rules": "Governance Rules",
4
- "control-panel": "Control Panel",
5
- "all": "All",
6
- "active": "Active",
7
- "inactive": "Inactive",
8
- "add-rule": "Add Rule",
9
- "edit-rule": "Edit Rule",
10
- "create": "Create",
11
- "update": "Update",
12
- "delete": "Delete",
13
- "status": "Status",
14
- "name": "Name",
15
- "rule-type": "Rule Type",
16
- "scope": "Scope",
17
- "target-module": "Target Module",
18
- "priority": "Priority",
19
- "toggle-active": "Toggle Active",
20
- "warning": "Warning",
21
- "rule": "Rule",
22
- "basic-information": "Basic Information",
23
- "rule-key": "Rule Key",
24
- "name-en": "Name (English)",
25
- "name-en-placeholder": "Enter rule name in English",
26
- "name-ar": "Name (Arabic)",
27
- "name-ar-placeholder": "Enter rule name in Arabic",
28
- "description-en": "Description (English)",
29
- "description-en-placeholder": "Optional description in English",
30
- "description-ar": "Description (Arabic)",
31
- "description-ar-placeholder": "Optional description in Arabic",
32
- "error-message-en": "Error Message (English)",
33
- "error-message-en-placeholder": "Message shown when rule is violated",
34
- "error-message-ar": "Error Message (Arabic)",
35
- "error-message-ar-placeholder": "Message shown when rule is violated (Arabic)",
36
- "rule-target": "Rule Target",
37
- "target-scope": "Target Scope",
38
- "target-module-placeholder": "e.g., Charter (leave empty for all)",
39
- "target-operation": "Target Operation",
40
- "rule-configuration": "Rule Configuration",
41
- "module-key": "Module Key",
42
- "max-count": "Maximum Count",
43
- "min-count": "Minimum Count",
44
- "field-key": "Field Key",
45
- "expected-value": "Expected Value",
46
- "required-module": "Required Module",
47
- "phase-gate-schema-id": "Phase Gate Schema ID",
48
- "request-schema-id": "Request Schema ID",
49
- "blocking-statuses": "Blocking Statuses",
50
- "optional": "Optional",
51
- "execution-settings": "Execution Settings",
52
- "stop-on-failure": "Stop on Failure",
53
- "active-rule": "Active Rule",
54
- "action-blocked": "Action Blocked",
55
- "action-cannot-be-completed": "This action cannot be completed due to governance rules.",
56
- "understood": "Understood",
57
- "scope-level": "Level",
58
- "scope-module": "Module",
59
- "scope-phase-gate": "Phase Gate",
60
- "rule-types": {
61
- "ModuleExists": "Module Exists",
62
- "ModuleDoesNotExist": "Module Does Not Exist",
63
- "ModuleMaxCount": "Module Max Count",
64
- "ModuleMinCount": "Module Min Count",
65
- "FieldRequired": "Field Required",
66
- "FieldValue": "Field Value",
67
- "PhaseGateModuleRequired": "Phase Gate Module Required",
68
- "NoActiveRequest": "No Active Request"
69
- },
70
- "wizard": {
71
- "where-question": "Where should this rule apply?",
72
- "when-question": "When should this rule run?",
73
- "what-question": "What do you want to enforce?",
74
- "details-question": "Provide the required details",
75
- "summary-title": "Review before save",
76
- "summary-empty": "Choose where this rule applies, when it should run, and what it should enforce.",
77
- "complete-required-fields": "Complete the required fields before saving.",
78
- "rule-key-placeholder": "e.g., charter-required",
79
- "specific-module-label": "Which module?",
80
- "select-placeholder": "Select an option",
81
- "required-module-label": "Which module is required?",
82
- "blocked-module-label": "Which module must not exist?",
83
- "counted-module-label": "Which module should be counted?",
84
- "max-count-label": "What is the maximum count?",
85
- "min-count-label": "What is the minimum count?",
86
- "phase-gate-required-label": "Which phase gate is required?",
87
- "phase-gate-optional-label": "Which phase gate does this apply to?",
88
- "request-schema-label": "Which request should block this action?",
89
- "request-schema-hint": "Leave empty to block on any active request.",
90
- "blocking-statuses-label": "Which statuses should block it?",
91
- "property-label": "Which property should be checked?",
92
- "operator-label": "Which operator should be used?",
93
- "expected-value-label": "What value is expected?",
94
- "legacy-title": "Legacy rule editor",
95
- "legacy-description": "This rule does not match the guided governance builder yet, so it is shown in the legacy editor.",
96
- "no-recipes-title": "No valid rule recipes",
97
- "no-recipes-description": "The current combination of applies-to and action does not match any supported governance recipe.",
98
- "required-message": "This field is required.",
99
- "key-pattern-message": "Use lowercase letters, numbers, and hyphens only.",
100
- "applies-to": {
101
- "level": {
102
- "label": "Entire level",
103
- "description": "Apply this rule to actions that affect the whole level."
104
- },
105
- "any-module": {
106
- "label": "Any module",
107
- "description": "Apply this rule to any module without picking a specific one."
108
- },
109
- "specific-module": {
110
- "label": "A specific module",
111
- "description": "Apply this rule only to the module you choose."
112
- },
113
- "phase-gate": {
114
- "label": "Phase gate",
115
- "description": "Apply this rule to phase gate actions."
116
- }
117
- },
118
- "actions": {
119
- "create": "Create",
120
- "update": "Update",
121
- "delete": "Delete"
122
- },
123
- "operators": {
124
- "Equals": "Equals",
125
- "NotEquals": "Does not equal",
126
- "Contains": "Contains",
127
- "GreaterThan": "Greater than",
128
- "LessThan": "Less than"
129
- },
130
- "recipes": {
131
- "require-module": {
132
- "label": "Require another module first",
133
- "description": "Block the action until another module already exists."
134
- },
135
- "prevent-module": {
136
- "label": "Prevent this if another module already exists",
137
- "description": "Use this when the action must stop if a specific module is already present."
138
- },
139
- "module-max-count": {
140
- "label": "Limit the maximum number of modules",
141
- "description": "Use this to cap how many times a module can exist."
142
- },
143
- "module-min-count": {
144
- "label": "Require a minimum number of modules",
145
- "description": "Use this when the action should require a minimum count before continuing."
146
- },
147
- "phase-gate-completed": {
148
- "label": "Require a phase gate to be completed",
149
- "description": "Block the action until the required phase gate is completed."
150
- },
151
- "phase-gate-module-required": {
152
- "label": "Require a module before phase gate action",
153
- "description": "Use this when a module must exist before a phase gate action can continue."
154
- },
155
- "no-active-request": {
156
- "label": "Prevent this while there is an active request",
157
- "description": "Use this to stop the action while approvals or requests are still active."
158
- },
159
- "property-value": {
160
- "label": "Check that a property has a specific value",
161
- "description": "Use this to compare one property against an expected value."
162
- }
163
- },
164
- "summary": {
165
- "full": "{{action}}, {{detail}}.",
166
- "action": "When {{object}} {{action}}",
167
- "objects": {
168
- "level": "the level",
169
- "any-module": "a module",
170
- "specific-module": "this module",
171
- "phase-gate": "a phase gate"
172
- },
173
- "actions": {
174
- "create": "is created",
175
- "update": "is updated",
176
- "delete": "is deleted"
177
- },
178
- "require-module": "require {{module}} to exist first",
179
- "prevent-module": "block the action if {{module}} already exists",
180
- "module-max-count": "allow at most {{count}} {{module}}",
181
- "module-min-count": "require at least {{count}} {{module}}",
182
- "phase-gate-completed": "require {{phaseGate}} to be completed",
183
- "phase-gate-module-required": "require {{module}} before the phase gate action",
184
- "no-active-request": "block the action while {{request}} exists",
185
- "property-value": "check that {{property}} {{operator}} {{expectedValue}}",
186
- "fallbacks": {
187
- "module": "another module",
188
- "selected-module": "the selected module",
189
- "required-module": "the selected module",
190
- "modules": "modules",
191
- "phase-gate": "the selected phase gate",
192
- "request": "an active request",
193
- "property": "the selected property",
194
- "operator": "matches"
195
- }
196
- }
197
- }
198
- }
199
- }
1
+ {
2
+ "governance": {
3
+ "governance-rules": "Governance Rules",
4
+ "control-panel": "Control Panel",
5
+ "all": "All",
6
+ "active": "Active",
7
+ "inactive": "Inactive",
8
+ "add-rule": "Add Rule",
9
+ "edit-rule": "Edit Rule",
10
+ "create": "Create",
11
+ "update": "Update",
12
+ "delete": "Delete",
13
+ "status": "Status",
14
+ "name": "Name",
15
+ "rule-type": "Rule Type",
16
+ "scope": "Scope",
17
+ "target-module": "Target Module",
18
+ "priority": "Priority",
19
+ "toggle-active": "Toggle Active",
20
+ "warning": "Warning",
21
+ "rule": "Rule",
22
+ "basic-information": "Basic Information",
23
+ "rule-key": "Rule Key",
24
+ "name-en": "Name (English)",
25
+ "name-en-placeholder": "Enter rule name in English",
26
+ "name-ar": "Name (Arabic)",
27
+ "name-ar-placeholder": "Enter rule name in Arabic",
28
+ "description-en": "Description (English)",
29
+ "description-en-placeholder": "Optional description in English",
30
+ "description-ar": "Description (Arabic)",
31
+ "description-ar-placeholder": "Optional description in Arabic",
32
+ "error-message-en": "Error Message (English)",
33
+ "error-message-en-placeholder": "Message shown when rule is violated",
34
+ "error-message-ar": "Error Message (Arabic)",
35
+ "error-message-ar-placeholder": "Message shown when rule is violated (Arabic)",
36
+ "rule-target": "Rule Target",
37
+ "target-scope": "Target Scope",
38
+ "target-module-placeholder": "e.g., Charter (leave empty for all)",
39
+ "target-operation": "Target Operation",
40
+ "rule-configuration": "Rule Configuration",
41
+ "module-key": "Module Key",
42
+ "max-count": "Maximum Count",
43
+ "min-count": "Minimum Count",
44
+ "field-key": "Field Key",
45
+ "expected-value": "Expected Value",
46
+ "required-module": "Required Module",
47
+ "phase-gate-schema-id": "Phase Gate Schema ID",
48
+ "request-schema-id": "Request Schema ID",
49
+ "blocking-statuses": "Blocking Statuses",
50
+ "optional": "Optional",
51
+ "execution-settings": "Execution Settings",
52
+ "stop-on-failure": "Stop on Failure",
53
+ "active-rule": "Active Rule",
54
+ "action-blocked": "Action Blocked",
55
+ "action-cannot-be-completed": "This action cannot be completed due to governance rules.",
56
+ "understood": "Understood",
57
+ "scope-level": "Level",
58
+ "scope-module": "Module",
59
+ "scope-phase-gate": "Phase Gate",
60
+ "rule-types": {
61
+ "ModuleExists": "Module Exists",
62
+ "ModuleDoesNotExist": "Module Does Not Exist",
63
+ "ModuleMaxCount": "Module Max Count",
64
+ "ModuleMinCount": "Module Min Count",
65
+ "FieldRequired": "Field Required",
66
+ "FieldValue": "Field Value",
67
+ "PhaseGateModuleRequired": "Phase Gate Module Required",
68
+ "NoActiveRequest": "No Active Request"
69
+ },
70
+ "wizard": {
71
+ "where-question": "Where should this rule apply?",
72
+ "when-question": "When should this rule run?",
73
+ "what-question": "What do you want to enforce?",
74
+ "details-question": "Provide the required details",
75
+ "summary-title": "Review before save",
76
+ "summary-empty": "Choose where this rule applies, when it should run, and what it should enforce.",
77
+ "complete-required-fields": "Complete the required fields before saving.",
78
+ "rule-key-placeholder": "e.g., charter-required",
79
+ "specific-module-label": "Which module?",
80
+ "select-placeholder": "Select an option",
81
+ "required-module-label": "Which module is required?",
82
+ "blocked-module-label": "Which module must not exist?",
83
+ "counted-module-label": "Which module should be counted?",
84
+ "max-count-label": "What is the maximum count?",
85
+ "min-count-label": "What is the minimum count?",
86
+ "phase-gate-required-label": "Which phase gate is required?",
87
+ "phase-gate-optional-label": "Which phase gate does this apply to?",
88
+ "request-schema-label": "Which request should block this action?",
89
+ "request-schema-hint": "Leave empty to block on any active request.",
90
+ "blocking-statuses-label": "Which statuses should block it?",
91
+ "property-label": "Which property should be checked?",
92
+ "operator-label": "Which operator should be used?",
93
+ "expected-value-label": "What value is expected?",
94
+ "legacy-title": "Legacy rule editor",
95
+ "legacy-description": "This rule does not match the guided governance builder yet, so it is shown in the legacy editor.",
96
+ "no-recipes-title": "No valid rule recipes",
97
+ "no-recipes-description": "The current combination of applies-to and action does not match any supported governance recipe.",
98
+ "required-message": "This field is required.",
99
+ "key-pattern-message": "Use lowercase letters, numbers, and hyphens only.",
100
+ "applies-to": {
101
+ "level": {
102
+ "label": "Entire level",
103
+ "description": "Apply this rule to actions that affect the whole level."
104
+ },
105
+ "any-module": {
106
+ "label": "Any module",
107
+ "description": "Apply this rule to any module without picking a specific one."
108
+ },
109
+ "specific-module": {
110
+ "label": "A specific module",
111
+ "description": "Apply this rule only to the module you choose."
112
+ },
113
+ "phase-gate": {
114
+ "label": "Phase gate",
115
+ "description": "Apply this rule to phase gate actions."
116
+ }
117
+ },
118
+ "actions": {
119
+ "create": "Create",
120
+ "update": "Update",
121
+ "delete": "Delete"
122
+ },
123
+ "operators": {
124
+ "Equals": "Equals",
125
+ "NotEquals": "Does not equal",
126
+ "Contains": "Contains",
127
+ "GreaterThan": "Greater than",
128
+ "LessThan": "Less than"
129
+ },
130
+ "recipes": {
131
+ "require-module": {
132
+ "label": "Require another module first",
133
+ "description": "Block the action until another module already exists."
134
+ },
135
+ "prevent-module": {
136
+ "label": "Prevent this if another module already exists",
137
+ "description": "Use this when the action must stop if a specific module is already present."
138
+ },
139
+ "module-max-count": {
140
+ "label": "Limit the maximum number of modules",
141
+ "description": "Use this to cap how many times a module can exist."
142
+ },
143
+ "module-min-count": {
144
+ "label": "Require a minimum number of modules",
145
+ "description": "Use this when the action should require a minimum count before continuing."
146
+ },
147
+ "phase-gate-completed": {
148
+ "label": "Require a phase gate to be completed",
149
+ "description": "Block the action until the required phase gate is completed."
150
+ },
151
+ "phase-gate-module-required": {
152
+ "label": "Require a module before phase gate action",
153
+ "description": "Use this when a module must exist before a phase gate action can continue."
154
+ },
155
+ "no-active-request": {
156
+ "label": "Prevent this while there is an active request",
157
+ "description": "Use this to stop the action while approvals or requests are still active."
158
+ },
159
+ "property-value": {
160
+ "label": "Check that a property has a specific value",
161
+ "description": "Use this to compare one property against an expected value."
162
+ }
163
+ },
164
+ "summary": {
165
+ "full": "{{action}}, {{detail}}.",
166
+ "action": "When {{object}} {{action}}",
167
+ "objects": {
168
+ "level": "the level",
169
+ "any-module": "a module",
170
+ "specific-module": "this module",
171
+ "phase-gate": "a phase gate"
172
+ },
173
+ "actions": {
174
+ "create": "is created",
175
+ "update": "is updated",
176
+ "delete": "is deleted"
177
+ },
178
+ "require-module": "require {{module}} to exist first",
179
+ "prevent-module": "block the action if {{module}} already exists",
180
+ "module-max-count": "allow at most {{count}} {{module}}",
181
+ "module-min-count": "require at least {{count}} {{module}}",
182
+ "phase-gate-completed": "require {{phaseGate}} to be completed",
183
+ "phase-gate-module-required": "require {{module}} before the phase gate action",
184
+ "no-active-request": "block the action while {{request}} exists",
185
+ "property-value": "check that {{property}} {{operator}} {{expectedValue}}",
186
+ "fallbacks": {
187
+ "module": "another module",
188
+ "selected-module": "the selected module",
189
+ "required-module": "the selected module",
190
+ "modules": "modules",
191
+ "phase-gate": "the selected phase gate",
192
+ "request": "an active request",
193
+ "property": "the selected property",
194
+ "operator": "matches"
195
+ }
196
+ }
197
+ }
198
+ }
199
+ }