From 051cc11eaacc6e400f318cdc828fdaa32dbfed59 Mon Sep 17 00:00:00 2001 From: Cyril59310 <70776486+cyril59310@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:36:28 +0100 Subject: [PATCH] Add translate key (#368) --- frontend/src/components/ArrayInput.vue | 2 +- frontend/src/lang/en.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ArrayInput.vue b/frontend/src/components/ArrayInput.vue index 09587c9..d63206b 100644 --- a/frontend/src/components/ArrayInput.vue +++ b/frontend/src/components/ArrayInput.vue @@ -11,7 +11,7 @@
- Long syntax is not supported here. Please use the YAML editor. + {{ $t("LongSyntaxNotSupported") }}
diff --git a/frontend/src/lang/en.json b/frontend/src/lang/en.json index f05ac32..93bf53a 100644 --- a/frontend/src/lang/en.json +++ b/frontend/src/lang/en.json @@ -111,5 +111,6 @@ "agentAddedSuccessfully": "Agent added successfully.", "agentRemovedSuccessfully": "Agent removed successfully.", "removeAgent": "Remove Agent", - "removeAgentMsg": "Are you sure you want to remove this agent?" + "removeAgentMsg": "Are you sure you want to remove this agent?", + "LongSyntaxNotSupported": "Long syntax is not supported here. Please use the YAML editor." }