diff --git a/homeassistant/components/workday/config_flow.py b/homeassistant/components/workday/config_flow.py index a2d804a11c4..bfa6c299b57 100644 --- a/homeassistant/components/workday/config_flow.py +++ b/homeassistant/components/workday/config_flow.py @@ -220,7 +220,10 @@ class WorkdayConfigFlow(ConfigFlow, domain=DOMAIN): step_id="options", data_schema=new_schema, errors=errors, - description_placeholders={"name": self.data[CONF_NAME]}, + description_placeholders={ + "name": self.data[CONF_NAME], + "country": self.data[CONF_COUNTRY], + }, ) @@ -277,6 +280,10 @@ class WorkdayOptionsFlowHandler(OptionsFlowWithConfigEntry): step_id="init", data_schema=new_schema, errors=errors, + description_placeholders={ + "name": self.options[CONF_NAME], + "country": self.options[CONF_COUNTRY], + }, ) diff --git a/homeassistant/components/workday/strings.json b/homeassistant/components/workday/strings.json index 4ec1cf34e99..5af69e29a8b 100644 --- a/homeassistant/components/workday/strings.json +++ b/homeassistant/components/workday/strings.json @@ -12,7 +12,7 @@ } }, "options": { - "description": "Set workday options for {name}", + "description": "Set additional options for {name} configured for country {country}", "data": { "excludes": "Excludes", "days_offset": "Offset", @@ -39,6 +39,7 @@ "options": { "step": { "init": { + "description": "Change additional options for {name} configured for country {country}", "data": { "excludes": "[%key:component::workday::config::step::options::data::excludes%]", "days_offset": "[%key:component::workday::config::step::options::data::days_offset%]",