diff --git a/homeassistant/components/homewizard/config_flow.py b/homeassistant/components/homewizard/config_flow.py index 1b3211c4765..17f87680c62 100644 --- a/homeassistant/components/homewizard/config_flow.py +++ b/homeassistant/components/homewizard/config_flow.py @@ -127,6 +127,10 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): self._set_confirm_only() + self.context["title_placeholders"] = { + "name": f"{self.config[CONF_PRODUCT_NAME]} ({self.config[CONF_SERIAL]})" + } + return self.async_show_form( step_id="discovery_confirm", description_placeholders={ diff --git a/homeassistant/components/homewizard/strings.json b/homeassistant/components/homewizard/strings.json index c3798b35678..b34c6906cc1 100644 --- a/homeassistant/components/homewizard/strings.json +++ b/homeassistant/components/homewizard/strings.json @@ -15,10 +15,10 @@ }, "abort": { "already_configured": "[%key:common::config_flow::abort::already_configured_device%]", - "invalid_discovery_parameters": "unsupported_api_version", + "invalid_discovery_parameters": "Detected unsupported API version", "api_not_enabled": "The API is not enabled. Enable API in the HomeWizard Energy App under settings", "device_not_supported": "This device is not supported", "unknown_error": "[%key:common::config_flow::error::unknown%]" } } -} \ No newline at end of file +}