From d2380608e12859c341c85ebb92bf3f9dfd184a8f Mon Sep 17 00:00:00 2001 From: Andrew Jackson Date: Sat, 18 Oct 2025 18:30:48 +0100 Subject: [PATCH] Move url out of rachio strings.json (#154781) --- homeassistant/components/rachio/config_flow.py | 7 ++++++- homeassistant/components/rachio/strings.json | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/rachio/config_flow.py b/homeassistant/components/rachio/config_flow.py index cc32bd2e56f..4956d204a98 100644 --- a/homeassistant/components/rachio/config_flow.py +++ b/homeassistant/components/rachio/config_flow.py @@ -91,7 +91,12 @@ class RachioConfigFlow(ConfigFlow, domain=DOMAIN): errors["base"] = "unknown" return self.async_show_form( - step_id="user", data_schema=DATA_SCHEMA, errors=errors + step_id="user", + data_schema=DATA_SCHEMA, + errors=errors, + description_placeholders={ + "api_key_url": "https://app.rach.io/", + }, ) async def async_step_homekit( diff --git a/homeassistant/components/rachio/strings.json b/homeassistant/components/rachio/strings.json index ea3c8911463..f63454cb185 100644 --- a/homeassistant/components/rachio/strings.json +++ b/homeassistant/components/rachio/strings.json @@ -3,7 +3,7 @@ "step": { "user": { "title": "Connect to your Rachio device", - "description": "You will need the API key from https://app.rach.io/. Go to Settings, then select 'GET API KEY'.", + "description": "You will need the API key from {api_key_url}. Go to Settings, then select 'GET API KEY'.", "data": { "api_key": "[%key:common::config_flow::data::api_key%]" }