From 58d345c93b11178177e221f8b9e7e6f8938a7522 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 e3d6909..2bc5919 100644
--- a/frontend/src/lang/en.json
+++ b/frontend/src/lang/en.json
@@ -112,5 +112,6 @@
"agentRemovedSuccessfully": "Agent removed successfully.",
"removeAgent": "Remove Agent",
"removeAgentMsg": "Are you sure you want to remove this agent?",
- "GlobalEnv": "Global .env"
+ "GlobalEnv": "Global .env",
+ "LongSyntaxNotSupported": "Long syntax is not supported here. Please use the YAML editor."
}