mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
fix(editor): Fix typo and change text sizes in ExecutionUsage component (no-changelog) (#6261)
* fix typo * adjust text size
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="$style.container">
|
<div :class="$style.container">
|
||||||
<div v-if="isTrialExpired" :class="$style.usageText">
|
<div v-if="isTrialExpired" :class="$style.usageText">
|
||||||
<n8n-text size="xsmall" color="danger">
|
<n8n-text size="small" color="danger">
|
||||||
{{ locale.baseText('executionUsage.expired.text') }}
|
{{ locale.baseText('executionUsage.expired.text') }}
|
||||||
</n8n-text>
|
</n8n-text>
|
||||||
</div>
|
</div>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
</i18n>
|
</i18n>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="!trialHasExecutionsLeft" :class="$style.usageText">
|
<div v-else-if="!trialHasExecutionsLeft" :class="$style.usageText">
|
||||||
<n8n-text size="xsmall">
|
<n8n-text size="small">
|
||||||
{{ locale.baseText('executionUsage.ranOutOfExecutions.text') }}
|
{{ locale.baseText('executionUsage.ranOutOfExecutions.text') }}
|
||||||
</n8n-text>
|
</n8n-text>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1034,7 +1034,7 @@
|
|||||||
"pushConnection.pollingNode.dataNotFound.message": "We didn’t find any data in {service} to simulate an event. Please create one in {service} and try again.",
|
"pushConnection.pollingNode.dataNotFound.message": "We didn’t find any data in {service} to simulate an event. Please create one in {service} and try again.",
|
||||||
"pushConnection.executionFailed": "Execution failed",
|
"pushConnection.executionFailed": "Execution failed",
|
||||||
"pushConnection.executionFailed.message": "There might not be enough memory to finish the execution. Tips for avoiding this <a target=\"_blank\" href=\"https://docs.n8n.io/flow-logic/error-handling/memory-errors/\">here</a>",
|
"pushConnection.executionFailed.message": "There might not be enough memory to finish the execution. Tips for avoiding this <a target=\"_blank\" href=\"https://docs.n8n.io/flow-logic/error-handling/memory-errors/\">here</a>",
|
||||||
"pushConnection.executionError": "There was a problem executing the workflow{error}",
|
"pushConnection.executionError": "There was a problem executing the workflow{error}",
|
||||||
"pushConnection.executionError.details": "<br /><strong>{details}</strong>",
|
"pushConnection.executionError.details": "<br /><strong>{details}</strong>",
|
||||||
"resourceLocator.id.placeholder": "Enter ID...",
|
"resourceLocator.id.placeholder": "Enter ID...",
|
||||||
"resourceLocator.mode.id": "By ID",
|
"resourceLocator.mode.id": "By ID",
|
||||||
@@ -1832,6 +1832,6 @@
|
|||||||
"executionUsage.currentUsage.count": "{n} day left. | {n} days left.",
|
"executionUsage.currentUsage.count": "{n} day left. | {n} days left.",
|
||||||
"executionUsage.label.executions": "Executions",
|
"executionUsage.label.executions": "Executions",
|
||||||
"executionUsage.button.upgrade": "Upgrade plan",
|
"executionUsage.button.upgrade": "Upgrade plan",
|
||||||
"executionUsage.expired.text": "You're trial is over. Upgrade now to keep your automation data",
|
"executionUsage.expired.text": "Your trial is over. Upgrade now to keep your data.",
|
||||||
"executionUsage.ranOutOfExecutions.text": "You’re out of executions. Upgrade your plan to keep automating."
|
"executionUsage.ranOutOfExecutions.text": "You’re out of executions. Upgrade your plan to keep automating."
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user