@orchestrator-ui/orchestrator-ui-components 8.7.0 → 8.7.2
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 +12 -12
- package/CHANGELOG.md +14 -0
- package/dist/index.d.ts +379 -1244
- package/dist/index.js +1021 -1068
- 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/components/WfoTable/WfoStructuredSearchTable/WfoFieldSelector.tsx +1 -1
- package/src/components/WfoTable/WfoStructuredSearchTable/WfoFilterBuilder.tsx +25 -7
- package/src/components/WfoTable/WfoStructuredSearchTable/WfoOperatorSelector.tsx +18 -1
- package/src/components/WfoTable/WfoStructuredSearchTable/WfoRangeEditor.tsx +38 -50
- package/src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx +34 -29
- 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.2";
|
|
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;
|
|
@@ -12180,7 +12209,7 @@ var WfoFieldSelector = ({ handleOnChange, disabled, rule, context }) => {
|
|
|
12180
12209
|
const storeFieldOperators = (selectedValue2) => {
|
|
12181
12210
|
const matchingPath = paths.find((path) => path.path === selectedValue2) ?? paths.find((path) => path.availablePaths?.includes(selectedValue2));
|
|
12182
12211
|
const operators = matchingPath?.operators ?? prefilledFieldOptions2.get(selectedValue2) ?? [];
|
|
12183
|
-
context?.onFieldSelected?.(selectedValue2, operators);
|
|
12212
|
+
context?.onFieldSelected?.(selectedValue2, operators, matchingPath);
|
|
12184
12213
|
};
|
|
12185
12214
|
const handleFieldSelection = (selectedOptions) => {
|
|
12186
12215
|
const selectedOption = selectedOptions[0];
|
|
@@ -12252,6 +12281,10 @@ import { defaultOperators } from "react-querybuilder";
|
|
|
12252
12281
|
import { EuiSelect as EuiSelect2 } from "@elastic/eui";
|
|
12253
12282
|
import { jsx as jsx182 } from "@emotion/react/jsx-runtime";
|
|
12254
12283
|
var isOptionGroup = (operator) => "options" in operator;
|
|
12284
|
+
var FALLBACK_OPERATOR_LABELS = {
|
|
12285
|
+
notNull: "\u2713 has component",
|
|
12286
|
+
null: "\u2717 does not have component"
|
|
12287
|
+
};
|
|
12255
12288
|
var WfoOperatorSelector = (props) => {
|
|
12256
12289
|
const { value, handleOnChange } = props;
|
|
12257
12290
|
const flatOptions = props.options.flatMap(
|
|
@@ -12273,7 +12306,13 @@ var WfoOperatorSelector = (props) => {
|
|
|
12273
12306
|
}
|
|
12274
12307
|
}, [optionsKey, selectOptions, value, handleOnChange]);
|
|
12275
12308
|
const currentValueIsListed = !value || selectOptions.some((option) => option.value === value);
|
|
12276
|
-
const displayOptions = currentValueIsListed ? selectOptions : [
|
|
12309
|
+
const displayOptions = currentValueIsListed ? selectOptions : [
|
|
12310
|
+
...selectOptions,
|
|
12311
|
+
{
|
|
12312
|
+
value,
|
|
12313
|
+
text: FALLBACK_OPERATOR_LABELS[value] ?? defaultOperators.find((operator) => operator.name === value)?.label ?? value
|
|
12314
|
+
}
|
|
12315
|
+
];
|
|
12277
12316
|
return /* @__PURE__ */ jsx182(
|
|
12278
12317
|
EuiSelect2,
|
|
12279
12318
|
{
|
|
@@ -12409,40 +12448,42 @@ import { EuiButtonGroup as EuiButtonGroup2, EuiDatePicker as EuiDatePicker2, Eui
|
|
|
12409
12448
|
import { useEffect as useEffect22, useState as useState32 } from "react";
|
|
12410
12449
|
import { EuiFlexGroup as EuiFlexGroup20 } from "@elastic/eui";
|
|
12411
12450
|
import { jsx as jsx189, jsxs as jsxs95 } from "@emotion/react/jsx-runtime";
|
|
12412
|
-
var WfoRangeEditor = ({ handleOnChange,
|
|
12413
|
-
const [currentOperator, setCurrentOperator] = useState32(operator);
|
|
12451
|
+
var WfoRangeEditor = ({ handleOnChange, InputElement, value: currentValue }) => {
|
|
12414
12452
|
const startValue = currentValue ? currentValue?.toString().split(",") : [];
|
|
12415
12453
|
const [value, setValue] = useState32(startValue);
|
|
12454
|
+
const handleRangeChange = (newValue, rangeIndex) => {
|
|
12455
|
+
setValue((currentValues) => {
|
|
12456
|
+
const next = [...currentValues];
|
|
12457
|
+
const isCleared = newValue === void 0 || typeof newValue === "number" && Number.isNaN(newValue);
|
|
12458
|
+
next[rangeIndex] = isCleared ? void 0 : String(newValue);
|
|
12459
|
+
return next;
|
|
12460
|
+
});
|
|
12461
|
+
};
|
|
12416
12462
|
useEffect22(() => {
|
|
12417
|
-
if (
|
|
12418
|
-
|
|
12419
|
-
handleOnChange("");
|
|
12420
|
-
setCurrentOperator(operator);
|
|
12421
|
-
}
|
|
12422
|
-
}, [currentOperator, handleOnChange, operator]);
|
|
12423
|
-
const handleChange = (value2, rangeIndex = 0) => {
|
|
12424
|
-
if (operator === "between") {
|
|
12425
|
-
setValue((currentDates) => {
|
|
12426
|
-
if (value2 === null) {
|
|
12427
|
-
return currentDates.filter((_7, index) => index !== rangeIndex);
|
|
12428
|
-
}
|
|
12429
|
-
currentDates[rangeIndex] = value2;
|
|
12430
|
-
if (currentDates.length === 2) {
|
|
12431
|
-
handleOnChange(`${currentDates[0]},${currentDates[1]}`);
|
|
12432
|
-
}
|
|
12433
|
-
return currentDates;
|
|
12434
|
-
});
|
|
12435
|
-
} else {
|
|
12436
|
-
handleOnChange(value2);
|
|
12463
|
+
if (value[0] !== void 0 && value[1] !== void 0) {
|
|
12464
|
+
handleOnChange(`${value[0]},${value[1]}`);
|
|
12437
12465
|
}
|
|
12438
|
-
};
|
|
12439
|
-
|
|
12440
|
-
|
|
12441
|
-
|
|
12442
|
-
|
|
12443
|
-
|
|
12444
|
-
|
|
12445
|
-
|
|
12466
|
+
}, [value]);
|
|
12467
|
+
return /* @__PURE__ */ jsxs95(EuiFlexGroup20, { direction: "row", gutterSize: "s", children: [
|
|
12468
|
+
/* @__PURE__ */ jsx189(
|
|
12469
|
+
InputElement,
|
|
12470
|
+
{
|
|
12471
|
+
handleOnChange: (value2) => {
|
|
12472
|
+
handleRangeChange(value2, 0);
|
|
12473
|
+
},
|
|
12474
|
+
value: value[0]
|
|
12475
|
+
}
|
|
12476
|
+
),
|
|
12477
|
+
/* @__PURE__ */ jsx189(
|
|
12478
|
+
InputElement,
|
|
12479
|
+
{
|
|
12480
|
+
handleOnChange: (value2) => {
|
|
12481
|
+
handleRangeChange(value2, 1);
|
|
12482
|
+
},
|
|
12483
|
+
value: value[1]
|
|
12484
|
+
}
|
|
12485
|
+
)
|
|
12486
|
+
] });
|
|
12446
12487
|
};
|
|
12447
12488
|
|
|
12448
12489
|
// src/components/WfoTable/WfoStructuredSearchTable/WfoValueEditor.tsx
|
|
@@ -12495,14 +12536,14 @@ var TextEditor = ({ handleOnChange, value: currentValue = "" }) => {
|
|
|
12495
12536
|
};
|
|
12496
12537
|
return /* @__PURE__ */ jsx190(EuiFieldText3, { value, onChange: handleTextChange, onBlur: handleOnBlur, onKeyDown: handleOnKeyDown });
|
|
12497
12538
|
};
|
|
12498
|
-
var NumberEditor = ({ handleOnChange,
|
|
12539
|
+
var NumberEditor = ({ handleOnChange, value: currentValue }) => {
|
|
12499
12540
|
const [value, setValue] = useState33(currentValue?.toString() || "");
|
|
12500
12541
|
const handleNumberChange = (e) => {
|
|
12501
12542
|
setValue(e.target.value || "");
|
|
12502
12543
|
};
|
|
12503
12544
|
const handleOnBlur = () => {
|
|
12504
12545
|
const numberValue = parseFloat(value);
|
|
12505
|
-
handleOnChange(numberValue
|
|
12546
|
+
handleOnChange(numberValue);
|
|
12506
12547
|
};
|
|
12507
12548
|
const handleOnKeyDown = (e) => {
|
|
12508
12549
|
if (e.key === "Enter") {
|
|
@@ -12519,7 +12560,7 @@ var NumberEditor = ({ handleOnChange, rangeIndex, value: currentValue }) => {
|
|
|
12519
12560
|
}
|
|
12520
12561
|
);
|
|
12521
12562
|
};
|
|
12522
|
-
var DatePicker = ({ handleOnChange,
|
|
12563
|
+
var DatePicker = ({ handleOnChange, value: currentValue }) => {
|
|
12523
12564
|
const [date, setDate] = useState33(currentValue || "");
|
|
12524
12565
|
const t = useTranslations46("search.page");
|
|
12525
12566
|
return /* @__PURE__ */ jsx190(
|
|
@@ -12529,9 +12570,8 @@ var DatePicker = ({ handleOnChange, rangeIndex, value: currentValue }) => {
|
|
|
12529
12570
|
onChange: (date2) => {
|
|
12530
12571
|
const utcDate = date2 ? moment3.utc(date2) : void 0;
|
|
12531
12572
|
setDate(utcDate?.toISOString() || "");
|
|
12532
|
-
handleOnChange(utcDate?.toISOString()
|
|
12573
|
+
handleOnChange(utcDate?.toISOString());
|
|
12533
12574
|
},
|
|
12534
|
-
id: rangeIndex ? `date-range-${rangeIndex}` : "date-range",
|
|
12535
12575
|
css: { width: "330px" },
|
|
12536
12576
|
showTimeSelect: true,
|
|
12537
12577
|
dateFormat: "yyyy-MM-dd HH:mm",
|
|
@@ -12550,20 +12590,24 @@ var WfoValueEditor = ({
|
|
|
12550
12590
|
value,
|
|
12551
12591
|
className
|
|
12552
12592
|
}) => {
|
|
12593
|
+
if (operator === "null" || operator === "notNull") {
|
|
12594
|
+
return null;
|
|
12595
|
+
}
|
|
12596
|
+
const getComponentByType = () => {
|
|
12597
|
+
if (uiFieldType === "boolean" /* boolean */) return BooleanEditor;
|
|
12598
|
+
if (uiFieldType === "datetime" /* datetime */) return DatePicker;
|
|
12599
|
+
if (uiFieldType === "number" /* number */) return NumberEditor;
|
|
12600
|
+
return TextEditor;
|
|
12601
|
+
};
|
|
12553
12602
|
const fieldPathInfoMap = context?.fieldPathInfoMap;
|
|
12554
12603
|
const fieldInfo = fieldPathInfoMap && fieldPathInfoMap.has(fieldName) ? fieldPathInfoMap.get(fieldName) : void 0;
|
|
12555
|
-
const uiFieldType = fieldInfo?.ui_types[0] || "text" /* text */;
|
|
12604
|
+
const uiFieldType = fieldInfo?.ui_types?.[0] || "text" /* text */;
|
|
12556
12605
|
const getEditor = () => {
|
|
12557
|
-
|
|
12558
|
-
|
|
12559
|
-
|
|
12560
|
-
if (uiFieldType === "datetime" /* datetime */) {
|
|
12561
|
-
return /* @__PURE__ */ jsx190(WfoRangeEditor, { handleOnChange, operator, Element: DatePicker, value });
|
|
12562
|
-
}
|
|
12563
|
-
if (uiFieldType === "number" /* number */) {
|
|
12564
|
-
return /* @__PURE__ */ jsx190(WfoRangeEditor, { handleOnChange, operator, Element: NumberEditor, value });
|
|
12606
|
+
const InputElement = getComponentByType();
|
|
12607
|
+
if (operator === "between") {
|
|
12608
|
+
return /* @__PURE__ */ jsx190(WfoRangeEditor, { handleOnChange, value, InputElement });
|
|
12565
12609
|
}
|
|
12566
|
-
return /* @__PURE__ */ jsx190(
|
|
12610
|
+
return /* @__PURE__ */ jsx190(InputElement, { handleOnChange, value });
|
|
12567
12611
|
};
|
|
12568
12612
|
const handleWrapperKeyDown = (event) => {
|
|
12569
12613
|
if (event.key !== "Enter") return;
|
|
@@ -12583,8 +12627,11 @@ var SEARCH_OPERATOR_TO_RQB_OPERATOR_MAP = {
|
|
|
12583
12627
|
gt: ">",
|
|
12584
12628
|
gte: ">=",
|
|
12585
12629
|
between: "between",
|
|
12586
|
-
like: "contains"
|
|
12630
|
+
like: "contains",
|
|
12631
|
+
has_component: "notNull",
|
|
12632
|
+
not_has_component: "null"
|
|
12587
12633
|
};
|
|
12634
|
+
var RQB_UNARY_OPERATORS = ["null", "notNull"];
|
|
12588
12635
|
var OPERATOR_MAP2 = {
|
|
12589
12636
|
eq: { symbol: "=", description: "equals" },
|
|
12590
12637
|
neq: { symbol: "\u2260", description: "not equals" },
|
|
@@ -12620,21 +12667,32 @@ var WfoFilterBuilder = ({
|
|
|
12620
12667
|
return (operators ?? []).map((operator) => {
|
|
12621
12668
|
const { symbol, description } = OPERATOR_MAP2[operator] || { symbol: operator, description: operator };
|
|
12622
12669
|
const rqbOperator = SEARCH_OPERATOR_TO_RQB_OPERATOR_MAP[operator] ?? operator;
|
|
12623
|
-
return {
|
|
12670
|
+
return {
|
|
12671
|
+
name: rqbOperator,
|
|
12672
|
+
label: `${symbol} ${description}`,
|
|
12673
|
+
value: rqbOperator,
|
|
12674
|
+
...RQB_UNARY_OPERATORS.includes(rqbOperator) && { arity: "unary" }
|
|
12675
|
+
};
|
|
12624
12676
|
});
|
|
12625
12677
|
};
|
|
12626
12678
|
const t = useTranslations47("common");
|
|
12627
12679
|
const { queryBuilderContainerStyles } = useWithOrchestratorTheme(getWfoStructuredSearchTableStyles);
|
|
12628
12680
|
const [fieldToOperatorMap, setFieldToOperatorMap] = useState34(prefilledFieldOptions2);
|
|
12681
|
+
const [fieldPathInfoMap, setFieldPathInfoMap] = useState34(/* @__PURE__ */ new Map());
|
|
12629
12682
|
const latestRuleGroupRef = useRef13(queryBuilderRuleGroup);
|
|
12630
12683
|
latestRuleGroupRef.current = queryBuilderRuleGroup;
|
|
12631
12684
|
const handleValueEditorEnter = () => {
|
|
12632
12685
|
handleSearch({ ruleGroup: latestRuleGroupRef.current });
|
|
12633
12686
|
};
|
|
12634
|
-
const handleFieldSelected = (field, operators) => {
|
|
12687
|
+
const handleFieldSelected = (field, operators, pathInfo) => {
|
|
12635
12688
|
setFieldToOperatorMap((previousMap) => {
|
|
12636
12689
|
return new Map(previousMap).set(field, operators);
|
|
12637
12690
|
});
|
|
12691
|
+
if (pathInfo) {
|
|
12692
|
+
setFieldPathInfoMap((previousMap) => {
|
|
12693
|
+
return new Map(previousMap).set(field, pathInfo);
|
|
12694
|
+
});
|
|
12695
|
+
}
|
|
12638
12696
|
};
|
|
12639
12697
|
return /* @__PURE__ */ jsx191(EuiFlexGroup21, { css: queryBuilderContainerStyles, children: /* @__PURE__ */ jsxs96(EuiFlexGroup21, { direction: "column", children: [
|
|
12640
12698
|
/* @__PURE__ */ jsx191(EuiFlexItem21, { children: /* @__PURE__ */ jsx191(
|
|
@@ -12649,6 +12707,7 @@ var WfoFilterBuilder = ({
|
|
|
12649
12707
|
context: {
|
|
12650
12708
|
onFieldSelected: handleFieldSelected,
|
|
12651
12709
|
prefilledFieldOptions: prefilledFieldOptions2,
|
|
12710
|
+
fieldPathInfoMap,
|
|
12652
12711
|
onValueEditorEnter: handleValueEditorEnter
|
|
12653
12712
|
},
|
|
12654
12713
|
getOperators: (field) => {
|
|
@@ -20811,7 +20870,7 @@ var FilterGroup = ({
|
|
|
20811
20870
|
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButton25, { size: "s", fill: true, color: "primary", onClick: toggleOperator, children: group.op }) })
|
|
20812
20871
|
] }) }),
|
|
20813
20872
|
/* @__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("
|
|
20873
|
+
/* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButton25, { size: "s", iconType: "plusInCircle", onClick: addCondition, children: t("addRule") }) }),
|
|
20815
20874
|
/* @__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
20875
|
!isRoot && onRemove && /* @__PURE__ */ jsx291(EuiFlexItem52, { grow: false, children: /* @__PURE__ */ jsx291(EuiButtonIcon20, { iconType: "trash", color: "danger", onClick: onRemove, "aria-label": t("removeGroup") }) })
|
|
20817
20876
|
] }) })
|
|
@@ -21238,513 +21297,402 @@ var { useTranslationsQuery } = translationsApi;
|
|
|
21238
21297
|
|
|
21239
21298
|
// src/messages/en-GB.json
|
|
21240
21299
|
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
21300
|
common: {
|
|
21274
|
-
|
|
21301
|
+
applyFilter: "Apply filter",
|
|
21302
|
+
createFilter: "Create a filter",
|
|
21275
21303
|
deselect: "Deselect",
|
|
21276
|
-
close: "Close",
|
|
21277
21304
|
editColumns: "Edit columns",
|
|
21278
|
-
|
|
21305
|
+
errorMessage: "An error occurred",
|
|
21306
|
+
export: "Export",
|
|
21307
|
+
insyncFalse: "out-of-sync",
|
|
21308
|
+
insyncTrue: "in-sync",
|
|
21309
|
+
loadMore: "Load more",
|
|
21279
21310
|
loading: "Loading",
|
|
21280
21311
|
newSubscription: "New subscription",
|
|
21281
21312
|
newTask: "New task",
|
|
21282
21313
|
noFailedTasks: "No failed tasks!",
|
|
21283
21314
|
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>',
|
|
21315
|
+
removeFilter: "Remove filter",
|
|
21293
21316
|
retrieval: "Retrieval",
|
|
21294
21317
|
retrieverAuto: "Auto",
|
|
21295
21318
|
retrieverFuzzy: "Fuzzy",
|
|
21296
|
-
retrieverSemantic: "Semantic",
|
|
21297
21319
|
retrieverHybrid: "Hybrid",
|
|
21298
|
-
|
|
21299
|
-
|
|
21300
|
-
|
|
21301
|
-
|
|
21302
|
-
|
|
21320
|
+
retrieverSemantic: "Semantic",
|
|
21321
|
+
search: "Search",
|
|
21322
|
+
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>',
|
|
21323
|
+
searchModalTitle: "Search string options",
|
|
21324
|
+
showAllColumnsInDetailView: "Show all columns in detail view",
|
|
21325
|
+
tableSettings: "Table settings",
|
|
21326
|
+
unauthorizedPage: "You are not authorized to see this page",
|
|
21327
|
+
unknownError: "Unknown error"
|
|
21303
21328
|
},
|
|
21304
21329
|
confirmationDialog: {
|
|
21305
|
-
title: "Please confirm",
|
|
21306
|
-
confirm: "Confirm",
|
|
21307
21330
|
cancel: "Cancel",
|
|
21308
|
-
|
|
21309
|
-
|
|
21310
|
-
stay: "Stay",
|
|
21311
|
-
leave: "Leave"
|
|
21312
|
-
},
|
|
21313
|
-
workflow: {
|
|
21314
|
-
start_workflow_title: "Start workflow"
|
|
21331
|
+
confirm: "Confirm",
|
|
21332
|
+
title: "Please confirm"
|
|
21315
21333
|
},
|
|
21316
21334
|
errors: {
|
|
21335
|
+
failedDeletingScheduledTask: "Error deleting scheduled task",
|
|
21336
|
+
invalidQueryParts: "The query contains invalid parts",
|
|
21317
21337
|
notAllResultsExported: "The current query returned {totalResults} results. Only the first {maximumExportedResults} rows will be exported",
|
|
21318
21338
|
notAllResultsExportedTitle: "Not all items exported",
|
|
21319
|
-
invalidQueryParts: "The query contains invalid parts",
|
|
21320
21339
|
notAllowedWhenEngineIsNotRunningMessage: "This action is not allowed when the Workflow Engine is not running",
|
|
21321
21340
|
notAllowedWhenEngineIsNotRunningTitle: "Workflow Engine is not running",
|
|
21322
21341
|
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"
|
|
21342
|
+
retrieve_stored_settings_title: "Error retrieving settings"
|
|
21325
21343
|
},
|
|
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
|
-
}
|
|
21344
|
+
hamburgerMenu: {
|
|
21345
|
+
aoStatusPage: "A&O application status page",
|
|
21346
|
+
logout: "Logout",
|
|
21347
|
+
openMenu: "Open menu",
|
|
21348
|
+
softwareVersions: "Software Versions",
|
|
21349
|
+
support: "Support"
|
|
21350
|
+
},
|
|
21351
|
+
main: {
|
|
21352
|
+
ariaLabelCurrentPage: "Current page",
|
|
21353
|
+
ariaLabelToggleSideMenu: "Show/Hide side menu",
|
|
21354
|
+
darkMode: "Dark mode",
|
|
21355
|
+
incompatibleVersion: "Incompatible version",
|
|
21356
|
+
incompatibleVersionText: "The version of the WFO UI is incompatible with this version of orchestrator-core.",
|
|
21357
|
+
lightMode: "Light mode",
|
|
21358
|
+
metadata: "Metadata",
|
|
21359
|
+
metadataProductblocks: "Product blocks",
|
|
21360
|
+
metadataProducts: "Products",
|
|
21361
|
+
metadataResourceTypes: "Resource types",
|
|
21362
|
+
metadataScheduledTasks: "Scheduled tasks",
|
|
21363
|
+
metadataTasks: "Tasks",
|
|
21364
|
+
metadataWorkflows: "Workflows",
|
|
21365
|
+
minimumOrchestratorCoreVersion: "Minimum orchestrator-core version",
|
|
21366
|
+
mobileTitle: "Main menu",
|
|
21367
|
+
numberOfRows: "Number of rows",
|
|
21368
|
+
resetToDefault: "Reset to default",
|
|
21369
|
+
savePreferences: "Save preferences",
|
|
21370
|
+
settings: "Settings",
|
|
21371
|
+
start: "Start",
|
|
21372
|
+
subscriptions: "Subscriptions",
|
|
21373
|
+
tableSettings: "Table settings",
|
|
21374
|
+
tasks: "Tasks",
|
|
21375
|
+
websocketConnected: "This page receives live updates from the server",
|
|
21376
|
+
websocketDisconnected: "The connection to the server is lost, click the icon or refresh the page",
|
|
21377
|
+
welcome: "Welcome",
|
|
21378
|
+
workflows: "Workflows"
|
|
21418
21379
|
},
|
|
21419
21380
|
metadata: {
|
|
21420
|
-
|
|
21421
|
-
|
|
21422
|
-
|
|
21423
|
-
|
|
21381
|
+
productBlocks: {
|
|
21382
|
+
createdAt: "Created",
|
|
21383
|
+
dependingProductBlocks: "Depending product blocks",
|
|
21384
|
+
description: "Product block description",
|
|
21385
|
+
endDate: "End date",
|
|
21386
|
+
id: "ID",
|
|
21387
|
+
name: "Product block",
|
|
21424
21388
|
resourceTypes: "Resource types",
|
|
21425
|
-
|
|
21426
|
-
|
|
21427
|
-
scheduledTasks: "Scheduled tasks"
|
|
21389
|
+
status: "Status",
|
|
21390
|
+
tag: "Tag"
|
|
21428
21391
|
},
|
|
21429
21392
|
products: {
|
|
21430
|
-
|
|
21431
|
-
name: "Product",
|
|
21432
|
-
tag: "Tag",
|
|
21393
|
+
createdAt: "Created",
|
|
21433
21394
|
description: "Product description",
|
|
21434
|
-
productType: "Type",
|
|
21435
|
-
status: "Status",
|
|
21436
|
-
productBlocks: "Product blocks",
|
|
21437
21395
|
fixedInputs: "Fixed inputs",
|
|
21438
|
-
createdAt: "Created"
|
|
21439
|
-
},
|
|
21440
|
-
productBlocks: {
|
|
21441
21396
|
id: "ID",
|
|
21442
|
-
name: "Product
|
|
21443
|
-
|
|
21444
|
-
|
|
21397
|
+
name: "Product",
|
|
21398
|
+
productBlocks: "Product blocks",
|
|
21399
|
+
productType: "Type",
|
|
21445
21400
|
status: "Status",
|
|
21446
|
-
|
|
21447
|
-
dependingProductBlocks: "Depending product blocks",
|
|
21448
|
-
createdAt: "Created",
|
|
21449
|
-
endDate: "End date",
|
|
21450
|
-
parentIds: "Parents"
|
|
21401
|
+
tag: "Tag"
|
|
21451
21402
|
},
|
|
21452
21403
|
resourceTypes: {
|
|
21453
|
-
type: "Resource type",
|
|
21454
21404
|
description: "Resource type description",
|
|
21455
21405
|
resourceId: "ID",
|
|
21406
|
+
type: "Resource type",
|
|
21456
21407
|
usedInProductBlocks: "Used in product blocks"
|
|
21457
21408
|
},
|
|
21458
|
-
workflows: {
|
|
21459
|
-
workflowId: "ID",
|
|
21460
|
-
name: "Workflow",
|
|
21461
|
-
description: "Workflow description",
|
|
21462
|
-
target: "Target",
|
|
21463
|
-
productTags: "Product tags",
|
|
21464
|
-
createdAt: "Created"
|
|
21465
|
-
},
|
|
21466
|
-
tasks: {
|
|
21467
|
-
workflowId: "ID",
|
|
21468
|
-
name: "Task",
|
|
21469
|
-
description: "Task description",
|
|
21470
|
-
target: "Target",
|
|
21471
|
-
productTags: "Product tags",
|
|
21472
|
-
scheduled: "Scheduled",
|
|
21473
|
-
createdAt: "Created",
|
|
21474
|
-
addSchedule: "Schedule task"
|
|
21475
|
-
},
|
|
21476
21409
|
scheduledTasks: {
|
|
21477
|
-
|
|
21478
|
-
taskDescription: "Task description",
|
|
21479
|
-
nextRuntime: "Next runtime",
|
|
21480
|
-
schedule: "Schedule",
|
|
21481
|
-
interval: "Interval",
|
|
21410
|
+
addSchedule: "Schedule task",
|
|
21482
21411
|
ariaLabelDeleteButton: "Delete task schedule",
|
|
21483
21412
|
deleteConfirmationQuestion: "Confirm deleting this schedule task",
|
|
21484
|
-
|
|
21413
|
+
nextRuntime: "Next runtime",
|
|
21414
|
+
schedule: "Schedule",
|
|
21415
|
+
task: "Task",
|
|
21416
|
+
taskDescription: "Task description"
|
|
21417
|
+
},
|
|
21418
|
+
tabs: {
|
|
21419
|
+
productBlocks: "Product blocks",
|
|
21420
|
+
products: "Products",
|
|
21421
|
+
resourceTypes: "Resource types",
|
|
21422
|
+
scheduledTasks: "Scheduled tasks",
|
|
21423
|
+
tasks: "Tasks",
|
|
21424
|
+
workflows: "Workflows"
|
|
21425
|
+
},
|
|
21426
|
+
tasks: {
|
|
21427
|
+
addSchedule: "Schedule task",
|
|
21428
|
+
createdAt: "Created",
|
|
21429
|
+
description: "Task description",
|
|
21430
|
+
name: "Task",
|
|
21431
|
+
productTags: "Product tags",
|
|
21432
|
+
scheduled: "Scheduled",
|
|
21433
|
+
target: "Target",
|
|
21434
|
+
workflowId: "ID"
|
|
21485
21435
|
},
|
|
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"
|
|
21436
|
+
title: "Metadata",
|
|
21437
|
+
workflows: {
|
|
21438
|
+
createdAt: "Created",
|
|
21439
|
+
description: "Workflow description",
|
|
21440
|
+
name: "Workflow",
|
|
21441
|
+
productTags: "Product tags",
|
|
21442
|
+
target: "Target",
|
|
21443
|
+
workflowId: "ID"
|
|
21504
21444
|
}
|
|
21505
21445
|
},
|
|
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
21446
|
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"
|
|
21447
|
+
delta: {
|
|
21448
|
+
continuityAboveBelow: "Continuity above below",
|
|
21449
|
+
continuityWithin: "Continuity within",
|
|
21450
|
+
fullScreen: "Full-screen mode",
|
|
21451
|
+
fullScreenExit: "Exit full-screen mode",
|
|
21452
|
+
title: "Subscription delta"
|
|
21530
21453
|
},
|
|
21531
21454
|
detail: {
|
|
21532
|
-
retry: "Retry",
|
|
21533
|
-
resume: "Resume",
|
|
21534
21455
|
abort: "Abort",
|
|
21535
|
-
delete: "Delete",
|
|
21536
|
-
deleteQuestion: "Are you sure you want to delete the {workflowName} task?",
|
|
21537
21456
|
abortTaskQuestion: "Are you sure you want to abort the {workflowName} task?",
|
|
21538
21457
|
abortWorkflowQuestion: "Are you sure you want to abort the {workflowName} workflow?",
|
|
21458
|
+
customer: "Customer",
|
|
21459
|
+
delete: "Delete",
|
|
21460
|
+
deleteQuestion: "Are you sure you want to delete the {workflowName} task?",
|
|
21461
|
+
lastStep: "Current step",
|
|
21462
|
+
lastUpdate: "Last update",
|
|
21463
|
+
openWorkflowTaskInfo: "open workflow/task information in a new tab",
|
|
21464
|
+
relatedSubscriptions: "Related subscriptions",
|
|
21465
|
+
retry: "Retry",
|
|
21539
21466
|
retryTaskQuestion: "Are you sure you want to retry the {workflowName} task?",
|
|
21540
21467
|
retryWorkflowQuestion: "Are you sure you want to retry the {workflowName} workflow?",
|
|
21541
|
-
status: "Status",
|
|
21542
21468
|
startedBy: "Started by",
|
|
21543
|
-
lastStep: "Current step",
|
|
21544
21469
|
startedOn: "Started on",
|
|
21545
|
-
|
|
21546
|
-
|
|
21547
|
-
|
|
21470
|
+
status: "Status"
|
|
21471
|
+
},
|
|
21472
|
+
index: {
|
|
21473
|
+
assignee: "Assignee",
|
|
21474
|
+
createdBy: "Created by",
|
|
21548
21475
|
customer: "Customer",
|
|
21549
|
-
|
|
21476
|
+
customerAbbreviation: "Customer abbr",
|
|
21477
|
+
lastModified: "Last modified",
|
|
21478
|
+
note: "Note",
|
|
21479
|
+
processId: "Process ID",
|
|
21480
|
+
product: "Product",
|
|
21481
|
+
productTag: "Product tag",
|
|
21482
|
+
showAllRelatedSubscriptions: "Show all related subscriptions",
|
|
21483
|
+
started: "Started",
|
|
21484
|
+
status: "Status",
|
|
21485
|
+
step: "Current step",
|
|
21486
|
+
subscriptions: "Subscriptions",
|
|
21487
|
+
workflowName: "Workflow",
|
|
21488
|
+
workflowTarget: "Target"
|
|
21550
21489
|
},
|
|
21551
21490
|
steps: {
|
|
21552
|
-
|
|
21553
|
-
|
|
21554
|
-
|
|
21555
|
-
|
|
21556
|
-
|
|
21557
|
-
hideTraceback: "Hide traceback",
|
|
21558
|
-
viewOptions: "Options",
|
|
21559
|
-
expandAll: "Expand all",
|
|
21491
|
+
codeView: {
|
|
21492
|
+
json: "JSON",
|
|
21493
|
+
raw: "Raw",
|
|
21494
|
+
table: "Table"
|
|
21495
|
+
},
|
|
21560
21496
|
collapseAll: "collapse all",
|
|
21561
21497
|
duration: "Duration",
|
|
21562
|
-
|
|
21498
|
+
expandAll: "Expand all",
|
|
21499
|
+
hideDelta: "Hide subscription delta",
|
|
21500
|
+
hideTraceback: "Hide traceback",
|
|
21501
|
+
showDelta: "Show subscription delta",
|
|
21502
|
+
showTraceback: "Show traceback",
|
|
21563
21503
|
submitTaskFormLabel: "Please submit the form to start this task",
|
|
21564
21504
|
submitWorkflowFormLabel: "Please submit the form to start this workflow",
|
|
21505
|
+
taskSteps: "Task steps",
|
|
21565
21506
|
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"
|
|
21507
|
+
userInput: "User input",
|
|
21508
|
+
viewOptions: "Options",
|
|
21509
|
+
workflowSteps: "Workflow steps"
|
|
21587
21510
|
}
|
|
21588
21511
|
},
|
|
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"
|
|
21512
|
+
pydanticForms: {
|
|
21513
|
+
userInputForm: {
|
|
21514
|
+
cancel: "Cancel",
|
|
21515
|
+
inputFieldsHaveValidationErrors: "{nrOfValidationErrors} input field(s) have validation errors",
|
|
21516
|
+
next: "Next",
|
|
21517
|
+
preconditionFailedFallback: "A precondition for starting this task was not met.",
|
|
21518
|
+
preconditionFailedTitle: "This task cannot be started right now",
|
|
21519
|
+
previous: "Previous",
|
|
21520
|
+
previousQuestion: "Are you sure you want to leave this page? Any filled form data will be lost",
|
|
21521
|
+
resumeTask: "Resume task",
|
|
21522
|
+
resumeWorkflow: "Resume workflow",
|
|
21523
|
+
startTask: "Start task",
|
|
21524
|
+
startWorkflow: "Start workflow"
|
|
21611
21525
|
},
|
|
21612
|
-
|
|
21613
|
-
|
|
21614
|
-
|
|
21615
|
-
general: "General",
|
|
21616
|
-
serviceConfiguration: "Service configuration",
|
|
21617
|
-
workflows: "Workflows",
|
|
21618
|
-
relatedSubscriptions: "Related subscriptions"
|
|
21526
|
+
widgets: {
|
|
21527
|
+
contactPersonName: {
|
|
21528
|
+
placeholder: "Search and add contact persons..."
|
|
21619
21529
|
},
|
|
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
|
-
}
|
|
21530
|
+
cron: {
|
|
21531
|
+
allowedValues: "allowed values",
|
|
21532
|
+
alternativeSingleValues: "alternative single values",
|
|
21533
|
+
anyValue: "any value",
|
|
21534
|
+
dayOfMonth: "day (month)",
|
|
21535
|
+
dayOfWeek: "day (week)",
|
|
21536
|
+
hour: "hour",
|
|
21537
|
+
invalidExpression: "Invalid cron expression: {error}",
|
|
21538
|
+
minute: "minute",
|
|
21539
|
+
month: "month",
|
|
21540
|
+
nextOccurrences: "Next: {dates}",
|
|
21541
|
+
possibleValues: "Possible values for this field",
|
|
21542
|
+
rangeOfValues: "range of values",
|
|
21543
|
+
second: "second",
|
|
21544
|
+
stepValues: "step values",
|
|
21545
|
+
sundayNonStandard: "sunday (non-standard)",
|
|
21546
|
+
valueListSeparator: "value list separator"
|
|
21648
21547
|
},
|
|
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"
|
|
21548
|
+
customer: {
|
|
21549
|
+
loading: "Loading customers...",
|
|
21550
|
+
placeholder: "Search and select a customer..."
|
|
21693
21551
|
},
|
|
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."
|
|
21552
|
+
fileUpload: {
|
|
21553
|
+
errorUploading: "Error uploading file!",
|
|
21554
|
+
fileToBig: "File to large. Maximum file size: {fileSizeLimit}",
|
|
21555
|
+
initialPromptText: "Select or drag and drop a file",
|
|
21556
|
+
invalidFiletype: "Invalid filetype!",
|
|
21557
|
+
supportedFileTypes: "Supported file types: pdf"
|
|
21705
21558
|
},
|
|
21706
|
-
|
|
21707
|
-
|
|
21708
|
-
text: "The subscription was successfully set in sync."
|
|
21559
|
+
ipvAnyNetworkField: {
|
|
21560
|
+
manuallySelectedPrefix: "Manually selected prefix"
|
|
21709
21561
|
},
|
|
21710
|
-
|
|
21711
|
-
|
|
21712
|
-
|
|
21713
|
-
|
|
21714
|
-
|
|
21715
|
-
|
|
21716
|
-
|
|
21717
|
-
|
|
21718
|
-
|
|
21719
|
-
|
|
21720
|
-
|
|
21562
|
+
locationCode: {
|
|
21563
|
+
placeholder: "Search and select a location code..."
|
|
21564
|
+
},
|
|
21565
|
+
nodePort: {
|
|
21566
|
+
loadingNodes: "Loading Node subscriptions...",
|
|
21567
|
+
loadingPorts: "Loading IMS ports...",
|
|
21568
|
+
noPorts: "NO PORTS FOUND FOR THIS NODE",
|
|
21569
|
+
selectNode: "Select node",
|
|
21570
|
+
selectNodeFirst: "Select a node first",
|
|
21571
|
+
selectPort: "Select port"
|
|
21572
|
+
},
|
|
21573
|
+
node_select: {
|
|
21574
|
+
no_nodes_placeholder: "No nodes",
|
|
21575
|
+
nodes_loading: "Nodes loading",
|
|
21576
|
+
select_node: "Select node"
|
|
21577
|
+
},
|
|
21578
|
+
product: {
|
|
21579
|
+
placeholder: "Choose product"
|
|
21580
|
+
},
|
|
21581
|
+
select: {
|
|
21582
|
+
placeholder: "Search and select a value..."
|
|
21583
|
+
},
|
|
21584
|
+
subscription: {
|
|
21585
|
+
loading: "Loading subscriptions...",
|
|
21586
|
+
placeholder: "Choose a subscription"
|
|
21587
|
+
},
|
|
21588
|
+
vlan: {
|
|
21589
|
+
allPortsAvailable: "This service port has no VLANs in use (yet).",
|
|
21590
|
+
invalidVlan: "Invalid VLAN - must be a range of valid [2-4094] VLAN integers, for example '2, 5-6, 1048-1052'",
|
|
21591
|
+
loadingIms: "Loading VLAN info from IMS",
|
|
21592
|
+
missingInIms: "This service port can not be found in IMS. It may be deleted or in an initial state.",
|
|
21593
|
+
nsiNoPortsAvailable: "This service port has no available NSI reserved VLANs (yet).",
|
|
21594
|
+
nsiVlansAvailable: "Available NSI VLAN ranges for this service port: {vlans}",
|
|
21595
|
+
placeholder: "Enter a valid VLAN range...",
|
|
21596
|
+
placeholderNoServicePort: "First select a Service Port...",
|
|
21597
|
+
taggedOnly: "VLAN is only relevant for service ports in tagged mode, not for link_member or untagged ports.",
|
|
21598
|
+
untaggedPortInUse: "This service port is already in use and cannot be chosen",
|
|
21599
|
+
vlansInUse: "Already used VLAN ranges for this service port: {vlans}",
|
|
21600
|
+
vlansInUseError: "VLAN range {vlans} are already in use for the selected service port"
|
|
21601
|
+
}
|
|
21602
|
+
}
|
|
21603
|
+
},
|
|
21604
|
+
search: {
|
|
21605
|
+
availability: {
|
|
21606
|
+
unavailable: {
|
|
21607
|
+
documentation: "Please refer to the orchestrator documentation for detailed setup instructions.",
|
|
21608
|
+
instructions: {
|
|
21609
|
+
checkDockerConfig: "If using Docker, make sure the environment variable is set in docker-compose.yml",
|
|
21610
|
+
checkVersion: "Ensure your orchestrator-core version supports search functionality",
|
|
21611
|
+
restartService: "Restart your service",
|
|
21612
|
+
setEnvironmentVariable: {
|
|
21613
|
+
after: " in your service environment variables",
|
|
21614
|
+
before: "Set "
|
|
21615
|
+
}
|
|
21616
|
+
},
|
|
21617
|
+
retryButton: "Retry Connection",
|
|
21618
|
+
title: "Search Service Not Available"
|
|
21619
|
+
}
|
|
21721
21620
|
},
|
|
21722
|
-
|
|
21723
|
-
|
|
21724
|
-
|
|
21621
|
+
page: {
|
|
21622
|
+
addGroup: "Add group",
|
|
21623
|
+
addNestedGroup: "Add nested group",
|
|
21624
|
+
addRule: "Add rule",
|
|
21625
|
+
anyPathOption: "Any path",
|
|
21626
|
+
componentsGroupLabel: "Components",
|
|
21627
|
+
dismiss: "Dismiss",
|
|
21628
|
+
emptyGroupDescription: "Add conditions or nested groups to build your filter.",
|
|
21629
|
+
emptyGroupTitle: "Empty group",
|
|
21630
|
+
enterNumber: "Enter number",
|
|
21631
|
+
enterValue: "Enter value",
|
|
21632
|
+
fieldLabel: "Field",
|
|
21633
|
+
fieldsGroupLabel: "Fields",
|
|
21634
|
+
fromDate: "From date",
|
|
21635
|
+
fromNumber: "From",
|
|
21636
|
+
groupLabel: "Group",
|
|
21637
|
+
hideFilters: "Hide filters",
|
|
21638
|
+
loadingSearchResults: "Loading search results...",
|
|
21639
|
+
maxNestingDepth: "Maximum nesting depth reached",
|
|
21640
|
+
nextPage: "Next page",
|
|
21641
|
+
noResults: "No Results",
|
|
21642
|
+
noResultsFound: "No results found for your search.",
|
|
21643
|
+
noResultsMessage: "No {entityType} found matching your search criteria.",
|
|
21644
|
+
noResultsSuggestions: "Try adjusting your search terms, removing filters, or searching for different keywords.",
|
|
21645
|
+
operatorLabel: "Operator",
|
|
21646
|
+
page: "Page",
|
|
21647
|
+
pathsCount: "{count} paths",
|
|
21648
|
+
previousPage: "Previous page",
|
|
21649
|
+
removeConditionAriaLabel: "Remove condition",
|
|
21650
|
+
removeGroup: "Remove group",
|
|
21651
|
+
removeRule: "Remove rule",
|
|
21652
|
+
resultsOnPage: "{resultCount} result(s) on this page",
|
|
21653
|
+
retrieval: "Retrieval",
|
|
21654
|
+
retrieverAuto: "Auto",
|
|
21655
|
+
retrieverFuzzy: "Fuzzy",
|
|
21656
|
+
retrieverHybrid: "Hybrid",
|
|
21657
|
+
retrieverSemantic: "Semantic",
|
|
21658
|
+
searchError: "Error",
|
|
21659
|
+
searchFieldsPlaceholder: "Search fields...",
|
|
21660
|
+
searchPlaceholder: "Search for {entityType}\u2026",
|
|
21661
|
+
searchResultsPagination: "Search results pagination",
|
|
21662
|
+
selectDateAndTime: "Select date",
|
|
21663
|
+
selectFieldFirst: "Select a field first",
|
|
21664
|
+
selectOrEnterValue: "Select or type value",
|
|
21665
|
+
selectSpecificPathPlaceholder: "Select a specific path...",
|
|
21666
|
+
showFilters: "Show filters",
|
|
21667
|
+
structuredFilters: "Structured filters",
|
|
21668
|
+
toDate: "To date",
|
|
21669
|
+
toNumber: "To",
|
|
21670
|
+
valueControlTo: "to",
|
|
21671
|
+
valueLabel: "Value",
|
|
21672
|
+
viewDetails: "View details"
|
|
21725
21673
|
}
|
|
21726
21674
|
},
|
|
21727
21675
|
settings: {
|
|
21728
21676
|
page: {
|
|
21677
|
+
aoStackStatus: "AO stack status",
|
|
21678
|
+
engineStatusTitle: "Workflow engine status",
|
|
21729
21679
|
flushButton: "Flush",
|
|
21730
21680
|
flushCacheSettingsTitle: "Flush cache settings",
|
|
21731
|
-
engineStatusTitle: "Workflow engine status",
|
|
21732
|
-
workerStatusTitle: "Worker status",
|
|
21733
21681
|
modifyEngine: "Modify the engine settings",
|
|
21682
|
+
noSettingsExposed: "No settings exposed by the backend, to enable this, please refer to the",
|
|
21683
|
+
numberOfQueuedJobs: "Number of queued jobs",
|
|
21684
|
+
numberOfRunningJobs: "Number of running jobs",
|
|
21685
|
+
numberOfWorkersOnline: "Number of workers online",
|
|
21734
21686
|
pauseEngine: "Pause workflow engine",
|
|
21687
|
+
resetTextSearchIndex: "Reset text search index",
|
|
21688
|
+
resetTextSearchIndexButton: "Reset",
|
|
21735
21689
|
runningProcesses: "Running processes",
|
|
21736
21690
|
selectSettings: "Select cache",
|
|
21691
|
+
settingsOverviewLink: "Settings Overview page in the documentation",
|
|
21737
21692
|
startEngine: "Start workflow engine",
|
|
21738
|
-
resetTextSearchIndex: "Reset text search index",
|
|
21739
|
-
resetTextSearchIndexButton: "Reset",
|
|
21740
21693
|
status: "Status",
|
|
21741
|
-
numberOfQueuedJobs: "Number of queued jobs",
|
|
21742
|
-
numberOfRunningJobs: "Number of running jobs",
|
|
21743
|
-
numberOfWorkersOnline: "Number of workers online",
|
|
21744
21694
|
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"
|
|
21695
|
+
workerStatusTitle: "Worker status"
|
|
21748
21696
|
},
|
|
21749
21697
|
tabs: {
|
|
21750
21698
|
actions: "Actions",
|
|
@@ -21752,21 +21700,11 @@ var en_GB_default = {
|
|
|
21752
21700
|
}
|
|
21753
21701
|
},
|
|
21754
21702
|
startPage: {
|
|
21755
|
-
myWorkflows: {
|
|
21756
|
-
buttonText: "Show my completed workflows",
|
|
21757
|
-
headerTitle: "My completed workflows",
|
|
21758
|
-
listTitle: "My most recent workflows"
|
|
21759
|
-
},
|
|
21760
21703
|
activeSubscriptions: {
|
|
21761
21704
|
buttonText: "Show all active subscriptions",
|
|
21762
21705
|
headerTitle: "Total active subscriptions",
|
|
21763
21706
|
listTitle: "Most recent subscriptions"
|
|
21764
21707
|
},
|
|
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
21708
|
activeWorkflows: {
|
|
21771
21709
|
buttonText: "Show all active workflows",
|
|
21772
21710
|
headerTitle: "Total active workflows",
|
|
@@ -21777,718 +21715,733 @@ var en_GB_default = {
|
|
|
21777
21715
|
headerTitle: "Total failed tasks",
|
|
21778
21716
|
listTitle: "Most recent failed tasks"
|
|
21779
21717
|
},
|
|
21718
|
+
myWorkflows: {
|
|
21719
|
+
buttonText: "Show my completed workflows",
|
|
21720
|
+
headerTitle: "My completed workflows",
|
|
21721
|
+
listTitle: "My most recent workflows"
|
|
21722
|
+
},
|
|
21723
|
+
outOfSyncSubscriptions: {
|
|
21724
|
+
buttonText: "Show all active out-of-sync subscriptions",
|
|
21725
|
+
headerTitle: "Total active out-of-sync subscriptions",
|
|
21726
|
+
listTitle: "Most recent active out-of-sync subscriptions"
|
|
21727
|
+
},
|
|
21780
21728
|
products: {
|
|
21781
21729
|
headerTitle: "Total number of products",
|
|
21782
21730
|
listTitle: "Total number of product instances"
|
|
21783
21731
|
}
|
|
21784
21732
|
},
|
|
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"
|
|
21733
|
+
subscriptions: {
|
|
21734
|
+
detail: {
|
|
21735
|
+
actions: {
|
|
21736
|
+
actions: "Actions",
|
|
21737
|
+
lockedBySubscriptions: "This action is locked by the following subscriptions:",
|
|
21738
|
+
modify: "Modify workflow",
|
|
21739
|
+
reconcile: "Reconcile workflow",
|
|
21740
|
+
subscription: {
|
|
21741
|
+
insufficient_workflow_permissions: "Insufficient user permissions to run this workflow",
|
|
21742
|
+
no_modify_deleted_related_objects: "This subscription can not be modified because it contains references to other systems that are deleted.",
|
|
21743
|
+
no_modify_in_use_by_subscription: "This subscription can not be {action} as it is used in other subscriptions:",
|
|
21744
|
+
no_modify_invalid_status: "This subscription can not be modified because of the status: {status}. Only subscriptions with status {usable_when} can be {action}.",
|
|
21745
|
+
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:",
|
|
21746
|
+
no_modify_workflow: "This subscription can not be modified as the product has no modify workflows.",
|
|
21747
|
+
no_termination_workflow: "This subscription can not be terminated as the product has no termination workflows.",
|
|
21748
|
+
no_validate_workflow: "This subscription can not be validated as the product has no validate workflows.",
|
|
21749
|
+
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.",
|
|
21750
|
+
relations_not_in_sync: "This subscription can not be modified because some related subscriptions are not in-sync.\n\nLocked subscriptions:",
|
|
21751
|
+
running_process: "This action cannot be started because this subscription already has a running process or task."
|
|
21810
21752
|
},
|
|
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?"
|
|
21753
|
+
tasks: "Tasks",
|
|
21754
|
+
terminate: "Terminate workflow"
|
|
21826
21755
|
},
|
|
21827
|
-
|
|
21828
|
-
|
|
21829
|
-
|
|
21830
|
-
|
|
21831
|
-
|
|
21756
|
+
blockTitleFixedInputs: "Fixed inputs",
|
|
21757
|
+
blockTitleProductInfo: "Product Info",
|
|
21758
|
+
blockTitleSubscriptionDetails: "Subscription details",
|
|
21759
|
+
created: "Created",
|
|
21760
|
+
ctaSelectProductBlock: "Select one or more product blocks to view their details",
|
|
21761
|
+
customer: "Customer",
|
|
21762
|
+
customerDescriptions: "Customer descriptions",
|
|
21763
|
+
customerUuid: "Customer UUID",
|
|
21764
|
+
description: "Description",
|
|
21765
|
+
endDate: "End date",
|
|
21766
|
+
hideAll: "Hide all",
|
|
21767
|
+
hideDetails: "Hide details",
|
|
21768
|
+
hideTerminatedRelatedSubscriptions: "Hide terminated subscriptions",
|
|
21769
|
+
id: "ID",
|
|
21770
|
+
inUseByRelations: "In-use by subscription(s)",
|
|
21771
|
+
insync: "In sync",
|
|
21772
|
+
lastRunValidation: "Most recent validate",
|
|
21773
|
+
metadata: "Metadata",
|
|
21774
|
+
name: "Name",
|
|
21775
|
+
noProductBlockSelected: "No product block selected",
|
|
21776
|
+
noRelatedSubscriptions: "No related subscriptions found",
|
|
21777
|
+
noValidateWorkflows: "No validate workflows have been run recently",
|
|
21778
|
+
note: "Note",
|
|
21779
|
+
ownerSubscriptionId: "Owner subscription ID",
|
|
21780
|
+
processDetail: {
|
|
21781
|
+
id: "ID",
|
|
21782
|
+
note: "Note",
|
|
21783
|
+
startedAt: "Started at",
|
|
21784
|
+
startedBy: "Started by",
|
|
21785
|
+
status: "Status"
|
|
21832
21786
|
},
|
|
21833
|
-
|
|
21834
|
-
|
|
21835
|
-
|
|
21836
|
-
|
|
21837
|
-
|
|
21838
|
-
|
|
21839
|
-
|
|
21840
|
-
|
|
21841
|
-
|
|
21787
|
+
productBlocks: "Product blocks",
|
|
21788
|
+
productName: "Product name",
|
|
21789
|
+
productType: "Product type",
|
|
21790
|
+
see: "See",
|
|
21791
|
+
selectByNameButtonText: "Select by name",
|
|
21792
|
+
selectByNameTitle: "Select product blocks by name",
|
|
21793
|
+
self: "Current subscription",
|
|
21794
|
+
setInSync: "Set in Sync",
|
|
21795
|
+
setInSyncFailed: {
|
|
21796
|
+
text: "The subscription could not be set in sync. Please try again later.",
|
|
21797
|
+
title: "Set in sync failed"
|
|
21798
|
+
},
|
|
21799
|
+
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.",
|
|
21800
|
+
setInSyncSuccess: {
|
|
21801
|
+
text: "The subscription was successfully set in sync.",
|
|
21802
|
+
title: "Subscription set in sync"
|
|
21842
21803
|
},
|
|
21843
|
-
|
|
21844
|
-
|
|
21845
|
-
|
|
21846
|
-
|
|
21804
|
+
showAll: "Show all",
|
|
21805
|
+
showDetails: "Show details",
|
|
21806
|
+
startDate: "Start date",
|
|
21807
|
+
status: "Status",
|
|
21808
|
+
subscriptionId: "Subscription ID",
|
|
21809
|
+
subscriptionInstanceId: "Instance ID",
|
|
21810
|
+
subscriptionIsInSync: "Subscription is in sync",
|
|
21811
|
+
tabs: {
|
|
21812
|
+
general: "General",
|
|
21813
|
+
relatedSubscriptions: "Related subscriptions",
|
|
21814
|
+
serviceConfiguration: "Service configuration",
|
|
21815
|
+
workflows: "Workflows"
|
|
21847
21816
|
},
|
|
21848
|
-
|
|
21849
|
-
|
|
21850
|
-
|
|
21817
|
+
tag: "Tag",
|
|
21818
|
+
title: "Subscriptions",
|
|
21819
|
+
workflowsTab: {
|
|
21820
|
+
startWithNewestLabel: "Start with newest first",
|
|
21821
|
+
startWithOldestLabel: "Start with oldest first"
|
|
21851
21822
|
}
|
|
21823
|
+
},
|
|
21824
|
+
index: {
|
|
21825
|
+
customerFullname: "Customer",
|
|
21826
|
+
customerId: "Customer ID",
|
|
21827
|
+
customerShortcode: "Customer abbr",
|
|
21828
|
+
description: "Description",
|
|
21829
|
+
endDate: "End date",
|
|
21830
|
+
id: "ID",
|
|
21831
|
+
insync: "In Sync",
|
|
21832
|
+
metadata: "Metadata",
|
|
21833
|
+
note: "Note",
|
|
21834
|
+
product: "Product",
|
|
21835
|
+
startDate: "Start date",
|
|
21836
|
+
status: "Status",
|
|
21837
|
+
tag: "Product tag"
|
|
21838
|
+
},
|
|
21839
|
+
tabs: {
|
|
21840
|
+
active: "Active",
|
|
21841
|
+
all: "All",
|
|
21842
|
+
terminated: "Terminated",
|
|
21843
|
+
transient: "Transient"
|
|
21852
21844
|
}
|
|
21853
21845
|
},
|
|
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
|
-
},
|
|
21846
|
+
tasks: {
|
|
21871
21847
|
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"
|
|
21848
|
+
rerunAll: "Re-try all tasks",
|
|
21849
|
+
rerunAllQuestion: "Are you sure you want to re-try all failed tasks?",
|
|
21850
|
+
taskName: "Task"
|
|
21930
21851
|
},
|
|
21931
21852
|
tabs: {
|
|
21932
|
-
|
|
21933
|
-
|
|
21934
|
-
|
|
21935
|
-
|
|
21853
|
+
active: "Active",
|
|
21854
|
+
completed: "Completed"
|
|
21855
|
+
}
|
|
21856
|
+
},
|
|
21857
|
+
workflowGuide: {
|
|
21858
|
+
hide: "Hide user guide",
|
|
21859
|
+
noGuideAvailable: "No user guide is available for this workflow/task",
|
|
21860
|
+
show: "Show user guide"
|
|
21861
|
+
},
|
|
21862
|
+
workflows: {
|
|
21863
|
+
index: {
|
|
21864
|
+
title: "Workflows"
|
|
21865
|
+
},
|
|
21866
|
+
tabs: {
|
|
21867
|
+
active: "Active",
|
|
21868
|
+
completed: "Completed"
|
|
21936
21869
|
}
|
|
21937
21870
|
}
|
|
21938
21871
|
};
|
|
21939
21872
|
|
|
21940
21873
|
// src/messages/nl-NL.json
|
|
21941
21874
|
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
21875
|
common: {
|
|
21975
|
-
|
|
21876
|
+
applyFilter: "Pas filter toe",
|
|
21877
|
+
createFilter: "Filter",
|
|
21976
21878
|
deselect: "Deselecteer",
|
|
21977
|
-
close: "Sluiten",
|
|
21978
21879
|
editColumns: "Wijzig kolommen",
|
|
21979
|
-
|
|
21880
|
+
errorMessage: "Er is een fout opgetreden",
|
|
21881
|
+
export: "Exporteren",
|
|
21882
|
+
insyncFalse: "out-of-sync",
|
|
21883
|
+
insyncTrue: "in-sync",
|
|
21884
|
+
loadMore: "Meer laden",
|
|
21980
21885
|
loading: "Laden",
|
|
21981
21886
|
newSubscription: "Nieuwe subscription",
|
|
21982
21887
|
newTask: "Nieuwe task",
|
|
21983
21888
|
noFailedTasks: "Geen gefaalde taken!",
|
|
21984
21889
|
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>',
|
|
21890
|
+
removeFilter: "Verwijder filter",
|
|
21995
21891
|
retrieval: "Retrieval",
|
|
21996
21892
|
retrieverAuto: "Auto",
|
|
21997
21893
|
retrieverFuzzy: "Fuzzy",
|
|
21998
|
-
retrieverSemantic: "Semantic",
|
|
21999
21894
|
retrieverHybrid: "Hybride",
|
|
22000
|
-
|
|
22001
|
-
|
|
22002
|
-
|
|
22003
|
-
|
|
22004
|
-
|
|
21895
|
+
retrieverSemantic: "Semantic",
|
|
21896
|
+
search: "Zoeken",
|
|
21897
|
+
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>',
|
|
21898
|
+
searchModalTitle: "Zoekwoorden opties",
|
|
21899
|
+
showAllColumnsInDetailView: "Toon alle kolommen in detailweergave",
|
|
21900
|
+
tableSettings: "Tabel instellingen",
|
|
21901
|
+
unauthorizedPage: "Niet geautoriseerd om deze pagina te bekijken",
|
|
21902
|
+
unknownError: "Onbekende fout"
|
|
22005
21903
|
},
|
|
22006
21904
|
confirmationDialog: {
|
|
22007
|
-
title: "Graag bevestigen",
|
|
22008
|
-
confirm: "Bevestigen",
|
|
22009
21905
|
cancel: "Annuleren",
|
|
22010
|
-
|
|
22011
|
-
|
|
22012
|
-
|
|
22013
|
-
|
|
21906
|
+
confirm: "Bevestigen",
|
|
21907
|
+
title: "Graag bevestigen"
|
|
21908
|
+
},
|
|
21909
|
+
errors: {
|
|
21910
|
+
failedDeletingScheduledTask: "Fout bij het verwijderen de scheduled task",
|
|
21911
|
+
invalidQueryParts: "De query bevat ongeldige onderdelen",
|
|
21912
|
+
notAllResultsExported: "De huidige query resulteert in {totalResults} resultaten. Alleen de eerste {maximumExportedResults} resultaten worden geexporteerd",
|
|
21913
|
+
notAllResultsExportedTitle: "Niet alle items geexporteerd",
|
|
21914
|
+
notAllowedWhenEngineIsNotRunningMessage: "Deze actie is niet toegestaan als de Workflow Engine niet is gestart.",
|
|
21915
|
+
notAllowedWhenEngineIsNotRunningTitle: "Workflow Engine is niet gestart.",
|
|
21916
|
+
retrieve_stored_settings: "Er ging iets fout tijdens het laden van de instellingen. Hersteld naar standaard waardes",
|
|
21917
|
+
retrieve_stored_settings_title: "Fout tijdens het ophalen van instellingen."
|
|
21918
|
+
},
|
|
21919
|
+
hamburgerMenu: {
|
|
21920
|
+
aoStatusPage: "A&O applicatie status pagina",
|
|
21921
|
+
logout: "Logout",
|
|
21922
|
+
openMenu: "Open menu",
|
|
21923
|
+
softwareVersions: "Software Versies",
|
|
21924
|
+
support: "Support"
|
|
21925
|
+
},
|
|
21926
|
+
main: {
|
|
21927
|
+
ariaLabelCurrentPage: "Huidige pagina",
|
|
21928
|
+
ariaLabelToggleSideMenu: "Toon/Verberg menu",
|
|
21929
|
+
darkMode: "Dark mode",
|
|
21930
|
+
incompatibleVersion: "Incompatibele versie",
|
|
21931
|
+
incompatibleVersionText: "De versie van de WFO UI is incompatibel met de version van orchestrator-core.",
|
|
21932
|
+
lightMode: "Light mode",
|
|
21933
|
+
metadata: "Metadata",
|
|
21934
|
+
metadataProductblocks: "Product blocks",
|
|
21935
|
+
metadataProducts: "Products",
|
|
21936
|
+
metadataResourceTypes: "Resource types",
|
|
21937
|
+
metadataScheduledTasks: "Scheduled tasks",
|
|
21938
|
+
metadataTasks: "Taken",
|
|
21939
|
+
metadataWorkflows: "Workflows",
|
|
21940
|
+
minimumOrchestratorCoreVersion: "Minimale versie van orchestrator-core",
|
|
21941
|
+
mobileTitle: "Hoofdmenu",
|
|
21942
|
+
numberOfRows: "Aantal rijen",
|
|
21943
|
+
resetToDefault: "Reset naar standaard",
|
|
21944
|
+
savePreferences: "Voorkeuren opslaan",
|
|
21945
|
+
settings: "Settings",
|
|
21946
|
+
start: "Start",
|
|
21947
|
+
subscriptions: "Subscriptions",
|
|
21948
|
+
tableSettings: "Tabel instellingen",
|
|
21949
|
+
tasks: "Taken",
|
|
21950
|
+
websocketConnected: "De pagina ontvangt live updates van de server",
|
|
21951
|
+
websocketDisconnected: "De websocket verbinding is verbroken, klik op het icoon of ververs de pagina.",
|
|
21952
|
+
welcome: "Welkom",
|
|
21953
|
+
workflows: "Workflows"
|
|
22014
21954
|
},
|
|
22015
|
-
|
|
22016
|
-
|
|
21955
|
+
metadata: {
|
|
21956
|
+
productBlocks: {
|
|
21957
|
+
createdAt: "Aangemaakt",
|
|
21958
|
+
dependingProductBlocks: "Onderliggende product blocks",
|
|
21959
|
+
description: "Product block beschrijving",
|
|
21960
|
+
endDate: "Einddatum",
|
|
21961
|
+
id: "ID",
|
|
21962
|
+
name: "Product block",
|
|
21963
|
+
resourceTypes: "Resource types",
|
|
21964
|
+
status: "Status",
|
|
21965
|
+
tag: "Tag"
|
|
21966
|
+
},
|
|
21967
|
+
products: {
|
|
21968
|
+
createdAt: "Aangemaakt",
|
|
21969
|
+
description: "Product beschrijving",
|
|
21970
|
+
fixedInputs: "Fixed inputs",
|
|
21971
|
+
id: "ID",
|
|
21972
|
+
name: "Product",
|
|
21973
|
+
productBlocks: "Product blocks",
|
|
21974
|
+
productType: "Type",
|
|
21975
|
+
status: "Status",
|
|
21976
|
+
tag: "Product tag"
|
|
21977
|
+
},
|
|
21978
|
+
resourceTypes: {
|
|
21979
|
+
description: "Resource type beschrijving",
|
|
21980
|
+
resourceId: "ID",
|
|
21981
|
+
type: "Resource type",
|
|
21982
|
+
usedInProductBlocks: "Gebruikt in product blocks"
|
|
21983
|
+
},
|
|
21984
|
+
scheduledTasks: {
|
|
21985
|
+
addSchedule: "Plan een taak",
|
|
21986
|
+
ariaLabelDeleteButton: "Schedule verwijderen",
|
|
21987
|
+
deleteConfirmationQuestion: "Bevestig de verwijdering van het schedule",
|
|
21988
|
+
nextRuntime: "Volgende uitvoer",
|
|
21989
|
+
schedule: "Schedule",
|
|
21990
|
+
task: "Taak",
|
|
21991
|
+
taskDescription: "Taak beschrijving"
|
|
21992
|
+
},
|
|
21993
|
+
tabs: {
|
|
21994
|
+
productBlocks: "Product blocks",
|
|
21995
|
+
products: "Producten",
|
|
21996
|
+
resourceTypes: "Resource types",
|
|
21997
|
+
scheduledTasks: "Scheduled tasks",
|
|
21998
|
+
tasks: "Taken",
|
|
21999
|
+
workflows: "Workflows"
|
|
22000
|
+
},
|
|
22001
|
+
tasks: {
|
|
22002
|
+
addSchedule: "Plan een taak",
|
|
22003
|
+
createdAt: "Aangemaakt",
|
|
22004
|
+
description: "Taak beschrijving",
|
|
22005
|
+
name: "Taak",
|
|
22006
|
+
productTags: "Product tags",
|
|
22007
|
+
scheduled: "Schedule",
|
|
22008
|
+
target: "Target",
|
|
22009
|
+
workflowId: "ID"
|
|
22010
|
+
},
|
|
22011
|
+
title: "Metadata",
|
|
22012
|
+
workflows: {
|
|
22013
|
+
createdAt: "Aangemaakt",
|
|
22014
|
+
description: "Workflow beschrijving",
|
|
22015
|
+
name: "Workflow",
|
|
22016
|
+
productTags: "Product tags",
|
|
22017
|
+
target: "Target",
|
|
22018
|
+
workflowId: "ID"
|
|
22019
|
+
}
|
|
22017
22020
|
},
|
|
22018
|
-
|
|
22019
|
-
|
|
22020
|
-
|
|
22021
|
-
|
|
22022
|
-
|
|
22023
|
-
|
|
22024
|
-
|
|
22025
|
-
|
|
22026
|
-
|
|
22021
|
+
processes: {
|
|
22022
|
+
delta: {
|
|
22023
|
+
continuityAboveBelow: "Continuity above below",
|
|
22024
|
+
continuityWithin: "Continuity within",
|
|
22025
|
+
fullScreen: "Full-screen mode",
|
|
22026
|
+
fullScreenExit: "Exit full-screen mode",
|
|
22027
|
+
title: "Subscription delta"
|
|
22028
|
+
},
|
|
22029
|
+
detail: {
|
|
22030
|
+
abort: "Stop",
|
|
22031
|
+
abortTaskQuestion: "Weet je zeker dat je de {workflowName} taak wilt stoppen?",
|
|
22032
|
+
abortWorkflowQuestion: "Weet je zeker dat je de {workflowName} workflow wilt stoppen?",
|
|
22033
|
+
customer: "Customer",
|
|
22034
|
+
delete: "Verwijder",
|
|
22035
|
+
deleteQuestion: "Weet je zeker dat je de {workflowName} taak wilt verwijderen?",
|
|
22036
|
+
lastStep: "Huidige stap",
|
|
22037
|
+
lastUpdate: "Laatste update",
|
|
22038
|
+
openWorkflowTaskInfo: "open workflow-/taakinformatie op een nieuw tabblad",
|
|
22039
|
+
relatedSubscriptions: "Gerelateerde subscriptions",
|
|
22040
|
+
retry: "Probeer opnieuw",
|
|
22041
|
+
retryTaskQuestion: "Weet je zeker dat je de {workflowName} taak opnieuw wilt proberen?",
|
|
22042
|
+
retryWorkflowQuestion: "Weet je zeker dat je de {workflowName} workflow opnieuw wilt proberen?",
|
|
22043
|
+
startedBy: "Gestart door",
|
|
22044
|
+
startedOn: "Gestart op",
|
|
22045
|
+
status: "Status"
|
|
22046
|
+
},
|
|
22047
|
+
index: {
|
|
22048
|
+
assignee: "Assignee",
|
|
22049
|
+
createdBy: "Aangemaakt door",
|
|
22050
|
+
customer: "Klant",
|
|
22051
|
+
customerAbbreviation: "Klantafkorting",
|
|
22052
|
+
lastModified: "Aangepast op",
|
|
22053
|
+
note: "Note",
|
|
22054
|
+
processId: "Proces ID",
|
|
22055
|
+
product: "Product",
|
|
22056
|
+
productTag: "Product tag",
|
|
22057
|
+
showAllRelatedSubscriptions: "Toon alle gerelateerde subscriptions",
|
|
22058
|
+
started: "Starttijd",
|
|
22059
|
+
status: "Status",
|
|
22060
|
+
step: "Huidige stap",
|
|
22061
|
+
subscriptions: "Subscriptions",
|
|
22062
|
+
workflowName: "Workflow naam",
|
|
22063
|
+
workflowTarget: "Target"
|
|
22064
|
+
},
|
|
22065
|
+
steps: {
|
|
22066
|
+
codeView: {
|
|
22067
|
+
json: "JSON",
|
|
22068
|
+
raw: "Raw",
|
|
22069
|
+
table: "Table"
|
|
22070
|
+
},
|
|
22071
|
+
collapseAll: "klap alles in",
|
|
22072
|
+
duration: "Looptijd",
|
|
22073
|
+
expandAll: "klap alles uit",
|
|
22074
|
+
hideDelta: "Verberg subscription delta",
|
|
22075
|
+
hideTraceback: "Verberg traceback",
|
|
22076
|
+
showDelta: "Toon subscription delta",
|
|
22077
|
+
showTraceback: "Toon traceback",
|
|
22078
|
+
submitTaskFormLabel: "Verstuur het formulier om deze taak te starten",
|
|
22079
|
+
submitWorkflowFormLabel: "Verstuur het formulier om deze workflow te starten",
|
|
22080
|
+
taskSteps: "Taak stappen",
|
|
22081
|
+
traceback: "Traceback",
|
|
22082
|
+
userInput: "Invoer gebruiker",
|
|
22083
|
+
viewOptions: "Opties",
|
|
22084
|
+
workflowSteps: "Workflow stappen"
|
|
22085
|
+
}
|
|
22027
22086
|
},
|
|
22028
22087
|
pydanticForms: {
|
|
22029
22088
|
userInputForm: {
|
|
22030
22089
|
cancel: "Annuleren",
|
|
22031
|
-
|
|
22032
|
-
previous: "Vorige",
|
|
22090
|
+
inputFieldsHaveValidationErrors: "{nrOfValidationErrors} input veld(en) hebben validatiefouten",
|
|
22033
22091
|
next: "Volgende",
|
|
22034
|
-
|
|
22092
|
+
preconditionFailedFallback: "Aan een voorwaarde voor het starten van deze workflow is niet voldaan.",
|
|
22093
|
+
preconditionFailedTitle: "Deze workflow kan op dit moment niet worden gestart",
|
|
22094
|
+
previous: "Vorige",
|
|
22035
22095
|
previousQuestion: "Weet je zeker dat je deze pagina wilt verlaten? Ingevulde velden worden niet opgeslagen",
|
|
22036
|
-
|
|
22037
|
-
resumeTask: "Hervat task",
|
|
22096
|
+
resumeTask: "Hervat taak",
|
|
22038
22097
|
resumeWorkflow: "Hervat workflow",
|
|
22039
|
-
|
|
22040
|
-
|
|
22041
|
-
preconditionFailedFallback: "Aan een voorwaarde voor het starten van deze workflow is niet voldaan."
|
|
22098
|
+
startTask: "Start taak",
|
|
22099
|
+
startWorkflow: "Start workflow"
|
|
22042
22100
|
},
|
|
22043
22101
|
widgets: {
|
|
22044
|
-
customer: {
|
|
22045
|
-
placeholder: "Zoek en selecteer een klant...",
|
|
22046
|
-
loading: "Klanten laden..."
|
|
22047
|
-
},
|
|
22048
22102
|
contactPersonName: {
|
|
22049
22103
|
placeholder: "Zoek en voeg contactpersonen toe..."
|
|
22050
22104
|
},
|
|
22051
22105
|
cron: {
|
|
22052
|
-
|
|
22053
|
-
|
|
22054
|
-
|
|
22106
|
+
allowedValues: "toegestane waarden",
|
|
22107
|
+
alternativeSingleValues: "alternatieve losse waarden",
|
|
22108
|
+
anyValue: "elke waarde",
|
|
22055
22109
|
dayOfMonth: "dag (maand)",
|
|
22056
|
-
month: "maand",
|
|
22057
22110
|
dayOfWeek: "dag (week)",
|
|
22058
|
-
|
|
22059
|
-
|
|
22111
|
+
hour: "uur",
|
|
22112
|
+
invalidExpression: "Ongeldige cron-expressie: {error}",
|
|
22113
|
+
minute: "minuut",
|
|
22114
|
+
month: "maand",
|
|
22115
|
+
nextOccurrences: "Volgende: {dates}",
|
|
22116
|
+
possibleValues: "Mogelijke waarden voor dit veld",
|
|
22060
22117
|
rangeOfValues: "bereik van waarden",
|
|
22118
|
+
second: "seconde",
|
|
22061
22119
|
stepValues: "stapwaarden",
|
|
22062
|
-
allowedValues: "toegestane waarden",
|
|
22063
|
-
alternativeSingleValues: "alternatieve losse waarden",
|
|
22064
22120
|
sundayNonStandard: "zondag (niet-standaard)",
|
|
22065
|
-
|
|
22066
|
-
|
|
22067
|
-
|
|
22121
|
+
valueListSeparator: "scheidingsteken voor waardenlijst"
|
|
22122
|
+
},
|
|
22123
|
+
customer: {
|
|
22124
|
+
loading: "Klanten laden...",
|
|
22125
|
+
placeholder: "Zoek en selecteer een klant..."
|
|
22126
|
+
},
|
|
22127
|
+
fileUpload: {
|
|
22128
|
+
errorUploading: "Fout bij het upoaden van het bestand!",
|
|
22129
|
+
fileToBig: "Bestand te groot. Maximum bestand: {fileSizeLimit}",
|
|
22130
|
+
initialPromptText: "Selecteer een bestand of sleep het hierheen",
|
|
22131
|
+
invalidFiletype: "Ongeldig bestandstype!",
|
|
22132
|
+
supportedFileTypes: "Ondersteunde bestandstypen: pdf"
|
|
22068
22133
|
},
|
|
22069
22134
|
ipvAnyNetworkField: {
|
|
22070
22135
|
manuallySelectedPrefix: "Manually selected prefix"
|
|
22071
22136
|
},
|
|
22072
|
-
node_select: {
|
|
22073
|
-
nodes_loading: "Nodes laden...",
|
|
22074
|
-
select_node: "Selecteer node",
|
|
22075
|
-
no_nodes_placeholder: "Geen nodes"
|
|
22076
|
-
},
|
|
22077
22137
|
locationCode: {
|
|
22078
22138
|
placeholder: "Zoek en selecteer een locatie code..."
|
|
22079
22139
|
},
|
|
22140
|
+
nodePort: {
|
|
22141
|
+
loadingNodes: "Node subscriptions laden...",
|
|
22142
|
+
loadingPorts: "IMS poorten laden...",
|
|
22143
|
+
noPorts: "GEEN POORTEN GEVONDEN VOOR DEZE NODE",
|
|
22144
|
+
selectNode: "Selecteer node",
|
|
22145
|
+
selectNodeFirst: "Selecteer eerst een node",
|
|
22146
|
+
selectPort: "Selecteer poort"
|
|
22147
|
+
},
|
|
22148
|
+
node_select: {
|
|
22149
|
+
no_nodes_placeholder: "Geen nodes",
|
|
22150
|
+
nodes_loading: "Nodes laden...",
|
|
22151
|
+
select_node: "Selecteer node"
|
|
22152
|
+
},
|
|
22080
22153
|
product: {
|
|
22081
22154
|
placeholder: "Kies product"
|
|
22082
22155
|
},
|
|
22083
22156
|
select: {
|
|
22084
22157
|
placeholder: "Zoek en selecteer een waarde..."
|
|
22085
22158
|
},
|
|
22159
|
+
subscription: {
|
|
22160
|
+
loading: "Subscriptions ophalen...",
|
|
22161
|
+
placeholder: "Kies een subscription"
|
|
22162
|
+
},
|
|
22086
22163
|
vlan: {
|
|
22087
|
-
|
|
22088
|
-
|
|
22164
|
+
allPortsAvailable: "Deze service port heeft (nog) geen VLANs in gebruik.",
|
|
22165
|
+
invalidVlan: "Invalid VLAN - Voer een range of geldige [2-4094] VLAN integers in, bijvoorbeeld: '2, 5-6, 1048-1052'",
|
|
22166
|
+
loadingIms: "VLAN informatie aan het laden uit IMS...",
|
|
22089
22167
|
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
22168
|
nsiNoPortsAvailable: "Deze service port heeft (nog) geen beschikbare NSI reserved VLANs.",
|
|
22092
|
-
|
|
22169
|
+
nsiVlansAvailable: "Beschikbare NSI VLAN ranges voor deze service port: {vlans}",
|
|
22093
22170
|
placeholder: "Voer een geldige VLAN range in...",
|
|
22094
22171
|
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
22172
|
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"
|
|
22173
|
+
untaggedPortInUse: "Deze service port is al in gebruik en kan niet worden gekozen",
|
|
22174
|
+
vlansInUse: "VLAN ranges in gebruik bij deze service port: {vlans}",
|
|
22175
|
+
vlansInUseError: "VLAN range {vlans} is al in gebruik door geslecteerde service port"
|
|
22118
22176
|
}
|
|
22119
22177
|
}
|
|
22120
22178
|
},
|
|
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"
|
|
22179
|
+
search: {
|
|
22180
|
+
availability: {
|
|
22181
|
+
unavailable: {
|
|
22182
|
+
documentation: "Raadpleeg de orchestrator documentatie voor gedetailleerde installatie-instructies.",
|
|
22183
|
+
instructions: {
|
|
22184
|
+
checkDockerConfig: "Zorg er bij gebruik van Docker voor dat de environment variable is ingesteld in docker-compose.yml",
|
|
22185
|
+
checkVersion: "Controleer of je orchestrator-core versie search-functionaliteit ondersteunt",
|
|
22186
|
+
restartService: "Herstart je service",
|
|
22187
|
+
setEnvironmentVariable: {
|
|
22188
|
+
after: " in de environment variables van je service",
|
|
22189
|
+
before: "Zet "
|
|
22190
|
+
}
|
|
22191
|
+
},
|
|
22192
|
+
retryButton: "Opnieuw verbinden",
|
|
22193
|
+
title: "Search service niet beschikbaar"
|
|
22271
22194
|
}
|
|
22272
22195
|
},
|
|
22273
|
-
|
|
22274
|
-
|
|
22275
|
-
|
|
22276
|
-
|
|
22277
|
-
|
|
22278
|
-
|
|
22196
|
+
page: {
|
|
22197
|
+
addGroup: "Groep toevoegen",
|
|
22198
|
+
addNestedGroup: "Geneste groep toevoegen",
|
|
22199
|
+
addRule: "Regel toevoegen",
|
|
22200
|
+
anyPathOption: "Elk pad",
|
|
22201
|
+
componentsGroupLabel: "Componenten",
|
|
22202
|
+
dismiss: "Sluiten",
|
|
22203
|
+
emptyGroupDescription: "Voeg condities of geneste groepen toe om je filter op te bouwen.",
|
|
22204
|
+
emptyGroupTitle: "Lege groep",
|
|
22205
|
+
enterNumber: "Voer een getal in",
|
|
22206
|
+
enterValue: "Voer een waarde in",
|
|
22207
|
+
fieldLabel: "Veld",
|
|
22208
|
+
fieldsGroupLabel: "Velden",
|
|
22209
|
+
fromDate: "Vanaf datum",
|
|
22210
|
+
fromNumber: "Van",
|
|
22211
|
+
groupLabel: "Groep",
|
|
22212
|
+
hideFilters: "Verberg filters",
|
|
22213
|
+
loadingSearchResults: "Zoekresultaten laden...",
|
|
22214
|
+
maxNestingDepth: "Maximale nesting-diepte bereikt",
|
|
22215
|
+
nextPage: "Volgende pagina",
|
|
22216
|
+
noResults: "Geen resultaten",
|
|
22217
|
+
noResultsFound: "Geen resultaten gevonden voor je zoekopdracht.",
|
|
22218
|
+
noResultsMessage: "Geen {entityType} gevonden die voldoen aan je zoekcriteria.",
|
|
22219
|
+
noResultsSuggestions: "Probeer je zoektermen aan te passen, filters te verwijderen of op andere trefwoorden te zoeken.",
|
|
22220
|
+
operatorLabel: "Operator",
|
|
22221
|
+
page: "Pagina",
|
|
22222
|
+
pathsCount: "{count} paden",
|
|
22223
|
+
previousPage: "Vorige pagina",
|
|
22224
|
+
removeConditionAriaLabel: "Conditie verwijderen",
|
|
22225
|
+
removeGroup: "Groep verwijderen",
|
|
22226
|
+
removeRule: "Regel verwijderen",
|
|
22227
|
+
resultsOnPage: "{resultCount} resulta(a)t(en) op deze pagina",
|
|
22228
|
+
retrieval: "Retrieval",
|
|
22229
|
+
retrieverAuto: "Auto",
|
|
22230
|
+
retrieverFuzzy: "Fuzzy",
|
|
22231
|
+
retrieverHybrid: "Hybride",
|
|
22232
|
+
retrieverSemantic: "Semantic",
|
|
22233
|
+
searchError: "Fout",
|
|
22234
|
+
searchFieldsPlaceholder: "Zoek velden...",
|
|
22235
|
+
searchPlaceholder: "Zoek naar {entityType}\u2026",
|
|
22236
|
+
searchResultsPagination: "Paginering zoekresultaten",
|
|
22237
|
+
selectDateAndTime: "Selecteer datum",
|
|
22238
|
+
selectFieldFirst: "Selecteer eerst een veld",
|
|
22239
|
+
selectOrEnterValue: "Selecteer of typ een waarde",
|
|
22240
|
+
selectSpecificPathPlaceholder: "Selecteer een specifiek pad...",
|
|
22241
|
+
showFilters: "Toon filters",
|
|
22242
|
+
structuredFilters: "Gestructureerde filters",
|
|
22243
|
+
toDate: "Tot datum",
|
|
22244
|
+
toNumber: "Tot",
|
|
22245
|
+
valueControlTo: "tot",
|
|
22246
|
+
valueLabel: "Waarde",
|
|
22247
|
+
viewDetails: "Bekijk details"
|
|
22279
22248
|
}
|
|
22280
22249
|
},
|
|
22281
|
-
|
|
22282
|
-
|
|
22283
|
-
|
|
22284
|
-
|
|
22250
|
+
settings: {
|
|
22251
|
+
page: {
|
|
22252
|
+
aoStackStatus: "AO stack status",
|
|
22253
|
+
engineStatusTitle: "Workflow engine status",
|
|
22254
|
+
flushButton: "Flush",
|
|
22255
|
+
flushCacheSettingsTitle: "Flush cache instellingen",
|
|
22256
|
+
modifyEngine: "Wijzig engine status",
|
|
22257
|
+
noSettingsExposed: "Er zijn geen instellingen beschikbaar vanuit de backend. Om dit in te schakelen, raadpleeg de ",
|
|
22258
|
+
numberOfQueuedJobs: "Aantal queued jobs",
|
|
22259
|
+
numberOfRunningJobs: "Aantal running jobs",
|
|
22260
|
+
numberOfWorkersOnline: "Aantal workers online",
|
|
22261
|
+
pauseEngine: "Pauseer workflow engine",
|
|
22262
|
+
resetTextSearchIndex: "Reset text search index",
|
|
22263
|
+
resetTextSearchIndexButton: "Reset",
|
|
22264
|
+
runningProcesses: "Lopende processen",
|
|
22265
|
+
selectSettings: "Kies cache",
|
|
22266
|
+
settingsOverviewLink: "pagina Instellingenoverzicht in de documentatie",
|
|
22267
|
+
startEngine: "Start workflow engine",
|
|
22268
|
+
status: "Status",
|
|
22269
|
+
viewStatusPage: "Bekijk AO status pagina",
|
|
22270
|
+
workerStatusTitle: "Worker status"
|
|
22285
22271
|
},
|
|
22286
|
-
|
|
22287
|
-
|
|
22272
|
+
tabs: {
|
|
22273
|
+
actions: "Acties",
|
|
22274
|
+
envSettings: "Environment Settings"
|
|
22288
22275
|
}
|
|
22289
22276
|
},
|
|
22290
|
-
|
|
22291
|
-
|
|
22292
|
-
|
|
22293
|
-
|
|
22294
|
-
|
|
22295
|
-
all: "Alles"
|
|
22277
|
+
startPage: {
|
|
22278
|
+
activeSubscriptions: {
|
|
22279
|
+
buttonText: "Toon alle actieve subscriptions",
|
|
22280
|
+
headerTitle: "Totaal aantal actieve subscriptions",
|
|
22281
|
+
listTitle: "Meest recente subscriptions"
|
|
22296
22282
|
},
|
|
22297
|
-
|
|
22298
|
-
|
|
22299
|
-
|
|
22300
|
-
|
|
22301
|
-
|
|
22302
|
-
|
|
22303
|
-
|
|
22304
|
-
|
|
22305
|
-
|
|
22306
|
-
|
|
22307
|
-
|
|
22308
|
-
|
|
22309
|
-
|
|
22310
|
-
|
|
22311
|
-
|
|
22283
|
+
activeWorkflows: {
|
|
22284
|
+
buttonText: "Toon alle actieve workflows",
|
|
22285
|
+
headerTitle: "Totaal aantal actieve workflows",
|
|
22286
|
+
listTitle: "Meest recente actieve workflows"
|
|
22287
|
+
},
|
|
22288
|
+
failedTasks: {
|
|
22289
|
+
buttonText: "Toon alle gefaalde taken",
|
|
22290
|
+
headerTitle: "Totaal aantal gefaalde taken",
|
|
22291
|
+
listTitle: "Meest recente gefaalde taken"
|
|
22292
|
+
},
|
|
22293
|
+
myWorkflows: {
|
|
22294
|
+
buttonText: "Toon mijn afgeronde workflows",
|
|
22295
|
+
headerTitle: "Mijn afgeronde workflows",
|
|
22296
|
+
listTitle: "Mijn recente afgeronde workflows"
|
|
22297
|
+
},
|
|
22298
|
+
outOfSyncSubscriptions: {
|
|
22299
|
+
buttonText: "Toon alle actieve out-of-sync subscriptions",
|
|
22300
|
+
headerTitle: "Totaal aantal actieve out-of-sync subscriptions",
|
|
22301
|
+
listTitle: "Meest recente actieve out-of-sync subscriptions"
|
|
22312
22302
|
},
|
|
22303
|
+
products: {
|
|
22304
|
+
headerTitle: "Totaal aantal producten",
|
|
22305
|
+
listTitle: "Totaal aantal productinstanties"
|
|
22306
|
+
}
|
|
22307
|
+
},
|
|
22308
|
+
subscriptions: {
|
|
22313
22309
|
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
22310
|
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
22311
|
actions: "Acties",
|
|
22333
|
-
actionStarted: "Actie gestart",
|
|
22334
|
-
actionStartFailed: "Actie mislukt",
|
|
22335
22312
|
lockedBySubscriptions: "Deze actie is geblokkeerd door de volgende subscriptions:",
|
|
22313
|
+
modify: "Modify workflow",
|
|
22314
|
+
reconcile: "Reconcile workflow",
|
|
22336
22315
|
subscription: {
|
|
22316
|
+
insufficient_workflow_permissions: "Onvoldoende rechten om deze actie uit te kunnen voeren",
|
|
22337
22317
|
no_modify_deleted_related_objects: "Deze subscription kan niet worden gewijzigd omdat het verwijzingen bevat naar andere systemen die zijn verwijderd.",
|
|
22338
22318
|
no_modify_in_use_by_subscription: "Deze subscription kan niet worden {gewijzigd} omdat het wordt gebruikt in andere subscriptions:",
|
|
22339
22319
|
no_modify_invalid_status: "Deze subscription kan niet worden gewijzigd vanwege de status: {status}. Alleen abonnementen met de status {usable_when} kunnen worden {action}.",
|
|
22320
|
+
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
22321
|
no_modify_workflow: "Deze subscription kan niet worden gewijzigd omdat het product geen modify workflows heeft.",
|
|
22341
22322
|
no_termination_workflow: "Deze subscription kan niet worden be\xEBindigd omdat het product geen termination workflows heeft.",
|
|
22342
22323
|
no_validate_workflow: "Deze subscription kan niet worden gevalideerd omdat het product geen validate workflows heeft.",
|
|
22343
22324
|
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
22325
|
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
22326
|
running_process: "Deze actie kan niet worden gestart omdat deze subscription al een lopend proces of taak heeft."
|
|
22348
|
-
}
|
|
22327
|
+
},
|
|
22328
|
+
tasks: "Taken",
|
|
22329
|
+
terminate: "Terminate workflow"
|
|
22349
22330
|
},
|
|
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
22331
|
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",
|
|
22332
|
+
blockTitleProductInfo: "Productinfo",
|
|
22333
|
+
blockTitleSubscriptionDetails: "Subscription details",
|
|
22334
|
+
created: "Aangemaakt",
|
|
22335
|
+
ctaSelectProductBlock: "Selecteer \xE9\xE9n of meer product blocks om de details te bekijken",
|
|
22376
22336
|
customer: "Klant",
|
|
22377
|
-
customerUuid: "Klant UUID",
|
|
22378
22337
|
customerDescriptions: "Klant beschrijvingen",
|
|
22338
|
+
customerUuid: "Klant UUID",
|
|
22339
|
+
description: "Beschrijving",
|
|
22340
|
+
endDate: "Einddatum",
|
|
22341
|
+
hideAll: "Verberg alles",
|
|
22342
|
+
hideDetails: "Verberg details",
|
|
22343
|
+
hideTerminatedRelatedSubscriptions: "Verberg be\xEBindigde subscriptions",
|
|
22344
|
+
id: "ID",
|
|
22345
|
+
inUseByRelations: "In gebruik door subscription(s)",
|
|
22346
|
+
insync: "In sync",
|
|
22347
|
+
lastRunValidation: "Meest recente validatie",
|
|
22379
22348
|
metadata: "Metadata",
|
|
22380
22349
|
name: "Naam",
|
|
22381
|
-
|
|
22382
|
-
tag: "Tag",
|
|
22383
|
-
created: "Aangemaakt",
|
|
22384
|
-
endDate: "Einddatum",
|
|
22385
|
-
note: "Notitie",
|
|
22350
|
+
noProductBlockSelected: "Geen product block geselecteerd",
|
|
22386
22351
|
noRelatedSubscriptions: "Geen gerelateerde subscriptions gevonden",
|
|
22387
|
-
|
|
22352
|
+
noValidateWorkflows: "Er zijn recentelijk geen validate workflows uitgevoerd",
|
|
22353
|
+
note: "Notitie",
|
|
22354
|
+
ownerSubscriptionId: "Owner subscription ID",
|
|
22388
22355
|
processDetail: {
|
|
22389
22356
|
id: "ID",
|
|
22390
|
-
|
|
22357
|
+
note: "Note",
|
|
22391
22358
|
startedAt: "Started at",
|
|
22392
22359
|
startedBy: "Started by",
|
|
22393
|
-
|
|
22360
|
+
status: "Status"
|
|
22394
22361
|
},
|
|
22395
|
-
|
|
22396
|
-
|
|
22397
|
-
|
|
22398
|
-
selectByNameButtonText: "Selecteer op naam",
|
|
22362
|
+
productBlocks: "Product blocks",
|
|
22363
|
+
productName: "Product",
|
|
22364
|
+
productType: "Producttype",
|
|
22399
22365
|
see: "Bekijk",
|
|
22366
|
+
selectByNameButtonText: "Selecteer op naam",
|
|
22367
|
+
selectByNameTitle: "Selecteer product blocks op naam",
|
|
22368
|
+
self: "Huidige subscription",
|
|
22400
22369
|
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
22370
|
setInSyncFailed: {
|
|
22404
|
-
|
|
22405
|
-
|
|
22371
|
+
text: "De subscription kon niet in sync worden gezet. Probeer het opnieuw.",
|
|
22372
|
+
title: "In sync zetten mislukt"
|
|
22406
22373
|
},
|
|
22374
|
+
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
22375
|
setInSyncSuccess: {
|
|
22408
|
-
|
|
22409
|
-
|
|
22376
|
+
text: "De subscription is in sync gezet.",
|
|
22377
|
+
title: "Subscription in sync"
|
|
22410
22378
|
},
|
|
22379
|
+
showAll: "Toon alles",
|
|
22380
|
+
showDetails: "Toon details",
|
|
22381
|
+
startDate: "Startdatum",
|
|
22382
|
+
status: "Status",
|
|
22383
|
+
subscriptionId: "Subscription ID",
|
|
22384
|
+
subscriptionInstanceId: "Instance ID",
|
|
22385
|
+
subscriptionIsInSync: "De subscription staat in sync",
|
|
22386
|
+
tabs: {
|
|
22387
|
+
general: "Algemeen",
|
|
22388
|
+
relatedSubscriptions: "Gerelateerde subscriptions",
|
|
22389
|
+
serviceConfiguration: "Service configuratie",
|
|
22390
|
+
workflows: "Workflows"
|
|
22391
|
+
},
|
|
22392
|
+
tag: "Tag",
|
|
22393
|
+
title: "Subscriptions",
|
|
22411
22394
|
workflowsTab: {
|
|
22412
|
-
|
|
22413
|
-
|
|
22395
|
+
startWithNewestLabel: "Start met nieuwste eerst",
|
|
22396
|
+
startWithOldestLabel: "Start met oudste eerst"
|
|
22414
22397
|
}
|
|
22398
|
+
},
|
|
22399
|
+
index: {
|
|
22400
|
+
customerFullname: "Klant",
|
|
22401
|
+
customerId: "Klant ID",
|
|
22402
|
+
customerShortcode: "Klantafkorting",
|
|
22403
|
+
description: "Beschrijving",
|
|
22404
|
+
endDate: "Einddatum",
|
|
22405
|
+
id: "ID",
|
|
22406
|
+
insync: "In sync",
|
|
22407
|
+
metadata: "Metadata",
|
|
22408
|
+
note: "Notitie",
|
|
22409
|
+
product: "Product",
|
|
22410
|
+
startDate: "Startdatum",
|
|
22411
|
+
status: "Status",
|
|
22412
|
+
tag: "Tag"
|
|
22413
|
+
},
|
|
22414
|
+
tabs: {
|
|
22415
|
+
active: "Actief",
|
|
22416
|
+
all: "Alles",
|
|
22417
|
+
terminated: "Be\xEBindigd",
|
|
22418
|
+
transient: "In uitvoering"
|
|
22415
22419
|
}
|
|
22416
22420
|
},
|
|
22417
22421
|
tasks: {
|
|
22418
22422
|
page: {
|
|
22419
|
-
taskName: "Taak",
|
|
22420
22423
|
rerunAll: "Alle taken herstarten",
|
|
22421
|
-
rerunAllQuestion: "Weet u zeker dat u alle gefaalde taken opnieuw wilt herstarten?"
|
|
22424
|
+
rerunAllQuestion: "Weet u zeker dat u alle gefaalde taken opnieuw wilt herstarten?",
|
|
22425
|
+
taskName: "Taak"
|
|
22422
22426
|
},
|
|
22423
22427
|
tabs: {
|
|
22424
22428
|
active: "Actief",
|
|
22425
22429
|
completed: "Voltooid"
|
|
22426
22430
|
}
|
|
22427
22431
|
},
|
|
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
|
-
}
|
|
22432
|
+
workflowGuide: {
|
|
22433
|
+
hide: "Verberg gebruikershandleiding",
|
|
22434
|
+
noGuideAvailable: "Er is geen gebruikershandleiding beschikbaar voor deze workflow/taak",
|
|
22435
|
+
show: "Toon gebruikershandleiding"
|
|
22454
22436
|
},
|
|
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"
|
|
22437
|
+
workflows: {
|
|
22438
|
+
index: {
|
|
22439
|
+
title: "Workflows"
|
|
22480
22440
|
},
|
|
22481
|
-
|
|
22482
|
-
|
|
22483
|
-
|
|
22441
|
+
tabs: {
|
|
22442
|
+
active: "Actief",
|
|
22443
|
+
completed: "Voltooid"
|
|
22484
22444
|
}
|
|
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
22445
|
}
|
|
22493
22446
|
};
|
|
22494
22447
|
|