From fff1fc8d19ad9ff209c4eaac88a9cf14ad734e37 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Fri, 19 Jan 2024 20:07:04 +0100 Subject: [PATCH] Add icon translations to August (#108396) --- homeassistant/components/august/binary_sensor.py | 1 - homeassistant/components/august/icons.json | 9 +++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 homeassistant/components/august/icons.json diff --git a/homeassistant/components/august/binary_sensor.py b/homeassistant/components/august/binary_sensor.py index 056969921f0..3c2ea5b3faa 100644 --- a/homeassistant/components/august/binary_sensor.py +++ b/homeassistant/components/august/binary_sensor.py @@ -140,7 +140,6 @@ SENSOR_TYPES_VIDEO_DOORBELL = ( AugustDoorbellBinarySensorEntityDescription( key="image capture", translation_key="image_capture", - icon="mdi:file-image", value_fn=_retrieve_image_capture_state, is_time_based=True, ), diff --git a/homeassistant/components/august/icons.json b/homeassistant/components/august/icons.json new file mode 100644 index 00000000000..b654b6d912a --- /dev/null +++ b/homeassistant/components/august/icons.json @@ -0,0 +1,9 @@ +{ + "entity": { + "binary_sensor": { + "image_capture": { + "default": "mdi:file-image" + } + } + } +}