added translation between states and loc

This commit is contained in:
Johannes
2022-05-28 22:58:23 +02:00
parent 02f1186fb8
commit 10655e6c35
2 changed files with 12 additions and 43 deletions

View File

@@ -281,7 +281,7 @@ class LuiPagesGen(object):
current_temp = get_attr_safe(entity, "current_temperature", "")
dest_temp = int(get_attr_safe(entity, "temperature", 0)*10)
status = get_attr_safe(entity, "hvac_action", "")
state_value = f"{get_translation(self._locale,status)}\r\n({get_translation(self._locale,entity.state)})"
state_value = f"{get_translation(self._locale, status)}\r\n({get_translation(self._locale, entity.state)})"
min_temp = int(get_attr_safe(entity, "min_temp", 0)*10)
max_temp = int(get_attr_safe(entity, "max_temp", 0)*10)
step_temp = int(get_attr_safe(entity, "target_temp_step", 0.5)*10)