Skip to content

Commit 4950b2a

Browse files
committed
fix header text in static-tree-input-text-editor
1 parent 68c8b7e commit 4950b2a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/deployment/i18n/de.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
"Topics": "Themen",
324324
"Code": "Code",
325325
"Loading": "Laden",
326-
"# Provide OPC UA Node IDs below, one per line.\n# Format: ns={{namespace}};s={{node_id}} (e.g., ns=3;s=SampleNodeId)\n": "# Geben Sie die OPC UA Node IDs unten an, eine pro Zeile.\n# Format: ns={{namespace}};s={{node_id}} (z. B. ns=3;s=SampleNodeId)\n",
326+
"# Provide OPC UA Node IDs below, one per line.\n# Format: ns=<namespace>;s=<node_id> (e.g., ns=3;s=SampleNodeId)\n": "# Geben Sie unten OPC UA Node-IDs ein, eine pro Zeile.\n# Format: ns=<namespace>;s=<node_id> (z. B. ns=3;s=SampleNodeId)\n",
327327
"The value should be a number": "Der Wert sollte eine Zahl sein",
328328
"Please enter a valid URL": "Bitte geben Sie eine gültige URL ein",
329329
"Please enter a valid String": "Bitte geben Sie einen gültigen String ein",

ui/deployment/i18n/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
"Topics": null,
324324
"Code": null,
325325
"Loading": null,
326-
"# Provide OPC UA Node IDs below, one per line.\n# Format: ns={{namespace}};s={{node_id}} (e.g., ns=3;s=SampleNodeId)\n": null,
326+
"# Provide OPC UA Node IDs below, one per line.\n# Format: ns=<namespace>;s=<node_id> (e.g., ns=3;s=SampleNodeId)\n": null,
327327
"The value should be a number": null,
328328
"Please enter a valid URL": null,
329329
"Please enter a valid String": null,

ui/src/app/core-ui/static-properties/static-runtime-resolvable-tree-input/static-tree-input-text-editor/static-tree-input-text-editor.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class StaticTreeInputTextEditorComponent implements OnInit {
5555
};
5656

5757
headerText = this.translateService.instant(
58-
'# Provide OPC UA Node IDs below, one per line.\n# Format: ns={{namespace}};s={{node_id}} (e.g., ns=3;s=SampleNodeId)\n',
58+
'# Provide OPC UA Node IDs below, one per line.\n# Format: ns=<namespace>;s=<node_id> (e.g., ns=3;s=SampleNodeId)\n',
5959
);
6060
textEditor: string = '';
6161

0 commit comments

Comments
 (0)