From 06d748cee7c723702125b54e04ee96b4d3d0044c Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 20 Jan 2024 20:21:28 +0100 Subject: [PATCH] Add weather icon translations (#108488) --- homeassistant/components/weather/icons.json | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 homeassistant/components/weather/icons.json diff --git a/homeassistant/components/weather/icons.json b/homeassistant/components/weather/icons.json new file mode 100644 index 00000000000..63daae20e3c --- /dev/null +++ b/homeassistant/components/weather/icons.json @@ -0,0 +1,28 @@ +{ + "entity_component": { + "_": { + "default": "mdi:weather-partly-cloudy", + "state": { + "clear-night": "mdi:weather-night", + "cloudy": "mdi:weather-cloudy", + "exceptional": "mdi:alert-circle-outline", + "fog": "mdi:weather-fog", + "hail": "mdi:weather-hail", + "lightning": "mdi:weather-lightning", + "lightning-rainy": "mdi:weather-lightning-rainy", + "partlycloudy": "mdi:weather-partly-cloudy", + "pouring": "mdi:weather-pouring", + "rainy": "mdi:weather-rainy", + "snowy": "mdi:weather-snowy", + "snowy-rainy": "mdi:weather-snowy-rainy", + "sunny": "mdi:weather-sunny", + "windy": "mdi:weather-windy", + "windy-variant": "mdi:weather-windy-variant" + } + } + }, + "services": { + "get_forecast": "mdi:weather-cloudy-clock", + "get_forecasts": "mdi:weather-cloudy-clock" + } +}