mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix some i18n line break issues
This commit is contained in:
parent
cb5b98afbc
commit
f04e6ac43e
|
@ -2,9 +2,7 @@
|
|||
<span>
|
||||
<div class="push-connection-lost primary-color" v-if="!pushConnectionActive">
|
||||
<n8n-tooltip placement="bottom-end" >
|
||||
<div slot="content">
|
||||
{{ $locale.baseText('pushConnectionTracker.cannotConnectToServer') }}
|
||||
</div>
|
||||
<div slot="content" v-html="$locale.baseText('pushConnectionTracker.cannotConnectToServer')"></div>
|
||||
<span>
|
||||
<font-awesome-icon icon="exclamation-triangle" /> {{ $locale.baseText('pushConnectionTracker.connectionLost') }}
|
||||
</span>
|
||||
|
|
|
@ -98,14 +98,14 @@
|
|||
</h3>
|
||||
|
||||
<div class="text">
|
||||
{{ $locale.baseText(
|
||||
<span v-html="$locale.baseText(
|
||||
'runData.theNodeContains',
|
||||
{
|
||||
interpolate: {
|
||||
numberOfKb: parseInt(dataSize/1024).toLocaleString()
|
||||
}
|
||||
}
|
||||
)}}
|
||||
)"></span>
|
||||
</div>
|
||||
|
||||
<n8n-button
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</div>
|
||||
<WarningTooltip v-if="version.hasSecurityIssue">
|
||||
<template>
|
||||
{{ $locale.baseText('versionCard.thisVersionHasASecurityIssue') }}
|
||||
<span v-html="$locale.baseText('versionCard.thisVersionHasASecurityIssue')"></span>
|
||||
</template>
|
||||
</WarningTooltip>
|
||||
<Badge
|
||||
|
|
|
@ -243,7 +243,7 @@
|
|||
"theWorkflowExecutionFailed": "The workflow execution failed.",
|
||||
"theWorkflowExecutionFailedButTheRetryWasSuccessful": "The workflow execution failed but the retry {entryRetrySuccessId} was successful.",
|
||||
"theWorkflowExecutionIsProbablyStillRunning": "The workflow execution is probably still running but it may have crashed and n8n cannot safely tell. ",
|
||||
"theWorkflowExecutionWasARetryOfAndFailed": "The workflow execution was a retry of {entryRetryOf} and failed.<br />New retries have to be,started from the original execution.",
|
||||
"theWorkflowExecutionWasARetryOfAndFailed": "The workflow execution was a retry of {entryRetryOf} and failed.<br />New retries have to be started from the original execution.",
|
||||
"theWorkflowExecutionWasARetryOfAndItWasSuccessful": "The workflow execution was a retry of {entryRetryOf} and it was successful.",
|
||||
"theWorkflowExecutionWasSuccessful": "The worklow execution was successful.",
|
||||
"theWorkflowIsCurrentlyExecuting": "The worklow is currently executing.",
|
||||
|
@ -444,7 +444,7 @@
|
|||
"time": "Time"
|
||||
},
|
||||
"nodeBase": {
|
||||
"clickToAddNodeOrDragToConnect": "Click to add node<br>or drag to connect"
|
||||
"clickToAddNodeOrDragToConnect": "Click to add node<br />or drag to connect"
|
||||
},
|
||||
"nodeSettings": {
|
||||
"alwaysOutputData": {
|
||||
|
@ -894,7 +894,7 @@
|
|||
"breakingChanges": "Breaking changes",
|
||||
"released": "Released",
|
||||
"securityUpdate": "Security update",
|
||||
"thisVersionHasASecurityIssue": "This version has a security issue.<br/>It is listed here for completeness.",
|
||||
"thisVersionHasASecurityIssue": "This version has a security issue.<br />It is listed here for completeness.",
|
||||
"unknown": "unknown",
|
||||
"version": "Version"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue