Add icon translations to Plugwise (#108498)

This commit is contained in:
Franck Nijhof 2024-01-20 20:15:53 +01:00 committed by GitHub
parent e71efa0e2b
commit 19bf8970d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 102 additions and 33 deletions

View file

@ -30,14 +30,12 @@ SELECT_TYPES = (
PlugwiseSelectEntityDescription(
key="select_schedule",
translation_key="select_schedule",
icon="mdi:calendar-clock",
command=lambda api, loc, opt: api.set_schedule_state(loc, STATE_ON, opt),
options_key="available_schedules",
),
PlugwiseSelectEntityDescription(
key="select_regulation_mode",
translation_key="regulation_mode",
icon="mdi:hvac",
entity_category=EntityCategory.CONFIG,
command=lambda api, loc, opt: api.set_regulation_mode(opt),
options_key="regulation_modes",
@ -45,7 +43,6 @@ SELECT_TYPES = (
PlugwiseSelectEntityDescription(
key="select_dhw_mode",
translation_key="dhw_mode",
icon="mdi:shower",
entity_category=EntityCategory.CONFIG,
command=lambda api, loc, opt: api.set_dhw_mode(opt),
options_key="dhw_modes",
@ -53,7 +50,6 @@ SELECT_TYPES = (
PlugwiseSelectEntityDescription(
key="select_gateway_mode",
translation_key="gateway_mode",
icon="mdi:cog-outline",
entity_category=EntityCategory.CONFIG,
command=lambda api, loc, opt: api.set_gateway_mode(opt),
options_key="gateway_modes",