mirror of
https://github.com/home-assistant/core.git
synced 2025-07-20 03:37:07 +00:00
Add icon translations to Radarr (#112196)
This commit is contained in:
parent
2ae90d5eed
commit
053649faa5
12
homeassistant/components/radarr/icons.json
Normal file
12
homeassistant/components/radarr/icons.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"entity": {
|
||||
"sensor": {
|
||||
"movies": {
|
||||
"default": "mdi:television"
|
||||
},
|
||||
"queue": {
|
||||
"default": "mdi:download"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -80,7 +80,6 @@ SENSOR_TYPES: dict[str, RadarrSensorEntityDescription[Any]] = {
|
||||
key="movies",
|
||||
translation_key="movies",
|
||||
native_unit_of_measurement="Movies",
|
||||
icon="mdi:television",
|
||||
entity_registry_enabled_default=False,
|
||||
value_fn=lambda data, _: data,
|
||||
),
|
||||
@ -88,7 +87,6 @@ SENSOR_TYPES: dict[str, RadarrSensorEntityDescription[Any]] = {
|
||||
key="queue",
|
||||
translation_key="queue",
|
||||
native_unit_of_measurement="Movies",
|
||||
icon="mdi:download",
|
||||
entity_registry_enabled_default=False,
|
||||
state_class=SensorStateClass.TOTAL,
|
||||
value_fn=lambda data, _: data,
|
||||
|
Loading…
x
Reference in New Issue
Block a user