@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/dist/index.js
CHANGED
|
@@ -61,7 +61,7 @@ var PolicyResource = /* @__PURE__ */ ((PolicyResource2) => {
|
|
|
61
61
|
})(PolicyResource || {});
|
|
62
62
|
|
|
63
63
|
// src/configuration/version.ts
|
|
64
|
-
var ORCHESTRATOR_UI_LIBRARY_VERSION = "8.7.
|
|
64
|
+
var ORCHESTRATOR_UI_LIBRARY_VERSION = "8.7.1";
|
|
65
65
|
|
|
66
66
|
// src/types/types.ts
|
|
67
67
|
var EngineStatus = /* @__PURE__ */ ((EngineStatus2) => {
|
|
@@ -5750,6 +5750,10 @@ var WfoCheckbox = ({ pydanticFormField, onChange, value, disabled }) => {
|
|
|
5750
5750
|
|
|
5751
5751
|
// src/components/WfoPydanticForm/fields/WfoSummary.tsx
|
|
5752
5752
|
import { capitalize as capitalize3 } from "lodash";
|
|
5753
|
+
import {
|
|
5754
|
+
useGetConfig,
|
|
5755
|
+
useLabelProvider
|
|
5756
|
+
} from "pydantic-forms";
|
|
5753
5757
|
import { EuiFlexItem, EuiFormRow as EuiFormRow2, EuiText as EuiText2 } from "@elastic/eui";
|
|
5754
5758
|
|
|
5755
5759
|
// src/components/WfoPydanticForm/fields/wfoPydanticFormUtils.ts
|
|
@@ -5773,6 +5777,31 @@ import { jsx as jsx80, jsxs as jsxs45 } from "@emotion/react/jsx-runtime";
|
|
|
5773
5777
|
var WfoSummary = ({ pydanticFormField }) => {
|
|
5774
5778
|
const { summaryFieldStyle } = useWithOrchestratorTheme(summaryFieldStyles);
|
|
5775
5779
|
const { formRowStyle } = useWithOrchestratorTheme(getCommonFormFieldStyles);
|
|
5780
|
+
const config = useGetConfig();
|
|
5781
|
+
const { data } = useLabelProvider(
|
|
5782
|
+
config.labelProvider,
|
|
5783
|
+
"temp",
|
|
5784
|
+
"test"
|
|
5785
|
+
);
|
|
5786
|
+
const rawLabels = data?.labels || { summary: {} };
|
|
5787
|
+
const labelTranslations = {
|
|
5788
|
+
...rawLabels,
|
|
5789
|
+
...rawLabels?.summary
|
|
5790
|
+
};
|
|
5791
|
+
const translateSummaryField = (value) => {
|
|
5792
|
+
if (value in labelTranslations) {
|
|
5793
|
+
return labelTranslations[value];
|
|
5794
|
+
}
|
|
5795
|
+
const match = value.match(/^(.+)_(\d+)$/);
|
|
5796
|
+
if (!match) {
|
|
5797
|
+
return value;
|
|
5798
|
+
}
|
|
5799
|
+
const [, base, suffix] = match;
|
|
5800
|
+
if (base in labelTranslations) {
|
|
5801
|
+
return `${labelTranslations[base]} ${suffix}`;
|
|
5802
|
+
}
|
|
5803
|
+
return snakeToHuman(capitalize3(value));
|
|
5804
|
+
};
|
|
5776
5805
|
const { id, title, description } = pydanticFormField;
|
|
5777
5806
|
const uniforms = pydanticFormField.schema.uniforms;
|
|
5778
5807
|
const summaryData = uniforms?.data;
|
|
@@ -5781,15 +5810,15 @@ var WfoSummary = ({ pydanticFormField }) => {
|
|
|
5781
5810
|
const columns = summaryData?.columns || [];
|
|
5782
5811
|
const extraColumnsData = columns.filter((_7, index) => index !== 0);
|
|
5783
5812
|
const rows = columns[0].map((row, index) => /* @__PURE__ */ jsxs45("tr", { children: [
|
|
5784
|
-
labels && /* @__PURE__ */ jsx80("td", { className: `label`, children: getNestedSummaryLabel(labels, index) }),
|
|
5813
|
+
labels && /* @__PURE__ */ jsx80("td", { className: `label`, children: translateSummaryField(getNestedSummaryLabel(labels, index)) }),
|
|
5785
5814
|
/* @__PURE__ */ jsx80("td", { className: `value`, children: typeof row === "string" && row.includes("<!doctype html>") ? /* @__PURE__ */ jsx80("div", { className: "emailMessage", dangerouslySetInnerHTML: { __html: row } }) : row }),
|
|
5786
5815
|
extraColumnsData && extraColumnsData.map((_7, idx) => /* @__PURE__ */ jsx80("td", { className: `value`, children: extraColumnsData[idx][index]?.toString() }, idx))
|
|
5787
5816
|
] }, index));
|
|
5788
5817
|
const tableHeader = !headers || headers.length === 0 ? null : /* @__PURE__ */ jsxs45("tr", { children: [
|
|
5789
5818
|
labels && /* @__PURE__ */ jsx80("th", {}),
|
|
5790
|
-
headers.map((header, idx) => /* @__PURE__ */ jsx80("th", { children: header }, idx))
|
|
5819
|
+
headers.map((header, idx) => /* @__PURE__ */ jsx80("th", { children: translateSummaryField(header) }, idx))
|
|
5791
5820
|
] });
|
|
5792
|
-
const formattedTitle = snakeToHuman(capitalize3(title ?? ""));
|
|
5821
|
+
const formattedTitle = title === "MigrationSummaryValue" ? translateSummaryField(id) : snakeToHuman(capitalize3(title ?? ""));
|
|
5793
5822
|
return /* @__PURE__ */ jsx80(EuiFlexItem, { "data-testid": id, css: [summaryFieldStyle, formRowStyle], children: /* @__PURE__ */ jsx80("section", { children: /* @__PURE__ */ jsx80(
|
|
5794
5823
|
EuiFormRow2,
|
|
5795
5824
|
{
|
|
@@ -5810,7 +5839,7 @@ import {
|
|
|
5810
5839
|
RenderFields,
|
|
5811
5840
|
disableField,
|
|
5812
5841
|
getPydanticFormComponents,
|
|
5813
|
-
useGetConfig
|
|
5842
|
+
useGetConfig as useGetConfig2
|
|
5814
5843
|
} from "pydantic-forms";
|
|
5815
5844
|
import { EuiFlexGroup as EuiFlexGroup2 } from "@elastic/eui";
|
|
5816
5845
|
|
|
@@ -5831,7 +5860,7 @@ var getWfoObjectFieldStyles = () => {
|
|
|
5831
5860
|
// src/components/WfoPydanticForm/fields/WfoObjectField/WfoObjectField.tsx
|
|
5832
5861
|
import { jsx as jsx81 } from "@emotion/react/jsx-runtime";
|
|
5833
5862
|
var WfoObjectField = ({ pydanticFormField }) => {
|
|
5834
|
-
const config =
|
|
5863
|
+
const config = useGetConfig2();
|
|
5835
5864
|
const disabled = pydanticFormField.attributes?.disabled || false;
|
|
5836
5865
|
const { wfoObjectFieldStyles } = getWfoObjectFieldStyles();
|
|
5837
5866
|
const components2 = getPydanticFormComponents(pydanticFormField.properties || {}, config?.componentMatcher);
|
|
@@ -5851,7 +5880,7 @@ import {
|
|
|
5851
5880
|
disableField as disableField2,
|
|
5852
5881
|
fieldToComponentMatcher,
|
|
5853
5882
|
itemizeArrayItem,
|
|
5854
|
-
useGetConfig as
|
|
5883
|
+
useGetConfig as useGetConfig3,
|
|
5855
5884
|
useGetForm
|
|
5856
5885
|
} from "pydantic-forms";
|
|
5857
5886
|
import { EuiIcon } from "@elastic/eui";
|
|
@@ -5906,7 +5935,7 @@ var PlusButton = ({ onClick, testId }) => {
|
|
|
5906
5935
|
return /* @__PURE__ */ jsx82("div", { css: plusButtonWrapper, children: /* @__PURE__ */ jsx82(EuiIcon, { onClick, type: "plus", size: "xxl", color: theme.colors.success, "data-testid": testId }) });
|
|
5907
5936
|
};
|
|
5908
5937
|
var WfoArrayField = ({ pydanticFormField }) => {
|
|
5909
|
-
const config =
|
|
5938
|
+
const config = useGetConfig3();
|
|
5910
5939
|
const reactHookForm = useGetForm();
|
|
5911
5940
|
const disabled = pydanticFormField.attributes?.disabled || false;
|
|
5912
5941
|
const { control } = reactHookForm;
|
|
@@ -20811,7 +20840,7 @@ var FilterGroup = ({
|
|
|
20811
20840
|
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButton25, { size: "s", fill: true, color: "primary", onClick: toggleOperator, children: group.op }) })
|
|
20812
20841
|
] }) }),
|
|
20813
20842
|
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsxs151(EuiFlexGroup51, { gutterSize: "s", alignItems: "center", children: [
|
|
20814
|
-
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButton25, { size: "s", iconType: "plusInCircle", onClick: addCondition, children: t("
|
|
20843
|
+
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButton25, { size: "s", iconType: "plusInCircle", onClick: addCondition, children: t("addRule") }) }),
|
|
20815
20844
|
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(WfoToolTip, { tooltipContent: !canAddGroup ? t("maxNestingDepth") : t("addNestedGroup"), children: /* @__PURE__ */ jsx291(EuiButton25, { size: "s", iconType: "nested", onClick: addGroup, disabled: !canAddGroup, children: t("addGroup") }) }) }),
|
|
20816
20845
|
!isRoot && onRemove && /* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButtonIcon20, { iconType: "trash", color: "danger", onClick: onRemove, "aria-label": t("removeGroup") }) })
|
|
20817
20846
|
] }) })
|
|
@@ -21238,513 +21267,402 @@ var { useTranslationsQuery } = translationsApi;
|
|
|
21238
21267
|
|
|
21239
21268
|
// src/messages/en-GB.json
|
|
21240
21269
|
var en_GB_default = {
|
|
21241
|
-
main: {
|
|
21242
|
-
start: "Start",
|
|
21243
|
-
ariaLabelToggleSideMenu: "Show/Hide side menu",
|
|
21244
|
-
ariaLabelCurrentPage: "Current page",
|
|
21245
|
-
metadata: "Metadata",
|
|
21246
|
-
metadataProducts: "Products",
|
|
21247
|
-
metadataProductblocks: "Product blocks",
|
|
21248
|
-
metadataResourceTypes: "Resource types",
|
|
21249
|
-
metadataWorkflows: "Workflows",
|
|
21250
|
-
metadataTasks: "Tasks",
|
|
21251
|
-
metadataScheduledTasks: "Scheduled tasks",
|
|
21252
|
-
mobileTitle: "Main menu",
|
|
21253
|
-
settings: "Settings",
|
|
21254
|
-
subscriptions: "Subscriptions",
|
|
21255
|
-
tasks: "Tasks",
|
|
21256
|
-
title: "Workflow Orchestrator",
|
|
21257
|
-
welcome: "Welcome",
|
|
21258
|
-
workflows: "Workflows",
|
|
21259
|
-
darkMode: "Dark mode",
|
|
21260
|
-
lightMode: "Light mode",
|
|
21261
|
-
websocketConnected: "This page recexives live updates from the server",
|
|
21262
|
-
websocketDisconnected: "The connection to the server is lost, click the icon or refresh the page",
|
|
21263
|
-
websocketDisconnectedShort: "WebSocket disconnected, click the icon to reconnect",
|
|
21264
|
-
resetToDefault: "Reset to default",
|
|
21265
|
-
savePreferences: "Save preferences",
|
|
21266
|
-
numberOfRows: "Number of rows",
|
|
21267
|
-
tableSettings: "Table settings",
|
|
21268
|
-
openMenu: "Open menu",
|
|
21269
|
-
incompatibleVersion: "Incompatible version",
|
|
21270
|
-
incompatibleVersionText: "The version of the WFO UI is incompatible with this version of orchestrator-core.",
|
|
21271
|
-
minimumOrchestratorCoreVersion: "Minimum orchestrator-core version"
|
|
21272
|
-
},
|
|
21273
21270
|
common: {
|
|
21274
|
-
|
|
21271
|
+
applyFilter: "Apply filter",
|
|
21272
|
+
createFilter: "Create a filter",
|
|
21275
21273
|
deselect: "Deselect",
|
|
21276
|
-
close: "Close",
|
|
21277
21274
|
editColumns: "Edit columns",
|
|
21278
|
-
|
|
21275
|
+
errorMessage: "An error occurred",
|
|
21276
|
+
export: "Export",
|
|
21277
|
+
insyncFalse: "out-of-sync",
|
|
21278
|
+
insyncTrue: "in-sync",
|
|
21279
|
+
loadMore: "Load more",
|
|
21279
21280
|
loading: "Loading",
|
|
21280
21281
|
newSubscription: "New subscription",
|
|
21281
21282
|
newTask: "New task",
|
|
21282
21283
|
noFailedTasks: "No failed tasks!",
|
|
21283
21284
|
noItemsFound: "No items found",
|
|
21284
|
-
|
|
21285
|
-
errorMessage: "An error occurred",
|
|
21286
|
-
unknownError: "Unknown error",
|
|
21287
|
-
export: "Export",
|
|
21288
|
-
unauthorizedPage: "You are not authorized to see this page",
|
|
21289
|
-
insyncTrue: "in-sync",
|
|
21290
|
-
insyncFalse: "out-of-sync",
|
|
21291
|
-
searchModalTitle: "Search string options",
|
|
21292
|
-
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> \u2013 free text search</li> <li><b>tag:l2vpn</b> \u2013 search in a specific column</li><li><b>tag:lp description:test</b> \u2013 search in multiple columns</li><li><b>tag:(lp|lr)</b> \u2013 multiselect within 1 column</li><li><b>-tag:lp</b> \u2013 negated filter</li><li><b>test*</b> \u2013 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>',
|
|
21285
|
+
removeFilter: "Remove filter",
|
|
21293
21286
|
retrieval: "Retrieval",
|
|
21294
21287
|
retrieverAuto: "Auto",
|
|
21295
21288
|
retrieverFuzzy: "Fuzzy",
|
|
21296
|
-
retrieverSemantic: "Semantic",
|
|
21297
21289
|
retrieverHybrid: "Hybrid",
|
|
21298
|
-
|
|
21299
|
-
|
|
21300
|
-
|
|
21301
|
-
|
|
21302
|
-
|
|
21290
|
+
retrieverSemantic: "Semantic",
|
|
21291
|
+
search: "Search",
|
|
21292
|
+
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> \u2013 free text search</li> <li><b>tag:l2vpn</b> \u2013 search in a specific column</li><li><b>tag:lp description:test</b> \u2013 search in multiple columns</li><li><b>tag:(lp|lr)</b> \u2013 multiselect within 1 column</li><li><b>-tag:lp</b> \u2013 negated filter</li><li><b>test*</b> \u2013 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>',
|
|
21293
|
+
searchModalTitle: "Search string options",
|
|
21294
|
+
showAllColumnsInDetailView: "Show all columns in detail view",
|
|
21295
|
+
tableSettings: "Table settings",
|
|
21296
|
+
unauthorizedPage: "You are not authorized to see this page",
|
|
21297
|
+
unknownError: "Unknown error"
|
|
21303
21298
|
},
|
|
21304
21299
|
confirmationDialog: {
|
|
21305
|
-
title: "Please confirm",
|
|
21306
|
-
confirm: "Confirm",
|
|
21307
21300
|
cancel: "Cancel",
|
|
21308
|
-
|
|
21309
|
-
|
|
21310
|
-
stay: "Stay",
|
|
21311
|
-
leave: "Leave"
|
|
21312
|
-
},
|
|
21313
|
-
workflow: {
|
|
21314
|
-
start_workflow_title: "Start workflow"
|
|
21301
|
+
confirm: "Confirm",
|
|
21302
|
+
title: "Please confirm"
|
|
21315
21303
|
},
|
|
21316
21304
|
errors: {
|
|
21305
|
+
failedDeletingScheduledTask: "Error deleting scheduled task",
|
|
21306
|
+
invalidQueryParts: "The query contains invalid parts",
|
|
21317
21307
|
notAllResultsExported: "The current query returned {totalResults} results. Only the first {maximumExportedResults} rows will be exported",
|
|
21318
21308
|
notAllResultsExportedTitle: "Not all items exported",
|
|
21319
|
-
invalidQueryParts: "The query contains invalid parts",
|
|
21320
21309
|
notAllowedWhenEngineIsNotRunningMessage: "This action is not allowed when the Workflow Engine is not running",
|
|
21321
21310
|
notAllowedWhenEngineIsNotRunningTitle: "Workflow Engine is not running",
|
|
21322
21311
|
retrieve_stored_settings: "Something went wrong restoring your settings. Falling back to default settings",
|
|
21323
|
-
retrieve_stored_settings_title: "Error retrieving settings"
|
|
21324
|
-
failedDeletingScheduledTask: "Error deleting scheduled task"
|
|
21312
|
+
retrieve_stored_settings_title: "Error retrieving settings"
|
|
21325
21313
|
},
|
|
21326
|
-
|
|
21327
|
-
|
|
21328
|
-
|
|
21329
|
-
|
|
21330
|
-
|
|
21331
|
-
|
|
21332
|
-
|
|
21333
|
-
|
|
21334
|
-
|
|
21335
|
-
|
|
21336
|
-
|
|
21337
|
-
|
|
21338
|
-
|
|
21339
|
-
|
|
21340
|
-
|
|
21341
|
-
|
|
21342
|
-
|
|
21343
|
-
|
|
21344
|
-
|
|
21345
|
-
|
|
21346
|
-
|
|
21347
|
-
|
|
21348
|
-
|
|
21349
|
-
|
|
21350
|
-
|
|
21351
|
-
|
|
21352
|
-
|
|
21353
|
-
|
|
21354
|
-
|
|
21355
|
-
|
|
21356
|
-
|
|
21357
|
-
|
|
21358
|
-
|
|
21359
|
-
|
|
21360
|
-
|
|
21361
|
-
alternativeSingleValues: "alternative single values",
|
|
21362
|
-
sundayNonStandard: "sunday (non-standard)",
|
|
21363
|
-
invalidExpression: "Invalid cron expression: {error}",
|
|
21364
|
-
nextOccurrences: "Next: {dates}",
|
|
21365
|
-
possibleValues: "Possible values for this field"
|
|
21366
|
-
},
|
|
21367
|
-
ipvAnyNetworkField: {
|
|
21368
|
-
manuallySelectedPrefix: "Manually selected prefix"
|
|
21369
|
-
},
|
|
21370
|
-
node_select: {
|
|
21371
|
-
nodes_loading: "Nodes loading",
|
|
21372
|
-
select_node: "Select node",
|
|
21373
|
-
no_nodes_placeholder: "No nodes"
|
|
21374
|
-
},
|
|
21375
|
-
locationCode: {
|
|
21376
|
-
placeholder: "Search and select a location code..."
|
|
21377
|
-
},
|
|
21378
|
-
product: {
|
|
21379
|
-
placeholder: "Choose product"
|
|
21380
|
-
},
|
|
21381
|
-
select: {
|
|
21382
|
-
placeholder: "Search and select a value..."
|
|
21383
|
-
},
|
|
21384
|
-
vlan: {
|
|
21385
|
-
vlansInUseError: "VLAN range {vlans} are already in use for the selected service port",
|
|
21386
|
-
vlansInUse: "Already used VLAN ranges for this service port: {vlans}",
|
|
21387
|
-
missingInIms: "This service port can not be found in IMS. It may be deleted or in an initial state.",
|
|
21388
|
-
nsiVlansAvailable: "Available NSI VLAN ranges for this service port: {vlans}",
|
|
21389
|
-
nsiNoPortsAvailable: "This service port has no available NSI reserved VLANs (yet).",
|
|
21390
|
-
allPortsAvailable: "This service port has no VLANs in use (yet).",
|
|
21391
|
-
placeholder: "Enter a valid VLAN range...",
|
|
21392
|
-
placeholderNoServicePort: "First select a Service Port...",
|
|
21393
|
-
invalidVlan: "Invalid VLAN - must be a range of valid [2-4094] VLAN integers, for example '2, 5-6, 1048-1052'",
|
|
21394
|
-
untaggedPortInUse: "This service port is already in use and cannot be chosen",
|
|
21395
|
-
taggedOnly: "VLAN is only relevant for service ports in tagged mode, not for link_member or untagged ports.",
|
|
21396
|
-
loadingIms: "Loading VLAN info from IMS"
|
|
21397
|
-
},
|
|
21398
|
-
subscription: {
|
|
21399
|
-
placeholder: "Choose a subscription",
|
|
21400
|
-
loading: "Loading subscriptions..."
|
|
21401
|
-
},
|
|
21402
|
-
nodePort: {
|
|
21403
|
-
loadingNodes: "Loading Node subscriptions...",
|
|
21404
|
-
loadingPorts: "Loading IMS ports...",
|
|
21405
|
-
noPorts: "NO PORTS FOUND FOR THIS NODE",
|
|
21406
|
-
selectNode: "Select node",
|
|
21407
|
-
selectPort: "Select port",
|
|
21408
|
-
selectNodeFirst: "Select a node first"
|
|
21409
|
-
},
|
|
21410
|
-
fileUpload: {
|
|
21411
|
-
invalidFiletype: "Invalid filetype!",
|
|
21412
|
-
errorUploading: "Error uploading file!",
|
|
21413
|
-
fileToBig: "File to large. Maximum file size: {fileSizeLimit}",
|
|
21414
|
-
initialPromptText: "Select or drag and drop a file",
|
|
21415
|
-
supportedFileTypes: "Supported file types: pdf"
|
|
21416
|
-
}
|
|
21417
|
-
}
|
|
21314
|
+
hamburgerMenu: {
|
|
21315
|
+
aoStatusPage: "A&O application status page",
|
|
21316
|
+
logout: "Logout",
|
|
21317
|
+
openMenu: "Open menu",
|
|
21318
|
+
softwareVersions: "Software Versions",
|
|
21319
|
+
support: "Support"
|
|
21320
|
+
},
|
|
21321
|
+
main: {
|
|
21322
|
+
ariaLabelCurrentPage: "Current page",
|
|
21323
|
+
ariaLabelToggleSideMenu: "Show/Hide side menu",
|
|
21324
|
+
darkMode: "Dark mode",
|
|
21325
|
+
incompatibleVersion: "Incompatible version",
|
|
21326
|
+
incompatibleVersionText: "The version of the WFO UI is incompatible with this version of orchestrator-core.",
|
|
21327
|
+
lightMode: "Light mode",
|
|
21328
|
+
metadata: "Metadata",
|
|
21329
|
+
metadataProductblocks: "Product blocks",
|
|
21330
|
+
metadataProducts: "Products",
|
|
21331
|
+
metadataResourceTypes: "Resource types",
|
|
21332
|
+
metadataScheduledTasks: "Scheduled tasks",
|
|
21333
|
+
metadataTasks: "Tasks",
|
|
21334
|
+
metadataWorkflows: "Workflows",
|
|
21335
|
+
minimumOrchestratorCoreVersion: "Minimum orchestrator-core version",
|
|
21336
|
+
mobileTitle: "Main menu",
|
|
21337
|
+
numberOfRows: "Number of rows",
|
|
21338
|
+
resetToDefault: "Reset to default",
|
|
21339
|
+
savePreferences: "Save preferences",
|
|
21340
|
+
settings: "Settings",
|
|
21341
|
+
start: "Start",
|
|
21342
|
+
subscriptions: "Subscriptions",
|
|
21343
|
+
tableSettings: "Table settings",
|
|
21344
|
+
tasks: "Tasks",
|
|
21345
|
+
websocketConnected: "This page receives live updates from the server",
|
|
21346
|
+
websocketDisconnected: "The connection to the server is lost, click the icon or refresh the page",
|
|
21347
|
+
welcome: "Welcome",
|
|
21348
|
+
workflows: "Workflows"
|
|
21418
21349
|
},
|
|
21419
21350
|
metadata: {
|
|
21420
|
-
|
|
21421
|
-
|
|
21422
|
-
|
|
21423
|
-
|
|
21351
|
+
productBlocks: {
|
|
21352
|
+
createdAt: "Created",
|
|
21353
|
+
dependingProductBlocks: "Depending product blocks",
|
|
21354
|
+
description: "Product block description",
|
|
21355
|
+
endDate: "End date",
|
|
21356
|
+
id: "ID",
|
|
21357
|
+
name: "Product block",
|
|
21424
21358
|
resourceTypes: "Resource types",
|
|
21425
|
-
|
|
21426
|
-
|
|
21427
|
-
scheduledTasks: "Scheduled tasks"
|
|
21359
|
+
status: "Status",
|
|
21360
|
+
tag: "Tag"
|
|
21428
21361
|
},
|
|
21429
21362
|
products: {
|
|
21430
|
-
|
|
21431
|
-
name: "Product",
|
|
21432
|
-
tag: "Tag",
|
|
21363
|
+
createdAt: "Created",
|
|
21433
21364
|
description: "Product description",
|
|
21434
|
-
productType: "Type",
|
|
21435
|
-
status: "Status",
|
|
21436
|
-
productBlocks: "Product blocks",
|
|
21437
21365
|
fixedInputs: "Fixed inputs",
|
|
21438
|
-
createdAt: "Created"
|
|
21439
|
-
},
|
|
21440
|
-
productBlocks: {
|
|
21441
21366
|
id: "ID",
|
|
21442
|
-
name: "Product
|
|
21443
|
-
|
|
21444
|
-
|
|
21367
|
+
name: "Product",
|
|
21368
|
+
productBlocks: "Product blocks",
|
|
21369
|
+
productType: "Type",
|
|
21445
21370
|
status: "Status",
|
|
21446
|
-
|
|
21447
|
-
dependingProductBlocks: "Depending product blocks",
|
|
21448
|
-
createdAt: "Created",
|
|
21449
|
-
endDate: "End date",
|
|
21450
|
-
parentIds: "Parents"
|
|
21371
|
+
tag: "Tag"
|
|
21451
21372
|
},
|
|
21452
21373
|
resourceTypes: {
|
|
21453
|
-
type: "Resource type",
|
|
21454
21374
|
description: "Resource type description",
|
|
21455
21375
|
resourceId: "ID",
|
|
21376
|
+
type: "Resource type",
|
|
21456
21377
|
usedInProductBlocks: "Used in product blocks"
|
|
21457
21378
|
},
|
|
21458
|
-
|
|
21459
|
-
|
|
21460
|
-
|
|
21461
|
-
|
|
21462
|
-
|
|
21463
|
-
|
|
21464
|
-
|
|
21379
|
+
scheduledTasks: {
|
|
21380
|
+
addSchedule: "Schedule task",
|
|
21381
|
+
ariaLabelDeleteButton: "Delete task schedule",
|
|
21382
|
+
deleteConfirmationQuestion: "Confirm deleting this schedule task",
|
|
21383
|
+
nextRuntime: "Next runtime",
|
|
21384
|
+
schedule: "Schedule",
|
|
21385
|
+
task: "Task",
|
|
21386
|
+
taskDescription: "Task description"
|
|
21387
|
+
},
|
|
21388
|
+
tabs: {
|
|
21389
|
+
productBlocks: "Product blocks",
|
|
21390
|
+
products: "Products",
|
|
21391
|
+
resourceTypes: "Resource types",
|
|
21392
|
+
scheduledTasks: "Scheduled tasks",
|
|
21393
|
+
tasks: "Tasks",
|
|
21394
|
+
workflows: "Workflows"
|
|
21465
21395
|
},
|
|
21466
21396
|
tasks: {
|
|
21467
|
-
|
|
21468
|
-
|
|
21397
|
+
addSchedule: "Schedule task",
|
|
21398
|
+
createdAt: "Created",
|
|
21469
21399
|
description: "Task description",
|
|
21470
|
-
|
|
21400
|
+
name: "Task",
|
|
21471
21401
|
productTags: "Product tags",
|
|
21472
21402
|
scheduled: "Scheduled",
|
|
21473
|
-
|
|
21474
|
-
|
|
21475
|
-
},
|
|
21476
|
-
scheduledTasks: {
|
|
21477
|
-
task: "Task",
|
|
21478
|
-
taskDescription: "Task description",
|
|
21479
|
-
nextRuntime: "Next runtime",
|
|
21480
|
-
schedule: "Schedule",
|
|
21481
|
-
interval: "Interval",
|
|
21482
|
-
ariaLabelDeleteButton: "Delete task schedule",
|
|
21483
|
-
deleteConfirmationQuestion: "Confirm deleting this schedule task",
|
|
21484
|
-
addSchedule: "Schedule task"
|
|
21403
|
+
target: "Target",
|
|
21404
|
+
workflowId: "ID"
|
|
21485
21405
|
},
|
|
21486
|
-
|
|
21487
|
-
|
|
21488
|
-
|
|
21489
|
-
|
|
21490
|
-
|
|
21491
|
-
|
|
21492
|
-
|
|
21493
|
-
|
|
21494
|
-
firstRunDate: "Start date",
|
|
21495
|
-
"1hour": "1 hour",
|
|
21496
|
-
"2hours": "2 hours",
|
|
21497
|
-
"4hours": "4 hours",
|
|
21498
|
-
"12hours": "12 hours",
|
|
21499
|
-
"24hours": "24 hours",
|
|
21500
|
-
"1week": "1 week",
|
|
21501
|
-
"2weeks": "2 weeks",
|
|
21502
|
-
"1month": "1 month",
|
|
21503
|
-
createScheduleButton: "Create schedule"
|
|
21406
|
+
title: "Metadata",
|
|
21407
|
+
workflows: {
|
|
21408
|
+
createdAt: "Created",
|
|
21409
|
+
description: "Workflow description",
|
|
21410
|
+
name: "Workflow",
|
|
21411
|
+
productTags: "Product tags",
|
|
21412
|
+
target: "Target",
|
|
21413
|
+
workflowId: "ID"
|
|
21504
21414
|
}
|
|
21505
21415
|
},
|
|
21506
|
-
workflowGuide: {
|
|
21507
|
-
title: "User guide of {workflowName}",
|
|
21508
|
-
noGuideAvailable: "No user guide is available for this workflow/task",
|
|
21509
|
-
show: "Show user guide",
|
|
21510
|
-
hide: "Hide user guide"
|
|
21511
|
-
},
|
|
21512
21416
|
processes: {
|
|
21513
|
-
|
|
21514
|
-
|
|
21515
|
-
|
|
21516
|
-
|
|
21517
|
-
|
|
21518
|
-
|
|
21519
|
-
customerAbbreviation: "Customer abbr",
|
|
21520
|
-
subscriptions: "Subscriptions",
|
|
21521
|
-
createdBy: "Created by",
|
|
21522
|
-
assignee: "Assignee",
|
|
21523
|
-
processId: "Process ID",
|
|
21524
|
-
started: "Started",
|
|
21525
|
-
lastModified: "Last modified",
|
|
21526
|
-
workflowTarget: "Target",
|
|
21527
|
-
productTag: "Product tag",
|
|
21528
|
-
showAllRelatedSubscriptions: "Show all related subscriptions",
|
|
21529
|
-
note: "Note"
|
|
21417
|
+
delta: {
|
|
21418
|
+
continuityAboveBelow: "Continuity above below",
|
|
21419
|
+
continuityWithin: "Continuity within",
|
|
21420
|
+
fullScreen: "Full-screen mode",
|
|
21421
|
+
fullScreenExit: "Exit full-screen mode",
|
|
21422
|
+
title: "Subscription delta"
|
|
21530
21423
|
},
|
|
21531
21424
|
detail: {
|
|
21532
|
-
retry: "Retry",
|
|
21533
|
-
resume: "Resume",
|
|
21534
21425
|
abort: "Abort",
|
|
21535
|
-
delete: "Delete",
|
|
21536
|
-
deleteQuestion: "Are you sure you want to delete the {workflowName} task?",
|
|
21537
21426
|
abortTaskQuestion: "Are you sure you want to abort the {workflowName} task?",
|
|
21538
21427
|
abortWorkflowQuestion: "Are you sure you want to abort the {workflowName} workflow?",
|
|
21428
|
+
customer: "Customer",
|
|
21429
|
+
delete: "Delete",
|
|
21430
|
+
deleteQuestion: "Are you sure you want to delete the {workflowName} task?",
|
|
21431
|
+
lastStep: "Current step",
|
|
21432
|
+
lastUpdate: "Last update",
|
|
21433
|
+
openWorkflowTaskInfo: "open workflow/task information in a new tab",
|
|
21434
|
+
relatedSubscriptions: "Related subscriptions",
|
|
21435
|
+
retry: "Retry",
|
|
21539
21436
|
retryTaskQuestion: "Are you sure you want to retry the {workflowName} task?",
|
|
21540
21437
|
retryWorkflowQuestion: "Are you sure you want to retry the {workflowName} workflow?",
|
|
21541
|
-
status: "Status",
|
|
21542
21438
|
startedBy: "Started by",
|
|
21543
|
-
lastStep: "Current step",
|
|
21544
21439
|
startedOn: "Started on",
|
|
21545
|
-
|
|
21546
|
-
|
|
21547
|
-
|
|
21440
|
+
status: "Status"
|
|
21441
|
+
},
|
|
21442
|
+
index: {
|
|
21443
|
+
assignee: "Assignee",
|
|
21444
|
+
createdBy: "Created by",
|
|
21548
21445
|
customer: "Customer",
|
|
21549
|
-
|
|
21446
|
+
customerAbbreviation: "Customer abbr",
|
|
21447
|
+
lastModified: "Last modified",
|
|
21448
|
+
note: "Note",
|
|
21449
|
+
processId: "Process ID",
|
|
21450
|
+
product: "Product",
|
|
21451
|
+
productTag: "Product tag",
|
|
21452
|
+
showAllRelatedSubscriptions: "Show all related subscriptions",
|
|
21453
|
+
started: "Started",
|
|
21454
|
+
status: "Status",
|
|
21455
|
+
step: "Current step",
|
|
21456
|
+
subscriptions: "Subscriptions",
|
|
21457
|
+
workflowName: "Workflow",
|
|
21458
|
+
workflowTarget: "Target"
|
|
21550
21459
|
},
|
|
21551
21460
|
steps: {
|
|
21552
|
-
|
|
21553
|
-
|
|
21554
|
-
|
|
21555
|
-
|
|
21556
|
-
|
|
21557
|
-
hideTraceback: "Hide traceback",
|
|
21558
|
-
viewOptions: "Options",
|
|
21559
|
-
expandAll: "Expand all",
|
|
21461
|
+
codeView: {
|
|
21462
|
+
json: "JSON",
|
|
21463
|
+
raw: "Raw",
|
|
21464
|
+
table: "Table"
|
|
21465
|
+
},
|
|
21560
21466
|
collapseAll: "collapse all",
|
|
21561
21467
|
duration: "Duration",
|
|
21562
|
-
|
|
21468
|
+
expandAll: "Expand all",
|
|
21469
|
+
hideDelta: "Hide subscription delta",
|
|
21470
|
+
hideTraceback: "Hide traceback",
|
|
21471
|
+
showDelta: "Show subscription delta",
|
|
21472
|
+
showTraceback: "Show traceback",
|
|
21563
21473
|
submitTaskFormLabel: "Please submit the form to start this task",
|
|
21564
21474
|
submitWorkflowFormLabel: "Please submit the form to start this workflow",
|
|
21475
|
+
taskSteps: "Task steps",
|
|
21565
21476
|
traceback: "Traceback",
|
|
21566
|
-
|
|
21567
|
-
|
|
21568
|
-
|
|
21569
|
-
raw: "Raw"
|
|
21570
|
-
}
|
|
21571
|
-
},
|
|
21572
|
-
delta: {
|
|
21573
|
-
title: "Subscription delta",
|
|
21574
|
-
fullScreenExit: "Exit full-screen mode",
|
|
21575
|
-
fullScreen: "Full-screen mode",
|
|
21576
|
-
continuityAboveBelow: "Continuity above below",
|
|
21577
|
-
continuityWithin: "Continuity within"
|
|
21578
|
-
}
|
|
21579
|
-
},
|
|
21580
|
-
workflows: {
|
|
21581
|
-
tabs: {
|
|
21582
|
-
active: "Active",
|
|
21583
|
-
completed: "Completed"
|
|
21584
|
-
},
|
|
21585
|
-
index: {
|
|
21586
|
-
title: "Workflows"
|
|
21477
|
+
userInput: "User input",
|
|
21478
|
+
viewOptions: "Options",
|
|
21479
|
+
workflowSteps: "Workflow steps"
|
|
21587
21480
|
}
|
|
21588
21481
|
},
|
|
21589
|
-
|
|
21590
|
-
|
|
21591
|
-
|
|
21592
|
-
|
|
21593
|
-
|
|
21594
|
-
|
|
21595
|
-
|
|
21596
|
-
|
|
21597
|
-
|
|
21598
|
-
|
|
21599
|
-
|
|
21600
|
-
|
|
21601
|
-
|
|
21602
|
-
tag: "Product tag",
|
|
21603
|
-
startDate: "Start date",
|
|
21604
|
-
endDate: "End date",
|
|
21605
|
-
metadata: "Metadata",
|
|
21606
|
-
note: "Note",
|
|
21607
|
-
customerId: "Customer ID",
|
|
21608
|
-
customerFullname: "Customer",
|
|
21609
|
-
customerShortcode: "Customer abbr",
|
|
21610
|
-
actions: "Actions"
|
|
21482
|
+
pydanticForms: {
|
|
21483
|
+
userInputForm: {
|
|
21484
|
+
cancel: "Cancel",
|
|
21485
|
+
inputFieldsHaveValidationErrors: "{nrOfValidationErrors} input field(s) have validation errors",
|
|
21486
|
+
next: "Next",
|
|
21487
|
+
preconditionFailedFallback: "A precondition for starting this task was not met.",
|
|
21488
|
+
preconditionFailedTitle: "This task cannot be started right now",
|
|
21489
|
+
previous: "Previous",
|
|
21490
|
+
previousQuestion: "Are you sure you want to leave this page? Any filled form data will be lost",
|
|
21491
|
+
resumeTask: "Resume task",
|
|
21492
|
+
resumeWorkflow: "Resume workflow",
|
|
21493
|
+
startTask: "Start task",
|
|
21494
|
+
startWorkflow: "Start workflow"
|
|
21611
21495
|
},
|
|
21612
|
-
|
|
21613
|
-
|
|
21614
|
-
|
|
21615
|
-
general: "General",
|
|
21616
|
-
serviceConfiguration: "Service configuration",
|
|
21617
|
-
workflows: "Workflows",
|
|
21618
|
-
relatedSubscriptions: "Related subscriptions"
|
|
21496
|
+
widgets: {
|
|
21497
|
+
contactPersonName: {
|
|
21498
|
+
placeholder: "Search and add contact persons..."
|
|
21619
21499
|
},
|
|
21620
|
-
|
|
21621
|
-
|
|
21622
|
-
|
|
21623
|
-
|
|
21624
|
-
|
|
21625
|
-
|
|
21626
|
-
|
|
21627
|
-
|
|
21628
|
-
|
|
21629
|
-
|
|
21630
|
-
|
|
21631
|
-
|
|
21632
|
-
|
|
21633
|
-
|
|
21634
|
-
|
|
21635
|
-
|
|
21636
|
-
|
|
21637
|
-
no_modify_in_use_by_subscription: "This subscription can not be {action} as it is used in other subscriptions:",
|
|
21638
|
-
no_modify_invalid_status: "This subscription can not be modified because of the status: {status}. Only subscriptions with status {usable_when} can be {action}.",
|
|
21639
|
-
no_modify_workflow: "This subscription can not be modified as the product has no modify workflows.",
|
|
21640
|
-
no_termination_workflow: "This subscription can not be terminated as the product has no termination workflows.",
|
|
21641
|
-
no_validate_workflow: "This subscription can not be validated as the product has no validate workflows.",
|
|
21642
|
-
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.",
|
|
21643
|
-
relations_not_in_sync: "This subscription can not be modified because some related subscriptions are not in-sync.\n\nLocked subscriptions:",
|
|
21644
|
-
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:",
|
|
21645
|
-
insufficient_workflow_permissions: "Insufficient user permissions to run this workflow",
|
|
21646
|
-
running_process: "This action cannot be started because this subscription already has a running process or task."
|
|
21647
|
-
}
|
|
21500
|
+
cron: {
|
|
21501
|
+
allowedValues: "allowed values",
|
|
21502
|
+
alternativeSingleValues: "alternative single values",
|
|
21503
|
+
anyValue: "any value",
|
|
21504
|
+
dayOfMonth: "day (month)",
|
|
21505
|
+
dayOfWeek: "day (week)",
|
|
21506
|
+
hour: "hour",
|
|
21507
|
+
invalidExpression: "Invalid cron expression: {error}",
|
|
21508
|
+
minute: "minute",
|
|
21509
|
+
month: "month",
|
|
21510
|
+
nextOccurrences: "Next: {dates}",
|
|
21511
|
+
possibleValues: "Possible values for this field",
|
|
21512
|
+
rangeOfValues: "range of values",
|
|
21513
|
+
second: "second",
|
|
21514
|
+
stepValues: "step values",
|
|
21515
|
+
sundayNonStandard: "sunday (non-standard)",
|
|
21516
|
+
valueListSeparator: "value list separator"
|
|
21648
21517
|
},
|
|
21649
|
-
|
|
21650
|
-
|
|
21651
|
-
|
|
21652
|
-
showDetails: "Show details",
|
|
21653
|
-
self: "Current subscription",
|
|
21654
|
-
hideDetails: "Hide details",
|
|
21655
|
-
subscriptionDetails: "Subscription details",
|
|
21656
|
-
productName: "Product name",
|
|
21657
|
-
fixedInputs: "Fixed inputs",
|
|
21658
|
-
productInfo: "Product info",
|
|
21659
|
-
noProductBlockSelected: "No product block selected",
|
|
21660
|
-
productBlocks: "Product blocks",
|
|
21661
|
-
ctaSelectProductBlock: "Select one or more product blocks to view their details",
|
|
21662
|
-
startedBy: "Started by",
|
|
21663
|
-
startedAt: "Started at",
|
|
21664
|
-
status: "Status",
|
|
21665
|
-
id: "ID",
|
|
21666
|
-
blockTitleSubscriptionDetails: "Subscription details",
|
|
21667
|
-
blockTitleFixedInputs: "Fixed inputs",
|
|
21668
|
-
blockTitleProductInfo: "Product Info",
|
|
21669
|
-
subscriptionId: "Subscription ID",
|
|
21670
|
-
description: "Description",
|
|
21671
|
-
startDate: "Start date",
|
|
21672
|
-
lastRunValidation: "Most recent validate",
|
|
21673
|
-
noValidateWorkflows: "No validate workflows have been run recently",
|
|
21674
|
-
insync: "In sync",
|
|
21675
|
-
customer: "Customer",
|
|
21676
|
-
customerUuid: "Customer UUID",
|
|
21677
|
-
customerDescriptions: "Customer descriptions",
|
|
21678
|
-
name: "Name",
|
|
21679
|
-
productType: "Product type",
|
|
21680
|
-
tag: "Tag",
|
|
21681
|
-
created: "Created",
|
|
21682
|
-
endDate: "End date",
|
|
21683
|
-
metadata: "Metadata",
|
|
21684
|
-
note: "Note",
|
|
21685
|
-
noRelatedSubscriptions: "No related subscriptions found",
|
|
21686
|
-
hideTerminatedRelatedSubscriptions: "Hide terminated subscriptions",
|
|
21687
|
-
processDetail: {
|
|
21688
|
-
id: "ID",
|
|
21689
|
-
status: "Status",
|
|
21690
|
-
startedAt: "Started at",
|
|
21691
|
-
startedBy: "Started by",
|
|
21692
|
-
note: "Note"
|
|
21518
|
+
customer: {
|
|
21519
|
+
loading: "Loading customers...",
|
|
21520
|
+
placeholder: "Search and select a customer..."
|
|
21693
21521
|
},
|
|
21694
|
-
|
|
21695
|
-
|
|
21696
|
-
|
|
21697
|
-
|
|
21698
|
-
|
|
21699
|
-
|
|
21700
|
-
subscriptionIsInSync: "Subscription is in sync",
|
|
21701
|
-
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.",
|
|
21702
|
-
setInSyncFailed: {
|
|
21703
|
-
title: "Set in sync failed",
|
|
21704
|
-
text: "The subscription could not be set in sync. Please try again later."
|
|
21522
|
+
fileUpload: {
|
|
21523
|
+
errorUploading: "Error uploading file!",
|
|
21524
|
+
fileToBig: "File to large. Maximum file size: {fileSizeLimit}",
|
|
21525
|
+
initialPromptText: "Select or drag and drop a file",
|
|
21526
|
+
invalidFiletype: "Invalid filetype!",
|
|
21527
|
+
supportedFileTypes: "Supported file types: pdf"
|
|
21705
21528
|
},
|
|
21706
|
-
|
|
21707
|
-
|
|
21708
|
-
text: "The subscription was successfully set in sync."
|
|
21529
|
+
ipvAnyNetworkField: {
|
|
21530
|
+
manuallySelectedPrefix: "Manually selected prefix"
|
|
21709
21531
|
},
|
|
21710
|
-
|
|
21711
|
-
|
|
21712
|
-
|
|
21532
|
+
locationCode: {
|
|
21533
|
+
placeholder: "Search and select a location code..."
|
|
21534
|
+
},
|
|
21535
|
+
nodePort: {
|
|
21536
|
+
loadingNodes: "Loading Node subscriptions...",
|
|
21537
|
+
loadingPorts: "Loading IMS ports...",
|
|
21538
|
+
noPorts: "NO PORTS FOUND FOR THIS NODE",
|
|
21539
|
+
selectNode: "Select node",
|
|
21540
|
+
selectNodeFirst: "Select a node first",
|
|
21541
|
+
selectPort: "Select port"
|
|
21542
|
+
},
|
|
21543
|
+
node_select: {
|
|
21544
|
+
no_nodes_placeholder: "No nodes",
|
|
21545
|
+
nodes_loading: "Nodes loading",
|
|
21546
|
+
select_node: "Select node"
|
|
21547
|
+
},
|
|
21548
|
+
product: {
|
|
21549
|
+
placeholder: "Choose product"
|
|
21550
|
+
},
|
|
21551
|
+
select: {
|
|
21552
|
+
placeholder: "Search and select a value..."
|
|
21553
|
+
},
|
|
21554
|
+
subscription: {
|
|
21555
|
+
loading: "Loading subscriptions...",
|
|
21556
|
+
placeholder: "Choose a subscription"
|
|
21557
|
+
},
|
|
21558
|
+
vlan: {
|
|
21559
|
+
allPortsAvailable: "This service port has no VLANs in use (yet).",
|
|
21560
|
+
invalidVlan: "Invalid VLAN - must be a range of valid [2-4094] VLAN integers, for example '2, 5-6, 1048-1052'",
|
|
21561
|
+
loadingIms: "Loading VLAN info from IMS",
|
|
21562
|
+
missingInIms: "This service port can not be found in IMS. It may be deleted or in an initial state.",
|
|
21563
|
+
nsiNoPortsAvailable: "This service port has no available NSI reserved VLANs (yet).",
|
|
21564
|
+
nsiVlansAvailable: "Available NSI VLAN ranges for this service port: {vlans}",
|
|
21565
|
+
placeholder: "Enter a valid VLAN range...",
|
|
21566
|
+
placeholderNoServicePort: "First select a Service Port...",
|
|
21567
|
+
taggedOnly: "VLAN is only relevant for service ports in tagged mode, not for link_member or untagged ports.",
|
|
21568
|
+
untaggedPortInUse: "This service port is already in use and cannot be chosen",
|
|
21569
|
+
vlansInUse: "Already used VLAN ranges for this service port: {vlans}",
|
|
21570
|
+
vlansInUseError: "VLAN range {vlans} are already in use for the selected service port"
|
|
21713
21571
|
}
|
|
21714
21572
|
}
|
|
21715
21573
|
},
|
|
21716
|
-
|
|
21717
|
-
|
|
21718
|
-
|
|
21719
|
-
|
|
21720
|
-
|
|
21574
|
+
search: {
|
|
21575
|
+
availability: {
|
|
21576
|
+
unavailable: {
|
|
21577
|
+
documentation: "Please refer to the orchestrator documentation for detailed setup instructions.",
|
|
21578
|
+
instructions: {
|
|
21579
|
+
checkDockerConfig: "If using Docker, make sure the environment variable is set in docker-compose.yml",
|
|
21580
|
+
checkVersion: "Ensure your orchestrator-core version supports search functionality",
|
|
21581
|
+
restartService: "Restart your service",
|
|
21582
|
+
setEnvironmentVariable: {
|
|
21583
|
+
after: " in your service environment variables",
|
|
21584
|
+
before: "Set "
|
|
21585
|
+
}
|
|
21586
|
+
},
|
|
21587
|
+
retryButton: "Retry Connection",
|
|
21588
|
+
title: "Search Service Not Available"
|
|
21589
|
+
}
|
|
21721
21590
|
},
|
|
21722
|
-
|
|
21723
|
-
|
|
21724
|
-
|
|
21591
|
+
page: {
|
|
21592
|
+
addGroup: "Add group",
|
|
21593
|
+
addNestedGroup: "Add nested group",
|
|
21594
|
+
addRule: "Add rule",
|
|
21595
|
+
anyPathOption: "Any path",
|
|
21596
|
+
componentsGroupLabel: "Components",
|
|
21597
|
+
dismiss: "Dismiss",
|
|
21598
|
+
emptyGroupDescription: "Add conditions or nested groups to build your filter.",
|
|
21599
|
+
emptyGroupTitle: "Empty group",
|
|
21600
|
+
enterNumber: "Enter number",
|
|
21601
|
+
enterValue: "Enter value",
|
|
21602
|
+
fieldLabel: "Field",
|
|
21603
|
+
fieldsGroupLabel: "Fields",
|
|
21604
|
+
fromDate: "From date",
|
|
21605
|
+
fromNumber: "From",
|
|
21606
|
+
groupLabel: "Group",
|
|
21607
|
+
hideFilters: "Hide filters",
|
|
21608
|
+
loadingSearchResults: "Loading search results...",
|
|
21609
|
+
maxNestingDepth: "Maximum nesting depth reached",
|
|
21610
|
+
nextPage: "Next page",
|
|
21611
|
+
noResults: "No Results",
|
|
21612
|
+
noResultsFound: "No results found for your search.",
|
|
21613
|
+
noResultsMessage: "No {entityType} found matching your search criteria.",
|
|
21614
|
+
noResultsSuggestions: "Try adjusting your search terms, removing filters, or searching for different keywords.",
|
|
21615
|
+
operatorLabel: "Operator",
|
|
21616
|
+
page: "Page",
|
|
21617
|
+
pathsCount: "{count} paths",
|
|
21618
|
+
previousPage: "Previous page",
|
|
21619
|
+
removeConditionAriaLabel: "Remove condition",
|
|
21620
|
+
removeGroup: "Remove group",
|
|
21621
|
+
removeRule: "Remove rule",
|
|
21622
|
+
resultsOnPage: "{resultCount} result(s) on this page",
|
|
21623
|
+
retrieval: "Retrieval",
|
|
21624
|
+
retrieverAuto: "Auto",
|
|
21625
|
+
retrieverFuzzy: "Fuzzy",
|
|
21626
|
+
retrieverHybrid: "Hybrid",
|
|
21627
|
+
retrieverSemantic: "Semantic",
|
|
21628
|
+
searchError: "Error",
|
|
21629
|
+
searchFieldsPlaceholder: "Search fields...",
|
|
21630
|
+
searchPlaceholder: "Search for {entityType}\u2026",
|
|
21631
|
+
searchResultsPagination: "Search results pagination",
|
|
21632
|
+
selectDateAndTime: "Select date",
|
|
21633
|
+
selectFieldFirst: "Select a field first",
|
|
21634
|
+
selectOrEnterValue: "Select or type value",
|
|
21635
|
+
selectSpecificPathPlaceholder: "Select a specific path...",
|
|
21636
|
+
showFilters: "Show filters",
|
|
21637
|
+
structuredFilters: "Structured filters",
|
|
21638
|
+
toDate: "To date",
|
|
21639
|
+
toNumber: "To",
|
|
21640
|
+
valueControlTo: "to",
|
|
21641
|
+
valueLabel: "Value",
|
|
21642
|
+
viewDetails: "View details"
|
|
21725
21643
|
}
|
|
21726
21644
|
},
|
|
21727
21645
|
settings: {
|
|
21728
21646
|
page: {
|
|
21647
|
+
aoStackStatus: "AO stack status",
|
|
21648
|
+
engineStatusTitle: "Workflow engine status",
|
|
21729
21649
|
flushButton: "Flush",
|
|
21730
21650
|
flushCacheSettingsTitle: "Flush cache settings",
|
|
21731
|
-
engineStatusTitle: "Workflow engine status",
|
|
21732
|
-
workerStatusTitle: "Worker status",
|
|
21733
21651
|
modifyEngine: "Modify the engine settings",
|
|
21652
|
+
noSettingsExposed: "No settings exposed by the backend, to enable this, please refer to the",
|
|
21653
|
+
numberOfQueuedJobs: "Number of queued jobs",
|
|
21654
|
+
numberOfRunningJobs: "Number of running jobs",
|
|
21655
|
+
numberOfWorkersOnline: "Number of workers online",
|
|
21734
21656
|
pauseEngine: "Pause workflow engine",
|
|
21657
|
+
resetTextSearchIndex: "Reset text search index",
|
|
21658
|
+
resetTextSearchIndexButton: "Reset",
|
|
21735
21659
|
runningProcesses: "Running processes",
|
|
21736
21660
|
selectSettings: "Select cache",
|
|
21661
|
+
settingsOverviewLink: "Settings Overview page in the documentation",
|
|
21737
21662
|
startEngine: "Start workflow engine",
|
|
21738
|
-
resetTextSearchIndex: "Reset text search index",
|
|
21739
|
-
resetTextSearchIndexButton: "Reset",
|
|
21740
21663
|
status: "Status",
|
|
21741
|
-
numberOfQueuedJobs: "Number of queued jobs",
|
|
21742
|
-
numberOfRunningJobs: "Number of running jobs",
|
|
21743
|
-
numberOfWorkersOnline: "Number of workers online",
|
|
21744
21664
|
viewStatusPage: "View AO status page",
|
|
21745
|
-
|
|
21746
|
-
noSettingsExposed: "No settings exposed by the backend, to enable this, please refer to the",
|
|
21747
|
-
settingsOverviewLink: "Settings Overview page in the documentation"
|
|
21665
|
+
workerStatusTitle: "Worker status"
|
|
21748
21666
|
},
|
|
21749
21667
|
tabs: {
|
|
21750
21668
|
actions: "Actions",
|
|
@@ -21752,21 +21670,11 @@ var en_GB_default = {
|
|
|
21752
21670
|
}
|
|
21753
21671
|
},
|
|
21754
21672
|
startPage: {
|
|
21755
|
-
myWorkflows: {
|
|
21756
|
-
buttonText: "Show my completed workflows",
|
|
21757
|
-
headerTitle: "My completed workflows",
|
|
21758
|
-
listTitle: "My most recent workflows"
|
|
21759
|
-
},
|
|
21760
21673
|
activeSubscriptions: {
|
|
21761
21674
|
buttonText: "Show all active subscriptions",
|
|
21762
21675
|
headerTitle: "Total active subscriptions",
|
|
21763
21676
|
listTitle: "Most recent subscriptions"
|
|
21764
21677
|
},
|
|
21765
|
-
outOfSyncSubscriptions: {
|
|
21766
|
-
buttonText: "Show all active out-of-sync subscriptions",
|
|
21767
|
-
headerTitle: "Total active out-of-sync subscriptions",
|
|
21768
|
-
listTitle: "Most recent active out-of-sync subscriptions"
|
|
21769
|
-
},
|
|
21770
21678
|
activeWorkflows: {
|
|
21771
21679
|
buttonText: "Show all active workflows",
|
|
21772
21680
|
headerTitle: "Total active workflows",
|
|
@@ -21777,718 +21685,733 @@ var en_GB_default = {
|
|
|
21777
21685
|
headerTitle: "Total failed tasks",
|
|
21778
21686
|
listTitle: "Most recent failed tasks"
|
|
21779
21687
|
},
|
|
21688
|
+
myWorkflows: {
|
|
21689
|
+
buttonText: "Show my completed workflows",
|
|
21690
|
+
headerTitle: "My completed workflows",
|
|
21691
|
+
listTitle: "My most recent workflows"
|
|
21692
|
+
},
|
|
21693
|
+
outOfSyncSubscriptions: {
|
|
21694
|
+
buttonText: "Show all active out-of-sync subscriptions",
|
|
21695
|
+
headerTitle: "Total active out-of-sync subscriptions",
|
|
21696
|
+
listTitle: "Most recent active out-of-sync subscriptions"
|
|
21697
|
+
},
|
|
21780
21698
|
products: {
|
|
21781
21699
|
headerTitle: "Total number of products",
|
|
21782
21700
|
listTitle: "Total number of product instances"
|
|
21783
21701
|
}
|
|
21784
21702
|
},
|
|
21785
|
-
|
|
21786
|
-
|
|
21787
|
-
|
|
21788
|
-
|
|
21789
|
-
|
|
21790
|
-
|
|
21791
|
-
|
|
21792
|
-
|
|
21793
|
-
|
|
21794
|
-
|
|
21795
|
-
|
|
21796
|
-
|
|
21797
|
-
|
|
21798
|
-
|
|
21799
|
-
|
|
21800
|
-
|
|
21801
|
-
|
|
21802
|
-
|
|
21803
|
-
|
|
21804
|
-
after: " (agent functionality requires search)"
|
|
21805
|
-
},
|
|
21806
|
-
checkVersion: "Ensure your orchestrator-core version supports agent functionality",
|
|
21807
|
-
configureOpenAI: "Configure your OpenAI API key if using OpenAI models",
|
|
21808
|
-
restartService: "Restart your service",
|
|
21809
|
-
checkDockerConfig: "If using Docker, make sure the environment variables are set in docker-compose.yml"
|
|
21703
|
+
subscriptions: {
|
|
21704
|
+
detail: {
|
|
21705
|
+
actions: {
|
|
21706
|
+
actions: "Actions",
|
|
21707
|
+
lockedBySubscriptions: "This action is locked by the following subscriptions:",
|
|
21708
|
+
modify: "Modify workflow",
|
|
21709
|
+
reconcile: "Reconcile workflow",
|
|
21710
|
+
subscription: {
|
|
21711
|
+
insufficient_workflow_permissions: "Insufficient user permissions to run this workflow",
|
|
21712
|
+
no_modify_deleted_related_objects: "This subscription can not be modified because it contains references to other systems that are deleted.",
|
|
21713
|
+
no_modify_in_use_by_subscription: "This subscription can not be {action} as it is used in other subscriptions:",
|
|
21714
|
+
no_modify_invalid_status: "This subscription can not be modified because of the status: {status}. Only subscriptions with status {usable_when} can be {action}.",
|
|
21715
|
+
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:",
|
|
21716
|
+
no_modify_workflow: "This subscription can not be modified as the product has no modify workflows.",
|
|
21717
|
+
no_termination_workflow: "This subscription can not be terminated as the product has no termination workflows.",
|
|
21718
|
+
no_validate_workflow: "This subscription can not be validated as the product has no validate workflows.",
|
|
21719
|
+
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.",
|
|
21720
|
+
relations_not_in_sync: "This subscription can not be modified because some related subscriptions are not in-sync.\n\nLocked subscriptions:",
|
|
21721
|
+
running_process: "This action cannot be started because this subscription already has a running process or task."
|
|
21810
21722
|
},
|
|
21811
|
-
|
|
21812
|
-
|
|
21813
|
-
}
|
|
21814
|
-
},
|
|
21815
|
-
page: {
|
|
21816
|
-
filledParameters: "Filled parameters",
|
|
21817
|
-
emptyGroup: "Empty group",
|
|
21818
|
-
searchQuery: "Search query",
|
|
21819
|
-
activeFilters: "Active filters",
|
|
21820
|
-
noFiltersApplied: "No filters applied",
|
|
21821
|
-
entityType: "Entity type",
|
|
21822
|
-
action: "Action",
|
|
21823
|
-
copilot: {
|
|
21824
|
-
title: "Database assistant",
|
|
21825
|
-
initial: "What can I help you with?"
|
|
21723
|
+
tasks: "Tasks",
|
|
21724
|
+
terminate: "Terminate workflow"
|
|
21826
21725
|
},
|
|
21827
|
-
|
|
21828
|
-
|
|
21829
|
-
|
|
21830
|
-
|
|
21831
|
-
|
|
21726
|
+
blockTitleFixedInputs: "Fixed inputs",
|
|
21727
|
+
blockTitleProductInfo: "Product Info",
|
|
21728
|
+
blockTitleSubscriptionDetails: "Subscription details",
|
|
21729
|
+
created: "Created",
|
|
21730
|
+
ctaSelectProductBlock: "Select one or more product blocks to view their details",
|
|
21731
|
+
customer: "Customer",
|
|
21732
|
+
customerDescriptions: "Customer descriptions",
|
|
21733
|
+
customerUuid: "Customer UUID",
|
|
21734
|
+
description: "Description",
|
|
21735
|
+
endDate: "End date",
|
|
21736
|
+
hideAll: "Hide all",
|
|
21737
|
+
hideDetails: "Hide details",
|
|
21738
|
+
hideTerminatedRelatedSubscriptions: "Hide terminated subscriptions",
|
|
21739
|
+
id: "ID",
|
|
21740
|
+
inUseByRelations: "In-use by subscription(s)",
|
|
21741
|
+
insync: "In sync",
|
|
21742
|
+
lastRunValidation: "Most recent validate",
|
|
21743
|
+
metadata: "Metadata",
|
|
21744
|
+
name: "Name",
|
|
21745
|
+
noProductBlockSelected: "No product block selected",
|
|
21746
|
+
noRelatedSubscriptions: "No related subscriptions found",
|
|
21747
|
+
noValidateWorkflows: "No validate workflows have been run recently",
|
|
21748
|
+
note: "Note",
|
|
21749
|
+
ownerSubscriptionId: "Owner subscription ID",
|
|
21750
|
+
processDetail: {
|
|
21751
|
+
id: "ID",
|
|
21752
|
+
note: "Note",
|
|
21753
|
+
startedAt: "Started at",
|
|
21754
|
+
startedBy: "Started by",
|
|
21755
|
+
status: "Status"
|
|
21756
|
+
},
|
|
21757
|
+
productBlocks: "Product blocks",
|
|
21758
|
+
productName: "Product name",
|
|
21759
|
+
productType: "Product type",
|
|
21760
|
+
see: "See",
|
|
21761
|
+
selectByNameButtonText: "Select by name",
|
|
21762
|
+
selectByNameTitle: "Select product blocks by name",
|
|
21763
|
+
self: "Current subscription",
|
|
21764
|
+
setInSync: "Set in Sync",
|
|
21765
|
+
setInSyncFailed: {
|
|
21766
|
+
text: "The subscription could not be set in sync. Please try again later.",
|
|
21767
|
+
title: "Set in sync failed"
|
|
21832
21768
|
},
|
|
21833
|
-
|
|
21834
|
-
|
|
21835
|
-
|
|
21836
|
-
|
|
21837
|
-
discover_filter_paths: "I'm discovering available filters",
|
|
21838
|
-
run_aggregation: "I'm running aggregations",
|
|
21839
|
-
prepare_export: "I'm preparing the export",
|
|
21840
|
-
get_valid_operators: "I'm getting valid operators",
|
|
21841
|
-
set_temporal_grouping: "I'm setting temporal grouping"
|
|
21769
|
+
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.",
|
|
21770
|
+
setInSyncSuccess: {
|
|
21771
|
+
text: "The subscription was successfully set in sync.",
|
|
21772
|
+
title: "Subscription set in sync"
|
|
21842
21773
|
},
|
|
21843
|
-
|
|
21844
|
-
|
|
21845
|
-
|
|
21846
|
-
|
|
21774
|
+
showAll: "Show all",
|
|
21775
|
+
showDetails: "Show details",
|
|
21776
|
+
startDate: "Start date",
|
|
21777
|
+
status: "Status",
|
|
21778
|
+
subscriptionId: "Subscription ID",
|
|
21779
|
+
subscriptionInstanceId: "Instance ID",
|
|
21780
|
+
subscriptionIsInSync: "Subscription is in sync",
|
|
21781
|
+
tabs: {
|
|
21782
|
+
general: "General",
|
|
21783
|
+
relatedSubscriptions: "Related subscriptions",
|
|
21784
|
+
serviceConfiguration: "Service configuration",
|
|
21785
|
+
workflows: "Workflows"
|
|
21847
21786
|
},
|
|
21848
|
-
|
|
21849
|
-
|
|
21850
|
-
|
|
21787
|
+
tag: "Tag",
|
|
21788
|
+
title: "Subscriptions",
|
|
21789
|
+
workflowsTab: {
|
|
21790
|
+
startWithNewestLabel: "Start with newest first",
|
|
21791
|
+
startWithOldestLabel: "Start with oldest first"
|
|
21851
21792
|
}
|
|
21793
|
+
},
|
|
21794
|
+
index: {
|
|
21795
|
+
customerFullname: "Customer",
|
|
21796
|
+
customerId: "Customer ID",
|
|
21797
|
+
customerShortcode: "Customer abbr",
|
|
21798
|
+
description: "Description",
|
|
21799
|
+
endDate: "End date",
|
|
21800
|
+
id: "ID",
|
|
21801
|
+
insync: "In Sync",
|
|
21802
|
+
metadata: "Metadata",
|
|
21803
|
+
note: "Note",
|
|
21804
|
+
product: "Product",
|
|
21805
|
+
startDate: "Start date",
|
|
21806
|
+
status: "Status",
|
|
21807
|
+
tag: "Product tag"
|
|
21808
|
+
},
|
|
21809
|
+
tabs: {
|
|
21810
|
+
active: "Active",
|
|
21811
|
+
all: "All",
|
|
21812
|
+
terminated: "Terminated",
|
|
21813
|
+
transient: "Transient"
|
|
21852
21814
|
}
|
|
21853
21815
|
},
|
|
21854
|
-
|
|
21855
|
-
availability: {
|
|
21856
|
-
unavailable: {
|
|
21857
|
-
title: "Search Service Not Available",
|
|
21858
|
-
instructions: {
|
|
21859
|
-
setEnvironmentVariable: {
|
|
21860
|
-
before: "Set ",
|
|
21861
|
-
after: " in your service environment variables"
|
|
21862
|
-
},
|
|
21863
|
-
checkVersion: "Ensure your orchestrator-core version supports search functionality",
|
|
21864
|
-
restartService: "Restart your service",
|
|
21865
|
-
checkDockerConfig: "If using Docker, make sure the environment variable is set in docker-compose.yml"
|
|
21866
|
-
},
|
|
21867
|
-
documentation: "Please refer to the orchestrator documentation for detailed setup instructions.",
|
|
21868
|
-
retryButton: "Retry Connection"
|
|
21869
|
-
}
|
|
21870
|
-
},
|
|
21816
|
+
tasks: {
|
|
21871
21817
|
page: {
|
|
21872
|
-
|
|
21873
|
-
|
|
21874
|
-
|
|
21875
|
-
addRule: "Add rule",
|
|
21876
|
-
addGroup: "Add group",
|
|
21877
|
-
removeGroup: "Remove group",
|
|
21878
|
-
emptyGroupDescription: "Add conditions or nested groups to build your filter.",
|
|
21879
|
-
emptyGroupTitle: "Empty group",
|
|
21880
|
-
fieldSearchPlaceholder: "Type to search fields...",
|
|
21881
|
-
removeConditionAriaLabel: "Remove condition",
|
|
21882
|
-
groupLabel: "Group",
|
|
21883
|
-
hideFilters: "Hide filters",
|
|
21884
|
-
showFilters: "Show filters",
|
|
21885
|
-
structuredFilters: "Structured filters",
|
|
21886
|
-
retrieval: "Retrieval",
|
|
21887
|
-
retrieverAuto: "Auto",
|
|
21888
|
-
retrieverFuzzy: "Fuzzy",
|
|
21889
|
-
retrieverSemantic: "Semantic",
|
|
21890
|
-
retrieverHybrid: "Hybrid",
|
|
21891
|
-
searchError: "Error",
|
|
21892
|
-
dismiss: "Dismiss",
|
|
21893
|
-
searchPlaceholder: "Search for {entityType}\u2026",
|
|
21894
|
-
noResults: "No Results",
|
|
21895
|
-
noResultsMessage: "No {entityType} found matching your search criteria.",
|
|
21896
|
-
noResultsSuggestions: "Try adjusting your search terms, removing filters, or searching for different keywords.",
|
|
21897
|
-
noResultsFound: "No results found for your search.",
|
|
21898
|
-
loadingSearchResults: "Loading search results...",
|
|
21899
|
-
previousPage: "Previous page",
|
|
21900
|
-
page: "Page",
|
|
21901
|
-
nextPage: "Next page",
|
|
21902
|
-
resultsOnPage: "{resultCount} result(s) on this page",
|
|
21903
|
-
searchResultsPagination: "Search results pagination",
|
|
21904
|
-
viewDetails: "View details",
|
|
21905
|
-
selectOrEnterValue: "Select or type value",
|
|
21906
|
-
enterValue: "Enter value",
|
|
21907
|
-
fromNumber: "From",
|
|
21908
|
-
toNumber: "To",
|
|
21909
|
-
fromDate: "From date",
|
|
21910
|
-
toDate: "To date",
|
|
21911
|
-
enterNumber: "Enter number",
|
|
21912
|
-
selectDateAndTime: "Select date",
|
|
21913
|
-
valueControlTo: "to",
|
|
21914
|
-
searchFieldsPlaceholder: "Search fields...",
|
|
21915
|
-
selectSpecificPathPlaceholder: "Select a specific path...",
|
|
21916
|
-
anyPathOption: "Any path",
|
|
21917
|
-
operatorLabel: "Operator",
|
|
21918
|
-
fieldLabel: "Field",
|
|
21919
|
-
valueLabel: "Value",
|
|
21920
|
-
fieldsGroupLabel: "Fields",
|
|
21921
|
-
componentsGroupLabel: "Components",
|
|
21922
|
-
pathsCount: "{count} paths",
|
|
21923
|
-
id: "Id",
|
|
21924
|
-
type: "Entity type",
|
|
21925
|
-
title: "Title",
|
|
21926
|
-
score: "Score",
|
|
21927
|
-
matchingField: "Matching field",
|
|
21928
|
-
perfectMatch: "Perfect match",
|
|
21929
|
-
removeRule: "Remove rule"
|
|
21818
|
+
rerunAll: "Re-try all tasks",
|
|
21819
|
+
rerunAllQuestion: "Are you sure you want to re-try all failed tasks?",
|
|
21820
|
+
taskName: "Task"
|
|
21930
21821
|
},
|
|
21931
21822
|
tabs: {
|
|
21932
|
-
|
|
21933
|
-
|
|
21934
|
-
|
|
21935
|
-
|
|
21823
|
+
active: "Active",
|
|
21824
|
+
completed: "Completed"
|
|
21825
|
+
}
|
|
21826
|
+
},
|
|
21827
|
+
workflowGuide: {
|
|
21828
|
+
hide: "Hide user guide",
|
|
21829
|
+
noGuideAvailable: "No user guide is available for this workflow/task",
|
|
21830
|
+
show: "Show user guide"
|
|
21831
|
+
},
|
|
21832
|
+
workflows: {
|
|
21833
|
+
index: {
|
|
21834
|
+
title: "Workflows"
|
|
21835
|
+
},
|
|
21836
|
+
tabs: {
|
|
21837
|
+
active: "Active",
|
|
21838
|
+
completed: "Completed"
|
|
21936
21839
|
}
|
|
21937
21840
|
}
|
|
21938
21841
|
};
|
|
21939
21842
|
|
|
21940
21843
|
// src/messages/nl-NL.json
|
|
21941
21844
|
var nl_NL_default = {
|
|
21942
|
-
main: {
|
|
21943
|
-
start: "Start",
|
|
21944
|
-
ariaLabelToggleSideMenu: "Toon/Verberg menu",
|
|
21945
|
-
ariaLabelCurrentPage: "Huidige pagina",
|
|
21946
|
-
metadata: "Metadata",
|
|
21947
|
-
metadataProducts: "Products",
|
|
21948
|
-
metadataProductblocks: "Product blocks",
|
|
21949
|
-
metadataResourceTypes: "Resource types",
|
|
21950
|
-
metadataWorkflows: "Workflows",
|
|
21951
|
-
metadataTasks: "Taken",
|
|
21952
|
-
metadataScheduledTasks: "Scheduled tasks",
|
|
21953
|
-
mobileTitle: "Hoofdmenu",
|
|
21954
|
-
settings: "Settings",
|
|
21955
|
-
subscriptions: "Subscriptions",
|
|
21956
|
-
tasks: "Taken",
|
|
21957
|
-
title: "Workflow Orchestrator",
|
|
21958
|
-
welcome: "Welkom",
|
|
21959
|
-
workflows: "Workflows",
|
|
21960
|
-
darkMode: "Dark mode",
|
|
21961
|
-
lightMode: "Light mode",
|
|
21962
|
-
websocketConnected: "De pagina ontvangt live updates van de server",
|
|
21963
|
-
websocketDisconnected: "De websocket verbinding is verbroken, klik op het icoon of ververs de pagina.",
|
|
21964
|
-
websocketDisconnectedShort: "WebSocket verbroken, klik op het icoon om opnieuw te verbinden.",
|
|
21965
|
-
resetToDefault: "Reset naar standaard",
|
|
21966
|
-
savePreferences: "Voorkeuren opslaan",
|
|
21967
|
-
numberOfRows: "Aantal rijen",
|
|
21968
|
-
tableSettings: "Tabel instellingen",
|
|
21969
|
-
openMenu: "Open menu",
|
|
21970
|
-
incompatibleVersion: "Incompatibele versie",
|
|
21971
|
-
incompatibleVersionText: "De versie van de WFO UI is incompatibel met de version van orchestrator-core.",
|
|
21972
|
-
minimumOrchestratorCoreVersion: "Minimale versie van orchestrator-core"
|
|
21973
|
-
},
|
|
21974
21845
|
common: {
|
|
21975
|
-
|
|
21846
|
+
applyFilter: "Pas filter toe",
|
|
21847
|
+
createFilter: "Filter",
|
|
21976
21848
|
deselect: "Deselecteer",
|
|
21977
|
-
close: "Sluiten",
|
|
21978
21849
|
editColumns: "Wijzig kolommen",
|
|
21979
|
-
|
|
21850
|
+
errorMessage: "Er is een fout opgetreden",
|
|
21851
|
+
export: "Exporteren",
|
|
21852
|
+
insyncFalse: "out-of-sync",
|
|
21853
|
+
insyncTrue: "in-sync",
|
|
21854
|
+
loadMore: "Meer laden",
|
|
21980
21855
|
loading: "Laden",
|
|
21981
21856
|
newSubscription: "Nieuwe subscription",
|
|
21982
21857
|
newTask: "Nieuwe task",
|
|
21983
21858
|
noFailedTasks: "Geen gefaalde taken!",
|
|
21984
21859
|
noItemsFound: "Geen items gevonden",
|
|
21985
|
-
|
|
21986
|
-
errorMessage: "Er is een fout opgetreden",
|
|
21987
|
-
unknownError: "Onbekende error",
|
|
21988
|
-
export: "Exporteren",
|
|
21989
|
-
unauthorizedPage: "Niet geautoriseerd om deze pagina te bekijken",
|
|
21990
|
-
insyncTrue: "in-sync",
|
|
21991
|
-
insyncFalse: "out-of-sync",
|
|
21992
|
-
showAllColumnsInDetailView: "Toon alle kolommen in detailweergave",
|
|
21993
|
-
searchModalTitle: "Zoekwoorden opties",
|
|
21994
|
-
searchModalText: '<p>Er zijn verschillende opties beschikbaar: zoeken in vrije tekst voor alle datakolommen en specifiek per kolom te filteren. Houd er rekening mee dat: </p><p></p><ul><li>Verborgen kolommen zijn inbegrepen</li> <li>Zoeken is niet hoofdlettergevoelig</li> <li>De volgorde van woorden doet er niet toe (tenzij het een quote)</li> <li>TSV (text search vector) zoekactie alleen beschikbaar voor subscription tabel</li></ul><p>Bijvoorbeeld:</p> <li><b>"l2vpn"</b> \u2013 vrije tekst search</li> <li><b>tag:l2vpn</b> \u2013 zoeken in een specifieke kolom</li> <li><b>tag:lp beschrijving: test</b> \u2013 zoeken in meerdere kolommen</li><li><b>tag:(lp|lr)</b> \u2013 multi select binnen 1 kolom</li> <li><b>-tag:lp</b> \u2013 omgekeerd filteren</li> <li><b>test*</b> \u2013 prefix filter</li> <p></p><p><b>Opmerking:</b> Zoeken op woorden die tekens `|-*():"` bevatten, zijn mogelijk niet geldig, omdat ze deel uitmaken van de grammatica van de zoekfunctie</p><p>Ongeldige zoekwoorden zijn bijvoorbeeld:</p><ul><li>2a10:e300:fff0::/48</li> <li>"node123(gepland)"</li> <li>"node123|gepland"</li></ul>',
|
|
21860
|
+
removeFilter: "Verwijder filter",
|
|
21995
21861
|
retrieval: "Retrieval",
|
|
21996
21862
|
retrieverAuto: "Auto",
|
|
21997
21863
|
retrieverFuzzy: "Fuzzy",
|
|
21998
|
-
retrieverSemantic: "Semantic",
|
|
21999
21864
|
retrieverHybrid: "Hybride",
|
|
22000
|
-
|
|
22001
|
-
|
|
22002
|
-
|
|
22003
|
-
|
|
22004
|
-
|
|
21865
|
+
retrieverSemantic: "Semantic",
|
|
21866
|
+
search: "Zoeken",
|
|
21867
|
+
searchModalText: '<p>Er zijn verschillende opties beschikbaar: zoeken in vrije tekst voor alle datakolommen en specifiek per kolom te filteren. Houd er rekening mee dat: </p><p></p><ul><li>Verborgen kolommen zijn inbegrepen</li> <li>Zoeken is niet hoofdlettergevoelig</li> <li>De volgorde van woorden doet er niet toe (tenzij het een quote)</li> <li>TSV (text search vector) zoekactie alleen beschikbaar voor subscription tabel</li></ul><p>Bijvoorbeeld:</p> <li><b>"l2vpn"</b> \u2013 vrije tekst search</li> <li><b>tag:l2vpn</b> \u2013 zoeken in een specifieke kolom</li> <li><b>tag:lp beschrijving: test</b> \u2013 zoeken in meerdere kolommen</li><li><b>tag:(lp|lr)</b> \u2013 multi select binnen 1 kolom</li> <li><b>-tag:lp</b> \u2013 omgekeerd filteren</li> <li><b>test*</b> \u2013 prefix filter</li> <p></p><p><b>Opmerking:</b> Zoeken op woorden die tekens `|-*():"` bevatten, zijn mogelijk niet geldig, omdat ze deel uitmaken van de grammatica van de zoekfunctie</p><p>Ongeldige zoekwoorden zijn bijvoorbeeld:</p><ul><li>2a10:e300:fff0::/48</li> <li>"node123(gepland)"</li> <li>"node123|gepland"</li></ul>',
|
|
21868
|
+
searchModalTitle: "Zoekwoorden opties",
|
|
21869
|
+
showAllColumnsInDetailView: "Toon alle kolommen in detailweergave",
|
|
21870
|
+
tableSettings: "Tabel instellingen",
|
|
21871
|
+
unauthorizedPage: "Niet geautoriseerd om deze pagina te bekijken",
|
|
21872
|
+
unknownError: "Onbekende fout"
|
|
22005
21873
|
},
|
|
22006
21874
|
confirmationDialog: {
|
|
22007
|
-
title: "Graag bevestigen",
|
|
22008
|
-
confirm: "Bevestigen",
|
|
22009
21875
|
cancel: "Annuleren",
|
|
22010
|
-
|
|
22011
|
-
|
|
22012
|
-
|
|
22013
|
-
|
|
21876
|
+
confirm: "Bevestigen",
|
|
21877
|
+
title: "Graag bevestigen"
|
|
21878
|
+
},
|
|
21879
|
+
errors: {
|
|
21880
|
+
failedDeletingScheduledTask: "Fout bij het verwijderen de scheduled task",
|
|
21881
|
+
invalidQueryParts: "De query bevat ongeldige onderdelen",
|
|
21882
|
+
notAllResultsExported: "De huidige query resulteert in {totalResults} resultaten. Alleen de eerste {maximumExportedResults} resultaten worden geexporteerd",
|
|
21883
|
+
notAllResultsExportedTitle: "Niet alle items geexporteerd",
|
|
21884
|
+
notAllowedWhenEngineIsNotRunningMessage: "Deze actie is niet toegestaan als de Workflow Engine niet is gestart.",
|
|
21885
|
+
notAllowedWhenEngineIsNotRunningTitle: "Workflow Engine is niet gestart.",
|
|
21886
|
+
retrieve_stored_settings: "Er ging iets fout tijdens het laden van de instellingen. Hersteld naar standaard waardes",
|
|
21887
|
+
retrieve_stored_settings_title: "Fout tijdens het ophalen van instellingen."
|
|
21888
|
+
},
|
|
21889
|
+
hamburgerMenu: {
|
|
21890
|
+
aoStatusPage: "A&O applicatie status pagina",
|
|
21891
|
+
logout: "Logout",
|
|
21892
|
+
openMenu: "Open menu",
|
|
21893
|
+
softwareVersions: "Software Versies",
|
|
21894
|
+
support: "Support"
|
|
21895
|
+
},
|
|
21896
|
+
main: {
|
|
21897
|
+
ariaLabelCurrentPage: "Huidige pagina",
|
|
21898
|
+
ariaLabelToggleSideMenu: "Toon/Verberg menu",
|
|
21899
|
+
darkMode: "Dark mode",
|
|
21900
|
+
incompatibleVersion: "Incompatibele versie",
|
|
21901
|
+
incompatibleVersionText: "De versie van de WFO UI is incompatibel met de version van orchestrator-core.",
|
|
21902
|
+
lightMode: "Light mode",
|
|
21903
|
+
metadata: "Metadata",
|
|
21904
|
+
metadataProductblocks: "Product blocks",
|
|
21905
|
+
metadataProducts: "Products",
|
|
21906
|
+
metadataResourceTypes: "Resource types",
|
|
21907
|
+
metadataScheduledTasks: "Scheduled tasks",
|
|
21908
|
+
metadataTasks: "Taken",
|
|
21909
|
+
metadataWorkflows: "Workflows",
|
|
21910
|
+
minimumOrchestratorCoreVersion: "Minimale versie van orchestrator-core",
|
|
21911
|
+
mobileTitle: "Hoofdmenu",
|
|
21912
|
+
numberOfRows: "Aantal rijen",
|
|
21913
|
+
resetToDefault: "Reset naar standaard",
|
|
21914
|
+
savePreferences: "Voorkeuren opslaan",
|
|
21915
|
+
settings: "Settings",
|
|
21916
|
+
start: "Start",
|
|
21917
|
+
subscriptions: "Subscriptions",
|
|
21918
|
+
tableSettings: "Tabel instellingen",
|
|
21919
|
+
tasks: "Taken",
|
|
21920
|
+
websocketConnected: "De pagina ontvangt live updates van de server",
|
|
21921
|
+
websocketDisconnected: "De websocket verbinding is verbroken, klik op het icoon of ververs de pagina.",
|
|
21922
|
+
welcome: "Welkom",
|
|
21923
|
+
workflows: "Workflows"
|
|
22014
21924
|
},
|
|
22015
|
-
|
|
22016
|
-
|
|
21925
|
+
metadata: {
|
|
21926
|
+
productBlocks: {
|
|
21927
|
+
createdAt: "Aangemaakt",
|
|
21928
|
+
dependingProductBlocks: "Onderliggende product blocks",
|
|
21929
|
+
description: "Product block beschrijving",
|
|
21930
|
+
endDate: "Einddatum",
|
|
21931
|
+
id: "ID",
|
|
21932
|
+
name: "Product block",
|
|
21933
|
+
resourceTypes: "Resource types",
|
|
21934
|
+
status: "Status",
|
|
21935
|
+
tag: "Tag"
|
|
21936
|
+
},
|
|
21937
|
+
products: {
|
|
21938
|
+
createdAt: "Aangemaakt",
|
|
21939
|
+
description: "Product beschrijving",
|
|
21940
|
+
fixedInputs: "Fixed inputs",
|
|
21941
|
+
id: "ID",
|
|
21942
|
+
name: "Product",
|
|
21943
|
+
productBlocks: "Product blocks",
|
|
21944
|
+
productType: "Type",
|
|
21945
|
+
status: "Status",
|
|
21946
|
+
tag: "Product tag"
|
|
21947
|
+
},
|
|
21948
|
+
resourceTypes: {
|
|
21949
|
+
description: "Resource type beschrijving",
|
|
21950
|
+
resourceId: "ID",
|
|
21951
|
+
type: "Resource type",
|
|
21952
|
+
usedInProductBlocks: "Gebruikt in product blocks"
|
|
21953
|
+
},
|
|
21954
|
+
scheduledTasks: {
|
|
21955
|
+
addSchedule: "Plan een taak",
|
|
21956
|
+
ariaLabelDeleteButton: "Schedule verwijderen",
|
|
21957
|
+
deleteConfirmationQuestion: "Bevestig de verwijdering van het schedule",
|
|
21958
|
+
nextRuntime: "Volgende uitvoer",
|
|
21959
|
+
schedule: "Schedule",
|
|
21960
|
+
task: "Taak",
|
|
21961
|
+
taskDescription: "Taak beschrijving"
|
|
21962
|
+
},
|
|
21963
|
+
tabs: {
|
|
21964
|
+
productBlocks: "Product blocks",
|
|
21965
|
+
products: "Producten",
|
|
21966
|
+
resourceTypes: "Resource types",
|
|
21967
|
+
scheduledTasks: "Scheduled tasks",
|
|
21968
|
+
tasks: "Taken",
|
|
21969
|
+
workflows: "Workflows"
|
|
21970
|
+
},
|
|
21971
|
+
tasks: {
|
|
21972
|
+
addSchedule: "Plan een taak",
|
|
21973
|
+
createdAt: "Aangemaakt",
|
|
21974
|
+
description: "Taak beschrijving",
|
|
21975
|
+
name: "Taak",
|
|
21976
|
+
productTags: "Product tags",
|
|
21977
|
+
scheduled: "Schedule",
|
|
21978
|
+
target: "Target",
|
|
21979
|
+
workflowId: "ID"
|
|
21980
|
+
},
|
|
21981
|
+
title: "Metadata",
|
|
21982
|
+
workflows: {
|
|
21983
|
+
createdAt: "Aangemaakt",
|
|
21984
|
+
description: "Workflow beschrijving",
|
|
21985
|
+
name: "Workflow",
|
|
21986
|
+
productTags: "Product tags",
|
|
21987
|
+
target: "Target",
|
|
21988
|
+
workflowId: "ID"
|
|
21989
|
+
}
|
|
22017
21990
|
},
|
|
22018
|
-
|
|
22019
|
-
|
|
22020
|
-
|
|
22021
|
-
|
|
22022
|
-
|
|
22023
|
-
|
|
22024
|
-
|
|
22025
|
-
|
|
22026
|
-
|
|
21991
|
+
processes: {
|
|
21992
|
+
delta: {
|
|
21993
|
+
continuityAboveBelow: "Continuity above below",
|
|
21994
|
+
continuityWithin: "Continuity within",
|
|
21995
|
+
fullScreen: "Full-screen mode",
|
|
21996
|
+
fullScreenExit: "Exit full-screen mode",
|
|
21997
|
+
title: "Subscription delta"
|
|
21998
|
+
},
|
|
21999
|
+
detail: {
|
|
22000
|
+
abort: "Stop",
|
|
22001
|
+
abortTaskQuestion: "Weet je zeker dat je de {workflowName} taak wilt stoppen?",
|
|
22002
|
+
abortWorkflowQuestion: "Weet je zeker dat je de {workflowName} workflow wilt stoppen?",
|
|
22003
|
+
customer: "Customer",
|
|
22004
|
+
delete: "Verwijder",
|
|
22005
|
+
deleteQuestion: "Weet je zeker dat je de {workflowName} taak wilt verwijderen?",
|
|
22006
|
+
lastStep: "Huidige stap",
|
|
22007
|
+
lastUpdate: "Laatste update",
|
|
22008
|
+
openWorkflowTaskInfo: "open workflow-/taakinformatie op een nieuw tabblad",
|
|
22009
|
+
relatedSubscriptions: "Gerelateerde subscriptions",
|
|
22010
|
+
retry: "Probeer opnieuw",
|
|
22011
|
+
retryTaskQuestion: "Weet je zeker dat je de {workflowName} taak opnieuw wilt proberen?",
|
|
22012
|
+
retryWorkflowQuestion: "Weet je zeker dat je de {workflowName} workflow opnieuw wilt proberen?",
|
|
22013
|
+
startedBy: "Gestart door",
|
|
22014
|
+
startedOn: "Gestart op",
|
|
22015
|
+
status: "Status"
|
|
22016
|
+
},
|
|
22017
|
+
index: {
|
|
22018
|
+
assignee: "Assignee",
|
|
22019
|
+
createdBy: "Aangemaakt door",
|
|
22020
|
+
customer: "Klant",
|
|
22021
|
+
customerAbbreviation: "Klantafkorting",
|
|
22022
|
+
lastModified: "Aangepast op",
|
|
22023
|
+
note: "Note",
|
|
22024
|
+
processId: "Proces ID",
|
|
22025
|
+
product: "Product",
|
|
22026
|
+
productTag: "Product tag",
|
|
22027
|
+
showAllRelatedSubscriptions: "Toon alle gerelateerde subscriptions",
|
|
22028
|
+
started: "Starttijd",
|
|
22029
|
+
status: "Status",
|
|
22030
|
+
step: "Huidige stap",
|
|
22031
|
+
subscriptions: "Subscriptions",
|
|
22032
|
+
workflowName: "Workflow naam",
|
|
22033
|
+
workflowTarget: "Target"
|
|
22034
|
+
},
|
|
22035
|
+
steps: {
|
|
22036
|
+
codeView: {
|
|
22037
|
+
json: "JSON",
|
|
22038
|
+
raw: "Raw",
|
|
22039
|
+
table: "Table"
|
|
22040
|
+
},
|
|
22041
|
+
collapseAll: "klap alles in",
|
|
22042
|
+
duration: "Looptijd",
|
|
22043
|
+
expandAll: "klap alles uit",
|
|
22044
|
+
hideDelta: "Verberg subscription delta",
|
|
22045
|
+
hideTraceback: "Verberg traceback",
|
|
22046
|
+
showDelta: "Toon subscription delta",
|
|
22047
|
+
showTraceback: "Toon traceback",
|
|
22048
|
+
submitTaskFormLabel: "Verstuur het formulier om deze taak te starten",
|
|
22049
|
+
submitWorkflowFormLabel: "Verstuur het formulier om deze workflow te starten",
|
|
22050
|
+
taskSteps: "Taak stappen",
|
|
22051
|
+
traceback: "Traceback",
|
|
22052
|
+
userInput: "Invoer gebruiker",
|
|
22053
|
+
viewOptions: "Opties",
|
|
22054
|
+
workflowSteps: "Workflow stappen"
|
|
22055
|
+
}
|
|
22027
22056
|
},
|
|
22028
22057
|
pydanticForms: {
|
|
22029
22058
|
userInputForm: {
|
|
22030
22059
|
cancel: "Annuleren",
|
|
22031
|
-
|
|
22032
|
-
previous: "Vorige",
|
|
22060
|
+
inputFieldsHaveValidationErrors: "{nrOfValidationErrors} input veld(en) hebben validatiefouten",
|
|
22033
22061
|
next: "Volgende",
|
|
22034
|
-
|
|
22062
|
+
preconditionFailedFallback: "Aan een voorwaarde voor het starten van deze workflow is niet voldaan.",
|
|
22063
|
+
preconditionFailedTitle: "Deze workflow kan op dit moment niet worden gestart",
|
|
22064
|
+
previous: "Vorige",
|
|
22035
22065
|
previousQuestion: "Weet je zeker dat je deze pagina wilt verlaten? Ingevulde velden worden niet opgeslagen",
|
|
22036
|
-
|
|
22037
|
-
resumeTask: "Hervat task",
|
|
22066
|
+
resumeTask: "Hervat taak",
|
|
22038
22067
|
resumeWorkflow: "Hervat workflow",
|
|
22039
|
-
|
|
22040
|
-
|
|
22041
|
-
preconditionFailedFallback: "Aan een voorwaarde voor het starten van deze workflow is niet voldaan."
|
|
22068
|
+
startTask: "Start taak",
|
|
22069
|
+
startWorkflow: "Start workflow"
|
|
22042
22070
|
},
|
|
22043
22071
|
widgets: {
|
|
22044
|
-
customer: {
|
|
22045
|
-
placeholder: "Zoek en selecteer een klant...",
|
|
22046
|
-
loading: "Klanten laden..."
|
|
22047
|
-
},
|
|
22048
22072
|
contactPersonName: {
|
|
22049
22073
|
placeholder: "Zoek en voeg contactpersonen toe..."
|
|
22050
22074
|
},
|
|
22051
22075
|
cron: {
|
|
22052
|
-
|
|
22053
|
-
|
|
22054
|
-
|
|
22076
|
+
allowedValues: "toegestane waarden",
|
|
22077
|
+
alternativeSingleValues: "alternatieve losse waarden",
|
|
22078
|
+
anyValue: "elke waarde",
|
|
22055
22079
|
dayOfMonth: "dag (maand)",
|
|
22056
|
-
month: "maand",
|
|
22057
22080
|
dayOfWeek: "dag (week)",
|
|
22058
|
-
|
|
22059
|
-
|
|
22081
|
+
hour: "uur",
|
|
22082
|
+
invalidExpression: "Ongeldige cron-expressie: {error}",
|
|
22083
|
+
minute: "minuut",
|
|
22084
|
+
month: "maand",
|
|
22085
|
+
nextOccurrences: "Volgende: {dates}",
|
|
22086
|
+
possibleValues: "Mogelijke waarden voor dit veld",
|
|
22060
22087
|
rangeOfValues: "bereik van waarden",
|
|
22088
|
+
second: "seconde",
|
|
22061
22089
|
stepValues: "stapwaarden",
|
|
22062
|
-
allowedValues: "toegestane waarden",
|
|
22063
|
-
alternativeSingleValues: "alternatieve losse waarden",
|
|
22064
22090
|
sundayNonStandard: "zondag (niet-standaard)",
|
|
22065
|
-
|
|
22066
|
-
|
|
22067
|
-
|
|
22091
|
+
valueListSeparator: "scheidingsteken voor waardenlijst"
|
|
22092
|
+
},
|
|
22093
|
+
customer: {
|
|
22094
|
+
loading: "Klanten laden...",
|
|
22095
|
+
placeholder: "Zoek en selecteer een klant..."
|
|
22096
|
+
},
|
|
22097
|
+
fileUpload: {
|
|
22098
|
+
errorUploading: "Fout bij het upoaden van het bestand!",
|
|
22099
|
+
fileToBig: "Bestand te groot. Maximum bestand: {fileSizeLimit}",
|
|
22100
|
+
initialPromptText: "Selecteer een bestand of sleep het hierheen",
|
|
22101
|
+
invalidFiletype: "Ongeldig bestandstype!",
|
|
22102
|
+
supportedFileTypes: "Ondersteunde bestandstypen: pdf"
|
|
22068
22103
|
},
|
|
22069
22104
|
ipvAnyNetworkField: {
|
|
22070
22105
|
manuallySelectedPrefix: "Manually selected prefix"
|
|
22071
22106
|
},
|
|
22072
|
-
node_select: {
|
|
22073
|
-
nodes_loading: "Nodes laden...",
|
|
22074
|
-
select_node: "Selecteer node",
|
|
22075
|
-
no_nodes_placeholder: "Geen nodes"
|
|
22076
|
-
},
|
|
22077
22107
|
locationCode: {
|
|
22078
22108
|
placeholder: "Zoek en selecteer een locatie code..."
|
|
22079
22109
|
},
|
|
22110
|
+
nodePort: {
|
|
22111
|
+
loadingNodes: "Node subscriptions laden...",
|
|
22112
|
+
loadingPorts: "IMS poorten laden...",
|
|
22113
|
+
noPorts: "GEEN POORTEN GEVONDEN VOOR DEZE NODE",
|
|
22114
|
+
selectNode: "Selecteer node",
|
|
22115
|
+
selectNodeFirst: "Selecteer eerst een node",
|
|
22116
|
+
selectPort: "Selecteer poort"
|
|
22117
|
+
},
|
|
22118
|
+
node_select: {
|
|
22119
|
+
no_nodes_placeholder: "Geen nodes",
|
|
22120
|
+
nodes_loading: "Nodes laden...",
|
|
22121
|
+
select_node: "Selecteer node"
|
|
22122
|
+
},
|
|
22080
22123
|
product: {
|
|
22081
22124
|
placeholder: "Kies product"
|
|
22082
22125
|
},
|
|
22083
22126
|
select: {
|
|
22084
22127
|
placeholder: "Zoek en selecteer een waarde..."
|
|
22085
22128
|
},
|
|
22129
|
+
subscription: {
|
|
22130
|
+
loading: "Subscriptions ophalen...",
|
|
22131
|
+
placeholder: "Kies een subscription"
|
|
22132
|
+
},
|
|
22086
22133
|
vlan: {
|
|
22087
|
-
|
|
22088
|
-
|
|
22134
|
+
allPortsAvailable: "Deze service port heeft (nog) geen VLANs in gebruik.",
|
|
22135
|
+
invalidVlan: "Invalid VLAN - Voer een range of geldige [2-4094] VLAN integers in, bijvoorbeeld: '2, 5-6, 1048-1052'",
|
|
22136
|
+
loadingIms: "VLAN informatie aan het laden uit IMS...",
|
|
22089
22137
|
missingInIms: "Service port niet gevonden in IMS. De poort is mogelijk verwijder of in initial state.",
|
|
22090
|
-
nsiVlansAvailable: "Beschikbare NSI VLAN ranges voor deze service port: {vlans}",
|
|
22091
22138
|
nsiNoPortsAvailable: "Deze service port heeft (nog) geen beschikbare NSI reserved VLANs.",
|
|
22092
|
-
|
|
22139
|
+
nsiVlansAvailable: "Beschikbare NSI VLAN ranges voor deze service port: {vlans}",
|
|
22093
22140
|
placeholder: "Voer een geldige VLAN range in...",
|
|
22094
22141
|
placeholderNoServicePort: "Selecteer eerst een Service Port...",
|
|
22095
|
-
invalidVlan: "Invalid VLAN - Voer een range of geldige [2-4094] VLAN integers in, bijvoorbeeld: '2, 5-6, 1048-1052'",
|
|
22096
|
-
untaggedPortInUse: "Deze service port is al in gebruik en kan niet worden gekozen",
|
|
22097
22142
|
taggedOnly: "VLAN is alleen relevant voor service poorten in tagged mode, niet voor link_member of untagged ports.",
|
|
22098
|
-
|
|
22099
|
-
|
|
22100
|
-
|
|
22101
|
-
placeholder: "Kies een subscription",
|
|
22102
|
-
loading: "Subscriptions ophalen..."
|
|
22103
|
-
},
|
|
22104
|
-
nodePort: {
|
|
22105
|
-
loadingNodes: "Node subscriptions laden...",
|
|
22106
|
-
loadingPorts: "IMS poorten laden...",
|
|
22107
|
-
selectNode: "Selecteer node",
|
|
22108
|
-
selectPort: "Selecteer poort",
|
|
22109
|
-
noPorts: "GEEN POORTEN GEVONDEN VOOR DEZE NODE",
|
|
22110
|
-
selectNodeFirst: "Selecteer eerst een node"
|
|
22111
|
-
},
|
|
22112
|
-
fileUpload: {
|
|
22113
|
-
invalidFiletype: "Ongeldig bestandstype!",
|
|
22114
|
-
errorUploading: "Fout bij het upoaden van het bestand!",
|
|
22115
|
-
fileToBig: "Bestand te groot. Maximum bestand: {fileSizeLimit}",
|
|
22116
|
-
initialPromptText: "Selecteer een bestand of sleep het hierheen",
|
|
22117
|
-
supportedFileTypes: "Ondersteunde bestandstypen: pdf"
|
|
22143
|
+
untaggedPortInUse: "Deze service port is al in gebruik en kan niet worden gekozen",
|
|
22144
|
+
vlansInUse: "VLAN ranges in gebruik bij deze service port: {vlans}",
|
|
22145
|
+
vlansInUseError: "VLAN range {vlans} is al in gebruik door geslecteerde service port"
|
|
22118
22146
|
}
|
|
22119
22147
|
}
|
|
22120
22148
|
},
|
|
22121
|
-
|
|
22122
|
-
|
|
22123
|
-
|
|
22124
|
-
|
|
22125
|
-
|
|
22126
|
-
|
|
22127
|
-
|
|
22128
|
-
|
|
22129
|
-
|
|
22130
|
-
|
|
22131
|
-
|
|
22132
|
-
|
|
22133
|
-
|
|
22134
|
-
|
|
22135
|
-
|
|
22136
|
-
status: "Status",
|
|
22137
|
-
productBlocks: "Product blocks",
|
|
22138
|
-
fixedInputs: "Fixed inputs",
|
|
22139
|
-
createdAt: "Aangemaakt"
|
|
22140
|
-
},
|
|
22141
|
-
productBlocks: {
|
|
22142
|
-
id: "ID",
|
|
22143
|
-
name: "Product block",
|
|
22144
|
-
description: "Product block beschrijving",
|
|
22145
|
-
tag: "Tag",
|
|
22146
|
-
status: "Status",
|
|
22147
|
-
resourceTypes: "Resource types",
|
|
22148
|
-
dependingProductBlocks: "Onderliggende product blocks",
|
|
22149
|
-
createdAt: "Aangemaakt",
|
|
22150
|
-
endDate: "Einddatum",
|
|
22151
|
-
parentIds: "Parents"
|
|
22152
|
-
},
|
|
22153
|
-
resourceTypes: {
|
|
22154
|
-
type: "Resource type",
|
|
22155
|
-
description: "Resource type beschrijving",
|
|
22156
|
-
resourceId: "ID",
|
|
22157
|
-
usedInProductBlocks: "Gebruikt in product blocks"
|
|
22158
|
-
},
|
|
22159
|
-
workflows: {
|
|
22160
|
-
workflowId: "ID",
|
|
22161
|
-
name: "Workflow",
|
|
22162
|
-
description: "Workflow beschrijving",
|
|
22163
|
-
target: "Target",
|
|
22164
|
-
productTags: "Product tags",
|
|
22165
|
-
createdAt: "Aangemaakt"
|
|
22166
|
-
},
|
|
22167
|
-
tasks: {
|
|
22168
|
-
workflowId: "ID",
|
|
22169
|
-
name: "Taak",
|
|
22170
|
-
description: "Taak beschrijving",
|
|
22171
|
-
target: "Target",
|
|
22172
|
-
productTags: "Product tags",
|
|
22173
|
-
createdAt: "Aangemaakt",
|
|
22174
|
-
scheduled: "Schedule",
|
|
22175
|
-
addSchedule: "Plan een taak"
|
|
22176
|
-
},
|
|
22177
|
-
scheduledTasks: {
|
|
22178
|
-
task: "Taak",
|
|
22179
|
-
taskDecription: "Taak beschrijving",
|
|
22180
|
-
nextRuntime: "Volgende runtime",
|
|
22181
|
-
schedule: "Schedule",
|
|
22182
|
-
interval: "Interval",
|
|
22183
|
-
ariaLabelDeleteButton: "Schema verwijderen",
|
|
22184
|
-
deleteConfirmationQuestion: "Bevestig de verwijdering van het schema",
|
|
22185
|
-
addSchedule: "Plan een taak"
|
|
22186
|
-
},
|
|
22187
|
-
scheduleTaskForm: {
|
|
22188
|
-
newSchedule: "Plan een nieuwe taak",
|
|
22189
|
-
selectTask: "Kies de taak om te plannen",
|
|
22190
|
-
selectTaskType: "Taak type",
|
|
22191
|
-
selectInterval: "Kies de taak interval",
|
|
22192
|
-
taskTypeInterval: "Interval",
|
|
22193
|
-
taskTypeCron: "Cron",
|
|
22194
|
-
taskTypeDate: "Eenmalig",
|
|
22195
|
-
firstRunDate: "Start datum",
|
|
22196
|
-
"1hour": "1 uur",
|
|
22197
|
-
"2hours": "2 uur",
|
|
22198
|
-
"4hours": "4 uur",
|
|
22199
|
-
"12hours": "12 uur",
|
|
22200
|
-
"24hours": "24 uur",
|
|
22201
|
-
"1week": "1 week",
|
|
22202
|
-
"2weeks": "2 weken",
|
|
22203
|
-
"1month": "1 maand",
|
|
22204
|
-
createScheduleButton: "Maak schema"
|
|
22205
|
-
}
|
|
22206
|
-
},
|
|
22207
|
-
workflowGuide: {
|
|
22208
|
-
title: "Gebruikershandleiding van {workflowName}",
|
|
22209
|
-
noGuideAvailable: "Er is geen gebruikershandleiding beschikbaar voor deze workflow/taak",
|
|
22210
|
-
show: "Toon gebruikershandleiding",
|
|
22211
|
-
hide: "Verberg gebruikershandleiding"
|
|
22212
|
-
},
|
|
22213
|
-
processes: {
|
|
22214
|
-
index: {
|
|
22215
|
-
workflowName: "Workflow naam",
|
|
22216
|
-
step: "Huidige stap",
|
|
22217
|
-
status: "Status",
|
|
22218
|
-
product: "Product",
|
|
22219
|
-
customer: "Klant",
|
|
22220
|
-
customerAbbreviation: "Klantafkorting",
|
|
22221
|
-
subscriptions: "Subscriptions",
|
|
22222
|
-
createdBy: "Aangemaakt door",
|
|
22223
|
-
assignee: "Assignee",
|
|
22224
|
-
processId: "Proces ID",
|
|
22225
|
-
started: "Starttijd",
|
|
22226
|
-
lastModified: "Aangepast op",
|
|
22227
|
-
workflowTarget: "Target",
|
|
22228
|
-
productTag: "Product tag",
|
|
22229
|
-
showAllRelatedSubscriptions: "Toon alle gerelateerde subscriptions",
|
|
22230
|
-
note: "Note"
|
|
22231
|
-
},
|
|
22232
|
-
detail: {
|
|
22233
|
-
retry: "Probeer opnieuw",
|
|
22234
|
-
resume: "Ga verder",
|
|
22235
|
-
abort: "Stop",
|
|
22236
|
-
delete: "Verwijder",
|
|
22237
|
-
deleteQuestion: "Weet je zeker dat je de {workflowName} taak wilt verwijderen?",
|
|
22238
|
-
abortTaskQuestion: "Weet je zeker dat je de {workflowName} taak wilt stoppen?",
|
|
22239
|
-
abortWorkflowQuestion: "Weet je zeker dat je de {workflowName} workflow wilt stoppen?",
|
|
22240
|
-
retryTaskQuestion: "Weet je zeker dat je de {workflowName} taak opnieuw wilt proberen?",
|
|
22241
|
-
retryWorkflowQuestion: "Weet je zeker dat je de {workflowName} workflow opnieuw wilt proberen?",
|
|
22242
|
-
status: "Status",
|
|
22243
|
-
startedBy: "Gestart door",
|
|
22244
|
-
lastStep: "Huidige stap",
|
|
22245
|
-
startedOn: "Gestart op",
|
|
22246
|
-
lastUpdate: "Laatste update",
|
|
22247
|
-
relatedSubscriptions: "Gerelateerde subscriptions",
|
|
22248
|
-
subscriptions: "{count, plural, =0 {0 subscriptions} =1 {1 subscriptie} other {# subscriptions}}",
|
|
22249
|
-
customer: "Customer",
|
|
22250
|
-
openWorkflowTaskInfo: "open workflow-/taakinformatie op een nieuw tabblad"
|
|
22251
|
-
},
|
|
22252
|
-
steps: {
|
|
22253
|
-
taskSteps: "Taak stappen",
|
|
22254
|
-
workflowSteps: "Workflow stappen",
|
|
22255
|
-
showDelta: "Toon subscription delta",
|
|
22256
|
-
hideDelta: "Verberg subscription delta",
|
|
22257
|
-
showTraceback: "Toon traceback",
|
|
22258
|
-
hideTraceback: "Verberg traceback",
|
|
22259
|
-
viewOptions: "Opties",
|
|
22260
|
-
expandAll: "klap alles uit",
|
|
22261
|
-
collapseAll: "klap alles in",
|
|
22262
|
-
duration: "Looptijd",
|
|
22263
|
-
userInput: "Invoer gebruiker",
|
|
22264
|
-
submitTaskFormLabel: "Verstuur het formulier om deze taak te starten",
|
|
22265
|
-
submitWorkflowFormLabel: "Verstuur het formulier om deze workflow te starten",
|
|
22266
|
-
traceback: "Traceback",
|
|
22267
|
-
codeView: {
|
|
22268
|
-
json: "JSON",
|
|
22269
|
-
table: "Table",
|
|
22270
|
-
raw: "Raw"
|
|
22149
|
+
search: {
|
|
22150
|
+
availability: {
|
|
22151
|
+
unavailable: {
|
|
22152
|
+
documentation: "Raadpleeg de orchestrator documentatie voor gedetailleerde installatie-instructies.",
|
|
22153
|
+
instructions: {
|
|
22154
|
+
checkDockerConfig: "Zorg er bij gebruik van Docker voor dat de environment variable is ingesteld in docker-compose.yml",
|
|
22155
|
+
checkVersion: "Controleer of je orchestrator-core versie search-functionaliteit ondersteunt",
|
|
22156
|
+
restartService: "Herstart je service",
|
|
22157
|
+
setEnvironmentVariable: {
|
|
22158
|
+
after: " in de environment variables van je service",
|
|
22159
|
+
before: "Zet "
|
|
22160
|
+
}
|
|
22161
|
+
},
|
|
22162
|
+
retryButton: "Opnieuw verbinden",
|
|
22163
|
+
title: "Search service niet beschikbaar"
|
|
22271
22164
|
}
|
|
22272
22165
|
},
|
|
22273
|
-
|
|
22274
|
-
|
|
22275
|
-
|
|
22276
|
-
|
|
22277
|
-
|
|
22278
|
-
|
|
22166
|
+
page: {
|
|
22167
|
+
addGroup: "Groep toevoegen",
|
|
22168
|
+
addNestedGroup: "Geneste groep toevoegen",
|
|
22169
|
+
addRule: "Regel toevoegen",
|
|
22170
|
+
anyPathOption: "Elk pad",
|
|
22171
|
+
componentsGroupLabel: "Componenten",
|
|
22172
|
+
dismiss: "Sluiten",
|
|
22173
|
+
emptyGroupDescription: "Voeg condities of geneste groepen toe om je filter op te bouwen.",
|
|
22174
|
+
emptyGroupTitle: "Lege groep",
|
|
22175
|
+
enterNumber: "Voer een getal in",
|
|
22176
|
+
enterValue: "Voer een waarde in",
|
|
22177
|
+
fieldLabel: "Veld",
|
|
22178
|
+
fieldsGroupLabel: "Velden",
|
|
22179
|
+
fromDate: "Vanaf datum",
|
|
22180
|
+
fromNumber: "Van",
|
|
22181
|
+
groupLabel: "Groep",
|
|
22182
|
+
hideFilters: "Verberg filters",
|
|
22183
|
+
loadingSearchResults: "Zoekresultaten laden...",
|
|
22184
|
+
maxNestingDepth: "Maximale nesting-diepte bereikt",
|
|
22185
|
+
nextPage: "Volgende pagina",
|
|
22186
|
+
noResults: "Geen resultaten",
|
|
22187
|
+
noResultsFound: "Geen resultaten gevonden voor je zoekopdracht.",
|
|
22188
|
+
noResultsMessage: "Geen {entityType} gevonden die voldoen aan je zoekcriteria.",
|
|
22189
|
+
noResultsSuggestions: "Probeer je zoektermen aan te passen, filters te verwijderen of op andere trefwoorden te zoeken.",
|
|
22190
|
+
operatorLabel: "Operator",
|
|
22191
|
+
page: "Pagina",
|
|
22192
|
+
pathsCount: "{count} paden",
|
|
22193
|
+
previousPage: "Vorige pagina",
|
|
22194
|
+
removeConditionAriaLabel: "Conditie verwijderen",
|
|
22195
|
+
removeGroup: "Groep verwijderen",
|
|
22196
|
+
removeRule: "Regel verwijderen",
|
|
22197
|
+
resultsOnPage: "{resultCount} resulta(a)t(en) op deze pagina",
|
|
22198
|
+
retrieval: "Retrieval",
|
|
22199
|
+
retrieverAuto: "Auto",
|
|
22200
|
+
retrieverFuzzy: "Fuzzy",
|
|
22201
|
+
retrieverHybrid: "Hybride",
|
|
22202
|
+
retrieverSemantic: "Semantic",
|
|
22203
|
+
searchError: "Fout",
|
|
22204
|
+
searchFieldsPlaceholder: "Zoek velden...",
|
|
22205
|
+
searchPlaceholder: "Zoek naar {entityType}\u2026",
|
|
22206
|
+
searchResultsPagination: "Paginering zoekresultaten",
|
|
22207
|
+
selectDateAndTime: "Selecteer datum",
|
|
22208
|
+
selectFieldFirst: "Selecteer eerst een veld",
|
|
22209
|
+
selectOrEnterValue: "Selecteer of typ een waarde",
|
|
22210
|
+
selectSpecificPathPlaceholder: "Selecteer een specifiek pad...",
|
|
22211
|
+
showFilters: "Toon filters",
|
|
22212
|
+
structuredFilters: "Gestructureerde filters",
|
|
22213
|
+
toDate: "Tot datum",
|
|
22214
|
+
toNumber: "Tot",
|
|
22215
|
+
valueControlTo: "tot",
|
|
22216
|
+
valueLabel: "Waarde",
|
|
22217
|
+
viewDetails: "Bekijk details"
|
|
22279
22218
|
}
|
|
22280
22219
|
},
|
|
22281
|
-
|
|
22282
|
-
|
|
22283
|
-
|
|
22284
|
-
|
|
22220
|
+
settings: {
|
|
22221
|
+
page: {
|
|
22222
|
+
aoStackStatus: "AO stack status",
|
|
22223
|
+
engineStatusTitle: "Workflow engine status",
|
|
22224
|
+
flushButton: "Flush",
|
|
22225
|
+
flushCacheSettingsTitle: "Flush cache instellingen",
|
|
22226
|
+
modifyEngine: "Wijzig engine status",
|
|
22227
|
+
noSettingsExposed: "Er zijn geen instellingen beschikbaar vanuit de backend. Om dit in te schakelen, raadpleeg de ",
|
|
22228
|
+
numberOfQueuedJobs: "Aantal queued jobs",
|
|
22229
|
+
numberOfRunningJobs: "Aantal running jobs",
|
|
22230
|
+
numberOfWorkersOnline: "Aantal workers online",
|
|
22231
|
+
pauseEngine: "Pauseer workflow engine",
|
|
22232
|
+
resetTextSearchIndex: "Reset text search index",
|
|
22233
|
+
resetTextSearchIndexButton: "Reset",
|
|
22234
|
+
runningProcesses: "Lopende processen",
|
|
22235
|
+
selectSettings: "Kies cache",
|
|
22236
|
+
settingsOverviewLink: "pagina Instellingenoverzicht in de documentatie",
|
|
22237
|
+
startEngine: "Start workflow engine",
|
|
22238
|
+
status: "Status",
|
|
22239
|
+
viewStatusPage: "Bekijk AO status pagina",
|
|
22240
|
+
workerStatusTitle: "Worker status"
|
|
22285
22241
|
},
|
|
22286
|
-
|
|
22287
|
-
|
|
22242
|
+
tabs: {
|
|
22243
|
+
actions: "Acties",
|
|
22244
|
+
envSettings: "Environment Settings"
|
|
22288
22245
|
}
|
|
22289
22246
|
},
|
|
22290
|
-
|
|
22291
|
-
|
|
22292
|
-
|
|
22293
|
-
|
|
22294
|
-
|
|
22295
|
-
all: "Alles"
|
|
22247
|
+
startPage: {
|
|
22248
|
+
activeSubscriptions: {
|
|
22249
|
+
buttonText: "Toon alle actieve subscriptions",
|
|
22250
|
+
headerTitle: "Totaal aantal actieve subscriptions",
|
|
22251
|
+
listTitle: "Meest recente subscriptions"
|
|
22296
22252
|
},
|
|
22297
|
-
|
|
22298
|
-
|
|
22299
|
-
|
|
22300
|
-
|
|
22301
|
-
|
|
22302
|
-
|
|
22303
|
-
|
|
22304
|
-
|
|
22305
|
-
|
|
22306
|
-
|
|
22307
|
-
|
|
22308
|
-
|
|
22309
|
-
|
|
22310
|
-
|
|
22311
|
-
|
|
22253
|
+
activeWorkflows: {
|
|
22254
|
+
buttonText: "Toon alle actieve workflows",
|
|
22255
|
+
headerTitle: "Totaal aantal actieve workflows",
|
|
22256
|
+
listTitle: "Meest recente actieve workflows"
|
|
22257
|
+
},
|
|
22258
|
+
failedTasks: {
|
|
22259
|
+
buttonText: "Toon alle gefaalde taken",
|
|
22260
|
+
headerTitle: "Totaal aantal gefaalde taken",
|
|
22261
|
+
listTitle: "Meest recente gefaalde taken"
|
|
22262
|
+
},
|
|
22263
|
+
myWorkflows: {
|
|
22264
|
+
buttonText: "Toon mijn afgeronde workflows",
|
|
22265
|
+
headerTitle: "Mijn afgeronde workflows",
|
|
22266
|
+
listTitle: "Mijn recente afgeronde workflows"
|
|
22267
|
+
},
|
|
22268
|
+
outOfSyncSubscriptions: {
|
|
22269
|
+
buttonText: "Toon alle actieve out-of-sync subscriptions",
|
|
22270
|
+
headerTitle: "Totaal aantal actieve out-of-sync subscriptions",
|
|
22271
|
+
listTitle: "Meest recente actieve out-of-sync subscriptions"
|
|
22312
22272
|
},
|
|
22273
|
+
products: {
|
|
22274
|
+
headerTitle: "Totaal aantal producten",
|
|
22275
|
+
listTitle: "Totaal aantal productinstanties"
|
|
22276
|
+
}
|
|
22277
|
+
},
|
|
22278
|
+
subscriptions: {
|
|
22313
22279
|
detail: {
|
|
22314
|
-
title: "Subscriptions",
|
|
22315
|
-
tabs: {
|
|
22316
|
-
general: "Algemeen",
|
|
22317
|
-
serviceConfiguration: "Service configuratie",
|
|
22318
|
-
workflows: "Workflows",
|
|
22319
|
-
relatedSubscriptions: "Gerelateerde subscriptions"
|
|
22320
|
-
},
|
|
22321
|
-
loadingStatus: "Laden",
|
|
22322
22280
|
actions: {
|
|
22323
|
-
create: "Create workflow",
|
|
22324
|
-
modify: "Modify workflow",
|
|
22325
|
-
tasks: "Taken",
|
|
22326
|
-
terminate: "Terminate workflow",
|
|
22327
|
-
reconcile: "Reconcile workflow",
|
|
22328
|
-
notAvailable: "Niet beschikbaar",
|
|
22329
|
-
notAvailableForWorkflow: "Niet beschikbaar voor deze workflow",
|
|
22330
|
-
reconcileSubscription: "Reconcile subscription",
|
|
22331
|
-
validateSubscription: "Validate subscription",
|
|
22332
22281
|
actions: "Acties",
|
|
22333
|
-
actionStarted: "Actie gestart",
|
|
22334
|
-
actionStartFailed: "Actie mislukt",
|
|
22335
22282
|
lockedBySubscriptions: "Deze actie is geblokkeerd door de volgende subscriptions:",
|
|
22283
|
+
modify: "Modify workflow",
|
|
22284
|
+
reconcile: "Reconcile workflow",
|
|
22336
22285
|
subscription: {
|
|
22286
|
+
insufficient_workflow_permissions: "Onvoldoende rechten om deze actie uit te kunnen voeren",
|
|
22337
22287
|
no_modify_deleted_related_objects: "Deze subscription kan niet worden gewijzigd omdat het verwijzingen bevat naar andere systemen die zijn verwijderd.",
|
|
22338
22288
|
no_modify_in_use_by_subscription: "Deze subscription kan niet worden {gewijzigd} omdat het wordt gebruikt in andere subscriptions:",
|
|
22339
22289
|
no_modify_invalid_status: "Deze subscription kan niet worden gewijzigd vanwege de status: {status}. Alleen abonnementen met de status {usable_when} kunnen worden {action}.",
|
|
22290
|
+
no_modify_subscription_in_use_by_others: "Deze subscription kan niet worden gewijzigd omdat het in gebruik is door een of meer andere subscriptions.\n\nSubscriptions:",
|
|
22340
22291
|
no_modify_workflow: "Deze subscription kan niet worden gewijzigd omdat het product geen modify workflows heeft.",
|
|
22341
22292
|
no_termination_workflow: "Deze subscription kan niet worden be\xEBindigd omdat het product geen termination workflows heeft.",
|
|
22342
22293
|
no_validate_workflow: "Deze subscription kan niet worden gevalideerd omdat het product geen validate workflows heeft.",
|
|
22343
22294
|
not_in_sync: "Deze subscription kan niet worden gewijzigd omdat het niet in-sync is. Dit betekent dat er een fout zit in de registratie van de subscription of dat het wordt gewijzigd door een andere workflow.",
|
|
22344
22295
|
relations_not_in_sync: "Deze subscription kan niet worden gewijzigd omdat sommige gerelateerde subscriptions niet in-sync zijn.\n\nGeblokkeerde subscriptions:",
|
|
22345
|
-
no_modify_subscription_in_use_by_others: "Deze subscription kan niet worden gewijzigd omdat het in gebruik is door een of meer andere subscriptions.\n\nSubscriptions:",
|
|
22346
|
-
insufficient_workflow_permissions: "Onvoldoende rechten om deze actie uit te kunnen voeren",
|
|
22347
22296
|
running_process: "Deze actie kan niet worden gestart omdat deze subscription al een lopend proces of taak heeft."
|
|
22348
|
-
}
|
|
22297
|
+
},
|
|
22298
|
+
tasks: "Taken",
|
|
22299
|
+
terminate: "Terminate workflow"
|
|
22349
22300
|
},
|
|
22350
|
-
subscriptionInstanceId: "Instance ID",
|
|
22351
|
-
ownerSubscriptionId: "Owner subscription ID",
|
|
22352
|
-
inUseByRelations: "In gebruik door subscription(s)",
|
|
22353
|
-
showDetails: "Toon details",
|
|
22354
|
-
hideDetails: "Verberg details",
|
|
22355
|
-
self: "Huidige subscription",
|
|
22356
|
-
subscriptionDetails: "Subscription detail",
|
|
22357
|
-
productName: "Produkt",
|
|
22358
|
-
fixedInputs: "Fixed inputs",
|
|
22359
|
-
productInfo: "Product info",
|
|
22360
|
-
noProductBlockSelected: "Geen product block geselecteerd",
|
|
22361
|
-
productBlocks: "Product blocks",
|
|
22362
|
-
ctaSelectProductBlock: "Selecteer \xE9\xE9n of meer product blocks om de details te bekijken",
|
|
22363
|
-
startedBy: "Aangemaakt door",
|
|
22364
|
-
startedAt: "Starttijd",
|
|
22365
|
-
status: "Status",
|
|
22366
|
-
id: "ID",
|
|
22367
|
-
blockTitleSubscriptionDetails: "Subscription details",
|
|
22368
22301
|
blockTitleFixedInputs: "Fixed inputs",
|
|
22369
|
-
blockTitleProductInfo: "
|
|
22370
|
-
|
|
22371
|
-
|
|
22372
|
-
|
|
22373
|
-
lastRunValidation: "Meest recente validate",
|
|
22374
|
-
noValidateWorkflows: "Er zijn recentelijk geen validate workflows uitgevoerd",
|
|
22375
|
-
insync: "In sync",
|
|
22302
|
+
blockTitleProductInfo: "Productinfo",
|
|
22303
|
+
blockTitleSubscriptionDetails: "Subscription details",
|
|
22304
|
+
created: "Aangemaakt",
|
|
22305
|
+
ctaSelectProductBlock: "Selecteer \xE9\xE9n of meer product blocks om de details te bekijken",
|
|
22376
22306
|
customer: "Klant",
|
|
22377
|
-
customerUuid: "Klant UUID",
|
|
22378
22307
|
customerDescriptions: "Klant beschrijvingen",
|
|
22308
|
+
customerUuid: "Klant UUID",
|
|
22309
|
+
description: "Beschrijving",
|
|
22310
|
+
endDate: "Einddatum",
|
|
22311
|
+
hideAll: "Verberg alles",
|
|
22312
|
+
hideDetails: "Verberg details",
|
|
22313
|
+
hideTerminatedRelatedSubscriptions: "Verberg be\xEBindigde subscriptions",
|
|
22314
|
+
id: "ID",
|
|
22315
|
+
inUseByRelations: "In gebruik door subscription(s)",
|
|
22316
|
+
insync: "In sync",
|
|
22317
|
+
lastRunValidation: "Meest recente validatie",
|
|
22379
22318
|
metadata: "Metadata",
|
|
22380
22319
|
name: "Naam",
|
|
22381
|
-
|
|
22382
|
-
tag: "Tag",
|
|
22383
|
-
created: "Aangemaakt",
|
|
22384
|
-
endDate: "Einddatum",
|
|
22385
|
-
note: "Notitie",
|
|
22320
|
+
noProductBlockSelected: "Geen product block geselecteerd",
|
|
22386
22321
|
noRelatedSubscriptions: "Geen gerelateerde subscriptions gevonden",
|
|
22387
|
-
|
|
22322
|
+
noValidateWorkflows: "Er zijn recentelijk geen validate workflows uitgevoerd",
|
|
22323
|
+
note: "Notitie",
|
|
22324
|
+
ownerSubscriptionId: "Owner subscription ID",
|
|
22388
22325
|
processDetail: {
|
|
22389
22326
|
id: "ID",
|
|
22390
|
-
|
|
22327
|
+
note: "Note",
|
|
22391
22328
|
startedAt: "Started at",
|
|
22392
22329
|
startedBy: "Started by",
|
|
22393
|
-
|
|
22330
|
+
status: "Status"
|
|
22394
22331
|
},
|
|
22395
|
-
|
|
22396
|
-
|
|
22397
|
-
|
|
22398
|
-
selectByNameButtonText: "Selecteer op naam",
|
|
22332
|
+
productBlocks: "Product blocks",
|
|
22333
|
+
productName: "Product",
|
|
22334
|
+
productType: "Producttype",
|
|
22399
22335
|
see: "Bekijk",
|
|
22336
|
+
selectByNameButtonText: "Selecteer op naam",
|
|
22337
|
+
selectByNameTitle: "Selecteer product blocks op naam",
|
|
22338
|
+
self: "Huidige subscription",
|
|
22400
22339
|
setInSync: "Set in Sync",
|
|
22401
|
-
subscriptionIsInSync: "De subscription staat in sync",
|
|
22402
|
-
setInSyncQuestion: "Weet je zeker dat je de subscription in-sync wilt zetten? Je gaat een subscription geforceerd in-sync zetten. Alleen als je zeker weet wat de reden is van out-of-sync kun je de actie uitvoeren, zodat je daarna wijzigingen kunt doorvoeren op deze subscription. Bij twijfel - check eerst bij de network automators of het in sync zetten van de subscription mogelijk schadelijke gevolgen kan hebben op het netwerk.",
|
|
22403
22340
|
setInSyncFailed: {
|
|
22404
|
-
|
|
22405
|
-
|
|
22341
|
+
text: "De subscription kon niet in sync worden gezet. Probeer het opnieuw.",
|
|
22342
|
+
title: "In sync zetten mislukt"
|
|
22406
22343
|
},
|
|
22344
|
+
setInSyncQuestion: "Weet je zeker dat je de subscription in-sync wilt zetten? Je gaat een subscription geforceerd in-sync zetten. Alleen als je zeker weet wat de reden is van out-of-sync kun je de actie uitvoeren, zodat je daarna wijzigingen kunt doorvoeren op deze subscription. Bij twijfel - check eerst bij de network automators of het in sync zetten van de subscription mogelijk schadelijke gevolgen kan hebben op het netwerk.",
|
|
22407
22345
|
setInSyncSuccess: {
|
|
22408
|
-
|
|
22409
|
-
|
|
22346
|
+
text: "De subscription is in sync gezet.",
|
|
22347
|
+
title: "Subscription in sync"
|
|
22410
22348
|
},
|
|
22349
|
+
showAll: "Toon alles",
|
|
22350
|
+
showDetails: "Toon details",
|
|
22351
|
+
startDate: "Startdatum",
|
|
22352
|
+
status: "Status",
|
|
22353
|
+
subscriptionId: "Subscription ID",
|
|
22354
|
+
subscriptionInstanceId: "Instance ID",
|
|
22355
|
+
subscriptionIsInSync: "De subscription staat in sync",
|
|
22356
|
+
tabs: {
|
|
22357
|
+
general: "Algemeen",
|
|
22358
|
+
relatedSubscriptions: "Gerelateerde subscriptions",
|
|
22359
|
+
serviceConfiguration: "Service configuratie",
|
|
22360
|
+
workflows: "Workflows"
|
|
22361
|
+
},
|
|
22362
|
+
tag: "Tag",
|
|
22363
|
+
title: "Subscriptions",
|
|
22411
22364
|
workflowsTab: {
|
|
22412
|
-
|
|
22413
|
-
|
|
22365
|
+
startWithNewestLabel: "Start met nieuwste eerst",
|
|
22366
|
+
startWithOldestLabel: "Start met oudste eerst"
|
|
22414
22367
|
}
|
|
22368
|
+
},
|
|
22369
|
+
index: {
|
|
22370
|
+
customerFullname: "Klant",
|
|
22371
|
+
customerId: "Klant ID",
|
|
22372
|
+
customerShortcode: "Klantafkorting",
|
|
22373
|
+
description: "Beschrijving",
|
|
22374
|
+
endDate: "Einddatum",
|
|
22375
|
+
id: "ID",
|
|
22376
|
+
insync: "In sync",
|
|
22377
|
+
metadata: "Metadata",
|
|
22378
|
+
note: "Notitie",
|
|
22379
|
+
product: "Product",
|
|
22380
|
+
startDate: "Startdatum",
|
|
22381
|
+
status: "Status",
|
|
22382
|
+
tag: "Tag"
|
|
22383
|
+
},
|
|
22384
|
+
tabs: {
|
|
22385
|
+
active: "Actief",
|
|
22386
|
+
all: "Alles",
|
|
22387
|
+
terminated: "Be\xEBindigd",
|
|
22388
|
+
transient: "In uitvoering"
|
|
22415
22389
|
}
|
|
22416
22390
|
},
|
|
22417
22391
|
tasks: {
|
|
22418
22392
|
page: {
|
|
22419
|
-
taskName: "Taak",
|
|
22420
22393
|
rerunAll: "Alle taken herstarten",
|
|
22421
|
-
rerunAllQuestion: "Weet u zeker dat u alle gefaalde taken opnieuw wilt herstarten?"
|
|
22394
|
+
rerunAllQuestion: "Weet u zeker dat u alle gefaalde taken opnieuw wilt herstarten?",
|
|
22395
|
+
taskName: "Taak"
|
|
22422
22396
|
},
|
|
22423
22397
|
tabs: {
|
|
22424
22398
|
active: "Actief",
|
|
22425
22399
|
completed: "Voltooid"
|
|
22426
22400
|
}
|
|
22427
22401
|
},
|
|
22428
|
-
|
|
22429
|
-
|
|
22430
|
-
|
|
22431
|
-
|
|
22432
|
-
engineStatusTitle: "Workflow engine status",
|
|
22433
|
-
workerStatusTitle: "Worker status",
|
|
22434
|
-
modifyEngine: "Wijzig engine status",
|
|
22435
|
-
pauseEngine: "Pauseer workflow engine",
|
|
22436
|
-
runningProcesses: "Lopende processen",
|
|
22437
|
-
selectSettings: "Kies cache",
|
|
22438
|
-
startEngine: "Start workflow engine",
|
|
22439
|
-
resetTextSearchIndex: "Reset text search index",
|
|
22440
|
-
resetTextSearchIndexButton: "Reset",
|
|
22441
|
-
status: "Status",
|
|
22442
|
-
numberOfQueuedJobs: "Aantal queued jobs",
|
|
22443
|
-
numberOfRunningJobs: "Aantal running jobs",
|
|
22444
|
-
numberOfWorkersOnline: "Aantal workers online",
|
|
22445
|
-
viewStatusPage: "Bekijk AO status pagina",
|
|
22446
|
-
aoStackStatus: "AO stack status",
|
|
22447
|
-
noSettingsExposed: "Er zijn geen instellingen beschikbaar vanuit de backend. Om dit in te schakelen, raadpleeg de ",
|
|
22448
|
-
settingsOverviewLink: "pagina Instellingenoverzicht in de documentatie"
|
|
22449
|
-
},
|
|
22450
|
-
tabs: {
|
|
22451
|
-
actions: "Acties",
|
|
22452
|
-
envSettings: "Environment Settings"
|
|
22453
|
-
}
|
|
22402
|
+
workflowGuide: {
|
|
22403
|
+
hide: "Verberg gebruikershandleiding",
|
|
22404
|
+
noGuideAvailable: "Er is geen gebruikershandleiding beschikbaar voor deze workflow/taak",
|
|
22405
|
+
show: "Toon gebruikershandleiding"
|
|
22454
22406
|
},
|
|
22455
|
-
|
|
22456
|
-
|
|
22457
|
-
|
|
22458
|
-
headerTitle: "Mijn afgeronde workflows",
|
|
22459
|
-
listTitle: "Mijn recente afgeronde workflows"
|
|
22460
|
-
},
|
|
22461
|
-
activeSubscriptions: {
|
|
22462
|
-
buttonText: "Toon alle actieve subscriptions",
|
|
22463
|
-
headerTitle: "Totaal aantal actieve subscriptions",
|
|
22464
|
-
listTitle: "Meest recente subscriptions"
|
|
22465
|
-
},
|
|
22466
|
-
outOfSyncSubscriptions: {
|
|
22467
|
-
buttonText: "Toon alle actieve out-of-sync subscriptions",
|
|
22468
|
-
headerTitle: "Totaal aantal actieve out-of-sync subscriptions",
|
|
22469
|
-
listTitle: "Meest recente actieve out-of-sync subscriptions"
|
|
22470
|
-
},
|
|
22471
|
-
activeWorkflows: {
|
|
22472
|
-
buttonText: "Toon alle actieve workflows",
|
|
22473
|
-
headerTitle: "Totaal aantal actieve workflows",
|
|
22474
|
-
listTitle: "Meest recente actieve workflows"
|
|
22475
|
-
},
|
|
22476
|
-
failedTasks: {
|
|
22477
|
-
buttonText: "Toon alle gefaalde taken",
|
|
22478
|
-
headerTitle: "Totaal aantal gefaalde taken",
|
|
22479
|
-
listTitle: "Meest recente gefaalde taken"
|
|
22407
|
+
workflows: {
|
|
22408
|
+
index: {
|
|
22409
|
+
title: "Workflows"
|
|
22480
22410
|
},
|
|
22481
|
-
|
|
22482
|
-
|
|
22483
|
-
|
|
22411
|
+
tabs: {
|
|
22412
|
+
active: "Actief",
|
|
22413
|
+
completed: "Voltooid"
|
|
22484
22414
|
}
|
|
22485
|
-
},
|
|
22486
|
-
hamburgerMenu: {
|
|
22487
|
-
openMenu: "Open menu",
|
|
22488
|
-
support: "Support",
|
|
22489
|
-
softwareVersions: "Software Versies",
|
|
22490
|
-
logout: "Logout",
|
|
22491
|
-
aoStatusPage: "A&O applicatie status pagina"
|
|
22492
22415
|
}
|
|
22493
22416
|
};
|
|
22494
22417
|
|