fix(editor): Fix outdated roles in variables labels (#9411)

This commit is contained in:
Iván Ovejero 2024-05-15 18:04:17 +02:00 committed by GitHub
parent aad43d8cdc
commit 38b498e73a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -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>

View file

@ -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...",