@orchestrator-ui/orchestrator-ui-components 8.7.0 → 8.7.1
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/.turbo/turbo-build.log +8 -8
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +11 -11
- package/CHANGELOG.md +7 -0
- package/dist/index.d.ts +379 -1244
- package/dist/index.js +936 -1013
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/WfoPydanticForm/fields/WfoSummary.tsx +42 -7
- package/src/components/WfoSearchPage/WfoFilterGroup/WfoFilterGroup.tsx +1 -1
- package/src/configuration/version.ts +1 -1
- package/src/messages/en-GB.json +452 -578
- package/src/messages/getTranslationMessages.spec.ts +47 -30
- package/src/messages/nl-NL.json +450 -430
package/src/messages/en-GB.json
CHANGED
|
@@ -1,511 +1,400 @@
|
|
|
1
1
|
{
|
|
2
|
-
"main": {
|
|
3
|
-
"start": "Start",
|
|
4
|
-
"ariaLabelToggleSideMenu": "Show/Hide side menu",
|
|
5
|
-
"ariaLabelCurrentPage": "Current page",
|
|
6
|
-
"metadata": "Metadata",
|
|
7
|
-
"metadataProducts": "Products",
|
|
8
|
-
"metadataProductblocks": "Product blocks",
|
|
9
|
-
"metadataResourceTypes": "Resource types",
|
|
10
|
-
"metadataWorkflows": "Workflows",
|
|
11
|
-
"metadataTasks": "Tasks",
|
|
12
|
-
"metadataScheduledTasks": "Scheduled tasks",
|
|
13
|
-
"mobileTitle": "Main menu",
|
|
14
|
-
"settings": "Settings",
|
|
15
|
-
"subscriptions": "Subscriptions",
|
|
16
|
-
"tasks": "Tasks",
|
|
17
|
-
"title": "Workflow Orchestrator",
|
|
18
|
-
"welcome": "Welcome",
|
|
19
|
-
"workflows": "Workflows",
|
|
20
|
-
"darkMode": "Dark mode",
|
|
21
|
-
"lightMode": "Light mode",
|
|
22
|
-
"websocketConnected": "This page recexives live updates from the server",
|
|
23
|
-
"websocketDisconnected": "The connection to the server is lost, click the icon or refresh the page",
|
|
24
|
-
"websocketDisconnectedShort": "WebSocket disconnected, click the icon to reconnect",
|
|
25
|
-
"resetToDefault": "Reset to default",
|
|
26
|
-
"savePreferences": "Save preferences",
|
|
27
|
-
"numberOfRows": "Number of rows",
|
|
28
|
-
"tableSettings": "Table settings",
|
|
29
|
-
"openMenu": "Open menu",
|
|
30
|
-
"incompatibleVersion": "Incompatible version",
|
|
31
|
-
"incompatibleVersionText": "The version of the WFO UI is incompatible with this version of orchestrator-core.",
|
|
32
|
-
"minimumOrchestratorCoreVersion": "Minimum orchestrator-core version"
|
|
33
|
-
},
|
|
34
2
|
"common": {
|
|
35
|
-
"
|
|
3
|
+
"applyFilter": "Apply filter",
|
|
4
|
+
"createFilter": "Create a filter",
|
|
36
5
|
"deselect": "Deselect",
|
|
37
|
-
"close": "Close",
|
|
38
6
|
"editColumns": "Edit columns",
|
|
39
|
-
"
|
|
7
|
+
"errorMessage": "An error occurred",
|
|
8
|
+
"export": "Export",
|
|
9
|
+
"insyncFalse": "out-of-sync",
|
|
10
|
+
"insyncTrue": "in-sync",
|
|
11
|
+
"loadMore": "Load more",
|
|
40
12
|
"loading": "Loading",
|
|
41
13
|
"newSubscription": "New subscription",
|
|
42
14
|
"newTask": "New task",
|
|
43
15
|
"noFailedTasks": "No failed tasks!",
|
|
44
16
|
"noItemsFound": "No items found",
|
|
45
|
-
"
|
|
46
|
-
"errorMessage": "An error occurred",
|
|
47
|
-
"unknownError": "Unknown error",
|
|
48
|
-
"export": "Export",
|
|
49
|
-
"unauthorizedPage": "You are not authorized to see this page",
|
|
50
|
-
"insyncTrue": "in-sync",
|
|
51
|
-
"insyncFalse": "out-of-sync",
|
|
52
|
-
"searchModalTitle": "Search string options",
|
|
53
|
-
"searchModalText": "<p>Different options are available from free text search covering all data columns, or column specific filtering. Note that: <p></p><ul><li>Hidden columns are included</li> <li>Searching is case-insensitive</li> <li>Ordering of words does not matter (unless it is a Phrase)</li> <li>TSV (text search vector) search only available for subscriptions table</li></ul></p> <p>For example:</p> <li><b>\"l2vpn\"</b> – free text search</li> <li><b>tag:l2vpn</b> – search in a specific column</li><li><b>tag:lp description:test</b> – search in multiple columns</li><li><b>tag:(lp|lr)</b> – multiselect within 1 column</li><li><b>-tag:lp</b> – negated filter</li><li><b>test*</b> – prefix filter</li> <p></p><p><b>Note:</b> Search words containing characters `|-*():\"` may not be valid, as they are part of the search query grammar</p><p>Invalid search strings are for example:</p><ul><li>2a10:e300:fff0::/48</li> <li>\"node123(planned)\"</li> <li>\"node123|planned\"</li></ul>",
|
|
17
|
+
"removeFilter": "Remove filter",
|
|
54
18
|
"retrieval": "Retrieval",
|
|
55
19
|
"retrieverAuto": "Auto",
|
|
56
20
|
"retrieverFuzzy": "Fuzzy",
|
|
57
|
-
"retrieverSemantic": "Semantic",
|
|
58
21
|
"retrieverHybrid": "Hybrid",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
22
|
+
"retrieverSemantic": "Semantic",
|
|
23
|
+
"search": "Search",
|
|
24
|
+
"searchModalText": "<p>Different options are available from free text search covering all data columns, or column specific filtering. Note that: <p></p><ul><li>Hidden columns are included</li> <li>Searching is case-insensitive</li> <li>Ordering of words does not matter (unless it is a Phrase)</li> <li>TSV (text search vector) search only available for subscriptions table</li></ul></p> <p>For example:</p> <li><b>\"l2vpn\"</b> – free text search</li> <li><b>tag:l2vpn</b> – search in a specific column</li><li><b>tag:lp description:test</b> – search in multiple columns</li><li><b>tag:(lp|lr)</b> – multiselect within 1 column</li><li><b>-tag:lp</b> – negated filter</li><li><b>test*</b> – prefix filter</li> <p></p><p><b>Note:</b> Search words containing characters `|-*():\"` may not be valid, as they are part of the search query grammar</p><p>Invalid search strings are for example:</p><ul><li>2a10:e300:fff0::/48</li> <li>\"node123(planned)\"</li> <li>\"node123|planned\"</li></ul>",
|
|
25
|
+
"searchModalTitle": "Search string options",
|
|
26
|
+
"showAllColumnsInDetailView": "Show all columns in detail view",
|
|
27
|
+
"tableSettings": "Table settings",
|
|
28
|
+
"unauthorizedPage": "You are not authorized to see this page",
|
|
29
|
+
"unknownError": "Unknown error"
|
|
64
30
|
},
|
|
65
31
|
"confirmationDialog": {
|
|
66
|
-
"title": "Please confirm",
|
|
67
|
-
"confirm": "Confirm",
|
|
68
32
|
"cancel": "Cancel",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"stay": "Stay",
|
|
72
|
-
"leave": "Leave"
|
|
73
|
-
},
|
|
74
|
-
"workflow": {
|
|
75
|
-
"start_workflow_title": "Start workflow"
|
|
33
|
+
"confirm": "Confirm",
|
|
34
|
+
"title": "Please confirm"
|
|
76
35
|
},
|
|
77
36
|
"errors": {
|
|
37
|
+
"failedDeletingScheduledTask": "Error deleting scheduled task",
|
|
38
|
+
"invalidQueryParts": "The query contains invalid parts",
|
|
78
39
|
"notAllResultsExported": "The current query returned {totalResults} results. Only the first {maximumExportedResults} rows will be exported",
|
|
79
40
|
"notAllResultsExportedTitle": "Not all items exported",
|
|
80
|
-
"invalidQueryParts": "The query contains invalid parts",
|
|
81
41
|
"notAllowedWhenEngineIsNotRunningMessage": "This action is not allowed when the Workflow Engine is not running",
|
|
82
42
|
"notAllowedWhenEngineIsNotRunningTitle": "Workflow Engine is not running",
|
|
83
43
|
"retrieve_stored_settings": "Something went wrong restoring your settings. Falling back to default settings",
|
|
84
|
-
"retrieve_stored_settings_title": "Error retrieving settings"
|
|
85
|
-
|
|
44
|
+
"retrieve_stored_settings_title": "Error retrieving settings"
|
|
45
|
+
},
|
|
46
|
+
"hamburgerMenu": {
|
|
47
|
+
"aoStatusPage": "A&O application status page",
|
|
48
|
+
"logout": "Logout",
|
|
49
|
+
"openMenu": "Open menu",
|
|
50
|
+
"softwareVersions": "Software Versions",
|
|
51
|
+
"support": "Support"
|
|
52
|
+
},
|
|
53
|
+
"main": {
|
|
54
|
+
"ariaLabelCurrentPage": "Current page",
|
|
55
|
+
"ariaLabelToggleSideMenu": "Show/Hide side menu",
|
|
56
|
+
"darkMode": "Dark mode",
|
|
57
|
+
"incompatibleVersion": "Incompatible version",
|
|
58
|
+
"incompatibleVersionText": "The version of the WFO UI is incompatible with this version of orchestrator-core.",
|
|
59
|
+
"lightMode": "Light mode",
|
|
60
|
+
"metadata": "Metadata",
|
|
61
|
+
"metadataProductblocks": "Product blocks",
|
|
62
|
+
"metadataProducts": "Products",
|
|
63
|
+
"metadataResourceTypes": "Resource types",
|
|
64
|
+
"metadataScheduledTasks": "Scheduled tasks",
|
|
65
|
+
"metadataTasks": "Tasks",
|
|
66
|
+
"metadataWorkflows": "Workflows",
|
|
67
|
+
"minimumOrchestratorCoreVersion": "Minimum orchestrator-core version",
|
|
68
|
+
"mobileTitle": "Main menu",
|
|
69
|
+
"numberOfRows": "Number of rows",
|
|
70
|
+
"resetToDefault": "Reset to default",
|
|
71
|
+
"savePreferences": "Save preferences",
|
|
72
|
+
"settings": "Settings",
|
|
73
|
+
"start": "Start",
|
|
74
|
+
"subscriptions": "Subscriptions",
|
|
75
|
+
"tableSettings": "Table settings",
|
|
76
|
+
"tasks": "Tasks",
|
|
77
|
+
"websocketConnected": "This page receives live updates from the server",
|
|
78
|
+
"websocketDisconnected": "The connection to the server is lost, click the icon or refresh the page",
|
|
79
|
+
"welcome": "Welcome",
|
|
80
|
+
"workflows": "Workflows"
|
|
81
|
+
},
|
|
82
|
+
"metadata": {
|
|
83
|
+
"productBlocks": {
|
|
84
|
+
"createdAt": "Created",
|
|
85
|
+
"dependingProductBlocks": "Depending product blocks",
|
|
86
|
+
"description": "Product block description",
|
|
87
|
+
"endDate": "End date",
|
|
88
|
+
"id": "ID",
|
|
89
|
+
"name": "Product block",
|
|
90
|
+
"resourceTypes": "Resource types",
|
|
91
|
+
"status": "Status",
|
|
92
|
+
"tag": "Tag"
|
|
93
|
+
},
|
|
94
|
+
"products": {
|
|
95
|
+
"createdAt": "Created",
|
|
96
|
+
"description": "Product description",
|
|
97
|
+
"fixedInputs": "Fixed inputs",
|
|
98
|
+
"id": "ID",
|
|
99
|
+
"name": "Product",
|
|
100
|
+
"productBlocks": "Product blocks",
|
|
101
|
+
"productType": "Type",
|
|
102
|
+
"status": "Status",
|
|
103
|
+
"tag": "Tag"
|
|
104
|
+
},
|
|
105
|
+
"resourceTypes": {
|
|
106
|
+
"description": "Resource type description",
|
|
107
|
+
"resourceId": "ID",
|
|
108
|
+
"type": "Resource type",
|
|
109
|
+
"usedInProductBlocks": "Used in product blocks"
|
|
110
|
+
},
|
|
111
|
+
"scheduledTasks": {
|
|
112
|
+
"addSchedule": "Schedule task",
|
|
113
|
+
"ariaLabelDeleteButton": "Delete task schedule",
|
|
114
|
+
"deleteConfirmationQuestion": "Confirm deleting this schedule task",
|
|
115
|
+
"nextRuntime": "Next runtime",
|
|
116
|
+
"schedule": "Schedule",
|
|
117
|
+
"task": "Task",
|
|
118
|
+
"taskDescription": "Task description"
|
|
119
|
+
},
|
|
120
|
+
"tabs": {
|
|
121
|
+
"productBlocks": "Product blocks",
|
|
122
|
+
"products": "Products",
|
|
123
|
+
"resourceTypes": "Resource types",
|
|
124
|
+
"scheduledTasks": "Scheduled tasks",
|
|
125
|
+
"tasks": "Tasks",
|
|
126
|
+
"workflows": "Workflows"
|
|
127
|
+
},
|
|
128
|
+
"tasks": {
|
|
129
|
+
"addSchedule": "Schedule task",
|
|
130
|
+
"createdAt": "Created",
|
|
131
|
+
"description": "Task description",
|
|
132
|
+
"name": "Task",
|
|
133
|
+
"productTags": "Product tags",
|
|
134
|
+
"scheduled": "Scheduled",
|
|
135
|
+
"target": "Target",
|
|
136
|
+
"workflowId": "ID"
|
|
137
|
+
},
|
|
138
|
+
"title": "Metadata",
|
|
139
|
+
"workflows": {
|
|
140
|
+
"createdAt": "Created",
|
|
141
|
+
"description": "Workflow description",
|
|
142
|
+
"name": "Workflow",
|
|
143
|
+
"productTags": "Product tags",
|
|
144
|
+
"target": "Target",
|
|
145
|
+
"workflowId": "ID"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"processes": {
|
|
149
|
+
"delta": {
|
|
150
|
+
"continuityAboveBelow": "Continuity above below",
|
|
151
|
+
"continuityWithin": "Continuity within",
|
|
152
|
+
"fullScreen": "Full-screen mode",
|
|
153
|
+
"fullScreenExit": "Exit full-screen mode",
|
|
154
|
+
"title": "Subscription delta"
|
|
155
|
+
},
|
|
156
|
+
"detail": {
|
|
157
|
+
"abort": "Abort",
|
|
158
|
+
"abortTaskQuestion": "Are you sure you want to abort the {workflowName} task?",
|
|
159
|
+
"abortWorkflowQuestion": "Are you sure you want to abort the {workflowName} workflow?",
|
|
160
|
+
"customer": "Customer",
|
|
161
|
+
"delete": "Delete",
|
|
162
|
+
"deleteQuestion": "Are you sure you want to delete the {workflowName} task?",
|
|
163
|
+
"lastStep": "Current step",
|
|
164
|
+
"lastUpdate": "Last update",
|
|
165
|
+
"openWorkflowTaskInfo": "open workflow/task information in a new tab",
|
|
166
|
+
"relatedSubscriptions": "Related subscriptions",
|
|
167
|
+
"retry": "Retry",
|
|
168
|
+
"retryTaskQuestion": "Are you sure you want to retry the {workflowName} task?",
|
|
169
|
+
"retryWorkflowQuestion": "Are you sure you want to retry the {workflowName} workflow?",
|
|
170
|
+
"startedBy": "Started by",
|
|
171
|
+
"startedOn": "Started on",
|
|
172
|
+
"status": "Status"
|
|
173
|
+
},
|
|
174
|
+
"index": {
|
|
175
|
+
"assignee": "Assignee",
|
|
176
|
+
"createdBy": "Created by",
|
|
177
|
+
"customer": "Customer",
|
|
178
|
+
"customerAbbreviation": "Customer abbr",
|
|
179
|
+
"lastModified": "Last modified",
|
|
180
|
+
"note": "Note",
|
|
181
|
+
"processId": "Process ID",
|
|
182
|
+
"product": "Product",
|
|
183
|
+
"productTag": "Product tag",
|
|
184
|
+
"showAllRelatedSubscriptions": "Show all related subscriptions",
|
|
185
|
+
"started": "Started",
|
|
186
|
+
"status": "Status",
|
|
187
|
+
"step": "Current step",
|
|
188
|
+
"subscriptions": "Subscriptions",
|
|
189
|
+
"workflowName": "Workflow",
|
|
190
|
+
"workflowTarget": "Target"
|
|
191
|
+
},
|
|
192
|
+
"steps": {
|
|
193
|
+
"codeView": {
|
|
194
|
+
"json": "JSON",
|
|
195
|
+
"raw": "Raw",
|
|
196
|
+
"table": "Table"
|
|
197
|
+
},
|
|
198
|
+
"collapseAll": "collapse all",
|
|
199
|
+
"duration": "Duration",
|
|
200
|
+
"expandAll": "Expand all",
|
|
201
|
+
"hideDelta": "Hide subscription delta",
|
|
202
|
+
"hideTraceback": "Hide traceback",
|
|
203
|
+
"showDelta": "Show subscription delta",
|
|
204
|
+
"showTraceback": "Show traceback",
|
|
205
|
+
"submitTaskFormLabel": "Please submit the form to start this task",
|
|
206
|
+
"submitWorkflowFormLabel": "Please submit the form to start this workflow",
|
|
207
|
+
"taskSteps": "Task steps",
|
|
208
|
+
"traceback": "Traceback",
|
|
209
|
+
"userInput": "User input",
|
|
210
|
+
"viewOptions": "Options",
|
|
211
|
+
"workflowSteps": "Workflow steps"
|
|
212
|
+
}
|
|
86
213
|
},
|
|
87
214
|
"pydanticForms": {
|
|
88
215
|
"userInputForm": {
|
|
89
216
|
"cancel": "Cancel",
|
|
90
|
-
"
|
|
91
|
-
"previous": "Previous",
|
|
217
|
+
"inputFieldsHaveValidationErrors": "{nrOfValidationErrors} input field(s) have validation errors",
|
|
92
218
|
"next": "Next",
|
|
219
|
+
"preconditionFailedFallback": "A precondition for starting this task was not met.",
|
|
220
|
+
"preconditionFailedTitle": "This task cannot be started right now",
|
|
221
|
+
"previous": "Previous",
|
|
93
222
|
"previousQuestion": "Are you sure you want to leave this page? Any filled form data will be lost",
|
|
94
|
-
"startTask": "Start task",
|
|
95
|
-
"startWorkflow": "Start workflow",
|
|
96
223
|
"resumeTask": "Resume task",
|
|
97
224
|
"resumeWorkflow": "Resume workflow",
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"preconditionFailedFallback": "A precondition for starting this task was not met."
|
|
225
|
+
"startTask": "Start task",
|
|
226
|
+
"startWorkflow": "Start workflow"
|
|
101
227
|
},
|
|
102
228
|
"widgets": {
|
|
103
|
-
"customer": {
|
|
104
|
-
"placeholder": "Search and select a customer...",
|
|
105
|
-
"loading": "Loading customers..."
|
|
106
|
-
},
|
|
107
229
|
"contactPersonName": {
|
|
108
230
|
"placeholder": "Search and add contact persons..."
|
|
109
231
|
},
|
|
110
232
|
"cron": {
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
233
|
+
"allowedValues": "allowed values",
|
|
234
|
+
"alternativeSingleValues": "alternative single values",
|
|
235
|
+
"anyValue": "any value",
|
|
114
236
|
"dayOfMonth": "day (month)",
|
|
115
|
-
"month": "month",
|
|
116
237
|
"dayOfWeek": "day (week)",
|
|
117
|
-
"
|
|
118
|
-
"
|
|
238
|
+
"hour": "hour",
|
|
239
|
+
"invalidExpression": "Invalid cron expression: {error}",
|
|
240
|
+
"minute": "minute",
|
|
241
|
+
"month": "month",
|
|
242
|
+
"nextOccurrences": "Next: {dates}",
|
|
243
|
+
"possibleValues": "Possible values for this field",
|
|
119
244
|
"rangeOfValues": "range of values",
|
|
245
|
+
"second": "second",
|
|
120
246
|
"stepValues": "step values",
|
|
121
|
-
"allowedValues": "allowed values",
|
|
122
|
-
"alternativeSingleValues": "alternative single values",
|
|
123
247
|
"sundayNonStandard": "sunday (non-standard)",
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
248
|
+
"valueListSeparator": "value list separator"
|
|
249
|
+
},
|
|
250
|
+
"customer": {
|
|
251
|
+
"loading": "Loading customers...",
|
|
252
|
+
"placeholder": "Search and select a customer..."
|
|
253
|
+
},
|
|
254
|
+
"fileUpload": {
|
|
255
|
+
"errorUploading": "Error uploading file!",
|
|
256
|
+
"fileToBig": "File to large. Maximum file size: {fileSizeLimit}",
|
|
257
|
+
"initialPromptText": "Select or drag and drop a file",
|
|
258
|
+
"invalidFiletype": "Invalid filetype!",
|
|
259
|
+
"supportedFileTypes": "Supported file types: pdf"
|
|
127
260
|
},
|
|
128
261
|
"ipvAnyNetworkField": {
|
|
129
262
|
"manuallySelectedPrefix": "Manually selected prefix"
|
|
130
263
|
},
|
|
131
|
-
"node_select": {
|
|
132
|
-
"nodes_loading": "Nodes loading",
|
|
133
|
-
"select_node": "Select node",
|
|
134
|
-
"no_nodes_placeholder": "No nodes"
|
|
135
|
-
},
|
|
136
264
|
"locationCode": {
|
|
137
265
|
"placeholder": "Search and select a location code..."
|
|
138
266
|
},
|
|
267
|
+
"nodePort": {
|
|
268
|
+
"loadingNodes": "Loading Node subscriptions...",
|
|
269
|
+
"loadingPorts": "Loading IMS ports...",
|
|
270
|
+
"noPorts": "NO PORTS FOUND FOR THIS NODE",
|
|
271
|
+
"selectNode": "Select node",
|
|
272
|
+
"selectNodeFirst": "Select a node first",
|
|
273
|
+
"selectPort": "Select port"
|
|
274
|
+
},
|
|
275
|
+
"node_select": {
|
|
276
|
+
"no_nodes_placeholder": "No nodes",
|
|
277
|
+
"nodes_loading": "Nodes loading",
|
|
278
|
+
"select_node": "Select node"
|
|
279
|
+
},
|
|
139
280
|
"product": {
|
|
140
281
|
"placeholder": "Choose product"
|
|
141
282
|
},
|
|
142
283
|
"select": {
|
|
143
284
|
"placeholder": "Search and select a value..."
|
|
144
285
|
},
|
|
286
|
+
"subscription": {
|
|
287
|
+
"loading": "Loading subscriptions...",
|
|
288
|
+
"placeholder": "Choose a subscription"
|
|
289
|
+
},
|
|
145
290
|
"vlan": {
|
|
146
|
-
"
|
|
147
|
-
"
|
|
291
|
+
"allPortsAvailable": "This service port has no VLANs in use (yet).",
|
|
292
|
+
"invalidVlan": "Invalid VLAN - must be a range of valid [2-4094] VLAN integers, for example '2, 5-6, 1048-1052'",
|
|
293
|
+
"loadingIms": "Loading VLAN info from IMS",
|
|
148
294
|
"missingInIms": "This service port can not be found in IMS. It may be deleted or in an initial state.",
|
|
149
|
-
"nsiVlansAvailable": "Available NSI VLAN ranges for this service port: {vlans}",
|
|
150
295
|
"nsiNoPortsAvailable": "This service port has no available NSI reserved VLANs (yet).",
|
|
151
|
-
"
|
|
296
|
+
"nsiVlansAvailable": "Available NSI VLAN ranges for this service port: {vlans}",
|
|
152
297
|
"placeholder": "Enter a valid VLAN range...",
|
|
153
298
|
"placeholderNoServicePort": "First select a Service Port...",
|
|
154
|
-
"invalidVlan": "Invalid VLAN - must be a range of valid [2-4094] VLAN integers, for example '2, 5-6, 1048-1052'",
|
|
155
|
-
"untaggedPortInUse": "This service port is already in use and cannot be chosen",
|
|
156
299
|
"taggedOnly": "VLAN is only relevant for service ports in tagged mode, not for link_member or untagged ports.",
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
"placeholder": "Choose a subscription",
|
|
161
|
-
"loading": "Loading subscriptions..."
|
|
162
|
-
},
|
|
163
|
-
"nodePort": {
|
|
164
|
-
"loadingNodes": "Loading Node subscriptions...",
|
|
165
|
-
"loadingPorts": "Loading IMS ports...",
|
|
166
|
-
"noPorts": "NO PORTS FOUND FOR THIS NODE",
|
|
167
|
-
"selectNode": "Select node",
|
|
168
|
-
"selectPort": "Select port",
|
|
169
|
-
"selectNodeFirst": "Select a node first"
|
|
170
|
-
},
|
|
171
|
-
"fileUpload": {
|
|
172
|
-
"invalidFiletype": "Invalid filetype!",
|
|
173
|
-
"errorUploading": "Error uploading file!",
|
|
174
|
-
"fileToBig": "File to large. Maximum file size: {fileSizeLimit}",
|
|
175
|
-
"initialPromptText": "Select or drag and drop a file",
|
|
176
|
-
"supportedFileTypes": "Supported file types: pdf"
|
|
300
|
+
"untaggedPortInUse": "This service port is already in use and cannot be chosen",
|
|
301
|
+
"vlansInUse": "Already used VLAN ranges for this service port: {vlans}",
|
|
302
|
+
"vlansInUseError": "VLAN range {vlans} are already in use for the selected service port"
|
|
177
303
|
}
|
|
178
304
|
}
|
|
179
305
|
},
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
"productType": "Type",
|
|
196
|
-
"status": "Status",
|
|
197
|
-
"productBlocks": "Product blocks",
|
|
198
|
-
"fixedInputs": "Fixed inputs",
|
|
199
|
-
"createdAt": "Created"
|
|
200
|
-
},
|
|
201
|
-
"productBlocks": {
|
|
202
|
-
"id": "ID",
|
|
203
|
-
"name": "Product block",
|
|
204
|
-
"description": "Product block description",
|
|
205
|
-
"tag": "Tag",
|
|
206
|
-
"status": "Status",
|
|
207
|
-
"resourceTypes": "Resource types",
|
|
208
|
-
"dependingProductBlocks": "Depending product blocks",
|
|
209
|
-
"createdAt": "Created",
|
|
210
|
-
"endDate": "End date",
|
|
211
|
-
"parentIds": "Parents"
|
|
212
|
-
},
|
|
213
|
-
"resourceTypes": {
|
|
214
|
-
"type": "Resource type",
|
|
215
|
-
"description": "Resource type description",
|
|
216
|
-
"resourceId": "ID",
|
|
217
|
-
"usedInProductBlocks": "Used in product blocks"
|
|
218
|
-
},
|
|
219
|
-
"workflows": {
|
|
220
|
-
"workflowId": "ID",
|
|
221
|
-
"name": "Workflow",
|
|
222
|
-
"description": "Workflow description",
|
|
223
|
-
"target": "Target",
|
|
224
|
-
"productTags": "Product tags",
|
|
225
|
-
"createdAt": "Created"
|
|
226
|
-
},
|
|
227
|
-
"tasks": {
|
|
228
|
-
"workflowId": "ID",
|
|
229
|
-
"name": "Task",
|
|
230
|
-
"description": "Task description",
|
|
231
|
-
"target": "Target",
|
|
232
|
-
"productTags": "Product tags",
|
|
233
|
-
"scheduled": "Scheduled",
|
|
234
|
-
"createdAt": "Created",
|
|
235
|
-
"addSchedule": "Schedule task"
|
|
236
|
-
},
|
|
237
|
-
"scheduledTasks": {
|
|
238
|
-
"task": "Task",
|
|
239
|
-
"taskDescription": "Task description",
|
|
240
|
-
"nextRuntime": "Next runtime",
|
|
241
|
-
"schedule": "Schedule",
|
|
242
|
-
"interval": "Interval",
|
|
243
|
-
"ariaLabelDeleteButton": "Delete task schedule",
|
|
244
|
-
"deleteConfirmationQuestion": "Confirm deleting this schedule task",
|
|
245
|
-
"addSchedule": "Schedule task"
|
|
246
|
-
},
|
|
247
|
-
"scheduleTaskForm": {
|
|
248
|
-
"newSchedule": "Create new schedule",
|
|
249
|
-
"selectTask": "Select the task you want to schedule",
|
|
250
|
-
"selectTaskType": "What type of schedule do you need?",
|
|
251
|
-
"selectInterval": "Choose the schedule interval",
|
|
252
|
-
"taskTypeInterval": "Interval",
|
|
253
|
-
"taskTypeCron": "Cron",
|
|
254
|
-
"taskTypeDate": "Once",
|
|
255
|
-
"firstRunDate": "Start date",
|
|
256
|
-
"1hour": "1 hour",
|
|
257
|
-
"2hours": "2 hours",
|
|
258
|
-
"4hours": "4 hours",
|
|
259
|
-
"12hours": "12 hours",
|
|
260
|
-
"24hours": "24 hours",
|
|
261
|
-
"1week": "1 week",
|
|
262
|
-
"2weeks": "2 weeks",
|
|
263
|
-
"1month": "1 month",
|
|
264
|
-
"createScheduleButton": "Create schedule"
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
"workflowGuide": {
|
|
268
|
-
"title": "User guide of {workflowName}",
|
|
269
|
-
"noGuideAvailable": "No user guide is available for this workflow/task",
|
|
270
|
-
"show": "Show user guide",
|
|
271
|
-
"hide": "Hide user guide"
|
|
272
|
-
},
|
|
273
|
-
"processes": {
|
|
274
|
-
"index": {
|
|
275
|
-
"workflowName": "Workflow",
|
|
276
|
-
"step": "Current step",
|
|
277
|
-
"status": "Status",
|
|
278
|
-
"product": "Product",
|
|
279
|
-
"customer": "Customer",
|
|
280
|
-
"customerAbbreviation": "Customer abbr",
|
|
281
|
-
"subscriptions": "Subscriptions",
|
|
282
|
-
"createdBy": "Created by",
|
|
283
|
-
"assignee": "Assignee",
|
|
284
|
-
"processId": "Process ID",
|
|
285
|
-
"started": "Started",
|
|
286
|
-
"lastModified": "Last modified",
|
|
287
|
-
"workflowTarget": "Target",
|
|
288
|
-
"productTag": "Product tag",
|
|
289
|
-
"showAllRelatedSubscriptions": "Show all related subscriptions",
|
|
290
|
-
"note": "Note"
|
|
291
|
-
},
|
|
292
|
-
"detail": {
|
|
293
|
-
"retry": "Retry",
|
|
294
|
-
"resume": "Resume",
|
|
295
|
-
"abort": "Abort",
|
|
296
|
-
"delete": "Delete",
|
|
297
|
-
"deleteQuestion": "Are you sure you want to delete the {workflowName} task?",
|
|
298
|
-
"abortTaskQuestion": "Are you sure you want to abort the {workflowName} task?",
|
|
299
|
-
"abortWorkflowQuestion": "Are you sure you want to abort the {workflowName} workflow?",
|
|
300
|
-
"retryTaskQuestion": "Are you sure you want to retry the {workflowName} task?",
|
|
301
|
-
"retryWorkflowQuestion": "Are you sure you want to retry the {workflowName} workflow?",
|
|
302
|
-
"status": "Status",
|
|
303
|
-
"startedBy": "Started by",
|
|
304
|
-
"lastStep": "Current step",
|
|
305
|
-
"startedOn": "Started on",
|
|
306
|
-
"lastUpdate": "Last update",
|
|
307
|
-
"relatedSubscriptions": "Related subscriptions",
|
|
308
|
-
"subscriptions": "{count, plural, =0 {0 subscriptions} =1 {1 subscription} other {# subscriptions}}",
|
|
309
|
-
"customer": "Customer",
|
|
310
|
-
"openWorkflowTaskInfo": "open workflow/task information in a new tab"
|
|
311
|
-
},
|
|
312
|
-
"steps": {
|
|
313
|
-
"taskSteps": "Task steps",
|
|
314
|
-
"workflowSteps": "Workflow steps",
|
|
315
|
-
"showDelta": "Show subscription delta",
|
|
316
|
-
"hideDelta": "Hide subscription delta",
|
|
317
|
-
"showTraceback": "Show traceback",
|
|
318
|
-
"hideTraceback": "Hide traceback",
|
|
319
|
-
"viewOptions": "Options",
|
|
320
|
-
"expandAll": "Expand all",
|
|
321
|
-
"collapseAll": "collapse all",
|
|
322
|
-
"duration": "Duration",
|
|
323
|
-
"userInput": "User input",
|
|
324
|
-
"submitTaskFormLabel": "Please submit the form to start this task",
|
|
325
|
-
"submitWorkflowFormLabel": "Please submit the form to start this workflow",
|
|
326
|
-
"traceback": "Traceback",
|
|
327
|
-
"codeView": {
|
|
328
|
-
"json": "JSON",
|
|
329
|
-
"table": "Table",
|
|
330
|
-
"raw": "Raw"
|
|
306
|
+
"search": {
|
|
307
|
+
"availability": {
|
|
308
|
+
"unavailable": {
|
|
309
|
+
"documentation": "Please refer to the orchestrator documentation for detailed setup instructions.",
|
|
310
|
+
"instructions": {
|
|
311
|
+
"checkDockerConfig": "If using Docker, make sure the environment variable is set in docker-compose.yml",
|
|
312
|
+
"checkVersion": "Ensure your orchestrator-core version supports search functionality",
|
|
313
|
+
"restartService": "Restart your service",
|
|
314
|
+
"setEnvironmentVariable": {
|
|
315
|
+
"after": " in your service environment variables",
|
|
316
|
+
"before": "Set "
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"retryButton": "Retry Connection",
|
|
320
|
+
"title": "Search Service Not Available"
|
|
331
321
|
}
|
|
332
322
|
},
|
|
333
|
-
"delta": {
|
|
334
|
-
"title": "Subscription delta",
|
|
335
|
-
"fullScreenExit": "Exit full-screen mode",
|
|
336
|
-
"fullScreen": "Full-screen mode",
|
|
337
|
-
"continuityAboveBelow": "Continuity above below",
|
|
338
|
-
"continuityWithin": "Continuity within"
|
|
339
|
-
}
|
|
340
|
-
},
|
|
341
|
-
"workflows": {
|
|
342
|
-
"tabs": {
|
|
343
|
-
"active": "Active",
|
|
344
|
-
"completed": "Completed"
|
|
345
|
-
},
|
|
346
|
-
"index": {
|
|
347
|
-
"title": "Workflows"
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
"subscriptions": {
|
|
351
|
-
"tabs": {
|
|
352
|
-
"active": "Active",
|
|
353
|
-
"terminated": "Terminated",
|
|
354
|
-
"transient": "Transient",
|
|
355
|
-
"all": "All"
|
|
356
|
-
},
|
|
357
|
-
"index": {
|
|
358
|
-
"id": "ID",
|
|
359
|
-
"description": "Description",
|
|
360
|
-
"status": "Status",
|
|
361
|
-
"insync": "In Sync",
|
|
362
|
-
"product": "Product",
|
|
363
|
-
"tag": "Product tag",
|
|
364
|
-
"startDate": "Start date",
|
|
365
|
-
"endDate": "End date",
|
|
366
|
-
"metadata": "Metadata",
|
|
367
|
-
"note": "Note",
|
|
368
|
-
"customerId": "Customer ID",
|
|
369
|
-
"customerFullname": "Customer",
|
|
370
|
-
"customerShortcode": "Customer abbr",
|
|
371
|
-
"actions": "Actions"
|
|
372
|
-
},
|
|
373
|
-
"detail": {
|
|
374
|
-
"title": "Subscriptions",
|
|
375
|
-
"tabs": {
|
|
376
|
-
"general": "General",
|
|
377
|
-
"serviceConfiguration": "Service configuration",
|
|
378
|
-
"workflows": "Workflows",
|
|
379
|
-
"relatedSubscriptions": "Related subscriptions"
|
|
380
|
-
},
|
|
381
|
-
"loadingStatus": "Loading status",
|
|
382
|
-
"actions": {
|
|
383
|
-
"create": "Create workflow",
|
|
384
|
-
"modify": "Modify workflow",
|
|
385
|
-
"tasks": "Tasks",
|
|
386
|
-
"terminate": "Terminate workflow",
|
|
387
|
-
"reconcile": "Reconcile workflow",
|
|
388
|
-
"actionStarted": "Action started",
|
|
389
|
-
"actionStartFailed": "Action failed",
|
|
390
|
-
"actions": "Actions",
|
|
391
|
-
"lockedBySubscriptions": "This action is locked by the following subscriptions:",
|
|
392
|
-
"notAvailable": "Not available",
|
|
393
|
-
"notAvailableForWorkflow": "Not available for this workflow",
|
|
394
|
-
"reconcileSubscription": "Reconcile subscription",
|
|
395
|
-
"validateSubscription": "Validate subscription",
|
|
396
|
-
"subscription": {
|
|
397
|
-
"no_modify_deleted_related_objects": "This subscription can not be modified because it contains references to other systems that are deleted.",
|
|
398
|
-
"no_modify_in_use_by_subscription": "This subscription can not be {action} as it is used in other subscriptions:",
|
|
399
|
-
"no_modify_invalid_status": "This subscription can not be modified because of the status: {status}. Only subscriptions with status {usable_when} can be {action}.",
|
|
400
|
-
"no_modify_workflow": "This subscription can not be modified as the product has no modify workflows.",
|
|
401
|
-
"no_termination_workflow": "This subscription can not be terminated as the product has no termination workflows.",
|
|
402
|
-
"no_validate_workflow": "This subscription can not be validated as the product has no validate workflows.",
|
|
403
|
-
"not_in_sync": "This subscription can not be modified because it is not in-sync. This means there is some error in the registration of the subscription or that it is being modified by another workflow.",
|
|
404
|
-
"relations_not_in_sync": "This subscription can not be modified because some related subscriptions are not in-sync.\n\nLocked subscriptions:",
|
|
405
|
-
"no_modify_subscription_in_use_by_others": "This subscription can not be modified because it is in use by one or more other subscriptions.\n\nSubscriptions:",
|
|
406
|
-
"insufficient_workflow_permissions": "Insufficient user permissions to run this workflow",
|
|
407
|
-
"running_process": "This action cannot be started because this subscription already has a running process or task."
|
|
408
|
-
}
|
|
409
|
-
},
|
|
410
|
-
"subscriptionInstanceId": "Instance ID",
|
|
411
|
-
"ownerSubscriptionId": "Owner subscription ID",
|
|
412
|
-
"inUseByRelations": "In-use by subscription(s)",
|
|
413
|
-
"showDetails": "Show details",
|
|
414
|
-
"self": "Current subscription",
|
|
415
|
-
"hideDetails": "Hide details",
|
|
416
|
-
"subscriptionDetails": "Subscription details",
|
|
417
|
-
"productName": "Product name",
|
|
418
|
-
"fixedInputs": "Fixed inputs",
|
|
419
|
-
"productInfo": "Product info",
|
|
420
|
-
"noProductBlockSelected": "No product block selected",
|
|
421
|
-
"productBlocks": "Product blocks",
|
|
422
|
-
"ctaSelectProductBlock": "Select one or more product blocks to view their details",
|
|
423
|
-
"startedBy": "Started by",
|
|
424
|
-
"startedAt": "Started at",
|
|
425
|
-
"status": "Status",
|
|
426
|
-
"id": "ID",
|
|
427
|
-
"blockTitleSubscriptionDetails": "Subscription details",
|
|
428
|
-
"blockTitleFixedInputs": "Fixed inputs",
|
|
429
|
-
"blockTitleProductInfo": "Product Info",
|
|
430
|
-
"subscriptionId": "Subscription ID",
|
|
431
|
-
"description": "Description",
|
|
432
|
-
"startDate": "Start date",
|
|
433
|
-
"lastRunValidation": "Most recent validate",
|
|
434
|
-
"noValidateWorkflows": "No validate workflows have been run recently",
|
|
435
|
-
"insync": "In sync",
|
|
436
|
-
"customer": "Customer",
|
|
437
|
-
"customerUuid": "Customer UUID",
|
|
438
|
-
"customerDescriptions": "Customer descriptions",
|
|
439
|
-
"name": "Name",
|
|
440
|
-
"productType": "Product type",
|
|
441
|
-
"tag": "Tag",
|
|
442
|
-
"created": "Created",
|
|
443
|
-
"endDate": "End date",
|
|
444
|
-
"metadata": "Metadata",
|
|
445
|
-
"note": "Note",
|
|
446
|
-
"noRelatedSubscriptions": "No related subscriptions found",
|
|
447
|
-
"hideTerminatedRelatedSubscriptions": "Hide terminated subscriptions",
|
|
448
|
-
"processDetail": {
|
|
449
|
-
"id": "ID",
|
|
450
|
-
"status": "Status",
|
|
451
|
-
"startedAt": "Started at",
|
|
452
|
-
"startedBy": "Started by",
|
|
453
|
-
"note": "Note"
|
|
454
|
-
},
|
|
455
|
-
"showAll": "Show all",
|
|
456
|
-
"hideAll": "Hide all",
|
|
457
|
-
"selectByNameTitle": "Select product blocks by name",
|
|
458
|
-
"selectByNameButtonText": "Select by name",
|
|
459
|
-
"see": "See",
|
|
460
|
-
"setInSync": "Set in Sync",
|
|
461
|
-
"subscriptionIsInSync": "Subscription is in sync",
|
|
462
|
-
"setInSyncQuestion": "Are you sure you want to do this? You're about to force a subscription in sync. When it's clear why the subscription is out of sync this could enable you to start or finish a change on this subscription. When you're in doubt, please consult the network automators first as running workflows on subscriptions that are not in sync can potentially do great harm to the network.",
|
|
463
|
-
"setInSyncFailed": {
|
|
464
|
-
"title": "Set in sync failed",
|
|
465
|
-
"text": "The subscription could not be set in sync. Please try again later."
|
|
466
|
-
},
|
|
467
|
-
"setInSyncSuccess": {
|
|
468
|
-
"title": "Subscription set in sync",
|
|
469
|
-
"text": "The subscription was successfully set in sync."
|
|
470
|
-
},
|
|
471
|
-
"workflowsTab": {
|
|
472
|
-
"startWithOldestLabel": "Start with oldest first",
|
|
473
|
-
"startWithNewestLabel": "Start with newest first"
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
|
-
},
|
|
477
|
-
"tasks": {
|
|
478
323
|
"page": {
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
"
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
"
|
|
485
|
-
"
|
|
324
|
+
"addGroup": "Add group",
|
|
325
|
+
"addNestedGroup": "Add nested group",
|
|
326
|
+
"addRule": "Add rule",
|
|
327
|
+
"anyPathOption": "Any path",
|
|
328
|
+
"componentsGroupLabel": "Components",
|
|
329
|
+
"dismiss": "Dismiss",
|
|
330
|
+
"emptyGroupDescription": "Add conditions or nested groups to build your filter.",
|
|
331
|
+
"emptyGroupTitle": "Empty group",
|
|
332
|
+
"enterNumber": "Enter number",
|
|
333
|
+
"enterValue": "Enter value",
|
|
334
|
+
"fieldLabel": "Field",
|
|
335
|
+
"fieldsGroupLabel": "Fields",
|
|
336
|
+
"fromDate": "From date",
|
|
337
|
+
"fromNumber": "From",
|
|
338
|
+
"groupLabel": "Group",
|
|
339
|
+
"hideFilters": "Hide filters",
|
|
340
|
+
"loadingSearchResults": "Loading search results...",
|
|
341
|
+
"maxNestingDepth": "Maximum nesting depth reached",
|
|
342
|
+
"nextPage": "Next page",
|
|
343
|
+
"noResults": "No Results",
|
|
344
|
+
"noResultsFound": "No results found for your search.",
|
|
345
|
+
"noResultsMessage": "No {entityType} found matching your search criteria.",
|
|
346
|
+
"noResultsSuggestions": "Try adjusting your search terms, removing filters, or searching for different keywords.",
|
|
347
|
+
"operatorLabel": "Operator",
|
|
348
|
+
"page": "Page",
|
|
349
|
+
"pathsCount": "{count} paths",
|
|
350
|
+
"previousPage": "Previous page",
|
|
351
|
+
"removeConditionAriaLabel": "Remove condition",
|
|
352
|
+
"removeGroup": "Remove group",
|
|
353
|
+
"removeRule": "Remove rule",
|
|
354
|
+
"resultsOnPage": "{resultCount} result(s) on this page",
|
|
355
|
+
"retrieval": "Retrieval",
|
|
356
|
+
"retrieverAuto": "Auto",
|
|
357
|
+
"retrieverFuzzy": "Fuzzy",
|
|
358
|
+
"retrieverHybrid": "Hybrid",
|
|
359
|
+
"retrieverSemantic": "Semantic",
|
|
360
|
+
"searchError": "Error",
|
|
361
|
+
"searchFieldsPlaceholder": "Search fields...",
|
|
362
|
+
"searchPlaceholder": "Search for {entityType}…",
|
|
363
|
+
"searchResultsPagination": "Search results pagination",
|
|
364
|
+
"selectDateAndTime": "Select date",
|
|
365
|
+
"selectFieldFirst": "Select a field first",
|
|
366
|
+
"selectOrEnterValue": "Select or type value",
|
|
367
|
+
"selectSpecificPathPlaceholder": "Select a specific path...",
|
|
368
|
+
"showFilters": "Show filters",
|
|
369
|
+
"structuredFilters": "Structured filters",
|
|
370
|
+
"toDate": "To date",
|
|
371
|
+
"toNumber": "To",
|
|
372
|
+
"valueControlTo": "to",
|
|
373
|
+
"valueLabel": "Value",
|
|
374
|
+
"viewDetails": "View details"
|
|
486
375
|
}
|
|
487
376
|
},
|
|
488
377
|
"settings": {
|
|
489
378
|
"page": {
|
|
379
|
+
"aoStackStatus": "AO stack status",
|
|
380
|
+
"engineStatusTitle": "Workflow engine status",
|
|
490
381
|
"flushButton": "Flush",
|
|
491
382
|
"flushCacheSettingsTitle": "Flush cache settings",
|
|
492
|
-
"engineStatusTitle": "Workflow engine status",
|
|
493
|
-
"workerStatusTitle": "Worker status",
|
|
494
383
|
"modifyEngine": "Modify the engine settings",
|
|
384
|
+
"noSettingsExposed": "No settings exposed by the backend, to enable this, please refer to the",
|
|
385
|
+
"numberOfQueuedJobs": "Number of queued jobs",
|
|
386
|
+
"numberOfRunningJobs": "Number of running jobs",
|
|
387
|
+
"numberOfWorkersOnline": "Number of workers online",
|
|
495
388
|
"pauseEngine": "Pause workflow engine",
|
|
389
|
+
"resetTextSearchIndex": "Reset text search index",
|
|
390
|
+
"resetTextSearchIndexButton": "Reset",
|
|
496
391
|
"runningProcesses": "Running processes",
|
|
497
392
|
"selectSettings": "Select cache",
|
|
393
|
+
"settingsOverviewLink": "Settings Overview page in the documentation",
|
|
498
394
|
"startEngine": "Start workflow engine",
|
|
499
|
-
"resetTextSearchIndex": "Reset text search index",
|
|
500
|
-
"resetTextSearchIndexButton": "Reset",
|
|
501
395
|
"status": "Status",
|
|
502
|
-
"numberOfQueuedJobs": "Number of queued jobs",
|
|
503
|
-
"numberOfRunningJobs": "Number of running jobs",
|
|
504
|
-
"numberOfWorkersOnline": "Number of workers online",
|
|
505
396
|
"viewStatusPage": "View AO status page",
|
|
506
|
-
"
|
|
507
|
-
"noSettingsExposed": "No settings exposed by the backend, to enable this, please refer to the",
|
|
508
|
-
"settingsOverviewLink": "Settings Overview page in the documentation"
|
|
397
|
+
"workerStatusTitle": "Worker status"
|
|
509
398
|
},
|
|
510
399
|
"tabs": {
|
|
511
400
|
"actions": "Actions",
|
|
@@ -513,21 +402,11 @@
|
|
|
513
402
|
}
|
|
514
403
|
},
|
|
515
404
|
"startPage": {
|
|
516
|
-
"myWorkflows": {
|
|
517
|
-
"buttonText": "Show my completed workflows",
|
|
518
|
-
"headerTitle": "My completed workflows",
|
|
519
|
-
"listTitle": "My most recent workflows"
|
|
520
|
-
},
|
|
521
405
|
"activeSubscriptions": {
|
|
522
406
|
"buttonText": "Show all active subscriptions",
|
|
523
407
|
"headerTitle": "Total active subscriptions",
|
|
524
408
|
"listTitle": "Most recent subscriptions"
|
|
525
409
|
},
|
|
526
|
-
"outOfSyncSubscriptions": {
|
|
527
|
-
"buttonText": "Show all active out-of-sync subscriptions",
|
|
528
|
-
"headerTitle": "Total active out-of-sync subscriptions",
|
|
529
|
-
"listTitle": "Most recent active out-of-sync subscriptions"
|
|
530
|
-
},
|
|
531
410
|
"activeWorkflows": {
|
|
532
411
|
"buttonText": "Show all active workflows",
|
|
533
412
|
"headerTitle": "Total active workflows",
|
|
@@ -538,162 +417,157 @@
|
|
|
538
417
|
"headerTitle": "Total failed tasks",
|
|
539
418
|
"listTitle": "Most recent failed tasks"
|
|
540
419
|
},
|
|
420
|
+
"myWorkflows": {
|
|
421
|
+
"buttonText": "Show my completed workflows",
|
|
422
|
+
"headerTitle": "My completed workflows",
|
|
423
|
+
"listTitle": "My most recent workflows"
|
|
424
|
+
},
|
|
425
|
+
"outOfSyncSubscriptions": {
|
|
426
|
+
"buttonText": "Show all active out-of-sync subscriptions",
|
|
427
|
+
"headerTitle": "Total active out-of-sync subscriptions",
|
|
428
|
+
"listTitle": "Most recent active out-of-sync subscriptions"
|
|
429
|
+
},
|
|
541
430
|
"products": {
|
|
542
431
|
"headerTitle": "Total number of products",
|
|
543
432
|
"listTitle": "Total number of product instances"
|
|
544
433
|
}
|
|
545
434
|
},
|
|
546
|
-
"
|
|
547
|
-
"
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
"
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
"
|
|
564
|
-
|
|
565
|
-
"after": " (agent functionality requires search)"
|
|
566
|
-
},
|
|
567
|
-
"checkVersion": "Ensure your orchestrator-core version supports agent functionality",
|
|
568
|
-
"configureOpenAI": "Configure your OpenAI API key if using OpenAI models",
|
|
569
|
-
"restartService": "Restart your service",
|
|
570
|
-
"checkDockerConfig": "If using Docker, make sure the environment variables are set in docker-compose.yml"
|
|
435
|
+
"subscriptions": {
|
|
436
|
+
"detail": {
|
|
437
|
+
"actions": {
|
|
438
|
+
"actions": "Actions",
|
|
439
|
+
"lockedBySubscriptions": "This action is locked by the following subscriptions:",
|
|
440
|
+
"modify": "Modify workflow",
|
|
441
|
+
"reconcile": "Reconcile workflow",
|
|
442
|
+
"subscription": {
|
|
443
|
+
"insufficient_workflow_permissions": "Insufficient user permissions to run this workflow",
|
|
444
|
+
"no_modify_deleted_related_objects": "This subscription can not be modified because it contains references to other systems that are deleted.",
|
|
445
|
+
"no_modify_in_use_by_subscription": "This subscription can not be {action} as it is used in other subscriptions:",
|
|
446
|
+
"no_modify_invalid_status": "This subscription can not be modified because of the status: {status}. Only subscriptions with status {usable_when} can be {action}.",
|
|
447
|
+
"no_modify_subscription_in_use_by_others": "This subscription can not be modified because it is in use by one or more other subscriptions.\n\nSubscriptions:",
|
|
448
|
+
"no_modify_workflow": "This subscription can not be modified as the product has no modify workflows.",
|
|
449
|
+
"no_termination_workflow": "This subscription can not be terminated as the product has no termination workflows.",
|
|
450
|
+
"no_validate_workflow": "This subscription can not be validated as the product has no validate workflows.",
|
|
451
|
+
"not_in_sync": "This subscription can not be modified because it is not in-sync. This means there is some error in the registration of the subscription or that it is being modified by another workflow.",
|
|
452
|
+
"relations_not_in_sync": "This subscription can not be modified because some related subscriptions are not in-sync.\n\nLocked subscriptions:",
|
|
453
|
+
"running_process": "This action cannot be started because this subscription already has a running process or task."
|
|
571
454
|
},
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
"
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"
|
|
585
|
-
|
|
586
|
-
|
|
455
|
+
"tasks": "Tasks",
|
|
456
|
+
"terminate": "Terminate workflow"
|
|
457
|
+
},
|
|
458
|
+
"blockTitleFixedInputs": "Fixed inputs",
|
|
459
|
+
"blockTitleProductInfo": "Product Info",
|
|
460
|
+
"blockTitleSubscriptionDetails": "Subscription details",
|
|
461
|
+
"created": "Created",
|
|
462
|
+
"ctaSelectProductBlock": "Select one or more product blocks to view their details",
|
|
463
|
+
"customer": "Customer",
|
|
464
|
+
"customerDescriptions": "Customer descriptions",
|
|
465
|
+
"customerUuid": "Customer UUID",
|
|
466
|
+
"description": "Description",
|
|
467
|
+
"endDate": "End date",
|
|
468
|
+
"hideAll": "Hide all",
|
|
469
|
+
"hideDetails": "Hide details",
|
|
470
|
+
"hideTerminatedRelatedSubscriptions": "Hide terminated subscriptions",
|
|
471
|
+
"id": "ID",
|
|
472
|
+
"inUseByRelations": "In-use by subscription(s)",
|
|
473
|
+
"insync": "In sync",
|
|
474
|
+
"lastRunValidation": "Most recent validate",
|
|
475
|
+
"metadata": "Metadata",
|
|
476
|
+
"name": "Name",
|
|
477
|
+
"noProductBlockSelected": "No product block selected",
|
|
478
|
+
"noRelatedSubscriptions": "No related subscriptions found",
|
|
479
|
+
"noValidateWorkflows": "No validate workflows have been run recently",
|
|
480
|
+
"note": "Note",
|
|
481
|
+
"ownerSubscriptionId": "Owner subscription ID",
|
|
482
|
+
"processDetail": {
|
|
483
|
+
"id": "ID",
|
|
484
|
+
"note": "Note",
|
|
485
|
+
"startedAt": "Started at",
|
|
486
|
+
"startedBy": "Started by",
|
|
487
|
+
"status": "Status"
|
|
587
488
|
},
|
|
588
|
-
"
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
489
|
+
"productBlocks": "Product blocks",
|
|
490
|
+
"productName": "Product name",
|
|
491
|
+
"productType": "Product type",
|
|
492
|
+
"see": "See",
|
|
493
|
+
"selectByNameButtonText": "Select by name",
|
|
494
|
+
"selectByNameTitle": "Select product blocks by name",
|
|
495
|
+
"self": "Current subscription",
|
|
496
|
+
"setInSync": "Set in Sync",
|
|
497
|
+
"setInSyncFailed": {
|
|
498
|
+
"text": "The subscription could not be set in sync. Please try again later.",
|
|
499
|
+
"title": "Set in sync failed"
|
|
593
500
|
},
|
|
594
|
-
"
|
|
595
|
-
|
|
596
|
-
"
|
|
597
|
-
"
|
|
598
|
-
"discover_filter_paths": "I'm discovering available filters",
|
|
599
|
-
"run_aggregation": "I'm running aggregations",
|
|
600
|
-
"prepare_export": "I'm preparing the export",
|
|
601
|
-
"get_valid_operators": "I'm getting valid operators",
|
|
602
|
-
"set_temporal_grouping": "I'm setting temporal grouping"
|
|
501
|
+
"setInSyncQuestion": "Are you sure you want to do this? You're about to force a subscription in sync. When it's clear why the subscription is out of sync this could enable you to start or finish a change on this subscription. When you're in doubt, please consult the network automators first as running workflows on subscriptions that are not in sync can potentially do great harm to the network.",
|
|
502
|
+
"setInSyncSuccess": {
|
|
503
|
+
"text": "The subscription was successfully set in sync.",
|
|
504
|
+
"title": "Subscription set in sync"
|
|
603
505
|
},
|
|
604
|
-
"
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
506
|
+
"showAll": "Show all",
|
|
507
|
+
"showDetails": "Show details",
|
|
508
|
+
"startDate": "Start date",
|
|
509
|
+
"status": "Status",
|
|
510
|
+
"subscriptionId": "Subscription ID",
|
|
511
|
+
"subscriptionInstanceId": "Instance ID",
|
|
512
|
+
"subscriptionIsInSync": "Subscription is in sync",
|
|
513
|
+
"tabs": {
|
|
514
|
+
"general": "General",
|
|
515
|
+
"relatedSubscriptions": "Related subscriptions",
|
|
516
|
+
"serviceConfiguration": "Service configuration",
|
|
517
|
+
"workflows": "Workflows"
|
|
608
518
|
},
|
|
609
|
-
"
|
|
610
|
-
|
|
611
|
-
|
|
519
|
+
"tag": "Tag",
|
|
520
|
+
"title": "Subscriptions",
|
|
521
|
+
"workflowsTab": {
|
|
522
|
+
"startWithNewestLabel": "Start with newest first",
|
|
523
|
+
"startWithOldestLabel": "Start with oldest first"
|
|
612
524
|
}
|
|
525
|
+
},
|
|
526
|
+
"index": {
|
|
527
|
+
"customerFullname": "Customer",
|
|
528
|
+
"customerId": "Customer ID",
|
|
529
|
+
"customerShortcode": "Customer abbr",
|
|
530
|
+
"description": "Description",
|
|
531
|
+
"endDate": "End date",
|
|
532
|
+
"id": "ID",
|
|
533
|
+
"insync": "In Sync",
|
|
534
|
+
"metadata": "Metadata",
|
|
535
|
+
"note": "Note",
|
|
536
|
+
"product": "Product",
|
|
537
|
+
"startDate": "Start date",
|
|
538
|
+
"status": "Status",
|
|
539
|
+
"tag": "Product tag"
|
|
540
|
+
},
|
|
541
|
+
"tabs": {
|
|
542
|
+
"active": "Active",
|
|
543
|
+
"all": "All",
|
|
544
|
+
"terminated": "Terminated",
|
|
545
|
+
"transient": "Transient"
|
|
613
546
|
}
|
|
614
547
|
},
|
|
615
|
-
"
|
|
616
|
-
"availability": {
|
|
617
|
-
"unavailable": {
|
|
618
|
-
"title": "Search Service Not Available",
|
|
619
|
-
"instructions": {
|
|
620
|
-
"setEnvironmentVariable": {
|
|
621
|
-
"before": "Set ",
|
|
622
|
-
"after": " in your service environment variables"
|
|
623
|
-
},
|
|
624
|
-
"checkVersion": "Ensure your orchestrator-core version supports search functionality",
|
|
625
|
-
"restartService": "Restart your service",
|
|
626
|
-
"checkDockerConfig": "If using Docker, make sure the environment variable is set in docker-compose.yml"
|
|
627
|
-
},
|
|
628
|
-
"documentation": "Please refer to the orchestrator documentation for detailed setup instructions.",
|
|
629
|
-
"retryButton": "Retry Connection"
|
|
630
|
-
}
|
|
631
|
-
},
|
|
548
|
+
"tasks": {
|
|
632
549
|
"page": {
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"
|
|
636
|
-
"addRule": "Add rule",
|
|
637
|
-
"addGroup": "Add group",
|
|
638
|
-
"removeGroup": "Remove group",
|
|
639
|
-
"emptyGroupDescription": "Add conditions or nested groups to build your filter.",
|
|
640
|
-
"emptyGroupTitle": "Empty group",
|
|
641
|
-
"fieldSearchPlaceholder": "Type to search fields...",
|
|
642
|
-
"removeConditionAriaLabel": "Remove condition",
|
|
643
|
-
"groupLabel": "Group",
|
|
644
|
-
"hideFilters": "Hide filters",
|
|
645
|
-
"showFilters": "Show filters",
|
|
646
|
-
"structuredFilters": "Structured filters",
|
|
647
|
-
"retrieval": "Retrieval",
|
|
648
|
-
"retrieverAuto": "Auto",
|
|
649
|
-
"retrieverFuzzy": "Fuzzy",
|
|
650
|
-
"retrieverSemantic": "Semantic",
|
|
651
|
-
"retrieverHybrid": "Hybrid",
|
|
652
|
-
"searchError": "Error",
|
|
653
|
-
"dismiss": "Dismiss",
|
|
654
|
-
"searchPlaceholder": "Search for {entityType}…",
|
|
655
|
-
"noResults": "No Results",
|
|
656
|
-
"noResultsMessage": "No {entityType} found matching your search criteria.",
|
|
657
|
-
"noResultsSuggestions": "Try adjusting your search terms, removing filters, or searching for different keywords.",
|
|
658
|
-
"noResultsFound": "No results found for your search.",
|
|
659
|
-
"loadingSearchResults": "Loading search results...",
|
|
660
|
-
"previousPage": "Previous page",
|
|
661
|
-
"page": "Page",
|
|
662
|
-
"nextPage": "Next page",
|
|
663
|
-
"resultsOnPage": "{resultCount} result(s) on this page",
|
|
664
|
-
"searchResultsPagination": "Search results pagination",
|
|
665
|
-
"viewDetails": "View details",
|
|
666
|
-
"selectOrEnterValue": "Select or type value",
|
|
667
|
-
"enterValue": "Enter value",
|
|
668
|
-
"fromNumber": "From",
|
|
669
|
-
"toNumber": "To",
|
|
670
|
-
"fromDate": "From date",
|
|
671
|
-
"toDate": "To date",
|
|
672
|
-
"enterNumber": "Enter number",
|
|
673
|
-
"selectDateAndTime": "Select date",
|
|
674
|
-
"valueControlTo": "to",
|
|
675
|
-
"searchFieldsPlaceholder": "Search fields...",
|
|
676
|
-
"selectSpecificPathPlaceholder": "Select a specific path...",
|
|
677
|
-
"anyPathOption": "Any path",
|
|
678
|
-
"operatorLabel": "Operator",
|
|
679
|
-
"fieldLabel": "Field",
|
|
680
|
-
"valueLabel": "Value",
|
|
681
|
-
"fieldsGroupLabel": "Fields",
|
|
682
|
-
"componentsGroupLabel": "Components",
|
|
683
|
-
"pathsCount": "{count} paths",
|
|
684
|
-
"id": "Id",
|
|
685
|
-
"type": "Entity type",
|
|
686
|
-
"title": "Title",
|
|
687
|
-
"score": "Score",
|
|
688
|
-
"matchingField": "Matching field",
|
|
689
|
-
"perfectMatch": "Perfect match",
|
|
690
|
-
"removeRule": "Remove rule"
|
|
550
|
+
"rerunAll": "Re-try all tasks",
|
|
551
|
+
"rerunAllQuestion": "Are you sure you want to re-try all failed tasks?",
|
|
552
|
+
"taskName": "Task"
|
|
691
553
|
},
|
|
692
554
|
"tabs": {
|
|
693
|
-
"
|
|
694
|
-
"
|
|
695
|
-
|
|
696
|
-
|
|
555
|
+
"active": "Active",
|
|
556
|
+
"completed": "Completed"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"workflowGuide": {
|
|
560
|
+
"hide": "Hide user guide",
|
|
561
|
+
"noGuideAvailable": "No user guide is available for this workflow/task",
|
|
562
|
+
"show": "Show user guide"
|
|
563
|
+
},
|
|
564
|
+
"workflows": {
|
|
565
|
+
"index": {
|
|
566
|
+
"title": "Workflows"
|
|
567
|
+
},
|
|
568
|
+
"tabs": {
|
|
569
|
+
"active": "Active",
|
|
570
|
+
"completed": "Completed"
|
|
697
571
|
}
|
|
698
572
|
}
|
|
699
573
|
}
|