From c3871cc5aec171c76e2094a39d52545334b61e86 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 12 Jul 2023 14:06:14 +0200 Subject: [PATCH] Migrate template services to support translations (#96414) --- homeassistant/components/template/services.yaml | 2 -- homeassistant/components/template/strings.json | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 homeassistant/components/template/strings.json diff --git a/homeassistant/components/template/services.yaml b/homeassistant/components/template/services.yaml index 6186bc6dccb..c983a105c93 100644 --- a/homeassistant/components/template/services.yaml +++ b/homeassistant/components/template/services.yaml @@ -1,3 +1 @@ reload: - name: Reload - description: Reload all template entities. diff --git a/homeassistant/components/template/strings.json b/homeassistant/components/template/strings.json new file mode 100644 index 00000000000..3222a0f1bdf --- /dev/null +++ b/homeassistant/components/template/strings.json @@ -0,0 +1,8 @@ +{ + "services": { + "reload": { + "name": "Reload", + "description": "Reloads template entities from the YAML-configuration." + } + } +}