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.
pull/135676/head
Norbert Rittel 2025-01-15 13:00:40 +01:00 committed by GitHub
parent b046ca9abe
commit 9c5c1a35a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -167,15 +167,15 @@
"services": { "services": {
"send_command": { "send_command": {
"name": "Send command", "name": "Send command",
"description": "Send custom command to a controller", "description": "Sends a custom command to a controller",
"fields": { "fields": {
"command": { "command": {
"name": "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": { "controller_id": {
"name": "Controller ID", "name": "Controller ID",
"description": "The controller to which to send command." "description": "The controller to which to send the command."
} }
} }
} }