diff --git a/src/panels/config/blueprint/ha-blueprint-overview.ts b/src/panels/config/blueprint/ha-blueprint-overview.ts index ff1280e361..3a395312af 100644 --- a/src/panels/config/blueprint/ha-blueprint-overview.ts +++ b/src/panels/config/blueprint/ha-blueprint-overview.ts @@ -333,7 +333,6 @@ class HaBlueprintOverview extends LitElement { ), text: this.hass.localize( "ui.panel.config.blueprint.overview.confirm_delete_text", - "name", { name: blueprint.name } ), confirmText: this.hass!.localize("ui.common.delete"), diff --git a/src/panels/config/scene/ha-scene-editor.ts b/src/panels/config/scene/ha-scene-editor.ts index 40ccc29163..598f2e1d69 100644 --- a/src/panels/config/scene/ha-scene-editor.ts +++ b/src/panels/config/scene/ha-scene-editor.ts @@ -783,8 +783,7 @@ export class HaSceneEditor extends SubscribeMixin( ), text: this.hass!.localize( "ui.panel.config.scene.picker.delete_confirm_text", - "name", - this._config?.name + { name: this._config?.name } ), confirmText: this.hass!.localize("ui.common.delete"), dismissText: this.hass!.localize("ui.common.cancel"), diff --git a/src/panels/config/script/ha-script-picker.ts b/src/panels/config/script/ha-script-picker.ts index b3b78028de..8aaa8a02f4 100644 --- a/src/panels/config/script/ha-script-picker.ts +++ b/src/panels/config/script/ha-script-picker.ts @@ -327,7 +327,6 @@ class HaScriptPicker extends LitElement { ), text: this.hass.localize( "ui.panel.config.script.editor.delete_confirm_text", - "name", { name: script.name } ), confirmText: this.hass!.localize("ui.common.delete"),