From eeda7f15c879d17c62a9e5ffd4f266d8128c3868 Mon Sep 17 00:00:00 2001 From: Brant Knudson Date: Wed, 19 May 2021 16:26:44 -0500 Subject: [PATCH] Fix sample yamls in TTS (#17762) --- source/_integrations/tts.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/_integrations/tts.markdown b/source/_integrations/tts.markdown index 4a1d6614eca..39e370ec8a7 100644 --- a/source/_integrations/tts.markdown +++ b/source/_integrations/tts.markdown @@ -110,26 +110,26 @@ Say to all `media_player` device entities: ```yaml # Replace google_translate_say with _say when you use a different platform. service: tts.google_translate_say -entity_id: "all" data: - message: "May the Force be with you." + entity_id: all + message: "May the force be with you." ``` Say to the `media_player.floor` device entity: ```yaml service: tts.google_translate_say -entity_id: media_player.floor data: - message: "May the Force be with you." + entity_id: media_player.floor + message: "May the force be with you." ``` Say to the `media_player.floor` device entity in French: ```yaml service: tts.google_translate_say -entity_id: media_player.floor data: + entity_id: media_player.floor message: "Que la force soit avec toi." language: "fr" ```