fix translation keys

This commit is contained in:
Mutasem 2022-01-17 13:40:08 +01:00
parent 2a42c44329
commit 39b2988ccb
2 changed files with 20 additions and 10 deletions

View file

@ -3,21 +3,31 @@
:name="WORKFLOW_ACTIVE_MODAL_KEY"
width="460px"
minWidth="350px"
:title="$locale.baseText('activationModal.modalTitle')"
:title="$locale.baseText('activationModal.workflowActivated')"
>
<template v-slot:content>
<div>
<n8n-text>{{triggerContent}}</n8n-text>
</div>
<div :class="$style.spaced">
<n8n-text><n8n-text :bold="true">{{ $locale.baseText('activationModal.messageFirstChunk') }}</n8n-text>{{ $locale.baseText('activationModal.messageSecondChunk') }}<a @click="showExecutionsList">{{ $locale.baseText('activationModal.messageExecutionsLink') }}</a>{{ $locale.baseText('activationModal.messageThirdChunk') }}<a @click="showSettings">{{ $locale.baseText('activationModal.messageSaveLink') }}</a>.</n8n-text>
<n8n-text>
<n8n-text :bold="true">
{{$locale.baseText('activationModal.theseExecutionsWillNotShowUp')}}
</n8n-text>
{{ $locale.baseText('activationModal.butYouCanSeeThem') }}
<a @click="showExecutionsList">
{{ $locale.baseText('activationModal.executionList') }}
</a>
{{ $locale.baseText('activationModal.ifYouChooseTo') }}
<a @click="showSettings">{{ $locale.baseText('activationModal.saveExecutions') }}</a>
</n8n-text>
</div>
</template>
<template v-slot:footer="{ close }">
<div :class="$style.footer">
<el-checkbox :value="checked" @change="handleCheckboxChange">{{ $locale.baseText('activationModal.checkboxLabel') }}</el-checkbox>
<el-checkbox :value="checked" @change="handleCheckboxChange">{{ $locale.baseText('activationModal.dontShowAgain') }}</el-checkbox>
<n8n-button @click="close" label="Got it"/>
</div>
</template>

View file

@ -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"
}
}