mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix translation keys
This commit is contained in:
parent
2a42c44329
commit
39b2988ccb
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue