homeassistant 2025.11.2__py3-none-any.whl → 2025.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- homeassistant/auth/permissions/events.py +2 -0
- homeassistant/bootstrap.py +3 -0
- homeassistant/brands/google.json +2 -0
- homeassistant/brands/philips.json +1 -1
- homeassistant/brands/raspberry_pi.json +1 -1
- homeassistant/brands/victron.json +5 -0
- homeassistant/brands/yale.json +2 -8
- homeassistant/brands/yale_august.json +5 -0
- homeassistant/components/abode/translations/it.json +1 -1
- homeassistant/components/acaia/translations/pl.json +23 -1
- homeassistant/components/accuweather/translations/tr.json +19 -0
- homeassistant/components/actron_air/__init__.py +8 -8
- homeassistant/components/actron_air/climate.py +4 -4
- homeassistant/components/actron_air/config_flow.py +6 -6
- homeassistant/components/actron_air/coordinator.py +6 -6
- homeassistant/components/actron_air/manifest.json +1 -1
- homeassistant/components/actron_air/translations/tr.json +27 -0
- homeassistant/components/adax/config_flow.py +14 -1
- homeassistant/components/adax/sensor.py +53 -17
- homeassistant/components/adguard/__init__.py +1 -1
- homeassistant/components/adguard/manifest.json +1 -1
- homeassistant/components/adguard/update.py +71 -0
- homeassistant/components/ai_task/services.yaml +2 -0
- homeassistant/components/ai_task/translations/tr.json +38 -1
- homeassistant/components/airly/translations/sr-Latn.json +7 -0
- homeassistant/components/airnow/translations/sr-Latn.json +3 -0
- homeassistant/components/airobot/__init__.py +29 -0
- homeassistant/components/airobot/climate.py +168 -0
- homeassistant/components/airobot/config_flow.py +183 -0
- homeassistant/components/airobot/const.py +5 -0
- homeassistant/components/airobot/coordinator.py +59 -0
- homeassistant/components/airobot/entity.py +42 -0
- homeassistant/components/airobot/manifest.json +17 -0
- homeassistant/components/airobot/models.py +15 -0
- homeassistant/components/airobot/quality_scale.yaml +72 -0
- homeassistant/components/airobot/strings.json +44 -0
- homeassistant/components/airobot/translations/bg.json +25 -0
- homeassistant/components/airobot/translations/cs.json +44 -0
- homeassistant/components/airobot/translations/de.json +44 -0
- homeassistant/components/airobot/translations/el.json +43 -0
- homeassistant/components/airobot/translations/en-GB.json +44 -0
- homeassistant/components/airobot/translations/en.json +44 -0
- homeassistant/components/airobot/translations/es.json +44 -0
- homeassistant/components/airobot/translations/et.json +44 -0
- homeassistant/components/airobot/translations/ga.json +40 -0
- homeassistant/components/airobot/translations/lt.json +44 -0
- homeassistant/components/airobot/translations/nl.json +25 -0
- homeassistant/components/airobot/translations/pt.json +40 -0
- homeassistant/components/airobot/translations/sk.json +44 -0
- homeassistant/components/airobot/translations/sv.json +25 -0
- homeassistant/components/airobot/translations/tr.json +40 -0
- homeassistant/components/airobot/translations/zh-Hans.json +44 -0
- homeassistant/components/airobot/translations/zh-Hant.json +44 -0
- homeassistant/components/airos/translations/tr.json +71 -0
- homeassistant/components/airq/translations/sr-Latn.json +7 -0
- homeassistant/components/airthings/translations/tr.json +2 -1
- homeassistant/components/airthings_ble/translations/sr-Latn.json +7 -0
- homeassistant/components/airthings_ble/translations/tr.json +7 -0
- homeassistant/components/airvisual/translations/it.json +1 -1
- homeassistant/components/airvisual/translations/sr-Latn.json +23 -0
- homeassistant/components/airvisual_pro/translations/it.json +1 -1
- homeassistant/components/airvisual_pro/translations/sr-Latn.json +6 -0
- homeassistant/components/airzone/translations/tr.json +9 -0
- homeassistant/components/aladdin_connect/translations/tr.json +7 -1
- homeassistant/components/alarm_control_panel/icons.json +23 -0
- homeassistant/components/alarm_control_panel/strings.json +86 -1
- homeassistant/components/alarm_control_panel/translations/cs.json +86 -1
- homeassistant/components/alarm_control_panel/translations/de.json +86 -1
- homeassistant/components/alarm_control_panel/translations/en-GB.json +86 -1
- homeassistant/components/alarm_control_panel/translations/en.json +86 -1
- homeassistant/components/alarm_control_panel/translations/es.json +86 -1
- homeassistant/components/alarm_control_panel/translations/et.json +86 -1
- homeassistant/components/alarm_control_panel/translations/ga.json +72 -1
- homeassistant/components/alarm_control_panel/translations/lt.json +86 -1
- homeassistant/components/alarm_control_panel/translations/pt.json +72 -1
- homeassistant/components/alarm_control_panel/translations/sk.json +86 -1
- homeassistant/components/alarm_control_panel/translations/sr-Latn.json +5 -1
- homeassistant/components/alarm_control_panel/translations/tr.json +72 -1
- homeassistant/components/alarm_control_panel/translations/zh-Hans.json +72 -1
- homeassistant/components/alarm_control_panel/translations/zh-Hant.json +86 -1
- homeassistant/components/alarm_control_panel/trigger.py +99 -0
- homeassistant/components/alarm_control_panel/triggers.yaml +53 -0
- homeassistant/components/alert/translations/mk.json +10 -0
- homeassistant/components/alexa/handlers.py +5 -2
- homeassistant/components/alexa_devices/config_flow.py +1 -1
- homeassistant/components/alexa_devices/coordinator.py +3 -3
- homeassistant/components/alexa_devices/diagnostics.py +2 -1
- homeassistant/components/alexa_devices/manifest.json +1 -1
- homeassistant/components/alexa_devices/translations/en-GB.json +41 -1
- homeassistant/components/alexa_devices/translations/it.json +24 -1
- homeassistant/components/alexa_devices/translations/sv.json +2 -1
- homeassistant/components/alexa_devices/translations/tr.json +53 -0
- homeassistant/components/amberelectric/__init__.py +2 -2
- homeassistant/components/amberelectric/services.py +3 -1
- homeassistant/components/amberelectric/translations/sv.json +9 -0
- homeassistant/components/amcrest/translations/pt.json +1 -1
- homeassistant/components/analytics/__init__.py +30 -29
- homeassistant/components/analytics/analytics.py +255 -34
- homeassistant/components/analytics/const.py +8 -2
- homeassistant/components/androidtv/config_flow.py +9 -3
- homeassistant/components/androidtv/const.py +6 -2
- homeassistant/components/androidtv/strings.json +7 -0
- homeassistant/components/androidtv/translations/bg.json +7 -0
- homeassistant/components/androidtv/translations/cs.json +7 -0
- homeassistant/components/androidtv/translations/de.json +7 -0
- homeassistant/components/androidtv/translations/en-GB.json +7 -0
- homeassistant/components/androidtv/translations/en.json +7 -0
- homeassistant/components/androidtv/translations/es.json +7 -0
- homeassistant/components/androidtv/translations/et.json +7 -0
- homeassistant/components/androidtv/translations/ga.json +7 -0
- homeassistant/components/androidtv/translations/it.json +7 -0
- homeassistant/components/androidtv/translations/lt.json +7 -0
- homeassistant/components/androidtv/translations/pt.json +7 -0
- homeassistant/components/androidtv/translations/ru.json +7 -0
- homeassistant/components/androidtv/translations/sk.json +7 -0
- homeassistant/components/androidtv/translations/sv.json +7 -0
- homeassistant/components/androidtv/translations/tr.json +7 -0
- homeassistant/components/androidtv/translations/zh-Hans.json +7 -0
- homeassistant/components/androidtv/translations/zh-Hant.json +7 -0
- homeassistant/components/androidtv_remote/translations/it.json +1 -1
- homeassistant/components/androidtv_remote/translations/mk.json +7 -0
- homeassistant/components/anglian_water/__init__.py +74 -0
- homeassistant/components/anglian_water/config_flow.py +103 -0
- homeassistant/components/anglian_water/const.py +4 -0
- homeassistant/components/anglian_water/coordinator.py +49 -0
- homeassistant/components/anglian_water/entity.py +48 -0
- homeassistant/components/anglian_water/manifest.json +10 -0
- homeassistant/components/anglian_water/quality_scale.yaml +83 -0
- homeassistant/components/anglian_water/sensor.py +117 -0
- homeassistant/components/anglian_water/strings.json +55 -0
- homeassistant/components/anglian_water/translations/bg.json +30 -0
- homeassistant/components/anglian_water/translations/cs.json +55 -0
- homeassistant/components/anglian_water/translations/de.json +55 -0
- homeassistant/components/anglian_water/translations/el.json +20 -0
- homeassistant/components/anglian_water/translations/en-GB.json +55 -0
- homeassistant/components/anglian_water/translations/en.json +55 -0
- homeassistant/components/anglian_water/translations/es.json +55 -0
- homeassistant/components/anglian_water/translations/et.json +55 -0
- homeassistant/components/anglian_water/translations/ga.json +54 -0
- homeassistant/components/anglian_water/translations/lt.json +55 -0
- homeassistant/components/anglian_water/translations/nl.json +20 -0
- homeassistant/components/anglian_water/translations/pt.json +54 -0
- homeassistant/components/anglian_water/translations/sk.json +55 -0
- homeassistant/components/{sms/translations/sr-Latn.json → anglian_water/translations/sv.json} +3 -3
- homeassistant/components/anglian_water/translations/tr.json +54 -0
- homeassistant/components/anglian_water/translations/zh-Hans.json +55 -0
- homeassistant/components/anglian_water/translations/zh-Hant.json +55 -0
- homeassistant/components/anthropic/__init__.py +3 -16
- homeassistant/components/anthropic/ai_task.py +80 -0
- homeassistant/components/anthropic/config_flow.py +255 -143
- homeassistant/components/anthropic/const.py +13 -8
- homeassistant/components/anthropic/entity.py +177 -12
- homeassistant/components/anthropic/manifest.json +1 -1
- homeassistant/components/anthropic/strings.json +62 -11
- homeassistant/components/anthropic/translations/bg.json +49 -8
- homeassistant/components/anthropic/translations/ca.json +23 -2
- homeassistant/components/anthropic/translations/cs.json +62 -10
- homeassistant/components/anthropic/translations/de.json +62 -10
- homeassistant/components/anthropic/translations/el.json +60 -9
- homeassistant/components/anthropic/translations/en-GB.json +62 -10
- homeassistant/components/anthropic/translations/en.json +62 -10
- homeassistant/components/anthropic/translations/es.json +62 -10
- homeassistant/components/anthropic/translations/et.json +62 -10
- homeassistant/components/anthropic/translations/fr.json +0 -28
- homeassistant/components/anthropic/translations/fy.json +1 -15
- homeassistant/components/anthropic/translations/ga.json +63 -10
- homeassistant/components/anthropic/translations/he.json +0 -11
- homeassistant/components/anthropic/translations/hu.json +0 -19
- homeassistant/components/anthropic/translations/id.json +0 -10
- homeassistant/components/anthropic/translations/it.json +55 -8
- homeassistant/components/anthropic/translations/ja.json +0 -18
- homeassistant/components/anthropic/translations/ko.json +0 -11
- homeassistant/components/anthropic/translations/lt.json +62 -10
- homeassistant/components/anthropic/translations/mk.json +5 -11
- homeassistant/components/anthropic/translations/nl.json +24 -4
- homeassistant/components/anthropic/translations/pt.json +62 -10
- homeassistant/components/anthropic/translations/ru.json +0 -17
- homeassistant/components/anthropic/translations/sk.json +63 -11
- homeassistant/components/anthropic/translations/sr-Latn.json +0 -12
- homeassistant/components/anthropic/translations/sv.json +50 -18
- homeassistant/components/anthropic/translations/tr.json +82 -0
- homeassistant/components/anthropic/translations/zh-Hans.json +65 -13
- homeassistant/components/anthropic/translations/zh-Hant.json +62 -10
- homeassistant/components/aosmith/translations/it.json +1 -1
- homeassistant/components/aosmith/translations/tr.json +11 -0
- homeassistant/components/apcupsd/const.py +23 -0
- homeassistant/components/apcupsd/sensor.py +64 -1
- homeassistant/components/apcupsd/strings.json +14 -0
- homeassistant/components/apcupsd/translations/cs.json +14 -0
- homeassistant/components/apcupsd/translations/de.json +14 -0
- homeassistant/components/apcupsd/translations/en-GB.json +14 -0
- homeassistant/components/apcupsd/translations/en.json +14 -0
- homeassistant/components/apcupsd/translations/es.json +14 -0
- homeassistant/components/apcupsd/translations/et.json +14 -0
- homeassistant/components/apcupsd/translations/ga.json +14 -0
- homeassistant/components/apcupsd/translations/lt.json +14 -0
- homeassistant/components/apcupsd/translations/pt.json +14 -0
- homeassistant/components/apcupsd/translations/sk.json +14 -0
- homeassistant/components/apcupsd/translations/sr-Latn.json +3 -0
- homeassistant/components/apcupsd/translations/tr.json +14 -0
- homeassistant/components/apcupsd/translations/zh-Hans.json +14 -0
- homeassistant/components/apcupsd/translations/zh-Hant.json +14 -0
- homeassistant/components/apple_tv/manifest.json +1 -0
- homeassistant/components/apple_tv/translations/it.json +1 -1
- homeassistant/components/aseko_pool_live/translations/it.json +1 -1
- homeassistant/components/assist_pipeline/pipeline.py +58 -57
- homeassistant/components/assist_satellite/icons.json +14 -0
- homeassistant/components/assist_satellite/manifest.json +1 -1
- homeassistant/components/assist_satellite/strings.json +54 -1
- homeassistant/components/assist_satellite/translations/bg.json +33 -0
- homeassistant/components/assist_satellite/translations/cs.json +54 -1
- homeassistant/components/assist_satellite/translations/de.json +54 -1
- homeassistant/components/assist_satellite/translations/en-GB.json +54 -1
- homeassistant/components/assist_satellite/translations/en.json +54 -1
- homeassistant/components/assist_satellite/translations/es.json +54 -1
- homeassistant/components/assist_satellite/translations/et.json +54 -1
- homeassistant/components/assist_satellite/translations/ga.json +46 -1
- homeassistant/components/assist_satellite/translations/lt.json +54 -1
- homeassistant/components/assist_satellite/translations/pt.json +46 -1
- homeassistant/components/assist_satellite/translations/sk.json +54 -1
- homeassistant/components/assist_satellite/translations/tr.json +54 -1
- homeassistant/components/assist_satellite/translations/zh-Hans.json +46 -1
- homeassistant/components/assist_satellite/translations/zh-Hant.json +54 -1
- homeassistant/components/assist_satellite/trigger.py +19 -0
- homeassistant/components/assist_satellite/triggers.yaml +20 -0
- homeassistant/components/asuswrt/bridge.py +0 -2
- homeassistant/components/august/__init__.py +8 -11
- homeassistant/components/august/manifest.json +1 -1
- homeassistant/components/august/translations/it.json +1 -1
- homeassistant/components/august/translations/tr.json +23 -1
- homeassistant/components/aussie_broadband/translations/it.json +1 -1
- homeassistant/components/autarco/translations/it.json +1 -1
- homeassistant/components/automation/__init__.py +62 -1
- homeassistant/components/automation/manifest.json +7 -0
- homeassistant/components/automation/strings.json +8 -0
- homeassistant/components/automation/translations/cs.json +8 -0
- homeassistant/components/automation/translations/de.json +8 -0
- homeassistant/components/automation/translations/en-GB.json +8 -0
- homeassistant/components/automation/translations/en.json +8 -0
- homeassistant/components/automation/translations/es.json +9 -1
- homeassistant/components/automation/translations/et.json +8 -0
- homeassistant/components/automation/translations/fr.json +8 -0
- homeassistant/components/automation/translations/lt.json +8 -0
- homeassistant/components/automation/translations/mk.json +10 -0
- homeassistant/components/automation/translations/sk.json +8 -0
- homeassistant/components/automation/translations/sr-Latn.json +28 -0
- homeassistant/components/automation/translations/zh-Hant.json +8 -0
- homeassistant/components/avea/manifest.json +1 -1
- homeassistant/components/awair/manifest.json +2 -2
- homeassistant/components/awair/quality_scale.yaml +98 -0
- homeassistant/components/awair/translations/it.json +1 -1
- homeassistant/components/axis/translations/it.json +2 -2
- homeassistant/components/azure_devops/translations/it.json +1 -1
- homeassistant/components/azure_storage/translations/it.json +2 -2
- homeassistant/components/backblaze_b2/__init__.py +116 -0
- homeassistant/components/backblaze_b2/backup.py +615 -0
- homeassistant/components/backblaze_b2/config_flow.py +288 -0
- homeassistant/components/backblaze_b2/const.py +22 -0
- homeassistant/components/backblaze_b2/diagnostics.py +56 -0
- homeassistant/components/backblaze_b2/manifest.json +12 -0
- homeassistant/components/backblaze_b2/quality_scale.yaml +124 -0
- homeassistant/components/backblaze_b2/repairs.py +93 -0
- homeassistant/components/backblaze_b2/strings.json +92 -0
- homeassistant/components/backblaze_b2/translations/bg.json +32 -0
- homeassistant/components/backblaze_b2/translations/ca.json +13 -0
- homeassistant/components/backblaze_b2/translations/cs.json +92 -0
- homeassistant/components/backblaze_b2/translations/de.json +92 -0
- homeassistant/components/backblaze_b2/translations/el.json +23 -0
- homeassistant/components/backblaze_b2/translations/en-GB.json +92 -0
- homeassistant/components/backblaze_b2/translations/en.json +92 -0
- homeassistant/components/backblaze_b2/translations/es.json +92 -0
- homeassistant/components/backblaze_b2/translations/et.json +92 -0
- homeassistant/components/backblaze_b2/translations/ga.json +92 -0
- homeassistant/components/backblaze_b2/translations/he.json +13 -0
- homeassistant/components/backblaze_b2/translations/it.json +92 -0
- homeassistant/components/backblaze_b2/translations/lt.json +92 -0
- homeassistant/components/backblaze_b2/translations/nl.json +13 -0
- homeassistant/components/backblaze_b2/translations/pt.json +92 -0
- homeassistant/components/backblaze_b2/translations/sk.json +92 -0
- homeassistant/components/backblaze_b2/translations/sr-Latn.json +91 -0
- homeassistant/components/backblaze_b2/translations/sv.json +59 -0
- homeassistant/components/backblaze_b2/translations/tr.json +92 -0
- homeassistant/components/backblaze_b2/translations/zh-Hans.json +92 -0
- homeassistant/components/backblaze_b2/translations/zh-Hant.json +92 -0
- homeassistant/components/bang_olufsen/config_flow.py +2 -2
- homeassistant/components/bang_olufsen/const.py +96 -30
- homeassistant/components/bang_olufsen/diagnostics.py +4 -2
- homeassistant/components/bang_olufsen/event.py +137 -18
- homeassistant/components/bang_olufsen/icons.json +274 -0
- homeassistant/components/bang_olufsen/manifest.json +1 -1
- homeassistant/components/bang_olufsen/media_player.py +3 -2
- homeassistant/components/bang_olufsen/strings.json +992 -0
- homeassistant/components/bang_olufsen/translations/bg.json +3 -0
- homeassistant/components/bang_olufsen/translations/cs.json +992 -0
- homeassistant/components/bang_olufsen/translations/de.json +992 -0
- homeassistant/components/bang_olufsen/translations/en-GB.json +992 -0
- homeassistant/components/bang_olufsen/translations/en.json +992 -0
- homeassistant/components/bang_olufsen/translations/es.json +992 -0
- homeassistant/components/bang_olufsen/translations/et.json +992 -0
- homeassistant/components/bang_olufsen/translations/ga.json +992 -0
- homeassistant/components/bang_olufsen/translations/lt.json +992 -0
- homeassistant/components/bang_olufsen/translations/nl.json +902 -0
- homeassistant/components/bang_olufsen/translations/pt.json +992 -0
- homeassistant/components/bang_olufsen/translations/sk.json +992 -0
- homeassistant/components/bang_olufsen/translations/tr.json +992 -0
- homeassistant/components/bang_olufsen/translations/zh-Hans.json +992 -0
- homeassistant/components/bang_olufsen/translations/zh-Hant.json +992 -0
- homeassistant/components/bang_olufsen/util.py +33 -1
- homeassistant/components/bang_olufsen/websocket.py +60 -15
- homeassistant/components/bayesian/translations/lb.json +9 -0
- homeassistant/components/bayesian/translations/mk.json +22 -0
- homeassistant/components/bayesian/translations/pl.json +1 -0
- homeassistant/components/bayesian/translations/sr-Latn.json +2 -1
- homeassistant/components/bayesian/translations/sv.json +8 -2
- homeassistant/components/bayesian/translations/tr.json +199 -0
- homeassistant/components/binary_sensor/icons.json +8 -0
- homeassistant/components/binary_sensor/strings.json +36 -1
- homeassistant/components/binary_sensor/translations/cs.json +36 -1
- homeassistant/components/binary_sensor/translations/de.json +36 -1
- homeassistant/components/binary_sensor/translations/en-GB.json +36 -1
- homeassistant/components/binary_sensor/translations/en.json +36 -1
- homeassistant/components/binary_sensor/translations/es.json +36 -1
- homeassistant/components/binary_sensor/translations/et.json +36 -1
- homeassistant/components/binary_sensor/translations/lt.json +36 -1
- homeassistant/components/binary_sensor/translations/mk.json +8 -0
- homeassistant/components/binary_sensor/translations/sk.json +36 -1
- homeassistant/components/binary_sensor/translations/sr-Latn.json +1 -0
- homeassistant/components/binary_sensor/translations/zh-Hant.json +36 -1
- homeassistant/components/binary_sensor/trigger.py +67 -0
- homeassistant/components/binary_sensor/triggers.yaml +25 -0
- homeassistant/components/blebox/translations/sr-Latn.json +1 -0
- homeassistant/components/blink/translations/it.json +1 -1
- homeassistant/components/blink/translations/tr.json +16 -1
- homeassistant/components/blue_current/manifest.json +1 -1
- homeassistant/components/blue_current/translations/it.json +1 -1
- homeassistant/components/blue_current/translations/tr.json +44 -0
- homeassistant/components/bluemaestro/config_flow.py +1 -1
- homeassistant/components/bluetooth/manifest.json +1 -1
- homeassistant/components/bluetooth/passive_update_processor.py +6 -0
- homeassistant/components/bmw_connected_drive/translations/it.json +2 -2
- homeassistant/components/bmw_connected_drive/translations/lb.json +9 -0
- homeassistant/components/bosch_alarm/__init__.py +2 -2
- homeassistant/components/bosch_alarm/config_flow.py +1 -1
- homeassistant/components/bosch_alarm/diagnostics.py +2 -1
- homeassistant/components/bosch_alarm/entity.py +1 -1
- homeassistant/components/bosch_alarm/manifest.json +1 -1
- homeassistant/components/bosch_alarm/translations/it.json +1 -1
- homeassistant/components/bosch_alarm/translations/mk.json +10 -0
- homeassistant/components/bosch_shc/translations/it.json +1 -1
- homeassistant/components/braviatv/translations/it.json +1 -1
- homeassistant/components/braviatv/translations/sr-Latn.json +5 -0
- homeassistant/components/bring/translations/it.json +1 -1
- homeassistant/components/bring/translations/mk.json +3 -1
- homeassistant/components/bring/translations/pl.json +5 -0
- homeassistant/components/broadlink/manifest.json +1 -0
- homeassistant/components/broadlink/translations/sr-Latn.json +5 -0
- homeassistant/components/brother/__init__.py +10 -1
- homeassistant/components/brother/config_flow.py +14 -2
- homeassistant/components/brother/const.py +4 -1
- homeassistant/components/brother/entity.py +30 -0
- homeassistant/components/brother/manifest.json +2 -1
- homeassistant/components/brother/quality_scale.yaml +78 -0
- homeassistant/components/brother/sensor.py +12 -24
- homeassistant/components/brother/strings.json +13 -2
- homeassistant/components/brother/translations/bg.json +8 -0
- homeassistant/components/brother/translations/cs.json +11 -0
- homeassistant/components/brother/translations/de.json +11 -0
- homeassistant/components/brother/translations/en-GB.json +11 -0
- homeassistant/components/brother/translations/en.json +11 -0
- homeassistant/components/brother/translations/es.json +11 -0
- homeassistant/components/brother/translations/et.json +11 -0
- homeassistant/components/brother/translations/ga.json +11 -0
- homeassistant/components/brother/translations/it.json +14 -1
- homeassistant/components/brother/translations/lt.json +11 -0
- homeassistant/components/brother/translations/pl.json +11 -0
- homeassistant/components/brother/translations/pt.json +11 -0
- homeassistant/components/brother/translations/sk.json +11 -0
- homeassistant/components/brother/translations/sr-Latn.json +5 -0
- homeassistant/components/brother/translations/sv.json +11 -0
- homeassistant/components/brother/translations/tr.json +58 -2
- homeassistant/components/brother/translations/zh-Hans.json +11 -0
- homeassistant/components/brother/translations/zh-Hant.json +11 -0
- homeassistant/components/brunt/translations/it.json +1 -1
- homeassistant/components/bryant_evolution/translations/it.json +1 -1
- homeassistant/components/bsblan/translations/it.json +1 -1
- homeassistant/components/bsblan/translations/sr-Latn.json +4 -0
- homeassistant/components/bsblan/translations/tr.json +22 -2
- homeassistant/components/bthome/binary_sensor.py +2 -4
- homeassistant/components/bthome/sensor.py +13 -4
- homeassistant/components/bthome/strings.json +43 -0
- homeassistant/components/bthome/translations/bg.json +26 -0
- homeassistant/components/bthome/translations/cs.json +43 -0
- homeassistant/components/bthome/translations/de.json +43 -0
- homeassistant/components/bthome/translations/en-GB.json +43 -0
- homeassistant/components/bthome/translations/en.json +43 -0
- homeassistant/components/bthome/translations/es.json +43 -0
- homeassistant/components/bthome/translations/et.json +43 -0
- homeassistant/components/bthome/translations/ga.json +43 -0
- homeassistant/components/bthome/translations/it.json +46 -1
- homeassistant/components/bthome/translations/lt.json +43 -0
- homeassistant/components/bthome/translations/pt-BR.json +29 -0
- homeassistant/components/bthome/translations/pt.json +43 -0
- homeassistant/components/bthome/translations/sk.json +43 -0
- homeassistant/components/bthome/translations/sv.json +43 -0
- homeassistant/components/bthome/translations/tr.json +43 -0
- homeassistant/components/bthome/translations/uk.json +25 -0
- homeassistant/components/bthome/translations/zh-Hans.json +43 -0
- homeassistant/components/bthome/translations/zh-Hant.json +43 -0
- homeassistant/components/button/translations/sr-Latn.json +20 -0
- homeassistant/components/caldav/manifest.json +1 -1
- homeassistant/components/caldav/translations/it.json +1 -1
- homeassistant/components/cambridge_audio/translations/it.json +1 -1
- homeassistant/components/camera/__init__.py +1 -1
- homeassistant/components/camera/translations/mk.json +4 -2
- homeassistant/components/climate/icons.json +17 -0
- homeassistant/components/climate/strings.json +64 -1
- homeassistant/components/climate/translations/bg.json +41 -1
- homeassistant/components/climate/translations/cs.json +64 -1
- homeassistant/components/climate/translations/de.json +64 -1
- homeassistant/components/climate/translations/el.json +54 -1
- homeassistant/components/climate/translations/en-GB.json +64 -1
- homeassistant/components/climate/translations/en.json +64 -1
- homeassistant/components/climate/translations/es.json +64 -1
- homeassistant/components/climate/translations/et.json +64 -1
- homeassistant/components/climate/translations/ga.json +54 -1
- homeassistant/components/climate/translations/lt.json +64 -1
- homeassistant/components/climate/translations/mk.json +10 -3
- homeassistant/components/climate/translations/pt.json +54 -1
- homeassistant/components/climate/translations/ru.json +54 -1
- homeassistant/components/climate/translations/sk.json +64 -1
- homeassistant/components/climate/translations/sr-Latn.json +101 -3
- homeassistant/components/climate/translations/sv.json +17 -1
- homeassistant/components/climate/translations/tr.json +54 -1
- homeassistant/components/climate/translations/zh-Hans.json +48 -1
- homeassistant/components/climate/translations/zh-Hant.json +64 -1
- homeassistant/components/climate/trigger.py +43 -0
- homeassistant/components/climate/triggers.yaml +21 -0
- homeassistant/components/cloud/__init__.py +65 -16
- homeassistant/components/cloud/account_link.py +5 -2
- homeassistant/components/cloud/ai_task.py +195 -0
- homeassistant/components/cloud/client.py +9 -5
- homeassistant/components/cloud/const.py +3 -0
- homeassistant/components/cloud/conversation.py +68 -0
- homeassistant/components/cloud/entity.py +614 -0
- homeassistant/components/cloud/helpers.py +2 -0
- homeassistant/components/cloud/http_api.py +21 -0
- homeassistant/components/cloud/manifest.json +1 -1
- homeassistant/components/cloud/strings.json +7 -0
- homeassistant/components/cloud/translations/cs.json +7 -0
- homeassistant/components/cloud/translations/de.json +7 -0
- homeassistant/components/cloud/translations/en-GB.json +7 -0
- homeassistant/components/cloud/translations/en.json +7 -0
- homeassistant/components/cloud/translations/es.json +7 -0
- homeassistant/components/cloud/translations/et.json +7 -0
- homeassistant/components/cloud/translations/ga.json +7 -0
- homeassistant/components/cloud/translations/lt.json +7 -0
- homeassistant/components/cloud/translations/pt.json +7 -0
- homeassistant/components/cloud/translations/sk.json +7 -0
- homeassistant/components/cloud/translations/tr.json +7 -0
- homeassistant/components/cloud/translations/zh-Hans.json +7 -0
- homeassistant/components/cloud/translations/zh-Hant.json +7 -0
- homeassistant/components/cloudflare/translations/it.json +1 -1
- homeassistant/components/co2signal/translations/it.json +1 -1
- homeassistant/components/coinbase/translations/sv.json +2 -1
- homeassistant/components/coinbase/translations/tr.json +10 -1
- homeassistant/components/color_extractor/translations/mk.json +7 -0
- homeassistant/components/comelit/binary_sensor.py +3 -2
- homeassistant/components/comelit/const.py +10 -0
- homeassistant/components/comelit/coordinator.py +2 -6
- homeassistant/components/comelit/cover.py +3 -2
- homeassistant/components/comelit/light.py +3 -2
- homeassistant/components/comelit/sensor.py +4 -3
- homeassistant/components/comelit/switch.py +3 -2
- homeassistant/components/comelit/translations/it.json +1 -1
- homeassistant/components/comelit/translations/tr.json +2 -0
- homeassistant/components/comelit/utils.py +7 -17
- homeassistant/components/compit/translations/tr.json +35 -0
- homeassistant/components/config/area_registry.py +25 -0
- homeassistant/components/config/floor_registry.py +23 -0
- homeassistant/components/conversation/__init__.py +49 -10
- homeassistant/components/conversation/agent_manager.py +8 -0
- homeassistant/components/conversation/chat_log.py +171 -2
- homeassistant/components/conversation/const.py +15 -1
- homeassistant/components/conversation/default_agent.py +86 -47
- homeassistant/components/conversation/http.py +116 -1
- homeassistant/components/conversation/manifest.json +1 -1
- homeassistant/components/cookidoo/translations/it.json +2 -2
- homeassistant/components/cookidoo/translations/mk.json +19 -0
- homeassistant/components/coolmaster/const.py +2 -0
- homeassistant/components/coolmaster/coordinator.py +33 -5
- homeassistant/components/cosori/__init__.py +1 -0
- homeassistant/components/cosori/manifest.json +6 -0
- homeassistant/components/counter/translations/sr-Latn.json +41 -1
- homeassistant/components/cover/translations/sr-Latn.json +5 -1
- homeassistant/components/cover/translations/zh-Hant.json +1 -1
- homeassistant/components/cync/__init__.py +6 -1
- homeassistant/components/cync/translations/tr.json +46 -0
- homeassistant/components/date/translations/mk.json +12 -0
- homeassistant/components/datetime/translations/mk.json +11 -0
- homeassistant/components/datetime/translations/sr-Latn.json +17 -0
- homeassistant/components/debugpy/manifest.json +1 -1
- homeassistant/components/deconz/translations/mk.json +3 -1
- homeassistant/components/deconz/translations/pt.json +1 -1
- homeassistant/components/decora_wifi/light.py +3 -0
- homeassistant/components/deluge/translations/it.json +1 -1
- homeassistant/components/deluge/translations/tr.json +8 -0
- homeassistant/components/demo/translations/sr-Latn.json +3 -0
- homeassistant/components/derivative/icons.json +5 -0
- homeassistant/components/derivative/sensor.py +19 -7
- homeassistant/components/derivative/services.yaml +1 -0
- homeassistant/components/derivative/strings.json +6 -0
- homeassistant/components/derivative/translations/bg.json +5 -0
- homeassistant/components/derivative/translations/cs.json +6 -0
- homeassistant/components/derivative/translations/de.json +6 -0
- homeassistant/components/derivative/translations/el.json +5 -0
- homeassistant/components/derivative/translations/en-GB.json +6 -0
- homeassistant/components/derivative/translations/en.json +6 -0
- homeassistant/components/derivative/translations/es.json +6 -0
- homeassistant/components/derivative/translations/et.json +6 -0
- homeassistant/components/derivative/translations/ga.json +6 -0
- homeassistant/components/derivative/translations/lt.json +6 -0
- homeassistant/components/derivative/translations/nl.json +5 -0
- homeassistant/components/derivative/translations/pt.json +6 -0
- homeassistant/components/derivative/translations/sk.json +6 -0
- homeassistant/components/derivative/translations/sr-Latn.json +41 -4
- homeassistant/components/derivative/translations/sv.json +5 -0
- homeassistant/components/derivative/translations/tr.json +6 -0
- homeassistant/components/derivative/translations/zh-Hans.json +6 -0
- homeassistant/components/derivative/translations/zh-Hant.json +6 -0
- homeassistant/components/devolo_home_control/__init__.py +14 -8
- homeassistant/components/devolo_home_control/manifest.json +1 -1
- homeassistant/components/devolo_home_control/strings.json +1 -1
- homeassistant/components/devolo_home_control/translations/it.json +1 -1
- homeassistant/components/devolo_home_network/translations/it.json +1 -1
- homeassistant/components/discord/translations/it.json +1 -1
- homeassistant/components/discovergy/translations/it.json +1 -1
- homeassistant/components/dlna_dmr/manifest.json +2 -1
- homeassistant/components/dlna_dms/manifest.json +2 -1
- homeassistant/components/doorbird/translations/it.json +1 -1
- homeassistant/components/dormakaba_dkey/translations/it.json +1 -1
- homeassistant/components/downloader/translations/tr.json +8 -0
- homeassistant/components/drop_connect/translations/mk.json +2 -1
- homeassistant/components/droplet/config_flow.py +13 -8
- homeassistant/components/droplet/translations/sv.json +10 -0
- homeassistant/components/droplet/translations/tr.json +40 -0
- homeassistant/components/duckdns/__init__.py +102 -18
- homeassistant/components/duckdns/config_flow.py +81 -0
- homeassistant/components/duckdns/const.py +7 -0
- homeassistant/components/duckdns/issue.py +40 -0
- homeassistant/components/duckdns/manifest.json +3 -3
- homeassistant/components/duckdns/services.yaml +4 -1
- homeassistant/components/duckdns/strings.json +41 -1
- homeassistant/components/duckdns/translations/bg.json +26 -0
- homeassistant/components/duckdns/translations/ca.json +0 -1
- homeassistant/components/duckdns/translations/cs.json +41 -1
- homeassistant/components/duckdns/translations/de.json +41 -1
- homeassistant/components/duckdns/translations/el.json +8 -1
- homeassistant/components/duckdns/translations/en-GB.json +41 -1
- homeassistant/components/duckdns/translations/en.json +41 -1
- homeassistant/components/duckdns/translations/es.json +41 -1
- homeassistant/components/duckdns/translations/et.json +41 -1
- homeassistant/components/duckdns/translations/fi.json +0 -1
- homeassistant/components/duckdns/translations/fr.json +0 -1
- homeassistant/components/duckdns/translations/ga.json +40 -1
- homeassistant/components/duckdns/translations/hu.json +0 -1
- homeassistant/components/duckdns/translations/it.json +0 -1
- homeassistant/components/duckdns/translations/ja.json +0 -1
- homeassistant/components/duckdns/translations/ko.json +0 -1
- homeassistant/components/duckdns/translations/lt.json +41 -1
- homeassistant/components/duckdns/translations/nl.json +8 -1
- homeassistant/components/duckdns/translations/pt.json +41 -1
- homeassistant/components/duckdns/translations/ru.json +0 -1
- homeassistant/components/duckdns/translations/sk.json +41 -1
- homeassistant/components/duckdns/translations/sv.json +13 -1
- homeassistant/components/duckdns/translations/tr.json +40 -1
- homeassistant/components/duckdns/translations/zh-Hans.json +41 -1
- homeassistant/components/duckdns/translations/zh-Hant.json +40 -0
- homeassistant/components/ecobee/manifest.json +1 -1
- homeassistant/components/ecovacs/icons.json +6 -0
- homeassistant/components/ecovacs/manifest.json +1 -1
- homeassistant/components/ecovacs/select.py +19 -4
- homeassistant/components/ecovacs/strings.json +13 -0
- homeassistant/components/ecovacs/switch.py +7 -0
- homeassistant/components/ecovacs/translations/bg.json +8 -0
- homeassistant/components/ecovacs/translations/cs.json +13 -0
- homeassistant/components/ecovacs/translations/de.json +13 -0
- homeassistant/components/ecovacs/translations/en-GB.json +15 -2
- homeassistant/components/ecovacs/translations/en.json +13 -0
- homeassistant/components/ecovacs/translations/es.json +13 -0
- homeassistant/components/ecovacs/translations/et.json +13 -0
- homeassistant/components/ecovacs/translations/ga.json +13 -0
- homeassistant/components/ecovacs/translations/it.json +13 -0
- homeassistant/components/ecovacs/translations/lt.json +13 -0
- homeassistant/components/ecovacs/translations/pt.json +13 -0
- homeassistant/components/ecovacs/translations/sk.json +13 -0
- homeassistant/components/ecovacs/translations/sr-Latn.json +10 -0
- homeassistant/components/ecovacs/translations/sv.json +10 -0
- homeassistant/components/ecovacs/translations/tr.json +52 -1
- homeassistant/components/ecovacs/translations/zh-Hans.json +13 -0
- homeassistant/components/ecovacs/translations/zh-Hant.json +13 -0
- homeassistant/components/ecowitt/manifest.json +1 -0
- homeassistant/components/ecowitt/sensor.py +4 -8
- homeassistant/components/edl21/translations/de.json +1 -1
- homeassistant/components/efergy/translations/it.json +1 -1
- homeassistant/components/ekeybionyx/translations/tr.json +66 -0
- homeassistant/components/electric_kiwi/translations/it.json +1 -1
- homeassistant/components/elevenlabs/translations/tr.json +17 -1
- homeassistant/components/elkm1/__init__.py +72 -38
- homeassistant/components/elkm1/config_flow.py +5 -4
- homeassistant/components/elkm1/manifest.json +1 -1
- homeassistant/components/elkm1/sensor.py +1 -3
- homeassistant/components/elkm1/translations/tr.json +4 -0
- homeassistant/components/elmax/translations/it.json +1 -1
- homeassistant/components/emoncms/quality_scale.yaml +84 -0
- homeassistant/components/emoncms/sensor.py +4 -2
- homeassistant/components/energy/data.py +54 -5
- homeassistant/components/energy/translations/sr-Latn.json +64 -0
- homeassistant/components/energy/validate.py +382 -212
- homeassistant/components/energy/websocket_api.py +1 -0
- homeassistant/components/energyid/__init__.py +401 -0
- homeassistant/components/energyid/config_flow.py +293 -0
- homeassistant/components/energyid/const.py +21 -0
- homeassistant/components/energyid/energyid_sensor_mapping_flow.py +156 -0
- homeassistant/components/energyid/manifest.json +12 -0
- homeassistant/components/energyid/quality_scale.yaml +137 -0
- homeassistant/components/energyid/strings.json +71 -0
- homeassistant/components/energyid/translations/bg.json +7 -0
- homeassistant/components/energyid/translations/cs.json +71 -0
- homeassistant/components/energyid/translations/de.json +71 -0
- homeassistant/components/energyid/translations/el.json +53 -0
- homeassistant/components/energyid/translations/en-GB.json +71 -0
- homeassistant/components/energyid/translations/en.json +71 -0
- homeassistant/components/energyid/translations/es.json +71 -0
- homeassistant/components/energyid/translations/et.json +71 -0
- homeassistant/components/energyid/translations/ga.json +71 -0
- homeassistant/components/energyid/translations/it.json +71 -0
- homeassistant/components/energyid/translations/ja.json +28 -0
- homeassistant/components/energyid/translations/lt.json +71 -0
- homeassistant/components/energyid/translations/pt.json +71 -0
- homeassistant/components/energyid/translations/sk.json +71 -0
- homeassistant/components/energyid/translations/sv.json +37 -0
- homeassistant/components/energyid/translations/tr.json +71 -0
- homeassistant/components/energyid/translations/zh-Hans.json +71 -0
- homeassistant/components/energyid/translations/zh-Hant.json +71 -0
- homeassistant/components/enphase_envoy/diagnostics.py +3 -0
- homeassistant/components/enphase_envoy/manifest.json +1 -1
- homeassistant/components/enphase_envoy/sensor.py +177 -328
- homeassistant/components/enphase_envoy/translations/fr.json +6 -0
- homeassistant/components/enphase_envoy/translations/it.json +2 -2
- homeassistant/components/enphase_envoy/translations/tr.json +15 -0
- homeassistant/components/esphome/__init__.py +62 -1
- homeassistant/components/esphome/config_flow.py +2 -2
- homeassistant/components/esphome/const.py +1 -1
- homeassistant/components/esphome/entity.py +3 -20
- homeassistant/components/esphome/entry_data.py +0 -8
- homeassistant/components/esphome/manager.py +0 -4
- homeassistant/components/esphome/manifest.json +1 -1
- homeassistant/components/esphome/strings.json +1 -1
- homeassistant/components/esphome/translations/bg.json +0 -1
- homeassistant/components/esphome/translations/ca.json +0 -1
- homeassistant/components/esphome/translations/cs.json +1 -1
- homeassistant/components/esphome/translations/da.json +0 -1
- homeassistant/components/esphome/translations/de.json +1 -1
- homeassistant/components/esphome/translations/el.json +0 -1
- homeassistant/components/esphome/translations/en-GB.json +1 -1
- homeassistant/components/esphome/translations/en.json +1 -1
- homeassistant/components/esphome/translations/es.json +1 -1
- homeassistant/components/esphome/translations/et.json +1 -1
- homeassistant/components/esphome/translations/fi.json +0 -1
- homeassistant/components/esphome/translations/fr.json +0 -1
- homeassistant/components/esphome/translations/ga.json +0 -1
- homeassistant/components/esphome/translations/he.json +0 -1
- homeassistant/components/esphome/translations/hu.json +0 -1
- homeassistant/components/esphome/translations/id.json +0 -1
- homeassistant/components/esphome/translations/it.json +2 -3
- homeassistant/components/esphome/translations/ja.json +0 -1
- homeassistant/components/esphome/translations/ko.json +0 -1
- homeassistant/components/esphome/translations/lt.json +1 -1
- homeassistant/components/esphome/translations/nb.json +0 -1
- homeassistant/components/esphome/translations/nl.json +0 -1
- homeassistant/components/esphome/translations/pl.json +0 -1
- homeassistant/components/esphome/translations/pt-BR.json +0 -1
- homeassistant/components/esphome/translations/pt.json +1 -1
- homeassistant/components/esphome/translations/ro.json +0 -1
- homeassistant/components/esphome/translations/ru.json +0 -1
- homeassistant/components/esphome/translations/sk.json +1 -1
- homeassistant/components/esphome/translations/sl.json +0 -1
- homeassistant/components/esphome/translations/sv.json +0 -1
- homeassistant/components/esphome/translations/tr.json +1 -1
- homeassistant/components/esphome/translations/uk.json +0 -1
- homeassistant/components/esphome/translations/vi.json +0 -1
- homeassistant/components/esphome/translations/zh-Hans.json +1 -1
- homeassistant/components/esphome/translations/zh-Hant.json +1 -1
- homeassistant/components/esphome/websocket_api.py +52 -0
- homeassistant/components/essent/__init__.py +29 -0
- homeassistant/components/essent/config_flow.py +47 -0
- homeassistant/components/essent/const.py +29 -0
- homeassistant/components/essent/coordinator.py +108 -0
- homeassistant/components/essent/entity.py +36 -0
- homeassistant/components/essent/manifest.json +12 -0
- homeassistant/components/essent/quality_scale.yaml +89 -0
- homeassistant/components/essent/sensor.py +216 -0
- homeassistant/components/essent/strings.json +70 -0
- homeassistant/components/essent/translations/bg.json +64 -0
- homeassistant/components/essent/translations/cs.json +70 -0
- homeassistant/components/essent/translations/de.json +70 -0
- homeassistant/components/essent/translations/el.json +9 -0
- homeassistant/components/essent/translations/en-GB.json +70 -0
- homeassistant/components/essent/translations/en.json +70 -0
- homeassistant/components/essent/translations/es.json +70 -0
- homeassistant/components/essent/translations/et.json +70 -0
- homeassistant/components/essent/translations/ga.json +70 -0
- homeassistant/components/essent/translations/lt.json +70 -0
- homeassistant/components/essent/translations/nl.json +41 -0
- homeassistant/components/essent/translations/pt.json +70 -0
- homeassistant/components/essent/translations/sk.json +70 -0
- homeassistant/components/essent/translations/tr.json +70 -0
- homeassistant/components/essent/translations/zh-Hans.json +70 -0
- homeassistant/components/essent/translations/zh-Hant.json +70 -0
- homeassistant/components/eufylife_ble/config_flow.py +1 -1
- homeassistant/components/event/translations/pl.json +2 -1
- homeassistant/components/event/translations/sr-Latn.json +16 -1
- homeassistant/components/ezviz/translations/es.json +1 -1
- homeassistant/components/ezviz/translations/it.json +1 -1
- homeassistant/components/fan/icons.json +8 -0
- homeassistant/components/fan/strings.json +34 -1
- homeassistant/components/fan/translations/bg.json +20 -1
- homeassistant/components/fan/translations/cs.json +34 -1
- homeassistant/components/fan/translations/de.json +34 -1
- homeassistant/components/fan/translations/en-GB.json +34 -1
- homeassistant/components/fan/translations/en.json +34 -1
- homeassistant/components/fan/translations/es.json +34 -1
- homeassistant/components/fan/translations/et.json +34 -1
- homeassistant/components/fan/translations/ga.json +30 -1
- homeassistant/components/fan/translations/lt.json +34 -1
- homeassistant/components/fan/translations/mk.json +11 -0
- homeassistant/components/fan/translations/nl.json +6 -1
- homeassistant/components/fan/translations/pt.json +30 -1
- homeassistant/components/fan/translations/sk.json +34 -1
- homeassistant/components/fan/translations/tr.json +30 -1
- homeassistant/components/fan/translations/zh-Hans.json +27 -1
- homeassistant/components/fan/translations/zh-Hant.json +34 -1
- homeassistant/components/fan/trigger.py +17 -0
- homeassistant/components/fan/triggers.yaml +18 -0
- homeassistant/components/feedreader/translations/it.json +1 -1
- homeassistant/components/fibaro/translations/it.json +1 -1
- homeassistant/components/file/__init__.py +2 -2
- homeassistant/components/file/services.py +15 -15
- homeassistant/components/file/translations/de.json +3 -3
- homeassistant/components/file/translations/mk.json +11 -0
- homeassistant/components/file/translations/tr.json +26 -0
- homeassistant/components/filesize/translations/it.json +1 -1
- homeassistant/components/filter/translations/sr-Latn.json +149 -11
- homeassistant/components/filter/translations/zh-Hans.json +1 -1
- homeassistant/components/fing/translations/tr.json +24 -0
- homeassistant/components/firefly_iii/config_flow.py +45 -0
- homeassistant/components/firefly_iii/strings.json +16 -1
- homeassistant/components/firefly_iii/translations/bg.json +11 -1
- homeassistant/components/firefly_iii/translations/ca.json +12 -1
- homeassistant/components/firefly_iii/translations/cs.json +16 -1
- homeassistant/components/firefly_iii/translations/de.json +18 -3
- homeassistant/components/firefly_iii/translations/el.json +14 -1
- homeassistant/components/firefly_iii/translations/en-GB.json +16 -1
- homeassistant/components/firefly_iii/translations/en.json +16 -1
- homeassistant/components/firefly_iii/translations/es.json +16 -1
- homeassistant/components/firefly_iii/translations/et.json +16 -1
- homeassistant/components/firefly_iii/translations/ga.json +16 -1
- homeassistant/components/firefly_iii/translations/he.json +12 -1
- homeassistant/components/firefly_iii/translations/it.json +19 -0
- homeassistant/components/firefly_iii/translations/lt.json +16 -1
- homeassistant/components/firefly_iii/translations/nl.json +12 -1
- homeassistant/components/firefly_iii/translations/pt.json +16 -1
- homeassistant/components/firefly_iii/translations/sk.json +16 -1
- homeassistant/components/firefly_iii/translations/sr-Latn.json +17 -0
- homeassistant/components/firefly_iii/translations/sv.json +19 -1
- homeassistant/components/firefly_iii/translations/tr.json +96 -0
- homeassistant/components/firefly_iii/translations/zh-Hans.json +16 -1
- homeassistant/components/firefly_iii/translations/zh-Hant.json +16 -1
- homeassistant/components/fireservicerota/translations/it.json +1 -1
- homeassistant/components/fitbit/translations/it.json +1 -1
- homeassistant/components/flume/translations/it.json +1 -1
- homeassistant/components/forked_daapd/translations/sr-Latn.json +8 -0
- homeassistant/components/foscam/translations/tr.json +45 -1
- homeassistant/components/freebox/translations/fr.json +9 -0
- homeassistant/components/fritz/coordinator.py +15 -0
- homeassistant/components/fritz/diagnostics.py +1 -0
- homeassistant/components/fritz/manifest.json +1 -1
- homeassistant/components/fritz/translations/it.json +2 -2
- homeassistant/components/fritz/translations/sv.json +3 -0
- homeassistant/components/fritz/translations/tr.json +24 -0
- homeassistant/components/fritzbox/binary_sensor.py +3 -0
- homeassistant/components/fritzbox/button.py +3 -0
- homeassistant/components/fritzbox/climate.py +3 -0
- homeassistant/components/fritzbox/cover.py +3 -0
- homeassistant/components/fritzbox/light.py +3 -0
- homeassistant/components/fritzbox/sensor.py +3 -0
- homeassistant/components/fritzbox/switch.py +3 -0
- homeassistant/components/fritzbox/translations/it.json +2 -2
- homeassistant/components/fritzbox_callmonitor/translations/it.json +1 -1
- homeassistant/components/fronius/manifest.json +1 -0
- homeassistant/components/fronius/translations/it.json +1 -1
- homeassistant/components/fronius/translations/sr-Latn.json +3 -0
- homeassistant/components/frontend/__init__.py +40 -4
- homeassistant/components/frontend/manifest.json +4 -1
- homeassistant/components/frontend/storage.py +151 -5
- homeassistant/components/frontend/strings.json +8 -0
- homeassistant/components/frontend/translations/bg.json +8 -0
- homeassistant/components/frontend/translations/cs.json +8 -0
- homeassistant/components/frontend/translations/de.json +10 -2
- homeassistant/components/frontend/translations/el.json +8 -0
- homeassistant/components/frontend/translations/en-GB.json +8 -0
- homeassistant/components/frontend/translations/en.json +8 -0
- homeassistant/components/frontend/translations/es.json +8 -0
- homeassistant/components/frontend/translations/et.json +8 -0
- homeassistant/components/frontend/translations/fr.json +8 -0
- homeassistant/components/frontend/translations/ga.json +8 -0
- homeassistant/components/frontend/translations/lt.json +8 -0
- homeassistant/components/frontend/translations/pt.json +8 -0
- homeassistant/components/frontend/translations/ru.json +8 -0
- homeassistant/components/frontend/translations/sk.json +8 -0
- homeassistant/components/frontend/translations/sr-Latn.json +8 -0
- homeassistant/components/frontend/translations/tr.json +8 -0
- homeassistant/components/frontend/translations/zh-Hans.json +8 -0
- homeassistant/components/frontend/translations/zh-Hant.json +8 -0
- homeassistant/components/frontier_silicon/translations/it.json +1 -1
- homeassistant/components/fujitsu_fglair/translations/it.json +1 -1
- homeassistant/components/fully_kiosk/translations/tr.json +15 -0
- homeassistant/components/fyta/translations/it.json +1 -1
- homeassistant/components/fyta/translations/sr-Latn.json +6 -0
- homeassistant/components/generic/manifest.json +1 -1
- homeassistant/components/generic/translations/sr-Latn.json +42 -0
- homeassistant/components/generic_hygrostat/translations/sr-Latn.json +36 -4
- homeassistant/components/generic_thermostat/translations/cs.json +2 -2
- homeassistant/components/generic_thermostat/translations/sr-Latn.json +46 -6
- homeassistant/components/geocaching/translations/it.json +1 -1
- homeassistant/components/geocaching/translations/tr.json +2 -1
- homeassistant/components/gios/sensor.py +3 -0
- homeassistant/components/gios/strings.json +4 -0
- homeassistant/components/gios/translations/cs.json +4 -0
- homeassistant/components/gios/translations/de.json +4 -0
- homeassistant/components/gios/translations/en-GB.json +4 -0
- homeassistant/components/gios/translations/en.json +4 -0
- homeassistant/components/gios/translations/es.json +4 -0
- homeassistant/components/gios/translations/et.json +4 -0
- homeassistant/components/gios/translations/ga.json +4 -0
- homeassistant/components/gios/translations/it.json +4 -0
- homeassistant/components/gios/translations/lt.json +4 -0
- homeassistant/components/gios/translations/pt.json +4 -0
- homeassistant/components/gios/translations/sk.json +4 -0
- homeassistant/components/gios/translations/sr-Latn.json +14 -0
- homeassistant/components/gios/translations/sv.json +4 -0
- homeassistant/components/gios/translations/tr.json +4 -0
- homeassistant/components/gios/translations/zh-Hans.json +4 -0
- homeassistant/components/gios/translations/zh-Hant.json +4 -0
- homeassistant/components/glances/translations/it.json +1 -1
- homeassistant/components/go2rtc/__init__.py +106 -45
- homeassistant/components/go2rtc/const.py +3 -1
- homeassistant/components/go2rtc/manifest.json +1 -1
- homeassistant/components/go2rtc/server.py +111 -15
- homeassistant/components/go2rtc/util.py +12 -0
- homeassistant/components/goodwe/__init__.py +54 -14
- homeassistant/components/goodwe/config_flow.py +29 -15
- homeassistant/components/google/manifest.json +2 -1
- homeassistant/components/google/translations/it.json +1 -1
- homeassistant/components/google_air_quality/__init__.py +64 -0
- homeassistant/components/google_air_quality/config_flow.py +198 -0
- homeassistant/components/google_air_quality/const.py +7 -0
- homeassistant/components/google_air_quality/coordinator.py +68 -0
- homeassistant/components/google_air_quality/icons.json +15 -0
- homeassistant/components/google_air_quality/manifest.json +12 -0
- homeassistant/components/google_air_quality/quality_scale.yaml +80 -0
- homeassistant/components/google_air_quality/sensor.py +213 -0
- homeassistant/components/google_air_quality/strings.json +239 -0
- homeassistant/components/google_air_quality/translations/bg.json +88 -0
- homeassistant/components/google_air_quality/translations/cs.json +239 -0
- homeassistant/components/google_air_quality/translations/de.json +239 -0
- homeassistant/components/google_air_quality/translations/el.json +72 -0
- homeassistant/components/google_air_quality/translations/en-GB.json +225 -0
- homeassistant/components/google_air_quality/translations/en.json +239 -0
- homeassistant/components/google_air_quality/translations/es.json +239 -0
- homeassistant/components/google_air_quality/translations/et.json +225 -0
- homeassistant/components/google_air_quality/translations/fr.json +14 -0
- homeassistant/components/google_air_quality/translations/ga.json +225 -0
- homeassistant/components/google_air_quality/translations/it.json +106 -0
- homeassistant/components/google_air_quality/translations/lt.json +225 -0
- homeassistant/components/google_air_quality/translations/nl.json +106 -0
- homeassistant/components/google_air_quality/translations/pl.json +11 -0
- homeassistant/components/google_air_quality/translations/pt.json +225 -0
- homeassistant/components/google_air_quality/translations/ru.json +33 -0
- homeassistant/components/google_air_quality/translations/sk.json +225 -0
- homeassistant/components/google_air_quality/translations/sr-Latn.json +35 -0
- homeassistant/components/google_air_quality/translations/sv.json +122 -0
- homeassistant/components/google_air_quality/translations/tr.json +225 -0
- homeassistant/components/google_air_quality/translations/zh-Hans.json +225 -0
- homeassistant/components/google_air_quality/translations/zh-Hant.json +225 -0
- homeassistant/components/google_assistant/translations/sr-Latn.json +1 -1
- homeassistant/components/google_assistant_sdk/manifest.json +1 -0
- homeassistant/components/google_assistant_sdk/quality_scale.yaml +98 -0
- homeassistant/components/google_assistant_sdk/strings.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/cs.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/de.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/en-GB.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/en.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/es.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/et.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/ga.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/it.json +4 -1
- homeassistant/components/google_assistant_sdk/translations/lt.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/pt.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/sk.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/tr.json +7 -0
- homeassistant/components/google_assistant_sdk/translations/zh-Hans.json +3 -0
- homeassistant/components/google_assistant_sdk/translations/zh-Hant.json +3 -0
- homeassistant/components/google_drive/translations/it.json +1 -1
- homeassistant/components/google_generative_ai_conversation/translations/cs.json +1 -1
- homeassistant/components/google_generative_ai_conversation/translations/it.json +3 -3
- homeassistant/components/google_generative_ai_conversation/translations/sk.json +2 -2
- homeassistant/components/google_generative_ai_conversation/translations/tr.json +6 -0
- homeassistant/components/google_mail/translations/it.json +1 -1
- homeassistant/components/google_mail/translations/mk.json +3 -0
- homeassistant/components/google_photos/translations/it.json +1 -1
- homeassistant/components/google_sheets/services.py +4 -1
- homeassistant/components/google_sheets/services.yaml +5 -0
- homeassistant/components/google_sheets/strings.json +4 -0
- homeassistant/components/google_sheets/translations/cs.json +4 -0
- homeassistant/components/google_sheets/translations/de.json +4 -0
- homeassistant/components/google_sheets/translations/en-GB.json +4 -0
- homeassistant/components/google_sheets/translations/en.json +4 -0
- homeassistant/components/google_sheets/translations/es.json +4 -0
- homeassistant/components/google_sheets/translations/et.json +4 -0
- homeassistant/components/google_sheets/translations/ga.json +4 -0
- homeassistant/components/google_sheets/translations/it.json +5 -1
- homeassistant/components/google_sheets/translations/lt.json +4 -0
- homeassistant/components/google_sheets/translations/pt.json +4 -0
- homeassistant/components/google_sheets/translations/sk.json +4 -0
- homeassistant/components/google_sheets/translations/sv.json +6 -0
- homeassistant/components/google_sheets/translations/tr.json +22 -0
- homeassistant/components/google_sheets/translations/zh-Hans.json +4 -0
- homeassistant/components/google_sheets/translations/zh-Hant.json +4 -0
- homeassistant/components/google_tasks/todo.py +4 -0
- homeassistant/components/google_tasks/translations/it.json +1 -1
- homeassistant/components/google_translate/manifest.json +1 -0
- homeassistant/components/google_travel_time/sensor.py +3 -2
- homeassistant/components/google_travel_time/translations/it.json +1 -1
- homeassistant/components/google_travel_time/translations/mk.json +11 -0
- homeassistant/components/google_weather/__init__.py +84 -0
- homeassistant/components/google_weather/config_flow.py +198 -0
- homeassistant/components/google_weather/const.py +8 -0
- homeassistant/components/google_weather/coordinator.py +169 -0
- homeassistant/components/google_weather/entity.py +33 -0
- homeassistant/components/google_weather/icons.json +27 -0
- homeassistant/components/google_weather/manifest.json +12 -0
- homeassistant/components/google_weather/quality_scale.yaml +82 -0
- homeassistant/components/google_weather/sensor.py +233 -0
- homeassistant/components/google_weather/strings.json +102 -0
- homeassistant/components/google_weather/translations/bg.json +15 -0
- homeassistant/components/google_weather/translations/cs.json +102 -0
- homeassistant/components/google_weather/translations/de.json +102 -0
- homeassistant/components/google_weather/translations/el.json +37 -0
- homeassistant/components/google_weather/translations/en-GB.json +102 -0
- homeassistant/components/google_weather/translations/en.json +102 -0
- homeassistant/components/google_weather/translations/es.json +102 -0
- homeassistant/components/google_weather/translations/et.json +102 -0
- homeassistant/components/google_weather/translations/ga.json +102 -0
- homeassistant/components/google_weather/translations/it.json +65 -0
- homeassistant/components/google_weather/translations/lt.json +102 -0
- homeassistant/components/google_weather/translations/mk.json +25 -0
- homeassistant/components/google_weather/translations/nl.json +65 -0
- homeassistant/components/google_weather/translations/pt.json +102 -0
- homeassistant/components/google_weather/translations/ru.json +65 -0
- homeassistant/components/google_weather/translations/sk.json +102 -0
- homeassistant/components/google_weather/translations/sv.json +53 -0
- homeassistant/components/google_weather/translations/tr.json +102 -0
- homeassistant/components/google_weather/translations/zh-Hans.json +102 -0
- homeassistant/components/google_weather/translations/zh-Hant.json +102 -0
- homeassistant/components/google_weather/weather.py +366 -0
- homeassistant/components/gpsd/translations/sr-Latn.json +3 -0
- homeassistant/components/group/notify.py +28 -5
- homeassistant/components/group/translations/sr-Latn.json +154 -12
- homeassistant/components/group/translations/tr.json +19 -1
- homeassistant/components/growatt_server/translations/tr.json +87 -0
- homeassistant/components/habitica/translations/it.json +2 -2
- homeassistant/components/habitica/translations/tr.json +76 -0
- homeassistant/components/hanna/__init__.py +54 -0
- homeassistant/components/hanna/config_flow.py +62 -0
- homeassistant/components/hanna/const.py +3 -0
- homeassistant/components/hanna/coordinator.py +72 -0
- homeassistant/components/hanna/entity.py +28 -0
- homeassistant/components/hanna/manifest.json +10 -0
- homeassistant/components/hanna/quality_scale.yaml +70 -0
- homeassistant/components/hanna/sensor.py +106 -0
- homeassistant/components/hanna/strings.json +44 -0
- homeassistant/components/hanna/translations/bg.json +30 -0
- homeassistant/components/hanna/translations/cs.json +44 -0
- homeassistant/components/hanna/translations/de.json +44 -0
- homeassistant/components/hanna/translations/el.json +20 -0
- homeassistant/components/hanna/translations/en-GB.json +44 -0
- homeassistant/components/hanna/translations/en.json +44 -0
- homeassistant/components/hanna/translations/es.json +44 -0
- homeassistant/components/hanna/translations/et.json +44 -0
- homeassistant/components/hanna/translations/ga.json +44 -0
- homeassistant/components/hanna/translations/it.json +44 -0
- homeassistant/components/hanna/translations/lt.json +44 -0
- homeassistant/components/hanna/translations/nl.json +20 -0
- homeassistant/components/hanna/translations/pt.json +44 -0
- homeassistant/components/hanna/translations/sk.json +44 -0
- homeassistant/components/hanna/translations/sv.json +30 -0
- homeassistant/components/hanna/translations/tr.json +44 -0
- homeassistant/components/hanna/translations/zh-Hans.json +44 -0
- homeassistant/components/hanna/translations/zh-Hant.json +44 -0
- homeassistant/components/hassio/binary_sensor.py +57 -8
- homeassistant/components/hassio/const.py +5 -0
- homeassistant/components/hassio/coordinator.py +49 -9
- homeassistant/components/hassio/entity.py +34 -0
- homeassistant/components/hassio/issues.py +18 -2
- homeassistant/components/hassio/strings.json +4 -1
- homeassistant/components/hassio/translations/bg.json +5 -0
- homeassistant/components/hassio/translations/cs.json +4 -1
- homeassistant/components/hassio/translations/de.json +4 -1
- homeassistant/components/hassio/translations/el.json +0 -1
- homeassistant/components/hassio/translations/en-GB.json +4 -1
- homeassistant/components/hassio/translations/en.json +4 -1
- homeassistant/components/hassio/translations/es.json +4 -1
- homeassistant/components/hassio/translations/et.json +4 -1
- homeassistant/components/hassio/translations/fr.json +0 -1
- homeassistant/components/hassio/translations/fy.json +0 -3
- homeassistant/components/hassio/translations/ga.json +3 -1
- homeassistant/components/hassio/translations/he.json +0 -1
- homeassistant/components/hassio/translations/id.json +0 -1
- homeassistant/components/hassio/translations/it.json +3 -0
- homeassistant/components/hassio/translations/lt.json +4 -1
- homeassistant/components/hassio/translations/mk.json +5 -1
- homeassistant/components/hassio/translations/nl.json +0 -1
- homeassistant/components/hassio/translations/pt.json +3 -1
- homeassistant/components/hassio/translations/ru.json +0 -1
- homeassistant/components/hassio/translations/sk.json +4 -1
- homeassistant/components/hassio/translations/sr-Latn.json +5 -0
- homeassistant/components/hassio/translations/sv.json +3 -1
- homeassistant/components/hassio/translations/tr.json +38 -0
- homeassistant/components/hassio/translations/zh-Hans.json +3 -1
- homeassistant/components/hassio/translations/zh-Hant.json +4 -1
- homeassistant/components/heos/translations/it.json +2 -2
- homeassistant/components/here_travel_time/translations/it.json +1 -1
- homeassistant/components/history_stats/translations/mk.json +9 -1
- homeassistant/components/history_stats/translations/sr-Latn.json +85 -3
- homeassistant/components/hive/__init__.py +12 -3
- homeassistant/components/hive/const.py +0 -2
- homeassistant/components/hive/manifest.json +1 -1
- homeassistant/components/hive/translations/it.json +1 -1
- homeassistant/components/hive/translations/mk.json +9 -0
- homeassistant/components/holiday/translations/it.json +1 -1
- homeassistant/components/holiday/translations/pl.json +7 -0
- homeassistant/components/home_connect/__init__.py +14 -11
- homeassistant/components/home_connect/const.py +14 -0
- homeassistant/components/home_connect/coordinator.py +4 -3
- homeassistant/components/home_connect/entity.py +2 -5
- homeassistant/components/home_connect/manifest.json +2 -1
- homeassistant/components/home_connect/select.py +2 -2
- homeassistant/components/home_connect/sensor.py +4 -1
- homeassistant/components/home_connect/services.yaml +29 -0
- homeassistant/components/home_connect/strings.json +49 -0
- homeassistant/components/home_connect/translations/bg.json +36 -3
- homeassistant/components/home_connect/translations/cs.json +49 -0
- homeassistant/components/home_connect/translations/de.json +51 -2
- homeassistant/components/home_connect/translations/en-GB.json +49 -0
- homeassistant/components/home_connect/translations/en.json +49 -0
- homeassistant/components/home_connect/translations/es.json +49 -0
- homeassistant/components/home_connect/translations/et.json +49 -0
- homeassistant/components/home_connect/translations/ga.json +46 -0
- homeassistant/components/home_connect/translations/lt.json +49 -0
- homeassistant/components/home_connect/translations/pt.json +49 -0
- homeassistant/components/home_connect/translations/ru.json +3 -0
- homeassistant/components/home_connect/translations/sk.json +49 -0
- homeassistant/components/home_connect/translations/tr.json +81 -0
- homeassistant/components/home_connect/translations/zh-Hans.json +49 -0
- homeassistant/components/home_connect/translations/zh-Hant.json +49 -0
- homeassistant/components/homeassistant/const.py +1 -1
- homeassistant/components/homeassistant/translations/mk.json +5 -0
- homeassistant/components/homeassistant/translations/tr.json +1 -0
- homeassistant/components/homeassistant_connect_zbt2/config_flow.py +13 -21
- homeassistant/components/homeassistant_connect_zbt2/const.py +0 -58
- homeassistant/components/homeassistant_connect_zbt2/strings.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/bg.json +6 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/cs.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/de.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/en-GB.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/en.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/es.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/et.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/ga.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/lt.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/pt.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/sk.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/tr.json +163 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/zh-Hans.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/zh-Hant.json +8 -0
- homeassistant/components/homeassistant_connect_zbt2/update.py +3 -2
- homeassistant/components/homeassistant_hardware/const.py +2 -0
- homeassistant/components/homeassistant_hardware/firmware_config_flow.py +98 -69
- homeassistant/components/homeassistant_hardware/manifest.json +1 -1
- homeassistant/components/homeassistant_hardware/strings.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/bg.json +3 -0
- homeassistant/components/homeassistant_hardware/translations/cs.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/de.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/en-GB.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/en.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/es.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/et.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/ga.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/lt.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/pt.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/sk.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/tr.json +50 -0
- homeassistant/components/homeassistant_hardware/translations/zh-Hans.json +4 -0
- homeassistant/components/homeassistant_hardware/translations/zh-Hant.json +4 -0
- homeassistant/components/homeassistant_hardware/update.py +15 -10
- homeassistant/components/homeassistant_hardware/util.py +86 -50
- homeassistant/components/homeassistant_sky_connect/config_flow.py +19 -4
- homeassistant/components/homeassistant_sky_connect/strings.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/bg.json +6 -0
- homeassistant/components/homeassistant_sky_connect/translations/cs.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/de.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/en-GB.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/en.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/es.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/et.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/ga.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/lt.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/pt.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/sk.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/tr.json +81 -0
- homeassistant/components/homeassistant_sky_connect/translations/zh-Hans.json +8 -0
- homeassistant/components/homeassistant_sky_connect/translations/zh-Hant.json +8 -0
- homeassistant/components/homeassistant_sky_connect/update.py +3 -2
- homeassistant/components/homeassistant_yellow/config_flow.py +17 -2
- homeassistant/components/homeassistant_yellow/strings.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/bg.json +3 -0
- homeassistant/components/homeassistant_yellow/translations/cs.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/de.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/en-GB.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/en.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/es.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/et.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/ga.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/lt.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/pt.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/sk.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/tr.json +40 -0
- homeassistant/components/homeassistant_yellow/translations/zh-Hans.json +4 -0
- homeassistant/components/homeassistant_yellow/translations/zh-Hant.json +4 -0
- homeassistant/components/homeassistant_yellow/update.py +3 -2
- homeassistant/components/homee/translations/it.json +1 -1
- homeassistant/components/homee/translations/zh-Hant.json +1 -1
- homeassistant/components/homekit/translations/de.json +1 -1
- homeassistant/components/homekit/translations/es.json +1 -1
- homeassistant/components/homekit/translations/tr.json +12 -0
- homeassistant/components/homekit/type_thermostats.py +3 -3
- homeassistant/components/homekit_controller/manifest.json +1 -0
- homeassistant/components/homematic/translations/mk.json +7 -0
- homeassistant/components/homematicip_cloud/binary_sensor.py +15 -8
- homeassistant/components/homematicip_cloud/cover.py +8 -4
- homeassistant/components/homematicip_cloud/entity.py +95 -22
- homeassistant/components/homematicip_cloud/event.py +3 -1
- homeassistant/components/homematicip_cloud/light.py +15 -15
- homeassistant/components/homematicip_cloud/manifest.json +1 -1
- homeassistant/components/homematicip_cloud/sensor.py +2 -1
- homeassistant/components/homematicip_cloud/switch.py +6 -3
- homeassistant/components/homematicip_cloud/valve.py +6 -3
- homeassistant/components/homewizard/manifest.json +1 -0
- homeassistant/components/homewizard/translations/it.json +1 -1
- homeassistant/components/homeworks/translations/it.json +1 -1
- homeassistant/components/honeywell/translations/it.json +1 -1
- homeassistant/components/http/__init__.py +12 -4
- homeassistant/components/http/ban.py +3 -0
- homeassistant/components/http/strings.json +6 -2
- homeassistant/components/http/translations/cs.json +6 -2
- homeassistant/components/http/translations/de.json +6 -2
- homeassistant/components/http/translations/en-GB.json +6 -2
- homeassistant/components/http/translations/en.json +6 -2
- homeassistant/components/http/translations/es.json +6 -2
- homeassistant/components/http/translations/et.json +6 -2
- homeassistant/components/http/translations/ga.json +6 -2
- homeassistant/components/http/translations/he.json +6 -2
- homeassistant/components/http/translations/it.json +7 -3
- homeassistant/components/http/translations/lt.json +6 -2
- homeassistant/components/http/translations/pt.json +6 -2
- homeassistant/components/http/translations/ru.json +0 -3
- homeassistant/components/http/translations/sk.json +6 -2
- homeassistant/components/http/translations/sr-Latn.json +2 -2
- homeassistant/components/http/translations/sv.json +4 -2
- homeassistant/components/http/translations/tr.json +8 -0
- homeassistant/components/http/translations/zh-Hans.json +6 -2
- homeassistant/components/http/translations/zh-Hant.json +6 -2
- homeassistant/components/huawei_lte/button.py +1 -2
- homeassistant/components/huawei_lte/device_tracker.py +2 -20
- homeassistant/components/huawei_lte/icons.json +3 -0
- homeassistant/components/huawei_lte/manifest.json +1 -5
- homeassistant/components/huawei_lte/quality_scale.yaml +4 -7
- homeassistant/components/huawei_lte/select.py +0 -7
- homeassistant/components/huawei_lte/sensor.py +43 -13
- homeassistant/components/huawei_lte/strings.json +16 -2
- homeassistant/components/huawei_lte/translations/bg.json +11 -0
- homeassistant/components/huawei_lte/translations/cs.json +14 -0
- homeassistant/components/huawei_lte/translations/de.json +14 -0
- homeassistant/components/huawei_lte/translations/el.json +14 -0
- homeassistant/components/huawei_lte/translations/en-GB.json +14 -0
- homeassistant/components/huawei_lte/translations/en.json +14 -0
- homeassistant/components/huawei_lte/translations/es.json +14 -0
- homeassistant/components/huawei_lte/translations/et.json +14 -0
- homeassistant/components/huawei_lte/translations/ga.json +14 -0
- homeassistant/components/huawei_lte/translations/it.json +1 -1
- homeassistant/components/huawei_lte/translations/lt.json +14 -0
- homeassistant/components/huawei_lte/translations/pt.json +14 -0
- homeassistant/components/huawei_lte/translations/sk.json +14 -0
- homeassistant/components/huawei_lte/translations/sv.json +5 -0
- homeassistant/components/huawei_lte/translations/tr.json +14 -0
- homeassistant/components/huawei_lte/translations/zh-Hans.json +14 -0
- homeassistant/components/huawei_lte/translations/zh-Hant.json +14 -0
- homeassistant/components/hue/translations/mk.json +3 -1
- homeassistant/components/hue/translations/tr.json +1 -0
- homeassistant/components/hue_ble/__init__.py +54 -0
- homeassistant/components/hue_ble/config_flow.py +155 -0
- homeassistant/components/hue_ble/const.py +4 -0
- homeassistant/components/hue_ble/light.py +160 -0
- homeassistant/components/hue_ble/manifest.json +19 -0
- homeassistant/components/hue_ble/quality_scale.yaml +60 -0
- homeassistant/components/hue_ble/strings.json +21 -0
- homeassistant/components/hue_ble/translations/bg.json +11 -0
- homeassistant/components/hue_ble/translations/cs.json +21 -0
- homeassistant/components/hue_ble/translations/de.json +21 -0
- homeassistant/components/hue_ble/translations/el.json +11 -0
- homeassistant/components/hue_ble/translations/en-GB.json +21 -0
- homeassistant/components/hue_ble/translations/en.json +21 -0
- homeassistant/components/hue_ble/translations/es.json +21 -0
- homeassistant/components/hue_ble/translations/et.json +21 -0
- homeassistant/components/hue_ble/translations/ga.json +20 -0
- homeassistant/components/hue_ble/translations/lt.json +21 -0
- homeassistant/components/hue_ble/translations/nl.json +14 -0
- homeassistant/components/hue_ble/translations/pt.json +20 -0
- homeassistant/components/hue_ble/translations/sk.json +21 -0
- homeassistant/components/hue_ble/translations/tr.json +20 -0
- homeassistant/components/hue_ble/translations/zh-Hans.json +21 -0
- homeassistant/components/hue_ble/translations/zh-Hant.json +21 -0
- homeassistant/components/humidifier/translations/mk.json +6 -0
- homeassistant/components/hunterdouglas_powerview/__init__.py +1 -1
- homeassistant/components/hunterdouglas_powerview/coordinator.py +1 -1
- homeassistant/components/hunterdouglas_powerview/cover.py +3 -3
- homeassistant/components/hunterdouglas_powerview/entity.py +1 -1
- homeassistant/components/hunterdouglas_powerview/manifest.json +1 -1
- homeassistant/components/hunterdouglas_powerview/translations/mk.json +9 -0
- homeassistant/components/hunterdouglas_powerview/translations/sr-Latn.json +9 -0
- homeassistant/components/hunterdouglas_powerview/util.py +1 -11
- homeassistant/components/husqvarna_automower/manifest.json +1 -1
- homeassistant/components/husqvarna_automower/translations/de.json +1 -1
- homeassistant/components/husqvarna_automower/translations/it.json +1 -1
- homeassistant/components/husqvarna_automower/translations/tr.json +88 -0
- homeassistant/components/huum/translations/fr.json +5 -0
- homeassistant/components/huum/translations/sr-Latn.json +5 -0
- homeassistant/components/hvv_departures/binary_sensor.py +1 -0
- homeassistant/components/hvv_departures/translations/mk.json +9 -0
- homeassistant/components/hydrawise/translations/it.json +1 -1
- homeassistant/components/hyperion/translations/it.json +1 -1
- homeassistant/components/ibeacon/manifest.json +1 -0
- homeassistant/components/icloud/account.py +9 -2
- homeassistant/components/icloud/manifest.json +1 -1
- homeassistant/components/icloud/translations/it.json +1 -1
- homeassistant/components/icloud/translations/tr.json +3 -0
- homeassistant/components/ifttt/translations/es.json +1 -1
- homeassistant/components/image/__init__.py +22 -1
- homeassistant/components/image/translations/sr-Latn.json +2 -1
- homeassistant/components/imap/translations/it.json +1 -1
- homeassistant/components/imap/translations/tr.json +21 -0
- homeassistant/components/imeon_inverter/translations/en-GB.json +21 -0
- homeassistant/components/imeon_inverter/translations/lb.json +11 -0
- homeassistant/components/imeon_inverter/translations/sv.json +2 -1
- homeassistant/components/imeon_inverter/translations/tr.json +57 -0
- homeassistant/components/imgw_pib/manifest.json +1 -1
- homeassistant/components/immich/translations/mk.json +9 -0
- homeassistant/components/incomfort/icons.json +5 -0
- homeassistant/components/incomfort/manifest.json +1 -1
- homeassistant/components/incomfort/sensor.py +10 -0
- homeassistant/components/incomfort/strings.json +3 -0
- homeassistant/components/incomfort/translations/bg.json +5 -0
- homeassistant/components/incomfort/translations/cs.json +3 -0
- homeassistant/components/incomfort/translations/de.json +3 -0
- homeassistant/components/incomfort/translations/en-GB.json +3 -0
- homeassistant/components/incomfort/translations/en.json +3 -0
- homeassistant/components/incomfort/translations/es.json +3 -0
- homeassistant/components/incomfort/translations/et.json +3 -0
- homeassistant/components/incomfort/translations/ga.json +3 -0
- homeassistant/components/incomfort/translations/he.json +5 -0
- homeassistant/components/incomfort/translations/it.json +7 -2
- homeassistant/components/incomfort/translations/lt.json +3 -0
- homeassistant/components/incomfort/translations/pt.json +3 -0
- homeassistant/components/incomfort/translations/sk.json +3 -0
- homeassistant/components/incomfort/translations/sr-Latn.json +5 -0
- homeassistant/components/incomfort/translations/sv.json +3 -0
- homeassistant/components/incomfort/translations/tr.json +3 -0
- homeassistant/components/incomfort/translations/zh-Hans.json +3 -0
- homeassistant/components/incomfort/translations/zh-Hant.json +3 -0
- homeassistant/components/inels/translations/it.json +24 -1
- homeassistant/components/inels/translations/tr.json +30 -0
- homeassistant/components/inkbird/manifest.json +1 -1
- homeassistant/components/input_boolean/translations/mk.json +4 -2
- homeassistant/components/input_datetime/translations/mk.json +30 -1
- homeassistant/components/input_number/translations/mk.json +6 -1
- homeassistant/components/input_number/translations/sr-Latn.json +17 -0
- homeassistant/components/input_select/translations/mk.json +12 -1
- homeassistant/components/input_text/translations/mk.json +4 -1
- homeassistant/components/integration/translations/sr-Latn.json +54 -2
- homeassistant/components/intellifire/translations/it.json +1 -1
- homeassistant/components/iometer/manifest.json +1 -1
- homeassistant/components/iometer/translations/tr.json +3 -1
- homeassistant/components/irm_kmi/translations/mk.json +9 -0
- homeassistant/components/irm_kmi/translations/tr.json +21 -0
- homeassistant/components/iron_os/manifest.json +1 -1
- homeassistant/components/iron_os/strings.json +4 -4
- homeassistant/components/iron_os/translations/bg.json +1 -5
- homeassistant/components/iron_os/translations/ca.json +1 -5
- homeassistant/components/iron_os/translations/en-GB.json +4 -4
- homeassistant/components/iron_os/translations/en.json +4 -4
- homeassistant/components/iron_os/translations/fy.json +1 -5
- homeassistant/components/iron_os/translations/ga.json +1 -5
- homeassistant/components/iron_os/translations/hu.json +1 -5
- homeassistant/components/iron_os/translations/ja.json +1 -5
- homeassistant/components/iron_os/translations/nl.json +1 -5
- homeassistant/components/iron_os/translations/pt-BR.json +1 -5
- homeassistant/components/iron_os/translations/ru.json +1 -5
- homeassistant/components/iron_os/translations/sv.json +1 -5
- homeassistant/components/iron_os/translations/tr.json +1 -5
- homeassistant/components/ista_ecotrend/translations/it.json +1 -1
- homeassistant/components/isy994/translations/it.json +2 -2
- homeassistant/components/ituran/translations/it.json +1 -1
- homeassistant/components/jellyfin/translations/it.json +1 -1
- homeassistant/components/jewish_calendar/translations/it.json +1 -1
- homeassistant/components/jewish_calendar/translations/mk.json +18 -0
- homeassistant/components/jewish_calendar/translations/tr.json +9 -1
- homeassistant/components/justnimbus/translations/it.json +1 -1
- homeassistant/components/jvc_projector/translations/it.json +1 -1
- homeassistant/components/kegtron/config_flow.py +1 -1
- homeassistant/components/keymitt_ble/config_flow.py +1 -1
- homeassistant/components/keymitt_ble/translations/mk.json +2 -1
- homeassistant/components/kitchen_sink/__init__.py +54 -4
- homeassistant/components/kitchen_sink/manifest.json +7 -0
- homeassistant/components/kitchen_sink/strings.json +18 -4
- homeassistant/components/kitchen_sink/translations/bg.json +0 -4
- homeassistant/components/kitchen_sink/translations/ca.json +0 -4
- homeassistant/components/kitchen_sink/translations/cs.json +18 -4
- homeassistant/components/kitchen_sink/translations/de.json +18 -4
- homeassistant/components/kitchen_sink/translations/el.json +0 -6
- homeassistant/components/kitchen_sink/translations/en-GB.json +18 -4
- homeassistant/components/kitchen_sink/translations/en.json +18 -4
- homeassistant/components/kitchen_sink/translations/es.json +18 -4
- homeassistant/components/kitchen_sink/translations/et.json +18 -4
- homeassistant/components/kitchen_sink/translations/ga.json +14 -4
- homeassistant/components/kitchen_sink/translations/hu.json +0 -6
- homeassistant/components/kitchen_sink/translations/id.json +0 -6
- homeassistant/components/kitchen_sink/translations/it.json +25 -1
- homeassistant/components/kitchen_sink/translations/ja.json +0 -6
- homeassistant/components/kitchen_sink/translations/lt.json +18 -4
- homeassistant/components/kitchen_sink/translations/nl.json +2 -2
- homeassistant/components/kitchen_sink/translations/pt.json +18 -4
- homeassistant/components/kitchen_sink/translations/ru.json +6 -4
- homeassistant/components/kitchen_sink/translations/sk.json +18 -4
- homeassistant/components/kitchen_sink/translations/sv.json +1 -4
- homeassistant/components/kitchen_sink/translations/tr.json +14 -4
- homeassistant/components/kitchen_sink/translations/zh-Hans.json +18 -4
- homeassistant/components/kitchen_sink/translations/zh-Hant.json +18 -4
- homeassistant/components/knx/manifest.json +1 -1
- homeassistant/components/knx/storage/entity_store_schema.py +1 -1
- homeassistant/components/knx/translations/cs.json +4 -4
- homeassistant/components/knx/translations/de.json +3 -3
- homeassistant/components/knx/translations/el.json +43 -2
- homeassistant/components/knx/translations/en-GB.json +3 -3
- homeassistant/components/knx/translations/en.json +3 -3
- homeassistant/components/knx/translations/es.json +3 -3
- homeassistant/components/knx/translations/et.json +3 -3
- homeassistant/components/knx/translations/fi.json +0 -3
- homeassistant/components/knx/translations/ga.json +0 -3
- homeassistant/components/knx/translations/hu.json +0 -3
- homeassistant/components/knx/translations/it.json +0 -3
- homeassistant/components/knx/translations/ja.json +0 -3
- homeassistant/components/knx/translations/ko.json +0 -3
- homeassistant/components/knx/translations/lt.json +3 -3
- homeassistant/components/knx/translations/nl.json +0 -3
- homeassistant/components/knx/translations/pt-BR.json +0 -3
- homeassistant/components/knx/translations/pt.json +3 -3
- homeassistant/components/knx/translations/ru.json +0 -3
- homeassistant/components/knx/translations/sk.json +3 -3
- homeassistant/components/knx/translations/sr-Latn.json +13 -2
- homeassistant/components/knx/translations/sv.json +30 -4
- homeassistant/components/knx/translations/tr.json +328 -3
- homeassistant/components/knx/translations/zh-Hans.json +3 -3
- homeassistant/components/knx/translations/zh-Hant.json +3 -3
- homeassistant/components/kodi/browse_media.py +1 -1
- homeassistant/components/kodi/translations/pt.json +1 -1
- homeassistant/components/konnected/manifest.json +1 -0
- homeassistant/components/konnected/translations/tr.json +6 -0
- homeassistant/components/kostal_plenticore/coordinator.py +13 -4
- homeassistant/components/kostal_plenticore/diagnostics.py +23 -0
- homeassistant/components/kostal_plenticore/switch.py +149 -3
- homeassistant/components/kulersky/config_flow.py +1 -1
- homeassistant/components/labs/__init__.py +189 -0
- homeassistant/components/labs/const.py +14 -0
- homeassistant/components/labs/manifest.json +9 -0
- homeassistant/components/labs/models.py +96 -0
- homeassistant/components/labs/strings.json +3 -0
- homeassistant/components/labs/translations/cs.json +3 -0
- homeassistant/components/labs/translations/de.json +3 -0
- homeassistant/components/labs/translations/en-GB.json +3 -0
- homeassistant/components/labs/translations/en.json +3 -0
- homeassistant/components/labs/translations/es.json +3 -0
- homeassistant/components/labs/translations/et.json +3 -0
- homeassistant/components/labs/translations/fr.json +3 -0
- homeassistant/components/labs/translations/ga.json +3 -0
- homeassistant/components/labs/translations/it.json +3 -0
- homeassistant/components/labs/translations/lt.json +3 -0
- homeassistant/components/labs/translations/pt.json +3 -0
- homeassistant/components/labs/translations/sk.json +3 -0
- homeassistant/components/labs/translations/sr-Latn.json +3 -0
- homeassistant/components/labs/translations/tr.json +3 -0
- homeassistant/components/labs/translations/zh-Hans.json +3 -0
- homeassistant/components/labs/translations/zh-Hant.json +3 -0
- homeassistant/components/labs/websocket_api.py +110 -0
- homeassistant/components/lacrosse_view/translations/it.json +1 -1
- homeassistant/components/lamarzocco/__init__.py +30 -19
- homeassistant/components/lamarzocco/coordinator.py +42 -13
- homeassistant/components/lamarzocco/icons.json +3 -0
- homeassistant/components/lamarzocco/manifest.json +1 -1
- homeassistant/components/lamarzocco/number.py +21 -1
- homeassistant/components/lamarzocco/strings.json +3 -0
- homeassistant/components/lamarzocco/translations/bg.json +3 -0
- homeassistant/components/lamarzocco/translations/cs.json +3 -0
- homeassistant/components/lamarzocco/translations/de.json +3 -0
- homeassistant/components/lamarzocco/translations/el.json +3 -0
- homeassistant/components/lamarzocco/translations/en-GB.json +3 -0
- homeassistant/components/lamarzocco/translations/en.json +3 -0
- homeassistant/components/lamarzocco/translations/es.json +3 -0
- homeassistant/components/lamarzocco/translations/et.json +3 -0
- homeassistant/components/lamarzocco/translations/fi.json +3 -0
- homeassistant/components/lamarzocco/translations/fr.json +3 -0
- homeassistant/components/lamarzocco/translations/ga.json +3 -0
- homeassistant/components/lamarzocco/translations/hu.json +3 -0
- homeassistant/components/lamarzocco/translations/it.json +2 -2
- homeassistant/components/lamarzocco/translations/ja.json +3 -0
- homeassistant/components/lamarzocco/translations/lt.json +3 -0
- homeassistant/components/lamarzocco/translations/nl.json +3 -0
- homeassistant/components/lamarzocco/translations/pt.json +3 -0
- homeassistant/components/lamarzocco/translations/ru.json +3 -0
- homeassistant/components/lamarzocco/translations/sk.json +3 -0
- homeassistant/components/lamarzocco/translations/sv.json +3 -0
- homeassistant/components/lamarzocco/translations/tr.json +3 -0
- homeassistant/components/lamarzocco/translations/zh-Hans.json +3 -0
- homeassistant/components/lamarzocco/translations/zh-Hant.json +3 -0
- homeassistant/components/lametric/translations/it.json +1 -1
- homeassistant/components/lannouncer/translations/tr.json +8 -0
- homeassistant/components/lawn_mower/icons.json +14 -0
- homeassistant/components/lawn_mower/strings.json +56 -1
- homeassistant/components/lawn_mower/translations/bg.json +33 -0
- homeassistant/components/lawn_mower/translations/cs.json +56 -1
- homeassistant/components/lawn_mower/translations/de.json +56 -1
- homeassistant/components/lawn_mower/translations/en-GB.json +56 -1
- homeassistant/components/lawn_mower/translations/en.json +56 -1
- homeassistant/components/lawn_mower/translations/es.json +56 -1
- homeassistant/components/lawn_mower/translations/et.json +56 -1
- homeassistant/components/lawn_mower/translations/ga.json +48 -1
- homeassistant/components/lawn_mower/translations/lt.json +56 -1
- homeassistant/components/lawn_mower/translations/pt.json +48 -1
- homeassistant/components/lawn_mower/translations/sk.json +56 -1
- homeassistant/components/lawn_mower/translations/tr.json +48 -1
- homeassistant/components/lawn_mower/translations/zh-Hans.json +43 -1
- homeassistant/components/lawn_mower/translations/zh-Hant.json +56 -1
- homeassistant/components/lawn_mower/trigger.py +18 -0
- homeassistant/components/lawn_mower/triggers.yaml +20 -0
- homeassistant/components/lcn/__init__.py +8 -4
- homeassistant/components/lcn/binary_sensor.py +10 -15
- homeassistant/components/lcn/climate.py +25 -31
- homeassistant/components/lcn/config_flow.py +1 -1
- homeassistant/components/lcn/cover.py +45 -41
- homeassistant/components/lcn/entity.py +17 -8
- homeassistant/components/lcn/helpers.py +18 -12
- homeassistant/components/lcn/light.py +20 -26
- homeassistant/components/lcn/manifest.json +3 -3
- homeassistant/components/lcn/quality_scale.yaml +2 -2
- homeassistant/components/lcn/sensor.py +23 -24
- homeassistant/components/lcn/services.py +3 -5
- homeassistant/components/lcn/strings.json +0 -32
- homeassistant/components/lcn/switch.py +40 -56
- homeassistant/components/lcn/translations/bg.json +0 -10
- homeassistant/components/lcn/translations/ca.json +0 -7
- homeassistant/components/lcn/translations/cs.json +0 -32
- homeassistant/components/lcn/translations/de.json +1 -33
- homeassistant/components/lcn/translations/el.json +0 -29
- homeassistant/components/lcn/translations/en-GB.json +0 -32
- homeassistant/components/lcn/translations/en.json +0 -32
- homeassistant/components/lcn/translations/es.json +0 -32
- homeassistant/components/lcn/translations/et.json +0 -32
- homeassistant/components/lcn/translations/ga.json +0 -32
- homeassistant/components/lcn/translations/he.json +0 -7
- homeassistant/components/lcn/translations/hu.json +0 -32
- homeassistant/components/lcn/translations/id.json +0 -8
- homeassistant/components/lcn/translations/it.json +1 -8
- homeassistant/components/lcn/translations/ja.json +0 -28
- homeassistant/components/lcn/translations/lt.json +0 -32
- homeassistant/components/lcn/translations/mk.json +14 -0
- homeassistant/components/lcn/translations/pt-BR.json +0 -19
- homeassistant/components/lcn/translations/pt.json +0 -32
- homeassistant/components/lcn/translations/ru.json +0 -32
- homeassistant/components/lcn/translations/sk.json +0 -32
- homeassistant/components/lcn/translations/sv.json +0 -32
- homeassistant/components/lcn/translations/tr.json +0 -28
- homeassistant/components/lcn/translations/zh-Hans.json +0 -32
- homeassistant/components/lcn/translations/zh-Hant.json +0 -32
- homeassistant/components/lcn/websocket.py +14 -12
- homeassistant/components/ld2410_ble/config_flow.py +1 -1
- homeassistant/components/leaone/config_flow.py +1 -1
- homeassistant/components/led_ble/config_flow.py +1 -1
- homeassistant/components/lektrico/translations/mk.json +5 -0
- homeassistant/components/letpot/manifest.json +1 -1
- homeassistant/components/letpot/translations/it.json +1 -1
- homeassistant/components/letpot/translations/tr.json +8 -0
- homeassistant/components/lg_thinq/manifest.json +1 -1
- homeassistant/components/lg_thinq/translations/mk.json +1 -0
- homeassistant/components/lg_thinq/translations/sr-Latn.json +8 -0
- homeassistant/components/lg_thinq/translations/tr.json +23 -0
- homeassistant/components/libre_hardware_monitor/coordinator.py +26 -18
- homeassistant/components/libre_hardware_monitor/translations/tr.json +23 -0
- homeassistant/components/lidarr/translations/it.json +1 -1
- homeassistant/components/lifx/light.py +1 -1
- homeassistant/components/lifx/manager.py +11 -10
- homeassistant/components/lifx/translations/mk.json +3 -0
- homeassistant/components/lifx/translations/tr.json +3 -0
- homeassistant/components/light/condition.py +131 -0
- homeassistant/components/light/conditions.yaml +28 -0
- homeassistant/components/light/icons.json +16 -0
- homeassistant/components/light/strings.json +69 -2
- homeassistant/components/light/translations/bg.json +22 -0
- homeassistant/components/light/translations/cs.json +69 -2
- homeassistant/components/light/translations/de.json +69 -2
- homeassistant/components/light/translations/el.json +6 -0
- homeassistant/components/light/translations/en-GB.json +69 -2
- homeassistant/components/light/translations/en.json +69 -2
- homeassistant/components/light/translations/es.json +68 -2
- homeassistant/components/light/translations/et.json +69 -2
- homeassistant/components/light/translations/fr.json +1 -0
- homeassistant/components/light/translations/ga.json +65 -2
- homeassistant/components/light/translations/lt.json +69 -2
- homeassistant/components/light/translations/mk.json +10 -3
- homeassistant/components/light/translations/nl.json +12 -1
- homeassistant/components/light/translations/pt.json +65 -2
- homeassistant/components/light/translations/ru.json +67 -3
- homeassistant/components/light/translations/sk.json +69 -2
- homeassistant/components/light/translations/sr-Latn.json +217 -4
- homeassistant/components/light/translations/tr.json +65 -2
- homeassistant/components/light/translations/zh-Hans.json +59 -2
- homeassistant/components/light/translations/zh-Hant.json +69 -2
- homeassistant/components/light/trigger.py +17 -0
- homeassistant/components/light/triggers.yaml +18 -0
- homeassistant/components/litterrobot/translations/it.json +1 -1
- homeassistant/components/litterrobot/translations/tr.json +6 -0
- homeassistant/components/local_calendar/manifest.json +1 -1
- homeassistant/components/local_calendar/translations/da.json +4 -1
- homeassistant/components/local_todo/manifest.json +1 -1
- homeassistant/components/local_todo/todo.py +1 -0
- homeassistant/components/logger/helpers.py +10 -0
- homeassistant/components/logger/websocket_api.py +12 -1
- homeassistant/components/london_underground/translations/tr.json +38 -0
- homeassistant/components/lovelace/__init__.py +8 -1
- homeassistant/components/lovelace/dashboard.py +5 -1
- homeassistant/components/lovelace/strings.json +5 -0
- homeassistant/components/lovelace/translations/cs.json +5 -0
- homeassistant/components/lovelace/translations/de.json +5 -0
- homeassistant/components/lovelace/translations/en-GB.json +5 -0
- homeassistant/components/lovelace/translations/en.json +5 -0
- homeassistant/components/lovelace/translations/es.json +5 -0
- homeassistant/components/lovelace/translations/et.json +5 -0
- homeassistant/components/lovelace/translations/ga.json +5 -0
- homeassistant/components/lovelace/translations/lt.json +5 -0
- homeassistant/components/lovelace/translations/pt.json +5 -0
- homeassistant/components/lovelace/translations/sk.json +5 -0
- homeassistant/components/lovelace/translations/tr.json +5 -0
- homeassistant/components/lovelace/translations/zh-Hans.json +5 -0
- homeassistant/components/lovelace/translations/zh-Hant.json +5 -0
- homeassistant/components/lunatone/manifest.json +1 -1
- homeassistant/components/lunatone/translations/tr.json +36 -0
- homeassistant/components/lutron_caseta/diagnostics.py +1 -0
- homeassistant/components/lutron_caseta/manifest.json +1 -1
- homeassistant/components/lutron_caseta/switch.py +54 -3
- homeassistant/components/lyric/translations/it.json +1 -1
- homeassistant/components/madvr/translations/it.json +1 -1
- homeassistant/components/manual/alarm_control_panel.py +14 -0
- homeassistant/components/mastodon/__init__.py +2 -2
- homeassistant/components/mastodon/const.py +1 -0
- homeassistant/components/mastodon/services.py +14 -3
- homeassistant/components/mastodon/services.yaml +3 -0
- homeassistant/components/mastodon/strings.json +7 -0
- homeassistant/components/mastodon/translations/cs.json +7 -0
- homeassistant/components/mastodon/translations/de.json +7 -0
- homeassistant/components/mastodon/translations/en-GB.json +7 -0
- homeassistant/components/mastodon/translations/en.json +7 -0
- homeassistant/components/mastodon/translations/es.json +7 -0
- homeassistant/components/mastodon/translations/et.json +7 -0
- homeassistant/components/mastodon/translations/ga.json +7 -0
- homeassistant/components/mastodon/translations/lt.json +7 -0
- homeassistant/components/mastodon/translations/pt.json +7 -0
- homeassistant/components/mastodon/translations/sk.json +7 -0
- homeassistant/components/mastodon/translations/tr.json +11 -0
- homeassistant/components/mastodon/translations/zh-Hans.json +7 -0
- homeassistant/components/mastodon/translations/zh-Hant.json +7 -0
- homeassistant/components/matrix/manifest.json +1 -1
- homeassistant/components/matrix/translations/sv.json +4 -2
- homeassistant/components/matrix/translations/tr.json +42 -0
- homeassistant/components/matter/binary_sensor.py +38 -25
- homeassistant/components/matter/button.py +1 -1
- homeassistant/components/matter/manifest.json +1 -0
- homeassistant/components/matter/select.py +78 -0
- homeassistant/components/matter/strings.json +11 -1
- homeassistant/components/matter/translations/cs.json +10 -0
- homeassistant/components/matter/translations/de.json +13 -0
- homeassistant/components/matter/translations/en-GB.json +13 -0
- homeassistant/components/matter/translations/en.json +10 -0
- homeassistant/components/matter/translations/es.json +13 -0
- homeassistant/components/matter/translations/et.json +13 -0
- homeassistant/components/matter/translations/ga.json +10 -0
- homeassistant/components/matter/translations/lt.json +13 -0
- homeassistant/components/matter/translations/pt.json +13 -0
- homeassistant/components/matter/translations/ru.json +3 -0
- homeassistant/components/matter/translations/sk.json +13 -0
- homeassistant/components/matter/translations/sr-Latn.json +3 -0
- homeassistant/components/matter/translations/sv.json +10 -0
- homeassistant/components/matter/translations/tr.json +115 -0
- homeassistant/components/matter/translations/zh-Hans.json +13 -0
- homeassistant/components/matter/translations/zh-Hant.json +13 -0
- homeassistant/components/mcp/translations/it.json +1 -1
- homeassistant/components/mcp/translations/tr.json +20 -1
- homeassistant/components/mealie/manifest.json +1 -1
- homeassistant/components/mealie/translations/it.json +2 -2
- homeassistant/components/mealie/translations/mk.json +12 -0
- homeassistant/components/mealie/translations/tr.json +11 -0
- homeassistant/components/meater/translations/it.json +1 -1
- homeassistant/components/medcom_ble/config_flow.py +1 -1
- homeassistant/components/media_extractor/manifest.json +1 -1
- homeassistant/components/media_player/icons.json +5 -0
- homeassistant/components/media_player/strings.json +24 -1
- homeassistant/components/media_player/translations/bg.json +13 -1
- homeassistant/components/media_player/translations/cs.json +24 -1
- homeassistant/components/media_player/translations/de.json +24 -1
- homeassistant/components/media_player/translations/en-GB.json +24 -1
- homeassistant/components/media_player/translations/en.json +24 -1
- homeassistant/components/media_player/translations/es.json +24 -1
- homeassistant/components/media_player/translations/et.json +24 -1
- homeassistant/components/media_player/translations/ga.json +22 -1
- homeassistant/components/media_player/translations/lt.json +24 -1
- homeassistant/components/media_player/translations/mk.json +4 -2
- homeassistant/components/media_player/translations/pt.json +22 -1
- homeassistant/components/media_player/translations/sk.json +24 -1
- homeassistant/components/media_player/translations/tr.json +22 -1
- homeassistant/components/media_player/translations/zh-Hans.json +20 -1
- homeassistant/components/media_player/translations/zh-Hant.json +24 -1
- homeassistant/components/media_player/trigger.py +28 -0
- homeassistant/components/media_player/triggers.yaml +15 -0
- homeassistant/components/media_source/translations/tr.json +5 -0
- homeassistant/components/melcloud/sensor.py +9 -0
- homeassistant/components/melcloud/translations/it.json +2 -2
- homeassistant/components/melnor/config_flow.py +1 -1
- homeassistant/components/melnor/translations/mk.json +9 -0
- homeassistant/components/met/manifest.json +1 -0
- homeassistant/components/meteo_france/const.py +6 -1
- homeassistant/components/meteo_lt/translations/tr.json +14 -0
- homeassistant/components/microbees/translations/it.json +1 -1
- homeassistant/components/miele/__init__.py +9 -1
- homeassistant/components/miele/const.py +799 -941
- homeassistant/components/miele/icons.json +6 -0
- homeassistant/components/miele/manifest.json +1 -1
- homeassistant/components/miele/select.py +156 -0
- homeassistant/components/miele/sensor.py +138 -16
- homeassistant/components/miele/strings.json +26 -2
- homeassistant/components/miele/translations/bg.json +5 -0
- homeassistant/components/miele/translations/cs.json +25 -1
- homeassistant/components/miele/translations/de.json +25 -1
- homeassistant/components/miele/translations/en-GB.json +24 -0
- homeassistant/components/miele/translations/en.json +25 -1
- homeassistant/components/miele/translations/es.json +24 -0
- homeassistant/components/miele/translations/et.json +24 -0
- homeassistant/components/miele/translations/ga.json +20 -1
- homeassistant/components/miele/translations/he.json +0 -1
- homeassistant/components/miele/translations/hu.json +0 -1
- homeassistant/components/miele/translations/it.json +9 -3
- homeassistant/components/miele/translations/lt.json +25 -1
- homeassistant/components/miele/translations/mk.json +6 -0
- homeassistant/components/miele/translations/pt.json +23 -0
- homeassistant/components/miele/translations/ru.json +3 -1
- homeassistant/components/miele/translations/sk.json +24 -0
- homeassistant/components/miele/translations/sr-Latn.json +16 -0
- homeassistant/components/miele/translations/sv.json +9 -1
- homeassistant/components/miele/translations/tr.json +39 -1
- homeassistant/components/miele/translations/zh-Hans.json +24 -1
- homeassistant/components/miele/translations/zh-Hant.json +24 -0
- homeassistant/components/mikrotik/translations/it.json +1 -1
- homeassistant/components/min_max/translations/sr-Latn.json +44 -2
- homeassistant/components/minecraft_server/translations/mk.json +5 -0
- homeassistant/components/moat/config_flow.py +1 -1
- homeassistant/components/mobile_app/__init__.py +33 -3
- homeassistant/components/mobile_app/binary_sensor.py +4 -3
- homeassistant/components/mobile_app/const.py +3 -0
- homeassistant/components/mobile_app/entity.py +42 -12
- homeassistant/components/mobile_app/sensor.py +19 -17
- homeassistant/components/mobile_app/webhook.py +28 -11
- homeassistant/components/modbus/__init__.py +23 -2
- homeassistant/components/modbus/climate.py +45 -8
- homeassistant/components/modbus/const.py +7 -0
- homeassistant/components/modbus/entity.py +17 -11
- homeassistant/components/modbus/sensor.py +18 -2
- homeassistant/components/modbus/validators.py +48 -0
- homeassistant/components/mold_indicator/translations/sr-Latn.json +41 -3
- homeassistant/components/monzo/translations/it.json +1 -1
- homeassistant/components/motion_blinds/manifest.json +1 -0
- homeassistant/components/motioneye/translations/it.json +1 -1
- homeassistant/components/motionmount/translations/it.json +1 -1
- homeassistant/components/mqtt/__init__.py +2 -0
- homeassistant/components/mqtt/client.py +45 -3
- homeassistant/components/mqtt/config_flow.py +388 -1
- homeassistant/components/mqtt/const.py +3 -0
- homeassistant/components/mqtt/entity.py +1 -0
- homeassistant/components/mqtt/strings.json +101 -13
- homeassistant/components/mqtt/text.py +8 -6
- homeassistant/components/mqtt/translations/bg.json +41 -7
- homeassistant/components/mqtt/translations/cs.json +129 -41
- homeassistant/components/mqtt/translations/de.json +107 -19
- homeassistant/components/mqtt/translations/el.json +26 -1
- homeassistant/components/mqtt/translations/en-GB.json +101 -13
- homeassistant/components/mqtt/translations/en.json +101 -13
- homeassistant/components/mqtt/translations/es.json +100 -12
- homeassistant/components/mqtt/translations/et.json +100 -12
- homeassistant/components/mqtt/translations/fr.json +1 -5
- homeassistant/components/mqtt/translations/ga.json +84 -11
- homeassistant/components/mqtt/translations/he.json +1 -11
- homeassistant/components/mqtt/translations/hu.json +0 -4
- homeassistant/components/mqtt/translations/it.json +27 -11
- homeassistant/components/mqtt/translations/lt.json +101 -13
- homeassistant/components/mqtt/translations/mk.json +17 -0
- homeassistant/components/mqtt/translations/nl.json +115 -23
- homeassistant/components/mqtt/translations/pl.json +1 -0
- homeassistant/components/mqtt/translations/pt.json +100 -14
- homeassistant/components/mqtt/translations/ru.json +6 -9
- homeassistant/components/mqtt/translations/sk.json +101 -13
- homeassistant/components/mqtt/translations/sr-Latn.json +553 -35
- homeassistant/components/mqtt/translations/sv.json +28 -4
- homeassistant/components/mqtt/translations/tr.json +352 -5
- homeassistant/components/mqtt/translations/zh-Hans.json +101 -15
- homeassistant/components/mqtt/translations/zh-Hant.json +100 -12
- homeassistant/components/mqtt/valve.py +7 -4
- homeassistant/components/mqtt/water_heater.py +4 -3
- homeassistant/components/music_assistant/__init__.py +35 -9
- homeassistant/components/music_assistant/config_flow.py +331 -74
- homeassistant/components/music_assistant/const.py +7 -0
- homeassistant/components/music_assistant/helpers.py +22 -2
- homeassistant/components/music_assistant/manifest.json +6 -3
- homeassistant/components/music_assistant/media_player.py +10 -60
- homeassistant/components/music_assistant/quality_scale.yaml +64 -0
- homeassistant/components/music_assistant/{actions.py → services.py} +70 -19
- homeassistant/components/music_assistant/strings.json +28 -11
- homeassistant/components/music_assistant/translations/bg.json +9 -9
- homeassistant/components/music_assistant/translations/ca.json +3 -9
- homeassistant/components/music_assistant/translations/cs.json +28 -11
- homeassistant/components/music_assistant/translations/de.json +27 -10
- homeassistant/components/music_assistant/translations/el.json +4 -12
- homeassistant/components/music_assistant/translations/en-GB.json +27 -10
- homeassistant/components/music_assistant/translations/en.json +27 -10
- homeassistant/components/music_assistant/translations/es.json +28 -11
- homeassistant/components/music_assistant/translations/et.json +27 -10
- homeassistant/components/music_assistant/translations/fr.json +1 -16
- homeassistant/components/music_assistant/translations/ga.json +27 -11
- homeassistant/components/music_assistant/translations/he.json +1 -16
- homeassistant/components/music_assistant/translations/hu.json +1 -16
- homeassistant/components/music_assistant/translations/id.json +1 -2
- homeassistant/components/music_assistant/translations/it.json +25 -1
- homeassistant/components/music_assistant/translations/ja.json +1 -16
- homeassistant/components/music_assistant/translations/ko.json +1 -15
- homeassistant/components/music_assistant/translations/lt.json +28 -11
- homeassistant/components/music_assistant/translations/nl.json +9 -1
- homeassistant/components/music_assistant/translations/pt-BR.json +0 -14
- homeassistant/components/music_assistant/translations/pt.json +27 -10
- homeassistant/components/music_assistant/translations/ru.json +26 -11
- homeassistant/components/music_assistant/translations/sk.json +27 -10
- homeassistant/components/music_assistant/translations/sl.json +1 -2
- homeassistant/components/music_assistant/translations/sr-Latn.json +1 -16
- homeassistant/components/music_assistant/translations/sv.json +4 -12
- homeassistant/components/music_assistant/translations/tr.json +27 -11
- homeassistant/components/music_assistant/translations/zh-Hans.json +28 -11
- homeassistant/components/music_assistant/translations/zh-Hant.json +27 -10
- homeassistant/components/mvglive/manifest.json +1 -0
- homeassistant/components/myuplink/__init__.py +16 -11
- homeassistant/components/myuplink/strings.json +3 -0
- homeassistant/components/myuplink/translations/cs.json +3 -0
- homeassistant/components/myuplink/translations/de.json +3 -0
- homeassistant/components/myuplink/translations/en-GB.json +3 -0
- homeassistant/components/myuplink/translations/en.json +3 -0
- homeassistant/components/myuplink/translations/es.json +3 -0
- homeassistant/components/myuplink/translations/et.json +3 -0
- homeassistant/components/myuplink/translations/it.json +2 -2
- homeassistant/components/myuplink/translations/lt.json +3 -0
- homeassistant/components/myuplink/translations/pt.json +3 -0
- homeassistant/components/myuplink/translations/ru.json +3 -0
- homeassistant/components/myuplink/translations/sk.json +3 -0
- homeassistant/components/myuplink/translations/tr.json +3 -0
- homeassistant/components/myuplink/translations/zh-Hans.json +3 -0
- homeassistant/components/myuplink/translations/zh-Hant.json +3 -0
- homeassistant/components/nam/translations/it.json +2 -2
- homeassistant/components/nanoleaf/translations/it.json +1 -1
- homeassistant/components/nasweb/__init__.py +5 -1
- homeassistant/components/nasweb/alarm_control_panel.py +154 -0
- homeassistant/components/nasweb/coordinator.py +3 -0
- homeassistant/components/nasweb/strings.json +5 -0
- homeassistant/components/nasweb/translations/bg.json +5 -0
- homeassistant/components/nasweb/translations/cs.json +5 -0
- homeassistant/components/nasweb/translations/de.json +5 -0
- homeassistant/components/nasweb/translations/en-GB.json +5 -0
- homeassistant/components/nasweb/translations/en.json +5 -0
- homeassistant/components/nasweb/translations/es.json +5 -0
- homeassistant/components/nasweb/translations/et.json +5 -0
- homeassistant/components/nasweb/translations/ga.json +5 -0
- homeassistant/components/nasweb/translations/it.json +7 -0
- homeassistant/components/nasweb/translations/lt.json +5 -0
- homeassistant/components/nasweb/translations/pt.json +5 -0
- homeassistant/components/nasweb/translations/sk.json +5 -0
- homeassistant/components/nasweb/translations/sv.json +5 -0
- homeassistant/components/nasweb/translations/tr.json +7 -0
- homeassistant/components/nasweb/translations/zh-Hans.json +5 -0
- homeassistant/components/nasweb/translations/zh-Hant.json +5 -0
- homeassistant/components/neato/__init__.py +14 -8
- homeassistant/components/neato/strings.json +5 -0
- homeassistant/components/neato/translations/cs.json +5 -0
- homeassistant/components/neato/translations/de.json +5 -0
- homeassistant/components/neato/translations/en-GB.json +5 -0
- homeassistant/components/neato/translations/en.json +5 -0
- homeassistant/components/neato/translations/es.json +5 -0
- homeassistant/components/neato/translations/et.json +5 -0
- homeassistant/components/neato/translations/ga.json +5 -0
- homeassistant/components/neato/translations/it.json +1 -1
- homeassistant/components/neato/translations/lt.json +5 -0
- homeassistant/components/neato/translations/mk.json +7 -0
- homeassistant/components/neato/translations/pt.json +5 -0
- homeassistant/components/neato/translations/sk.json +5 -0
- homeassistant/components/neato/translations/tr.json +5 -0
- homeassistant/components/neato/translations/zh-Hans.json +5 -0
- homeassistant/components/neato/translations/zh-Hant.json +5 -0
- homeassistant/components/nederlandse_spoorwegen/__init__.py +1 -1
- homeassistant/components/nederlandse_spoorwegen/binary_sensor.py +120 -0
- homeassistant/components/nederlandse_spoorwegen/icons.json +15 -0
- homeassistant/components/nederlandse_spoorwegen/sensor.py +49 -75
- homeassistant/components/nederlandse_spoorwegen/strings.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/cs.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/de.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/en-GB.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/en.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/es.json +10 -0
- homeassistant/components/nederlandse_spoorwegen/translations/et.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/ga.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/it.json +1 -1
- homeassistant/components/nederlandse_spoorwegen/translations/lt.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/pt.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/sk.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/tr.json +40 -0
- homeassistant/components/nederlandse_spoorwegen/translations/zh-Hans.json +13 -0
- homeassistant/components/nederlandse_spoorwegen/translations/zh-Hant.json +13 -0
- homeassistant/components/nest/manifest.json +1 -1
- homeassistant/components/nest/quality_scale.yaml +2 -10
- homeassistant/components/nest/strings.json +12 -0
- homeassistant/components/nest/translations/cs.json +12 -0
- homeassistant/components/nest/translations/de.json +13 -1
- homeassistant/components/nest/translations/en-GB.json +12 -0
- homeassistant/components/nest/translations/en.json +12 -0
- homeassistant/components/nest/translations/es.json +12 -0
- homeassistant/components/nest/translations/et.json +12 -0
- homeassistant/components/nest/translations/ga.json +12 -0
- homeassistant/components/nest/translations/it.json +17 -1
- homeassistant/components/nest/translations/lt.json +12 -0
- homeassistant/components/nest/translations/pt.json +12 -0
- homeassistant/components/nest/translations/sk.json +12 -0
- homeassistant/components/nest/translations/tr.json +12 -0
- homeassistant/components/nest/translations/zh-Hans.json +12 -0
- homeassistant/components/nest/translations/zh-Hant.json +12 -0
- homeassistant/components/netatmo/__init__.py +13 -10
- homeassistant/components/netatmo/strings.json +5 -0
- homeassistant/components/netatmo/translations/cs.json +5 -0
- homeassistant/components/netatmo/translations/de.json +5 -0
- homeassistant/components/netatmo/translations/en-GB.json +5 -0
- homeassistant/components/netatmo/translations/en.json +5 -0
- homeassistant/components/netatmo/translations/es.json +5 -0
- homeassistant/components/netatmo/translations/et.json +5 -0
- homeassistant/components/netatmo/translations/ga.json +5 -0
- homeassistant/components/netatmo/translations/it.json +1 -1
- homeassistant/components/netatmo/translations/lt.json +5 -0
- homeassistant/components/netatmo/translations/mk.json +27 -2
- homeassistant/components/netatmo/translations/pt.json +5 -0
- homeassistant/components/netatmo/translations/sk.json +5 -0
- homeassistant/components/netatmo/translations/tr.json +5 -0
- homeassistant/components/netatmo/translations/zh-Hans.json +5 -0
- homeassistant/components/netatmo/translations/zh-Hant.json +5 -0
- homeassistant/components/netgear/translations/sr-Latn.json +3 -0
- homeassistant/components/network/websocket.py +0 -1
- homeassistant/components/nextcloud/translations/it.json +1 -1
- homeassistant/components/nextdns/translations/it.json +2 -2
- homeassistant/components/nextdns/translations/tr.json +14 -1
- homeassistant/components/nice_go/translations/it.json +1 -1
- homeassistant/components/nightscout/translations/tr.json +4 -0
- homeassistant/components/niko_home_control/__init__.py +6 -1
- homeassistant/components/niko_home_control/climate.py +100 -0
- homeassistant/components/niko_home_control/config_flow.py +6 -2
- homeassistant/components/niko_home_control/const.py +17 -0
- homeassistant/components/niko_home_control/icons.json +20 -0
- homeassistant/components/niko_home_control/strings.json +21 -1
- homeassistant/components/niko_home_control/translations/bg.json +20 -1
- homeassistant/components/niko_home_control/translations/cs.json +21 -1
- homeassistant/components/niko_home_control/translations/de.json +21 -1
- homeassistant/components/niko_home_control/translations/el.json +21 -1
- homeassistant/components/niko_home_control/translations/en-GB.json +21 -1
- homeassistant/components/niko_home_control/translations/en.json +21 -1
- homeassistant/components/niko_home_control/translations/es.json +21 -1
- homeassistant/components/niko_home_control/translations/et.json +21 -1
- homeassistant/components/niko_home_control/translations/ga.json +21 -1
- homeassistant/components/niko_home_control/translations/it.json +3 -1
- homeassistant/components/niko_home_control/translations/lt.json +21 -1
- homeassistant/components/niko_home_control/translations/nl.json +3 -1
- homeassistant/components/niko_home_control/translations/pt.json +21 -1
- homeassistant/components/niko_home_control/translations/sk.json +21 -1
- homeassistant/components/niko_home_control/translations/sv.json +17 -0
- homeassistant/components/niko_home_control/translations/tr.json +31 -2
- homeassistant/components/niko_home_control/translations/zh-Hans.json +21 -1
- homeassistant/components/niko_home_control/translations/zh-Hant.json +21 -1
- homeassistant/components/nina/config_flow.py +41 -61
- homeassistant/components/nina/strings.json +10 -6
- homeassistant/components/nina/translations/ar.json +0 -4
- homeassistant/components/nina/translations/bg.json +2 -4
- homeassistant/components/nina/translations/ca.json +2 -6
- homeassistant/components/nina/translations/cs.json +10 -6
- homeassistant/components/nina/translations/da.json +1 -14
- homeassistant/components/nina/translations/de.json +10 -6
- homeassistant/components/nina/translations/el.json +8 -6
- homeassistant/components/nina/translations/en-GB.json +10 -6
- homeassistant/components/nina/translations/en.json +10 -6
- homeassistant/components/nina/translations/es.json +10 -6
- homeassistant/components/nina/translations/et.json +10 -6
- homeassistant/components/nina/translations/fi.json +2 -6
- homeassistant/components/nina/translations/fr.json +2 -6
- homeassistant/components/nina/translations/ga.json +10 -6
- homeassistant/components/nina/translations/he.json +1 -14
- homeassistant/components/nina/translations/hu.json +2 -6
- homeassistant/components/nina/translations/id.json +2 -6
- homeassistant/components/nina/translations/it.json +2 -6
- homeassistant/components/nina/translations/ja.json +2 -6
- homeassistant/components/nina/translations/ko.json +2 -6
- homeassistant/components/nina/translations/lt.json +10 -6
- homeassistant/components/nina/translations/lv.json +2 -6
- homeassistant/components/nina/translations/mk.json +9 -0
- homeassistant/components/nina/translations/nb.json +2 -6
- homeassistant/components/nina/translations/nl.json +8 -6
- homeassistant/components/nina/translations/pl.json +2 -6
- homeassistant/components/nina/translations/pt-BR.json +2 -6
- homeassistant/components/nina/translations/pt.json +10 -6
- homeassistant/components/nina/translations/ro.json +1 -7
- homeassistant/components/nina/translations/ru.json +2 -6
- homeassistant/components/nina/translations/sk.json +10 -6
- homeassistant/components/nina/translations/sl.json +1 -14
- homeassistant/components/nina/translations/sr-Latn.json +0 -3
- homeassistant/components/nina/translations/sv.json +2 -6
- homeassistant/components/nina/translations/tr.json +56 -6
- homeassistant/components/nina/translations/uk.json +1 -7
- homeassistant/components/nina/translations/vi.json +1 -12
- homeassistant/components/nina/translations/zh-Hans.json +10 -6
- homeassistant/components/nina/translations/zh-Hant.json +10 -6
- homeassistant/components/nintendo_parental_controls/entity.py +1 -0
- homeassistant/components/nintendo_parental_controls/translations/it.json +1 -1
- homeassistant/components/nintendo_parental_controls/translations/tr.json +68 -0
- homeassistant/components/noaa_tides/const.py +11 -0
- homeassistant/components/noaa_tides/sensor.py +14 -15
- homeassistant/components/nordpool/manifest.json +2 -2
- homeassistant/components/nordpool/translations/it.json +1 -1
- homeassistant/components/nordpool/translations/mk.json +7 -0
- homeassistant/components/notify/translations/pl.json +80 -0
- homeassistant/components/notify/translations/pt.json +1 -1
- homeassistant/components/notify/translations/sr-Latn.json +3 -0
- homeassistant/components/notion/translations/it.json +1 -1
- homeassistant/components/ntfy/translations/it.json +1 -1
- homeassistant/components/ntfy/translations/mk.json +3 -0
- homeassistant/components/ntfy/translations/pl.json +16 -0
- homeassistant/components/ntfy/translations/sv.json +9 -0
- homeassistant/components/ntfy/translations/tr.json +94 -0
- homeassistant/components/nuki/manifest.json +1 -0
- homeassistant/components/nuki/translations/it.json +1 -1
- homeassistant/components/number/translations/nl.json +3 -0
- homeassistant/components/number/translations/sr-Latn.json +181 -0
- homeassistant/components/number/translations/tr.json +6 -0
- homeassistant/components/nut/translations/it.json +2 -2
- homeassistant/components/octoprint/sensor.py +13 -8
- homeassistant/components/octoprint/translations/it.json +6 -1
- homeassistant/components/octoprint/translations/tr.json +10 -0
- homeassistant/components/ohme/__init__.py +0 -2
- homeassistant/components/ohme/coordinator.py +1 -27
- homeassistant/components/ohme/manifest.json +1 -1
- homeassistant/components/ohme/sensor.py +3 -20
- homeassistant/components/ohme/translations/it.json +1 -1
- homeassistant/components/ohme/translations/lb.json +11 -0
- homeassistant/components/ollama/config_flow.py +13 -1
- homeassistant/components/ollama/translations/it.json +1 -1
- homeassistant/components/ollama/translations/sk.json +2 -2
- homeassistant/components/ollama/translations/tr.json +29 -0
- homeassistant/components/onboarding/const.py +16 -1
- homeassistant/components/onboarding/views.py +2 -2
- homeassistant/components/onedrive/__init__.py +8 -1
- homeassistant/components/onedrive/manifest.json +1 -1
- homeassistant/components/onedrive/strings.json +3 -0
- homeassistant/components/onedrive/translations/cs.json +3 -0
- homeassistant/components/onedrive/translations/de.json +3 -0
- homeassistant/components/onedrive/translations/en-GB.json +3 -0
- homeassistant/components/onedrive/translations/en.json +3 -0
- homeassistant/components/onedrive/translations/es.json +3 -0
- homeassistant/components/onedrive/translations/et.json +3 -0
- homeassistant/components/onedrive/translations/ga.json +3 -0
- homeassistant/components/onedrive/translations/it.json +2 -2
- homeassistant/components/onedrive/translations/lt.json +3 -0
- homeassistant/components/onedrive/translations/pt.json +3 -0
- homeassistant/components/onedrive/translations/sk.json +3 -0
- homeassistant/components/onedrive/translations/tr.json +3 -0
- homeassistant/components/onedrive/translations/zh-Hans.json +3 -0
- homeassistant/components/onedrive/translations/zh-Hant.json +3 -0
- homeassistant/components/onewire/strings.json +1 -1
- homeassistant/components/onewire/translations/it.json +1 -1
- homeassistant/components/onewire/translations/tr.json +10 -0
- homeassistant/components/onkyo/translations/it.json +1 -1
- homeassistant/components/onvif/translations/it.json +1 -1
- homeassistant/components/open_router/manifest.json +1 -1
- homeassistant/components/open_router/translations/sk.json +2 -2
- homeassistant/components/openai_conversation/config_flow.py +15 -3
- homeassistant/components/openai_conversation/const.py +2 -0
- homeassistant/components/openai_conversation/entity.py +56 -2
- homeassistant/components/openai_conversation/manifest.json +1 -1
- homeassistant/components/openai_conversation/strings.json +6 -2
- homeassistant/components/openai_conversation/translations/bg.json +10 -0
- homeassistant/components/openai_conversation/translations/cs.json +6 -1
- homeassistant/components/openai_conversation/translations/de.json +6 -1
- homeassistant/components/openai_conversation/translations/el.json +4 -0
- homeassistant/components/openai_conversation/translations/en-GB.json +6 -1
- homeassistant/components/openai_conversation/translations/en.json +6 -1
- homeassistant/components/openai_conversation/translations/es.json +6 -1
- homeassistant/components/openai_conversation/translations/et.json +6 -1
- homeassistant/components/openai_conversation/translations/ga.json +6 -1
- homeassistant/components/openai_conversation/translations/it.json +4 -3
- homeassistant/components/openai_conversation/translations/lt.json +6 -1
- homeassistant/components/openai_conversation/translations/nl.json +2 -1
- homeassistant/components/openai_conversation/translations/pt.json +6 -1
- homeassistant/components/openai_conversation/translations/sk.json +8 -3
- homeassistant/components/openai_conversation/translations/sv.json +4 -1
- homeassistant/components/openai_conversation/translations/tr.json +73 -0
- homeassistant/components/openai_conversation/translations/zh-Hans.json +6 -1
- homeassistant/components/openai_conversation/translations/zh-Hant.json +6 -1
- homeassistant/components/openexchangerates/translations/it.json +1 -1
- homeassistant/components/openrgb/icons.json +1 -1
- homeassistant/components/openrgb/translations/tr.json +84 -0
- homeassistant/components/opentherm_gw/services.py +17 -2
- homeassistant/components/opentherm_gw/strings.json +3 -3
- homeassistant/components/opentherm_gw/translations/cs.json +3 -3
- homeassistant/components/opentherm_gw/translations/de.json +3 -3
- homeassistant/components/opentherm_gw/translations/el.json +3 -3
- homeassistant/components/opentherm_gw/translations/en-GB.json +3 -3
- homeassistant/components/opentherm_gw/translations/en.json +3 -3
- homeassistant/components/opentherm_gw/translations/es.json +3 -3
- homeassistant/components/opentherm_gw/translations/et.json +3 -3
- homeassistant/components/opentherm_gw/translations/ga.json +0 -3
- homeassistant/components/opentherm_gw/translations/hu.json +0 -3
- homeassistant/components/opentherm_gw/translations/it.json +0 -2
- homeassistant/components/opentherm_gw/translations/ja.json +0 -3
- homeassistant/components/opentherm_gw/translations/lt.json +3 -3
- homeassistant/components/opentherm_gw/translations/mk.json +10 -0
- homeassistant/components/opentherm_gw/translations/nl.json +0 -2
- homeassistant/components/opentherm_gw/translations/pt.json +3 -3
- homeassistant/components/opentherm_gw/translations/ru.json +3 -3
- homeassistant/components/opentherm_gw/translations/sk.json +3 -3
- homeassistant/components/opentherm_gw/translations/sv.json +0 -3
- homeassistant/components/opentherm_gw/translations/tr.json +0 -3
- homeassistant/components/opentherm_gw/translations/zh-Hans.json +3 -3
- homeassistant/components/opentherm_gw/translations/zh-Hant.json +3 -3
- homeassistant/components/openuv/translations/it.json +1 -1
- homeassistant/components/openweathermap/translations/tr.json +49 -0
- homeassistant/components/opower/translations/it.json +1 -1
- homeassistant/components/opower/translations/sv.json +6 -0
- homeassistant/components/opower/translations/tr.json +33 -1
- homeassistant/components/oralb/manifest.json +1 -0
- homeassistant/components/oralb/translations/tr.json +29 -2
- homeassistant/components/osoenergy/translations/it.json +1 -1
- homeassistant/components/osoenergy/translations/sv.json +7 -0
- homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py +8 -4
- homeassistant/components/overkiz/sensor.py +14 -0
- homeassistant/components/overkiz/translations/it.json +1 -1
- homeassistant/components/overkiz/translations/mk.json +5 -0
- homeassistant/components/ovo_energy/translations/it.json +1 -1
- homeassistant/components/panasonic_viera/manifest.json +1 -1
- homeassistant/components/peblar/translations/it.json +2 -2
- homeassistant/components/peco/translations/de.json +1 -1
- homeassistant/components/permobil/translations/it.json +1 -1
- homeassistant/components/pglab/translations/cs.json +1 -1
- homeassistant/components/pglab/translations/zh-Hant.json +1 -1
- homeassistant/components/philips_js/translations/it.json +1 -1
- homeassistant/components/pi_hole/translations/it.json +1 -1
- homeassistant/components/picnic/translations/it.json +1 -1
- homeassistant/components/ping/helpers.py +1 -1
- homeassistant/components/ping/manifest.json +1 -0
- homeassistant/components/playstation_network/coordinator.py +15 -12
- homeassistant/components/playstation_network/manifest.json +1 -1
- homeassistant/components/playstation_network/sensor.py +3 -5
- homeassistant/components/playstation_network/translations/it.json +2 -2
- homeassistant/components/playstation_network/translations/tr.json +85 -0
- homeassistant/components/plex/translations/it.json +1 -1
- homeassistant/components/plugwise/__init__.py +3 -3
- homeassistant/components/plugwise/config_flow.py +11 -7
- homeassistant/components/plugwise/const.py +16 -1
- homeassistant/components/plugwise/entity.py +3 -3
- homeassistant/components/plugwise/manifest.json +1 -1
- homeassistant/components/plugwise/select.py +24 -9
- homeassistant/components/plugwise/sensor.py +3 -6
- homeassistant/components/plugwise/strings.json +11 -3
- homeassistant/components/plugwise/translations/af.json +1 -11
- homeassistant/components/plugwise/translations/bg.json +17 -4
- homeassistant/components/plugwise/translations/ca.json +9 -7
- homeassistant/components/plugwise/translations/cs.json +13 -5
- homeassistant/components/plugwise/translations/de.json +14 -6
- homeassistant/components/plugwise/translations/el.json +10 -11
- homeassistant/components/plugwise/translations/en-GB.json +11 -3
- homeassistant/components/plugwise/translations/en.json +11 -3
- homeassistant/components/plugwise/translations/es.json +11 -3
- homeassistant/components/plugwise/translations/et.json +11 -3
- homeassistant/components/plugwise/translations/fi.json +0 -25
- homeassistant/components/plugwise/translations/fr.json +0 -17
- homeassistant/components/plugwise/translations/ga.json +12 -4
- homeassistant/components/plugwise/translations/he.json +0 -22
- homeassistant/components/plugwise/translations/hu.json +0 -27
- homeassistant/components/plugwise/translations/id.json +0 -27
- homeassistant/components/plugwise/translations/is.json +1 -16
- homeassistant/components/plugwise/translations/it.json +5 -14
- homeassistant/components/plugwise/translations/ja.json +0 -25
- homeassistant/components/plugwise/translations/ko.json +0 -18
- homeassistant/components/plugwise/translations/lt.json +14 -6
- homeassistant/components/plugwise/translations/lv.json +0 -14
- homeassistant/components/plugwise/translations/mk.json +1 -1
- homeassistant/components/plugwise/translations/nb.json +0 -18
- homeassistant/components/plugwise/translations/nl.json +9 -9
- homeassistant/components/plugwise/translations/pl.json +0 -18
- homeassistant/components/plugwise/translations/pt-BR.json +0 -18
- homeassistant/components/plugwise/translations/pt.json +11 -3
- homeassistant/components/plugwise/translations/ro.json +0 -16
- homeassistant/components/plugwise/translations/ru.json +0 -27
- homeassistant/components/plugwise/translations/sk.json +13 -5
- homeassistant/components/plugwise/translations/sl.json +0 -17
- homeassistant/components/plugwise/translations/sr-Latn.json +6 -6
- homeassistant/components/plugwise/translations/sr.json +0 -8
- homeassistant/components/plugwise/translations/sv.json +18 -10
- homeassistant/components/plugwise/translations/tr.json +16 -5
- homeassistant/components/plugwise/translations/uk.json +0 -18
- homeassistant/components/plugwise/translations/vi.json +0 -14
- homeassistant/components/plugwise/translations/zh-Hans.json +14 -6
- homeassistant/components/plugwise/translations/zh-Hant.json +13 -5
- homeassistant/components/plum_lightpad/translations/tr.json +8 -1
- homeassistant/components/point/__init__.py +14 -7
- homeassistant/components/point/strings.json +5 -0
- homeassistant/components/point/translations/cs.json +5 -0
- homeassistant/components/point/translations/de.json +5 -0
- homeassistant/components/point/translations/en-GB.json +5 -0
- homeassistant/components/point/translations/en.json +5 -0
- homeassistant/components/point/translations/es.json +5 -0
- homeassistant/components/point/translations/et.json +5 -0
- homeassistant/components/point/translations/ga.json +5 -0
- homeassistant/components/point/translations/it.json +1 -1
- homeassistant/components/point/translations/lt.json +5 -0
- homeassistant/components/point/translations/pt.json +5 -0
- homeassistant/components/point/translations/sk.json +5 -0
- homeassistant/components/point/translations/tr.json +5 -0
- homeassistant/components/point/translations/zh-Hans.json +5 -0
- homeassistant/components/point/translations/zh-Hant.json +5 -0
- homeassistant/components/pooldose/__init__.py +34 -2
- homeassistant/components/pooldose/binary_sensor.py +129 -0
- homeassistant/components/pooldose/config_flow.py +1 -0
- homeassistant/components/pooldose/const.py +12 -0
- homeassistant/components/pooldose/entity.py +5 -0
- homeassistant/components/pooldose/icons.json +107 -4
- homeassistant/components/pooldose/manifest.json +1 -1
- homeassistant/components/pooldose/sensor.py +71 -24
- homeassistant/components/pooldose/strings.json +70 -2
- homeassistant/components/pooldose/switch.py +95 -0
- homeassistant/components/pooldose/translations/cs.json +70 -2
- homeassistant/components/pooldose/translations/de.json +70 -2
- homeassistant/components/pooldose/translations/el.json +11 -0
- homeassistant/components/pooldose/translations/en-GB.json +70 -2
- homeassistant/components/pooldose/translations/en.json +70 -2
- homeassistant/components/pooldose/translations/es.json +70 -2
- homeassistant/components/pooldose/translations/et.json +70 -2
- homeassistant/components/pooldose/translations/ga.json +70 -2
- homeassistant/components/pooldose/translations/it.json +42 -1
- homeassistant/components/pooldose/translations/lt.json +70 -2
- homeassistant/components/pooldose/translations/nl.json +20 -0
- homeassistant/components/pooldose/translations/pt.json +71 -3
- homeassistant/components/pooldose/translations/sk.json +70 -2
- homeassistant/components/pooldose/translations/sv.json +20 -0
- homeassistant/components/pooldose/translations/tr.json +145 -0
- homeassistant/components/pooldose/translations/zh-Hans.json +70 -2
- homeassistant/components/pooldose/translations/zh-Hant.json +70 -2
- homeassistant/components/portainer/binary_sensor.py +23 -21
- homeassistant/components/portainer/button.py +7 -4
- homeassistant/components/portainer/config_flow.py +2 -0
- homeassistant/components/portainer/coordinator.py +58 -10
- homeassistant/components/portainer/diagnostics.py +5 -5
- homeassistant/components/portainer/entity.py +15 -6
- homeassistant/components/portainer/icons.json +12 -0
- homeassistant/components/portainer/sensor.py +76 -17
- homeassistant/components/portainer/strings.json +12 -0
- homeassistant/components/portainer/switch.py +6 -9
- homeassistant/components/portainer/translations/bg.json +12 -0
- homeassistant/components/portainer/translations/cs.json +12 -0
- homeassistant/components/portainer/translations/de.json +12 -0
- homeassistant/components/portainer/translations/en-GB.json +12 -0
- homeassistant/components/portainer/translations/en.json +12 -0
- homeassistant/components/portainer/translations/es.json +12 -0
- homeassistant/components/portainer/translations/et.json +12 -0
- homeassistant/components/portainer/translations/ga.json +12 -0
- homeassistant/components/portainer/translations/it.json +13 -1
- homeassistant/components/portainer/translations/lt.json +12 -0
- homeassistant/components/portainer/translations/pt.json +12 -0
- homeassistant/components/portainer/translations/ru.json +12 -0
- homeassistant/components/portainer/translations/sk.json +12 -0
- homeassistant/components/portainer/translations/sr-Latn.json +12 -0
- homeassistant/components/portainer/translations/sv.json +12 -0
- homeassistant/components/portainer/translations/tr.json +100 -0
- homeassistant/components/portainer/translations/zh-Hans.json +12 -0
- homeassistant/components/portainer/translations/zh-Hant.json +12 -0
- homeassistant/components/powerfox/translations/it.json +2 -2
- homeassistant/components/powerwall/translations/it.json +1 -1
- homeassistant/components/probe_plus/config_flow.py +1 -1
- homeassistant/components/probe_plus/translations/tr.json +5 -0
- homeassistant/components/prometheus/__init__.py +291 -261
- homeassistant/components/prosegur/translations/it.json +1 -1
- homeassistant/components/prowl/translations/tr.json +21 -0
- homeassistant/components/ps4/translations/tr.json +6 -0
- homeassistant/components/pterodactyl/translations/it.json +1 -1
- homeassistant/components/purpleair/translations/it.json +1 -1
- homeassistant/components/purpleair/translations/sr-Latn.json +36 -0
- homeassistant/components/pushover/translations/it.json +1 -1
- homeassistant/components/pvoutput/translations/it.json +1 -1
- homeassistant/components/pvpc_hourly_pricing/translations/it.json +1 -1
- homeassistant/components/pyload/translations/it.json +2 -2
- homeassistant/components/qbittorrent/translations/tr.json +4 -0
- homeassistant/components/qbus/translations/tr.json +10 -0
- homeassistant/components/radarr/translations/it.json +1 -1
- homeassistant/components/rainbird/translations/it.json +1 -1
- homeassistant/components/rainmachine/translations/mk.json +3 -0
- homeassistant/components/random/strings.json +1 -0
- homeassistant/components/random/translations/cs.json +1 -0
- homeassistant/components/random/translations/de.json +1 -0
- homeassistant/components/random/translations/en-GB.json +1 -0
- homeassistant/components/random/translations/en.json +1 -0
- homeassistant/components/random/translations/es.json +1 -0
- homeassistant/components/random/translations/et.json +1 -0
- homeassistant/components/random/translations/ga.json +1 -0
- homeassistant/components/random/translations/lt.json +1 -0
- homeassistant/components/random/translations/nl.json +1 -0
- homeassistant/components/random/translations/pt.json +1 -0
- homeassistant/components/random/translations/sk.json +1 -0
- homeassistant/components/random/translations/sr-Latn.json +119 -6
- homeassistant/components/random/translations/tr.json +2 -0
- homeassistant/components/random/translations/zh-Hans.json +1 -0
- homeassistant/components/random/translations/zh-Hant.json +1 -0
- homeassistant/components/recorder/auto_repairs/schema.py +6 -5
- homeassistant/components/recorder/db_schema.py +2 -2
- homeassistant/components/recorder/migration.py +21 -2
- homeassistant/components/recorder/table_managers/statistics_meta.py +2 -2
- homeassistant/components/recorder/translations/sk.json +1 -1
- homeassistant/components/remote/translations/mk.json +10 -0
- homeassistant/components/remote_calendar/manifest.json +1 -1
- homeassistant/components/renault/manifest.json +1 -1
- homeassistant/components/renault/translations/it.json +1 -1
- homeassistant/components/renault/translations/lb.json +11 -0
- homeassistant/components/renault/translations/tr.json +12 -0
- homeassistant/components/renson/translations/mk.json +3 -0
- homeassistant/components/reolink/__init__.py +12 -5
- homeassistant/components/reolink/button.py +9 -0
- homeassistant/components/reolink/host.py +2 -6
- homeassistant/components/reolink/icons.json +12 -0
- homeassistant/components/reolink/manifest.json +2 -1
- homeassistant/components/reolink/number.py +28 -0
- homeassistant/components/reolink/select.py +12 -0
- homeassistant/components/reolink/strings.json +15 -0
- homeassistant/components/reolink/translations/bg.json +6 -0
- homeassistant/components/reolink/translations/cs.json +16 -1
- homeassistant/components/reolink/translations/de.json +15 -0
- homeassistant/components/reolink/translations/el.json +5 -0
- homeassistant/components/reolink/translations/en-GB.json +15 -0
- homeassistant/components/reolink/translations/en.json +15 -0
- homeassistant/components/reolink/translations/es.json +19 -4
- homeassistant/components/reolink/translations/et.json +15 -0
- homeassistant/components/reolink/translations/ga.json +15 -0
- homeassistant/components/reolink/translations/he.json +5 -0
- homeassistant/components/reolink/translations/it.json +17 -2
- homeassistant/components/reolink/translations/lt.json +15 -0
- homeassistant/components/reolink/translations/mk.json +5 -0
- homeassistant/components/reolink/translations/nl.json +5 -0
- homeassistant/components/reolink/translations/pl.json +10 -1
- homeassistant/components/reolink/translations/pt.json +15 -0
- homeassistant/components/reolink/translations/sk.json +15 -0
- homeassistant/components/reolink/translations/sr-Latn.json +16 -0
- homeassistant/components/reolink/translations/sv.json +10 -0
- homeassistant/components/reolink/translations/tr.json +71 -0
- homeassistant/components/reolink/translations/zh-Hans.json +15 -0
- homeassistant/components/reolink/translations/zh-Hant.json +15 -0
- homeassistant/components/reolink/update.py +5 -2
- homeassistant/components/rest/manifest.json +2 -1
- homeassistant/components/rest_command/__init__.py +5 -1
- homeassistant/components/rest_command/translations/de.json +1 -1
- homeassistant/components/ridwell/__init__.py +6 -0
- homeassistant/components/ridwell/calendar.py +45 -12
- homeassistant/components/ridwell/config_flow.py +43 -3
- homeassistant/components/ridwell/const.py +12 -0
- homeassistant/components/ridwell/strings.json +22 -0
- homeassistant/components/ridwell/translations/cs.json +22 -0
- homeassistant/components/ridwell/translations/de.json +22 -0
- homeassistant/components/ridwell/translations/en-GB.json +22 -0
- homeassistant/components/ridwell/translations/en.json +22 -0
- homeassistant/components/ridwell/translations/es.json +22 -0
- homeassistant/components/ridwell/translations/et.json +22 -0
- homeassistant/components/ridwell/translations/ga.json +22 -0
- homeassistant/components/ridwell/translations/it.json +23 -1
- homeassistant/components/ridwell/translations/lt.json +22 -0
- homeassistant/components/ridwell/translations/pt.json +22 -0
- homeassistant/components/ridwell/translations/sk.json +22 -0
- homeassistant/components/ridwell/translations/sr-Latn.json +22 -0
- homeassistant/components/ridwell/translations/sv.json +7 -0
- homeassistant/components/ridwell/translations/tr.json +22 -0
- homeassistant/components/ridwell/translations/zh-Hans.json +22 -0
- homeassistant/components/ridwell/translations/zh-Hant.json +22 -0
- homeassistant/components/ring/manifest.json +1 -0
- homeassistant/components/ring/translations/it.json +2 -2
- homeassistant/components/risco/translations/it.json +1 -1
- homeassistant/components/roborock/__init__.py +71 -164
- homeassistant/components/roborock/binary_sensor.py +7 -9
- homeassistant/components/roborock/button.py +27 -14
- homeassistant/components/roborock/coordinator.py +199 -342
- homeassistant/components/roborock/diagnostics.py +4 -8
- homeassistant/components/roborock/entity.py +12 -93
- homeassistant/components/roborock/image.py +37 -18
- homeassistant/components/roborock/manifest.json +2 -1
- homeassistant/components/roborock/models.py +22 -12
- homeassistant/components/roborock/number.py +31 -44
- homeassistant/components/roborock/roborock_storage.py +72 -61
- homeassistant/components/roborock/select.py +88 -53
- homeassistant/components/roborock/sensor.py +33 -42
- homeassistant/components/roborock/switch.py +32 -89
- homeassistant/components/roborock/time.py +62 -77
- homeassistant/components/roborock/translations/it.json +1 -1
- homeassistant/components/roborock/translations/tr.json +9 -1
- homeassistant/components/roborock/vacuum.py +30 -22
- homeassistant/components/roku/translations/it.json +1 -1
- homeassistant/components/roomba/translations/tr.json +6 -0
- homeassistant/components/ruckus_unleashed/translations/it.json +1 -1
- homeassistant/components/russound_rio/translations/it.json +1 -1
- homeassistant/components/ruuvi_gateway/translations/sr-Latn.json +10 -0
- homeassistant/components/ruuvitag_ble/__init__.py +1 -1
- homeassistant/components/ruuvitag_ble/config_flow.py +1 -1
- homeassistant/components/ruuvitag_ble/manifest.json +1 -1
- homeassistant/components/ruuvitag_ble/sensor.py +21 -3
- homeassistant/components/rympro/translations/it.json +1 -1
- homeassistant/components/sabnzbd/translations/it.json +1 -1
- homeassistant/components/samsungtv/config_flow.py +1 -1
- homeassistant/components/samsungtv/manifest.json +1 -1
- homeassistant/components/samsungtv/translations/fr.json +3 -0
- homeassistant/components/samsungtv/translations/it.json +1 -1
- homeassistant/components/samsungtv/translations/sr-Latn.json +3 -0
- homeassistant/components/satel_integra/__init__.py +18 -1
- homeassistant/components/satel_integra/alarm_control_panel.py +52 -58
- homeassistant/components/satel_integra/binary_sensor.py +37 -62
- homeassistant/components/satel_integra/config_flow.py +4 -2
- homeassistant/components/satel_integra/entity.py +58 -0
- homeassistant/components/satel_integra/manifest.json +1 -2
- homeassistant/components/satel_integra/quality_scale.yaml +10 -10
- homeassistant/components/satel_integra/strings.json +3 -0
- homeassistant/components/satel_integra/switch.py +39 -46
- homeassistant/components/satel_integra/translations/bg.json +3 -0
- homeassistant/components/satel_integra/translations/ca.json +3 -0
- homeassistant/components/satel_integra/translations/cs.json +3 -0
- homeassistant/components/satel_integra/translations/de.json +3 -0
- homeassistant/components/satel_integra/translations/el.json +3 -0
- homeassistant/components/satel_integra/translations/en-GB.json +3 -0
- homeassistant/components/satel_integra/translations/en.json +3 -0
- homeassistant/components/satel_integra/translations/es.json +3 -0
- homeassistant/components/satel_integra/translations/et.json +3 -0
- homeassistant/components/satel_integra/translations/fr.json +1 -0
- homeassistant/components/satel_integra/translations/ga.json +3 -0
- homeassistant/components/satel_integra/translations/he.json +3 -0
- homeassistant/components/satel_integra/translations/it.json +7 -1
- homeassistant/components/satel_integra/translations/lb.json +9 -0
- homeassistant/components/satel_integra/translations/lt.json +3 -0
- homeassistant/components/satel_integra/translations/nl.json +3 -0
- homeassistant/components/satel_integra/translations/pl.json +3 -0
- homeassistant/components/satel_integra/translations/pt.json +3 -0
- homeassistant/components/satel_integra/translations/sk.json +3 -0
- homeassistant/components/satel_integra/translations/sr-Latn.json +7 -1
- homeassistant/components/satel_integra/translations/sv.json +4 -0
- homeassistant/components/satel_integra/translations/tr.json +131 -0
- homeassistant/components/satel_integra/translations/zh-Hans.json +3 -0
- homeassistant/components/satel_integra/translations/zh-Hant.json +3 -0
- homeassistant/components/saunum/__init__.py +50 -0
- homeassistant/components/saunum/climate.py +146 -0
- homeassistant/components/saunum/config_flow.py +85 -0
- homeassistant/components/saunum/const.py +9 -0
- homeassistant/components/saunum/coordinator.py +51 -0
- homeassistant/components/saunum/diagnostics.py +49 -0
- homeassistant/components/saunum/entity.py +27 -0
- homeassistant/components/saunum/light.py +71 -0
- homeassistant/components/saunum/manifest.json +12 -0
- homeassistant/components/saunum/quality_scale.yaml +78 -0
- homeassistant/components/saunum/strings.json +59 -0
- homeassistant/components/saunum/translations/bg.json +7 -0
- homeassistant/components/saunum/translations/cs.json +59 -0
- homeassistant/components/saunum/translations/de.json +59 -0
- homeassistant/components/saunum/translations/el.json +31 -0
- homeassistant/components/saunum/translations/en-GB.json +59 -0
- homeassistant/components/saunum/translations/en.json +59 -0
- homeassistant/components/saunum/translations/es.json +59 -0
- homeassistant/components/saunum/translations/et.json +59 -0
- homeassistant/components/saunum/translations/ga.json +59 -0
- homeassistant/components/saunum/translations/it.json +22 -0
- homeassistant/components/{flick_electric/translations/sr-Latn.json → saunum/translations/lb.json} +1 -2
- homeassistant/components/saunum/translations/lt.json +59 -0
- homeassistant/components/saunum/translations/mk.json +17 -0
- homeassistant/components/saunum/translations/nl.json +39 -0
- homeassistant/components/saunum/translations/pt.json +59 -0
- homeassistant/components/saunum/translations/ru.json +9 -0
- homeassistant/components/saunum/translations/sk.json +59 -0
- homeassistant/components/saunum/translations/sr-Latn.json +9 -0
- homeassistant/components/saunum/translations/sv.json +18 -0
- homeassistant/components/saunum/translations/tr.json +59 -0
- homeassistant/components/saunum/translations/zh-Hans.json +59 -0
- homeassistant/components/saunum/translations/zh-Hant.json +59 -0
- homeassistant/components/schedule/translations/mk.json +12 -0
- homeassistant/components/schedule/translations/sr-Latn.json +18 -1
- homeassistant/components/schlage/translations/it.json +1 -1
- homeassistant/components/scrape/strings.json +1 -0
- homeassistant/components/scrape/translations/cs.json +1 -0
- homeassistant/components/scrape/translations/de.json +3 -2
- homeassistant/components/scrape/translations/en-GB.json +1 -0
- homeassistant/components/scrape/translations/en.json +1 -0
- homeassistant/components/scrape/translations/es.json +1 -0
- homeassistant/components/scrape/translations/et.json +1 -0
- homeassistant/components/scrape/translations/ga.json +1 -0
- homeassistant/components/scrape/translations/lt.json +1 -0
- homeassistant/components/scrape/translations/nl.json +1 -0
- homeassistant/components/scrape/translations/pt.json +1 -0
- homeassistant/components/scrape/translations/sk.json +1 -0
- homeassistant/components/scrape/translations/sr-Latn.json +63 -2
- homeassistant/components/scrape/translations/tr.json +4 -0
- homeassistant/components/scrape/translations/zh-Hans.json +1 -0
- homeassistant/components/scrape/translations/zh-Hant.json +1 -0
- homeassistant/components/script/__init__.py +17 -1
- homeassistant/components/script/translations/mk.json +10 -0
- homeassistant/components/select/translations/mk.json +9 -0
- homeassistant/components/sense/translations/it.json +1 -1
- homeassistant/components/sensibo/translations/es.json +1 -1
- homeassistant/components/sensibo/translations/it.json +2 -2
- homeassistant/components/sensibo/translations/mk.json +1 -0
- homeassistant/components/sensibo/translations/sr-Latn.json +19 -0
- homeassistant/components/sensirion_ble/config_flow.py +1 -1
- homeassistant/components/sensor/icons.json +3 -0
- homeassistant/components/sensor/translations/mk.json +6 -0
- homeassistant/components/sensor/translations/nl.json +3 -0
- homeassistant/components/sensor/translations/sr-Latn.json +141 -5
- homeassistant/components/sensor/translations/tr.json +10 -0
- homeassistant/components/sensorpro/config_flow.py +1 -1
- homeassistant/components/senz/__init__.py +60 -20
- homeassistant/components/senz/climate.py +30 -11
- homeassistant/components/senz/config_flow.py +57 -0
- homeassistant/components/senz/diagnostics.py +26 -0
- homeassistant/components/senz/manifest.json +1 -0
- homeassistant/components/senz/sensor.py +92 -0
- homeassistant/components/senz/strings.json +22 -1
- homeassistant/components/senz/translations/ca.json +6 -1
- homeassistant/components/senz/translations/cs.json +22 -1
- homeassistant/components/senz/translations/de.json +22 -1
- homeassistant/components/senz/translations/el.json +6 -1
- homeassistant/components/senz/translations/en-GB.json +22 -1
- homeassistant/components/senz/translations/en.json +22 -1
- homeassistant/components/senz/translations/es.json +22 -1
- homeassistant/components/senz/translations/et.json +22 -1
- homeassistant/components/senz/translations/ga.json +22 -1
- homeassistant/components/senz/translations/lt.json +22 -1
- homeassistant/components/senz/translations/nl.json +19 -1
- homeassistant/components/senz/translations/pt.json +22 -1
- homeassistant/components/senz/translations/ru.json +5 -0
- homeassistant/components/senz/translations/sk.json +22 -1
- homeassistant/components/senz/translations/sv.json +5 -0
- homeassistant/components/senz/translations/tr.json +22 -1
- homeassistant/components/senz/translations/zh-Hans.json +22 -1
- homeassistant/components/senz/translations/zh-Hant.json +22 -1
- homeassistant/components/sfr_box/translations/it.json +1 -1
- homeassistant/components/sfr_box/translations/sr-Latn.json +11 -0
- homeassistant/components/sfr_box/translations/tr.json +4 -0
- homeassistant/components/sftp_storage/translations/sv.json +2 -0
- homeassistant/components/sftp_storage/translations/tr.json +22 -0
- homeassistant/components/sharkiq/translations/it.json +1 -1
- homeassistant/components/shelly/__init__.py +2 -6
- homeassistant/components/shelly/binary_sensor.py +65 -31
- homeassistant/components/shelly/ble_provisioning.py +85 -0
- homeassistant/components/shelly/button.py +25 -13
- homeassistant/components/shelly/climate.py +11 -12
- homeassistant/components/shelly/config_flow.py +818 -46
- homeassistant/components/shelly/const.py +11 -0
- homeassistant/components/shelly/cover.py +3 -1
- homeassistant/components/shelly/entity.py +23 -36
- homeassistant/components/shelly/event.py +39 -8
- homeassistant/components/shelly/icons.json +36 -10
- homeassistant/components/shelly/light.py +5 -1
- homeassistant/components/shelly/logbook.py +2 -2
- homeassistant/components/shelly/manifest.json +10 -2
- homeassistant/components/shelly/number.py +17 -11
- homeassistant/components/shelly/quality_scale.yaml +1 -1
- homeassistant/components/shelly/repairs.py +86 -0
- homeassistant/components/shelly/select.py +76 -35
- homeassistant/components/shelly/sensor.py +128 -152
- homeassistant/components/shelly/strings.json +423 -3
- homeassistant/components/shelly/switch.py +48 -13
- homeassistant/components/shelly/text.py +13 -1
- homeassistant/components/shelly/translations/af.json +0 -9
- homeassistant/components/shelly/translations/bg.json +156 -5
- homeassistant/components/shelly/translations/ca.json +10 -8
- homeassistant/components/shelly/translations/cs.json +422 -2
- homeassistant/components/shelly/translations/da.json +0 -10
- homeassistant/components/shelly/translations/de.json +423 -3
- homeassistant/components/shelly/translations/el.json +94 -12
- homeassistant/components/shelly/translations/en-GB.json +421 -1
- homeassistant/components/shelly/translations/en.json +421 -1
- homeassistant/components/shelly/translations/es-419.json +0 -9
- homeassistant/components/shelly/translations/es.json +422 -2
- homeassistant/components/shelly/translations/et.json +422 -2
- homeassistant/components/shelly/translations/fi.json +0 -11
- homeassistant/components/shelly/translations/fr.json +13 -15
- homeassistant/components/shelly/translations/fy.json +0 -5
- homeassistant/components/shelly/translations/ga.json +410 -5
- homeassistant/components/shelly/translations/gl.json +0 -7
- homeassistant/components/shelly/translations/gsw.json +0 -9
- homeassistant/components/shelly/translations/he.json +2 -8
- homeassistant/components/shelly/translations/hu.json +0 -15
- homeassistant/components/shelly/translations/id.json +0 -15
- homeassistant/components/shelly/translations/it.json +346 -13
- homeassistant/components/shelly/translations/ja.json +0 -15
- homeassistant/components/shelly/translations/ko.json +0 -10
- homeassistant/components/shelly/translations/lb.json +10 -5
- homeassistant/components/shelly/translations/lt.json +426 -6
- homeassistant/components/shelly/translations/lv.json +0 -9
- homeassistant/components/shelly/translations/mk.json +36 -0
- homeassistant/components/shelly/translations/nb.json +0 -7
- homeassistant/components/shelly/translations/nl.json +53 -12
- homeassistant/components/shelly/translations/pl.json +416 -2
- homeassistant/components/shelly/translations/pt-BR.json +23 -6
- homeassistant/components/shelly/translations/pt.json +421 -1
- homeassistant/components/shelly/translations/ro.json +0 -6
- homeassistant/components/shelly/translations/ru.json +5 -15
- homeassistant/components/shelly/translations/sk.json +421 -1
- homeassistant/components/shelly/translations/sl.json +0 -15
- homeassistant/components/shelly/translations/sr-Latn.json +97 -3
- homeassistant/components/shelly/translations/sv.json +348 -11
- homeassistant/components/shelly/translations/tr.json +469 -7
- homeassistant/components/shelly/translations/uk.json +33 -6
- homeassistant/components/shelly/translations/vi.json +1 -9
- homeassistant/components/shelly/translations/zh-Hans.json +423 -3
- homeassistant/components/shelly/translations/zh-Hant.json +422 -2
- homeassistant/components/shelly/update.py +2 -4
- homeassistant/components/shelly/utils.py +92 -93
- homeassistant/components/shelly/valve.py +1 -1
- homeassistant/components/shopping_list/translations/mk.json +27 -0
- homeassistant/components/simplefin/translations/de.json +1 -1
- homeassistant/components/simplisafe/translations/it.json +1 -1
- homeassistant/components/simplisafe/translations/pt.json +4 -4
- homeassistant/components/siren/translations/mk.json +4 -2
- homeassistant/components/skybell/translations/it.json +1 -1
- homeassistant/components/slack/manifest.json +1 -1
- homeassistant/components/sleep_as_android/sensor.py +0 -2
- homeassistant/components/sleep_as_android/translations/en-GB.json +9 -1
- homeassistant/components/sleep_as_android/translations/sv.json +3 -0
- homeassistant/components/sleep_as_android/translations/tr.json +68 -0
- homeassistant/components/sleepiq/translations/it.json +1 -1
- homeassistant/components/slide_local/translations/it.json +1 -1
- homeassistant/components/slide_local/translations/mk.json +9 -0
- homeassistant/components/sma/translations/it.json +1 -1
- homeassistant/components/smarla/translations/tr.json +15 -0
- homeassistant/components/smartthings/__init__.py +51 -1
- homeassistant/components/smartthings/binary_sensor.py +47 -79
- homeassistant/components/smartthings/config_flow.py +1 -1
- homeassistant/components/smartthings/icons.json +13 -0
- homeassistant/components/smartthings/manifest.json +2 -1
- homeassistant/components/smartthings/select.py +58 -3
- homeassistant/components/smartthings/sensor.py +12 -0
- homeassistant/components/smartthings/strings.json +77 -16
- homeassistant/components/smartthings/switch.py +9 -0
- homeassistant/components/smartthings/translations/bg.json +25 -0
- homeassistant/components/smartthings/translations/cs.json +77 -16
- homeassistant/components/smartthings/translations/de.json +77 -16
- homeassistant/components/smartthings/translations/el.json +34 -12
- homeassistant/components/smartthings/translations/en-GB.json +77 -16
- homeassistant/components/smartthings/translations/en.json +77 -16
- homeassistant/components/smartthings/translations/es.json +77 -16
- homeassistant/components/smartthings/translations/et.json +77 -16
- homeassistant/components/smartthings/translations/ga.json +77 -16
- homeassistant/components/smartthings/translations/he.json +0 -16
- homeassistant/components/smartthings/translations/hu.json +0 -16
- homeassistant/components/smartthings/translations/it.json +73 -1
- homeassistant/components/smartthings/translations/lt.json +77 -16
- homeassistant/components/smartthings/translations/mk.json +5 -0
- homeassistant/components/smartthings/translations/nl.json +45 -0
- homeassistant/components/smartthings/translations/pt.json +77 -16
- homeassistant/components/smartthings/translations/ru.json +0 -16
- homeassistant/components/smartthings/translations/sk.json +77 -16
- homeassistant/components/smartthings/translations/sr-Latn.json +3 -0
- homeassistant/components/smartthings/translations/sv.json +38 -16
- homeassistant/components/smartthings/translations/tr.json +90 -0
- homeassistant/components/smartthings/translations/zh-Hans.json +77 -16
- homeassistant/components/smartthings/translations/zh-Hant.json +77 -16
- homeassistant/components/smarttub/translations/it.json +1 -1
- homeassistant/components/smhi/__init__.py +8 -2
- homeassistant/components/smhi/coordinator.py +65 -2
- homeassistant/components/smhi/entity.py +44 -7
- homeassistant/components/smhi/icons.json +33 -0
- homeassistant/components/smhi/sensor.py +201 -23
- homeassistant/components/smhi/strings.json +57 -0
- homeassistant/components/smhi/translations/bg.json +8 -0
- homeassistant/components/smhi/translations/cs.json +57 -0
- homeassistant/components/smhi/translations/de.json +57 -0
- homeassistant/components/smhi/translations/en-GB.json +57 -0
- homeassistant/components/smhi/translations/en.json +57 -0
- homeassistant/components/smhi/translations/es.json +57 -0
- homeassistant/components/smhi/translations/et.json +57 -0
- homeassistant/components/smhi/translations/ga.json +57 -0
- homeassistant/components/smhi/translations/it.json +62 -1
- homeassistant/components/smhi/translations/lt.json +57 -0
- homeassistant/components/smhi/translations/pt.json +57 -0
- homeassistant/components/smhi/translations/sk.json +57 -0
- homeassistant/components/smhi/translations/sr-Latn.json +9 -0
- homeassistant/components/smhi/translations/sv.json +44 -0
- homeassistant/components/smhi/translations/tr.json +61 -0
- homeassistant/components/smhi/translations/zh-Hans.json +57 -0
- homeassistant/components/smhi/translations/zh-Hant.json +57 -0
- homeassistant/components/smhi/weather.py +3 -3
- homeassistant/components/smlight/coordinator.py +3 -1
- homeassistant/components/smlight/manifest.json +1 -1
- homeassistant/components/smlight/translations/it.json +1 -1
- homeassistant/components/snmp/manifest.json +1 -1
- homeassistant/components/snoo/translations/mk.json +20 -0
- homeassistant/components/snoo/translations/tr.json +8 -0
- homeassistant/components/snooz/config_flow.py +1 -1
- homeassistant/components/solaredge/coordinator.py +1 -2
- homeassistant/components/solaredge/manifest.json +1 -5
- homeassistant/components/solaredge/translations/it.json +1 -1
- homeassistant/components/solaredge/translations/tr.json +64 -3
- homeassistant/components/solarlog/translations/it.json +2 -2
- homeassistant/components/sonarr/translations/it.json +1 -1
- homeassistant/components/sonos/manifest.json +6 -1
- homeassistant/components/sonos/translations/mk.json +9 -0
- homeassistant/components/spc/binary_sensor.py +1 -0
- homeassistant/components/speedtestdotnet/manifest.json +1 -0
- homeassistant/components/spotify/__init__.py +8 -1
- homeassistant/components/spotify/strings.json +5 -0
- homeassistant/components/spotify/translations/cs.json +5 -0
- homeassistant/components/spotify/translations/de.json +5 -0
- homeassistant/components/spotify/translations/en-GB.json +5 -0
- homeassistant/components/spotify/translations/en.json +5 -0
- homeassistant/components/spotify/translations/es.json +5 -0
- homeassistant/components/spotify/translations/et.json +5 -0
- homeassistant/components/spotify/translations/ga.json +5 -0
- homeassistant/components/spotify/translations/it.json +1 -1
- homeassistant/components/spotify/translations/lt.json +5 -0
- homeassistant/components/spotify/translations/pt.json +5 -0
- homeassistant/components/spotify/translations/sk.json +5 -0
- homeassistant/components/spotify/translations/tr.json +5 -0
- homeassistant/components/spotify/translations/zh-Hans.json +5 -0
- homeassistant/components/spotify/translations/zh-Hant.json +5 -0
- homeassistant/components/sql/__init__.py +3 -1
- homeassistant/components/sql/config_flow.py +25 -22
- homeassistant/components/sql/sensor.py +39 -26
- homeassistant/components/sql/services.py +9 -12
- homeassistant/components/sql/strings.json +2 -1
- homeassistant/components/sql/translations/cs.json +1 -0
- homeassistant/components/sql/translations/de.json +1 -0
- homeassistant/components/sql/translations/en-GB.json +1 -0
- homeassistant/components/sql/translations/en.json +1 -0
- homeassistant/components/sql/translations/es.json +1 -0
- homeassistant/components/sql/translations/et.json +1 -0
- homeassistant/components/sql/translations/ga.json +1 -0
- homeassistant/components/sql/translations/lt.json +1 -0
- homeassistant/components/sql/translations/nl.json +1 -0
- homeassistant/components/sql/translations/pt.json +1 -0
- homeassistant/components/sql/translations/sk.json +1 -0
- homeassistant/components/sql/translations/sr-Latn.json +61 -2
- homeassistant/components/sql/translations/tr.json +83 -0
- homeassistant/components/sql/translations/zh-Hans.json +1 -0
- homeassistant/components/sql/translations/zh-Hant.json +1 -0
- homeassistant/components/sql/util.py +77 -11
- homeassistant/components/squeezebox/translations/it.json +26 -0
- homeassistant/components/squeezebox/translations/mk.json +5 -0
- homeassistant/components/squeezebox/translations/tr.json +63 -0
- homeassistant/components/ssdp/manifest.json +1 -1
- homeassistant/components/starline/translations/sr-Latn.json +7 -0
- homeassistant/components/starlink/sensor.py +17 -12
- homeassistant/components/starlink/strings.json +2 -2
- homeassistant/components/starlink/translations/bg.json +2 -2
- homeassistant/components/starlink/translations/ca.json +0 -3
- homeassistant/components/starlink/translations/cs.json +2 -2
- homeassistant/components/starlink/translations/de.json +1 -1
- homeassistant/components/starlink/translations/el.json +2 -2
- homeassistant/components/starlink/translations/en-GB.json +2 -2
- homeassistant/components/starlink/translations/en.json +2 -2
- homeassistant/components/starlink/translations/es.json +2 -2
- homeassistant/components/starlink/translations/et.json +2 -2
- homeassistant/components/starlink/translations/fi.json +0 -3
- homeassistant/components/starlink/translations/ga.json +2 -2
- homeassistant/components/starlink/translations/he.json +0 -3
- homeassistant/components/starlink/translations/hu.json +0 -3
- homeassistant/components/starlink/translations/it.json +2 -2
- homeassistant/components/starlink/translations/ja.json +0 -3
- homeassistant/components/starlink/translations/ko.json +0 -3
- homeassistant/components/starlink/translations/lt.json +2 -2
- homeassistant/components/starlink/translations/nl.json +0 -3
- homeassistant/components/starlink/translations/pt.json +2 -2
- homeassistant/components/starlink/translations/ro.json +0 -3
- homeassistant/components/starlink/translations/ru.json +0 -3
- homeassistant/components/starlink/translations/sk.json +2 -2
- homeassistant/components/starlink/translations/sr-Latn.json +5 -0
- homeassistant/components/starlink/translations/sv.json +2 -2
- homeassistant/components/starlink/translations/tr.json +2 -2
- homeassistant/components/starlink/translations/uk.json +0 -3
- homeassistant/components/starlink/translations/zh-Hans.json +2 -2
- homeassistant/components/starlink/translations/zh-Hant.json +2 -2
- homeassistant/components/startca/manifest.json +1 -1
- homeassistant/components/statistics/translations/mk.json +9 -0
- homeassistant/components/statistics/translations/sr-Latn.json +118 -2
- homeassistant/components/steam_online/translations/it.json +1 -1
- homeassistant/components/steamist/config_flow.py +1 -1
- homeassistant/components/stookwijzer/__init__.py +2 -2
- homeassistant/components/stookwijzer/services.py +3 -1
- homeassistant/components/stream/manifest.json +1 -1
- homeassistant/components/stream/recorder.py +2 -4
- homeassistant/components/stream/worker.py +9 -6
- homeassistant/components/sunricher_dali/__init__.py +0 -7
- homeassistant/components/sunricher_dali/light.py +8 -17
- homeassistant/components/sunricher_dali/manifest.json +1 -1
- homeassistant/components/sunricher_dali/quality_scale.yaml +1 -1
- homeassistant/components/sunricher_dali/translations/tr.json +27 -0
- homeassistant/components/surepetcare/translations/it.json +1 -1
- homeassistant/components/switch/translations/mk.json +5 -1
- homeassistant/components/switch/translations/sr-Latn.json +2 -1
- homeassistant/components/switch_as_x/translations/sr-Latn.json +27 -3
- homeassistant/components/switchbot/__init__.py +8 -0
- homeassistant/components/switchbot/binary_sensor.py +33 -12
- homeassistant/components/switchbot/climate.py +140 -0
- homeassistant/components/switchbot/const.py +8 -0
- homeassistant/components/switchbot/icons.json +13 -0
- homeassistant/components/switchbot/manifest.json +2 -1
- homeassistant/components/switchbot/strings.json +13 -0
- homeassistant/components/switchbot/translations/bg.json +13 -0
- homeassistant/components/switchbot/translations/ca.json +11 -0
- homeassistant/components/switchbot/translations/cs.json +13 -0
- homeassistant/components/switchbot/translations/de.json +13 -0
- homeassistant/components/switchbot/translations/el.json +13 -0
- homeassistant/components/switchbot/translations/en-GB.json +13 -0
- homeassistant/components/switchbot/translations/en.json +13 -0
- homeassistant/components/switchbot/translations/es.json +13 -0
- homeassistant/components/switchbot/translations/et.json +13 -0
- homeassistant/components/switchbot/translations/ga.json +13 -0
- homeassistant/components/switchbot/translations/it.json +13 -0
- homeassistant/components/switchbot/translations/lt.json +13 -0
- homeassistant/components/switchbot/translations/mk.json +11 -0
- homeassistant/components/switchbot/translations/nl.json +12 -0
- homeassistant/components/switchbot/translations/pt.json +13 -0
- homeassistant/components/switchbot/translations/ru.json +13 -0
- homeassistant/components/switchbot/translations/sk.json +13 -0
- homeassistant/components/switchbot/translations/sv.json +12 -0
- homeassistant/components/switchbot/translations/tr.json +55 -0
- homeassistant/components/switchbot/translations/zh-Hans.json +13 -0
- homeassistant/components/switchbot/translations/zh-Hant.json +13 -0
- homeassistant/components/switchbot_cloud/__init__.py +14 -1
- homeassistant/components/switchbot_cloud/climate.py +145 -6
- homeassistant/components/switchbot_cloud/const.py +1 -0
- homeassistant/components/switchbot_cloud/sensor.py +1 -0
- homeassistant/components/switchbot_cloud/translations/tr.json +20 -0
- homeassistant/components/switcher_kis/translations/it.json +1 -1
- homeassistant/components/switcher_kis/translations/mk.json +2 -1
- homeassistant/components/synology_dsm/translations/it.json +1 -1
- homeassistant/components/synology_dsm/translations/sr-Latn.json +3 -0
- homeassistant/components/system_bridge/translations/it.json +1 -1
- homeassistant/components/system_bridge/translations/mk.json +3 -0
- homeassistant/components/system_bridge/translations/tr.json +3 -0
- homeassistant/components/systemmonitor/binary_sensor.py +30 -4
- homeassistant/components/systemmonitor/coordinator.py +64 -32
- homeassistant/components/systemmonitor/icons.json +6 -0
- homeassistant/components/systemmonitor/sensor.py +140 -71
- homeassistant/components/systemmonitor/strings.json +6 -0
- homeassistant/components/systemmonitor/translations/bg.json +3 -0
- homeassistant/components/systemmonitor/translations/cs.json +6 -0
- homeassistant/components/systemmonitor/translations/de.json +6 -0
- homeassistant/components/systemmonitor/translations/en-GB.json +6 -0
- homeassistant/components/systemmonitor/translations/en.json +6 -0
- homeassistant/components/systemmonitor/translations/es.json +6 -0
- homeassistant/components/systemmonitor/translations/et.json +6 -0
- homeassistant/components/systemmonitor/translations/ga.json +6 -0
- homeassistant/components/systemmonitor/translations/it.json +8 -0
- homeassistant/components/systemmonitor/translations/lt.json +6 -0
- homeassistant/components/systemmonitor/translations/pt.json +6 -0
- homeassistant/components/systemmonitor/translations/sk.json +6 -0
- homeassistant/components/systemmonitor/translations/sr-Latn.json +6 -0
- homeassistant/components/systemmonitor/translations/sv.json +6 -0
- homeassistant/components/systemmonitor/translations/tr.json +6 -0
- homeassistant/components/systemmonitor/translations/zh-Hans.json +6 -0
- homeassistant/components/systemmonitor/translations/zh-Hant.json +6 -0
- homeassistant/components/systemmonitor/util.py +17 -1
- homeassistant/components/tado/__init__.py +17 -1
- homeassistant/components/tado/const.py +1 -0
- homeassistant/components/tado/entity.py +10 -2
- homeassistant/components/tado/translations/it.json +2 -2
- homeassistant/components/tailscale/translations/it.json +1 -1
- homeassistant/components/tailwind/translations/it.json +1 -1
- homeassistant/components/tankerkoenig/translations/it.json +1 -1
- homeassistant/components/tautulli/translations/de.json +3 -3
- homeassistant/components/tautulli/translations/it.json +1 -1
- homeassistant/components/ted5000/manifest.json +1 -1
- homeassistant/components/tedee/manifest.json +1 -0
- homeassistant/components/tedee/translations/it.json +2 -2
- homeassistant/components/telegram/translations/de.json +1 -1
- homeassistant/components/telegram/translations/tr.json +6 -0
- homeassistant/components/telegram_bot/bot.py +3 -0
- homeassistant/components/telegram_bot/manifest.json +1 -1
- homeassistant/components/telegram_bot/quality_scale.yaml +1 -1
- homeassistant/components/telegram_bot/strings.json +1 -0
- homeassistant/components/telegram_bot/translations/cs.json +1 -0
- homeassistant/components/telegram_bot/translations/de.json +1 -0
- homeassistant/components/telegram_bot/translations/en-GB.json +1 -0
- homeassistant/components/telegram_bot/translations/en.json +1 -0
- homeassistant/components/telegram_bot/translations/es.json +1 -0
- homeassistant/components/telegram_bot/translations/et.json +1 -0
- homeassistant/components/telegram_bot/translations/ga.json +1 -0
- homeassistant/components/telegram_bot/translations/it.json +2 -2
- homeassistant/components/telegram_bot/translations/ja.json +39 -0
- homeassistant/components/telegram_bot/translations/lt.json +1 -0
- homeassistant/components/telegram_bot/translations/mk.json +4 -0
- homeassistant/components/telegram_bot/translations/pt.json +1 -0
- homeassistant/components/telegram_bot/translations/ru.json +1 -0
- homeassistant/components/telegram_bot/translations/sk.json +1 -0
- homeassistant/components/telegram_bot/translations/sv.json +10 -0
- homeassistant/components/telegram_bot/translations/tr.json +204 -4
- homeassistant/components/telegram_bot/translations/zh-Hans.json +1 -0
- homeassistant/components/telegram_bot/translations/zh-Hant.json +1 -0
- homeassistant/components/template/__init__.py +45 -3
- homeassistant/components/template/alarm_control_panel.py +7 -13
- homeassistant/components/template/config.py +10 -6
- homeassistant/components/template/cover.py +31 -63
- homeassistant/components/template/fan.py +38 -70
- homeassistant/components/template/helpers.py +107 -1
- homeassistant/components/template/image.py +30 -19
- homeassistant/components/template/light.py +176 -236
- homeassistant/components/template/lock.py +25 -52
- homeassistant/components/template/sensor.py +65 -89
- homeassistant/components/template/strings.json +5 -0
- homeassistant/components/template/translations/cs.json +5 -0
- homeassistant/components/template/translations/de.json +9 -4
- homeassistant/components/template/translations/el.json +35 -31
- homeassistant/components/template/translations/en-GB.json +5 -0
- homeassistant/components/template/translations/en.json +5 -0
- homeassistant/components/template/translations/es.json +5 -0
- homeassistant/components/template/translations/et.json +5 -0
- homeassistant/components/template/translations/ga.json +5 -0
- homeassistant/components/template/translations/it.json +4 -0
- homeassistant/components/template/translations/lt.json +5 -0
- homeassistant/components/template/translations/mk.json +5 -0
- homeassistant/components/template/translations/nl.json +1 -0
- homeassistant/components/template/translations/pl.json +37 -0
- homeassistant/components/template/translations/pt.json +5 -0
- homeassistant/components/template/translations/ru.json +4 -0
- homeassistant/components/template/translations/sk.json +5 -0
- homeassistant/components/template/translations/sr-Latn.json +933 -72
- homeassistant/components/template/translations/tr.json +226 -0
- homeassistant/components/template/translations/zh-Hans.json +5 -0
- homeassistant/components/template/translations/zh-Hant.json +6 -1
- homeassistant/components/tesla_fleet/__init__.py +7 -0
- homeassistant/components/tesla_fleet/manifest.json +1 -0
- homeassistant/components/tesla_fleet/strings.json +8 -0
- homeassistant/components/tesla_fleet/translations/bg.json +5 -0
- homeassistant/components/tesla_fleet/translations/cs.json +8 -0
- homeassistant/components/tesla_fleet/translations/de.json +8 -0
- homeassistant/components/tesla_fleet/translations/el.json +5 -0
- homeassistant/components/tesla_fleet/translations/en-GB.json +8 -0
- homeassistant/components/tesla_fleet/translations/en.json +8 -0
- homeassistant/components/tesla_fleet/translations/es.json +8 -0
- homeassistant/components/tesla_fleet/translations/et.json +8 -0
- homeassistant/components/tesla_fleet/translations/fr.json +132 -1
- homeassistant/components/tesla_fleet/translations/ga.json +8 -0
- homeassistant/components/tesla_fleet/translations/it.json +6 -1
- homeassistant/components/tesla_fleet/translations/lt.json +8 -0
- homeassistant/components/tesla_fleet/translations/nl.json +5 -0
- homeassistant/components/tesla_fleet/translations/pt.json +8 -0
- homeassistant/components/tesla_fleet/translations/sk.json +8 -0
- homeassistant/components/tesla_fleet/translations/sr-Latn.json +5 -0
- homeassistant/components/tesla_fleet/translations/sv.json +5 -0
- homeassistant/components/tesla_fleet/translations/tr.json +8 -0
- homeassistant/components/tesla_fleet/translations/zh-Hans.json +8 -0
- homeassistant/components/tesla_fleet/translations/zh-Hant.json +8 -0
- homeassistant/components/tesla_fleet/update.py +114 -0
- homeassistant/components/tesla_wall_connector/manifest.json +1 -1
- homeassistant/components/tesla_wall_connector/sensor.py +10 -0
- homeassistant/components/tesla_wall_connector/strings.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/cs.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/de.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/en-GB.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/en.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/es.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/et.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/ga.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/lt.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/pt.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/sk.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/tr.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/zh-Hans.json +3 -0
- homeassistant/components/tesla_wall_connector/translations/zh-Hant.json +3 -0
- homeassistant/components/teslemetry/manifest.json +1 -0
- homeassistant/components/teslemetry/translations/fr.json +3 -0
- homeassistant/components/teslemetry/translations/it.json +1 -1
- homeassistant/components/teslemetry/translations/mk.json +10 -0
- homeassistant/components/teslemetry/translations/sr-Latn.json +5 -0
- homeassistant/components/teslemetry/translations/tr.json +77 -1
- homeassistant/components/tessie/manifest.json +1 -0
- homeassistant/components/tessie/translations/fr.json +3 -0
- homeassistant/components/tessie/translations/it.json +1 -1
- homeassistant/components/tessie/translations/sr-Latn.json +5 -0
- homeassistant/components/tessie/translations/tr.json +3 -0
- homeassistant/components/text/icons.json +5 -0
- homeassistant/components/text/strings.json +7 -1
- homeassistant/components/text/translations/cs.json +7 -1
- homeassistant/components/text/translations/de.json +7 -1
- homeassistant/components/text/translations/en-GB.json +7 -1
- homeassistant/components/text/translations/en.json +7 -1
- homeassistant/components/text/translations/es.json +7 -1
- homeassistant/components/text/translations/et.json +7 -1
- homeassistant/components/text/translations/lt.json +7 -1
- homeassistant/components/text/translations/mk.json +1 -0
- homeassistant/components/text/translations/sk.json +7 -1
- homeassistant/components/text/translations/sr-Latn.json +4 -2
- homeassistant/components/text/translations/zh-Hant.json +7 -1
- homeassistant/components/text/trigger.py +36 -0
- homeassistant/components/text/triggers.yaml +4 -0
- homeassistant/components/thermopro/manifest.json +1 -1
- homeassistant/components/thermopro/sensor.py +3 -1
- homeassistant/components/thermopro/translations/mk.json +9 -0
- homeassistant/components/thermoworks_smoke/sensor.py +2 -1
- homeassistant/components/thethingsnetwork/translations/it.json +1 -1
- homeassistant/components/tibber/translations/mk.json +5 -0
- homeassistant/components/tile/translations/it.json +1 -1
- homeassistant/components/time/translations/mk.json +12 -0
- homeassistant/components/time_date/translations/mk.json +13 -0
- homeassistant/components/timer/translations/mk.json +23 -2
- homeassistant/components/tod/translations/sr-Latn.json +16 -1
- homeassistant/components/todo/__init__.py +3 -0
- homeassistant/components/todo/translations/mk.json +3 -2
- homeassistant/components/togrill/translations/tr.json +58 -0
- homeassistant/components/tolo/translations/tr.json +2 -1
- homeassistant/components/tomorrowio/translations/sr-Latn.json +24 -0
- homeassistant/components/toon/__init__.py +9 -1
- homeassistant/components/toon/strings.json +5 -0
- homeassistant/components/toon/translations/cs.json +5 -0
- homeassistant/components/toon/translations/de.json +5 -0
- homeassistant/components/toon/translations/en-GB.json +5 -0
- homeassistant/components/toon/translations/en.json +5 -0
- homeassistant/components/toon/translations/es.json +5 -0
- homeassistant/components/toon/translations/et.json +5 -0
- homeassistant/components/toon/translations/ga.json +5 -0
- homeassistant/components/toon/translations/lt.json +5 -0
- homeassistant/components/toon/translations/pt.json +5 -0
- homeassistant/components/toon/translations/sk.json +5 -0
- homeassistant/components/toon/translations/tr.json +5 -0
- homeassistant/components/toon/translations/zh-Hans.json +5 -0
- homeassistant/components/toon/translations/zh-Hant.json +5 -0
- homeassistant/components/totalconnect/translations/it.json +1 -1
- homeassistant/components/tplink/manifest.json +1 -0
- homeassistant/components/tplink/number.py +2 -0
- homeassistant/components/tplink/translations/it.json +2 -2
- homeassistant/components/tplink_omada/manifest.json +1 -1
- homeassistant/components/tplink_omada/switch.py +12 -3
- homeassistant/components/tplink_omada/translations/it.json +1 -1
- homeassistant/components/traccar/manifest.json +1 -1
- homeassistant/components/traccar_server/translations/tr.json +12 -0
- homeassistant/components/tractive/translations/it.json +1 -1
- homeassistant/components/trafikverket_camera/translations/it.json +2 -2
- homeassistant/components/trafikverket_ferry/translations/it.json +1 -1
- homeassistant/components/trafikverket_ferry/translations/mk.json +11 -0
- homeassistant/components/trafikverket_train/translations/it.json +2 -2
- homeassistant/components/trafikverket_weatherstation/translations/it.json +2 -2
- homeassistant/components/transmission/__init__.py +6 -156
- homeassistant/components/transmission/config_flow.py +1 -1
- homeassistant/components/transmission/entity.py +30 -0
- homeassistant/components/transmission/manifest.json +1 -0
- homeassistant/components/transmission/quality_scale.yaml +75 -0
- homeassistant/components/transmission/sensor.py +2 -24
- homeassistant/components/transmission/services.py +171 -0
- homeassistant/components/transmission/services.yaml +6 -0
- homeassistant/components/transmission/strings.json +11 -0
- homeassistant/components/transmission/switch.py +2 -24
- homeassistant/components/transmission/translations/bg.json +11 -0
- homeassistant/components/transmission/translations/cs.json +11 -0
- homeassistant/components/transmission/translations/de.json +13 -2
- homeassistant/components/transmission/translations/en-GB.json +11 -0
- homeassistant/components/transmission/translations/en.json +11 -0
- homeassistant/components/transmission/translations/es.json +11 -0
- homeassistant/components/transmission/translations/et.json +11 -0
- homeassistant/components/transmission/translations/ga.json +11 -0
- homeassistant/components/transmission/translations/it.json +12 -1
- homeassistant/components/transmission/translations/lt.json +11 -0
- homeassistant/components/transmission/translations/pt.json +11 -0
- homeassistant/components/transmission/translations/ru.json +11 -0
- homeassistant/components/transmission/translations/sk.json +11 -0
- homeassistant/components/transmission/translations/tr.json +35 -0
- homeassistant/components/transmission/translations/zh-Hans.json +11 -0
- homeassistant/components/transmission/translations/zh-Hant.json +11 -0
- homeassistant/components/trend/translations/sr-Latn.json +21 -0
- homeassistant/components/tts/translations/mk.json +3 -0
- homeassistant/components/tuya/__init__.py +12 -8
- homeassistant/components/tuya/alarm_control_panel.py +114 -101
- homeassistant/components/tuya/binary_sensor.py +52 -49
- homeassistant/components/tuya/button.py +24 -4
- homeassistant/components/tuya/camera.py +28 -7
- homeassistant/components/tuya/climate.py +242 -246
- homeassistant/components/tuya/const.py +11 -3
- homeassistant/components/tuya/cover.py +236 -197
- homeassistant/components/tuya/diagnostics.py +13 -16
- homeassistant/components/tuya/entity.py +24 -74
- homeassistant/components/tuya/event.py +133 -24
- homeassistant/components/tuya/fan.py +125 -133
- homeassistant/components/tuya/humidifier.py +69 -70
- homeassistant/components/tuya/light.py +315 -255
- homeassistant/components/tuya/manifest.json +1 -1
- homeassistant/components/tuya/models.py +398 -54
- homeassistant/components/tuya/number.py +31 -36
- homeassistant/components/tuya/raw_data_models.py +60 -0
- homeassistant/components/tuya/select.py +21 -24
- homeassistant/components/tuya/sensor.py +235 -180
- homeassistant/components/tuya/siren.py +15 -8
- homeassistant/components/tuya/strings.json +39 -1
- homeassistant/components/tuya/switch.py +22 -8
- homeassistant/components/tuya/translations/bg.json +14 -0
- homeassistant/components/tuya/translations/cs.json +39 -1
- homeassistant/components/tuya/translations/de.json +39 -1
- homeassistant/components/tuya/translations/el.json +15 -0
- homeassistant/components/tuya/translations/en-GB.json +39 -1
- homeassistant/components/tuya/translations/en.json +39 -1
- homeassistant/components/tuya/translations/es.json +39 -1
- homeassistant/components/tuya/translations/et.json +39 -1
- homeassistant/components/tuya/translations/ga.json +38 -3
- homeassistant/components/tuya/translations/it.json +24 -4
- homeassistant/components/tuya/translations/lb.json +9 -0
- homeassistant/components/tuya/translations/lt.json +39 -1
- homeassistant/components/tuya/translations/mk.json +19 -0
- homeassistant/components/tuya/translations/nl.json +15 -0
- homeassistant/components/tuya/translations/pt.json +39 -1
- homeassistant/components/tuya/translations/sk.json +42 -1
- homeassistant/components/tuya/translations/sr-Latn.json +50 -2
- homeassistant/components/tuya/translations/sv.json +18 -0
- homeassistant/components/tuya/translations/tr.json +109 -0
- homeassistant/components/tuya/translations/zh-Hans.json +39 -1
- homeassistant/components/tuya/translations/zh-Hant.json +39 -1
- homeassistant/components/tuya/util.py +19 -33
- homeassistant/components/tuya/vacuum.py +80 -45
- homeassistant/components/tuya/valve.py +15 -10
- homeassistant/components/twitch/__init__.py +12 -5
- homeassistant/components/twitch/sensor.py +2 -0
- homeassistant/components/twitch/strings.json +5 -0
- homeassistant/components/twitch/translations/cs.json +5 -0
- homeassistant/components/twitch/translations/de.json +5 -0
- homeassistant/components/twitch/translations/en-GB.json +5 -0
- homeassistant/components/twitch/translations/en.json +5 -0
- homeassistant/components/twitch/translations/es.json +5 -0
- homeassistant/components/twitch/translations/et.json +5 -0
- homeassistant/components/twitch/translations/ga.json +5 -0
- homeassistant/components/twitch/translations/it.json +1 -1
- homeassistant/components/twitch/translations/lt.json +5 -0
- homeassistant/components/twitch/translations/pt.json +5 -0
- homeassistant/components/twitch/translations/sk.json +5 -0
- homeassistant/components/twitch/translations/tr.json +5 -0
- homeassistant/components/twitch/translations/zh-Hans.json +5 -0
- homeassistant/components/twitch/translations/zh-Hant.json +5 -0
- homeassistant/components/ukraine_alarm/translations/ga.json +6 -0
- homeassistant/components/ukraine_alarm/translations/it.json +6 -0
- homeassistant/components/ukraine_alarm/translations/tr.json +6 -0
- homeassistant/components/unifi/light.py +62 -29
- homeassistant/components/unifi/manifest.json +1 -1
- homeassistant/components/unifi/sensor.py +26 -0
- homeassistant/components/unifi/strings.json +3 -0
- homeassistant/components/unifi/translations/bg.json +5 -0
- homeassistant/components/unifi/translations/cs.json +3 -0
- homeassistant/components/unifi/translations/de.json +3 -0
- homeassistant/components/unifi/translations/en-GB.json +3 -0
- homeassistant/components/unifi/translations/en.json +3 -0
- homeassistant/components/unifi/translations/es.json +3 -0
- homeassistant/components/unifi/translations/et.json +3 -0
- homeassistant/components/unifi/translations/ga.json +3 -0
- homeassistant/components/unifi/translations/it.json +4 -1
- homeassistant/components/unifi/translations/lt.json +3 -0
- homeassistant/components/unifi/translations/pt.json +3 -0
- homeassistant/components/unifi/translations/sk.json +3 -0
- homeassistant/components/unifi/translations/sv.json +3 -0
- homeassistant/components/unifi/translations/tr.json +8 -0
- homeassistant/components/unifi/translations/zh-Hans.json +3 -0
- homeassistant/components/unifi/translations/zh-Hant.json +3 -0
- homeassistant/components/unifiprotect/__init__.py +19 -1
- homeassistant/components/unifiprotect/camera.py +5 -1
- homeassistant/components/unifiprotect/const.py +4 -0
- homeassistant/components/unifiprotect/event.py +201 -1
- homeassistant/components/unifiprotect/manifest.json +1 -1
- homeassistant/components/unifiprotect/sensor.py +0 -64
- homeassistant/components/unifiprotect/strings.json +10 -0
- homeassistant/components/unifiprotect/translations/bg.json +3 -7
- homeassistant/components/unifiprotect/translations/cs.json +11 -1
- homeassistant/components/unifiprotect/translations/de.json +11 -1
- homeassistant/components/unifiprotect/translations/el.json +1 -5
- homeassistant/components/unifiprotect/translations/en-GB.json +11 -1
- homeassistant/components/unifiprotect/translations/en.json +11 -1
- homeassistant/components/unifiprotect/translations/es.json +11 -1
- homeassistant/components/unifiprotect/translations/et.json +10 -0
- homeassistant/components/unifiprotect/translations/fi.json +0 -7
- homeassistant/components/unifiprotect/translations/ga.json +10 -10
- homeassistant/components/unifiprotect/translations/it.json +1 -1
- homeassistant/components/unifiprotect/translations/lt.json +11 -1
- homeassistant/components/unifiprotect/translations/nl.json +3 -3
- homeassistant/components/unifiprotect/translations/pt.json +10 -10
- homeassistant/components/unifiprotect/translations/sk.json +11 -1
- homeassistant/components/unifiprotect/translations/sr-Latn.json +11 -0
- homeassistant/components/unifiprotect/translations/sv.json +3 -0
- homeassistant/components/unifiprotect/translations/tr.json +10 -0
- homeassistant/components/unifiprotect/translations/zh-Hans.json +12 -3
- homeassistant/components/unifiprotect/translations/zh-Hant.json +11 -1
- homeassistant/components/update/translations/mk.json +20 -0
- homeassistant/components/update/translations/sr-Latn.json +51 -1
- homeassistant/components/upnp/manifest.json +1 -1
- homeassistant/components/uptime/translations/de.json +1 -1
- homeassistant/components/uptime_kuma/manifest.json +1 -1
- homeassistant/components/uptime_kuma/translations/tr.json +13 -0
- homeassistant/components/uptimerobot/translations/it.json +2 -2
- homeassistant/components/usage_prediction/common_control.py +1 -7
- homeassistant/components/usb/__init__.py +26 -68
- homeassistant/components/utility_meter/translations/mk.json +9 -3
- homeassistant/components/utility_meter/translations/sr-Latn.json +63 -2
- homeassistant/components/vacuum/icons.json +14 -0
- homeassistant/components/vacuum/strings.json +56 -1
- homeassistant/components/vacuum/translations/bg.json +33 -0
- homeassistant/components/vacuum/translations/cs.json +56 -1
- homeassistant/components/vacuum/translations/de.json +56 -1
- homeassistant/components/vacuum/translations/en-GB.json +56 -1
- homeassistant/components/vacuum/translations/en.json +56 -1
- homeassistant/components/vacuum/translations/es.json +56 -1
- homeassistant/components/vacuum/translations/et.json +56 -1
- homeassistant/components/vacuum/translations/ga.json +48 -1
- homeassistant/components/vacuum/translations/lt.json +56 -1
- homeassistant/components/vacuum/translations/mk.json +10 -0
- homeassistant/components/vacuum/translations/pt.json +48 -1
- homeassistant/components/vacuum/translations/ru.json +48 -1
- homeassistant/components/vacuum/translations/sk.json +56 -1
- homeassistant/components/vacuum/translations/sv.json +13 -1
- homeassistant/components/vacuum/translations/tr.json +48 -1
- homeassistant/components/vacuum/translations/zh-Hans.json +48 -1
- homeassistant/components/vacuum/translations/zh-Hant.json +56 -1
- homeassistant/components/vacuum/trigger.py +18 -0
- homeassistant/components/vacuum/triggers.yaml +20 -0
- homeassistant/components/vagner_pool/__init__.py +1 -0
- homeassistant/components/vagner_pool/manifest.json +6 -0
- homeassistant/components/vallox/translations/it.json +1 -1
- homeassistant/components/valve/translations/sr-Latn.json +9 -1
- homeassistant/components/vegehub/manifest.json +1 -1
- homeassistant/components/vegehub/translations/tr.json +47 -0
- homeassistant/components/velbus/manifest.json +1 -1
- homeassistant/components/velux/__init__.py +43 -3
- homeassistant/components/velux/binary_sensor.py +3 -3
- homeassistant/components/velux/button.py +54 -0
- homeassistant/components/velux/config_flow.py +1 -1
- homeassistant/components/velux/const.py +7 -1
- homeassistant/components/velux/cover.py +14 -19
- homeassistant/components/velux/entity.py +21 -15
- homeassistant/components/velux/light.py +4 -3
- homeassistant/components/velux/quality_scale.yaml +70 -0
- homeassistant/components/velux/scene.py +25 -11
- homeassistant/components/velux/strings.json +19 -1
- homeassistant/components/velux/translations/bg.json +12 -0
- homeassistant/components/velux/translations/cs.json +18 -0
- homeassistant/components/velux/translations/de.json +18 -0
- homeassistant/components/velux/translations/en-GB.json +18 -0
- homeassistant/components/velux/translations/en.json +18 -0
- homeassistant/components/velux/translations/es.json +18 -0
- homeassistant/components/velux/translations/et.json +18 -0
- homeassistant/components/velux/translations/ga.json +18 -0
- homeassistant/components/velux/translations/it.json +18 -0
- homeassistant/components/velux/translations/lt.json +18 -0
- homeassistant/components/velux/translations/pt.json +18 -0
- homeassistant/components/velux/translations/ru.json +1 -0
- homeassistant/components/velux/translations/sk.json +18 -0
- homeassistant/components/velux/translations/sr-Latn.json +3 -0
- homeassistant/components/velux/translations/sv.json +7 -0
- homeassistant/components/velux/translations/tr.json +18 -0
- homeassistant/components/velux/translations/zh-Hans.json +18 -0
- homeassistant/components/velux/translations/zh-Hant.json +18 -0
- homeassistant/components/verisure/translations/it.json +1 -1
- homeassistant/components/version/translations/mk.json +3 -0
- homeassistant/components/vesync/__init__.py +20 -0
- homeassistant/components/vesync/humidifier.py +1 -1
- homeassistant/components/vesync/manifest.json +1 -1
- homeassistant/components/vesync/sensor.py +10 -0
- homeassistant/components/vesync/strings.json +3 -0
- homeassistant/components/vesync/switch.py +8 -0
- homeassistant/components/vesync/translations/cs.json +3 -0
- homeassistant/components/vesync/translations/de.json +3 -0
- homeassistant/components/vesync/translations/en-GB.json +3 -0
- homeassistant/components/vesync/translations/en.json +3 -0
- homeassistant/components/vesync/translations/es.json +3 -0
- homeassistant/components/vesync/translations/et.json +3 -0
- homeassistant/components/vesync/translations/ga.json +3 -0
- homeassistant/components/vesync/translations/it.json +5 -0
- homeassistant/components/vesync/translations/lt.json +3 -0
- homeassistant/components/vesync/translations/pt.json +3 -0
- homeassistant/components/vesync/translations/sk.json +3 -0
- homeassistant/components/vesync/translations/sr-Latn.json +5 -0
- homeassistant/components/vesync/translations/sv.json +3 -0
- homeassistant/components/vesync/translations/tr.json +16 -0
- homeassistant/components/vesync/translations/zh-Hans.json +3 -0
- homeassistant/components/vesync/translations/zh-Hant.json +3 -0
- homeassistant/components/vesync/update.py +68 -0
- homeassistant/components/vicare/__init__.py +1 -0
- homeassistant/components/vicare/binary_sensor.py +5 -0
- homeassistant/components/vicare/button.py +7 -0
- homeassistant/components/vicare/const.py +1 -0
- homeassistant/components/vicare/icons.json +46 -0
- homeassistant/components/vicare/manifest.json +2 -1
- homeassistant/components/vicare/sensor.py +191 -1
- homeassistant/components/vicare/strings.json +69 -1
- homeassistant/components/vicare/translations/bg.json +19 -0
- homeassistant/components/vicare/translations/ca.json +10 -0
- homeassistant/components/vicare/translations/cs.json +69 -1
- homeassistant/components/vicare/translations/de.json +69 -1
- homeassistant/components/vicare/translations/el.json +9 -1
- homeassistant/components/vicare/translations/en-GB.json +69 -1
- homeassistant/components/vicare/translations/en.json +69 -1
- homeassistant/components/vicare/translations/es.json +69 -1
- homeassistant/components/vicare/translations/et.json +69 -1
- homeassistant/components/vicare/translations/ga.json +69 -1
- homeassistant/components/vicare/translations/it.json +14 -2
- homeassistant/components/vicare/translations/lt.json +69 -1
- homeassistant/components/vicare/translations/mk.json +16 -0
- homeassistant/components/vicare/translations/nl.json +8 -1
- homeassistant/components/vicare/translations/pt.json +69 -1
- homeassistant/components/vicare/translations/ru.json +12 -1
- homeassistant/components/vicare/translations/sk.json +69 -1
- homeassistant/components/vicare/translations/sr-Latn.json +15 -0
- homeassistant/components/vicare/translations/sv.json +15 -1
- homeassistant/components/vicare/translations/tr.json +90 -1
- homeassistant/components/vicare/translations/zh-Hans.json +69 -1
- homeassistant/components/vicare/translations/zh-Hant.json +69 -1
- homeassistant/components/vicare/utils.py +27 -0
- homeassistant/components/victron_ble/__init__.py +54 -0
- homeassistant/components/victron_ble/config_flow.py +123 -0
- homeassistant/components/victron_ble/const.py +4 -0
- homeassistant/components/victron_ble/manifest.json +19 -0
- homeassistant/components/victron_ble/quality_scale.yaml +85 -0
- homeassistant/components/victron_ble/sensor.py +474 -0
- homeassistant/components/victron_ble/strings.json +234 -0
- homeassistant/components/victron_ble/translations/bg.json +23 -0
- homeassistant/components/victron_ble/translations/cs.json +234 -0
- homeassistant/components/victron_ble/translations/de.json +234 -0
- homeassistant/components/victron_ble/translations/el.json +17 -0
- homeassistant/components/victron_ble/translations/en-GB.json +234 -0
- homeassistant/components/victron_ble/translations/en.json +234 -0
- homeassistant/components/victron_ble/translations/es.json +234 -0
- homeassistant/components/victron_ble/translations/et.json +234 -0
- homeassistant/components/victron_ble/translations/ga.json +234 -0
- homeassistant/components/victron_ble/translations/it.json +215 -0
- homeassistant/components/victron_ble/translations/lt.json +234 -0
- homeassistant/components/victron_ble/translations/nl.json +23 -0
- homeassistant/components/victron_ble/translations/pt.json +234 -0
- homeassistant/components/victron_ble/translations/sk.json +234 -0
- homeassistant/components/victron_ble/translations/sr-Latn.json +16 -0
- homeassistant/components/victron_ble/translations/sv.json +76 -0
- homeassistant/components/victron_ble/translations/tr.json +234 -0
- homeassistant/components/victron_ble/translations/zh-Hans.json +234 -0
- homeassistant/components/victron_ble/translations/zh-Hant.json +234 -0
- homeassistant/components/victron_remote_monitoring/translations/tr.json +102 -0
- homeassistant/components/vlc_telnet/translations/it.json +1 -1
- homeassistant/components/vodafone_station/translations/it.json +2 -2
- homeassistant/components/voip/assist_satellite.py +1 -0
- homeassistant/components/volvo/__init__.py +8 -1
- homeassistant/components/volvo/button.py +5 -0
- homeassistant/components/volvo/const.py +1 -0
- homeassistant/components/volvo/icons.json +3 -0
- homeassistant/components/volvo/lock.py +136 -0
- homeassistant/components/volvo/strings.json +11 -0
- homeassistant/components/volvo/translations/ca.json +5 -0
- homeassistant/components/volvo/translations/cs.json +11 -0
- homeassistant/components/volvo/translations/de.json +11 -0
- homeassistant/components/volvo/translations/el.json +5 -0
- homeassistant/components/volvo/translations/en-GB.json +11 -0
- homeassistant/components/volvo/translations/en.json +11 -0
- homeassistant/components/volvo/translations/es.json +11 -0
- homeassistant/components/volvo/translations/et.json +11 -0
- homeassistant/components/volvo/translations/fr.json +3 -0
- homeassistant/components/volvo/translations/ga.json +11 -0
- homeassistant/components/volvo/translations/it.json +5 -0
- homeassistant/components/volvo/translations/lt.json +11 -0
- homeassistant/components/volvo/translations/nl.json +5 -0
- homeassistant/components/volvo/translations/pt.json +11 -0
- homeassistant/components/volvo/translations/sk.json +11 -0
- homeassistant/components/volvo/translations/sr-Latn.json +5 -0
- homeassistant/components/volvo/translations/sv.json +5 -0
- homeassistant/components/volvo/translations/tr.json +166 -0
- homeassistant/components/volvo/translations/vi.json +9 -1
- homeassistant/components/volvo/translations/zh-Hans.json +11 -0
- homeassistant/components/volvo/translations/zh-Hant.json +11 -0
- homeassistant/components/volvooncall/translations/tr.json +18 -1
- homeassistant/components/wallbox/__init__.py +18 -12
- homeassistant/components/wallbox/config_flow.py +22 -6
- homeassistant/components/wallbox/const.py +6 -0
- homeassistant/components/wallbox/coordinator.py +53 -23
- homeassistant/components/wallbox/translations/it.json +1 -1
- homeassistant/components/waqi/diagnostics.py +20 -0
- homeassistant/components/waqi/translations/sr-Latn.json +32 -0
- homeassistant/components/waqi/translations/tr.json +40 -0
- homeassistant/components/water_heater/translations/mk.json +10 -0
- homeassistant/components/water_heater/translations/sr-Latn.json +2 -1
- homeassistant/components/watttime/translations/it.json +1 -1
- homeassistant/components/waze_travel_time/__init__.py +4 -3
- homeassistant/components/waze_travel_time/httpx_client.py +26 -0
- homeassistant/components/waze_travel_time/manifest.json +1 -1
- homeassistant/components/waze_travel_time/translations/it.json +1 -1
- homeassistant/components/weatherflow/translations/sv.json +5 -0
- homeassistant/components/weatherflow/translations/tr.json +8 -0
- homeassistant/components/weatherflow_cloud/translations/it.json +1 -1
- homeassistant/components/webostv/manifest.json +1 -0
- homeassistant/components/webostv/translations/it.json +2 -2
- homeassistant/components/websocket_api/automation.py +228 -0
- homeassistant/components/websocket_api/commands.py +90 -19
- homeassistant/components/weheat/__init__.py +9 -2
- homeassistant/components/weheat/strings.json +5 -0
- homeassistant/components/weheat/translations/cs.json +5 -0
- homeassistant/components/weheat/translations/de.json +5 -0
- homeassistant/components/weheat/translations/en-GB.json +5 -0
- homeassistant/components/weheat/translations/en.json +5 -0
- homeassistant/components/weheat/translations/es.json +5 -0
- homeassistant/components/weheat/translations/et.json +5 -0
- homeassistant/components/weheat/translations/ga.json +5 -0
- homeassistant/components/weheat/translations/it.json +1 -1
- homeassistant/components/weheat/translations/lt.json +5 -0
- homeassistant/components/weheat/translations/nl.json +8 -2
- homeassistant/components/weheat/translations/pt.json +5 -0
- homeassistant/components/weheat/translations/sk.json +5 -0
- homeassistant/components/weheat/translations/tr.json +5 -0
- homeassistant/components/weheat/translations/zh-Hans.json +5 -0
- homeassistant/components/weheat/translations/zh-Hant.json +5 -0
- homeassistant/components/whirlpool/translations/it.json +2 -1
- homeassistant/components/whirlpool/translations/tr.json +81 -0
- homeassistant/components/withings/__init__.py +9 -1
- homeassistant/components/withings/const.py +0 -1
- homeassistant/components/withings/sensor.py +5 -3
- homeassistant/components/withings/strings.json +5 -0
- homeassistant/components/withings/translations/cs.json +5 -0
- homeassistant/components/withings/translations/de.json +5 -0
- homeassistant/components/withings/translations/en-GB.json +5 -0
- homeassistant/components/withings/translations/en.json +5 -0
- homeassistant/components/withings/translations/es.json +5 -0
- homeassistant/components/withings/translations/et.json +5 -0
- homeassistant/components/withings/translations/ga.json +5 -0
- homeassistant/components/withings/translations/it.json +1 -1
- homeassistant/components/withings/translations/lt.json +5 -0
- homeassistant/components/withings/translations/pt.json +5 -0
- homeassistant/components/withings/translations/sk.json +5 -0
- homeassistant/components/withings/translations/sr-Latn.json +5 -0
- homeassistant/components/withings/translations/tr.json +5 -0
- homeassistant/components/withings/translations/zh-Hans.json +5 -0
- homeassistant/components/withings/translations/zh-Hant.json +5 -0
- homeassistant/components/wiz/light.py +15 -5
- homeassistant/components/wled/__init__.py +5 -4
- homeassistant/components/wled/button.py +3 -2
- homeassistant/components/wled/config_flow.py +36 -4
- homeassistant/components/wled/coordinator.py +35 -4
- homeassistant/components/wled/diagnostics.py +1 -1
- homeassistant/components/wled/helpers.py +11 -3
- homeassistant/components/wled/light.py +1 -2
- homeassistant/components/wled/number.py +1 -2
- homeassistant/components/wled/select.py +1 -2
- homeassistant/components/wled/sensor.py +4 -2
- homeassistant/components/wled/strings.json +29 -2
- homeassistant/components/wled/switch.py +1 -2
- homeassistant/components/wled/translations/bg.json +2 -1
- homeassistant/components/wled/translations/cs.json +29 -2
- homeassistant/components/wled/translations/de.json +30 -3
- homeassistant/components/wled/translations/el.json +20 -1
- homeassistant/components/wled/translations/en-GB.json +29 -2
- homeassistant/components/wled/translations/en.json +29 -2
- homeassistant/components/wled/translations/es.json +29 -2
- homeassistant/components/wled/translations/et.json +29 -2
- homeassistant/components/wled/translations/ga.json +20 -1
- homeassistant/components/wled/translations/it.json +26 -1
- homeassistant/components/wled/translations/lt.json +29 -2
- homeassistant/components/wled/translations/nl.json +2 -1
- homeassistant/components/wled/translations/pl.json +8 -1
- homeassistant/components/wled/translations/pt.json +20 -1
- homeassistant/components/wled/translations/ru.json +29 -2
- homeassistant/components/wled/translations/sk.json +29 -2
- homeassistant/components/wled/translations/sv.json +11 -0
- homeassistant/components/wled/translations/tr.json +26 -1
- homeassistant/components/wled/translations/zh-Hans.json +20 -1
- homeassistant/components/wled/translations/zh-Hant.json +29 -2
- homeassistant/components/wled/update.py +9 -3
- homeassistant/components/workday/translations/mk.json +11 -0
- homeassistant/components/workday/translations/tr.json +5 -0
- homeassistant/components/wyoming/assist_satellite.py +17 -12
- homeassistant/components/xbox/__init__.py +15 -10
- homeassistant/components/xbox/api.py +28 -8
- homeassistant/components/xbox/binary_sensor.py +16 -14
- homeassistant/components/xbox/browse_media.py +87 -115
- homeassistant/components/xbox/config_flow.py +31 -11
- homeassistant/components/xbox/const.py +0 -2
- homeassistant/components/xbox/coordinator.py +92 -27
- homeassistant/components/xbox/diagnostics.py +56 -0
- homeassistant/components/xbox/entity.py +8 -18
- homeassistant/components/xbox/icons.json +21 -0
- homeassistant/components/xbox/image.py +3 -3
- homeassistant/components/xbox/manifest.json +3 -3
- homeassistant/components/xbox/media_player.py +16 -11
- homeassistant/components/xbox/media_source.py +589 -200
- homeassistant/components/xbox/remote.py +28 -5
- homeassistant/components/xbox/sensor.py +177 -16
- homeassistant/components/xbox/strings.json +44 -1
- homeassistant/components/xbox/translations/bg.json +27 -1
- homeassistant/components/xbox/translations/ca.json +2 -2
- homeassistant/components/xbox/translations/cs.json +46 -1
- homeassistant/components/xbox/translations/da.json +1 -2
- homeassistant/components/xbox/translations/de.json +46 -1
- homeassistant/components/xbox/translations/el.json +11 -1
- homeassistant/components/xbox/translations/en-GB.json +46 -1
- homeassistant/components/xbox/translations/en.json +46 -1
- homeassistant/components/xbox/translations/es.json +46 -1
- homeassistant/components/xbox/translations/et.json +46 -1
- homeassistant/components/xbox/translations/fi.json +1 -2
- homeassistant/components/xbox/translations/fr.json +1 -2
- homeassistant/components/xbox/translations/ga.json +43 -1
- homeassistant/components/xbox/translations/he.json +6 -2
- homeassistant/components/xbox/translations/hu.json +1 -2
- homeassistant/components/xbox/translations/id.json +1 -2
- homeassistant/components/xbox/translations/it.json +31 -2
- homeassistant/components/xbox/translations/ja.json +1 -2
- homeassistant/components/xbox/translations/ka.json +1 -2
- homeassistant/components/xbox/translations/ko.json +1 -2
- homeassistant/components/xbox/translations/lb.json +1 -2
- homeassistant/components/xbox/translations/lt.json +46 -1
- homeassistant/components/xbox/translations/mk.json +9 -0
- homeassistant/components/xbox/translations/nb.json +1 -2
- homeassistant/components/xbox/translations/nl.json +16 -1
- homeassistant/components/xbox/translations/pl.json +1 -2
- homeassistant/components/xbox/translations/pt-BR.json +1 -2
- homeassistant/components/xbox/translations/pt.json +46 -1
- homeassistant/components/xbox/translations/ro.json +1 -2
- homeassistant/components/xbox/translations/ru.json +4 -2
- homeassistant/components/xbox/translations/sk.json +46 -1
- homeassistant/components/xbox/translations/sl.json +1 -2
- homeassistant/components/xbox/translations/sr-Latn.json +17 -0
- homeassistant/components/xbox/translations/sv.json +9 -2
- homeassistant/components/xbox/translations/tr.json +144 -1
- homeassistant/components/xbox/translations/uk.json +1 -2
- homeassistant/components/xbox/translations/zh-Hans.json +46 -1
- homeassistant/components/xbox/translations/zh-Hant.json +46 -1
- homeassistant/components/xiaomi_aqara/translations/sr-Latn.json +6 -0
- homeassistant/components/xiaomi_ble/manifest.json +1 -0
- homeassistant/components/xiaomi_ble/translations/it.json +1 -1
- homeassistant/components/xiaomi_miio/translations/el.json +2 -1
- homeassistant/components/xiaomi_miio/translations/it.json +1 -1
- homeassistant/components/yale/__init__.py +9 -8
- homeassistant/components/yale/manifest.json +2 -2
- homeassistant/components/yale/translations/it.json +1 -1
- homeassistant/components/yale_smart_alarm/translations/it.json +2 -2
- homeassistant/components/yalexs_ble/manifest.json +1 -1
- homeassistant/components/yalexs_ble/translations/it.json +1 -1
- homeassistant/components/yamaha_musiccast/manifest.json +1 -1
- homeassistant/components/yardian/translations/tr.json +16 -0
- homeassistant/components/yeelight/manifest.json +1 -1
- homeassistant/components/yeelight/translations/zh-Hans.json +1 -1
- homeassistant/components/yolink/__init__.py +14 -8
- homeassistant/components/yolink/strings.json +3 -0
- homeassistant/components/yolink/translations/cs.json +3 -0
- homeassistant/components/yolink/translations/de.json +3 -0
- homeassistant/components/yolink/translations/en-GB.json +3 -0
- homeassistant/components/yolink/translations/en.json +3 -0
- homeassistant/components/yolink/translations/es.json +3 -0
- homeassistant/components/yolink/translations/et.json +3 -0
- homeassistant/components/yolink/translations/ga.json +3 -0
- homeassistant/components/yolink/translations/it.json +1 -1
- homeassistant/components/yolink/translations/lt.json +3 -0
- homeassistant/components/yolink/translations/pt.json +3 -0
- homeassistant/components/yolink/translations/ru.json +3 -0
- homeassistant/components/yolink/translations/sk.json +3 -0
- homeassistant/components/yolink/translations/tr.json +17 -0
- homeassistant/components/yolink/translations/zh-Hans.json +3 -0
- homeassistant/components/yolink/translations/zh-Hant.json +3 -0
- homeassistant/components/youtube/__init__.py +8 -1
- homeassistant/components/youtube/manifest.json +1 -1
- homeassistant/components/youtube/strings.json +5 -0
- homeassistant/components/youtube/translations/cs.json +5 -0
- homeassistant/components/youtube/translations/de.json +5 -0
- homeassistant/components/youtube/translations/en-GB.json +5 -0
- homeassistant/components/youtube/translations/en.json +5 -0
- homeassistant/components/youtube/translations/es.json +5 -0
- homeassistant/components/youtube/translations/et.json +5 -0
- homeassistant/components/youtube/translations/ga.json +5 -0
- homeassistant/components/youtube/translations/it.json +1 -1
- homeassistant/components/youtube/translations/lt.json +5 -0
- homeassistant/components/youtube/translations/pt.json +5 -0
- homeassistant/components/youtube/translations/sk.json +5 -0
- homeassistant/components/youtube/translations/tr.json +5 -0
- homeassistant/components/youtube/translations/zh-Hans.json +5 -0
- homeassistant/components/youtube/translations/zh-Hant.json +5 -0
- homeassistant/components/zamg/sensor.py +9 -0
- homeassistant/components/zeroconf/translations/tr.json +14 -0
- homeassistant/components/zestimate/manifest.json +1 -1
- homeassistant/components/zeversolar/translations/sr-Latn.json +14 -1
- homeassistant/components/zha/__init__.py +1 -0
- homeassistant/components/zha/config_flow.py +2 -6
- homeassistant/components/zha/const.py +1 -1
- homeassistant/components/zha/entity.py +24 -7
- homeassistant/components/zha/helpers.py +3 -2
- homeassistant/components/zha/manifest.json +2 -1
- homeassistant/components/zha/radio_manager.py +2 -2
- homeassistant/components/zha/repairs/wrong_silabs_firmware.py +14 -1
- homeassistant/components/zha/strings.json +44 -0
- homeassistant/components/zha/translations/bg.json +120 -2
- homeassistant/components/zha/translations/cs.json +44 -0
- homeassistant/components/zha/translations/de.json +45 -1
- homeassistant/components/zha/translations/en-GB.json +44 -0
- homeassistant/components/zha/translations/en.json +44 -0
- homeassistant/components/zha/translations/es.json +44 -0
- homeassistant/components/zha/translations/et.json +44 -0
- homeassistant/components/zha/translations/ga.json +44 -0
- homeassistant/components/zha/translations/it.json +44 -0
- homeassistant/components/zha/translations/lt.json +44 -0
- homeassistant/components/zha/translations/mk.json +18 -1
- homeassistant/components/zha/translations/nl.json +8 -0
- homeassistant/components/zha/translations/pt.json +48 -4
- homeassistant/components/zha/translations/sk.json +44 -0
- homeassistant/components/zha/translations/sr-Latn.json +3 -0
- homeassistant/components/zha/translations/sv.json +9 -0
- homeassistant/components/zha/translations/tr.json +235 -1
- homeassistant/components/zha/translations/zh-Hans.json +44 -0
- homeassistant/components/zha/translations/zh-Hant.json +44 -0
- homeassistant/components/zwave_js/binary_sensor.py +1 -3
- homeassistant/components/zwave_js/config_flow.py +25 -19
- homeassistant/components/zwave_js/discovery.py +2 -9
- homeassistant/components/zwave_js/entity.py +2 -2
- homeassistant/components/zwave_js/event.py +41 -7
- homeassistant/components/zwave_js/manifest.json +7 -0
- homeassistant/components/zwave_js/translations/mk.json +7 -0
- homeassistant/components/zwave_js/translations/tr.json +17 -0
- homeassistant/components/zwave_js/translations/uk.json +3 -0
- homeassistant/config_entries.py +2 -23
- homeassistant/const.py +3 -30
- homeassistant/core.py +21 -2
- homeassistant/generated/bluetooth.py +21 -0
- homeassistant/generated/config_flows.py +12 -2
- homeassistant/generated/dhcp.py +4 -0
- homeassistant/generated/integrations.json +133 -148
- homeassistant/generated/labs.py +28 -0
- homeassistant/generated/usb.py +7 -0
- homeassistant/helpers/area_registry.py +33 -4
- homeassistant/helpers/automation.py +37 -1
- homeassistant/helpers/condition.py +73 -4
- homeassistant/helpers/config_entry_oauth2_flow.py +14 -2
- homeassistant/helpers/config_validation.py +43 -22
- homeassistant/helpers/device_registry.py +8 -2
- homeassistant/helpers/entity.py +5 -5
- homeassistant/helpers/entity_component.py +4 -1
- homeassistant/helpers/entity_platform.py +3 -1
- homeassistant/helpers/entity_registry.py +8 -3
- homeassistant/helpers/floor_registry.py +36 -3
- homeassistant/helpers/json.py +28 -9
- homeassistant/helpers/llm.py +11 -1
- homeassistant/helpers/registry.py +0 -1
- homeassistant/helpers/selector.py +41 -6
- homeassistant/helpers/service.py +10 -1
- homeassistant/helpers/storage.py +49 -15
- homeassistant/helpers/target.py +1 -1
- homeassistant/helpers/template/__init__.py +11 -707
- homeassistant/helpers/template/extensions/__init__.py +12 -0
- homeassistant/helpers/template/extensions/areas.py +159 -0
- homeassistant/helpers/template/extensions/base.py +83 -5
- homeassistant/helpers/template/extensions/datetime.py +324 -0
- homeassistant/helpers/template/extensions/devices.py +139 -0
- homeassistant/helpers/template/extensions/floors.py +157 -0
- homeassistant/helpers/template/extensions/issues.py +54 -0
- homeassistant/helpers/template/extensions/labels.py +169 -0
- homeassistant/helpers/template/extensions/math.py +116 -1
- homeassistant/helpers/template/helpers.py +56 -1
- homeassistant/helpers/trigger.py +288 -4
- homeassistant/helpers/update_coordinator.py +30 -4
- homeassistant/loader.py +6 -0
- homeassistant/package_constraints.txt +8 -12
- homeassistant/scripts/check_config.py +3 -1
- homeassistant/strings.json +5 -0
- homeassistant/util/__init__.py +14 -0
- homeassistant/util/package.py +4 -0
- homeassistant/util/unit_conversion.py +4 -0
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/METADATA +2 -2
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/RECORD +3619 -3399
- homeassistant/components/bluetooth_tracker/__init__.py +0 -1
- homeassistant/components/bluetooth_tracker/const.py +0 -10
- homeassistant/components/bluetooth_tracker/device_tracker.py +0 -213
- homeassistant/components/bluetooth_tracker/icons.json +0 -7
- homeassistant/components/bluetooth_tracker/manifest.json +0 -10
- homeassistant/components/bluetooth_tracker/services.yaml +0 -1
- homeassistant/components/bluetooth_tracker/strings.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/bg.json +0 -7
- homeassistant/components/bluetooth_tracker/translations/ca.json +0 -7
- homeassistant/components/bluetooth_tracker/translations/cs.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/de.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/el.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/en-GB.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/en.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/es.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/et.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/fi.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/ga.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/he.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/hu.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/id.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/it.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/ja.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/ko.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/lt.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/mk.json +0 -7
- homeassistant/components/bluetooth_tracker/translations/nb.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/nl.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/pt.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/ru.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/sk.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/sr-Latn.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/sv.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/tr.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/vi.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/zh-Hans.json +0 -8
- homeassistant/components/bluetooth_tracker/translations/zh-Hant.json +0 -8
- homeassistant/components/cups/__init__.py +0 -4
- homeassistant/components/cups/manifest.json +0 -9
- homeassistant/components/cups/sensor.py +0 -349
- homeassistant/components/decora/__init__.py +0 -3
- homeassistant/components/decora/light.py +0 -166
- homeassistant/components/decora/manifest.json +0 -10
- homeassistant/components/dlib_face_detect/__init__.py +0 -3
- homeassistant/components/dlib_face_detect/image_processing.py +0 -82
- homeassistant/components/dlib_face_detect/manifest.json +0 -10
- homeassistant/components/dlib_face_identify/__init__.py +0 -4
- homeassistant/components/dlib_face_identify/image_processing.py +0 -127
- homeassistant/components/dlib_face_identify/manifest.json +0 -10
- homeassistant/components/dominos/__init__.py +0 -259
- homeassistant/components/dominos/icons.json +0 -7
- homeassistant/components/dominos/manifest.json +0 -11
- homeassistant/components/dominos/services.yaml +0 -6
- homeassistant/components/dominos/strings.json +0 -14
- homeassistant/components/dominos/translations/ca.json +0 -7
- homeassistant/components/dominos/translations/cs.json +0 -14
- homeassistant/components/dominos/translations/de.json +0 -14
- homeassistant/components/dominos/translations/el.json +0 -14
- homeassistant/components/dominos/translations/en-GB.json +0 -14
- homeassistant/components/dominos/translations/en.json +0 -14
- homeassistant/components/dominos/translations/es.json +0 -14
- homeassistant/components/dominos/translations/et.json +0 -14
- homeassistant/components/dominos/translations/fi.json +0 -12
- homeassistant/components/dominos/translations/fr.json +0 -13
- homeassistant/components/dominos/translations/ga.json +0 -14
- homeassistant/components/dominos/translations/hu.json +0 -12
- homeassistant/components/dominos/translations/it.json +0 -12
- homeassistant/components/dominos/translations/ja.json +0 -12
- homeassistant/components/dominos/translations/ko.json +0 -12
- homeassistant/components/dominos/translations/lt.json +0 -14
- homeassistant/components/dominos/translations/pt-BR.json +0 -7
- homeassistant/components/dominos/translations/pt.json +0 -14
- homeassistant/components/dominos/translations/ru.json +0 -14
- homeassistant/components/dominos/translations/sk.json +0 -14
- homeassistant/components/dominos/translations/sv.json +0 -12
- homeassistant/components/dominos/translations/tr.json +0 -12
- homeassistant/components/dominos/translations/zh-Hans.json +0 -14
- homeassistant/components/dominos/translations/zh-Hant.json +0 -14
- homeassistant/components/eddystone_temperature/__init__.py +0 -6
- homeassistant/components/eddystone_temperature/manifest.json +0 -10
- homeassistant/components/eddystone_temperature/sensor.py +0 -211
- homeassistant/components/flick_electric/__init__.py +0 -152
- homeassistant/components/flick_electric/config_flow.py +0 -210
- homeassistant/components/flick_electric/const.py +0 -12
- homeassistant/components/flick_electric/coordinator.py +0 -55
- homeassistant/components/flick_electric/manifest.json +0 -11
- homeassistant/components/flick_electric/sensor.py +0 -72
- homeassistant/components/flick_electric/strings.json +0 -39
- homeassistant/components/flick_electric/translations/bg.json +0 -30
- homeassistant/components/flick_electric/translations/ca.json +0 -37
- homeassistant/components/flick_electric/translations/cs.json +0 -39
- homeassistant/components/flick_electric/translations/da.json +0 -20
- homeassistant/components/flick_electric/translations/de.json +0 -39
- homeassistant/components/flick_electric/translations/el.json +0 -39
- homeassistant/components/flick_electric/translations/en-GB.json +0 -39
- homeassistant/components/flick_electric/translations/en.json +0 -39
- homeassistant/components/flick_electric/translations/es-419.json +0 -9
- homeassistant/components/flick_electric/translations/es.json +0 -39
- homeassistant/components/flick_electric/translations/et.json +0 -39
- homeassistant/components/flick_electric/translations/fi.json +0 -30
- homeassistant/components/flick_electric/translations/fr.json +0 -23
- homeassistant/components/flick_electric/translations/ga.json +0 -39
- homeassistant/components/flick_electric/translations/he.json +0 -23
- homeassistant/components/flick_electric/translations/hu.json +0 -39
- homeassistant/components/flick_electric/translations/id.json +0 -24
- homeassistant/components/flick_electric/translations/it.json +0 -31
- homeassistant/components/flick_electric/translations/ja.json +0 -39
- homeassistant/components/flick_electric/translations/ko.json +0 -30
- homeassistant/components/flick_electric/translations/lb.json +0 -21
- homeassistant/components/flick_electric/translations/lt.json +0 -39
- homeassistant/components/flick_electric/translations/lv.json +0 -7
- homeassistant/components/flick_electric/translations/mk.json +0 -9
- homeassistant/components/flick_electric/translations/nb.json +0 -23
- homeassistant/components/flick_electric/translations/nl.json +0 -30
- homeassistant/components/flick_electric/translations/pl.json +0 -23
- homeassistant/components/flick_electric/translations/pt-BR.json +0 -39
- homeassistant/components/flick_electric/translations/pt.json +0 -39
- homeassistant/components/flick_electric/translations/ro.json +0 -30
- homeassistant/components/flick_electric/translations/ru.json +0 -39
- homeassistant/components/flick_electric/translations/sk.json +0 -39
- homeassistant/components/flick_electric/translations/sl.json +0 -23
- homeassistant/components/flick_electric/translations/sv.json +0 -39
- homeassistant/components/flick_electric/translations/tr.json +0 -39
- homeassistant/components/flick_electric/translations/uk.json +0 -23
- homeassistant/components/flick_electric/translations/vi.json +0 -23
- homeassistant/components/flick_electric/translations/zh-Hans.json +0 -39
- homeassistant/components/flick_electric/translations/zh-Hant.json +0 -39
- homeassistant/components/gstreamer/__init__.py +0 -3
- homeassistant/components/gstreamer/manifest.json +0 -10
- homeassistant/components/gstreamer/media_player.py +0 -195
- homeassistant/components/hive/alarm_control_panel.py +0 -77
- homeassistant/components/hunterdouglas_powerview/shade_data.py +0 -80
- homeassistant/components/keyboard/__init__.py +0 -87
- homeassistant/components/keyboard/icons.json +0 -22
- homeassistant/components/keyboard/manifest.json +0 -10
- homeassistant/components/keyboard/services.yaml +0 -6
- homeassistant/components/keyboard/strings.json +0 -28
- homeassistant/components/keyboard/translations/ca.json +0 -28
- homeassistant/components/keyboard/translations/cs.json +0 -28
- homeassistant/components/keyboard/translations/de.json +0 -28
- homeassistant/components/keyboard/translations/el.json +0 -28
- homeassistant/components/keyboard/translations/en-GB.json +0 -28
- homeassistant/components/keyboard/translations/en.json +0 -28
- homeassistant/components/keyboard/translations/es.json +0 -28
- homeassistant/components/keyboard/translations/et.json +0 -28
- homeassistant/components/keyboard/translations/fi.json +0 -28
- homeassistant/components/keyboard/translations/fr.json +0 -23
- homeassistant/components/keyboard/translations/ga.json +0 -28
- homeassistant/components/keyboard/translations/he.json +0 -28
- homeassistant/components/keyboard/translations/hu.json +0 -28
- homeassistant/components/keyboard/translations/it.json +0 -28
- homeassistant/components/keyboard/translations/ja.json +0 -28
- homeassistant/components/keyboard/translations/ko.json +0 -28
- homeassistant/components/keyboard/translations/lt.json +0 -28
- homeassistant/components/keyboard/translations/nl.json +0 -28
- homeassistant/components/keyboard/translations/pt-BR.json +0 -28
- homeassistant/components/keyboard/translations/pt.json +0 -28
- homeassistant/components/keyboard/translations/ru.json +0 -28
- homeassistant/components/keyboard/translations/sk.json +0 -28
- homeassistant/components/keyboard/translations/sr-Latn.json +0 -28
- homeassistant/components/keyboard/translations/sv.json +0 -28
- homeassistant/components/keyboard/translations/tr.json +0 -28
- homeassistant/components/keyboard/translations/zh-Hans.json +0 -28
- homeassistant/components/keyboard/translations/zh-Hant.json +0 -28
- homeassistant/components/lirc/__init__.py +0 -94
- homeassistant/components/lirc/manifest.json +0 -10
- homeassistant/components/pandora/__init__.py +0 -3
- homeassistant/components/pandora/manifest.json +0 -10
- homeassistant/components/pandora/media_player.py +0 -369
- homeassistant/components/rpi_camera/__init__.py +0 -88
- homeassistant/components/rpi_camera/camera.py +0 -156
- homeassistant/components/rpi_camera/const.py +0 -22
- homeassistant/components/rpi_camera/manifest.json +0 -8
- homeassistant/components/sms/__init__.py +0 -126
- homeassistant/components/sms/config_flow.py +0 -87
- homeassistant/components/sms/const.py +0 -35
- homeassistant/components/sms/coordinator.py +0 -59
- homeassistant/components/sms/gateway.py +0 -211
- homeassistant/components/sms/icons.json +0 -12
- homeassistant/components/sms/manifest.json +0 -10
- homeassistant/components/sms/notify.py +0 -85
- homeassistant/components/sms/sensor.py +0 -120
- homeassistant/components/sms/strings.json +0 -46
- homeassistant/components/sms/translations/bg.json +0 -36
- homeassistant/components/sms/translations/ca.json +0 -46
- homeassistant/components/sms/translations/cs.json +0 -46
- homeassistant/components/sms/translations/da.json +0 -12
- homeassistant/components/sms/translations/de.json +0 -46
- homeassistant/components/sms/translations/el.json +0 -46
- homeassistant/components/sms/translations/en-GB.json +0 -46
- homeassistant/components/sms/translations/en.json +0 -46
- homeassistant/components/sms/translations/es.json +0 -46
- homeassistant/components/sms/translations/et.json +0 -46
- homeassistant/components/sms/translations/fi.json +0 -46
- homeassistant/components/sms/translations/fr.json +0 -40
- homeassistant/components/sms/translations/ga.json +0 -46
- homeassistant/components/sms/translations/gl.json +0 -12
- homeassistant/components/sms/translations/he.json +0 -46
- homeassistant/components/sms/translations/hu.json +0 -46
- homeassistant/components/sms/translations/id.json +0 -46
- homeassistant/components/sms/translations/it.json +0 -46
- homeassistant/components/sms/translations/ja.json +0 -46
- homeassistant/components/sms/translations/ko.json +0 -46
- homeassistant/components/sms/translations/lb.json +0 -17
- homeassistant/components/sms/translations/lt.json +0 -46
- homeassistant/components/sms/translations/lv.json +0 -27
- homeassistant/components/sms/translations/nb.json +0 -21
- homeassistant/components/sms/translations/nl.json +0 -46
- homeassistant/components/sms/translations/pl.json +0 -43
- homeassistant/components/sms/translations/pt-BR.json +0 -46
- homeassistant/components/sms/translations/pt.json +0 -46
- homeassistant/components/sms/translations/ro.json +0 -45
- homeassistant/components/sms/translations/ru.json +0 -46
- homeassistant/components/sms/translations/sk.json +0 -46
- homeassistant/components/sms/translations/sl.json +0 -43
- homeassistant/components/sms/translations/sv.json +0 -46
- homeassistant/components/sms/translations/tr.json +0 -46
- homeassistant/components/sms/translations/uk.json +0 -45
- homeassistant/components/sms/translations/vi.json +0 -20
- homeassistant/components/sms/translations/zh-Hans.json +0 -46
- homeassistant/components/sms/translations/zh-Hant.json +0 -46
- homeassistant/components/snips/__init__.py +0 -257
- homeassistant/components/snips/icons.json +0 -16
- homeassistant/components/snips/manifest.json +0 -9
- homeassistant/components/snips/services.yaml +0 -56
- homeassistant/components/snips/strings.json +0 -68
- homeassistant/components/snips/translations/bg.json +0 -21
- homeassistant/components/snips/translations/ca.json +0 -55
- homeassistant/components/snips/translations/cs.json +0 -68
- homeassistant/components/snips/translations/de.json +0 -68
- homeassistant/components/snips/translations/el.json +0 -64
- homeassistant/components/snips/translations/en-GB.json +0 -68
- homeassistant/components/snips/translations/en.json +0 -68
- homeassistant/components/snips/translations/es.json +0 -68
- homeassistant/components/snips/translations/et.json +0 -68
- homeassistant/components/snips/translations/fi.json +0 -67
- homeassistant/components/snips/translations/ga.json +0 -68
- homeassistant/components/snips/translations/gl.json +0 -52
- homeassistant/components/snips/translations/hu.json +0 -68
- homeassistant/components/snips/translations/it.json +0 -67
- homeassistant/components/snips/translations/ja.json +0 -68
- homeassistant/components/snips/translations/ko.json +0 -67
- homeassistant/components/snips/translations/lt.json +0 -68
- homeassistant/components/snips/translations/mk.json +0 -18
- homeassistant/components/snips/translations/nb.json +0 -1
- homeassistant/components/snips/translations/nl.json +0 -20
- homeassistant/components/snips/translations/pl.json +0 -1
- homeassistant/components/snips/translations/pt-BR.json +0 -67
- homeassistant/components/snips/translations/pt.json +0 -68
- homeassistant/components/snips/translations/ru.json +0 -68
- homeassistant/components/snips/translations/sk.json +0 -68
- homeassistant/components/snips/translations/sv.json +0 -68
- homeassistant/components/snips/translations/tr.json +0 -68
- homeassistant/components/snips/translations/zh-Hans.json +0 -68
- homeassistant/components/snips/translations/zh-Hant.json +0 -68
- homeassistant/components/tensorflow/__init__.py +0 -4
- homeassistant/components/tensorflow/image_processing.py +0 -438
- homeassistant/components/tensorflow/manifest.json +0 -16
- homeassistant/components/yale_home/__init__.py +0 -1
- homeassistant/components/yale_home/manifest.json +0 -6
- /homeassistant/components/{snips/translations/he.json → airobot/translations/it.json} +0 -0
- /homeassistant/components/{snips/translations/id.json → energyid/translations/nl.json} +0 -0
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/WHEEL +0 -0
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/entry_points.txt +0 -0
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/licenses/LICENSE.md +0 -0
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
- {homeassistant-2025.11.2.dist-info → homeassistant-2025.12.0.dist-info}/top_level.txt +0 -0
|
@@ -174,15 +174,15 @@ class ProgramPhaseWashingMachine(MieleEnum, missing_to_none=True):
|
|
|
174
174
|
not_running = 0, 256, 65535
|
|
175
175
|
pre_wash = 257, 259
|
|
176
176
|
soak = 258
|
|
177
|
-
main_wash = 260
|
|
178
|
-
rinse = 261
|
|
177
|
+
main_wash = 260, 11004
|
|
178
|
+
rinse = 261, 11005
|
|
179
179
|
rinse_hold = 262
|
|
180
180
|
cleaning = 263
|
|
181
181
|
cooling_down = 264
|
|
182
182
|
drain = 265
|
|
183
|
-
spin = 266
|
|
184
|
-
anti_crease = 267
|
|
185
|
-
finished = 268
|
|
183
|
+
spin = 266, 11010
|
|
184
|
+
anti_crease = 267, 11029
|
|
185
|
+
finished = 268, 11012
|
|
186
186
|
venting = 269
|
|
187
187
|
starch_stop = 270
|
|
188
188
|
freshen_up_and_moisten = 271
|
|
@@ -190,6 +190,7 @@ class ProgramPhaseWashingMachine(MieleEnum, missing_to_none=True):
|
|
|
190
190
|
hygiene = 279
|
|
191
191
|
drying = 280
|
|
192
192
|
disinfecting = 285
|
|
193
|
+
flex_load_active = 11047
|
|
193
194
|
|
|
194
195
|
|
|
195
196
|
class ProgramPhaseTumbleDryer(MieleEnum, missing_to_none=True):
|
|
@@ -446,491 +447,803 @@ class StateDryingStep(MieleEnum, missing_to_none=True):
|
|
|
446
447
|
smoothing = 7
|
|
447
448
|
|
|
448
449
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
129
|
|
483
|
-
133
|
|
484
|
-
146
|
|
485
|
-
190
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
450
|
+
class WashingMachineProgramId(MieleEnum, missing_to_none=True):
|
|
451
|
+
"""Program Id codes for washing machines."""
|
|
452
|
+
|
|
453
|
+
no_program = 0, -1
|
|
454
|
+
cottons = 1
|
|
455
|
+
minimum_iron = 3
|
|
456
|
+
delicates = 4
|
|
457
|
+
woollens = 8
|
|
458
|
+
silks = 9
|
|
459
|
+
starch = 17
|
|
460
|
+
rinse = 18
|
|
461
|
+
drain_spin = 21
|
|
462
|
+
curtains = 22
|
|
463
|
+
shirts = 23
|
|
464
|
+
denim = 24, 123
|
|
465
|
+
proofing = 27
|
|
466
|
+
sportswear = 29
|
|
467
|
+
automatic_plus = 31
|
|
468
|
+
outerwear = 37
|
|
469
|
+
pillows = 39
|
|
470
|
+
cool_air = 45 # washer-dryer
|
|
471
|
+
warm_air = 46 # washer-dryer
|
|
472
|
+
rinse_out_lint = 48 # washer-dryer
|
|
473
|
+
dark_garments = 50
|
|
474
|
+
separate_rinse_starch = 52
|
|
475
|
+
first_wash = 53
|
|
476
|
+
cottons_hygiene = 69
|
|
477
|
+
steam_care = 75 # washer-dryer
|
|
478
|
+
freshen_up = 76 # washer-dryer
|
|
479
|
+
trainers = 77
|
|
480
|
+
clean_machine = 91
|
|
481
|
+
down_duvets = 95
|
|
482
|
+
express_20 = 122
|
|
483
|
+
down_filled_items = 129
|
|
484
|
+
cottons_eco = 133
|
|
485
|
+
quick_power_wash = 146, 10031
|
|
486
|
+
eco_40_60 = 190, 10007
|
|
487
|
+
normal = 10001
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
class DishWasherProgramId(MieleEnum, missing_to_none=True):
|
|
491
|
+
"""Program Id codes for dishwashers."""
|
|
492
|
+
|
|
493
|
+
no_program = 0, -1
|
|
494
|
+
intensive = 1, 26, 205
|
|
495
|
+
maintenance = 2, 27, 214
|
|
496
|
+
eco = 3, 28, 200
|
|
497
|
+
automatic = 6, 7, 31, 32, 202
|
|
498
|
+
solar_save = 9, 34
|
|
499
|
+
gentle = 10, 35, 210
|
|
500
|
+
extra_quiet = 11, 36, 207
|
|
501
|
+
hygiene = 12, 37
|
|
502
|
+
quick_power_wash = 13, 38
|
|
503
|
+
pasta_paela = 14
|
|
504
|
+
tall_items = 17, 42
|
|
505
|
+
glasses_warm = 19
|
|
506
|
+
normal = 30
|
|
507
|
+
power_wash = 44, 204
|
|
508
|
+
comfort_wash = 203
|
|
509
|
+
comfort_wash_plus = 209
|
|
510
|
+
rinse_salt = 215
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
class TumbleDryerProgramId(MieleEnum, missing_to_none=True):
|
|
514
|
+
"""Program Id codes for tumble dryers."""
|
|
515
|
+
|
|
516
|
+
no_program = 0, -1
|
|
517
|
+
automatic_plus = 1
|
|
518
|
+
cottons = 2, 20, 90
|
|
519
|
+
minimum_iron = 3, 30
|
|
520
|
+
woollens_handcare = 4, 40
|
|
521
|
+
delicates = 5, 50
|
|
522
|
+
warm_air = 6, 60
|
|
523
|
+
cool_air = 7, 70
|
|
524
|
+
express = 8, 80
|
|
525
|
+
cottons_eco = 9, 99003
|
|
526
|
+
proofing = 12, 120
|
|
527
|
+
denim = 13, 130
|
|
528
|
+
shirts = 14, 99004
|
|
529
|
+
sportswear = 15, 150
|
|
530
|
+
outerwear = 16, 160
|
|
531
|
+
silks_handcare = 17, 170
|
|
532
|
+
standard_pillows = 19, 190
|
|
533
|
+
basket_program = 22, 220
|
|
534
|
+
cottons_hygiene = 23
|
|
535
|
+
smoothing = 24, 240
|
|
536
|
+
bed_linen = 31, 99002
|
|
537
|
+
eco = 66
|
|
538
|
+
gentle_smoothing = 10, 100
|
|
539
|
+
gentle_denim = 131
|
|
540
|
+
steam_smoothing = 99001
|
|
541
|
+
large_pillows = 99005
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
class OvenProgramId(MieleEnum, missing_to_none=True):
|
|
545
|
+
"""Program Id codes for ovens."""
|
|
546
|
+
|
|
547
|
+
no_program = 0, -1, 17003
|
|
548
|
+
defrost = 1, 356
|
|
549
|
+
eco_fan_heat = 6
|
|
550
|
+
auto_roast = 7
|
|
551
|
+
full_grill = 10
|
|
552
|
+
economy_grill = 11
|
|
553
|
+
fan_plus = 13
|
|
554
|
+
intensive_bake = 14
|
|
555
|
+
microwave = 19
|
|
556
|
+
conventional_heat = 24
|
|
557
|
+
top_heat = 25
|
|
558
|
+
fan_grill = 29
|
|
559
|
+
bottom_heat = 31
|
|
560
|
+
moisture_plus_auto_roast = 35, 48
|
|
561
|
+
moisture_plus_fan_plus = 40, 49
|
|
562
|
+
moisture_plus_intensive_bake = 50, 74
|
|
563
|
+
moisture_plus_conventional_heat = 51, 76
|
|
564
|
+
custom_program_1 = 97
|
|
565
|
+
custom_program_2 = 98
|
|
566
|
+
custom_program_3 = 99
|
|
567
|
+
custom_program_4 = 100
|
|
568
|
+
custom_program_5 = 101
|
|
569
|
+
custom_program_6 = 102
|
|
570
|
+
custom_program_7 = 103
|
|
571
|
+
custom_program_8 = 104
|
|
572
|
+
custom_program_9 = 105
|
|
573
|
+
custom_program_10 = 106
|
|
574
|
+
custom_program_11 = 107
|
|
575
|
+
custom_program_12 = 108
|
|
576
|
+
custom_program_13 = 109
|
|
577
|
+
custom_program_14 = 110
|
|
578
|
+
custom_program_15 = 111
|
|
579
|
+
custom_program_16 = 112
|
|
580
|
+
custom_program_17 = 113
|
|
581
|
+
custom_program_18 = 114
|
|
582
|
+
custom_program_19 = 115
|
|
583
|
+
custom_program_20 = 116
|
|
584
|
+
pyrolytic = 323
|
|
585
|
+
descale = 326
|
|
586
|
+
evaporate_water = 327
|
|
587
|
+
shabbat_program = 335
|
|
588
|
+
yom_tov = 336
|
|
589
|
+
drying = 357
|
|
590
|
+
heat_crockery = 358
|
|
591
|
+
low_temperature_cooking = 360
|
|
592
|
+
steam_cooking = 361
|
|
593
|
+
keeping_warm = 362
|
|
594
|
+
apple_sponge = 364
|
|
595
|
+
apple_pie = 365
|
|
596
|
+
sponge_base = 367
|
|
597
|
+
swiss_roll = 368
|
|
598
|
+
butter_cake = 369
|
|
599
|
+
marble_cake = 373
|
|
600
|
+
fruit_streusel_cake = 374
|
|
601
|
+
madeira_cake = 375
|
|
602
|
+
blueberry_muffins = 378
|
|
603
|
+
walnut_muffins = 379
|
|
604
|
+
baguettes = 382
|
|
605
|
+
flat_bread = 383
|
|
606
|
+
plaited_loaf = 384
|
|
607
|
+
seeded_loaf = 385
|
|
608
|
+
white_bread_baking_tin = 386
|
|
609
|
+
white_bread_on_tray = 387
|
|
610
|
+
duck = 394
|
|
611
|
+
chicken_whole = 396
|
|
612
|
+
chicken_thighs = 397
|
|
613
|
+
turkey_whole = 401
|
|
614
|
+
turkey_drumsticks = 402
|
|
615
|
+
veal_fillet_roast = 406
|
|
616
|
+
veal_fillet_low_temperature_cooking = 407
|
|
617
|
+
veal_knuckle = 408
|
|
618
|
+
saddle_of_veal_roast = 409
|
|
619
|
+
saddle_of_veal_low_temperature_cooking = 410
|
|
620
|
+
braised_veal = 411
|
|
621
|
+
leg_of_lamb = 415
|
|
622
|
+
saddle_of_lamb_roast = 419
|
|
623
|
+
saddle_of_lamb_low_temperature_cooking = 420
|
|
624
|
+
beef_fillet_roast = 422
|
|
625
|
+
beef_fillet_low_temperature_cooking = 423
|
|
626
|
+
braised_beef = 427
|
|
627
|
+
roast_beef_roast = 428
|
|
628
|
+
roast_beef_low_temperature_cooking = 429
|
|
629
|
+
pork_smoked_ribs_roast = 435
|
|
630
|
+
pork_smoked_ribs_low_temperature_cooking = 436
|
|
631
|
+
ham_roast = 443
|
|
632
|
+
pork_fillet_roast = 449
|
|
633
|
+
pork_fillet_low_temperature_cooking = 450
|
|
634
|
+
saddle_of_venison = 454
|
|
635
|
+
rabbit = 455
|
|
636
|
+
saddle_of_roebuck = 456
|
|
637
|
+
salmon_fillet = 461
|
|
638
|
+
potato_cheese_gratin = 464
|
|
639
|
+
trout = 486
|
|
640
|
+
carp = 491
|
|
641
|
+
salmon_trout = 492
|
|
642
|
+
springform_tin_15cm = 496
|
|
643
|
+
springform_tin_20cm = 497
|
|
644
|
+
springform_tin_25cm = 498
|
|
645
|
+
fruit_flan_puff_pastry = 499
|
|
646
|
+
fruit_flan_short_crust_pastry = 500
|
|
647
|
+
sachertorte = 501
|
|
648
|
+
chocolate_hazlenut_cake_one_large = 502
|
|
649
|
+
chocolate_hazlenut_cake_several_small = 503
|
|
650
|
+
stollen = 504
|
|
651
|
+
drop_cookies_1_tray = 505
|
|
652
|
+
drop_cookies_2_trays = 506
|
|
653
|
+
linzer_augen_1_tray = 507
|
|
654
|
+
linzer_augen_2_trays = 508
|
|
655
|
+
almond_macaroons_1_tray = 509
|
|
656
|
+
almond_macaroons_2_trays = 510
|
|
657
|
+
biscuits_short_crust_pastry_1_tray = 512
|
|
658
|
+
biscuits_short_crust_pastry_2_trays = 513
|
|
659
|
+
vanilla_biscuits_1_tray = 514
|
|
660
|
+
vanilla_biscuits_2_trays = 515
|
|
661
|
+
choux_buns = 516
|
|
662
|
+
spelt_bread = 518
|
|
663
|
+
walnut_bread = 519
|
|
664
|
+
mixed_rye_bread = 520
|
|
665
|
+
dark_mixed_grain_bread = 522
|
|
666
|
+
multigrain_rolls = 525
|
|
667
|
+
rye_rolls = 526
|
|
668
|
+
white_rolls = 527
|
|
669
|
+
tart_flambe = 528
|
|
670
|
+
pizza_yeast_dough_baking_tray = 529
|
|
671
|
+
pizza_yeast_dough_round_baking_tine = 530
|
|
672
|
+
pizza_oil_cheese_dough_baking_tray = 531
|
|
673
|
+
pizza_oil_cheese_dough_round_baking_tine = 532
|
|
674
|
+
quiche_lorraine = 533
|
|
675
|
+
savoury_flan_puff_pastry = 534
|
|
676
|
+
savoury_flan_short_crust_pastry = 535
|
|
677
|
+
osso_buco = 536
|
|
678
|
+
beef_hash = 539
|
|
679
|
+
pork_with_crackling = 543
|
|
680
|
+
potato_gratin = 550
|
|
681
|
+
cheese_souffle = 551
|
|
682
|
+
baiser_one_large = 554
|
|
683
|
+
baiser_several_small = 555
|
|
684
|
+
lemon_meringue_pie = 556
|
|
685
|
+
viennese_apple_strudel = 557
|
|
686
|
+
prove_15_min = 621
|
|
687
|
+
prove_30_min = 622
|
|
688
|
+
prove_45_min = 623
|
|
689
|
+
belgian_sponge_cake = 624
|
|
690
|
+
goose_unstuffed = 625
|
|
691
|
+
rack_of_lamb_with_vegetables = 634
|
|
692
|
+
yorkshire_pudding = 635
|
|
693
|
+
meat_loaf = 636
|
|
694
|
+
swiss_farmhouse_bread = 695
|
|
695
|
+
plaited_swiss_loaf = 696
|
|
696
|
+
tiger_bread = 697
|
|
697
|
+
ginger_loaf = 698
|
|
698
|
+
goose_stuffed = 699
|
|
699
|
+
beef_wellington = 700
|
|
700
|
+
pork_belly = 701
|
|
701
|
+
pikeperch_fillet_with_vegetables = 702
|
|
702
|
+
steam_bake = 99001
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
class DishWarmerProgramId(MieleEnum, missing_to_none=True):
|
|
706
|
+
"""Program Id codes for dish warmers."""
|
|
707
|
+
|
|
708
|
+
no_program = 0, -1
|
|
709
|
+
warm_cups_glasses = 1
|
|
710
|
+
warm_dishes_plates = 2
|
|
711
|
+
keep_warm = 3
|
|
712
|
+
slow_roasting = 4
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
class RobotVacuumCleanerProgramId(MieleEnum, missing_to_none=True):
|
|
716
|
+
"""Program Id codes for robot vacuum cleaners."""
|
|
717
|
+
|
|
718
|
+
no_program = 0, -1
|
|
719
|
+
auto = 1
|
|
720
|
+
spot = 2
|
|
721
|
+
turbo = 3
|
|
722
|
+
silent = 4
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
class CoffeeSystemProgramId(MieleEnum, missing_to_none=True):
|
|
726
|
+
"""Program Id codes for coffee systems."""
|
|
727
|
+
|
|
728
|
+
no_program = 0, -1
|
|
729
|
+
|
|
730
|
+
check_appliance = 17004
|
|
577
731
|
|
|
578
|
-
OVEN_PROGRAM_ID: dict[int, str] = {
|
|
579
|
-
-1: "no_program", # Extrapolated from other device types.
|
|
580
|
-
0: "no_program", # Extrapolated from other device types
|
|
581
|
-
1: "defrost",
|
|
582
|
-
6: "eco_fan_heat",
|
|
583
|
-
7: "auto_roast",
|
|
584
|
-
10: "full_grill",
|
|
585
|
-
11: "economy_grill",
|
|
586
|
-
13: "fan_plus",
|
|
587
|
-
14: "intensive_bake",
|
|
588
|
-
19: "microwave",
|
|
589
|
-
24: "conventional_heat",
|
|
590
|
-
25: "top_heat",
|
|
591
|
-
29: "fan_grill",
|
|
592
|
-
31: "bottom_heat",
|
|
593
|
-
35: "moisture_plus_auto_roast",
|
|
594
|
-
40: "moisture_plus_fan_plus",
|
|
595
|
-
48: "moisture_plus_auto_roast",
|
|
596
|
-
49: "moisture_plus_fan_plus",
|
|
597
|
-
50: "moisture_plus_intensive_bake",
|
|
598
|
-
51: "moisture_plus_conventional_heat",
|
|
599
|
-
74: "moisture_plus_intensive_bake",
|
|
600
|
-
76: "moisture_plus_conventional_heat",
|
|
601
|
-
97: "custom_program_1",
|
|
602
|
-
98: "custom_program_2",
|
|
603
|
-
99: "custom_program_3",
|
|
604
|
-
100: "custom_program_4",
|
|
605
|
-
101: "custom_program_5",
|
|
606
|
-
102: "custom_program_6",
|
|
607
|
-
103: "custom_program_7",
|
|
608
|
-
104: "custom_program_8",
|
|
609
|
-
105: "custom_program_9",
|
|
610
|
-
106: "custom_program_10",
|
|
611
|
-
107: "custom_program_11",
|
|
612
|
-
108: "custom_program_12",
|
|
613
|
-
109: "custom_program_13",
|
|
614
|
-
110: "custom_program_14",
|
|
615
|
-
111: "custom_program_15",
|
|
616
|
-
112: "custom_program_16",
|
|
617
|
-
113: "custom_program_17",
|
|
618
|
-
114: "custom_program_18",
|
|
619
|
-
115: "custom_program_19",
|
|
620
|
-
116: "custom_program_20",
|
|
621
|
-
323: "pyrolytic",
|
|
622
|
-
326: "descale",
|
|
623
|
-
327: "evaporate_water",
|
|
624
|
-
335: "shabbat_program",
|
|
625
|
-
336: "yom_tov",
|
|
626
|
-
356: "defrost",
|
|
627
|
-
357: "drying",
|
|
628
|
-
358: "heat_crockery",
|
|
629
|
-
360: "low_temperature_cooking",
|
|
630
|
-
361: "steam_cooking",
|
|
631
|
-
362: "keeping_warm",
|
|
632
|
-
364: "apple_sponge",
|
|
633
|
-
365: "apple_pie",
|
|
634
|
-
367: "sponge_base",
|
|
635
|
-
368: "swiss_roll",
|
|
636
|
-
369: "butter_cake",
|
|
637
|
-
373: "marble_cake",
|
|
638
|
-
374: "fruit_streusel_cake",
|
|
639
|
-
375: "madeira_cake",
|
|
640
|
-
378: "blueberry_muffins",
|
|
641
|
-
379: "walnut_muffins",
|
|
642
|
-
382: "baguettes",
|
|
643
|
-
383: "flat_bread",
|
|
644
|
-
384: "plaited_loaf",
|
|
645
|
-
385: "seeded_loaf",
|
|
646
|
-
386: "white_bread_baking_tin",
|
|
647
|
-
387: "white_bread_on_tray",
|
|
648
|
-
394: "duck",
|
|
649
|
-
396: "chicken_whole",
|
|
650
|
-
397: "chicken_thighs",
|
|
651
|
-
401: "turkey_whole",
|
|
652
|
-
402: "turkey_drumsticks",
|
|
653
|
-
406: "veal_fillet_roast",
|
|
654
|
-
407: "veal_fillet_low_temperature_cooking",
|
|
655
|
-
408: "veal_knuckle",
|
|
656
|
-
409: "saddle_of_veal_roast",
|
|
657
|
-
410: "saddle_of_veal_low_temperature_cooking",
|
|
658
|
-
411: "braised_veal",
|
|
659
|
-
415: "leg_of_lamb",
|
|
660
|
-
419: "saddle_of_lamb_roast",
|
|
661
|
-
420: "saddle_of_lamb_low_temperature_cooking",
|
|
662
|
-
422: "beef_fillet_roast",
|
|
663
|
-
423: "beef_fillet_low_temperature_cooking",
|
|
664
|
-
427: "braised_beef",
|
|
665
|
-
428: "roast_beef_roast",
|
|
666
|
-
429: "roast_beef_low_temperature_cooking",
|
|
667
|
-
435: "pork_smoked_ribs_roast",
|
|
668
|
-
436: "pork_smoked_ribs_low_temperature_cooking",
|
|
669
|
-
443: "ham_roast",
|
|
670
|
-
449: "pork_fillet_roast",
|
|
671
|
-
450: "pork_fillet_low_temperature_cooking",
|
|
672
|
-
454: "saddle_of_venison",
|
|
673
|
-
455: "rabbit",
|
|
674
|
-
456: "saddle_of_roebuck",
|
|
675
|
-
461: "salmon_fillet",
|
|
676
|
-
464: "potato_cheese_gratin",
|
|
677
|
-
486: "trout",
|
|
678
|
-
491: "carp",
|
|
679
|
-
492: "salmon_trout",
|
|
680
|
-
496: "springform_tin_15cm",
|
|
681
|
-
497: "springform_tin_20cm",
|
|
682
|
-
498: "springform_tin_25cm",
|
|
683
|
-
499: "fruit_flan_puff_pastry",
|
|
684
|
-
500: "fruit_flan_short_crust_pastry",
|
|
685
|
-
501: "sachertorte",
|
|
686
|
-
502: "chocolate_hazlenut_cake_one_large",
|
|
687
|
-
503: "chocolate_hazlenut_cake_several_small",
|
|
688
|
-
504: "stollen",
|
|
689
|
-
505: "drop_cookies_1_tray",
|
|
690
|
-
506: "drop_cookies_2_trays",
|
|
691
|
-
507: "linzer_augen_1_tray",
|
|
692
|
-
508: "linzer_augen_2_trays",
|
|
693
|
-
509: "almond_macaroons_1_tray",
|
|
694
|
-
510: "almond_macaroons_2_trays",
|
|
695
|
-
512: "biscuits_short_crust_pastry_1_tray",
|
|
696
|
-
513: "biscuits_short_crust_pastry_2_trays",
|
|
697
|
-
514: "vanilla_biscuits_1_tray",
|
|
698
|
-
515: "vanilla_biscuits_2_trays",
|
|
699
|
-
516: "choux_buns",
|
|
700
|
-
518: "spelt_bread",
|
|
701
|
-
519: "walnut_bread",
|
|
702
|
-
520: "mixed_rye_bread",
|
|
703
|
-
522: "dark_mixed_grain_bread",
|
|
704
|
-
525: "multigrain_rolls",
|
|
705
|
-
526: "rye_rolls",
|
|
706
|
-
527: "white_rolls",
|
|
707
|
-
528: "tart_flambe",
|
|
708
|
-
529: "pizza_yeast_dough_baking_tray",
|
|
709
|
-
530: "pizza_yeast_dough_round_baking_tine",
|
|
710
|
-
531: "pizza_oil_cheese_dough_baking_tray",
|
|
711
|
-
532: "pizza_oil_cheese_dough_round_baking_tine",
|
|
712
|
-
533: "quiche_lorraine",
|
|
713
|
-
534: "savoury_flan_puff_pastry",
|
|
714
|
-
535: "savoury_flan_short_crust_pastry",
|
|
715
|
-
536: "osso_buco",
|
|
716
|
-
539: "beef_hash",
|
|
717
|
-
543: "pork_with_crackling",
|
|
718
|
-
550: "potato_gratin",
|
|
719
|
-
551: "cheese_souffle",
|
|
720
|
-
554: "baiser_one_large",
|
|
721
|
-
555: "baiser_several_small",
|
|
722
|
-
556: "lemon_meringue_pie",
|
|
723
|
-
557: "viennese_apple_strudel",
|
|
724
|
-
621: "prove_15_min",
|
|
725
|
-
622: "prove_30_min",
|
|
726
|
-
623: "prove_45_min",
|
|
727
|
-
624: "belgian_sponge_cake",
|
|
728
|
-
625: "goose_unstuffed",
|
|
729
|
-
634: "rack_of_lamb_with_vegetables",
|
|
730
|
-
635: "yorkshire_pudding",
|
|
731
|
-
636: "meat_loaf",
|
|
732
|
-
695: "swiss_farmhouse_bread",
|
|
733
|
-
696: "plaited_swiss_loaf",
|
|
734
|
-
697: "tiger_bread",
|
|
735
|
-
698: "ginger_loaf",
|
|
736
|
-
699: "goose_stuffed",
|
|
737
|
-
700: "beef_wellington",
|
|
738
|
-
701: "pork_belly",
|
|
739
|
-
702: "pikeperch_fillet_with_vegetables",
|
|
740
|
-
99001: "steam_bake",
|
|
741
|
-
17003: "no_program",
|
|
742
|
-
}
|
|
743
|
-
DISH_WARMER_PROGRAM_ID: dict[int, str] = {
|
|
744
|
-
-1: "no_program",
|
|
745
|
-
0: "no_program",
|
|
746
|
-
1: "warm_cups_glasses",
|
|
747
|
-
2: "warm_dishes_plates",
|
|
748
|
-
3: "keep_warm",
|
|
749
|
-
4: "slow_roasting",
|
|
750
|
-
}
|
|
751
|
-
ROBOT_VACUUM_CLEANER_PROGRAM_ID: dict[int, str] = {
|
|
752
|
-
-1: "no_program", # Extrapolated from other device types
|
|
753
|
-
0: "no_program", # Extrapolated from other device types
|
|
754
|
-
1: "auto",
|
|
755
|
-
2: "spot",
|
|
756
|
-
3: "turbo",
|
|
757
|
-
4: "silent",
|
|
758
|
-
}
|
|
759
|
-
COFFEE_SYSTEM_PROGRAM_ID: dict[int, str] = {
|
|
760
|
-
-1: "no_program", # Extrapolated from other device types
|
|
761
|
-
0: "no_program", # Extrapolated from other device types
|
|
762
|
-
16016: "appliance_settings", # display brightness
|
|
763
|
-
16018: "appliance_settings", # volume
|
|
764
|
-
16019: "appliance_settings", # buttons volume
|
|
765
|
-
16020: "appliance_settings", # child lock
|
|
766
|
-
16021: "appliance_settings", # water hardness
|
|
767
|
-
16027: "appliance_settings", # welcome sound
|
|
768
|
-
16033: "appliance_settings", # connection status
|
|
769
|
-
16035: "appliance_settings", # remote control
|
|
770
|
-
16037: "appliance_settings", # remote update
|
|
771
|
-
17004: "check_appliance",
|
|
772
732
|
# profile 1
|
|
773
|
-
24000
|
|
774
|
-
24001
|
|
775
|
-
24002
|
|
776
|
-
24003
|
|
777
|
-
24004
|
|
778
|
-
24005
|
|
779
|
-
24006
|
|
780
|
-
24007
|
|
781
|
-
24008
|
|
782
|
-
24009
|
|
783
|
-
24012
|
|
784
|
-
24013
|
|
785
|
-
24014
|
|
786
|
-
24015
|
|
787
|
-
24016
|
|
788
|
-
24017
|
|
789
|
-
24018
|
|
790
|
-
24019
|
|
791
|
-
24020
|
|
792
|
-
24021
|
|
793
|
-
24022
|
|
794
|
-
# profile 2
|
|
795
|
-
24032: "ristretto",
|
|
796
|
-
24033: "espresso",
|
|
797
|
-
24034: "coffee",
|
|
798
|
-
24035: "long_coffee",
|
|
799
|
-
24036: "cappuccino",
|
|
800
|
-
24037: "cappuccino_italiano",
|
|
801
|
-
24038: "latte_macchiato",
|
|
802
|
-
24039: "espresso_macchiato",
|
|
803
|
-
24040: "cafe_au_lait",
|
|
804
|
-
24041: "caffe_latte",
|
|
805
|
-
24044: "flat_white",
|
|
806
|
-
24045: "very_hot_water",
|
|
807
|
-
24046: "hot_water",
|
|
808
|
-
24047: "hot_milk",
|
|
809
|
-
24048: "milk_foam",
|
|
810
|
-
24049: "black_tea",
|
|
811
|
-
24050: "herbal_tea",
|
|
812
|
-
24051: "fruit_tea",
|
|
813
|
-
24052: "green_tea",
|
|
814
|
-
24053: "white_tea",
|
|
815
|
-
24054: "japanese_tea",
|
|
816
|
-
# profile 3
|
|
817
|
-
24064: "ristretto",
|
|
818
|
-
24065: "espresso",
|
|
819
|
-
24066: "coffee",
|
|
820
|
-
24067: "long_coffee",
|
|
821
|
-
24068: "cappuccino",
|
|
822
|
-
24069: "cappuccino_italiano",
|
|
823
|
-
24070: "latte_macchiato",
|
|
824
|
-
24071: "espresso_macchiato",
|
|
825
|
-
24072: "cafe_au_lait",
|
|
826
|
-
24073: "caffe_latte",
|
|
827
|
-
24076: "flat_white",
|
|
828
|
-
24077: "very_hot_water",
|
|
829
|
-
24078: "hot_water",
|
|
830
|
-
24079: "hot_milk",
|
|
831
|
-
24080: "milk_foam",
|
|
832
|
-
24081: "black_tea",
|
|
833
|
-
24082: "herbal_tea",
|
|
834
|
-
24083: "fruit_tea",
|
|
835
|
-
24084: "green_tea",
|
|
836
|
-
24085: "white_tea",
|
|
837
|
-
24086: "japanese_tea",
|
|
838
|
-
# profile 4
|
|
839
|
-
24096: "ristretto",
|
|
840
|
-
24097: "espresso",
|
|
841
|
-
24098: "coffee",
|
|
842
|
-
24099: "long_coffee",
|
|
843
|
-
24100: "cappuccino",
|
|
844
|
-
24101: "cappuccino_italiano",
|
|
845
|
-
24102: "latte_macchiato",
|
|
846
|
-
24103: "espresso_macchiato",
|
|
847
|
-
24104: "cafe_au_lait",
|
|
848
|
-
24105: "caffe_latte",
|
|
849
|
-
24108: "flat_white",
|
|
850
|
-
24109: "very_hot_water",
|
|
851
|
-
24110: "hot_water",
|
|
852
|
-
24111: "hot_milk",
|
|
853
|
-
24112: "milk_foam",
|
|
854
|
-
24113: "black_tea",
|
|
855
|
-
24114: "herbal_tea",
|
|
856
|
-
24115: "fruit_tea",
|
|
857
|
-
24116: "green_tea",
|
|
858
|
-
24117: "white_tea",
|
|
859
|
-
24118: "japanese_tea",
|
|
860
|
-
# profile 5
|
|
861
|
-
24128: "ristretto",
|
|
862
|
-
24129: "espresso",
|
|
863
|
-
24130: "coffee",
|
|
864
|
-
24131: "long_coffee",
|
|
865
|
-
24132: "cappuccino",
|
|
866
|
-
24133: "cappuccino_italiano",
|
|
867
|
-
24134: "latte_macchiato",
|
|
868
|
-
24135: "espresso_macchiato",
|
|
869
|
-
24136: "cafe_au_lait",
|
|
870
|
-
24137: "caffe_latte",
|
|
871
|
-
24140: "flat_white",
|
|
872
|
-
24141: "very_hot_water",
|
|
873
|
-
24142: "hot_water",
|
|
874
|
-
24143: "hot_milk",
|
|
875
|
-
24144: "milk_foam",
|
|
876
|
-
24145: "black_tea",
|
|
877
|
-
24146: "herbal_tea",
|
|
878
|
-
24147: "fruit_tea",
|
|
879
|
-
24148: "green_tea",
|
|
880
|
-
24149: "white_tea",
|
|
881
|
-
24150: "japanese_tea",
|
|
733
|
+
ristretto = 24000, 24032, 24064, 24096, 24128
|
|
734
|
+
espresso = 24001, 24033, 24065, 24097, 24129
|
|
735
|
+
coffee = 24002, 24034, 24066, 24098, 24130
|
|
736
|
+
long_coffee = 24003, 24035, 24067, 24099, 24131
|
|
737
|
+
cappuccino = 24004, 24036, 24068, 24100, 24132
|
|
738
|
+
cappuccino_italiano = 24005, 24037, 24069, 24101, 24133
|
|
739
|
+
latte_macchiato = 24006, 24038, 24070, 24102, 24134
|
|
740
|
+
espresso_macchiato = 24007, 24039, 24071, 24135
|
|
741
|
+
cafe_au_lait = 24008, 24040, 24072, 24104, 24136
|
|
742
|
+
caffe_latte = 24009, 24041, 24073, 24105, 24137
|
|
743
|
+
flat_white = 24012, 24044, 24076, 24108, 24140
|
|
744
|
+
very_hot_water = 24013, 24045, 24077, 24109, 24141
|
|
745
|
+
hot_water = 24014, 24046, 24078, 24110, 24142
|
|
746
|
+
hot_milk = 24015, 24047, 24079, 24111, 24143
|
|
747
|
+
milk_foam = 24016, 24048, 24080, 24112, 24144
|
|
748
|
+
black_tea = 24017, 24049, 24081, 24113, 24145
|
|
749
|
+
herbal_tea = 24018, 24050, 24082, 24114, 24146
|
|
750
|
+
fruit_tea = 24019, 24051, 24083, 24115, 24147
|
|
751
|
+
green_tea = 24020, 24052, 24084, 24116, 24148
|
|
752
|
+
white_tea = 24021, 24053, 24085, 24117, 24149
|
|
753
|
+
japanese_tea = 24022, 29054, 24086, 24118, 24150
|
|
882
754
|
# special programs
|
|
883
|
-
24400
|
|
884
|
-
24407
|
|
755
|
+
coffee_pot = 24400
|
|
756
|
+
barista_assistant = 24407
|
|
885
757
|
# machine settings menu
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
758
|
+
appliance_settings = (
|
|
759
|
+
16016, # display brightness
|
|
760
|
+
16018, # volume
|
|
761
|
+
16019, # buttons volume
|
|
762
|
+
16020, # child lock
|
|
763
|
+
16021, # water hardness
|
|
764
|
+
16027, # welcome sound
|
|
765
|
+
16033, # connection status
|
|
766
|
+
16035, # remote control
|
|
767
|
+
16037, # remote update
|
|
768
|
+
24500, # total dispensed
|
|
769
|
+
24502, # lights appliance on
|
|
770
|
+
24503, # lights appliance off
|
|
771
|
+
24504, # turn off lights after
|
|
772
|
+
24506, # altitude
|
|
773
|
+
24513, # performance mode
|
|
774
|
+
24516, # turn off after
|
|
775
|
+
24537, # advanced mode
|
|
776
|
+
24542, # tea timer
|
|
777
|
+
24549, # total coffee dispensed
|
|
778
|
+
24550, # total tea dispensed
|
|
779
|
+
24551, # total ristretto
|
|
780
|
+
24552, # total cappuccino
|
|
781
|
+
24553, # total espresso
|
|
782
|
+
24554, # total coffee
|
|
783
|
+
24555, # total long coffee
|
|
784
|
+
24556, # total italian cappuccino
|
|
785
|
+
24557, # total latte macchiato
|
|
786
|
+
24558, # total caffe latte
|
|
787
|
+
24560, # total espresso macchiato
|
|
788
|
+
24562, # total flat white
|
|
789
|
+
24563, # total coffee with milk
|
|
790
|
+
24564, # total black tea
|
|
791
|
+
24565, # total herbal tea
|
|
792
|
+
24566, # total fruit tea
|
|
793
|
+
24567, # total green tea
|
|
794
|
+
24568, # total white tea
|
|
795
|
+
24569, # total japanese tea
|
|
796
|
+
24571, # total milk foam
|
|
797
|
+
24572, # total hot milk
|
|
798
|
+
24573, # total hot water
|
|
799
|
+
24574, # total very hot water
|
|
800
|
+
24575, # counter to descaling
|
|
801
|
+
24576, # counter to brewing unit degreasing
|
|
802
|
+
24800, # maintenance
|
|
803
|
+
24801, # profiles settings menu
|
|
804
|
+
24813, # add profile
|
|
805
|
+
)
|
|
806
|
+
appliance_rinse = 24750, 24759, 24773, 24787, 24788
|
|
807
|
+
descaling = 24751
|
|
808
|
+
brewing_unit_degrease = 24753
|
|
809
|
+
milk_pipework_rinse = 24754
|
|
810
|
+
milk_pipework_clean = 24789
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
class SteamOvenMicroProgramId(MieleEnum, missing_to_none=True):
|
|
814
|
+
"""Program Id codes for steam oven micro combo."""
|
|
815
|
+
|
|
816
|
+
no_program = 0, -1
|
|
817
|
+
steam_cooking = 8
|
|
818
|
+
microwave = 19
|
|
819
|
+
popcorn = 53
|
|
820
|
+
quick_mw = 54
|
|
821
|
+
sous_vide = 72
|
|
822
|
+
eco_steam_cooking = 75
|
|
823
|
+
rapid_steam_cooking = 77
|
|
824
|
+
descale = 326
|
|
825
|
+
menu_cooking = 330
|
|
826
|
+
reheating_with_steam = 2018
|
|
827
|
+
defrosting_with_steam = 2019
|
|
828
|
+
blanching = 2020
|
|
829
|
+
bottling = 2021
|
|
830
|
+
sterilize_crockery = 2022
|
|
831
|
+
prove_dough = 2023
|
|
832
|
+
soak = 2027
|
|
833
|
+
reheating_with_microwave = 2029
|
|
834
|
+
defrosting_with_microwave = 2030
|
|
835
|
+
artichokes_small = 2031
|
|
836
|
+
artichokes_medium = 2032
|
|
837
|
+
artichokes_large = 2033
|
|
838
|
+
eggplant_sliced = 2034
|
|
839
|
+
eggplant_diced = 2035
|
|
840
|
+
cauliflower_whole_small = 2036
|
|
841
|
+
cauliflower_whole_medium = 2039
|
|
842
|
+
cauliflower_whole_large = 2042
|
|
843
|
+
cauliflower_florets_small = 2046
|
|
844
|
+
cauliflower_florets_medium = 2048
|
|
845
|
+
cauliflower_florets_large = 2049
|
|
846
|
+
green_beans_whole = 2051
|
|
847
|
+
green_beans_cut = 2052
|
|
848
|
+
yellow_beans_whole = 2053
|
|
849
|
+
yellow_beans_cut = 2054
|
|
850
|
+
broad_beans = 2055
|
|
851
|
+
common_beans = 2056
|
|
852
|
+
runner_beans_whole = 2057
|
|
853
|
+
runner_beans_pieces = 2058
|
|
854
|
+
runner_beans_sliced = 2059
|
|
855
|
+
broccoli_whole_small = 2060
|
|
856
|
+
broccoli_whole_medium = 2061
|
|
857
|
+
broccoli_whole_large = 2062
|
|
858
|
+
broccoli_florets_small = 2064
|
|
859
|
+
broccoli_florets_medium = 2066
|
|
860
|
+
broccoli_florets_large = 2068
|
|
861
|
+
endive_halved = 2069
|
|
862
|
+
endive_quartered = 2070
|
|
863
|
+
endive_strips = 2071
|
|
864
|
+
chinese_cabbage_cut = 2072
|
|
865
|
+
peas = 2073
|
|
866
|
+
fennel_halved = 2074
|
|
867
|
+
fennel_quartered = 2075
|
|
868
|
+
fennel_strips = 2076
|
|
869
|
+
kale_cut = 2077
|
|
870
|
+
potatoes_in_the_skin_waxy_small_steam_cooking = 2080
|
|
871
|
+
potatoes_in_the_skin_waxy_small_rapid_steam_cooking = 2081
|
|
872
|
+
potatoes_in_the_skin_waxy_medium_steam_cooking = 2083
|
|
873
|
+
potatoes_in_the_skin_waxy_medium_rapid_steam_cooking = 2084
|
|
874
|
+
potatoes_in_the_skin_waxy_large_steam_cooking = 2086
|
|
875
|
+
potatoes_in_the_skin_waxy_large_rapid_steam_cooking = 2087
|
|
876
|
+
potatoes_in_the_skin_floury_small = 2088
|
|
877
|
+
potatoes_in_the_skin_floury_medium = 2091
|
|
878
|
+
potatoes_in_the_skin_floury_large = 2094
|
|
879
|
+
potatoes_in_the_skin_mainly_waxy_small = 2097
|
|
880
|
+
potatoes_in_the_skin_mainly_waxy_medium = 2100
|
|
881
|
+
potatoes_in_the_skin_mainly_waxy_large = 2103
|
|
882
|
+
potatoes_waxy_whole_small = 2106
|
|
883
|
+
potatoes_waxy_whole_medium = 2109
|
|
884
|
+
potatoes_waxy_whole_large = 2112
|
|
885
|
+
potatoes_waxy_halved = 2115
|
|
886
|
+
potatoes_waxy_quartered = 2116
|
|
887
|
+
potatoes_waxy_diced = 2117
|
|
888
|
+
potatoes_mainly_waxy_small = 2118
|
|
889
|
+
potatoes_mainly_waxy_medium = 2119
|
|
890
|
+
potatoes_mainly_waxy_large = 2120
|
|
891
|
+
potatoes_mainly_waxy_halved = 2121
|
|
892
|
+
potatoes_mainly_waxy_quartered = 2122
|
|
893
|
+
potatoes_mainly_waxy_diced = 2123
|
|
894
|
+
potatoes_floury_whole_small = 2124
|
|
895
|
+
potatoes_floury_whole_medium = 2125
|
|
896
|
+
potatoes_floury_whole_large = 2126
|
|
897
|
+
potatoes_floury_halved = 2127
|
|
898
|
+
potatoes_floury_quartered = 2128
|
|
899
|
+
potatoes_floury_diced = 2129
|
|
900
|
+
german_turnip_sliced = 2130
|
|
901
|
+
german_turnip_cut_into_batons = 2131
|
|
902
|
+
german_turnip_diced = 2132
|
|
903
|
+
pumpkin_diced = 2133
|
|
904
|
+
corn_on_the_cob = 2134
|
|
905
|
+
mangel_cut = 2135
|
|
906
|
+
bunched_carrots_whole_small = 2136
|
|
907
|
+
bunched_carrots_whole_medium = 2137
|
|
908
|
+
bunched_carrots_whole_large = 2138
|
|
909
|
+
bunched_carrots_halved = 2139
|
|
910
|
+
bunched_carrots_quartered = 2140
|
|
911
|
+
bunched_carrots_diced = 2141
|
|
912
|
+
bunched_carrots_cut_into_batons = 2142
|
|
913
|
+
bunched_carrots_sliced = 2143
|
|
914
|
+
parisian_carrots_small = 2144
|
|
915
|
+
parisian_carrots_medium = 2145
|
|
916
|
+
parisian_carrots_large = 2146
|
|
917
|
+
carrots_whole_small = 2147
|
|
918
|
+
carrots_whole_medium = 2148
|
|
919
|
+
carrots_whole_large = 2149
|
|
920
|
+
carrots_halved = 2150
|
|
921
|
+
carrots_quartered = 2151
|
|
922
|
+
carrots_diced = 2152
|
|
923
|
+
carrots_cut_into_batons = 2153
|
|
924
|
+
carrots_sliced = 2155
|
|
925
|
+
pepper_halved = 2156
|
|
926
|
+
pepper_quartered = 2157
|
|
927
|
+
pepper_strips = 2158
|
|
928
|
+
pepper_diced = 2159
|
|
929
|
+
parsnip_sliced = 2160
|
|
930
|
+
parsnip_diced = 2161
|
|
931
|
+
parsnip_cut_into_batons = 2162
|
|
932
|
+
parsley_root_sliced = 2163
|
|
933
|
+
parsley_root_diced = 2164
|
|
934
|
+
parsley_root_cut_into_batons = 2165
|
|
935
|
+
leek_pieces = 2166
|
|
936
|
+
leek_rings = 2167
|
|
937
|
+
romanesco_whole_small = 2168
|
|
938
|
+
romanesco_whole_medium = 2169
|
|
939
|
+
romanesco_whole_large = 2170
|
|
940
|
+
romanesco_florets_small = 2171
|
|
941
|
+
romanesco_florets_medium = 2172
|
|
942
|
+
romanesco_florets_large = 2173
|
|
943
|
+
brussels_sprout = 2175
|
|
944
|
+
beetroot_whole_small = 2176
|
|
945
|
+
beetroot_whole_medium = 2177
|
|
946
|
+
beetroot_whole_large = 2178
|
|
947
|
+
red_cabbage_cut = 2179
|
|
948
|
+
black_salsify_thin = 2180
|
|
949
|
+
black_salsify_medium = 2181
|
|
950
|
+
black_salsify_thick = 2182
|
|
951
|
+
celery_pieces = 2183
|
|
952
|
+
celery_sliced = 2184
|
|
953
|
+
celeriac_sliced = 2185
|
|
954
|
+
celeriac_cut_into_batons = 2186
|
|
955
|
+
celeriac_diced = 2187
|
|
956
|
+
white_asparagus_thin = 2188
|
|
957
|
+
white_asparagus_medium = 2189
|
|
958
|
+
white_asparagus_thick = 2190
|
|
959
|
+
green_asparagus_thin = 2192
|
|
960
|
+
green_asparagus_medium = 2194
|
|
961
|
+
green_asparagus_thick = 2196
|
|
962
|
+
spinach = 2197
|
|
963
|
+
pointed_cabbage_cut = 2198
|
|
964
|
+
yam_halved = 2199
|
|
965
|
+
yam_quartered = 2200
|
|
966
|
+
yam_strips = 2201
|
|
967
|
+
swede_diced = 2202
|
|
968
|
+
swede_cut_into_batons = 2203
|
|
969
|
+
teltow_turnip_sliced = 2204
|
|
970
|
+
teltow_turnip_diced = 2205
|
|
971
|
+
jerusalem_artichoke_sliced = 2206
|
|
972
|
+
jerusalem_artichoke_diced = 2207
|
|
973
|
+
green_cabbage_cut = 2208
|
|
974
|
+
savoy_cabbage_cut = 2209
|
|
975
|
+
courgette_sliced = 2210
|
|
976
|
+
courgette_diced = 2211
|
|
977
|
+
snow_pea = 2212
|
|
978
|
+
perch_whole = 2214
|
|
979
|
+
perch_fillet_2_cm = 2215
|
|
980
|
+
perch_fillet_3_cm = 2216
|
|
981
|
+
gilt_head_bream_whole = 2217
|
|
982
|
+
gilt_head_bream_fillet = 2220
|
|
983
|
+
codfish_piece = 2221, 2232
|
|
984
|
+
codfish_fillet = 2222, 2231
|
|
985
|
+
trout = 2224
|
|
986
|
+
pike_fillet = 2225
|
|
987
|
+
pike_piece = 2226
|
|
988
|
+
halibut_fillet_2_cm = 2227
|
|
989
|
+
halibut_fillet_3_cm = 2230
|
|
990
|
+
carp = 2233
|
|
991
|
+
salmon_fillet_2_cm = 2234
|
|
992
|
+
salmon_fillet_3_cm = 2235
|
|
993
|
+
salmon_steak_2_cm = 2238
|
|
994
|
+
salmon_steak_3_cm = 2239
|
|
995
|
+
salmon_piece = 2240
|
|
996
|
+
salmon_trout = 2241
|
|
997
|
+
iridescent_shark_fillet = 2244
|
|
998
|
+
red_snapper_fillet_2_cm = 2245
|
|
999
|
+
red_snapper_fillet_3_cm = 2248
|
|
1000
|
+
redfish_fillet_2_cm = 2249
|
|
1001
|
+
redfish_fillet_3_cm = 2250
|
|
1002
|
+
redfish_piece = 2251
|
|
1003
|
+
char = 2252
|
|
1004
|
+
plaice_whole_2_cm = 2253
|
|
1005
|
+
plaice_whole_3_cm = 2254
|
|
1006
|
+
plaice_whole_4_cm = 2255
|
|
1007
|
+
plaice_fillet_1_cm = 2256
|
|
1008
|
+
plaice_fillet_2_cm = 2259
|
|
1009
|
+
coalfish_fillet_2_cm = 2260
|
|
1010
|
+
coalfish_fillet_3_cm = 2261
|
|
1011
|
+
coalfish_piece = 2262
|
|
1012
|
+
sea_devil_fillet_3_cm = 2263
|
|
1013
|
+
sea_devil_fillet_4_cm = 2266
|
|
1014
|
+
common_sole_fillet_1_cm = 2267
|
|
1015
|
+
common_sole_fillet_2_cm = 2270
|
|
1016
|
+
atlantic_catfish_fillet_1_cm = 2271
|
|
1017
|
+
atlantic_catfish_fillet_2_cm = 2272
|
|
1018
|
+
turbot_fillet_2_cm = 2273
|
|
1019
|
+
turbot_fillet_3_cm = 2276
|
|
1020
|
+
tuna_steak = 2277
|
|
1021
|
+
tuna_fillet_2_cm = 2278
|
|
1022
|
+
tuna_fillet_3_cm = 2279
|
|
1023
|
+
tilapia_fillet_1_cm = 2280
|
|
1024
|
+
tilapia_fillet_2_cm = 2281
|
|
1025
|
+
nile_perch_fillet_2_cm = 2282
|
|
1026
|
+
nile_perch_fillet_3_cm = 2283
|
|
1027
|
+
zander_fillet = 2285
|
|
1028
|
+
soup_hen = 2288
|
|
1029
|
+
poularde_whole = 2291
|
|
1030
|
+
poularde_breast = 2292
|
|
1031
|
+
turkey_breast = 2294
|
|
1032
|
+
chicken_tikka_masala_with_rice = 2302
|
|
1033
|
+
veal_fillet_whole = 2312
|
|
1034
|
+
veal_fillet_medaillons_1_cm = 2313
|
|
1035
|
+
veal_fillet_medaillons_2_cm = 2315
|
|
1036
|
+
veal_fillet_medaillons_3_cm = 2317
|
|
1037
|
+
goulash_soup = 2324
|
|
1038
|
+
dutch_hash = 2327
|
|
1039
|
+
stuffed_cabbage = 2328
|
|
1040
|
+
beef_tenderloin = 2330
|
|
1041
|
+
beef_tenderloin_medaillons_1_cm_steam_cooking = 2333
|
|
1042
|
+
beef_tenderloin_medaillons_2_cm_steam_cooking = 2334
|
|
1043
|
+
beef_tenderloin_medaillons_3_cm_steam_cooking = 2335
|
|
1044
|
+
silverside_5_cm = 2339
|
|
1045
|
+
silverside_7_5_cm = 2342
|
|
1046
|
+
silverside_10_cm = 2345
|
|
1047
|
+
meat_for_soup_back_or_top_rib = 2348
|
|
1048
|
+
meat_for_soup_leg_steak = 2349
|
|
1049
|
+
meat_for_soup_brisket = 2350
|
|
1050
|
+
viennese_silverside = 2353
|
|
1051
|
+
whole_ham_steam_cooking = 2354
|
|
1052
|
+
whole_ham_reheating = 2355
|
|
1053
|
+
kasseler_piece = 2359
|
|
1054
|
+
kasseler_slice = 2361
|
|
1055
|
+
knuckle_of_pork_fresh = 2363
|
|
1056
|
+
knuckle_of_pork_cured = 2364
|
|
1057
|
+
pork_tenderloin_medaillons_3_cm = 2367
|
|
1058
|
+
pork_tenderloin_medaillons_4_cm = 2368
|
|
1059
|
+
pork_tenderloin_medaillons_5_cm = 2369
|
|
1060
|
+
pumpkin_soup = 2429
|
|
1061
|
+
meat_with_rice = 2430
|
|
1062
|
+
beef_casserole = 2431
|
|
1063
|
+
pumpkin_risotto = 2450
|
|
1064
|
+
risotto = 2451
|
|
1065
|
+
rice_pudding_steam_cooking = 2453
|
|
1066
|
+
rice_pudding_rapid_steam_cooking = 2454
|
|
1067
|
+
amaranth = 2461
|
|
1068
|
+
bulgur = 2462
|
|
1069
|
+
spelt_whole = 2463
|
|
1070
|
+
spelt_cracked = 2464
|
|
1071
|
+
green_spelt_whole = 2465
|
|
1072
|
+
green_spelt_cracked = 2466
|
|
1073
|
+
oats_whole = 2467
|
|
1074
|
+
oats_cracked = 2468
|
|
1075
|
+
millet = 2469
|
|
1076
|
+
quinoa = 2470
|
|
1077
|
+
polenta_swiss_style_fine_polenta = 2471
|
|
1078
|
+
polenta_swiss_style_medium_polenta = 2472
|
|
1079
|
+
polenta_swiss_style_coarse_polenta = 2473
|
|
1080
|
+
polenta = 2474
|
|
1081
|
+
rye_whole = 2475
|
|
1082
|
+
rye_cracked = 2476
|
|
1083
|
+
wheat_whole = 2477
|
|
1084
|
+
wheat_cracked = 2478
|
|
1085
|
+
gnocchi_fresh = 2480
|
|
1086
|
+
yeast_dumplings_fresh = 2481
|
|
1087
|
+
potato_dumplings_raw_boil_in_bag = 2482
|
|
1088
|
+
potato_dumplings_raw_deep_frozen = 2483
|
|
1089
|
+
potato_dumplings_half_half_boil_in_bag = 2484
|
|
1090
|
+
potato_dumplings_half_half_deep_frozen = 2485
|
|
1091
|
+
bread_dumplings_boil_in_the_bag = 2486
|
|
1092
|
+
bread_dumplings_fresh = 2487
|
|
1093
|
+
ravioli_fresh = 2488
|
|
1094
|
+
spaetzle_fresh = 2489
|
|
1095
|
+
tagliatelli_fresh = 2490
|
|
1096
|
+
schupfnudeln_potato_noodels = 2491
|
|
1097
|
+
tortellini_fresh = 2492
|
|
1098
|
+
red_lentils = 2493
|
|
1099
|
+
brown_lentils = 2494
|
|
1100
|
+
beluga_lentils = 2495
|
|
1101
|
+
green_split_peas = 2496
|
|
1102
|
+
yellow_split_peas = 2497
|
|
1103
|
+
chick_peas = 2498
|
|
1104
|
+
white_beans = 2499
|
|
1105
|
+
pinto_beans = 2500
|
|
1106
|
+
red_beans = 2501
|
|
1107
|
+
black_beans = 2502
|
|
1108
|
+
hens_eggs_size_s_soft = 2503
|
|
1109
|
+
hens_eggs_size_s_medium = 2504
|
|
1110
|
+
hens_eggs_size_s_hard = 2505
|
|
1111
|
+
hens_eggs_size_m_soft = 2506
|
|
1112
|
+
hens_eggs_size_m_medium = 2507
|
|
1113
|
+
hens_eggs_size_m_hard = 2508
|
|
1114
|
+
hens_eggs_size_l_soft = 2509
|
|
1115
|
+
hens_eggs_size_l_medium = 2510
|
|
1116
|
+
hens_eggs_size_l_hard = 2511
|
|
1117
|
+
hens_eggs_size_xl_soft = 2512
|
|
1118
|
+
hens_eggs_size_xl_medium = 2513
|
|
1119
|
+
hens_eggs_size_xl_hard = 2514
|
|
1120
|
+
swiss_toffee_cream_100_ml = 2515
|
|
1121
|
+
swiss_toffee_cream_150_ml = 2516
|
|
1122
|
+
toffee_date_dessert_several_small = 2518
|
|
1123
|
+
cheesecake_several_small = 2520
|
|
1124
|
+
cheesecake_one_large = 2521
|
|
1125
|
+
christmas_pudding_cooking = 2522
|
|
1126
|
+
christmas_pudding_heating = 2523
|
|
1127
|
+
treacle_sponge_pudding_several_small = 2524
|
|
1128
|
+
treacle_sponge_pudding_one_large = 2525
|
|
1129
|
+
sweet_cheese_dumplings = 2526
|
|
1130
|
+
apples_whole = 2527
|
|
1131
|
+
apples_halved = 2528
|
|
1132
|
+
apples_quartered = 2529
|
|
1133
|
+
apples_sliced = 2530
|
|
1134
|
+
apples_diced = 2531
|
|
1135
|
+
apricots_halved_steam_cooking = 2532
|
|
1136
|
+
apricots_halved_skinning = 2533
|
|
1137
|
+
apricots_quartered = 2534
|
|
1138
|
+
apricots_wedges = 2535
|
|
1139
|
+
pears_halved = 2536
|
|
1140
|
+
pears_quartered = 2537
|
|
1141
|
+
pears_wedges = 2538
|
|
1142
|
+
sweet_cherries = 2539
|
|
1143
|
+
sour_cherries = 2540
|
|
1144
|
+
pears_to_cook_small_whole = 2541
|
|
1145
|
+
pears_to_cook_small_halved = 2542
|
|
1146
|
+
pears_to_cook_small_quartered = 2543
|
|
1147
|
+
pears_to_cook_medium_whole = 2544
|
|
1148
|
+
pears_to_cook_medium_halved = 2545
|
|
1149
|
+
pears_to_cook_medium_quartered = 2546
|
|
1150
|
+
pears_to_cook_large_whole = 2547
|
|
1151
|
+
pears_to_cook_large_halved = 2548
|
|
1152
|
+
pears_to_cook_large_quartered = 2549
|
|
1153
|
+
mirabelles = 2550
|
|
1154
|
+
nectarines_peaches_halved_steam_cooking = 2551
|
|
1155
|
+
nectarines_peaches_halved_skinning = 2552
|
|
1156
|
+
nectarines_peaches_quartered = 2553
|
|
1157
|
+
nectarines_peaches_wedges = 2554
|
|
1158
|
+
plums_whole = 2555
|
|
1159
|
+
plums_halved = 2556
|
|
1160
|
+
cranberries = 2557
|
|
1161
|
+
quinces_diced = 2558
|
|
1162
|
+
greenage_plums = 2559
|
|
1163
|
+
rhubarb_chunks = 2560
|
|
1164
|
+
gooseberries = 2561
|
|
1165
|
+
mushrooms_whole = 2562
|
|
1166
|
+
mushrooms_halved = 2563
|
|
1167
|
+
mushrooms_sliced = 2564
|
|
1168
|
+
mushrooms_quartered = 2565
|
|
1169
|
+
mushrooms_diced = 2566
|
|
1170
|
+
cep = 2567
|
|
1171
|
+
chanterelle = 2568
|
|
1172
|
+
oyster_mushroom_whole = 2569
|
|
1173
|
+
oyster_mushroom_strips = 2570
|
|
1174
|
+
oyster_mushroom_diced = 2571
|
|
1175
|
+
saucisson = 2572
|
|
1176
|
+
bruehwurst_sausages = 2573
|
|
1177
|
+
bologna_sausage = 2574
|
|
1178
|
+
veal_sausages = 2575
|
|
1179
|
+
crevettes = 2577
|
|
1180
|
+
prawns = 2579
|
|
1181
|
+
king_prawns = 2581
|
|
1182
|
+
small_shrimps = 2583
|
|
1183
|
+
large_shrimps = 2585
|
|
1184
|
+
mussels = 2587
|
|
1185
|
+
scallops = 2589
|
|
1186
|
+
venus_clams = 2591
|
|
1187
|
+
goose_barnacles = 2592
|
|
1188
|
+
cockles = 2593
|
|
1189
|
+
razor_clams_small = 2594
|
|
1190
|
+
razor_clams_medium = 2595
|
|
1191
|
+
razor_clams_large = 2596
|
|
1192
|
+
mussels_in_sauce = 2597
|
|
1193
|
+
bottling_soft = 2598
|
|
1194
|
+
bottling_medium = 2599
|
|
1195
|
+
bottling_hard = 2600
|
|
1196
|
+
melt_chocolate = 2601
|
|
1197
|
+
dissolve_gelatine = 2602
|
|
1198
|
+
sweat_onions = 2603
|
|
1199
|
+
cook_bacon = 2604
|
|
1200
|
+
heating_damp_flannels = 2605
|
|
1201
|
+
decrystallise_honey = 2606
|
|
1202
|
+
make_yoghurt = 2607
|
|
1203
|
+
toffee_date_dessert_one_large = 2687
|
|
1204
|
+
beef_tenderloin_medaillons_1_cm_low_temperature_cooking = 2694
|
|
1205
|
+
beef_tenderloin_medaillons_2_cm_low_temperature_cooking = 2695
|
|
1206
|
+
beef_tenderloin_medaillons_3_cm_low_temperature_cooking = 2696
|
|
1207
|
+
wild_rice = 3373
|
|
1208
|
+
wholegrain_rice = 3376
|
|
1209
|
+
parboiled_rice_steam_cooking = 3380
|
|
1210
|
+
parboiled_rice_rapid_steam_cooking = 3381
|
|
1211
|
+
basmati_rice_steam_cooking = 3383
|
|
1212
|
+
basmati_rice_rapid_steam_cooking = 3384
|
|
1213
|
+
jasmine_rice_steam_cooking = 3386
|
|
1214
|
+
jasmine_rice_rapid_steam_cooking = 3387
|
|
1215
|
+
huanghuanian_steam_cooking = 3389
|
|
1216
|
+
huanghuanian_rapid_steam_cooking = 3390
|
|
1217
|
+
simiao_steam_cooking = 3392
|
|
1218
|
+
simiao_rapid_steam_cooking = 3393
|
|
1219
|
+
long_grain_rice_general_steam_cooking = 3395
|
|
1220
|
+
long_grain_rice_general_rapid_steam_cooking = 3396
|
|
1221
|
+
chongming_steam_cooking = 3398
|
|
1222
|
+
chongming_rapid_steam_cooking = 3399
|
|
1223
|
+
wuchang_steam_cooking = 3401
|
|
1224
|
+
wuchang_rapid_steam_cooking = 3402
|
|
1225
|
+
uonumma_koshihikari_steam_cooking = 3404
|
|
1226
|
+
uonumma_koshihikari_rapid_steam_cooking = 3405
|
|
1227
|
+
sheyang_steam_cooking = 3407
|
|
1228
|
+
sheyang_rapid_steam_cooking = 3408
|
|
1229
|
+
round_grain_rice_general_steam_cooking = 3410
|
|
1230
|
+
round_grain_rice_general_rapid_steam_cooking = 3411
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
PROGRAM_IDS: dict[int, type[MieleEnum]] = {
|
|
1234
|
+
MieleAppliance.WASHING_MACHINE: WashingMachineProgramId,
|
|
1235
|
+
MieleAppliance.TUMBLE_DRYER: TumbleDryerProgramId,
|
|
1236
|
+
MieleAppliance.DISHWASHER: DishWasherProgramId,
|
|
1237
|
+
MieleAppliance.DISH_WARMER: DishWarmerProgramId,
|
|
1238
|
+
MieleAppliance.OVEN: OvenProgramId,
|
|
1239
|
+
MieleAppliance.OVEN_MICROWAVE: OvenProgramId,
|
|
1240
|
+
MieleAppliance.STEAM_OVEN_MK2: OvenProgramId,
|
|
1241
|
+
MieleAppliance.STEAM_OVEN: OvenProgramId,
|
|
1242
|
+
MieleAppliance.STEAM_OVEN_COMBI: OvenProgramId,
|
|
1243
|
+
MieleAppliance.STEAM_OVEN_MICRO: SteamOvenMicroProgramId,
|
|
1244
|
+
MieleAppliance.WASHER_DRYER: WashingMachineProgramId,
|
|
1245
|
+
MieleAppliance.ROBOT_VACUUM_CLEANER: RobotVacuumCleanerProgramId,
|
|
1246
|
+
MieleAppliance.COFFEE_SYSTEM: CoffeeSystemProgramId,
|
|
934
1247
|
}
|
|
935
1248
|
|
|
936
1249
|
COFFEE_SYSTEM_PROFILE: dict[range, str] = {
|
|
@@ -941,461 +1254,6 @@ COFFEE_SYSTEM_PROFILE: dict[range, str] = {
|
|
|
941
1254
|
range(24128, 24160): "profile_5",
|
|
942
1255
|
}
|
|
943
1256
|
|
|
944
|
-
STEAM_OVEN_MICRO_PROGRAM_ID: dict[int, str] = {
|
|
945
|
-
8: "steam_cooking",
|
|
946
|
-
19: "microwave",
|
|
947
|
-
53: "popcorn",
|
|
948
|
-
54: "quick_mw",
|
|
949
|
-
72: "sous_vide",
|
|
950
|
-
75: "eco_steam_cooking",
|
|
951
|
-
77: "rapid_steam_cooking",
|
|
952
|
-
97: "custom_program_1",
|
|
953
|
-
98: "custom_program_2",
|
|
954
|
-
99: "custom_program_3",
|
|
955
|
-
100: "custom_program_4",
|
|
956
|
-
101: "custom_program_5",
|
|
957
|
-
102: "custom_program_6",
|
|
958
|
-
103: "custom_program_7",
|
|
959
|
-
104: "custom_program_8",
|
|
960
|
-
105: "custom_program_9",
|
|
961
|
-
106: "custom_program_10",
|
|
962
|
-
107: "custom_program_11",
|
|
963
|
-
108: "custom_program_12",
|
|
964
|
-
109: "custom_program_13",
|
|
965
|
-
110: "custom_program_14",
|
|
966
|
-
111: "custom_program_15",
|
|
967
|
-
112: "custom_program_16",
|
|
968
|
-
113: "custom_program_17",
|
|
969
|
-
114: "custom_program_18",
|
|
970
|
-
115: "custom_program_19",
|
|
971
|
-
116: "custom_program_20",
|
|
972
|
-
326: "descale",
|
|
973
|
-
330: "menu_cooking",
|
|
974
|
-
2018: "reheating_with_steam",
|
|
975
|
-
2019: "defrosting_with_steam",
|
|
976
|
-
2020: "blanching",
|
|
977
|
-
2021: "bottling",
|
|
978
|
-
2022: "sterilize_crockery",
|
|
979
|
-
2023: "prove_dough",
|
|
980
|
-
2027: "soak",
|
|
981
|
-
2029: "reheating_with_microwave",
|
|
982
|
-
2030: "defrosting_with_microwave",
|
|
983
|
-
2031: "artichokes_small",
|
|
984
|
-
2032: "artichokes_medium",
|
|
985
|
-
2033: "artichokes_large",
|
|
986
|
-
2034: "eggplant_sliced",
|
|
987
|
-
2035: "eggplant_diced",
|
|
988
|
-
2036: "cauliflower_whole_small",
|
|
989
|
-
2039: "cauliflower_whole_medium",
|
|
990
|
-
2042: "cauliflower_whole_large",
|
|
991
|
-
2046: "cauliflower_florets_small",
|
|
992
|
-
2048: "cauliflower_florets_medium",
|
|
993
|
-
2049: "cauliflower_florets_large",
|
|
994
|
-
2051: "green_beans_whole",
|
|
995
|
-
2052: "green_beans_cut",
|
|
996
|
-
2053: "yellow_beans_whole",
|
|
997
|
-
2054: "yellow_beans_cut",
|
|
998
|
-
2055: "broad_beans",
|
|
999
|
-
2056: "common_beans",
|
|
1000
|
-
2057: "runner_beans_whole",
|
|
1001
|
-
2058: "runner_beans_pieces",
|
|
1002
|
-
2059: "runner_beans_sliced",
|
|
1003
|
-
2060: "broccoli_whole_small",
|
|
1004
|
-
2061: "broccoli_whole_medium",
|
|
1005
|
-
2062: "broccoli_whole_large",
|
|
1006
|
-
2064: "broccoli_florets_small",
|
|
1007
|
-
2066: "broccoli_florets_medium",
|
|
1008
|
-
2068: "broccoli_florets_large",
|
|
1009
|
-
2069: "endive_halved",
|
|
1010
|
-
2070: "endive_quartered",
|
|
1011
|
-
2071: "endive_strips",
|
|
1012
|
-
2072: "chinese_cabbage_cut",
|
|
1013
|
-
2073: "peas",
|
|
1014
|
-
2074: "fennel_halved",
|
|
1015
|
-
2075: "fennel_quartered",
|
|
1016
|
-
2076: "fennel_strips",
|
|
1017
|
-
2077: "kale_cut",
|
|
1018
|
-
2080: "potatoes_in_the_skin_waxy_small_steam_cooking",
|
|
1019
|
-
2081: "potatoes_in_the_skin_waxy_small_rapid_steam_cooking",
|
|
1020
|
-
2083: "potatoes_in_the_skin_waxy_medium_steam_cooking",
|
|
1021
|
-
2084: "potatoes_in_the_skin_waxy_medium_rapid_steam_cooking",
|
|
1022
|
-
2086: "potatoes_in_the_skin_waxy_large_steam_cooking",
|
|
1023
|
-
2087: "potatoes_in_the_skin_waxy_large_rapid_steam_cooking",
|
|
1024
|
-
2088: "potatoes_in_the_skin_floury_small",
|
|
1025
|
-
2091: "potatoes_in_the_skin_floury_medium",
|
|
1026
|
-
2094: "potatoes_in_the_skin_floury_large",
|
|
1027
|
-
2097: "potatoes_in_the_skin_mainly_waxy_small",
|
|
1028
|
-
2100: "potatoes_in_the_skin_mainly_waxy_medium",
|
|
1029
|
-
2103: "potatoes_in_the_skin_mainly_waxy_large",
|
|
1030
|
-
2106: "potatoes_waxy_whole_small",
|
|
1031
|
-
2109: "potatoes_waxy_whole_medium",
|
|
1032
|
-
2112: "potatoes_waxy_whole_large",
|
|
1033
|
-
2115: "potatoes_waxy_halved",
|
|
1034
|
-
2116: "potatoes_waxy_quartered",
|
|
1035
|
-
2117: "potatoes_waxy_diced",
|
|
1036
|
-
2118: "potatoes_mainly_waxy_small",
|
|
1037
|
-
2119: "potatoes_mainly_waxy_medium",
|
|
1038
|
-
2120: "potatoes_mainly_waxy_large",
|
|
1039
|
-
2121: "potatoes_mainly_waxy_halved",
|
|
1040
|
-
2122: "potatoes_mainly_waxy_quartered",
|
|
1041
|
-
2123: "potatoes_mainly_waxy_diced",
|
|
1042
|
-
2124: "potatoes_floury_whole_small",
|
|
1043
|
-
2125: "potatoes_floury_whole_medium",
|
|
1044
|
-
2126: "potatoes_floury_whole_large",
|
|
1045
|
-
2127: "potatoes_floury_halved",
|
|
1046
|
-
2128: "potatoes_floury_quartered",
|
|
1047
|
-
2129: "potatoes_floury_diced",
|
|
1048
|
-
2130: "german_turnip_sliced",
|
|
1049
|
-
2131: "german_turnip_cut_into_batons",
|
|
1050
|
-
2132: "german_turnip_diced",
|
|
1051
|
-
2133: "pumpkin_diced",
|
|
1052
|
-
2134: "corn_on_the_cob",
|
|
1053
|
-
2135: "mangel_cut",
|
|
1054
|
-
2136: "bunched_carrots_whole_small",
|
|
1055
|
-
2137: "bunched_carrots_whole_medium",
|
|
1056
|
-
2138: "bunched_carrots_whole_large",
|
|
1057
|
-
2139: "bunched_carrots_halved",
|
|
1058
|
-
2140: "bunched_carrots_quartered",
|
|
1059
|
-
2141: "bunched_carrots_diced",
|
|
1060
|
-
2142: "bunched_carrots_cut_into_batons",
|
|
1061
|
-
2143: "bunched_carrots_sliced",
|
|
1062
|
-
2144: "parisian_carrots_small",
|
|
1063
|
-
2145: "parisian_carrots_medium",
|
|
1064
|
-
2146: "parisian_carrots_large",
|
|
1065
|
-
2147: "carrots_whole_small",
|
|
1066
|
-
2148: "carrots_whole_medium",
|
|
1067
|
-
2149: "carrots_whole_large",
|
|
1068
|
-
2150: "carrots_halved",
|
|
1069
|
-
2151: "carrots_quartered",
|
|
1070
|
-
2152: "carrots_diced",
|
|
1071
|
-
2153: "carrots_cut_into_batons",
|
|
1072
|
-
2155: "carrots_sliced",
|
|
1073
|
-
2156: "pepper_halved",
|
|
1074
|
-
2157: "pepper_quartered",
|
|
1075
|
-
2158: "pepper_strips",
|
|
1076
|
-
2159: "pepper_diced",
|
|
1077
|
-
2160: "parsnip_sliced",
|
|
1078
|
-
2161: "parsnip_diced",
|
|
1079
|
-
2162: "parsnip_cut_into_batons",
|
|
1080
|
-
2163: "parsley_root_sliced",
|
|
1081
|
-
2164: "parsley_root_diced",
|
|
1082
|
-
2165: "parsley_root_cut_into_batons",
|
|
1083
|
-
2166: "leek_pieces",
|
|
1084
|
-
2167: "leek_rings",
|
|
1085
|
-
2168: "romanesco_whole_small",
|
|
1086
|
-
2169: "romanesco_whole_medium",
|
|
1087
|
-
2170: "romanesco_whole_large",
|
|
1088
|
-
2171: "romanesco_florets_small",
|
|
1089
|
-
2172: "romanesco_florets_medium",
|
|
1090
|
-
2173: "romanesco_florets_large",
|
|
1091
|
-
2175: "brussels_sprout",
|
|
1092
|
-
2176: "beetroot_whole_small",
|
|
1093
|
-
2177: "beetroot_whole_medium",
|
|
1094
|
-
2178: "beetroot_whole_large",
|
|
1095
|
-
2179: "red_cabbage_cut",
|
|
1096
|
-
2180: "black_salsify_thin",
|
|
1097
|
-
2181: "black_salsify_medium",
|
|
1098
|
-
2182: "black_salsify_thick",
|
|
1099
|
-
2183: "celery_pieces",
|
|
1100
|
-
2184: "celery_sliced",
|
|
1101
|
-
2185: "celeriac_sliced",
|
|
1102
|
-
2186: "celeriac_cut_into_batons",
|
|
1103
|
-
2187: "celeriac_diced",
|
|
1104
|
-
2188: "white_asparagus_thin",
|
|
1105
|
-
2189: "white_asparagus_medium",
|
|
1106
|
-
2190: "white_asparagus_thick",
|
|
1107
|
-
2192: "green_asparagus_thin",
|
|
1108
|
-
2194: "green_asparagus_medium",
|
|
1109
|
-
2196: "green_asparagus_thick",
|
|
1110
|
-
2197: "spinach",
|
|
1111
|
-
2198: "pointed_cabbage_cut",
|
|
1112
|
-
2199: "yam_halved",
|
|
1113
|
-
2200: "yam_quartered",
|
|
1114
|
-
2201: "yam_strips",
|
|
1115
|
-
2202: "swede_diced",
|
|
1116
|
-
2203: "swede_cut_into_batons",
|
|
1117
|
-
2204: "teltow_turnip_sliced",
|
|
1118
|
-
2205: "teltow_turnip_diced",
|
|
1119
|
-
2206: "jerusalem_artichoke_sliced",
|
|
1120
|
-
2207: "jerusalem_artichoke_diced",
|
|
1121
|
-
2208: "green_cabbage_cut",
|
|
1122
|
-
2209: "savoy_cabbage_cut",
|
|
1123
|
-
2210: "courgette_sliced",
|
|
1124
|
-
2211: "courgette_diced",
|
|
1125
|
-
2212: "snow_pea",
|
|
1126
|
-
2214: "perch_whole",
|
|
1127
|
-
2215: "perch_fillet_2_cm",
|
|
1128
|
-
2216: "perch_fillet_3_cm",
|
|
1129
|
-
2217: "gilt_head_bream_whole",
|
|
1130
|
-
2220: "gilt_head_bream_fillet",
|
|
1131
|
-
2221: "codfish_piece",
|
|
1132
|
-
2222: "codfish_fillet",
|
|
1133
|
-
2224: "trout",
|
|
1134
|
-
2225: "pike_fillet",
|
|
1135
|
-
2226: "pike_piece",
|
|
1136
|
-
2227: "halibut_fillet_2_cm",
|
|
1137
|
-
2230: "halibut_fillet_3_cm",
|
|
1138
|
-
2231: "codfish_fillet",
|
|
1139
|
-
2232: "codfish_piece",
|
|
1140
|
-
2233: "carp",
|
|
1141
|
-
2234: "salmon_fillet_2_cm",
|
|
1142
|
-
2235: "salmon_fillet_3_cm",
|
|
1143
|
-
2238: "salmon_steak_2_cm",
|
|
1144
|
-
2239: "salmon_steak_3_cm",
|
|
1145
|
-
2240: "salmon_piece",
|
|
1146
|
-
2241: "salmon_trout",
|
|
1147
|
-
2244: "iridescent_shark_fillet",
|
|
1148
|
-
2245: "red_snapper_fillet_2_cm",
|
|
1149
|
-
2248: "red_snapper_fillet_3_cm",
|
|
1150
|
-
2249: "redfish_fillet_2_cm",
|
|
1151
|
-
2250: "redfish_fillet_3_cm",
|
|
1152
|
-
2251: "redfish_piece",
|
|
1153
|
-
2252: "char",
|
|
1154
|
-
2253: "plaice_whole_2_cm",
|
|
1155
|
-
2254: "plaice_whole_3_cm",
|
|
1156
|
-
2255: "plaice_whole_4_cm",
|
|
1157
|
-
2256: "plaice_fillet_1_cm",
|
|
1158
|
-
2259: "plaice_fillet_2_cm",
|
|
1159
|
-
2260: "coalfish_fillet_2_cm",
|
|
1160
|
-
2261: "coalfish_fillet_3_cm",
|
|
1161
|
-
2262: "coalfish_piece",
|
|
1162
|
-
2263: "sea_devil_fillet_3_cm",
|
|
1163
|
-
2266: "sea_devil_fillet_4_cm",
|
|
1164
|
-
2267: "common_sole_fillet_1_cm",
|
|
1165
|
-
2270: "common_sole_fillet_2_cm",
|
|
1166
|
-
2271: "atlantic_catfish_fillet_1_cm",
|
|
1167
|
-
2272: "atlantic_catfish_fillet_2_cm",
|
|
1168
|
-
2273: "turbot_fillet_2_cm",
|
|
1169
|
-
2276: "turbot_fillet_3_cm",
|
|
1170
|
-
2277: "tuna_steak",
|
|
1171
|
-
2278: "tuna_fillet_2_cm",
|
|
1172
|
-
2279: "tuna_fillet_3_cm",
|
|
1173
|
-
2280: "tilapia_fillet_1_cm",
|
|
1174
|
-
2281: "tilapia_fillet_2_cm",
|
|
1175
|
-
2282: "nile_perch_fillet_2_cm",
|
|
1176
|
-
2283: "nile_perch_fillet_3_cm",
|
|
1177
|
-
2285: "zander_fillet",
|
|
1178
|
-
2288: "soup_hen",
|
|
1179
|
-
2291: "poularde_whole",
|
|
1180
|
-
2292: "poularde_breast",
|
|
1181
|
-
2294: "turkey_breast",
|
|
1182
|
-
2302: "chicken_tikka_masala_with_rice",
|
|
1183
|
-
2312: "veal_fillet_whole",
|
|
1184
|
-
2313: "veal_fillet_medaillons_1_cm",
|
|
1185
|
-
2315: "veal_fillet_medaillons_2_cm",
|
|
1186
|
-
2317: "veal_fillet_medaillons_3_cm",
|
|
1187
|
-
2324: "goulash_soup",
|
|
1188
|
-
2327: "dutch_hash",
|
|
1189
|
-
2328: "stuffed_cabbage",
|
|
1190
|
-
2330: "beef_tenderloin",
|
|
1191
|
-
2333: "beef_tenderloin_medaillons_1_cm_steam_cooking",
|
|
1192
|
-
2334: "beef_tenderloin_medaillons_2_cm_steam_cooking",
|
|
1193
|
-
2335: "beef_tenderloin_medaillons_3_cm_steam_cooking",
|
|
1194
|
-
2339: "silverside_5_cm",
|
|
1195
|
-
2342: "silverside_7_5_cm",
|
|
1196
|
-
2345: "silverside_10_cm",
|
|
1197
|
-
2348: "meat_for_soup_back_or_top_rib",
|
|
1198
|
-
2349: "meat_for_soup_leg_steak",
|
|
1199
|
-
2350: "meat_for_soup_brisket",
|
|
1200
|
-
2353: "viennese_silverside",
|
|
1201
|
-
2354: "whole_ham_steam_cooking",
|
|
1202
|
-
2355: "whole_ham_reheating",
|
|
1203
|
-
2359: "kasseler_piece",
|
|
1204
|
-
2361: "kasseler_slice",
|
|
1205
|
-
2363: "knuckle_of_pork_fresh",
|
|
1206
|
-
2364: "knuckle_of_pork_cured",
|
|
1207
|
-
2367: "pork_tenderloin_medaillons_3_cm",
|
|
1208
|
-
2368: "pork_tenderloin_medaillons_4_cm",
|
|
1209
|
-
2369: "pork_tenderloin_medaillons_5_cm",
|
|
1210
|
-
2429: "pumpkin_soup",
|
|
1211
|
-
2430: "meat_with_rice",
|
|
1212
|
-
2431: "beef_casserole",
|
|
1213
|
-
2450: "pumpkin_risotto",
|
|
1214
|
-
2451: "risotto",
|
|
1215
|
-
2453: "rice_pudding_steam_cooking",
|
|
1216
|
-
2454: "rice_pudding_rapid_steam_cooking",
|
|
1217
|
-
2461: "amaranth",
|
|
1218
|
-
2462: "bulgur",
|
|
1219
|
-
2463: "spelt_whole",
|
|
1220
|
-
2464: "spelt_cracked",
|
|
1221
|
-
2465: "green_spelt_whole",
|
|
1222
|
-
2466: "green_spelt_cracked",
|
|
1223
|
-
2467: "oats_whole",
|
|
1224
|
-
2468: "oats_cracked",
|
|
1225
|
-
2469: "millet",
|
|
1226
|
-
2470: "quinoa",
|
|
1227
|
-
2471: "polenta_swiss_style_fine_polenta",
|
|
1228
|
-
2472: "polenta_swiss_style_medium_polenta",
|
|
1229
|
-
2473: "polenta_swiss_style_coarse_polenta",
|
|
1230
|
-
2474: "polenta",
|
|
1231
|
-
2475: "rye_whole",
|
|
1232
|
-
2476: "rye_cracked",
|
|
1233
|
-
2477: "wheat_whole",
|
|
1234
|
-
2478: "wheat_cracked",
|
|
1235
|
-
2480: "gnocchi_fresh",
|
|
1236
|
-
2481: "yeast_dumplings_fresh",
|
|
1237
|
-
2482: "potato_dumplings_raw_boil_in_bag",
|
|
1238
|
-
2483: "potato_dumplings_raw_deep_frozen",
|
|
1239
|
-
2484: "potato_dumplings_half_half_boil_in_bag",
|
|
1240
|
-
2485: "potato_dumplings_half_half_deep_frozen",
|
|
1241
|
-
2486: "bread_dumplings_boil_in_the_bag",
|
|
1242
|
-
2487: "bread_dumplings_fresh",
|
|
1243
|
-
2488: "ravioli_fresh",
|
|
1244
|
-
2489: "spaetzle_fresh",
|
|
1245
|
-
2490: "tagliatelli_fresh",
|
|
1246
|
-
2491: "schupfnudeln_potato_noodels",
|
|
1247
|
-
2492: "tortellini_fresh",
|
|
1248
|
-
2493: "red_lentils",
|
|
1249
|
-
2494: "brown_lentils",
|
|
1250
|
-
2495: "beluga_lentils",
|
|
1251
|
-
2496: "green_split_peas",
|
|
1252
|
-
2497: "yellow_split_peas",
|
|
1253
|
-
2498: "chick_peas",
|
|
1254
|
-
2499: "white_beans",
|
|
1255
|
-
2500: "pinto_beans",
|
|
1256
|
-
2501: "red_beans",
|
|
1257
|
-
2502: "black_beans",
|
|
1258
|
-
2503: "hens_eggs_size_s_soft",
|
|
1259
|
-
2504: "hens_eggs_size_s_medium",
|
|
1260
|
-
2505: "hens_eggs_size_s_hard",
|
|
1261
|
-
2506: "hens_eggs_size_m_soft",
|
|
1262
|
-
2507: "hens_eggs_size_m_medium",
|
|
1263
|
-
2508: "hens_eggs_size_m_hard",
|
|
1264
|
-
2509: "hens_eggs_size_l_soft",
|
|
1265
|
-
2510: "hens_eggs_size_l_medium",
|
|
1266
|
-
2511: "hens_eggs_size_l_hard",
|
|
1267
|
-
2512: "hens_eggs_size_xl_soft",
|
|
1268
|
-
2513: "hens_eggs_size_xl_medium",
|
|
1269
|
-
2514: "hens_eggs_size_xl_hard",
|
|
1270
|
-
2515: "swiss_toffee_cream_100_ml",
|
|
1271
|
-
2516: "swiss_toffee_cream_150_ml",
|
|
1272
|
-
2518: "toffee_date_dessert_several_small",
|
|
1273
|
-
2520: "cheesecake_several_small",
|
|
1274
|
-
2521: "cheesecake_one_large",
|
|
1275
|
-
2522: "christmas_pudding_cooking",
|
|
1276
|
-
2523: "christmas_pudding_heating",
|
|
1277
|
-
2524: "treacle_sponge_pudding_several_small",
|
|
1278
|
-
2525: "treacle_sponge_pudding_one_large",
|
|
1279
|
-
2526: "sweet_cheese_dumplings",
|
|
1280
|
-
2527: "apples_whole",
|
|
1281
|
-
2528: "apples_halved",
|
|
1282
|
-
2529: "apples_quartered",
|
|
1283
|
-
2530: "apples_sliced",
|
|
1284
|
-
2531: "apples_diced",
|
|
1285
|
-
2532: "apricots_halved_steam_cooking",
|
|
1286
|
-
2533: "apricots_halved_skinning",
|
|
1287
|
-
2534: "apricots_quartered",
|
|
1288
|
-
2535: "apricots_wedges",
|
|
1289
|
-
2536: "pears_halved",
|
|
1290
|
-
2537: "pears_quartered",
|
|
1291
|
-
2538: "pears_wedges",
|
|
1292
|
-
2539: "sweet_cherries",
|
|
1293
|
-
2540: "sour_cherries",
|
|
1294
|
-
2541: "pears_to_cook_small_whole",
|
|
1295
|
-
2542: "pears_to_cook_small_halved",
|
|
1296
|
-
2543: "pears_to_cook_small_quartered",
|
|
1297
|
-
2544: "pears_to_cook_medium_whole",
|
|
1298
|
-
2545: "pears_to_cook_medium_halved",
|
|
1299
|
-
2546: "pears_to_cook_medium_quartered",
|
|
1300
|
-
2547: "pears_to_cook_large_whole",
|
|
1301
|
-
2548: "pears_to_cook_large_halved",
|
|
1302
|
-
2549: "pears_to_cook_large_quartered",
|
|
1303
|
-
2550: "mirabelles",
|
|
1304
|
-
2551: "nectarines_peaches_halved_steam_cooking",
|
|
1305
|
-
2552: "nectarines_peaches_halved_skinning",
|
|
1306
|
-
2553: "nectarines_peaches_quartered",
|
|
1307
|
-
2554: "nectarines_peaches_wedges",
|
|
1308
|
-
2555: "plums_whole",
|
|
1309
|
-
2556: "plums_halved",
|
|
1310
|
-
2557: "cranberries",
|
|
1311
|
-
2558: "quinces_diced",
|
|
1312
|
-
2559: "greenage_plums",
|
|
1313
|
-
2560: "rhubarb_chunks",
|
|
1314
|
-
2561: "gooseberries",
|
|
1315
|
-
2562: "mushrooms_whole",
|
|
1316
|
-
2563: "mushrooms_halved",
|
|
1317
|
-
2564: "mushrooms_sliced",
|
|
1318
|
-
2565: "mushrooms_quartered",
|
|
1319
|
-
2566: "mushrooms_diced",
|
|
1320
|
-
2567: "cep",
|
|
1321
|
-
2568: "chanterelle",
|
|
1322
|
-
2569: "oyster_mushroom_whole",
|
|
1323
|
-
2570: "oyster_mushroom_strips",
|
|
1324
|
-
2571: "oyster_mushroom_diced",
|
|
1325
|
-
2572: "saucisson",
|
|
1326
|
-
2573: "bruehwurst_sausages",
|
|
1327
|
-
2574: "bologna_sausage",
|
|
1328
|
-
2575: "veal_sausages",
|
|
1329
|
-
2577: "crevettes",
|
|
1330
|
-
2579: "prawns",
|
|
1331
|
-
2581: "king_prawns",
|
|
1332
|
-
2583: "small_shrimps",
|
|
1333
|
-
2585: "large_shrimps",
|
|
1334
|
-
2587: "mussels",
|
|
1335
|
-
2589: "scallops",
|
|
1336
|
-
2591: "venus_clams",
|
|
1337
|
-
2592: "goose_barnacles",
|
|
1338
|
-
2593: "cockles",
|
|
1339
|
-
2594: "razor_clams_small",
|
|
1340
|
-
2595: "razor_clams_medium",
|
|
1341
|
-
2596: "razor_clams_large",
|
|
1342
|
-
2597: "mussels_in_sauce",
|
|
1343
|
-
2598: "bottling_soft",
|
|
1344
|
-
2599: "bottling_medium",
|
|
1345
|
-
2600: "bottling_hard",
|
|
1346
|
-
2601: "melt_chocolate",
|
|
1347
|
-
2602: "dissolve_gelatine",
|
|
1348
|
-
2603: "sweat_onions",
|
|
1349
|
-
2604: "cook_bacon",
|
|
1350
|
-
2605: "heating_damp_flannels",
|
|
1351
|
-
2606: "decrystallise_honey",
|
|
1352
|
-
2607: "make_yoghurt",
|
|
1353
|
-
2687: "toffee_date_dessert_one_large",
|
|
1354
|
-
2694: "beef_tenderloin_medaillons_1_cm_low_temperature_cooking",
|
|
1355
|
-
2695: "beef_tenderloin_medaillons_2_cm_low_temperature_cooking",
|
|
1356
|
-
2696: "beef_tenderloin_medaillons_3_cm_low_temperature_cooking",
|
|
1357
|
-
3373: "wild_rice",
|
|
1358
|
-
3376: "wholegrain_rice",
|
|
1359
|
-
3380: "parboiled_rice_steam_cooking",
|
|
1360
|
-
3381: "parboiled_rice_rapid_steam_cooking",
|
|
1361
|
-
3383: "basmati_rice_steam_cooking",
|
|
1362
|
-
3384: "basmati_rice_rapid_steam_cooking",
|
|
1363
|
-
3386: "jasmine_rice_steam_cooking",
|
|
1364
|
-
3387: "jasmine_rice_rapid_steam_cooking",
|
|
1365
|
-
3389: "huanghuanian_steam_cooking",
|
|
1366
|
-
3390: "huanghuanian_rapid_steam_cooking",
|
|
1367
|
-
3392: "simiao_steam_cooking",
|
|
1368
|
-
3393: "simiao_rapid_steam_cooking",
|
|
1369
|
-
3395: "long_grain_rice_general_steam_cooking",
|
|
1370
|
-
3396: "long_grain_rice_general_rapid_steam_cooking",
|
|
1371
|
-
3398: "chongming_steam_cooking",
|
|
1372
|
-
3399: "chongming_rapid_steam_cooking",
|
|
1373
|
-
3401: "wuchang_steam_cooking",
|
|
1374
|
-
3402: "wuchang_rapid_steam_cooking",
|
|
1375
|
-
3404: "uonumma_koshihikari_steam_cooking",
|
|
1376
|
-
3405: "uonumma_koshihikari_rapid_steam_cooking",
|
|
1377
|
-
3407: "sheyang_steam_cooking",
|
|
1378
|
-
3408: "sheyang_rapid_steam_cooking",
|
|
1379
|
-
3410: "round_grain_rice_general_steam_cooking",
|
|
1380
|
-
3411: "round_grain_rice_general_rapid_steam_cooking",
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
STATE_PROGRAM_ID: dict[int, dict[int, str]] = {
|
|
1384
|
-
MieleAppliance.WASHING_MACHINE: WASHING_MACHINE_PROGRAM_ID,
|
|
1385
|
-
MieleAppliance.TUMBLE_DRYER: TUMBLE_DRYER_PROGRAM_ID,
|
|
1386
|
-
MieleAppliance.DISHWASHER: DISHWASHER_PROGRAM_ID,
|
|
1387
|
-
MieleAppliance.DISH_WARMER: DISH_WARMER_PROGRAM_ID,
|
|
1388
|
-
MieleAppliance.OVEN: OVEN_PROGRAM_ID,
|
|
1389
|
-
MieleAppliance.OVEN_MICROWAVE: OVEN_PROGRAM_ID | STEAM_OVEN_MICRO_PROGRAM_ID,
|
|
1390
|
-
MieleAppliance.STEAM_OVEN_MK2: OVEN_PROGRAM_ID | STEAM_OVEN_MICRO_PROGRAM_ID,
|
|
1391
|
-
MieleAppliance.STEAM_OVEN_COMBI: OVEN_PROGRAM_ID | STEAM_OVEN_MICRO_PROGRAM_ID,
|
|
1392
|
-
MieleAppliance.STEAM_OVEN: STEAM_OVEN_MICRO_PROGRAM_ID,
|
|
1393
|
-
MieleAppliance.STEAM_OVEN_MICRO: STEAM_OVEN_MICRO_PROGRAM_ID,
|
|
1394
|
-
MieleAppliance.WASHER_DRYER: WASHING_MACHINE_PROGRAM_ID,
|
|
1395
|
-
MieleAppliance.ROBOT_VACUUM_CLEANER: ROBOT_VACUUM_CLEANER_PROGRAM_ID,
|
|
1396
|
-
MieleAppliance.COFFEE_SYSTEM: COFFEE_SYSTEM_PROGRAM_ID,
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
1257
|
|
|
1400
1258
|
class PlatePowerStep(MieleEnum, missing_to_none=True):
|
|
1401
1259
|
"""Plate power settings."""
|