feat(editor): Implement delete datastore row UI (no-changelog) (#18729)

This commit is contained in:
Svetoslav Dekov
2025-08-25 14:59:16 +02:00
committed by GitHub
parent 2dc34b2f17
commit 67352ce2f8
10 changed files with 329 additions and 52 deletions

View File

@@ -110,6 +110,8 @@
"generic.unknownError": "An unknown error occurred",
"generic.upgradeToEnterprise": "Upgrade to Enterprise",
"generic.never": "Never",
"generic.list.clearSelection": "Clear selection",
"generic.list.selected": "{count} row selected: | {count} rows selected:",
"about.aboutN8n": "About n8n",
"about.close": "Close",
"about.license": "License",
@@ -793,7 +795,6 @@
"executionsList.confirmMessage.message": "Are you sure that you want to delete the {count} selected execution(s)?",
"executionsList.confirmMessage.annotationsNote": "By deleting these executions you will also remove the associated annotation data.",
"executionsList.confirmMessage.annotatedExecutionMessage": "By deleting this you will also remove the associated annotation data. Are you sure that you want to delete the selected execution?",
"executionsList.clearSelection": "Clear selection",
"executionsList.error": "Error",
"executionsList.filters": "Filters",
"executionsList.loadMore": "Load more",
@@ -816,7 +817,6 @@
"executionsList.succeeded": "Succeeded",
"executionsList.selectStatus": "Select Status",
"executionsList.selectWorkflow": "Select Workflow",
"executionsList.selected": "{count} execution selected: | {count} executions selected:",
"executionsList.selectAll": "Select {count} finished execution | Select all {count} finished executions",
"executionsList.test": "Test execution",
"executionsList.evaluation": "Evaluation execution",
@@ -2877,6 +2877,10 @@
"dataStore.addRow.label": "Add Row",
"dataStore.addRow.error": "Error adding row",
"dataStore.updateRow.error": "Error updating row",
"dataStore.deleteRows.title": "Delete Rows",
"dataStore.deleteRows.confirmation": "Are you sure you want to delete {count} row? | Are you sure you want to delete {count} rows?",
"dataStore.deleteRows.success": "Rows deleted successfully",
"dataStore.deleteRows.error": "Error deleting rows",
"settings.ldap": "LDAP",
"settings.ldap.note": "LDAP allows users to authenticate with their centralized account. It's compatible with services that provide an LDAP interface like Active Directory, Okta and Jumpcloud.",
"settings.ldap.infoTip": "Learn more about <a href='https://docs.n8n.io/user-management/ldap/' target='_blank'>LDAP in the Docs</a>",