Add missing strings in frontier_silicon (#90446)
Improve confirm message for ssdp flowpull/90447/merge
parent
f0710bae06
commit
40cb0eeb68
|
@ -188,7 +188,9 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||
return await self._async_create_entry()
|
||||
|
||||
self._set_confirm_only()
|
||||
return self.async_show_form(step_id="confirm")
|
||||
return self.async_show_form(
|
||||
step_id="confirm", description_placeholders={"name": self._name}
|
||||
)
|
||||
|
||||
async def async_step_device_config(
|
||||
self, user_input: dict[str, Any] | None = None
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
"data": {
|
||||
"pin": "[%key:common::config_flow::data::pin%]"
|
||||
}
|
||||
},
|
||||
"confirm": {
|
||||
"description": "Do you want to set up {name}?"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
|
|
Loading…
Reference in New Issue