mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Render missing strings in ExecutionDetails
This commit is contained in:
parent
01db7f4a5b
commit
d2c79d3ef0
|
@ -24,7 +24,7 @@
|
||||||
:title="$baseText('executionDetails.executionFailed')"
|
:title="$baseText('executionDetails.executionFailed')"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
of
|
{{ $baseText('executionDetails.of') }}
|
||||||
<span class="primary-color clickable" :title="$baseText('executionDetails.openWorkflow')">
|
<span class="primary-color clickable" :title="$baseText('executionDetails.openWorkflow')">
|
||||||
<WorkflowNameShort :name="workflowName">
|
<WorkflowNameShort :name="workflowName">
|
||||||
<template v-slot="{ shortenedName }">
|
<template v-slot="{ shortenedName }">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
</template>
|
</template>
|
||||||
</WorkflowNameShort>
|
</WorkflowNameShort>
|
||||||
</span>
|
</span>
|
||||||
workflow
|
{{ $baseText('executionDetails.workflow') }}
|
||||||
</span>
|
</span>
|
||||||
<n8n-tooltip class="read-only primary-color" placement="bottom-end" >
|
<n8n-tooltip class="read-only primary-color" placement="bottom-end" >
|
||||||
<div slot="content">
|
<div slot="content">
|
||||||
|
|
|
@ -179,7 +179,9 @@
|
||||||
"executionId": "🇩🇪 Execution ID",
|
"executionId": "🇩🇪 Execution ID",
|
||||||
"executionWaiting": "🇩🇪 Execution waiting",
|
"executionWaiting": "🇩🇪 Execution waiting",
|
||||||
"executionWasSuccessful": "🇩🇪 Execution was successful",
|
"executionWasSuccessful": "🇩🇪 Execution was successful",
|
||||||
"openWorkflow": "🇩🇪 Open Workflow"
|
"openWorkflow": "🇩🇪 Open Workflow",
|
||||||
|
"of": "🇩🇪 of",
|
||||||
|
"workflow": "🇩🇪 workflow"
|
||||||
},
|
},
|
||||||
"executionsList": {
|
"executionsList": {
|
||||||
"allWorkflows": "🇩🇪 All Workflows",
|
"allWorkflows": "🇩🇪 All Workflows",
|
||||||
|
|
|
@ -163,7 +163,9 @@
|
||||||
"executionId": "Execution ID",
|
"executionId": "Execution ID",
|
||||||
"executionWaiting": "Execution waiting",
|
"executionWaiting": "Execution waiting",
|
||||||
"executionWasSuccessful": "Execution was successful",
|
"executionWasSuccessful": "Execution was successful",
|
||||||
"openWorkflow": "Open Workflow"
|
"openWorkflow": "Open Workflow",
|
||||||
|
"of": "of",
|
||||||
|
"workflow": "workflow"
|
||||||
},
|
},
|
||||||
"executionsList": {
|
"executionsList": {
|
||||||
"allWorkflows": "All Workflows",
|
"allWorkflows": "All Workflows",
|
||||||
|
|
Loading…
Reference in a new issue