From 03707e6308628b6010045282d5e8b522bdd932dc Mon Sep 17 00:00:00 2001 From: Norbert Rittel Date: Wed, 18 Dec 2024 22:40:30 +0100 Subject: [PATCH] Improve field descriptions for Download file action (#133413) * Improve field descriptions for Download file action Currently two of the field descriptions for the Download file action don't explain exactly what should be entered but rather explain these like additional actions. The third, the Overwrite file option is misleading as it does not refer to an existing file. This commit fixes both issues by explaining the purpose of all three fields in a slightly more detailed fashion. * Update homeassistant/components/downloader/strings.json Co-authored-by: Josef Zweck * Update homeassistant/components/downloader/strings.json Co-authored-by: Josef Zweck --------- Co-authored-by: Josef Zweck --- homeassistant/components/downloader/strings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/downloader/strings.json b/homeassistant/components/downloader/strings.json index 11a2bda8fce..7db7ea459d7 100644 --- a/homeassistant/components/downloader/strings.json +++ b/homeassistant/components/downloader/strings.json @@ -23,15 +23,15 @@ }, "subdir": { "name": "Subdirectory", - "description": "Download into subdirectory." + "description": "Relative download path." }, "filename": { "name": "Filename", - "description": "Determine the filename." + "description": "Custom name for the downloaded file." }, "overwrite": { "name": "Overwrite", - "description": "Whether to overwrite the file or not." + "description": "Overwrite file if it exists." } } }