mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-25 19:41:14 -08:00
fix(editor): Fix outdated roles in variables labels (#9411)
This commit is contained in:
parent
aad43d8cdc
commit
38b498e73a
|
@ -214,7 +214,7 @@ function focusFirstInput() {
|
|||
</n8n-button>
|
||||
</div>
|
||||
<template #content>
|
||||
{{ i18n.baseText('variables.row.button.edit.onlyOwnerCanSave') }}
|
||||
{{ i18n.baseText('variables.row.button.edit.onlyRoleCanEdit') }}
|
||||
</template>
|
||||
</n8n-tooltip>
|
||||
<n8n-tooltip :disabled="permissions.delete" placement="top">
|
||||
|
@ -229,7 +229,7 @@ function focusFirstInput() {
|
|||
</n8n-button>
|
||||
</div>
|
||||
<template #content>
|
||||
{{ i18n.baseText('variables.row.button.delete.onlyOwnerCanDelete') }}
|
||||
{{ i18n.baseText('variables.row.button.delete.onlyRoleCanDelete') }}
|
||||
</template>
|
||||
</n8n-tooltip>
|
||||
</div>
|
||||
|
|
|
@ -2196,9 +2196,9 @@
|
|||
"variables.row.button.save": "Save",
|
||||
"variables.row.button.cancel": "Cancel",
|
||||
"variables.row.button.edit": "Edit",
|
||||
"variables.row.button.edit.onlyOwnerCanSave": "Only owner can edit variables",
|
||||
"variables.row.button.edit.onlyRoleCanEdit": "Only instance owner and admins can edit variables",
|
||||
"variables.row.button.delete": "Delete",
|
||||
"variables.row.button.delete.onlyOwnerCanDelete": "Only owner can delete variables",
|
||||
"variables.row.button.delete.onlyRoleCanDelete": "Only instance owner and can delete variables",
|
||||
"variables.row.usage.copiedToClipboard": "Copied to clipboard",
|
||||
"variables.row.usage.copyToClipboard": "Copy to clipboard",
|
||||
"variables.search.placeholder": "Search variables...",
|
||||
|
|
Loading…
Reference in a new issue