From 39b2988ccb008dba55244076cf450d9cde458772 Mon Sep 17 00:00:00 2001 From: Mutasem Date: Mon, 17 Jan 2022 13:40:08 +0100 Subject: [PATCH] fix translation keys --- .../editor-ui/src/components/ActivationModal.vue | 16 +++++++++++++--- .../editor-ui/src/plugins/i18n/locales/en.json | 14 +++++++------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/packages/editor-ui/src/components/ActivationModal.vue b/packages/editor-ui/src/components/ActivationModal.vue index cf862a9beb..20b79d8b37 100644 --- a/packages/editor-ui/src/components/ActivationModal.vue +++ b/packages/editor-ui/src/components/ActivationModal.vue @@ -3,21 +3,31 @@ :name="WORKFLOW_ACTIVE_MODAL_KEY" width="460px" minWidth="350px" - :title="$locale.baseText('activationModal.modalTitle')" + :title="$locale.baseText('activationModal.workflowActivated')" > diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json index 9f4061144b..389acc0cb3 100644 --- a/packages/editor-ui/src/plugins/i18n/locales/en.json +++ b/packages/editor-ui/src/plugins/i18n/locales/en.json @@ -1037,12 +1037,12 @@ "timezone": "Timezone" }, "activationModal": { - "modalTitle": "Workflow activated", - "messageFirstChunk": "These executions will not show up immediately in the editor", - "messageSecondChunk": ", but you can see them in the ", - "messageExecutionsLink": "execution list", - "messageThirdChunk": " if you choose to ", - "messageSaveLink": "save executions", - "checkboxLabel": "Don't show again" + "workflowActivated": "Workflow activated", + "theseExecutionsWillNotShowUp": "These executions will not show up immediately in the editor,", + "butYouCanSeeThem": "but you can see them in the", + "executionList": "execution list", + "ifYouChooseTo": "if you choose to", + "saveExecutions": "save executions.", + "dontShowAgain": "Don't show again" } }