From 9c5c1a35a4e49a48f9c0f1ff6df3b1652ee8c398 Mon Sep 17 00:00:00 2001 From: Norbert Rittel Date: Wed, 15 Jan 2025 13:00:40 +0100 Subject: [PATCH] Fix descriptions of send_command action for consistency (#135670) Three small fixes for the description keys of the send_command action of the Homeworks integration: - use third-person singular for descriptive wording - Change to "the command" to match "the controller" in two strings Both ensure better and more consistent machine and human translations. --- homeassistant/components/homeworks/strings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/homeworks/strings.json b/homeassistant/components/homeworks/strings.json index 977e6be8afd..10cc2e61fb9 100644 --- a/homeassistant/components/homeworks/strings.json +++ b/homeassistant/components/homeworks/strings.json @@ -167,15 +167,15 @@ "services": { "send_command": { "name": "Send command", - "description": "Send custom command to a controller", + "description": "Sends a custom command to a controller", "fields": { "command": { "name": "Command", - "description": "Command to send to the controller. This can either be a single command or a list of commands." + "description": "The command to send to the controller. This can either be a single command or a list of commands." }, "controller_id": { "name": "Controller ID", - "description": "The controller to which to send command." + "description": "The controller to which to send the command." } } }