diff --git a/src/panels/config/integrations/ha-integration-card.ts b/src/panels/config/integrations/ha-integration-card.ts index 4ac6414562..6449e9e7e6 100644 --- a/src/panels/config/integrations/ha-integration-card.ts +++ b/src/panels/config/integrations/ha-integration-card.ts @@ -549,7 +549,8 @@ export class HaIntegrationCard extends LitElement { const confirmed = await showConfirmationDialog(this, { text: this.hass.localize( - "ui.panel.config.integrations.config_entry.delete_confirm" + "ui.panel.config.integrations.config_entry.delete_confirm", + { title: configEntry.title } ), }); diff --git a/src/translations/en.json b/src/translations/en.json index 6ef216a055..00db3ae8e4 100755 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -2317,7 +2317,7 @@ "system_options": "System options", "documentation": "Documentation", "delete": "Delete", - "delete_confirm": "Are you sure you want to delete this integration?", + "delete_confirm": "Are you sure you want to delete the {title} integration?", "reload": "Reload", "restart_confirm": "Restart Home Assistant to finish removing this integration", "reload_confirm": "The integration was reloaded",