From ec7ec993b09d99b4cfc4fb3b8c8014b11bc11aee Mon Sep 17 00:00:00 2001 From: Norbert Rittel Date: Thu, 20 Feb 2025 18:26:14 +0100 Subject: [PATCH] Improve names and descriptions of `media_player.xxx_set` actions (#138773) Co-authored-by: Andrew Sayre <6730289+andrewsayre@users.noreply.github.com> --- homeassistant/components/media_player/strings.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/homeassistant/components/media_player/strings.json b/homeassistant/components/media_player/strings.json index 02c0b59e4f0..87b5ec692af 100644 --- a/homeassistant/components/media_player/strings.json +++ b/homeassistant/components/media_player/strings.json @@ -299,22 +299,22 @@ "description": "Removes all items from the playlist." }, "shuffle_set": { - "name": "Shuffle", - "description": "Playback mode that selects the media in randomized order.", + "name": "Set shuffle", + "description": "Enables or disables the shuffle mode.", "fields": { "shuffle": { - "name": "Shuffle", - "description": "Whether or not shuffle mode is enabled." + "name": "Shuffle mode", + "description": "Whether the media should be played in randomized order or not." } } }, "repeat_set": { - "name": "Repeat", - "description": "Playback mode that plays the media in a loop.", + "name": "Set repeat", + "description": "Sets the repeat mode.", "fields": { "repeat": { "name": "Repeat mode", - "description": "Repeat mode to set." + "description": "Whether the media (one or all) should be played in a loop or not." } } },