homeassistant 2025.9.3__py3-none-any.whl → 2025.10.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.
Potentially problematic release.
This version of homeassistant might be problematic. Click here for more details.
- homeassistant/__main__.py +32 -26
- homeassistant/auth/mfa_modules/notify.py +1 -1
- homeassistant/auth/mfa_modules/totp.py +1 -1
- homeassistant/brands/eltako.json +5 -0
- homeassistant/brands/fritzbox.json +1 -1
- homeassistant/brands/google.json +0 -1
- homeassistant/brands/konnected.json +5 -0
- homeassistant/brands/level.json +5 -0
- homeassistant/components/abode/translations/pt.json +2 -2
- homeassistant/components/abode/translations/uk.json +8 -0
- homeassistant/components/acaia/coordinator.py +2 -0
- homeassistant/components/acaia/manifest.json +1 -1
- homeassistant/components/acaia/translations/uk.json +21 -0
- homeassistant/components/accuweather/__init__.py +15 -12
- homeassistant/components/accuweather/config_flow.py +47 -0
- homeassistant/components/accuweather/const.py +2 -1
- homeassistant/components/accuweather/coordinator.py +82 -15
- homeassistant/components/accuweather/manifest.json +1 -2
- homeassistant/components/accuweather/strings.json +18 -0
- homeassistant/components/accuweather/translations/bg.json +9 -0
- homeassistant/components/accuweather/translations/ca.json +3 -0
- homeassistant/components/accuweather/translations/cs.json +18 -0
- homeassistant/components/accuweather/translations/de.json +18 -0
- homeassistant/components/accuweather/translations/el.json +9 -0
- homeassistant/components/accuweather/translations/en-GB.json +18 -0
- homeassistant/components/accuweather/translations/en.json +18 -0
- homeassistant/components/accuweather/translations/es.json +18 -0
- homeassistant/components/accuweather/translations/et.json +18 -0
- homeassistant/components/accuweather/translations/ga.json +18 -0
- homeassistant/components/accuweather/translations/he.json +9 -0
- homeassistant/components/accuweather/translations/id.json +9 -0
- homeassistant/components/accuweather/translations/it.json +3 -0
- homeassistant/components/accuweather/translations/lt.json +18 -0
- homeassistant/components/accuweather/translations/nl.json +9 -0
- homeassistant/components/accuweather/translations/pl.json +18 -0
- homeassistant/components/accuweather/translations/pt.json +18 -0
- homeassistant/components/accuweather/translations/ru.json +3 -0
- homeassistant/components/accuweather/translations/sk.json +18 -0
- homeassistant/components/accuweather/translations/zh-Hans.json +18 -0
- homeassistant/components/accuweather/translations/zh-Hant.json +18 -0
- homeassistant/components/accuweather/weather.py +36 -1
- homeassistant/components/adax/translations/fy.json +11 -0
- homeassistant/components/adguard/translations/zh-Hant.json +1 -1
- homeassistant/components/aftership/translations/es.json +1 -1
- homeassistant/components/ai_task/__init__.py +9 -37
- homeassistant/components/ai_task/const.py +3 -3
- homeassistant/components/ai_task/entity.py +5 -0
- homeassistant/components/ai_task/http.py +1 -0
- homeassistant/components/ai_task/manifest.json +1 -1
- homeassistant/components/ai_task/media_source.py +20 -69
- homeassistant/components/ai_task/task.py +57 -69
- homeassistant/components/airgradient/translations/uk.json +7 -0
- homeassistant/components/airos/__init__.py +39 -4
- homeassistant/components/airos/binary_sensor.py +2 -2
- homeassistant/components/airos/config_flow.py +26 -5
- homeassistant/components/airos/const.py +5 -0
- homeassistant/components/airos/coordinator.py +4 -4
- homeassistant/components/airos/entity.py +8 -3
- homeassistant/components/airos/manifest.json +1 -1
- homeassistant/components/airos/sensor.py +2 -2
- homeassistant/components/airos/strings.json +12 -0
- homeassistant/components/airos/translations/bg.json +8 -0
- homeassistant/components/airos/translations/ca.json +8 -0
- homeassistant/components/airos/translations/cs.json +12 -0
- homeassistant/components/airos/translations/de.json +13 -1
- homeassistant/components/airos/translations/el.json +7 -0
- homeassistant/components/airos/translations/en-GB.json +12 -0
- homeassistant/components/airos/translations/en.json +12 -0
- homeassistant/components/airos/translations/es.json +12 -0
- homeassistant/components/airos/translations/et.json +12 -0
- homeassistant/components/airos/translations/fr.json +18 -0
- homeassistant/components/airos/translations/fy.json +11 -0
- homeassistant/components/airos/translations/id.json +36 -0
- homeassistant/components/airos/translations/lt.json +12 -0
- homeassistant/components/airos/translations/lv.json +1 -0
- homeassistant/components/airos/translations/pt.json +13 -1
- homeassistant/components/airos/translations/sk.json +12 -0
- homeassistant/components/airos/translations/sv.json +40 -1
- homeassistant/components/airos/translations/zh-Hans.json +12 -0
- homeassistant/components/airos/translations/zh-Hant.json +12 -0
- homeassistant/components/airtouch5/translations/da.json +9 -0
- homeassistant/components/airzone/manifest.json +1 -1
- homeassistant/components/airzone/select.py +19 -1
- homeassistant/components/airzone/strings.json +10 -0
- homeassistant/components/airzone/translations/cs.json +10 -0
- homeassistant/components/airzone/translations/de.json +10 -0
- homeassistant/components/airzone/translations/en-GB.json +10 -0
- homeassistant/components/airzone/translations/en.json +10 -0
- homeassistant/components/airzone/translations/es.json +10 -0
- homeassistant/components/airzone/translations/et.json +10 -0
- homeassistant/components/airzone/translations/fr.json +9 -0
- homeassistant/components/airzone/translations/ga.json +10 -0
- homeassistant/components/airzone/translations/lt.json +10 -0
- homeassistant/components/airzone/translations/nl.json +5 -0
- homeassistant/components/airzone/translations/pt.json +10 -0
- homeassistant/components/airzone/translations/sk.json +10 -0
- homeassistant/components/airzone/translations/zh-Hans.json +10 -0
- homeassistant/components/airzone/translations/zh-Hant.json +10 -0
- homeassistant/components/airzone_cloud/translations/ar.json +15 -0
- homeassistant/components/aladdin_connect/config_flow.py +11 -0
- homeassistant/components/aladdin_connect/manifest.json +5 -0
- homeassistant/components/aladdin_connect/strings.json +5 -1
- homeassistant/components/aladdin_connect/translations/bg.json +7 -1
- homeassistant/components/aladdin_connect/translations/cs.json +4 -0
- homeassistant/components/aladdin_connect/translations/de.json +4 -0
- homeassistant/components/aladdin_connect/translations/en-GB.json +4 -0
- homeassistant/components/aladdin_connect/translations/en.json +4 -0
- homeassistant/components/aladdin_connect/translations/es.json +4 -0
- homeassistant/components/aladdin_connect/translations/et.json +4 -0
- homeassistant/components/aladdin_connect/translations/ga.json +3 -0
- homeassistant/components/aladdin_connect/translations/id.json +28 -1
- homeassistant/components/aladdin_connect/translations/it.json +9 -0
- homeassistant/components/aladdin_connect/translations/lt.json +4 -0
- homeassistant/components/aladdin_connect/translations/pt.json +4 -0
- homeassistant/components/aladdin_connect/translations/ru.json +3 -0
- homeassistant/components/aladdin_connect/translations/sk.json +3 -0
- homeassistant/components/aladdin_connect/translations/zh-Hans.json +3 -0
- homeassistant/components/aladdin_connect/translations/zh-Hant.json +4 -0
- homeassistant/components/alarm_control_panel/__init__.py +1 -1
- homeassistant/components/alarmdecoder/translations/pt.json +1 -1
- homeassistant/components/alert/__init__.py +8 -2
- homeassistant/components/alert/entity.py +8 -2
- homeassistant/components/alert/reproduce_state.py +4 -1
- homeassistant/components/alexa_devices/binary_sensor.py +46 -43
- homeassistant/components/alexa_devices/config_flow.py +2 -2
- homeassistant/components/alexa_devices/coordinator.py +32 -2
- homeassistant/components/alexa_devices/diagnostics.py +1 -3
- homeassistant/components/alexa_devices/icons.json +0 -40
- homeassistant/components/alexa_devices/manifest.json +2 -2
- homeassistant/components/alexa_devices/notify.py +17 -7
- homeassistant/components/alexa_devices/quality_scale.yaml +2 -4
- homeassistant/components/alexa_devices/sensor.py +29 -6
- homeassistant/components/alexa_devices/strings.json +0 -24
- homeassistant/components/alexa_devices/switch.py +41 -11
- homeassistant/components/alexa_devices/translations/bg.json +0 -13
- homeassistant/components/alexa_devices/translations/cs.json +0 -24
- homeassistant/components/alexa_devices/translations/de.json +0 -24
- homeassistant/components/alexa_devices/translations/el.json +0 -20
- homeassistant/components/alexa_devices/translations/en-GB.json +0 -24
- homeassistant/components/alexa_devices/translations/en.json +0 -24
- homeassistant/components/alexa_devices/translations/es.json +0 -24
- homeassistant/components/alexa_devices/translations/et.json +0 -24
- homeassistant/components/alexa_devices/translations/fy.json +16 -0
- homeassistant/components/alexa_devices/translations/ga.json +0 -24
- homeassistant/components/alexa_devices/translations/he.json +0 -7
- homeassistant/components/alexa_devices/translations/hu.json +0 -20
- homeassistant/components/alexa_devices/translations/id.json +12 -0
- homeassistant/components/alexa_devices/translations/it.json +0 -20
- homeassistant/components/alexa_devices/translations/ja.json +0 -19
- homeassistant/components/alexa_devices/translations/lt.json +0 -24
- homeassistant/components/alexa_devices/translations/mk.json +0 -14
- homeassistant/components/alexa_devices/translations/nl.json +2 -20
- homeassistant/components/alexa_devices/translations/pl.json +0 -5
- homeassistant/components/alexa_devices/translations/pt.json +3 -27
- homeassistant/components/alexa_devices/translations/ru.json +0 -5
- homeassistant/components/alexa_devices/translations/sk.json +0 -24
- homeassistant/components/alexa_devices/translations/sv.json +0 -20
- homeassistant/components/alexa_devices/translations/tr.json +0 -5
- homeassistant/components/alexa_devices/translations/zh-Hans.json +0 -24
- homeassistant/components/alexa_devices/translations/zh-Hant.json +0 -24
- homeassistant/components/alexa_devices/utils.py +24 -1
- homeassistant/components/amcrest/services.py +1 -1
- homeassistant/components/analytics/__init__.py +16 -1
- homeassistant/components/analytics/analytics.py +307 -43
- homeassistant/components/analytics/manifest.json +1 -1
- homeassistant/components/androidtv/__init__.py +12 -0
- homeassistant/components/androidtv/media_player.py +1 -39
- homeassistant/components/androidtv/services.py +66 -0
- homeassistant/components/androidtv_remote/config_flow.py +29 -22
- homeassistant/components/androidtv_remote/entity.py +2 -4
- homeassistant/components/androidtv_remote/manifest.json +1 -0
- homeassistant/components/androidtv_remote/media_player.py +10 -2
- homeassistant/components/androidtv_remote/quality_scale.yaml +78 -0
- homeassistant/components/androidtv_remote/strings.json +14 -1
- homeassistant/components/androidtv_remote/translations/cs.json +13 -0
- homeassistant/components/androidtv_remote/translations/de.json +13 -0
- homeassistant/components/androidtv_remote/translations/en-GB.json +13 -0
- homeassistant/components/androidtv_remote/translations/en.json +13 -0
- homeassistant/components/androidtv_remote/translations/es.json +13 -0
- homeassistant/components/androidtv_remote/translations/et.json +13 -0
- homeassistant/components/androidtv_remote/translations/fr.json +6 -0
- homeassistant/components/androidtv_remote/translations/ga.json +13 -0
- homeassistant/components/androidtv_remote/translations/id.json +7 -1
- homeassistant/components/androidtv_remote/translations/it.json +8 -0
- homeassistant/components/androidtv_remote/translations/lt.json +13 -0
- homeassistant/components/androidtv_remote/translations/pt.json +13 -0
- homeassistant/components/androidtv_remote/translations/ru.json +1 -0
- homeassistant/components/androidtv_remote/translations/sk.json +13 -0
- homeassistant/components/androidtv_remote/translations/zh-Hans.json +13 -0
- homeassistant/components/androidtv_remote/translations/zh-Hant.json +13 -0
- homeassistant/components/anova/translations/pt.json +1 -1
- homeassistant/components/anthropic/translations/id.json +2 -1
- homeassistant/components/aosmith/__init__.py +1 -1
- homeassistant/components/aosmith/icons.json +5 -0
- homeassistant/components/aosmith/manifest.json +1 -1
- homeassistant/components/aosmith/select.py +70 -0
- homeassistant/components/aosmith/strings.json +11 -0
- homeassistant/components/aosmith/translations/bg.json +10 -0
- homeassistant/components/aosmith/translations/ca.json +7 -0
- homeassistant/components/aosmith/translations/cs.json +11 -0
- homeassistant/components/aosmith/translations/de.json +11 -0
- homeassistant/components/aosmith/translations/el.json +7 -0
- homeassistant/components/aosmith/translations/en-GB.json +11 -0
- homeassistant/components/aosmith/translations/en.json +11 -0
- homeassistant/components/aosmith/translations/es.json +11 -0
- homeassistant/components/aosmith/translations/et.json +11 -0
- homeassistant/components/aosmith/translations/ga.json +11 -0
- homeassistant/components/aosmith/translations/he.json +9 -0
- homeassistant/components/aosmith/translations/id.json +9 -0
- homeassistant/components/aosmith/translations/it.json +13 -0
- homeassistant/components/aosmith/translations/lt.json +11 -0
- homeassistant/components/aosmith/translations/nl.json +9 -0
- homeassistant/components/aosmith/translations/pl.json +13 -0
- homeassistant/components/aosmith/translations/pt.json +12 -1
- homeassistant/components/aosmith/translations/ru.json +11 -0
- homeassistant/components/aosmith/translations/sk.json +11 -0
- homeassistant/components/aosmith/translations/zh-Hans.json +11 -0
- homeassistant/components/aosmith/translations/zh-Hant.json +11 -0
- homeassistant/components/apcupsd/__init__.py +1 -1
- homeassistant/components/apcupsd/coordinator.py +1 -0
- homeassistant/components/apcupsd/manifest.json +2 -2
- homeassistant/components/apcupsd/quality_scale.yaml +1 -4
- homeassistant/components/apcupsd/sensor.py +5 -1
- homeassistant/components/apcupsd/translations/id.json +6 -0
- homeassistant/components/aquacell/translations/pt.json +1 -1
- homeassistant/components/aseko_pool_live/translations/pt.json +2 -2
- homeassistant/components/assist_pipeline/__init__.py +2 -0
- homeassistant/components/assist_pipeline/acknowledge.mp3 +0 -0
- homeassistant/components/assist_pipeline/const.py +4 -0
- homeassistant/components/assist_pipeline/manifest.json +1 -1
- homeassistant/components/assist_pipeline/pipeline.py +130 -16
- homeassistant/components/assist_pipeline/select.py +26 -4
- homeassistant/components/assist_pipeline/strings.json +1 -1
- homeassistant/components/assist_pipeline/translations/cs.json +1 -0
- homeassistant/components/assist_pipeline/translations/de.json +1 -1
- homeassistant/components/assist_pipeline/translations/fr.json +1 -0
- homeassistant/components/assist_pipeline/translations/he.json +1 -0
- homeassistant/components/assist_pipeline/translations/it.json +1 -0
- homeassistant/components/assist_pipeline/translations/lt.json +1 -0
- homeassistant/components/assist_pipeline/translations/nl.json +1 -0
- homeassistant/components/assist_pipeline/translations/pt.json +2 -1
- homeassistant/components/assist_pipeline/translations/ru.json +1 -0
- homeassistant/components/assist_pipeline/translations/sv.json +1 -0
- homeassistant/components/assist_pipeline/translations/zh-Hans.json +1 -0
- homeassistant/components/assist_satellite/entity.py +1 -0
- homeassistant/components/assist_satellite/intent.py +0 -1
- homeassistant/components/assist_satellite/manifest.json +1 -1
- homeassistant/components/assist_satellite/translations/pt.json +3 -3
- homeassistant/components/asuswrt/bridge.py +21 -0
- homeassistant/components/asuswrt/manifest.json +1 -1
- homeassistant/components/asuswrt/router.py +3 -1
- homeassistant/components/asuswrt/translations/de.json +1 -1
- homeassistant/components/august/lock.py +13 -19
- homeassistant/components/august/manifest.json +1 -1
- homeassistant/components/august/translations/id.json +25 -1
- homeassistant/components/aurora_abb_powerone/translations/uk.json +10 -0
- homeassistant/components/aussie_broadband/translations/uk.json +37 -0
- homeassistant/components/autarco/translations/pt.json +1 -1
- homeassistant/components/auth/login_flow.py +15 -4
- homeassistant/components/automation/translations/de.json +1 -1
- homeassistant/components/awair/translations/de.json +1 -1
- homeassistant/components/awair/translations/pt.json +2 -2
- homeassistant/components/awair/translations/uk.json +10 -0
- homeassistant/components/aws_s3/translations/pt.json +1 -1
- homeassistant/components/backup/http.py +3 -2
- homeassistant/components/backup/strings.json +3 -3
- homeassistant/components/backup/translations/bg.json +0 -3
- homeassistant/components/backup/translations/cs.json +3 -3
- homeassistant/components/backup/translations/de.json +3 -3
- homeassistant/components/backup/translations/el.json +0 -3
- homeassistant/components/backup/translations/en-GB.json +3 -3
- homeassistant/components/backup/translations/en.json +3 -3
- homeassistant/components/backup/translations/es.json +3 -3
- homeassistant/components/backup/translations/et.json +2 -2
- homeassistant/components/backup/translations/fr.json +0 -3
- homeassistant/components/backup/translations/fy.json +24 -0
- homeassistant/components/backup/translations/ga.json +0 -3
- homeassistant/components/backup/translations/he.json +0 -1
- homeassistant/components/backup/translations/hu.json +0 -3
- homeassistant/components/backup/translations/id.json +0 -3
- homeassistant/components/backup/translations/lt.json +1 -1
- homeassistant/components/backup/translations/nl.json +0 -3
- homeassistant/components/backup/translations/pl.json +0 -3
- homeassistant/components/backup/translations/pt.json +3 -3
- homeassistant/components/backup/translations/sv.json +0 -3
- homeassistant/components/backup/translations/tr.json +0 -3
- homeassistant/components/backup/translations/zh-Hans.json +3 -3
- homeassistant/components/backup/translations/zh-Hant.json +3 -3
- homeassistant/components/bang_olufsen/translations/pt.json +1 -1
- homeassistant/components/bayesian/binary_sensor.py +11 -6
- homeassistant/components/bayesian/translations/es.json +1 -1
- homeassistant/components/bayesian/translations/he.json +6 -3
- homeassistant/components/bayesian/translations/id.json +62 -0
- homeassistant/components/bayesian/translations/lt.json +3 -0
- homeassistant/components/bayesian/translations/pt.json +1 -1
- homeassistant/components/bayesian/translations/sv.json +1 -0
- homeassistant/components/binary_sensor/translations/ar.json +10 -0
- homeassistant/components/binary_sensor/translations/es.json +1 -1
- homeassistant/components/binary_sensor/translations/mk.json +5 -0
- homeassistant/components/binary_sensor/translations/sv.json +1 -1
- homeassistant/components/blue_current/__init__.py +87 -5
- homeassistant/components/blue_current/const.py +6 -0
- homeassistant/components/blue_current/icons.json +5 -0
- homeassistant/components/blue_current/services.yaml +12 -0
- homeassistant/components/blue_current/strings.json +44 -0
- homeassistant/components/blue_current/translations/bg.json +18 -0
- homeassistant/components/blue_current/translations/cs.json +44 -0
- homeassistant/components/blue_current/translations/de.json +44 -0
- homeassistant/components/blue_current/translations/en-GB.json +44 -0
- homeassistant/components/blue_current/translations/en.json +44 -0
- homeassistant/components/blue_current/translations/es.json +44 -0
- homeassistant/components/blue_current/translations/et.json +44 -0
- homeassistant/components/blue_current/translations/fr.json +9 -0
- homeassistant/components/blue_current/translations/ga.json +44 -0
- homeassistant/components/blue_current/translations/lt.json +44 -0
- homeassistant/components/blue_current/translations/pt.json +44 -0
- homeassistant/components/blue_current/translations/sk.json +44 -0
- homeassistant/components/blue_current/translations/zh-Hans.json +44 -0
- homeassistant/components/blue_current/translations/zh-Hant.json +44 -0
- homeassistant/components/bluesound/manifest.json +1 -1
- homeassistant/components/bluesound/media_player.py +10 -4
- homeassistant/components/bluetooth/__init__.py +2 -0
- homeassistant/components/bluetooth/api.py +23 -3
- homeassistant/components/bluetooth/manager.py +109 -3
- homeassistant/components/bluetooth/manifest.json +1 -1
- homeassistant/components/bluetooth/strings.json +14 -0
- homeassistant/components/bluetooth/translations/bg.json +5 -0
- homeassistant/components/bluetooth/translations/cs.json +14 -0
- homeassistant/components/bluetooth/translations/de.json +14 -0
- homeassistant/components/bluetooth/translations/el.json +14 -0
- homeassistant/components/bluetooth/translations/en-GB.json +14 -0
- homeassistant/components/bluetooth/translations/en.json +14 -0
- homeassistant/components/bluetooth/translations/es.json +14 -0
- homeassistant/components/bluetooth/translations/et.json +14 -0
- homeassistant/components/bluetooth/translations/fr.json +14 -0
- homeassistant/components/bluetooth/translations/ga.json +14 -0
- homeassistant/components/bluetooth/translations/he.json +5 -0
- homeassistant/components/bluetooth/translations/lt.json +14 -0
- homeassistant/components/bluetooth/translations/pt.json +14 -0
- homeassistant/components/bluetooth/translations/ru.json +14 -0
- homeassistant/components/bluetooth/translations/sk.json +14 -0
- homeassistant/components/bluetooth/translations/zh-Hans.json +14 -0
- homeassistant/components/bluetooth/translations/zh-Hant.json +14 -0
- homeassistant/components/bluetooth/websocket_api.py +123 -24
- homeassistant/components/bmw_connected_drive/translations/uk.json +66 -0
- homeassistant/components/bosch_alarm/translations/pt.json +1 -1
- homeassistant/components/braviatv/diagnostics.py +2 -0
- homeassistant/components/bring/coordinator.py +1 -0
- homeassistant/components/bring/event.py +3 -2
- homeassistant/components/bring/strings.json +0 -4
- homeassistant/components/bring/translations/bg.json +0 -3
- homeassistant/components/bring/translations/ca.json +0 -3
- homeassistant/components/bring/translations/cs.json +0 -4
- homeassistant/components/bring/translations/de.json +0 -4
- homeassistant/components/bring/translations/el.json +0 -4
- homeassistant/components/bring/translations/en-GB.json +0 -4
- homeassistant/components/bring/translations/en.json +0 -4
- homeassistant/components/bring/translations/es-419.json +0 -4
- homeassistant/components/bring/translations/es.json +0 -4
- homeassistant/components/bring/translations/et.json +0 -4
- homeassistant/components/bring/translations/fi.json +0 -4
- homeassistant/components/bring/translations/ga.json +0 -4
- homeassistant/components/bring/translations/hr.json +0 -4
- homeassistant/components/bring/translations/hu.json +0 -4
- homeassistant/components/bring/translations/it.json +0 -3
- homeassistant/components/bring/translations/ja.json +0 -4
- homeassistant/components/bring/translations/ko.json +0 -3
- homeassistant/components/bring/translations/lt.json +0 -4
- homeassistant/components/bring/translations/pt-BR.json +0 -4
- homeassistant/components/bring/translations/pt.json +3 -7
- homeassistant/components/bring/translations/ru.json +0 -4
- homeassistant/components/bring/translations/sk.json +0 -4
- homeassistant/components/bring/translations/sv.json +0 -4
- homeassistant/components/bring/translations/tr.json +0 -4
- homeassistant/components/bring/translations/zh-Hans.json +0 -4
- homeassistant/components/bring/translations/zh-Hant.json +0 -4
- homeassistant/components/broadlink/translations/zh-Hant.json +1 -1
- homeassistant/components/brother/__init__.py +34 -3
- homeassistant/components/brother/config_flow.py +57 -9
- homeassistant/components/brother/const.py +7 -0
- homeassistant/components/brother/manifest.json +1 -1
- homeassistant/components/brother/strings.json +44 -1
- homeassistant/components/brother/translations/bg.json +44 -1
- homeassistant/components/brother/translations/ca.json +21 -0
- homeassistant/components/brother/translations/cs.json +45 -2
- homeassistant/components/brother/translations/de.json +45 -2
- homeassistant/components/brother/translations/el.json +22 -1
- homeassistant/components/brother/translations/en-GB.json +45 -2
- homeassistant/components/brother/translations/en.json +45 -2
- homeassistant/components/brother/translations/es.json +45 -2
- homeassistant/components/brother/translations/et.json +45 -2
- homeassistant/components/brother/translations/ga.json +45 -2
- homeassistant/components/brother/translations/he.json +21 -0
- homeassistant/components/brother/translations/id.json +21 -0
- homeassistant/components/brother/translations/it.json +40 -1
- homeassistant/components/brother/translations/lt.json +45 -2
- homeassistant/components/brother/translations/nl.json +22 -1
- homeassistant/components/brother/translations/pl.json +45 -2
- homeassistant/components/brother/translations/pt.json +45 -2
- homeassistant/components/brother/translations/sk.json +45 -2
- homeassistant/components/brother/translations/sl.json +34 -2
- homeassistant/components/brother/translations/zh-Hans.json +45 -2
- homeassistant/components/brother/translations/zh-Hant.json +45 -2
- homeassistant/components/bsblan/strings.json +2 -2
- homeassistant/components/bsblan/translations/fy.json +16 -0
- homeassistant/components/bsblan/translations/id.json +17 -2
- homeassistant/components/bthome/manifest.json +1 -1
- homeassistant/components/bthome/sensor.py +10 -0
- homeassistant/components/camera/__init__.py +9 -7
- homeassistant/components/camera/prefs.py +10 -1
- homeassistant/components/cast/discovery.py +2 -1
- homeassistant/components/cast/helpers.py +4 -1
- homeassistant/components/cast/media_player.py +3 -1
- homeassistant/components/cast/translations/pl.json +14 -0
- homeassistant/components/climate/intent.py +0 -1
- homeassistant/components/climate/strings.json +3 -3
- homeassistant/components/climate/translations/ar.json +18 -0
- homeassistant/components/climate/translations/fr.json +6 -0
- homeassistant/components/climate/translations/mk.json +13 -0
- homeassistant/components/climate/translations/uk.json +5 -1
- homeassistant/components/cloud/http_api.py +109 -0
- homeassistant/components/cloud/subscription.py +5 -1
- homeassistant/components/cloud/translations/sk.json +1 -1
- homeassistant/components/coinbase/translations/id.json +5 -0
- homeassistant/components/comelit/binary_sensor.py +17 -4
- homeassistant/components/comelit/config_flow.py +8 -4
- homeassistant/components/comelit/coordinator.py +57 -4
- homeassistant/components/comelit/cover.py +15 -4
- homeassistant/components/comelit/light.py +15 -4
- homeassistant/components/comelit/manifest.json +1 -1
- homeassistant/components/comelit/quality_scale.yaml +2 -6
- homeassistant/components/comelit/sensor.py +35 -17
- homeassistant/components/comelit/switch.py +19 -0
- homeassistant/components/compit/__init__.py +45 -0
- homeassistant/components/compit/climate.py +265 -0
- homeassistant/components/compit/config_flow.py +110 -0
- homeassistant/components/compit/const.py +4 -0
- homeassistant/components/compit/coordinator.py +43 -0
- homeassistant/components/compit/manifest.json +12 -0
- homeassistant/components/compit/quality_scale.yaml +86 -0
- homeassistant/components/compit/strings.json +35 -0
- homeassistant/components/compit/translations/bg.json +25 -0
- homeassistant/components/compit/translations/ca.json +25 -0
- homeassistant/components/compit/translations/cs.json +35 -0
- homeassistant/components/compit/translations/de.json +35 -0
- homeassistant/components/compit/translations/el.json +25 -0
- homeassistant/components/compit/translations/en-GB.json +35 -0
- homeassistant/components/compit/translations/en.json +35 -0
- homeassistant/components/compit/translations/es.json +35 -0
- homeassistant/components/compit/translations/et.json +35 -0
- homeassistant/components/compit/translations/fy.json +16 -0
- homeassistant/components/compit/translations/ga.json +35 -0
- homeassistant/components/compit/translations/he.json +25 -0
- homeassistant/components/compit/translations/id.json +25 -0
- homeassistant/components/compit/translations/lt.json +35 -0
- homeassistant/components/compit/translations/mk.json +20 -0
- homeassistant/components/compit/translations/nl.json +25 -0
- homeassistant/components/compit/translations/pt.json +35 -0
- homeassistant/components/compit/translations/ru.json +35 -0
- homeassistant/components/compit/translations/sk.json +35 -0
- homeassistant/components/compit/translations/zh-Hans.json +35 -0
- homeassistant/components/compit/translations/zh-Hant.json +35 -0
- homeassistant/components/conversation/__init__.py +11 -14
- homeassistant/components/conversation/agent_manager.py +40 -4
- homeassistant/components/conversation/chat_log.py +6 -2
- homeassistant/components/conversation/const.py +0 -3
- homeassistant/components/conversation/default_agent.py +74 -80
- homeassistant/components/conversation/http.py +7 -5
- homeassistant/components/conversation/icons.json +5 -0
- homeassistant/components/conversation/manifest.json +3 -3
- homeassistant/components/conversation/models.py +4 -0
- homeassistant/components/conversation/trigger.py +32 -4
- homeassistant/components/cookidoo/translations/pt.json +2 -2
- homeassistant/components/cover/translations/da.json +20 -1
- homeassistant/components/cover/translations/pl.json +3 -1
- homeassistant/components/crownstone/translations/pt.json +1 -1
- homeassistant/components/cync/__init__.py +58 -0
- homeassistant/components/cync/config_flow.py +118 -0
- homeassistant/components/cync/const.py +9 -0
- homeassistant/components/cync/coordinator.py +87 -0
- homeassistant/components/cync/entity.py +45 -0
- homeassistant/components/cync/light.py +180 -0
- homeassistant/components/cync/manifest.json +11 -0
- homeassistant/components/cync/quality_scale.yaml +69 -0
- homeassistant/components/cync/strings.json +32 -0
- homeassistant/components/cync/translations/bg.json +20 -0
- homeassistant/components/cync/translations/ca.json +12 -0
- homeassistant/components/cync/translations/cs.json +32 -0
- homeassistant/components/cync/translations/de.json +32 -0
- homeassistant/components/cync/translations/el.json +20 -0
- homeassistant/components/cync/translations/en-GB.json +32 -0
- homeassistant/components/cync/translations/en.json +32 -0
- homeassistant/components/cync/translations/es.json +32 -0
- homeassistant/components/cync/translations/et.json +32 -0
- homeassistant/components/cync/translations/fr.json +32 -0
- homeassistant/components/cync/translations/fy.json +11 -0
- homeassistant/components/cync/translations/ga.json +32 -0
- homeassistant/components/cync/translations/he.json +20 -0
- homeassistant/components/cync/translations/id.json +20 -0
- homeassistant/components/cync/translations/lt.json +32 -0
- homeassistant/components/cync/translations/nl.json +20 -0
- homeassistant/components/cync/translations/pt.json +32 -0
- homeassistant/components/cync/translations/ru.json +32 -0
- homeassistant/components/cync/translations/sk.json +32 -0
- homeassistant/components/cync/translations/zh-Hans.json +32 -0
- homeassistant/components/cync/translations/zh-Hant.json +32 -0
- homeassistant/components/datadog/translations/es.json +1 -1
- homeassistant/components/datadog/translations/id.json +28 -0
- homeassistant/components/datadog/translations/pt.json +1 -1
- homeassistant/components/debugpy/manifest.json +1 -1
- homeassistant/components/deconz/sensor.py +1 -1
- homeassistant/components/deconz/translations/de.json +1 -1
- homeassistant/components/deconz/translations/zh-Hant.json +1 -1
- homeassistant/components/default_config/manifest.json +2 -0
- homeassistant/components/deluge/const.py +2 -0
- homeassistant/components/deluge/coordinator.py +37 -8
- homeassistant/components/deluge/icons.json +12 -0
- homeassistant/components/deluge/sensor.py +12 -0
- homeassistant/components/deluge/strings.json +8 -0
- homeassistant/components/deluge/translations/bg.json +6 -0
- homeassistant/components/deluge/translations/cs.json +8 -0
- homeassistant/components/deluge/translations/de.json +8 -0
- homeassistant/components/deluge/translations/en-GB.json +8 -0
- homeassistant/components/deluge/translations/en.json +8 -0
- homeassistant/components/deluge/translations/es.json +8 -0
- homeassistant/components/deluge/translations/et.json +8 -0
- homeassistant/components/deluge/translations/ga.json +8 -0
- homeassistant/components/deluge/translations/lt.json +8 -0
- homeassistant/components/deluge/translations/nl.json +8 -0
- homeassistant/components/deluge/translations/pt.json +8 -0
- homeassistant/components/deluge/translations/sk.json +8 -0
- homeassistant/components/deluge/translations/zh-Hans.json +8 -0
- homeassistant/components/deluge/translations/zh-Hant.json +8 -0
- homeassistant/components/demo/translations/ar.json +23 -0
- homeassistant/components/derivative/diagnostics.py +23 -0
- homeassistant/components/derivative/manifest.json +2 -1
- homeassistant/components/derivative/sensor.py +50 -3
- homeassistant/components/device_tracker/translations/ar.json +8 -0
- homeassistant/components/device_tracker/translations/mk.json +9 -0
- homeassistant/components/devolo_home_control/translations/fy.json +11 -0
- homeassistant/components/devolo_home_network/translations/de.json +1 -1
- homeassistant/components/devolo_home_network/translations/fy.json +10 -0
- homeassistant/components/discovergy/translations/pt.json +1 -1
- homeassistant/components/dlna_dmr/translations/de.json +1 -1
- homeassistant/components/dnsip/sensor.py +17 -4
- homeassistant/components/doorbird/translations/pt.json +3 -1
- homeassistant/components/drop_connect/translations/ar.json +12 -0
- homeassistant/components/drop_connect/translations/mk.json +11 -0
- homeassistant/components/droplet/__init__.py +37 -0
- homeassistant/components/droplet/config_flow.py +118 -0
- homeassistant/components/droplet/const.py +11 -0
- homeassistant/components/droplet/coordinator.py +84 -0
- homeassistant/components/droplet/icons.json +15 -0
- homeassistant/components/droplet/manifest.json +11 -0
- homeassistant/components/droplet/quality_scale.yaml +72 -0
- homeassistant/components/droplet/sensor.py +131 -0
- homeassistant/components/droplet/strings.json +46 -0
- homeassistant/components/droplet/translations/bg.json +33 -0
- homeassistant/components/droplet/translations/ca.json +17 -0
- homeassistant/components/droplet/translations/cs.json +52 -0
- homeassistant/components/droplet/translations/de.json +52 -0
- homeassistant/components/droplet/translations/el.json +17 -0
- homeassistant/components/droplet/translations/en-GB.json +52 -0
- homeassistant/components/droplet/translations/en.json +52 -0
- homeassistant/components/droplet/translations/es.json +52 -0
- homeassistant/components/droplet/translations/et.json +52 -0
- homeassistant/components/droplet/translations/ga.json +52 -0
- homeassistant/components/droplet/translations/he.json +17 -0
- homeassistant/components/droplet/translations/id.json +17 -0
- homeassistant/components/droplet/translations/lt.json +52 -0
- homeassistant/components/droplet/translations/nl.json +17 -0
- homeassistant/components/droplet/translations/pt.json +52 -0
- homeassistant/components/droplet/translations/sk.json +52 -0
- homeassistant/components/droplet/translations/zh-Hans.json +52 -0
- homeassistant/components/droplet/translations/zh-Hant.json +52 -0
- homeassistant/components/ebusd/__init__.py +5 -1
- homeassistant/components/ecobee/strings.json +2 -6
- homeassistant/components/ecobee/translations/bg.json +0 -3
- homeassistant/components/ecobee/translations/ca.json +0 -3
- homeassistant/components/ecobee/translations/cs.json +2 -6
- homeassistant/components/ecobee/translations/de.json +4 -8
- homeassistant/components/ecobee/translations/el.json +1 -6
- homeassistant/components/ecobee/translations/en-GB.json +2 -6
- homeassistant/components/ecobee/translations/en.json +2 -6
- homeassistant/components/ecobee/translations/es.json +2 -6
- homeassistant/components/ecobee/translations/et.json +2 -6
- homeassistant/components/ecobee/translations/ga.json +1 -9
- homeassistant/components/ecobee/translations/he.json +0 -3
- homeassistant/components/ecobee/translations/hu.json +1 -9
- homeassistant/components/ecobee/translations/it.json +1 -8
- homeassistant/components/ecobee/translations/ja.json +1 -8
- homeassistant/components/ecobee/translations/lt.json +2 -6
- homeassistant/components/ecobee/translations/mk.json +0 -9
- homeassistant/components/ecobee/translations/nl.json +0 -7
- homeassistant/components/ecobee/translations/pt-BR.json +0 -7
- homeassistant/components/ecobee/translations/pt.json +2 -6
- homeassistant/components/ecobee/translations/ru.json +1 -9
- homeassistant/components/ecobee/translations/sk.json +1 -9
- homeassistant/components/ecobee/translations/sv.json +1 -9
- homeassistant/components/ecobee/translations/tr.json +1 -8
- homeassistant/components/ecobee/translations/zh-Hans.json +1 -9
- homeassistant/components/ecobee/translations/zh-Hant.json +2 -6
- homeassistant/components/econet/translations/pt.json +1 -1
- homeassistant/components/ecovacs/image.py +3 -1
- homeassistant/components/ecovacs/manifest.json +1 -1
- homeassistant/components/ecovacs/number.py +28 -1
- homeassistant/components/ecovacs/select.py +5 -1
- homeassistant/components/ecovacs/strings.json +7 -2
- homeassistant/components/ecovacs/translations/ar.json +9 -0
- homeassistant/components/ecovacs/translations/ca.json +0 -1
- homeassistant/components/ecovacs/translations/cs.json +6 -1
- homeassistant/components/ecovacs/translations/de.json +6 -1
- homeassistant/components/ecovacs/translations/el.json +0 -1
- homeassistant/components/ecovacs/translations/en-GB.json +6 -1
- homeassistant/components/ecovacs/translations/en.json +6 -1
- homeassistant/components/ecovacs/translations/es.json +6 -1
- homeassistant/components/ecovacs/translations/et.json +6 -1
- homeassistant/components/ecovacs/translations/fi.json +0 -1
- homeassistant/components/ecovacs/translations/fr.json +0 -1
- homeassistant/components/ecovacs/translations/ga.json +6 -2
- homeassistant/components/ecovacs/translations/hu.json +0 -1
- homeassistant/components/ecovacs/translations/ja.json +0 -1
- homeassistant/components/ecovacs/translations/lt.json +6 -1
- homeassistant/components/ecovacs/translations/pt.json +6 -1
- homeassistant/components/ecovacs/translations/ru.json +3 -0
- homeassistant/components/ecovacs/translations/sk.json +6 -1
- homeassistant/components/ecovacs/translations/sv.json +0 -1
- homeassistant/components/ecovacs/translations/tr.json +0 -1
- homeassistant/components/ecovacs/translations/zh-Hans.json +6 -1
- homeassistant/components/ecovacs/translations/zh-Hant.json +6 -1
- homeassistant/components/ecovacs/util.py +0 -5
- homeassistant/components/ecowitt/manifest.json +1 -1
- homeassistant/components/ecowitt/sensor.py +33 -0
- homeassistant/components/edl21/translations/de.json +1 -1
- homeassistant/components/edl21/translations/uk.json +10 -0
- homeassistant/components/efergy/translations/uk.json +25 -0
- homeassistant/components/eheimdigital/translations/id.json +7 -1
- homeassistant/components/ekeybionyx/__init__.py +24 -0
- homeassistant/components/ekeybionyx/application_credentials.py +14 -0
- homeassistant/components/ekeybionyx/config_flow.py +271 -0
- homeassistant/components/ekeybionyx/const.py +13 -0
- homeassistant/components/ekeybionyx/event.py +70 -0
- homeassistant/components/ekeybionyx/manifest.json +11 -0
- homeassistant/components/ekeybionyx/quality_scale.yaml +92 -0
- homeassistant/components/ekeybionyx/strings.json +66 -0
- homeassistant/components/ekeybionyx/translations/bg.json +26 -0
- homeassistant/components/ekeybionyx/translations/cs.json +66 -0
- homeassistant/components/ekeybionyx/translations/de.json +66 -0
- homeassistant/components/ekeybionyx/translations/el.json +24 -0
- homeassistant/components/ekeybionyx/translations/en-GB.json +66 -0
- homeassistant/components/ekeybionyx/translations/en.json +66 -0
- homeassistant/components/ekeybionyx/translations/es.json +66 -0
- homeassistant/components/ekeybionyx/translations/et.json +66 -0
- homeassistant/components/ekeybionyx/translations/fr.json +32 -0
- homeassistant/components/ekeybionyx/translations/ga.json +66 -0
- homeassistant/components/ekeybionyx/translations/he.json +24 -0
- homeassistant/components/ekeybionyx/translations/id.json +24 -0
- homeassistant/components/ekeybionyx/translations/lt.json +66 -0
- homeassistant/components/ekeybionyx/translations/nl.json +24 -0
- homeassistant/components/ekeybionyx/translations/pt.json +66 -0
- homeassistant/components/ekeybionyx/translations/sk.json +66 -0
- homeassistant/components/ekeybionyx/translations/zh-Hans.json +66 -0
- homeassistant/components/ekeybionyx/translations/zh-Hant.json +66 -0
- homeassistant/components/elevenlabs/translations/id.json +2 -1
- homeassistant/components/elkm1/config_flow.py +85 -3
- homeassistant/components/elkm1/sensor.py +25 -1
- homeassistant/components/elkm1/strings.json +22 -10
- homeassistant/components/elkm1/translations/bg.json +7 -3
- homeassistant/components/elkm1/translations/ca.json +9 -4
- homeassistant/components/elkm1/translations/cs.json +23 -11
- homeassistant/components/elkm1/translations/de.json +27 -15
- homeassistant/components/elkm1/translations/el.json +9 -9
- homeassistant/components/elkm1/translations/en-GB.json +23 -11
- homeassistant/components/elkm1/translations/en.json +23 -11
- homeassistant/components/elkm1/translations/es-419.json +0 -4
- homeassistant/components/elkm1/translations/es.json +21 -9
- homeassistant/components/elkm1/translations/et.json +22 -10
- homeassistant/components/elkm1/translations/fi.json +0 -9
- homeassistant/components/elkm1/translations/fr.json +0 -4
- homeassistant/components/elkm1/translations/fy.json +11 -0
- homeassistant/components/elkm1/translations/ga.json +12 -10
- homeassistant/components/elkm1/translations/he.json +8 -2
- homeassistant/components/elkm1/translations/hu.json +0 -10
- homeassistant/components/elkm1/translations/id.json +6 -4
- homeassistant/components/elkm1/translations/it.json +0 -9
- homeassistant/components/elkm1/translations/ja.json +0 -10
- homeassistant/components/elkm1/translations/ko.json +0 -9
- homeassistant/components/elkm1/translations/lb.json +0 -4
- homeassistant/components/elkm1/translations/lt.json +23 -11
- homeassistant/components/elkm1/translations/nb.json +0 -4
- homeassistant/components/elkm1/translations/nl.json +9 -4
- homeassistant/components/elkm1/translations/pl.json +0 -4
- homeassistant/components/elkm1/translations/pt-BR.json +0 -4
- homeassistant/components/elkm1/translations/pt.json +23 -11
- homeassistant/components/elkm1/translations/ro.json +0 -4
- homeassistant/components/elkm1/translations/ru.json +21 -11
- homeassistant/components/elkm1/translations/sk.json +23 -11
- homeassistant/components/elkm1/translations/sl.json +0 -2
- homeassistant/components/elkm1/translations/sv.json +0 -10
- homeassistant/components/elkm1/translations/tr.json +0 -10
- homeassistant/components/elkm1/translations/uk.json +7 -4
- homeassistant/components/elkm1/translations/vi.json +0 -7
- homeassistant/components/elkm1/translations/zh-Hans.json +15 -3
- homeassistant/components/elkm1/translations/zh-Hant.json +23 -11
- homeassistant/components/elvia/translations/de.json +3 -3
- homeassistant/components/emoncms/manifest.json +1 -1
- homeassistant/components/emoncms/translations/id.json +9 -0
- homeassistant/components/emoncms_history/manifest.json +1 -1
- homeassistant/components/energy/sensor.py +3 -1
- homeassistant/components/energy/translations/sv.json +4 -4
- homeassistant/components/energy/validate.py +2 -0
- homeassistant/components/enocean/manifest.json +1 -1
- homeassistant/components/enphase_envoy/diagnostics.py +0 -1
- homeassistant/components/enphase_envoy/translations/id.json +1 -0
- homeassistant/components/environment_canada/translations/uk.json +7 -0
- homeassistant/components/ephember/climate.py +12 -2
- homeassistant/components/eq3btsmart/__init__.py +1 -1
- homeassistant/components/eq3btsmart/manifest.json +1 -1
- homeassistant/components/eq3btsmart/translations/ar.json +9 -0
- homeassistant/components/esphome/__init__.py +1 -0
- homeassistant/components/esphome/analytics.py +11 -0
- homeassistant/components/esphome/assist_satellite.py +57 -20
- homeassistant/components/esphome/climate.py +38 -5
- homeassistant/components/esphome/config_flow.py +49 -23
- homeassistant/components/esphome/const.py +2 -0
- homeassistant/components/esphome/entry_data.py +47 -12
- homeassistant/components/esphome/icons.json +6 -0
- homeassistant/components/esphome/lock.py +3 -1
- homeassistant/components/esphome/manager.py +12 -2
- homeassistant/components/esphome/manifest.json +1 -1
- homeassistant/components/esphome/select.py +84 -26
- homeassistant/components/esphome/strings.json +7 -6
- homeassistant/components/esphome/translations/ca.json +1 -2
- homeassistant/components/esphome/translations/cs.json +4 -2
- homeassistant/components/esphome/translations/da.json +1 -2
- homeassistant/components/esphome/translations/de.json +5 -4
- homeassistant/components/esphome/translations/el.json +1 -10
- homeassistant/components/esphome/translations/en-GB.json +6 -5
- homeassistant/components/esphome/translations/en.json +6 -5
- homeassistant/components/esphome/translations/es.json +5 -4
- homeassistant/components/esphome/translations/et.json +5 -4
- homeassistant/components/esphome/translations/fi.json +1 -2
- homeassistant/components/esphome/translations/fr.json +7 -7
- homeassistant/components/esphome/translations/ga.json +2 -7
- homeassistant/components/esphome/translations/he.json +4 -4
- homeassistant/components/esphome/translations/hu.json +1 -10
- homeassistant/components/esphome/translations/id.json +1 -2
- homeassistant/components/esphome/translations/it.json +2 -3
- homeassistant/components/esphome/translations/ja.json +1 -3
- homeassistant/components/esphome/translations/ko.json +1 -2
- homeassistant/components/esphome/translations/lt.json +7 -5
- homeassistant/components/esphome/translations/lv.json +1 -2
- homeassistant/components/esphome/translations/mk.json +0 -1
- homeassistant/components/esphome/translations/nb.json +1 -2
- homeassistant/components/esphome/translations/nl.json +2 -4
- homeassistant/components/esphome/translations/pl.json +5 -4
- homeassistant/components/esphome/translations/pt-BR.json +1 -2
- homeassistant/components/esphome/translations/pt.json +8 -6
- homeassistant/components/esphome/translations/ro.json +1 -2
- homeassistant/components/esphome/translations/ru.json +6 -4
- homeassistant/components/esphome/translations/sk.json +4 -3
- homeassistant/components/esphome/translations/sl.json +1 -10
- homeassistant/components/esphome/translations/sv.json +2 -11
- homeassistant/components/esphome/translations/tr.json +1 -3
- homeassistant/components/esphome/translations/uk.json +3 -3
- homeassistant/components/esphome/translations/vi.json +1 -3
- homeassistant/components/esphome/translations/zh-Hans.json +7 -5
- homeassistant/components/esphome/translations/zh-Hant.json +5 -4
- homeassistant/components/eufylife_ble/translations/uk.json +13 -0
- homeassistant/components/evil_genius_labs/manifest.json +1 -1
- homeassistant/components/evohome/__init__.py +3 -3
- homeassistant/components/ezviz/entity.py +12 -6
- homeassistant/components/ezviz/sensor.py +8 -38
- homeassistant/components/ezviz/strings.json +0 -12
- homeassistant/components/ezviz/translations/cs.json +0 -12
- homeassistant/components/ezviz/translations/de.json +0 -12
- homeassistant/components/ezviz/translations/en-GB.json +0 -12
- homeassistant/components/ezviz/translations/en.json +0 -12
- homeassistant/components/ezviz/translations/es.json +0 -12
- homeassistant/components/ezviz/translations/et.json +0 -12
- homeassistant/components/ezviz/translations/ga.json +0 -12
- homeassistant/components/ezviz/translations/it.json +0 -12
- homeassistant/components/ezviz/translations/lt.json +0 -12
- homeassistant/components/ezviz/translations/pt.json +0 -12
- homeassistant/components/ezviz/translations/sk.json +0 -12
- homeassistant/components/ezviz/translations/sv.json +0 -9
- homeassistant/components/ezviz/translations/zh-Hans.json +0 -12
- homeassistant/components/ezviz/translations/zh-Hant.json +0 -12
- homeassistant/components/fan/translations/ca.json +3 -0
- homeassistant/components/fan/translations/id.json +3 -0
- homeassistant/components/feedreader/manifest.json +1 -1
- homeassistant/components/feedreader/translations/es.json +1 -1
- homeassistant/components/fibaro/translations/pt.json +1 -1
- homeassistant/components/file/__init__.py +11 -0
- homeassistant/components/file/const.py +4 -0
- homeassistant/components/file/icons.json +7 -0
- homeassistant/components/file/services.py +88 -0
- homeassistant/components/file/services.yaml +14 -0
- homeassistant/components/file/strings.json +31 -0
- homeassistant/components/file/translations/bg.json +17 -0
- homeassistant/components/file/translations/cs.json +31 -0
- homeassistant/components/file/translations/de.json +31 -0
- homeassistant/components/file/translations/en-GB.json +31 -0
- homeassistant/components/file/translations/en.json +31 -0
- homeassistant/components/file/translations/es.json +31 -0
- homeassistant/components/file/translations/et.json +31 -0
- homeassistant/components/file/translations/fr.json +31 -0
- homeassistant/components/file/translations/ga.json +31 -0
- homeassistant/components/file/translations/lt.json +31 -0
- homeassistant/components/file/translations/pt.json +31 -0
- homeassistant/components/file/translations/ru.json +31 -0
- homeassistant/components/file/translations/sk.json +31 -0
- homeassistant/components/file/translations/zh-Hans.json +31 -0
- homeassistant/components/file/translations/zh-Hant.json +31 -0
- homeassistant/components/fivem/translations/uk.json +7 -0
- homeassistant/components/fjaraskupan/manifest.json +1 -1
- homeassistant/components/fjaraskupan/translations/uk.json +15 -0
- homeassistant/components/flexit/climate.py +7 -7
- homeassistant/components/flexit_bacnet/sensor.py +5 -0
- homeassistant/components/flick_electric/translations/zh-Hant.json +2 -2
- homeassistant/components/flipr/translations/pt.json +1 -1
- homeassistant/components/flipr/translations/uk.json +21 -0
- homeassistant/components/flo/coordinator.py +1 -1
- homeassistant/components/flux_led/translations/uk.json +12 -0
- homeassistant/components/foscam/__init__.py +2 -1
- homeassistant/components/foscam/coordinator.py +12 -2
- homeassistant/components/foscam/entity.py +2 -0
- homeassistant/components/foscam/icons.json +8 -0
- homeassistant/components/foscam/manifest.json +1 -1
- homeassistant/components/foscam/number.py +93 -0
- homeassistant/components/foscam/strings.json +8 -0
- homeassistant/components/foscam/switch.py +0 -2
- homeassistant/components/foscam/translations/cs.json +8 -0
- homeassistant/components/foscam/translations/de.json +8 -0
- homeassistant/components/foscam/translations/en-GB.json +8 -0
- homeassistant/components/foscam/translations/en.json +8 -0
- homeassistant/components/foscam/translations/es.json +8 -0
- homeassistant/components/foscam/translations/et.json +8 -0
- homeassistant/components/foscam/translations/ga.json +8 -0
- homeassistant/components/foscam/translations/it.json +10 -0
- homeassistant/components/foscam/translations/lt.json +8 -0
- homeassistant/components/foscam/translations/pt.json +8 -0
- homeassistant/components/foscam/translations/sk.json +8 -0
- homeassistant/components/foscam/translations/zh-Hans.json +8 -0
- homeassistant/components/foscam/translations/zh-Hant.json +8 -0
- homeassistant/components/freebox/translations/de.json +1 -1
- homeassistant/components/fritz/coordinator.py +2 -2
- homeassistant/components/fritz/diagnostics.py +3 -0
- homeassistant/components/fritz/entity.py +1 -1
- homeassistant/components/fritz/manifest.json +2 -2
- homeassistant/components/fritz/sensor.py +18 -0
- homeassistant/components/fritz/services.py +4 -3
- homeassistant/components/fritz/strings.json +7 -4
- homeassistant/components/fritz/switch.py +1 -1
- homeassistant/components/fritz/translations/bg.json +3 -0
- homeassistant/components/fritz/translations/cs.json +3 -0
- homeassistant/components/fritz/translations/de.json +3 -0
- homeassistant/components/fritz/translations/en-GB.json +3 -0
- homeassistant/components/fritz/translations/en.json +3 -0
- homeassistant/components/fritz/translations/es.json +3 -0
- homeassistant/components/fritz/translations/et.json +3 -0
- homeassistant/components/fritz/translations/ga.json +3 -0
- homeassistant/components/fritz/translations/it.json +3 -0
- homeassistant/components/fritz/translations/lt.json +3 -0
- homeassistant/components/fritz/translations/nl.json +3 -0
- homeassistant/components/fritz/translations/pt.json +3 -0
- homeassistant/components/fritz/translations/ru.json +9 -2
- homeassistant/components/fritz/translations/sk.json +3 -0
- homeassistant/components/fritz/translations/zh-Hans.json +3 -0
- homeassistant/components/fritz/translations/zh-Hant.json +3 -0
- homeassistant/components/fritzbox/button.py +1 -1
- homeassistant/components/fritzbox/manifest.json +1 -1
- homeassistant/components/fritzbox/strings.json +2 -2
- homeassistant/components/fritzbox/translations/fr.json +2 -1
- homeassistant/components/fritzbox_callmonitor/__init__.py +2 -2
- homeassistant/components/fritzbox_callmonitor/const.py +1 -1
- homeassistant/components/fritzbox_callmonitor/manifest.json +2 -2
- homeassistant/components/fritzbox_callmonitor/strings.json +1 -1
- homeassistant/components/fronius/translations/de.json +4 -4
- homeassistant/components/fronius/translations/mk.json +1 -0
- homeassistant/components/fronius/translations/pt.json +4 -4
- homeassistant/components/fronius/translations/vi.json +9 -0
- homeassistant/components/frontend/__init__.py +35 -13
- homeassistant/components/frontend/manifest.json +1 -1
- homeassistant/components/fully_kiosk/translations/uk.json +17 -0
- homeassistant/components/fyta/translations/pt.json +1 -1
- homeassistant/components/gardena_bluetooth/translations/de.json +1 -1
- homeassistant/components/generic_thermostat/manifest.json +2 -1
- homeassistant/components/generic_thermostat/translations/ar.json +22 -0
- homeassistant/components/generic_thermostat/translations/mk.json +20 -0
- homeassistant/components/geniushub/__init__.py +1 -1
- homeassistant/components/geniushub/entity.py +4 -4
- homeassistant/components/geocaching/entity.py +39 -0
- homeassistant/components/geocaching/icons.json +18 -0
- homeassistant/components/geocaching/sensor.py +95 -14
- homeassistant/components/geocaching/strings.json +30 -5
- homeassistant/components/geocaching/translations/bg.json +13 -0
- homeassistant/components/geocaching/translations/cs.json +20 -5
- homeassistant/components/geocaching/translations/de.json +20 -5
- homeassistant/components/geocaching/translations/en-GB.json +20 -5
- homeassistant/components/geocaching/translations/en.json +20 -5
- homeassistant/components/geocaching/translations/es.json +20 -5
- homeassistant/components/geocaching/translations/et.json +20 -5
- homeassistant/components/geocaching/translations/ga.json +20 -5
- homeassistant/components/geocaching/translations/lt.json +20 -5
- homeassistant/components/geocaching/translations/nl.json +20 -5
- homeassistant/components/geocaching/translations/pt.json +20 -5
- homeassistant/components/geocaching/translations/ru.json +14 -5
- homeassistant/components/geocaching/translations/sk.json +20 -5
- homeassistant/components/geocaching/translations/zh-Hans.json +20 -5
- homeassistant/components/geocaching/translations/zh-Hant.json +20 -5
- homeassistant/components/github/translations/pt.json +1 -1
- homeassistant/components/go2rtc/__init__.py +30 -1
- homeassistant/components/google/__init__.py +0 -8
- homeassistant/components/google/config_flow.py +7 -3
- homeassistant/components/google_cloud/__init__.py +0 -6
- homeassistant/components/google_cloud/config_flow.py +2 -2
- homeassistant/components/google_cloud/strings.json +1 -1
- homeassistant/components/google_cloud/translations/pt.json +1 -0
- homeassistant/components/google_cloud/translations/uk.json +32 -0
- homeassistant/components/google_generative_ai_conversation/__init__.py +18 -18
- homeassistant/components/google_generative_ai_conversation/ai_task.py +117 -6
- homeassistant/components/google_generative_ai_conversation/const.py +1 -0
- homeassistant/components/google_generative_ai_conversation/entity.py +171 -38
- homeassistant/components/google_generative_ai_conversation/manifest.json +2 -2
- homeassistant/components/google_generative_ai_conversation/services.yaml +0 -4
- homeassistant/components/google_generative_ai_conversation/strings.json +8 -13
- homeassistant/components/google_generative_ai_conversation/translations/bg.json +1 -6
- homeassistant/components/google_generative_ai_conversation/translations/ca.json +1 -6
- homeassistant/components/google_generative_ai_conversation/translations/cs.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/de.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/el.json +1 -14
- homeassistant/components/google_generative_ai_conversation/translations/en-GB.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/en.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/es.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/et.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/fi.json +1 -7
- homeassistant/components/google_generative_ai_conversation/translations/fr.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/ga.json +4 -11
- homeassistant/components/google_generative_ai_conversation/translations/he.json +2 -13
- homeassistant/components/google_generative_ai_conversation/translations/hu.json +1 -14
- homeassistant/components/google_generative_ai_conversation/translations/id.json +30 -9
- homeassistant/components/google_generative_ai_conversation/translations/it.json +1 -7
- homeassistant/components/google_generative_ai_conversation/translations/ja.json +1 -7
- homeassistant/components/google_generative_ai_conversation/translations/lt.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/nb.json +1 -6
- homeassistant/components/google_generative_ai_conversation/translations/nl.json +0 -5
- homeassistant/components/google_generative_ai_conversation/translations/pl.json +1 -7
- homeassistant/components/google_generative_ai_conversation/translations/pt-BR.json +1 -11
- homeassistant/components/google_generative_ai_conversation/translations/pt.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/ru.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/sk.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/sl.json +1 -14
- homeassistant/components/google_generative_ai_conversation/translations/sv.json +1 -14
- homeassistant/components/google_generative_ai_conversation/translations/tr.json +1 -14
- homeassistant/components/google_generative_ai_conversation/translations/zh-Hans.json +5 -10
- homeassistant/components/google_generative_ai_conversation/translations/zh-Hant.json +5 -10
- homeassistant/components/google_mail/services.py +1 -1
- homeassistant/components/google_photos/media_source.py +1 -2
- homeassistant/components/google_photos/translations/uk.json +51 -0
- homeassistant/components/govee_light_local/manifest.json +1 -1
- homeassistant/components/group/translations/ar.json +8 -0
- homeassistant/components/group/translations/mk.json +1 -0
- homeassistant/components/growatt_server/translations/ru.json +6 -0
- homeassistant/components/guardian/translations/de.json +1 -1
- homeassistant/components/habitica/binary_sensor.py +0 -2
- homeassistant/components/habitica/const.py +1 -0
- homeassistant/components/habitica/manifest.json +1 -1
- homeassistant/components/habitica/sensor.py +22 -0
- homeassistant/components/habitica/services.py +11 -0
- homeassistant/components/habitica/services.yaml +11 -0
- homeassistant/components/habitica/strings.json +42 -1
- homeassistant/components/habitica/translations/ca.json +7 -0
- homeassistant/components/habitica/translations/cs.json +41 -0
- homeassistant/components/habitica/translations/de.json +41 -0
- homeassistant/components/habitica/translations/el.json +17 -0
- homeassistant/components/habitica/translations/en-GB.json +41 -0
- homeassistant/components/habitica/translations/en.json +41 -0
- homeassistant/components/habitica/translations/es.json +41 -0
- homeassistant/components/habitica/translations/et.json +41 -0
- homeassistant/components/habitica/translations/ga.json +41 -0
- homeassistant/components/habitica/translations/it.json +1 -0
- homeassistant/components/habitica/translations/lt.json +41 -0
- homeassistant/components/habitica/translations/pt.json +41 -0
- homeassistant/components/habitica/translations/sk.json +41 -0
- homeassistant/components/habitica/translations/zh-Hans.json +41 -0
- homeassistant/components/habitica/translations/zh-Hant.json +41 -0
- homeassistant/components/habitica/util.py +9 -0
- homeassistant/components/hassio/__init__.py +2 -1
- homeassistant/components/hassio/const.py +21 -0
- homeassistant/components/hassio/coordinator.py +13 -0
- homeassistant/components/hassio/http.py +1 -1
- homeassistant/components/hassio/ingress.py +21 -14
- homeassistant/components/hassio/issues.py +30 -5
- homeassistant/components/hassio/manifest.json +1 -1
- homeassistant/components/hassio/repairs.py +3 -13
- homeassistant/components/hassio/strings.json +16 -4
- homeassistant/components/hassio/switch.py +90 -0
- homeassistant/components/hassio/translations/bg.json +3 -0
- homeassistant/components/hassio/translations/ca.json +0 -2
- homeassistant/components/hassio/translations/cs.json +15 -3
- homeassistant/components/hassio/translations/de.json +23 -11
- homeassistant/components/hassio/translations/el.json +8 -8
- homeassistant/components/hassio/translations/en-GB.json +16 -4
- homeassistant/components/hassio/translations/en.json +16 -4
- homeassistant/components/hassio/translations/es.json +16 -4
- homeassistant/components/hassio/translations/et.json +16 -4
- homeassistant/components/hassio/translations/fi.json +0 -2
- homeassistant/components/hassio/translations/fr.json +12 -8
- homeassistant/components/hassio/translations/fy.json +3 -0
- homeassistant/components/hassio/translations/ga.json +12 -8
- homeassistant/components/hassio/translations/he.json +16 -4
- homeassistant/components/hassio/translations/hu.json +0 -8
- homeassistant/components/hassio/translations/id.json +29 -8
- homeassistant/components/hassio/translations/it.json +0 -2
- homeassistant/components/hassio/translations/ja.json +0 -8
- homeassistant/components/hassio/translations/ko.json +0 -7
- homeassistant/components/hassio/translations/lt.json +16 -4
- homeassistant/components/hassio/translations/mk.json +8 -0
- homeassistant/components/hassio/translations/nb.json +0 -2
- homeassistant/components/hassio/translations/nl.json +8 -8
- homeassistant/components/hassio/translations/pl.json +0 -2
- homeassistant/components/hassio/translations/pt-BR.json +0 -2
- homeassistant/components/hassio/translations/pt.json +16 -4
- homeassistant/components/hassio/translations/ro.json +0 -2
- homeassistant/components/hassio/translations/ru.json +16 -4
- homeassistant/components/hassio/translations/sk.json +15 -3
- homeassistant/components/hassio/translations/sl.json +0 -8
- homeassistant/components/hassio/translations/sv.json +0 -8
- homeassistant/components/hassio/translations/tr.json +0 -8
- homeassistant/components/hassio/translations/uk.json +3 -2
- homeassistant/components/hassio/translations/vi.json +0 -8
- homeassistant/components/hassio/translations/zh-Hans.json +16 -4
- homeassistant/components/hassio/translations/zh-Hant.json +16 -4
- homeassistant/components/heos/media_player.py +2 -2
- homeassistant/components/here_travel_time/__init__.py +31 -1
- homeassistant/components/here_travel_time/sensor.py +1 -1
- homeassistant/components/here_travel_time/strings.json +6 -0
- homeassistant/components/here_travel_time/translations/cs.json +6 -0
- homeassistant/components/here_travel_time/translations/de.json +6 -0
- homeassistant/components/here_travel_time/translations/en-GB.json +6 -0
- homeassistant/components/here_travel_time/translations/en.json +6 -0
- homeassistant/components/here_travel_time/translations/es.json +6 -0
- homeassistant/components/here_travel_time/translations/et.json +6 -0
- homeassistant/components/here_travel_time/translations/fr.json +2 -1
- homeassistant/components/here_travel_time/translations/ga.json +6 -0
- homeassistant/components/here_travel_time/translations/lt.json +6 -0
- homeassistant/components/here_travel_time/translations/pt.json +6 -0
- homeassistant/components/here_travel_time/translations/sk.json +6 -0
- homeassistant/components/here_travel_time/translations/zh-Hans.json +6 -0
- homeassistant/components/here_travel_time/translations/zh-Hant.json +6 -0
- homeassistant/components/history_stats/config_flow.py +65 -29
- homeassistant/components/history_stats/diagnostics.py +23 -0
- homeassistant/components/history_stats/strings.json +10 -0
- homeassistant/components/history_stats/translations/bg.json +6 -0
- homeassistant/components/history_stats/translations/ca.json +10 -0
- homeassistant/components/history_stats/translations/cs.json +10 -0
- homeassistant/components/history_stats/translations/de.json +10 -0
- homeassistant/components/history_stats/translations/el.json +10 -0
- homeassistant/components/history_stats/translations/en-GB.json +10 -0
- homeassistant/components/history_stats/translations/en.json +10 -0
- homeassistant/components/history_stats/translations/es.json +10 -0
- homeassistant/components/history_stats/translations/et.json +10 -0
- homeassistant/components/history_stats/translations/ga.json +10 -0
- homeassistant/components/history_stats/translations/he.json +10 -0
- homeassistant/components/history_stats/translations/it.json +10 -0
- homeassistant/components/history_stats/translations/lt.json +10 -0
- homeassistant/components/history_stats/translations/pt.json +10 -0
- homeassistant/components/history_stats/translations/ru.json +10 -0
- homeassistant/components/history_stats/translations/sk.json +10 -0
- homeassistant/components/history_stats/translations/zh-Hans.json +10 -0
- homeassistant/components/history_stats/translations/zh-Hant.json +10 -0
- homeassistant/components/holiday/manifest.json +1 -1
- homeassistant/components/holiday/translations/zh-Hant.json +2 -2
- homeassistant/components/home_connect/__init__.py +0 -1
- homeassistant/components/home_connect/application_credentials.py +0 -10
- homeassistant/components/home_connect/coordinator.py +0 -14
- homeassistant/components/home_connect/icons.json +8 -8
- homeassistant/components/home_connect/strings.json +0 -5
- homeassistant/components/home_connect/translations/ca.json +0 -5
- homeassistant/components/home_connect/translations/cs.json +0 -5
- homeassistant/components/home_connect/translations/de.json +0 -5
- homeassistant/components/home_connect/translations/el.json +0 -5
- homeassistant/components/home_connect/translations/en-GB.json +0 -5
- homeassistant/components/home_connect/translations/en.json +0 -5
- homeassistant/components/home_connect/translations/es.json +0 -5
- homeassistant/components/home_connect/translations/et.json +0 -5
- homeassistant/components/home_connect/translations/fr.json +0 -5
- homeassistant/components/home_connect/translations/ga.json +0 -5
- homeassistant/components/home_connect/translations/hu.json +0 -5
- homeassistant/components/home_connect/translations/it.json +0 -5
- homeassistant/components/home_connect/translations/ja.json +0 -5
- homeassistant/components/home_connect/translations/lt.json +0 -5
- homeassistant/components/home_connect/translations/nl.json +0 -5
- homeassistant/components/home_connect/translations/pt.json +3 -8
- homeassistant/components/home_connect/translations/ru.json +0 -5
- homeassistant/components/home_connect/translations/sk.json +0 -5
- homeassistant/components/home_connect/translations/sv.json +0 -5
- homeassistant/components/home_connect/translations/tr.json +0 -5
- homeassistant/components/home_connect/translations/zh-Hans.json +0 -5
- homeassistant/components/home_connect/translations/zh-Hant.json +0 -5
- homeassistant/components/homeassistant/__init__.py +1 -1
- homeassistant/components/homeassistant/exposed_entities.py +1 -1
- homeassistant/components/homeassistant/scene.py +1 -1
- homeassistant/components/homeassistant/translations/id.json +8 -0
- homeassistant/components/homeassistant/translations/uk.json +4 -0
- homeassistant/components/homeassistant_connect_zbt2/__init__.py +71 -0
- homeassistant/components/homeassistant_connect_zbt2/config_flow.py +213 -0
- homeassistant/components/homeassistant_connect_zbt2/const.py +19 -0
- homeassistant/components/homeassistant_connect_zbt2/hardware.py +42 -0
- homeassistant/components/homeassistant_connect_zbt2/manifest.json +18 -0
- homeassistant/components/homeassistant_connect_zbt2/quality_scale.yaml +68 -0
- homeassistant/components/homeassistant_connect_zbt2/strings.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/bg.json +148 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/ca.json +138 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/cs.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/de.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/el.json +160 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/en-GB.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/en.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/es.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/et.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/fr.json +174 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/ga.json +222 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/he.json +159 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/id.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/lt.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/mk.json +80 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/nl.json +154 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/pl.json +49 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/pt.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/ru.json +178 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/sk.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/zh-Hans.json +222 -0
- homeassistant/components/homeassistant_connect_zbt2/translations/zh-Hant.json +238 -0
- homeassistant/components/homeassistant_connect_zbt2/update.py +215 -0
- homeassistant/components/homeassistant_connect_zbt2/util.py +22 -0
- homeassistant/components/homeassistant_hardware/firmware_config_flow.py +342 -290
- homeassistant/components/homeassistant_hardware/manifest.json +1 -1
- homeassistant/components/homeassistant_hardware/strings.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/bg.json +40 -2
- homeassistant/components/homeassistant_hardware/translations/ca.json +0 -15
- homeassistant/components/homeassistant_hardware/translations/cs.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/de.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/el.json +0 -19
- homeassistant/components/homeassistant_hardware/translations/en-GB.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/en.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/es.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/et.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/fr.json +11 -12
- homeassistant/components/homeassistant_hardware/translations/ga.json +30 -14
- homeassistant/components/homeassistant_hardware/translations/he.json +0 -19
- homeassistant/components/homeassistant_hardware/translations/hu.json +0 -19
- homeassistant/components/homeassistant_hardware/translations/id.json +50 -8
- homeassistant/components/homeassistant_hardware/translations/it.json +0 -12
- homeassistant/components/homeassistant_hardware/translations/ja.json +0 -19
- homeassistant/components/homeassistant_hardware/translations/ko.json +0 -16
- homeassistant/components/homeassistant_hardware/translations/lt.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/mk.json +40 -2
- homeassistant/components/homeassistant_hardware/translations/nl.json +9 -9
- homeassistant/components/homeassistant_hardware/translations/pl.json +0 -12
- homeassistant/components/homeassistant_hardware/translations/pt.json +47 -10
- homeassistant/components/homeassistant_hardware/translations/ru.json +46 -9
- homeassistant/components/homeassistant_hardware/translations/sk.json +45 -8
- homeassistant/components/homeassistant_hardware/translations/sv.json +0 -19
- homeassistant/components/homeassistant_hardware/translations/tr.json +0 -16
- homeassistant/components/homeassistant_hardware/translations/zh-Hans.json +34 -14
- homeassistant/components/homeassistant_hardware/translations/zh-Hant.json +46 -9
- homeassistant/components/homeassistant_hardware/update.py +8 -3
- homeassistant/components/homeassistant_hardware/util.py +22 -5
- homeassistant/components/homeassistant_sky_connect/config_flow.py +1 -1
- homeassistant/components/homeassistant_sky_connect/strings.json +86 -14
- homeassistant/components/homeassistant_sky_connect/translations/bg.json +86 -4
- homeassistant/components/homeassistant_sky_connect/translations/ca.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/cs.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/de.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/el.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/en-GB.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/en.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/es.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/et.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/fi.json +2 -4
- homeassistant/components/homeassistant_sky_connect/translations/fr.json +24 -16
- homeassistant/components/homeassistant_sky_connect/translations/ga.json +66 -10
- homeassistant/components/homeassistant_sky_connect/translations/he.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/hu.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/id.json +96 -18
- homeassistant/components/homeassistant_sky_connect/translations/it.json +2 -4
- homeassistant/components/homeassistant_sky_connect/translations/ja.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/ko.json +2 -12
- homeassistant/components/homeassistant_sky_connect/translations/lt.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/mk.json +76 -0
- homeassistant/components/homeassistant_sky_connect/translations/nl.json +22 -4
- homeassistant/components/homeassistant_sky_connect/translations/pl.json +2 -4
- homeassistant/components/homeassistant_sky_connect/translations/pt.json +94 -22
- homeassistant/components/homeassistant_sky_connect/translations/ru.json +92 -20
- homeassistant/components/homeassistant_sky_connect/translations/sk.json +90 -18
- homeassistant/components/homeassistant_sky_connect/translations/sv.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/tr.json +2 -8
- homeassistant/components/homeassistant_sky_connect/translations/zh-Hans.json +72 -16
- homeassistant/components/homeassistant_sky_connect/translations/zh-Hant.json +92 -20
- homeassistant/components/homeassistant_sky_connect/update.py +2 -1
- homeassistant/components/homeassistant_yellow/config_flow.py +9 -3
- homeassistant/components/homeassistant_yellow/strings.json +43 -7
- homeassistant/components/homeassistant_yellow/translations/bg.json +39 -3
- homeassistant/components/homeassistant_yellow/translations/ca.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/cs.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/de.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/el.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/en-GB.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/en.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/es.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/et.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/fa.json +11 -0
- homeassistant/components/homeassistant_yellow/translations/fr.json +12 -8
- homeassistant/components/homeassistant_yellow/translations/ga.json +33 -5
- homeassistant/components/homeassistant_yellow/translations/he.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/hu.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/id.json +49 -9
- homeassistant/components/homeassistant_yellow/translations/it.json +1 -2
- homeassistant/components/homeassistant_yellow/translations/ja.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/ko.json +0 -2
- homeassistant/components/homeassistant_yellow/translations/lt.json +46 -10
- homeassistant/components/homeassistant_yellow/translations/mk.json +41 -0
- homeassistant/components/homeassistant_yellow/translations/nl.json +11 -2
- homeassistant/components/homeassistant_yellow/translations/pt.json +47 -11
- homeassistant/components/homeassistant_yellow/translations/ru.json +40 -10
- homeassistant/components/homeassistant_yellow/translations/sk.json +45 -9
- homeassistant/components/homeassistant_yellow/translations/sv.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/tr.json +1 -4
- homeassistant/components/homeassistant_yellow/translations/zh-Hans.json +36 -8
- homeassistant/components/homeassistant_yellow/translations/zh-Hant.json +46 -10
- homeassistant/components/homeassistant_yellow/update.py +2 -1
- homeassistant/components/homee/alarm_control_panel.py +18 -7
- homeassistant/components/homee/binary_sensor.py +20 -8
- homeassistant/components/homee/button.py +16 -6
- homeassistant/components/homee/climate.py +16 -6
- homeassistant/components/homee/cover.py +14 -6
- homeassistant/components/homee/event.py +16 -6
- homeassistant/components/homee/fan.py +16 -6
- homeassistant/components/homee/helpers.py +31 -0
- homeassistant/components/homee/light.py +15 -5
- homeassistant/components/homee/lock.py +18 -8
- homeassistant/components/homee/manifest.json +1 -1
- homeassistant/components/homee/number.py +16 -6
- homeassistant/components/homee/quality_scale.yaml +1 -1
- homeassistant/components/homee/select.py +16 -6
- homeassistant/components/homee/sensor.py +40 -23
- homeassistant/components/homee/siren.py +18 -7
- homeassistant/components/homee/switch.py +25 -16
- homeassistant/components/homee/translations/fy.json +14 -0
- homeassistant/components/homee/translations/id.json +14 -0
- homeassistant/components/homee/translations/pt.json +1 -1
- homeassistant/components/homee/valve.py +16 -6
- homeassistant/components/homekit/type_switches.py +56 -4
- homeassistant/components/homekit_controller/connection.py +41 -21
- homeassistant/components/homekit_controller/manifest.json +1 -1
- homeassistant/components/homekit_controller/translations/ar.json +12 -0
- homeassistant/components/homekit_controller/translations/mk.json +11 -0
- homeassistant/components/homekit_controller/translations/select.ar.json +8 -0
- homeassistant/components/homekit_controller/utils.py +1 -1
- homeassistant/components/homematic/strings.json +5 -5
- homeassistant/components/homematic/translations/fr.json +1 -0
- homeassistant/components/homematic/translations/ru.json +5 -0
- homeassistant/components/homematicip_cloud/services.py +1 -1
- homeassistant/components/homewizard/number.py +1 -1
- homeassistant/components/homewizard/sensor.py +11 -8
- homeassistant/components/honeywell/strings.json +1 -1
- homeassistant/components/honeywell/translations/ar.json +15 -0
- homeassistant/components/honeywell/translations/cs.json +1 -1
- homeassistant/components/honeywell/translations/de.json +1 -1
- homeassistant/components/honeywell/translations/el.json +0 -3
- homeassistant/components/honeywell/translations/en-GB.json +1 -1
- homeassistant/components/honeywell/translations/en.json +1 -1
- homeassistant/components/honeywell/translations/es.json +1 -1
- homeassistant/components/honeywell/translations/fi.json +0 -3
- homeassistant/components/honeywell/translations/ga.json +0 -3
- homeassistant/components/honeywell/translations/gl.json +0 -3
- homeassistant/components/honeywell/translations/hu.json +0 -3
- homeassistant/components/honeywell/translations/ja.json +0 -3
- homeassistant/components/honeywell/translations/lt.json +1 -1
- homeassistant/components/honeywell/translations/sk.json +1 -1
- homeassistant/components/honeywell/translations/sv.json +0 -3
- homeassistant/components/honeywell/translations/tr.json +0 -3
- homeassistant/components/honeywell/translations/zh-Hans.json +1 -1
- homeassistant/components/html5/translations/pt.json +1 -1
- homeassistant/components/html5/translations/uk.json +29 -0
- homeassistant/components/huawei_lte/quality_scale.yaml +88 -0
- homeassistant/components/hue/event.py +28 -3
- homeassistant/components/hue/manifest.json +2 -2
- homeassistant/components/hue/services.py +1 -1
- homeassistant/components/hue/strings.json +1 -1
- homeassistant/components/hue/v2/binary_sensor.py +132 -5
- homeassistant/components/hue/v2/device.py +7 -4
- homeassistant/components/hue/v2/group.py +11 -2
- homeassistant/components/hue/v2/helpers.py +6 -5
- homeassistant/components/hue/v2/light.py +25 -15
- homeassistant/components/hue/v2/sensor.py +67 -2
- homeassistant/components/humidifier/translations/ar.json +14 -0
- homeassistant/components/humidifier/translations/mk.json +13 -0
- homeassistant/components/hunterdouglas_powerview/manifest.json +1 -1
- homeassistant/components/husqvarna_automower/coordinator.py +19 -20
- homeassistant/components/husqvarna_automower/translations/da.json +16 -0
- homeassistant/components/husqvarna_automower/translations/id.json +18 -0
- homeassistant/components/husqvarna_automower/translations/pt.json +1 -1
- homeassistant/components/husqvarna_automower_ble/config_flow.py +43 -35
- homeassistant/components/husqvarna_automower_ble/translations/id.json +4 -0
- homeassistant/components/icloud/manifest.json +1 -1
- homeassistant/components/icloud/strings.json +8 -7
- homeassistant/components/icloud/translations/bg.json +3 -0
- homeassistant/components/icloud/translations/ca.json +3 -6
- homeassistant/components/icloud/translations/cs.json +11 -10
- homeassistant/components/icloud/translations/da.json +1 -4
- homeassistant/components/icloud/translations/de.json +10 -9
- homeassistant/components/icloud/translations/el.json +3 -8
- homeassistant/components/icloud/translations/en-GB.json +11 -10
- homeassistant/components/icloud/translations/en.json +11 -10
- homeassistant/components/icloud/translations/es-419.json +1 -6
- homeassistant/components/icloud/translations/es.json +11 -10
- homeassistant/components/icloud/translations/et.json +11 -10
- homeassistant/components/icloud/translations/fi.json +1 -5
- homeassistant/components/icloud/translations/fr.json +3 -8
- homeassistant/components/icloud/translations/ga.json +2 -8
- homeassistant/components/icloud/translations/he.json +3 -4
- homeassistant/components/icloud/translations/hu.json +1 -10
- homeassistant/components/icloud/translations/id.json +2 -7
- homeassistant/components/icloud/translations/it.json +1 -9
- homeassistant/components/icloud/translations/ja.json +1 -9
- homeassistant/components/icloud/translations/ko.json +1 -5
- homeassistant/components/icloud/translations/lb.json +1 -4
- homeassistant/components/icloud/translations/lt.json +11 -10
- homeassistant/components/icloud/translations/mk.json +14 -0
- homeassistant/components/icloud/translations/nb.json +1 -4
- homeassistant/components/icloud/translations/nl.json +2 -7
- homeassistant/components/icloud/translations/pl.json +1 -4
- homeassistant/components/icloud/translations/pt-BR.json +1 -5
- homeassistant/components/icloud/translations/pt.json +12 -11
- homeassistant/components/icloud/translations/ro.json +1 -4
- homeassistant/components/icloud/translations/ru.json +11 -10
- homeassistant/components/icloud/translations/sk.json +11 -10
- homeassistant/components/icloud/translations/sl.json +1 -5
- homeassistant/components/icloud/translations/sv.json +1 -10
- homeassistant/components/icloud/translations/tr.json +1 -10
- homeassistant/components/icloud/translations/uk.json +1 -5
- homeassistant/components/icloud/translations/vi.json +2 -6
- homeassistant/components/icloud/translations/zh-Hans.json +10 -9
- homeassistant/components/icloud/translations/zh-Hant.json +11 -10
- homeassistant/components/image/__init__.py +14 -0
- homeassistant/components/image_upload/__init__.py +2 -2
- homeassistant/components/image_upload/const.py +1 -0
- homeassistant/components/image_upload/media_source.py +13 -2
- homeassistant/components/imap/translations/ar.json +7 -0
- homeassistant/components/imeon_inverter/const.py +8 -0
- homeassistant/components/imeon_inverter/icons.json +5 -0
- homeassistant/components/imeon_inverter/manifest.json +1 -1
- homeassistant/components/imeon_inverter/select.py +72 -0
- homeassistant/components/imeon_inverter/strings.json +12 -1
- homeassistant/components/imeon_inverter/translations/bg.json +9 -0
- homeassistant/components/imeon_inverter/translations/cs.json +12 -1
- homeassistant/components/imeon_inverter/translations/de.json +12 -1
- homeassistant/components/imeon_inverter/translations/en-GB.json +12 -1
- homeassistant/components/imeon_inverter/translations/en.json +12 -1
- homeassistant/components/imeon_inverter/translations/es.json +12 -1
- homeassistant/components/imeon_inverter/translations/et.json +12 -1
- homeassistant/components/imeon_inverter/translations/fr.json +0 -1
- homeassistant/components/imeon_inverter/translations/fy.json +11 -0
- homeassistant/components/imeon_inverter/translations/ga.json +12 -1
- homeassistant/components/imeon_inverter/translations/id.json +10 -0
- homeassistant/components/imeon_inverter/translations/it.json +10 -0
- homeassistant/components/imeon_inverter/translations/lt.json +12 -1
- homeassistant/components/imeon_inverter/translations/pt.json +12 -1
- homeassistant/components/imeon_inverter/translations/sk.json +12 -1
- homeassistant/components/imeon_inverter/translations/zh-Hans.json +12 -1
- homeassistant/components/imeon_inverter/translations/zh-Hant.json +12 -1
- homeassistant/components/imgw_pib/manifest.json +1 -1
- homeassistant/components/immich/media_source.py +1 -2
- homeassistant/components/improv_ble/strings.json +1 -1
- homeassistant/components/improv_ble/translations/ca.json +0 -1
- homeassistant/components/improv_ble/translations/cs.json +1 -1
- homeassistant/components/improv_ble/translations/de.json +5 -5
- homeassistant/components/improv_ble/translations/el.json +0 -1
- homeassistant/components/improv_ble/translations/en-GB.json +1 -1
- homeassistant/components/improv_ble/translations/en.json +1 -1
- homeassistant/components/improv_ble/translations/es.json +1 -1
- homeassistant/components/improv_ble/translations/et.json +1 -1
- homeassistant/components/improv_ble/translations/fi.json +0 -1
- homeassistant/components/improv_ble/translations/fr.json +1 -1
- homeassistant/components/improv_ble/translations/fy.json +7 -0
- homeassistant/components/improv_ble/translations/ga.json +0 -1
- homeassistant/components/improv_ble/translations/gl.json +1 -2
- homeassistant/components/improv_ble/translations/he.json +0 -1
- homeassistant/components/improv_ble/translations/hu.json +0 -1
- homeassistant/components/improv_ble/translations/id.json +0 -1
- homeassistant/components/improv_ble/translations/it.json +0 -1
- homeassistant/components/improv_ble/translations/ja.json +0 -1
- homeassistant/components/improv_ble/translations/ko.json +0 -1
- homeassistant/components/improv_ble/translations/lt.json +1 -1
- homeassistant/components/improv_ble/translations/pt.json +1 -1
- homeassistant/components/improv_ble/translations/ru.json +1 -1
- homeassistant/components/improv_ble/translations/sk.json +1 -1
- homeassistant/components/improv_ble/translations/sv.json +0 -1
- homeassistant/components/improv_ble/translations/tr.json +0 -1
- homeassistant/components/improv_ble/translations/zh-Hans.json +1 -1
- homeassistant/components/improv_ble/translations/zh-Hant.json +1 -1
- homeassistant/components/input_select/services.yaml +4 -1
- homeassistant/components/insteon/translations/de.json +1 -1
- homeassistant/components/integration/__init__.py +1 -8
- homeassistant/components/integration/config_flow.py +1 -0
- homeassistant/components/intellifire/translations/ar.json +9 -0
- homeassistant/components/intellifire/translations/pt.json +1 -1
- homeassistant/components/intent/manifest.json +1 -1
- homeassistant/components/ipma/translations/uk.json +3 -0
- homeassistant/components/irm_kmi/__init__.py +40 -0
- homeassistant/components/irm_kmi/config_flow.py +132 -0
- homeassistant/components/irm_kmi/const.py +102 -0
- homeassistant/components/irm_kmi/coordinator.py +95 -0
- homeassistant/components/irm_kmi/data.py +17 -0
- homeassistant/components/irm_kmi/entity.py +28 -0
- homeassistant/components/irm_kmi/manifest.json +13 -0
- homeassistant/components/irm_kmi/quality_scale.yaml +86 -0
- homeassistant/components/irm_kmi/strings.json +50 -0
- homeassistant/components/irm_kmi/translations/bg.json +49 -0
- homeassistant/components/irm_kmi/translations/cs.json +50 -0
- homeassistant/components/irm_kmi/translations/de.json +50 -0
- homeassistant/components/irm_kmi/translations/el.json +28 -0
- homeassistant/components/irm_kmi/translations/en-GB.json +50 -0
- homeassistant/components/irm_kmi/translations/en.json +50 -0
- homeassistant/components/irm_kmi/translations/es.json +50 -0
- homeassistant/components/irm_kmi/translations/et.json +50 -0
- homeassistant/components/irm_kmi/translations/ga.json +50 -0
- homeassistant/components/irm_kmi/translations/he.json +39 -0
- homeassistant/components/irm_kmi/translations/id.json +28 -0
- homeassistant/components/irm_kmi/translations/lt.json +50 -0
- homeassistant/components/irm_kmi/translations/nl.json +39 -0
- homeassistant/components/irm_kmi/translations/pt.json +50 -0
- homeassistant/components/irm_kmi/translations/sk.json +50 -0
- homeassistant/components/irm_kmi/translations/zh-Hans.json +50 -0
- homeassistant/components/irm_kmi/translations/zh-Hant.json +50 -0
- homeassistant/components/irm_kmi/utils.py +18 -0
- homeassistant/components/irm_kmi/weather.py +158 -0
- homeassistant/components/iron_os/manifest.json +1 -1
- homeassistant/components/isal/manifest.json +1 -1
- homeassistant/components/iskra/manifest.json +1 -1
- homeassistant/components/ista_ecotrend/manifest.json +1 -1
- homeassistant/components/ista_ecotrend/translations/fy.json +11 -0
- homeassistant/components/ista_ecotrend/translations/pt.json +3 -3
- homeassistant/components/jewish_calendar/quality_scale.yaml +100 -0
- homeassistant/components/jewish_calendar/translations/pt.json +1 -1
- homeassistant/components/keenetic_ndms2/translations/id.json +2 -1
- homeassistant/components/kitchen_sink/__init__.py +15 -0
- homeassistant/components/kitchen_sink/translations/de.json +2 -2
- homeassistant/components/knx/diagnostics.py +4 -2
- homeassistant/components/knx/storage/entity_store_schema.py +13 -9
- homeassistant/components/knx/translations/fr.json +3 -0
- homeassistant/components/knx/translations/id.json +3 -0
- homeassistant/components/knx/translations/pt.json +1 -1
- homeassistant/components/kodi/config_flow.py +0 -22
- homeassistant/components/kodi/media_player.py +3 -101
- homeassistant/components/konnected/__init__.py +14 -1
- homeassistant/components/konnected/manifest.json +1 -1
- homeassistant/components/konnected/strings.json +6 -0
- homeassistant/components/konnected/translations/cs.json +6 -0
- homeassistant/components/konnected/translations/de.json +6 -0
- homeassistant/components/konnected/translations/en-GB.json +6 -0
- homeassistant/components/konnected/translations/en.json +6 -0
- homeassistant/components/konnected/translations/es.json +6 -0
- homeassistant/components/konnected/translations/et.json +6 -0
- homeassistant/components/konnected/translations/lt.json +6 -0
- homeassistant/components/konnected/translations/pt.json +6 -0
- homeassistant/components/konnected/translations/sk.json +6 -0
- homeassistant/components/konnected/translations/zh-Hant.json +6 -0
- homeassistant/components/konnected_esphome/__init__.py +1 -0
- homeassistant/components/konnected_esphome/manifest.json +6 -0
- homeassistant/components/lacrosse/sensor.py +1 -1
- homeassistant/components/lamarzocco/__init__.py +35 -25
- homeassistant/components/lamarzocco/config_flow.py +13 -4
- homeassistant/components/lamarzocco/const.py +1 -0
- homeassistant/components/lamarzocco/coordinator.py +10 -2
- homeassistant/components/lamarzocco/manifest.json +1 -1
- homeassistant/components/lannouncer/notify.py +20 -2
- homeassistant/components/lannouncer/strings.json +8 -0
- homeassistant/components/lannouncer/translations/cs.json +8 -0
- homeassistant/components/lannouncer/translations/de.json +8 -0
- homeassistant/components/lannouncer/translations/en-GB.json +8 -0
- homeassistant/components/lannouncer/translations/en.json +8 -0
- homeassistant/components/lannouncer/translations/es.json +8 -0
- homeassistant/components/lannouncer/translations/et.json +8 -0
- homeassistant/components/lannouncer/translations/ga.json +8 -0
- homeassistant/components/lannouncer/translations/it.json +8 -0
- homeassistant/components/lannouncer/translations/lt.json +8 -0
- homeassistant/components/lannouncer/translations/pt.json +8 -0
- homeassistant/components/lannouncer/translations/sk.json +8 -0
- homeassistant/components/lannouncer/translations/zh-Hans.json +8 -0
- homeassistant/components/lannouncer/translations/zh-Hant.json +8 -0
- homeassistant/components/lawn_mower/intent.py +37 -0
- homeassistant/components/lcn/manifest.json +1 -1
- homeassistant/components/lcn/strings.json +0 -52
- homeassistant/components/lcn/translations/bg.json +0 -52
- homeassistant/components/lcn/translations/ca.json +0 -52
- homeassistant/components/lcn/translations/cs.json +0 -52
- homeassistant/components/lcn/translations/de.json +0 -52
- homeassistant/components/lcn/translations/el.json +0 -52
- homeassistant/components/lcn/translations/en-GB.json +0 -52
- homeassistant/components/lcn/translations/en.json +0 -52
- homeassistant/components/lcn/translations/es.json +0 -52
- homeassistant/components/lcn/translations/et.json +0 -52
- homeassistant/components/lcn/translations/fi.json +0 -52
- homeassistant/components/lcn/translations/ga.json +0 -52
- homeassistant/components/lcn/translations/gl.json +0 -10
- homeassistant/components/lcn/translations/hu.json +0 -52
- homeassistant/components/lcn/translations/it.json +0 -52
- homeassistant/components/lcn/translations/ja.json +0 -52
- homeassistant/components/lcn/translations/ko.json +0 -52
- homeassistant/components/lcn/translations/lt.json +0 -52
- homeassistant/components/lcn/translations/nl.json +0 -7
- homeassistant/components/lcn/translations/pt.json +0 -52
- homeassistant/components/lcn/translations/ru.json +0 -52
- homeassistant/components/lcn/translations/sk.json +0 -52
- homeassistant/components/lcn/translations/sv.json +0 -52
- homeassistant/components/lcn/translations/tr.json +0 -52
- homeassistant/components/lcn/translations/vi.json +0 -11
- homeassistant/components/lcn/translations/zh-Hans.json +0 -52
- homeassistant/components/lcn/translations/zh-Hant.json +0 -52
- homeassistant/components/letpot/__init__.py +1 -0
- homeassistant/components/letpot/icons.json +8 -0
- homeassistant/components/letpot/number.py +137 -0
- homeassistant/components/letpot/strings.json +9 -1
- homeassistant/components/letpot/translations/cs.json +8 -0
- homeassistant/components/letpot/translations/de.json +8 -0
- homeassistant/components/letpot/translations/en-GB.json +8 -0
- homeassistant/components/letpot/translations/en.json +8 -0
- homeassistant/components/letpot/translations/es.json +8 -0
- homeassistant/components/letpot/translations/et.json +8 -0
- homeassistant/components/letpot/translations/fr.json +8 -0
- homeassistant/components/letpot/translations/ga.json +8 -1
- homeassistant/components/letpot/translations/id.json +10 -0
- homeassistant/components/letpot/translations/it.json +0 -1
- homeassistant/components/letpot/translations/lt.json +8 -0
- homeassistant/components/letpot/translations/pt.json +9 -1
- homeassistant/components/letpot/translations/sk.json +8 -0
- homeassistant/components/letpot/translations/sv.json +0 -1
- homeassistant/components/letpot/translations/zh-Hans.json +8 -0
- homeassistant/components/letpot/translations/zh-Hant.json +9 -1
- homeassistant/components/lg_thinq/coordinator.py +4 -0
- homeassistant/components/lg_thinq/entity.py +6 -1
- homeassistant/components/lg_thinq/icons.json +9 -0
- homeassistant/components/lg_thinq/manifest.json +1 -1
- homeassistant/components/lg_thinq/sensor.py +143 -3
- homeassistant/components/lg_thinq/strings.json +9 -0
- homeassistant/components/lg_thinq/translations/ar.json +33 -0
- homeassistant/components/lg_thinq/translations/bg.json +9 -0
- homeassistant/components/lg_thinq/translations/cs.json +9 -0
- homeassistant/components/lg_thinq/translations/de.json +9 -0
- homeassistant/components/lg_thinq/translations/en-GB.json +9 -0
- homeassistant/components/lg_thinq/translations/en.json +9 -0
- homeassistant/components/lg_thinq/translations/es.json +9 -0
- homeassistant/components/lg_thinq/translations/et.json +9 -0
- homeassistant/components/lg_thinq/translations/ga.json +9 -0
- homeassistant/components/lg_thinq/translations/id.json +5 -2
- homeassistant/components/lg_thinq/translations/lt.json +9 -0
- homeassistant/components/lg_thinq/translations/nl.json +9 -0
- homeassistant/components/lg_thinq/translations/pt.json +19 -10
- homeassistant/components/lg_thinq/translations/sk.json +9 -0
- homeassistant/components/lg_thinq/translations/uk.json +38 -0
- homeassistant/components/lg_thinq/translations/zh-Hans.json +9 -0
- homeassistant/components/lg_thinq/translations/zh-Hant.json +9 -0
- homeassistant/components/libre_hardware_monitor/__init__.py +34 -0
- homeassistant/components/libre_hardware_monitor/config_flow.py +63 -0
- homeassistant/components/libre_hardware_monitor/const.py +6 -0
- homeassistant/components/libre_hardware_monitor/coordinator.py +130 -0
- homeassistant/components/libre_hardware_monitor/manifest.json +10 -0
- homeassistant/components/libre_hardware_monitor/quality_scale.yaml +81 -0
- homeassistant/components/libre_hardware_monitor/sensor.py +95 -0
- homeassistant/components/libre_hardware_monitor/strings.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/ca.json +19 -0
- homeassistant/components/libre_hardware_monitor/translations/cs.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/de.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/el.json +19 -0
- homeassistant/components/libre_hardware_monitor/translations/en-GB.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/en.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/es.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/et.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/ga.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/he.json +19 -0
- homeassistant/components/libre_hardware_monitor/translations/id.json +19 -0
- homeassistant/components/libre_hardware_monitor/translations/it.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/lt.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/nl.json +19 -0
- homeassistant/components/libre_hardware_monitor/translations/pl.json +19 -0
- homeassistant/components/libre_hardware_monitor/translations/pt.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/ru.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/sk.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/zh-Hans.json +23 -0
- homeassistant/components/libre_hardware_monitor/translations/zh-Hant.json +23 -0
- homeassistant/components/lidarr/coordinator.py +1 -1
- homeassistant/components/lidarr/translations/pt.json +1 -1
- homeassistant/components/lifx/services.yaml +7 -0
- homeassistant/components/lifx/strings.json +4 -0
- homeassistant/components/lifx/translations/cs.json +4 -0
- homeassistant/components/lifx/translations/de.json +4 -0
- homeassistant/components/lifx/translations/en-GB.json +4 -0
- homeassistant/components/lifx/translations/en.json +4 -0
- homeassistant/components/lifx/translations/es.json +4 -0
- homeassistant/components/lifx/translations/et.json +4 -0
- homeassistant/components/lifx/translations/ga.json +4 -0
- homeassistant/components/lifx/translations/it.json +4 -0
- homeassistant/components/lifx/translations/lt.json +4 -0
- homeassistant/components/lifx/translations/pt.json +4 -0
- homeassistant/components/lifx/translations/sk.json +4 -0
- homeassistant/components/lifx/translations/sv.json +3 -0
- homeassistant/components/lifx/translations/zh-Hans.json +4 -0
- homeassistant/components/lifx/translations/zh-Hant.json +5 -1
- homeassistant/components/light/translations/ca.json +2 -1
- homeassistant/components/light/translations/id.json +2 -1
- homeassistant/components/light/translations/uk.json +19 -0
- homeassistant/components/lightwave/sensor.py +2 -2
- homeassistant/components/litterrobot/icons.json +18 -0
- homeassistant/components/litterrobot/manifest.json +1 -1
- homeassistant/components/litterrobot/select.py +66 -27
- homeassistant/components/litterrobot/sensor.py +28 -1
- homeassistant/components/litterrobot/strings.json +35 -0
- homeassistant/components/litterrobot/switch.py +86 -18
- homeassistant/components/litterrobot/translations/bg.json +14 -0
- homeassistant/components/litterrobot/translations/ca.json +13 -0
- homeassistant/components/litterrobot/translations/cs.json +35 -0
- homeassistant/components/litterrobot/translations/da.json +8 -0
- homeassistant/components/litterrobot/translations/de.json +35 -0
- homeassistant/components/litterrobot/translations/el.json +14 -0
- homeassistant/components/litterrobot/translations/en-GB.json +35 -0
- homeassistant/components/litterrobot/translations/en.json +35 -0
- homeassistant/components/litterrobot/translations/es.json +35 -0
- homeassistant/components/litterrobot/translations/et.json +35 -0
- homeassistant/components/litterrobot/translations/ga.json +35 -0
- homeassistant/components/litterrobot/translations/he.json +14 -0
- homeassistant/components/litterrobot/translations/id.json +15 -0
- homeassistant/components/litterrobot/translations/it.json +24 -0
- homeassistant/components/litterrobot/translations/lt.json +35 -0
- homeassistant/components/litterrobot/translations/mk.json +5 -0
- homeassistant/components/litterrobot/translations/nl.json +22 -0
- homeassistant/components/litterrobot/translations/pl.json +16 -0
- homeassistant/components/litterrobot/translations/pt.json +35 -0
- homeassistant/components/litterrobot/translations/ru.json +20 -0
- homeassistant/components/litterrobot/translations/sk.json +35 -0
- homeassistant/components/litterrobot/translations/uk.json +26 -0
- homeassistant/components/litterrobot/translations/zh-Hans.json +35 -0
- homeassistant/components/litterrobot/translations/zh-Hant.json +35 -0
- homeassistant/components/local_todo/todo.py +1 -1
- homeassistant/components/logbook/helpers.py +34 -9
- homeassistant/components/logbook/manifest.json +1 -1
- homeassistant/components/logbook/strings.json +5 -5
- homeassistant/components/logbook/translations/bg.json +1 -2
- homeassistant/components/logbook/translations/ca.json +1 -6
- homeassistant/components/logbook/translations/cs.json +5 -5
- homeassistant/components/logbook/translations/de.json +5 -5
- homeassistant/components/logbook/translations/el.json +1 -6
- homeassistant/components/logbook/translations/en-GB.json +5 -5
- homeassistant/components/logbook/translations/en.json +5 -5
- homeassistant/components/logbook/translations/es.json +5 -5
- homeassistant/components/logbook/translations/et.json +5 -5
- homeassistant/components/logbook/translations/fi.json +1 -6
- homeassistant/components/logbook/translations/fr.json +1 -5
- homeassistant/components/logbook/translations/ga.json +1 -6
- homeassistant/components/logbook/translations/gl.json +0 -4
- homeassistant/components/logbook/translations/he.json +5 -5
- homeassistant/components/logbook/translations/hu.json +1 -6
- homeassistant/components/logbook/translations/id.json +1 -6
- homeassistant/components/logbook/translations/it.json +1 -6
- homeassistant/components/logbook/translations/ja.json +1 -6
- homeassistant/components/logbook/translations/ko.json +1 -6
- homeassistant/components/logbook/translations/lt.json +5 -5
- homeassistant/components/logbook/translations/nb.json +1 -2
- homeassistant/components/logbook/translations/nl.json +1 -6
- homeassistant/components/logbook/translations/pl.json +0 -1
- homeassistant/components/logbook/translations/pt-BR.json +1 -6
- homeassistant/components/logbook/translations/pt.json +5 -5
- homeassistant/components/logbook/translations/ru.json +5 -5
- homeassistant/components/logbook/translations/sk.json +4 -4
- homeassistant/components/logbook/translations/sl.json +1 -6
- homeassistant/components/logbook/translations/sv.json +1 -6
- homeassistant/components/logbook/translations/tr.json +1 -6
- homeassistant/components/logbook/translations/vi.json +1 -6
- homeassistant/components/logbook/translations/zh-Hans.json +5 -5
- homeassistant/components/logbook/translations/zh-Hant.json +5 -5
- homeassistant/components/lovelace/dashboard.py +2 -2
- homeassistant/components/lovelace/translations/pl.json +6 -1
- homeassistant/components/lutron_caseta/__init__.py +4 -1
- homeassistant/components/lutron_caseta/const.py +1 -0
- homeassistant/components/lutron_caseta/cover.py +44 -2
- homeassistant/components/lutron_caseta/device_trigger.py +2 -1
- homeassistant/components/lutron_caseta/entity.py +5 -1
- homeassistant/components/lutron_caseta/manifest.json +1 -1
- homeassistant/components/mastodon/const.py +1 -0
- homeassistant/components/mastodon/services.py +4 -0
- homeassistant/components/mastodon/services.yaml +203 -0
- homeassistant/components/mastodon/strings.json +4 -0
- homeassistant/components/mastodon/translations/ar.json +14 -0
- homeassistant/components/mastodon/translations/bg.json +3 -0
- homeassistant/components/mastodon/translations/cs.json +4 -0
- homeassistant/components/mastodon/translations/de.json +4 -0
- homeassistant/components/mastodon/translations/en-GB.json +4 -0
- homeassistant/components/mastodon/translations/en.json +4 -0
- homeassistant/components/mastodon/translations/es.json +4 -0
- homeassistant/components/mastodon/translations/et.json +4 -0
- homeassistant/components/mastodon/translations/ga.json +4 -0
- homeassistant/components/mastodon/translations/lt.json +4 -0
- homeassistant/components/mastodon/translations/pt.json +4 -0
- homeassistant/components/mastodon/translations/sk.json +4 -0
- homeassistant/components/mastodon/translations/zh-Hans.json +4 -0
- homeassistant/components/mastodon/translations/zh-Hant.json +4 -0
- homeassistant/components/matter/climate.py +16 -18
- homeassistant/components/matter/discovery.py +7 -0
- homeassistant/components/matter/light.py +1 -0
- homeassistant/components/matter/models.py +3 -0
- homeassistant/components/matter/number.py +16 -1
- homeassistant/components/matter/select.py +1 -1
- homeassistant/components/matter/sensor.py +31 -0
- homeassistant/components/matter/strings.json +6 -3
- homeassistant/components/matter/translations/bg.json +3 -0
- homeassistant/components/matter/translations/ca.json +3 -0
- homeassistant/components/matter/translations/cs.json +6 -3
- homeassistant/components/matter/translations/da.json +7 -0
- homeassistant/components/matter/translations/de.json +6 -3
- homeassistant/components/matter/translations/en-GB.json +6 -3
- homeassistant/components/matter/translations/en.json +6 -3
- homeassistant/components/matter/translations/es.json +6 -3
- homeassistant/components/matter/translations/et.json +6 -3
- homeassistant/components/matter/translations/fr.json +9 -3
- homeassistant/components/matter/translations/ga.json +6 -3
- homeassistant/components/matter/translations/he.json +12 -3
- homeassistant/components/matter/translations/hu.json +0 -3
- homeassistant/components/matter/translations/it.json +3 -0
- homeassistant/components/matter/translations/lt.json +6 -3
- homeassistant/components/matter/translations/pt.json +12 -3
- homeassistant/components/matter/translations/ru.json +9 -3
- homeassistant/components/matter/translations/sk.json +6 -3
- homeassistant/components/matter/translations/tr.json +0 -3
- homeassistant/components/matter/translations/zh-Hans.json +6 -3
- homeassistant/components/matter/translations/zh-Hant.json +6 -3
- homeassistant/components/mcp/manifest.json +1 -1
- homeassistant/components/mcp/strings.json +20 -1
- homeassistant/components/mcp/translations/bg.json +1 -0
- homeassistant/components/mcp/translations/cs.json +20 -1
- homeassistant/components/mcp/translations/de.json +20 -1
- homeassistant/components/mcp/translations/el.json +8 -1
- homeassistant/components/mcp/translations/en-GB.json +20 -1
- homeassistant/components/mcp/translations/en.json +20 -1
- homeassistant/components/mcp/translations/es.json +20 -1
- homeassistant/components/mcp/translations/et.json +20 -1
- homeassistant/components/mcp/translations/fr.json +20 -1
- homeassistant/components/mcp/translations/id.json +8 -1
- homeassistant/components/mcp/translations/lt.json +20 -1
- homeassistant/components/mcp/translations/pt.json +20 -1
- homeassistant/components/mcp/translations/sk.json +20 -1
- homeassistant/components/mcp/translations/zh-Hant.json +20 -1
- homeassistant/components/mcp_server/http.py +13 -9
- homeassistant/components/mcp_server/manifest.json +1 -1
- homeassistant/components/mcp_server/server.py +1 -1
- homeassistant/components/mcp_server/session.py +2 -2
- homeassistant/components/media_extractor/manifest.json +1 -1
- homeassistant/components/media_player/intent.py +0 -2
- homeassistant/components/media_player/translations/ar.json +34 -0
- homeassistant/components/media_player/translations/pt.json +1 -1
- homeassistant/components/media_source/__init__.py +19 -165
- homeassistant/components/media_source/helper.py +103 -0
- homeassistant/components/media_source/http.py +79 -0
- homeassistant/components/media_source/local_source.py +144 -97
- homeassistant/components/melcloud/translations/pt.json +2 -2
- homeassistant/components/met/coordinator.py +3 -1
- homeassistant/components/metoffice/sensor.py +11 -0
- homeassistant/components/metoffice/translations/pt.json +1 -1
- homeassistant/components/miele/const.py +252 -170
- homeassistant/components/miele/coordinator.py +18 -2
- homeassistant/components/miele/icons.json +1 -1
- homeassistant/components/miele/manifest.json +2 -2
- homeassistant/components/miele/quality_scale.yaml +6 -14
- homeassistant/components/miele/sensor.py +95 -18
- homeassistant/components/miele/services.py +4 -3
- homeassistant/components/miele/strings.json +1 -0
- homeassistant/components/miele/translations/cs.json +1 -0
- homeassistant/components/miele/translations/de.json +1 -0
- homeassistant/components/miele/translations/en-GB.json +1 -0
- homeassistant/components/miele/translations/en.json +1 -0
- homeassistant/components/miele/translations/es.json +1 -0
- homeassistant/components/miele/translations/et.json +1 -0
- homeassistant/components/miele/translations/ga.json +1 -0
- homeassistant/components/miele/translations/he.json +1 -0
- homeassistant/components/miele/translations/lt.json +1 -0
- homeassistant/components/miele/translations/nl.json +1 -0
- homeassistant/components/miele/translations/pt.json +4 -3
- homeassistant/components/miele/translations/ru.json +5 -0
- homeassistant/components/miele/translations/sk.json +1 -0
- homeassistant/components/miele/translations/sv.json +3 -3
- homeassistant/components/miele/translations/zh-Hans.json +1 -0
- homeassistant/components/miele/translations/zh-Hant.json +1 -0
- homeassistant/components/miele/vacuum.py +1 -2
- homeassistant/components/min_max/sensor.py +12 -6
- homeassistant/components/mobile_app/manifest.json +1 -1
- homeassistant/components/modbus/__init__.py +3 -2
- homeassistant/components/modbus/binary_sensor.py +3 -3
- homeassistant/components/modbus/climate.py +18 -16
- homeassistant/components/modbus/const.py +1 -0
- homeassistant/components/modbus/cover.py +11 -5
- homeassistant/components/modbus/entity.py +8 -8
- homeassistant/components/modbus/fan.py +2 -2
- homeassistant/components/modbus/light.py +6 -6
- homeassistant/components/modbus/manifest.json +1 -1
- homeassistant/components/modbus/modbus.py +35 -41
- homeassistant/components/modbus/sensor.py +3 -3
- homeassistant/components/modbus/switch.py +2 -2
- homeassistant/components/modbus/validators.py +1 -1
- homeassistant/components/monarch_money/translations/pt.json +2 -2
- homeassistant/components/monoprice/media_player.py +1 -1
- homeassistant/components/motioneye/translations/zh-Hant.json +1 -1
- homeassistant/components/motionmount/select.py +11 -3
- homeassistant/components/motionmount/strings.json +1 -1
- homeassistant/components/motionmount/translations/lt.json +4 -1
- homeassistant/components/motionmount/translations/pt.json +4 -1
- homeassistant/components/motionmount/translations/ru.json +4 -1
- homeassistant/components/mqtt/abbreviations.py +1 -0
- homeassistant/components/mqtt/config_flow.py +571 -495
- homeassistant/components/mqtt/const.py +6 -0
- homeassistant/components/mqtt/device_automation.py +3 -1
- homeassistant/components/mqtt/entity.py +56 -3
- homeassistant/components/mqtt/image.py +9 -8
- homeassistant/components/mqtt/light/schema_json.py +0 -2
- homeassistant/components/mqtt/manifest.json +1 -0
- homeassistant/components/mqtt/schemas.py +2 -0
- homeassistant/components/mqtt/strings.json +34 -3
- homeassistant/components/mqtt/tag.py +3 -1
- homeassistant/components/mqtt/translations/ar.json +17 -0
- homeassistant/components/mqtt/translations/bg.json +3 -0
- homeassistant/components/mqtt/translations/cs.json +32 -1
- homeassistant/components/mqtt/translations/da.json +19 -0
- homeassistant/components/mqtt/translations/de.json +34 -3
- homeassistant/components/mqtt/translations/el.json +6 -0
- homeassistant/components/mqtt/translations/en-GB.json +32 -1
- homeassistant/components/mqtt/translations/en.json +32 -1
- homeassistant/components/mqtt/translations/es.json +33 -2
- homeassistant/components/mqtt/translations/et.json +32 -1
- homeassistant/components/mqtt/translations/fr.json +18 -0
- homeassistant/components/mqtt/translations/fy.json +9 -0
- homeassistant/components/mqtt/translations/ga.json +30 -2
- homeassistant/components/mqtt/translations/he.json +19 -1
- homeassistant/components/mqtt/translations/hu.json +0 -1
- homeassistant/components/mqtt/translations/id.json +6 -0
- homeassistant/components/mqtt/translations/it.json +0 -1
- homeassistant/components/mqtt/translations/lt.json +34 -2
- homeassistant/components/mqtt/translations/nl.json +31 -1
- homeassistant/components/mqtt/translations/pt.json +34 -3
- homeassistant/components/mqtt/translations/ru.json +32 -0
- homeassistant/components/mqtt/translations/sk.json +32 -1
- homeassistant/components/mqtt/translations/sv.json +1 -1
- homeassistant/components/mqtt/translations/zh-Hans.json +30 -1
- homeassistant/components/mqtt/translations/zh-Hant.json +33 -2
- homeassistant/components/mqtt/util.py +8 -2
- homeassistant/components/music_assistant/__init__.py +47 -16
- homeassistant/components/music_assistant/config_flow.py +34 -8
- homeassistant/components/music_assistant/const.py +1 -0
- homeassistant/components/music_assistant/media_browser.py +1 -1
- homeassistant/components/music_assistant/translations/fr.json +7 -0
- homeassistant/components/music_assistant/translations/pt.json +1 -1
- homeassistant/components/mvglive/manifest.json +2 -4
- homeassistant/components/mvglive/sensor.py +116 -86
- homeassistant/components/nam/icons.json +0 -3
- homeassistant/components/nam/sensor.py +1 -0
- homeassistant/components/nanoleaf/translations/de.json +1 -1
- homeassistant/components/nasweb/translations/id.json +10 -0
- homeassistant/components/nederlandse_spoorwegen/__init__.py +56 -1
- homeassistant/components/nederlandse_spoorwegen/config_flow.py +176 -0
- homeassistant/components/nederlandse_spoorwegen/const.py +17 -0
- homeassistant/components/nederlandse_spoorwegen/manifest.json +3 -1
- homeassistant/components/nederlandse_spoorwegen/sensor.py +99 -54
- homeassistant/components/nederlandse_spoorwegen/strings.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/bg.json +28 -0
- homeassistant/components/nederlandse_spoorwegen/translations/ca.json +28 -0
- homeassistant/components/nederlandse_spoorwegen/translations/cs.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/de.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/el.json +28 -0
- homeassistant/components/nederlandse_spoorwegen/translations/en-GB.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/en.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/es.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/et.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/ga.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/he.json +28 -0
- homeassistant/components/nederlandse_spoorwegen/translations/id.json +28 -0
- homeassistant/components/nederlandse_spoorwegen/translations/lt.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/nl.json +72 -0
- homeassistant/components/nederlandse_spoorwegen/translations/pt.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/sk.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/uk.json +18 -0
- homeassistant/components/nederlandse_spoorwegen/translations/zh-Hans.json +74 -0
- homeassistant/components/nederlandse_spoorwegen/translations/zh-Hant.json +74 -0
- homeassistant/components/neo/__init__.py +1 -0
- homeassistant/components/neo/manifest.json +6 -0
- homeassistant/components/ness_alarm/manifest.json +1 -1
- homeassistant/components/netatmo/translations/ar.json +18 -0
- homeassistant/components/netgear/translations/de.json +1 -1
- homeassistant/components/nextdns/manifest.json +1 -0
- homeassistant/components/nextdns/quality_scale.yaml +88 -0
- homeassistant/components/nibe_heatpump/manifest.json +1 -1
- homeassistant/components/nice_go/translations/pt.json +2 -2
- homeassistant/components/nightscout/translations/de.json +1 -1
- homeassistant/components/nightscout/translations/zh-Hant.json +1 -1
- homeassistant/components/niko_home_control/translations/id.json +7 -1
- homeassistant/components/nina/strings.json +2 -2
- homeassistant/components/nina/translations/ca.json +0 -2
- homeassistant/components/nina/translations/cs.json +3 -3
- homeassistant/components/nina/translations/de.json +3 -3
- homeassistant/components/nina/translations/el.json +0 -1
- homeassistant/components/nina/translations/en-GB.json +3 -3
- homeassistant/components/nina/translations/en.json +3 -3
- homeassistant/components/nina/translations/es.json +3 -3
- homeassistant/components/nina/translations/et.json +2 -2
- homeassistant/components/nina/translations/fi.json +0 -2
- homeassistant/components/nina/translations/ga.json +0 -2
- homeassistant/components/nina/translations/hu.json +0 -2
- homeassistant/components/nina/translations/id.json +0 -1
- homeassistant/components/nina/translations/it.json +0 -2
- homeassistant/components/nina/translations/ja.json +0 -2
- homeassistant/components/nina/translations/ko.json +0 -2
- homeassistant/components/nina/translations/lt.json +3 -3
- homeassistant/components/nina/translations/nl.json +0 -2
- homeassistant/components/nina/translations/pt-BR.json +0 -1
- homeassistant/components/nina/translations/pt.json +3 -3
- homeassistant/components/nina/translations/ro.json +0 -1
- homeassistant/components/nina/translations/ru.json +0 -2
- homeassistant/components/nina/translations/sk.json +3 -3
- homeassistant/components/nina/translations/sv.json +0 -2
- homeassistant/components/nina/translations/tr.json +0 -2
- homeassistant/components/nina/translations/uk.json +0 -1
- homeassistant/components/nina/translations/zh-Hans.json +3 -3
- homeassistant/components/nina/translations/zh-Hant.json +3 -3
- homeassistant/components/nobo_hub/translations/ar.json +11 -0
- homeassistant/components/nordpool/__init__.py +1 -1
- homeassistant/components/nordpool/coordinator.py +37 -13
- homeassistant/components/nordpool/sensor.py +5 -2
- homeassistant/components/nordpool/strings.json +6 -0
- homeassistant/components/nordpool/translations/bg.json +8 -0
- homeassistant/components/nordpool/translations/cs.json +6 -0
- homeassistant/components/nordpool/translations/de.json +6 -0
- homeassistant/components/nordpool/translations/en-GB.json +6 -0
- homeassistant/components/nordpool/translations/en.json +6 -0
- homeassistant/components/nordpool/translations/es.json +6 -0
- homeassistant/components/nordpool/translations/et.json +6 -0
- homeassistant/components/nordpool/translations/ga.json +6 -0
- homeassistant/components/nordpool/translations/lt.json +6 -0
- homeassistant/components/nordpool/translations/pt.json +6 -0
- homeassistant/components/nordpool/translations/sk.json +6 -0
- homeassistant/components/nordpool/translations/zh-Hans.json +6 -0
- homeassistant/components/nordpool/translations/zh-Hant.json +6 -0
- homeassistant/components/notion/translations/uk.json +13 -0
- homeassistant/components/ntfy/__init__.py +1 -1
- homeassistant/components/ntfy/config_flow.py +73 -2
- homeassistant/components/ntfy/const.py +6 -0
- homeassistant/components/ntfy/entity.py +43 -0
- homeassistant/components/ntfy/event.py +172 -0
- homeassistant/components/ntfy/icons.json +10 -0
- homeassistant/components/ntfy/manifest.json +1 -1
- homeassistant/components/ntfy/notify.py +70 -30
- homeassistant/components/ntfy/quality_scale.yaml +6 -18
- homeassistant/components/ntfy/repairs.py +56 -0
- homeassistant/components/ntfy/services.yaml +90 -0
- homeassistant/components/ntfy/strings.json +146 -1
- homeassistant/components/ntfy/translations/bg.json +52 -1
- homeassistant/components/ntfy/translations/ca.json +25 -0
- homeassistant/components/ntfy/translations/cs.json +168 -1
- homeassistant/components/ntfy/translations/de.json +168 -1
- homeassistant/components/ntfy/translations/el.json +45 -1
- homeassistant/components/ntfy/translations/en-GB.json +168 -1
- homeassistant/components/ntfy/translations/en.json +168 -1
- homeassistant/components/ntfy/translations/es.json +168 -1
- homeassistant/components/ntfy/translations/et.json +168 -1
- homeassistant/components/ntfy/translations/fy.json +30 -0
- homeassistant/components/ntfy/translations/ga.json +168 -1
- homeassistant/components/ntfy/translations/he.json +20 -0
- homeassistant/components/ntfy/translations/id.json +11 -0
- homeassistant/components/ntfy/translations/it.json +12 -0
- homeassistant/components/ntfy/translations/lt.json +168 -1
- homeassistant/components/ntfy/translations/nl.json +42 -0
- homeassistant/components/ntfy/translations/pt.json +168 -1
- homeassistant/components/ntfy/translations/ru.json +247 -1
- homeassistant/components/ntfy/translations/sk.json +168 -1
- homeassistant/components/ntfy/translations/zh-Hans.json +168 -1
- homeassistant/components/ntfy/translations/zh-Hant.json +168 -1
- homeassistant/components/number/__init__.py +6 -3
- homeassistant/components/number/const.py +15 -6
- homeassistant/components/number/icons.json +3 -0
- homeassistant/components/number/strings.json +3 -0
- homeassistant/components/number/translations/bg.json +3 -0
- homeassistant/components/number/translations/cs.json +3 -0
- homeassistant/components/number/translations/de.json +3 -0
- homeassistant/components/number/translations/en-GB.json +3 -0
- homeassistant/components/number/translations/en.json +3 -0
- homeassistant/components/number/translations/es.json +3 -0
- homeassistant/components/number/translations/et.json +3 -0
- homeassistant/components/number/translations/fr.json +3 -0
- homeassistant/components/number/translations/lt.json +3 -0
- homeassistant/components/number/translations/pt.json +3 -0
- homeassistant/components/number/translations/ru.json +3 -0
- homeassistant/components/number/translations/sk.json +3 -0
- homeassistant/components/number/translations/zh-Hant.json +3 -0
- homeassistant/components/nut/strings.json +1 -1
- homeassistant/components/nut/translations/pt.json +1 -1
- homeassistant/components/ohme/translations/fy.json +11 -0
- homeassistant/components/ohme/translations/pt.json +1 -1
- homeassistant/components/ollama/translations/id.json +18 -1
- homeassistant/components/onboarding/translations/ar.json +7 -0
- homeassistant/components/onedrive/translations/pt.json +1 -1
- homeassistant/components/onewire/translations/vi.json +5 -0
- homeassistant/components/onvif/strings.json +2 -2
- homeassistant/components/onvif/translations/de.json +1 -1
- homeassistant/components/onvif/translations/he.json +3 -1
- homeassistant/components/onvif/translations/pt.json +3 -1
- homeassistant/components/onvif/translations/ru.json +3 -1
- homeassistant/components/open_router/translations/id.json +40 -0
- homeassistant/components/openai_conversation/__init__.py +1 -1
- homeassistant/components/openai_conversation/ai_task.py +73 -4
- homeassistant/components/openai_conversation/const.py +9 -0
- homeassistant/components/openai_conversation/entity.py +64 -20
- homeassistant/components/openai_conversation/manifest.json +1 -1
- homeassistant/components/openai_conversation/strings.json +6 -0
- homeassistant/components/openai_conversation/translations/cs.json +6 -0
- homeassistant/components/openai_conversation/translations/de.json +6 -0
- homeassistant/components/openai_conversation/translations/en-GB.json +6 -0
- homeassistant/components/openai_conversation/translations/en.json +6 -0
- homeassistant/components/openai_conversation/translations/es.json +6 -0
- homeassistant/components/openai_conversation/translations/et.json +6 -0
- homeassistant/components/openai_conversation/translations/fr.json +6 -0
- homeassistant/components/openai_conversation/translations/ga.json +6 -0
- homeassistant/components/openai_conversation/translations/id.json +26 -1
- homeassistant/components/openai_conversation/translations/lt.json +6 -0
- homeassistant/components/openai_conversation/translations/pt.json +7 -1
- homeassistant/components/openai_conversation/translations/sk.json +6 -0
- homeassistant/components/openai_conversation/translations/zh-Hans.json +6 -0
- homeassistant/components/openai_conversation/translations/zh-Hant.json +6 -0
- homeassistant/components/opentherm_gw/translations/ar.json +11 -0
- homeassistant/components/opentherm_gw/translations/mk.json +9 -0
- homeassistant/components/openuv/__init__.py +9 -5
- homeassistant/components/openuv/binary_sensor.py +19 -22
- homeassistant/components/openuv/coordinator.py +91 -1
- homeassistant/components/openweathermap/config_flow.py +29 -39
- homeassistant/components/openweathermap/strings.json +12 -0
- homeassistant/components/openweathermap/translations/cs.json +12 -0
- homeassistant/components/openweathermap/translations/de.json +12 -0
- homeassistant/components/openweathermap/translations/en-GB.json +12 -0
- homeassistant/components/openweathermap/translations/en.json +12 -0
- homeassistant/components/openweathermap/translations/es.json +12 -0
- homeassistant/components/openweathermap/translations/et.json +12 -0
- homeassistant/components/openweathermap/translations/fr.json +12 -0
- homeassistant/components/openweathermap/translations/ga.json +12 -0
- homeassistant/components/openweathermap/translations/lt.json +12 -0
- homeassistant/components/openweathermap/translations/pt.json +12 -0
- homeassistant/components/openweathermap/translations/sk.json +12 -0
- homeassistant/components/openweathermap/translations/zh-Hans.json +12 -0
- homeassistant/components/openweathermap/translations/zh-Hant.json +12 -0
- homeassistant/components/opnsense/__init__.py +13 -12
- homeassistant/components/opnsense/const.py +8 -0
- homeassistant/components/opnsense/device_tracker.py +29 -21
- homeassistant/components/opnsense/manifest.json +1 -1
- homeassistant/components/opower/manifest.json +2 -1
- homeassistant/components/opower/quality_scale.yaml +79 -0
- homeassistant/components/opower/translations/ar.json +12 -0
- homeassistant/components/opower/translations/fy.json +5 -0
- homeassistant/components/opower/translations/id.json +6 -0
- homeassistant/components/otbr/config_flow.py +1 -4
- homeassistant/components/otp/manifest.json +1 -1
- homeassistant/components/overkiz/climate/atlantic_electrical_heater_with_adjustable_temperature_setpoint.py +1 -0
- homeassistant/components/overkiz/const.py +1 -0
- homeassistant/components/overkiz/strings.json +1 -1
- homeassistant/components/overkiz/switch.py +9 -0
- homeassistant/components/overkiz/translations/ar.json +18 -0
- homeassistant/components/overkiz/translations/fr.json +2 -1
- homeassistant/components/overkiz/translations/id.json +1 -0
- homeassistant/components/overkiz/translations/sensor.ar.json +3 -0
- homeassistant/components/owntracks/manifest.json +1 -1
- homeassistant/components/p1_monitor/config_flow.py +1 -1
- homeassistant/components/p1_monitor/manifest.json +1 -1
- homeassistant/components/palazzetti/translations/ar.json +16 -0
- homeassistant/components/paperless_ngx/manifest.json +1 -1
- homeassistant/components/paperless_ngx/quality_scale.yaml +4 -1
- homeassistant/components/peco/translations/zh-Hant.json +1 -1
- homeassistant/components/person/translations/ar.json +8 -0
- homeassistant/components/person/translations/mk.json +9 -0
- homeassistant/components/philips_js/manifest.json +1 -1
- homeassistant/components/pi_hole/__init__.py +9 -3
- homeassistant/components/playstation_network/manifest.json +1 -1
- homeassistant/components/playstation_network/translations/ar.json +11 -0
- homeassistant/components/playstation_network/translations/id.json +8 -0
- homeassistant/components/playstation_network/translations/pt.json +1 -1
- homeassistant/components/plex/translations/zh-Hant.json +1 -1
- homeassistant/components/plugwise/translations/ar.json +16 -0
- homeassistant/components/plugwise/translations/mk.json +11 -0
- homeassistant/components/plugwise/translations/uk.json +6 -0
- homeassistant/components/plum_lightpad/translations/pt.json +1 -1
- homeassistant/components/pooldose/config_flow.py +79 -43
- homeassistant/components/pooldose/coordinator.py +1 -0
- homeassistant/components/pooldose/entity.py +11 -3
- homeassistant/components/pooldose/manifest.json +5 -0
- homeassistant/components/pooldose/quality_scale.yaml +2 -6
- homeassistant/components/pooldose/strings.json +8 -1
- homeassistant/components/pooldose/translations/bg.json +9 -0
- homeassistant/components/pooldose/translations/cs.json +8 -1
- homeassistant/components/pooldose/translations/de.json +8 -1
- homeassistant/components/pooldose/translations/el.json +2 -1
- homeassistant/components/pooldose/translations/en-GB.json +8 -1
- homeassistant/components/pooldose/translations/en.json +8 -1
- homeassistant/components/pooldose/translations/es.json +8 -1
- homeassistant/components/pooldose/translations/et.json +8 -1
- homeassistant/components/pooldose/translations/ga.json +8 -1
- homeassistant/components/pooldose/translations/he.json +2 -1
- homeassistant/components/pooldose/translations/id.json +49 -0
- homeassistant/components/pooldose/translations/lt.json +8 -1
- homeassistant/components/pooldose/translations/nl.json +2 -1
- homeassistant/components/pooldose/translations/pt.json +8 -1
- homeassistant/components/pooldose/translations/sk.json +8 -1
- homeassistant/components/pooldose/translations/zh-Hans.json +8 -1
- homeassistant/components/pooldose/translations/zh-Hant.json +8 -1
- homeassistant/components/poolsense/translations/pt.json +1 -1
- homeassistant/components/portainer/__init__.py +65 -0
- homeassistant/components/portainer/binary_sensor.py +154 -0
- homeassistant/components/portainer/config_flow.py +100 -0
- homeassistant/components/portainer/const.py +4 -0
- homeassistant/components/portainer/coordinator.py +137 -0
- homeassistant/components/portainer/entity.py +73 -0
- homeassistant/components/portainer/manifest.json +10 -0
- homeassistant/components/portainer/quality_scale.yaml +80 -0
- homeassistant/components/portainer/strings.json +51 -0
- homeassistant/components/portainer/translations/bg.json +27 -0
- homeassistant/components/portainer/translations/ca.json +22 -0
- homeassistant/components/portainer/translations/cs.json +51 -0
- homeassistant/components/portainer/translations/de.json +51 -0
- homeassistant/components/portainer/translations/el.json +22 -0
- homeassistant/components/portainer/translations/en-GB.json +51 -0
- homeassistant/components/portainer/translations/en.json +51 -0
- homeassistant/components/portainer/translations/es.json +51 -0
- homeassistant/components/portainer/translations/et.json +51 -0
- homeassistant/components/portainer/translations/fr.json +18 -0
- homeassistant/components/portainer/translations/ga.json +36 -0
- homeassistant/components/portainer/translations/he.json +13 -0
- homeassistant/components/portainer/translations/id.json +22 -0
- homeassistant/components/portainer/translations/lt.json +51 -0
- homeassistant/components/portainer/translations/nl.json +13 -0
- homeassistant/components/portainer/translations/pt.json +51 -0
- homeassistant/components/portainer/translations/ru.json +51 -0
- homeassistant/components/portainer/translations/sk.json +51 -0
- homeassistant/components/portainer/translations/sl.json +36 -0
- homeassistant/components/portainer/translations/zh-Hans.json +51 -0
- homeassistant/components/portainer/translations/zh-Hant.json +51 -0
- homeassistant/components/powerfox/translations/pt.json +2 -2
- homeassistant/components/powerwall/translations/uk.json +6 -0
- homeassistant/components/profiler/__init__.py +17 -0
- homeassistant/components/profiler/icons.json +3 -0
- homeassistant/components/profiler/services.yaml +1 -0
- homeassistant/components/profiler/strings.json +4 -0
- homeassistant/components/profiler/translations/cs.json +4 -0
- homeassistant/components/profiler/translations/de.json +4 -0
- homeassistant/components/profiler/translations/en-GB.json +4 -0
- homeassistant/components/profiler/translations/en.json +4 -0
- homeassistant/components/profiler/translations/es.json +4 -0
- homeassistant/components/profiler/translations/et.json +4 -0
- homeassistant/components/profiler/translations/ga.json +4 -0
- homeassistant/components/profiler/translations/lt.json +4 -0
- homeassistant/components/profiler/translations/pt.json +4 -0
- homeassistant/components/profiler/translations/sk.json +4 -0
- homeassistant/components/profiler/translations/zh-Hans.json +4 -0
- homeassistant/components/profiler/translations/zh-Hant.json +4 -0
- homeassistant/components/prowl/const.py +3 -0
- homeassistant/components/prowl/manifest.json +4 -1
- homeassistant/components/prowl/notify.py +37 -33
- homeassistant/components/prusalink/coordinator.py +7 -0
- homeassistant/components/prusalink/manifest.json +1 -1
- homeassistant/components/purpleair/coordinator.py +1 -1
- homeassistant/components/pushover/const.py +2 -0
- homeassistant/components/pushover/notify.py +18 -15
- homeassistant/components/pvoutput/translations/de.json +2 -2
- homeassistant/components/pvpc_hourly_pricing/__init__.py +0 -15
- homeassistant/components/pvpc_hourly_pricing/config_flow.py +2 -2
- homeassistant/components/pvpc_hourly_pricing/coordinator.py +7 -4
- homeassistant/components/pyload/translations/id.json +6 -0
- homeassistant/components/pyload/translations/zh-Hant.json +1 -1
- homeassistant/components/qbittorrent/translations/cs.json +4 -4
- homeassistant/components/qbus/entity.py +1 -1
- homeassistant/components/qnap/translations/uk.json +19 -0
- homeassistant/components/radarr/coordinator.py +1 -1
- homeassistant/components/radio_browser/media_source.py +65 -3
- homeassistant/components/rainbird/translations/fr.json +2 -1
- homeassistant/components/random/strings.json +1 -0
- homeassistant/components/random/translations/bg.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 +2 -1
- homeassistant/components/random/translations/et.json +1 -0
- homeassistant/components/random/translations/fr.json +1 -0
- homeassistant/components/random/translations/lt.json +1 -0
- homeassistant/components/random/translations/pt.json +1 -0
- homeassistant/components/random/translations/ru.json +1 -0
- homeassistant/components/random/translations/sk.json +1 -0
- homeassistant/components/random/translations/sv.json +1 -1
- homeassistant/components/random/translations/zh-Hant.json +1 -0
- homeassistant/components/recorder/models/statistics.py +1 -0
- homeassistant/components/recorder/services.py +5 -5
- homeassistant/components/recorder/translations/vi.json +5 -0
- homeassistant/components/recorder/util.py +8 -1
- homeassistant/components/rehlko/translations/fy.json +16 -0
- homeassistant/components/rehlko/translations/pt.json +1 -1
- homeassistant/components/remote/translations/ca.json +3 -0
- homeassistant/components/remote/translations/id.json +3 -0
- homeassistant/components/remote_calendar/translations/id.json +2 -1
- homeassistant/components/renault/manifest.json +1 -1
- homeassistant/components/renault/translations/pt.json +1 -1
- homeassistant/components/reolink/__init__.py +4 -2
- homeassistant/components/reolink/binary_sensor.py +6 -6
- homeassistant/components/reolink/entity.py +41 -4
- homeassistant/components/reolink/icons.json +6 -0
- homeassistant/components/reolink/light.py +34 -4
- homeassistant/components/reolink/manifest.json +1 -1
- homeassistant/components/reolink/number.py +42 -6
- homeassistant/components/reolink/select.py +66 -20
- homeassistant/components/reolink/sensor.py +1 -0
- homeassistant/components/reolink/services.py +1 -1
- homeassistant/components/reolink/siren.py +54 -2
- homeassistant/components/reolink/strings.json +7 -1
- homeassistant/components/reolink/switch.py +41 -3
- homeassistant/components/reolink/translations/ar.json +7 -0
- homeassistant/components/reolink/translations/cs.json +6 -0
- homeassistant/components/reolink/translations/de.json +6 -0
- homeassistant/components/reolink/translations/en-GB.json +6 -0
- homeassistant/components/reolink/translations/en.json +6 -0
- homeassistant/components/reolink/translations/es.json +10 -4
- homeassistant/components/reolink/translations/et.json +6 -0
- homeassistant/components/reolink/translations/ga.json +6 -0
- homeassistant/components/reolink/translations/it.json +6 -0
- homeassistant/components/reolink/translations/lt.json +6 -0
- homeassistant/components/reolink/translations/mk.json +5 -0
- homeassistant/components/reolink/translations/pt.json +9 -0
- homeassistant/components/reolink/translations/sk.json +6 -0
- homeassistant/components/reolink/translations/zh-Hans.json +6 -0
- homeassistant/components/reolink/translations/zh-Hant.json +6 -0
- homeassistant/components/reolink/views.py +1 -1
- homeassistant/components/rhasspy/manifest.json +1 -1
- homeassistant/components/ridwell/manifest.json +1 -1
- homeassistant/components/rituals_perfume_genie/translations/pt.json +1 -1
- homeassistant/components/roborock/__init__.py +6 -2
- homeassistant/components/roborock/config_flow.py +8 -0
- homeassistant/components/roborock/const.py +1 -0
- homeassistant/components/roborock/coordinator.py +12 -11
- homeassistant/components/roborock/manifest.json +1 -1
- homeassistant/components/roborock/select.py +1 -1
- homeassistant/components/roborock/strings.json +4 -2
- homeassistant/components/roborock/translations/cs.json +2 -0
- homeassistant/components/roborock/translations/de.json +4 -2
- homeassistant/components/roborock/translations/en-GB.json +2 -0
- homeassistant/components/roborock/translations/en.json +2 -0
- homeassistant/components/roborock/translations/es.json +2 -0
- homeassistant/components/roborock/translations/et.json +2 -0
- homeassistant/components/roborock/translations/ga.json +2 -0
- homeassistant/components/roborock/translations/it.json +4 -0
- homeassistant/components/roborock/translations/lt.json +2 -0
- homeassistant/components/roborock/translations/pt.json +3 -1
- homeassistant/components/roborock/translations/ru.json +2 -0
- homeassistant/components/roborock/translations/sk.json +2 -0
- homeassistant/components/roborock/translations/zh-Hans.json +2 -0
- homeassistant/components/roborock/translations/zh-Hant.json +2 -0
- homeassistant/components/roku/browse_media.py +1 -1
- homeassistant/components/roomba/translations/bg.json +1 -2
- homeassistant/components/roomba/translations/ca.json +2 -4
- homeassistant/components/roomba/translations/el.json +2 -4
- homeassistant/components/roomba/translations/en-GB.json +2 -2
- homeassistant/components/roomba/translations/en.json +2 -2
- homeassistant/components/roomba/translations/fi.json +2 -4
- homeassistant/components/roomba/translations/fr.json +2 -4
- homeassistant/components/roomba/translations/ga.json +2 -4
- homeassistant/components/roomba/translations/he.json +1 -5
- homeassistant/components/roomba/translations/hu.json +2 -4
- homeassistant/components/roomba/translations/id.json +2 -4
- homeassistant/components/roomba/translations/it.json +2 -4
- homeassistant/components/roomba/translations/ja.json +2 -4
- homeassistant/components/roomba/translations/ko.json +2 -4
- homeassistant/components/roomba/translations/lb.json +1 -5
- homeassistant/components/roomba/translations/lt.json +2 -2
- homeassistant/components/roomba/translations/nb.json +1 -5
- homeassistant/components/roomba/translations/nl.json +2 -4
- homeassistant/components/roomba/translations/pl.json +1 -5
- homeassistant/components/roomba/translations/pt-BR.json +1 -5
- homeassistant/components/roomba/translations/pt.json +2 -2
- homeassistant/components/roomba/translations/ro.json +1 -5
- homeassistant/components/roomba/translations/ru.json +2 -4
- homeassistant/components/roomba/translations/sk.json +2 -4
- homeassistant/components/roomba/translations/sv.json +2 -4
- homeassistant/components/roomba/translations/tr.json +2 -4
- homeassistant/components/roomba/translations/uk.json +1 -5
- homeassistant/components/roomba/translations/zh-Hans.json +2 -4
- homeassistant/components/roomba/translations/zh-Hant.json +1 -1
- homeassistant/components/route_b_smart_meter/__init__.py +28 -0
- homeassistant/components/route_b_smart_meter/config_flow.py +116 -0
- homeassistant/components/route_b_smart_meter/const.py +12 -0
- homeassistant/components/route_b_smart_meter/coordinator.py +75 -0
- homeassistant/components/route_b_smart_meter/manifest.json +17 -0
- homeassistant/components/route_b_smart_meter/quality_scale.yaml +82 -0
- homeassistant/components/route_b_smart_meter/sensor.py +109 -0
- homeassistant/components/route_b_smart_meter/strings.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/bg.json +24 -0
- homeassistant/components/route_b_smart_meter/translations/cs.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/de.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/el.json +24 -0
- homeassistant/components/route_b_smart_meter/translations/en-GB.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/en.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/es.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/et.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/fr.json +36 -0
- homeassistant/components/route_b_smart_meter/translations/fy.json +14 -0
- homeassistant/components/route_b_smart_meter/translations/ga.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/he.json +24 -0
- homeassistant/components/route_b_smart_meter/translations/id.json +24 -0
- homeassistant/components/route_b_smart_meter/translations/lt.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/nl.json +24 -0
- homeassistant/components/route_b_smart_meter/translations/pt.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/sk.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/zh-Hans.json +42 -0
- homeassistant/components/route_b_smart_meter/translations/zh-Hant.json +42 -0
- homeassistant/components/ruckus_unleashed/translations/de.json +1 -1
- homeassistant/components/russound_rio/manifest.json +1 -1
- homeassistant/components/rympro/translations/pt.json +1 -1
- homeassistant/components/samsungtv/manifest.json +1 -1
- homeassistant/components/samsungtv/quality_scale.yaml +1 -3
- homeassistant/components/satel_integra/__init__.py +145 -79
- homeassistant/components/satel_integra/alarm_control_panel.py +27 -24
- homeassistant/components/satel_integra/binary_sensor.py +58 -40
- homeassistant/components/satel_integra/config_flow.py +496 -0
- homeassistant/components/satel_integra/const.py +38 -0
- homeassistant/components/satel_integra/diagnostics.py +26 -0
- homeassistant/components/satel_integra/manifest.json +4 -2
- homeassistant/components/satel_integra/strings.json +210 -0
- homeassistant/components/satel_integra/switch.py +31 -29
- homeassistant/components/satel_integra/translations/bg.json +102 -0
- homeassistant/components/satel_integra/translations/ca.json +119 -0
- homeassistant/components/satel_integra/translations/cs.json +210 -0
- homeassistant/components/satel_integra/translations/de.json +210 -0
- homeassistant/components/satel_integra/translations/el.json +125 -0
- homeassistant/components/satel_integra/translations/en-GB.json +210 -0
- homeassistant/components/satel_integra/translations/en.json +210 -0
- homeassistant/components/satel_integra/translations/es.json +210 -0
- homeassistant/components/satel_integra/translations/et.json +210 -0
- homeassistant/components/satel_integra/translations/ga.json +210 -0
- homeassistant/components/satel_integra/translations/he.json +132 -0
- homeassistant/components/satel_integra/translations/id.json +85 -0
- homeassistant/components/satel_integra/translations/lt.json +210 -0
- homeassistant/components/satel_integra/translations/nl.json +125 -0
- homeassistant/components/satel_integra/translations/pl.json +9 -0
- homeassistant/components/satel_integra/translations/pt.json +210 -0
- homeassistant/components/satel_integra/translations/sk.json +210 -0
- homeassistant/components/satel_integra/translations/uk.json +62 -0
- homeassistant/components/satel_integra/translations/zh-Hans.json +210 -0
- homeassistant/components/satel_integra/translations/zh-Hant.json +210 -0
- homeassistant/components/scrape/__init__.py +4 -7
- homeassistant/components/scrape/config_flow.py +1 -0
- homeassistant/components/scrape/coordinator.py +13 -0
- homeassistant/components/scrape/strings.json +2 -0
- homeassistant/components/scrape/translations/bg.json +2 -0
- homeassistant/components/scrape/translations/cs.json +2 -0
- homeassistant/components/scrape/translations/de.json +2 -0
- homeassistant/components/scrape/translations/el.json +1 -0
- homeassistant/components/scrape/translations/en-GB.json +2 -0
- homeassistant/components/scrape/translations/en.json +2 -0
- homeassistant/components/scrape/translations/es.json +2 -0
- homeassistant/components/scrape/translations/et.json +2 -0
- homeassistant/components/scrape/translations/fr.json +2 -0
- homeassistant/components/scrape/translations/lt.json +2 -0
- homeassistant/components/scrape/translations/pt.json +2 -0
- homeassistant/components/scrape/translations/ru.json +2 -0
- homeassistant/components/scrape/translations/sk.json +2 -0
- homeassistant/components/scrape/translations/zh-Hant.json +2 -0
- homeassistant/components/screenlogic/translations/ar.json +15 -0
- homeassistant/components/script/translations/de.json +1 -1
- homeassistant/components/select/services.yaml +4 -1
- homeassistant/components/sense/translations/pt.json +1 -1
- homeassistant/components/sensibo/translations/ar.json +25 -0
- homeassistant/components/sensibo/translations/pl.json +1 -0
- homeassistant/components/sensor/__init__.py +44 -26
- homeassistant/components/sensor/const.py +16 -5
- homeassistant/components/sensor/device_condition.py +3 -0
- homeassistant/components/sensor/device_trigger.py +3 -0
- homeassistant/components/sensor/icons.json +3 -0
- homeassistant/components/sensor/strings.json +5 -0
- homeassistant/components/sensor/translations/bg.json +3 -0
- homeassistant/components/sensor/translations/cs.json +5 -0
- homeassistant/components/sensor/translations/de.json +5 -0
- homeassistant/components/sensor/translations/en-GB.json +5 -0
- homeassistant/components/sensor/translations/en.json +5 -0
- homeassistant/components/sensor/translations/es.json +5 -0
- homeassistant/components/sensor/translations/et.json +5 -0
- homeassistant/components/sensor/translations/fr.json +5 -0
- homeassistant/components/sensor/translations/ga.json +2 -0
- homeassistant/components/sensor/translations/he.json +2 -0
- homeassistant/components/sensor/translations/lt.json +5 -0
- homeassistant/components/sensor/translations/nl.json +3 -0
- homeassistant/components/sensor/translations/pl.json +3 -0
- homeassistant/components/sensor/translations/pt.json +5 -0
- homeassistant/components/sensor/translations/ru.json +5 -0
- homeassistant/components/sensor/translations/sk.json +5 -0
- homeassistant/components/sensor/translations/zh-Hans.json +2 -0
- homeassistant/components/sensor/translations/zh-Hant.json +5 -0
- homeassistant/components/sensorpush_cloud/translations/fy.json +11 -0
- homeassistant/components/sensorpush_cloud/translations/pt.json +1 -1
- homeassistant/components/sensoterra/translations/pt.json +2 -2
- homeassistant/components/sftp_storage/__init__.py +155 -0
- homeassistant/components/sftp_storage/backup.py +153 -0
- homeassistant/components/sftp_storage/client.py +311 -0
- homeassistant/components/sftp_storage/config_flow.py +236 -0
- homeassistant/components/sftp_storage/const.py +27 -0
- homeassistant/components/sftp_storage/manifest.json +13 -0
- homeassistant/components/sftp_storage/quality_scale.yaml +140 -0
- homeassistant/components/sftp_storage/strings.json +37 -0
- homeassistant/components/sftp_storage/translations/bg.json +18 -0
- homeassistant/components/sftp_storage/translations/ca.json +14 -0
- homeassistant/components/sftp_storage/translations/cs.json +37 -0
- homeassistant/components/sftp_storage/translations/de.json +37 -0
- homeassistant/components/sftp_storage/translations/el.json +14 -0
- homeassistant/components/sftp_storage/translations/en-GB.json +37 -0
- homeassistant/components/sftp_storage/translations/en.json +37 -0
- homeassistant/components/sftp_storage/translations/es.json +37 -0
- homeassistant/components/sftp_storage/translations/et.json +37 -0
- homeassistant/components/sftp_storage/translations/fr.json +37 -0
- homeassistant/components/sftp_storage/translations/ga.json +37 -0
- homeassistant/components/sftp_storage/translations/he.json +18 -0
- homeassistant/components/sftp_storage/translations/id.json +14 -0
- homeassistant/components/sftp_storage/translations/it.json +37 -0
- homeassistant/components/sftp_storage/translations/lt.json +37 -0
- homeassistant/components/sftp_storage/translations/nl.json +17 -0
- homeassistant/components/sftp_storage/translations/pl.json +19 -0
- homeassistant/components/sftp_storage/translations/pt.json +37 -0
- homeassistant/components/sftp_storage/translations/ru.json +34 -0
- homeassistant/components/sftp_storage/translations/sk.json +37 -0
- homeassistant/components/sftp_storage/translations/zh-Hans.json +37 -0
- homeassistant/components/sftp_storage/translations/zh-Hant.json +37 -0
- homeassistant/components/shelly/__init__.py +5 -0
- homeassistant/components/shelly/binary_sensor.py +44 -11
- homeassistant/components/shelly/button.py +103 -14
- homeassistant/components/shelly/climate.py +3 -2
- homeassistant/components/shelly/const.py +22 -5
- homeassistant/components/shelly/coordinator.py +5 -0
- homeassistant/components/shelly/cover.py +30 -0
- homeassistant/components/shelly/entity.py +6 -9
- homeassistant/components/shelly/icons.json +9 -0
- homeassistant/components/shelly/light.py +94 -60
- homeassistant/components/shelly/manifest.json +2 -2
- homeassistant/components/shelly/number.py +8 -5
- homeassistant/components/shelly/repairs.py +46 -5
- homeassistant/components/shelly/select.py +4 -0
- homeassistant/components/shelly/sensor.py +307 -47
- homeassistant/components/shelly/strings.json +37 -24
- homeassistant/components/shelly/switch.py +4 -0
- homeassistant/components/shelly/text.py +4 -0
- homeassistant/components/shelly/translations/bg.json +22 -11
- homeassistant/components/shelly/translations/ca.json +7 -14
- homeassistant/components/shelly/translations/cs.json +37 -24
- homeassistant/components/shelly/translations/de.json +37 -24
- homeassistant/components/shelly/translations/el.json +15 -24
- homeassistant/components/shelly/translations/en-GB.json +37 -24
- homeassistant/components/shelly/translations/en.json +37 -24
- homeassistant/components/shelly/translations/es.json +37 -24
- homeassistant/components/shelly/translations/et.json +37 -24
- homeassistant/components/shelly/translations/fi.json +0 -14
- homeassistant/components/shelly/translations/fr.json +18 -24
- homeassistant/components/shelly/translations/ga.json +25 -24
- homeassistant/components/shelly/translations/gl.json +0 -12
- homeassistant/components/shelly/translations/he.json +7 -14
- homeassistant/components/shelly/translations/hu.json +0 -24
- homeassistant/components/shelly/translations/id.json +19 -14
- homeassistant/components/shelly/translations/is.json +0 -13
- homeassistant/components/shelly/translations/it.json +0 -14
- homeassistant/components/shelly/translations/ja.json +0 -14
- homeassistant/components/shelly/translations/ko.json +0 -14
- homeassistant/components/shelly/translations/lt.json +37 -24
- homeassistant/components/shelly/translations/lv.json +6 -14
- homeassistant/components/shelly/translations/mk.json +13 -0
- homeassistant/components/shelly/translations/nb.json +0 -14
- homeassistant/components/shelly/translations/nl.json +12 -24
- homeassistant/components/shelly/translations/pl.json +43 -16
- homeassistant/components/shelly/translations/pt-BR.json +0 -14
- homeassistant/components/shelly/translations/pt.json +38 -25
- homeassistant/components/shelly/translations/ro.json +0 -14
- homeassistant/components/shelly/translations/ru.json +15 -24
- homeassistant/components/shelly/translations/sk.json +37 -24
- homeassistant/components/shelly/translations/sl.json +0 -22
- homeassistant/components/shelly/translations/sv.json +0 -24
- homeassistant/components/shelly/translations/tr.json +0 -14
- homeassistant/components/shelly/translations/uk.json +15 -14
- homeassistant/components/shelly/translations/zh-Hans.json +25 -24
- homeassistant/components/shelly/translations/zh-Hant.json +37 -24
- homeassistant/components/shelly/utils.py +75 -18
- homeassistant/components/shopping_list/intent.py +0 -1
- homeassistant/components/sia/strings.json +3 -3
- homeassistant/components/sia/translations/he.json +2 -1
- homeassistant/components/sia/translations/ru.json +2 -1
- homeassistant/components/signal_messenger/notify.py +5 -2
- homeassistant/components/simplisafe/__init__.py +1 -1
- homeassistant/components/simplisafe/translations/uk.json +7 -0
- homeassistant/components/skybell/translations/pt.json +1 -1
- homeassistant/components/sleep_as_android/manifest.json +1 -1
- homeassistant/components/sleep_as_android/sensor.py +6 -0
- homeassistant/components/sleep_as_android/translations/id.json +31 -0
- homeassistant/components/sleep_as_android/translations/pt.json +1 -1
- homeassistant/components/sleepiq/translations/id.json +5 -0
- homeassistant/components/slide_local/coordinator.py +10 -7
- homeassistant/components/slide_local/cover.py +0 -2
- homeassistant/components/sma/config_flow.py +2 -2
- homeassistant/components/sma/translations/fy.json +16 -0
- homeassistant/components/smarla/translations/pt.json +1 -1
- homeassistant/components/smartthings/__init__.py +3 -0
- homeassistant/components/smartthings/climate.py +31 -8
- homeassistant/components/smartthings/icons.json +7 -0
- homeassistant/components/smartthings/manifest.json +1 -1
- homeassistant/components/smartthings/strings.json +22 -4
- homeassistant/components/smartthings/switch.py +7 -0
- homeassistant/components/smartthings/translations/ar.json +11 -0
- homeassistant/components/smartthings/translations/cs.json +19 -1
- homeassistant/components/smartthings/translations/de.json +18 -0
- homeassistant/components/smartthings/translations/en-GB.json +19 -1
- homeassistant/components/smartthings/translations/en.json +19 -1
- homeassistant/components/smartthings/translations/es.json +19 -1
- homeassistant/components/smartthings/translations/et.json +19 -1
- homeassistant/components/smartthings/translations/fr.json +40 -3
- homeassistant/components/smartthings/translations/ga.json +18 -6
- homeassistant/components/smartthings/translations/he.json +5 -0
- homeassistant/components/smartthings/translations/hu.json +0 -6
- homeassistant/components/smartthings/translations/id.json +7 -0
- homeassistant/components/smartthings/translations/it.json +5 -0
- homeassistant/components/smartthings/translations/ko.json +0 -2
- homeassistant/components/smartthings/translations/lt.json +19 -1
- homeassistant/components/smartthings/translations/nl.json +7 -0
- homeassistant/components/smartthings/translations/pt.json +19 -1
- homeassistant/components/smartthings/translations/sk.json +19 -1
- homeassistant/components/smartthings/translations/sv.json +0 -6
- homeassistant/components/smartthings/translations/tr.json +0 -6
- homeassistant/components/smartthings/translations/uk.json +16 -0
- homeassistant/components/smartthings/translations/zh-Hans.json +19 -1
- homeassistant/components/smartthings/translations/zh-Hant.json +19 -1
- homeassistant/components/smarttub/translations/pt.json +1 -1
- homeassistant/components/snmp/device_tracker.py +7 -0
- homeassistant/components/snoo/translations/fy.json +9 -0
- homeassistant/components/snooz/translations/es.json +1 -1
- homeassistant/components/solarlog/manifest.json +1 -1
- homeassistant/components/sonos/__init__.py +3 -0
- homeassistant/components/sonos/const.py +1 -0
- homeassistant/components/sonos/manifest.json +2 -1
- homeassistant/components/sonos/media_browser.py +1 -1
- homeassistant/components/sonos/media_player.py +46 -129
- homeassistant/components/sonos/select.py +9 -13
- homeassistant/components/sonos/services.py +143 -0
- homeassistant/components/sonos/speaker.py +23 -0
- homeassistant/components/sonos/translations/id.json +10 -0
- homeassistant/components/sql/__init__.py +52 -15
- homeassistant/components/sql/config_flow.py +115 -76
- homeassistant/components/sql/const.py +1 -0
- homeassistant/components/sql/sensor.py +6 -6
- homeassistant/components/sql/strings.json +52 -29
- homeassistant/components/sql/translations/bg.json +6 -14
- homeassistant/components/sql/translations/ca.json +0 -26
- homeassistant/components/sql/translations/cs.json +51 -28
- homeassistant/components/sql/translations/de.json +51 -28
- homeassistant/components/sql/translations/el.json +2 -34
- homeassistant/components/sql/translations/en-GB.json +51 -28
- homeassistant/components/sql/translations/en.json +51 -28
- homeassistant/components/sql/translations/es.json +51 -28
- homeassistant/components/sql/translations/et.json +51 -28
- homeassistant/components/sql/translations/fi.json +0 -26
- homeassistant/components/sql/translations/fr.json +53 -26
- homeassistant/components/sql/translations/ga.json +47 -29
- homeassistant/components/sql/translations/gl.json +1 -14
- homeassistant/components/sql/translations/he.json +16 -26
- homeassistant/components/sql/translations/hu.json +2 -34
- homeassistant/components/sql/translations/id.json +0 -21
- homeassistant/components/sql/translations/it.json +5 -26
- homeassistant/components/sql/translations/ja.json +2 -34
- homeassistant/components/sql/translations/ko.json +0 -26
- homeassistant/components/sql/translations/lt.json +51 -28
- homeassistant/components/sql/translations/nb.json +0 -23
- homeassistant/components/sql/translations/nl.json +19 -24
- homeassistant/components/sql/translations/pl.json +0 -22
- homeassistant/components/sql/translations/pt-BR.json +0 -25
- homeassistant/components/sql/translations/pt.json +53 -26
- homeassistant/components/sql/translations/ro.json +0 -25
- homeassistant/components/sql/translations/ru.json +50 -28
- homeassistant/components/sql/translations/sk.json +51 -28
- homeassistant/components/sql/translations/sl.json +4 -28
- homeassistant/components/sql/translations/sv.json +2 -34
- homeassistant/components/sql/translations/tr.json +2 -34
- homeassistant/components/sql/translations/uk.json +1 -26
- homeassistant/components/sql/translations/vi.json +0 -24
- homeassistant/components/sql/translations/zh-Hans.json +50 -28
- homeassistant/components/sql/translations/zh-Hant.json +51 -28
- homeassistant/components/squeezebox/browse_media.py +8 -2
- homeassistant/components/squeezebox/update.py +1 -1
- homeassistant/components/ssdp/server.py +47 -43
- homeassistant/components/starline/translations/ar.json +9 -0
- homeassistant/components/starlink/coordinator.py +5 -11
- homeassistant/components/starlink/sensor.py +61 -19
- homeassistant/components/statistics/__init__.py +1 -6
- homeassistant/components/statistics/config_flow.py +1 -0
- homeassistant/components/stookwijzer/translations/es.json +1 -1
- homeassistant/components/switch/translations/ca.json +3 -0
- homeassistant/components/switch/translations/id.json +3 -0
- homeassistant/components/switch_as_x/translations/da.json +7 -0
- homeassistant/components/switchbot/__init__.py +12 -2
- homeassistant/components/switchbot/config_flow.py +87 -5
- homeassistant/components/switchbot/const.py +18 -0
- homeassistant/components/switchbot/entity.py +4 -0
- homeassistant/components/switchbot/icons.json +24 -1
- homeassistant/components/switchbot/manifest.json +1 -1
- homeassistant/components/switchbot/sensor.py +34 -8
- homeassistant/components/switchbot/strings.json +42 -1
- homeassistant/components/switchbot/switch.py +61 -2
- homeassistant/components/switchbot/translations/bg.json +35 -3
- homeassistant/components/switchbot/translations/ca.json +6 -0
- homeassistant/components/switchbot/translations/cs.json +43 -2
- homeassistant/components/switchbot/translations/de.json +43 -2
- homeassistant/components/switchbot/translations/el.json +10 -8
- homeassistant/components/switchbot/translations/en-GB.json +43 -2
- homeassistant/components/switchbot/translations/en.json +43 -2
- homeassistant/components/switchbot/translations/es.json +44 -3
- homeassistant/components/switchbot/translations/et.json +43 -2
- homeassistant/components/switchbot/translations/fr.json +0 -5
- homeassistant/components/switchbot/translations/fy.json +7 -0
- homeassistant/components/switchbot/translations/ga.json +43 -2
- homeassistant/components/switchbot/translations/he.json +6 -0
- homeassistant/components/switchbot/translations/hu.json +0 -8
- homeassistant/components/switchbot/translations/id.json +12 -0
- homeassistant/components/switchbot/translations/it.json +26 -0
- homeassistant/components/switchbot/translations/ja.json +0 -8
- homeassistant/components/switchbot/translations/lt.json +44 -3
- homeassistant/components/switchbot/translations/nl.json +23 -4
- homeassistant/components/switchbot/translations/pl.json +0 -5
- homeassistant/components/switchbot/translations/pt-BR.json +0 -5
- homeassistant/components/switchbot/translations/pt.json +43 -2
- homeassistant/components/switchbot/translations/ru.json +19 -1
- homeassistant/components/switchbot/translations/sk.json +43 -2
- homeassistant/components/switchbot/translations/sv.json +0 -8
- homeassistant/components/switchbot/translations/tr.json +0 -8
- homeassistant/components/switchbot/translations/uk.json +26 -0
- homeassistant/components/switchbot/translations/zh-Hans.json +43 -2
- homeassistant/components/switchbot/translations/zh-Hant.json +43 -2
- homeassistant/components/switchbot_cloud/__init__.py +46 -1
- homeassistant/components/switchbot_cloud/binary_sensor.py +46 -0
- homeassistant/components/switchbot_cloud/climate.py +47 -6
- homeassistant/components/switchbot_cloud/const.py +24 -0
- homeassistant/components/switchbot_cloud/cover.py +3 -5
- homeassistant/components/switchbot_cloud/entity.py +1 -1
- homeassistant/components/switchbot_cloud/humidifier.py +155 -0
- homeassistant/components/switchbot_cloud/icons.json +33 -0
- homeassistant/components/switchbot_cloud/light.py +8 -2
- homeassistant/components/switchbot_cloud/manifest.json +7 -2
- homeassistant/components/switchbot_cloud/sensor.py +61 -1
- homeassistant/components/switchbot_cloud/strings.json +21 -0
- homeassistant/components/switchbot_cloud/switch.py +2 -5
- homeassistant/components/switchbot_cloud/translations/ca.json +13 -0
- homeassistant/components/switchbot_cloud/translations/cs.json +21 -0
- homeassistant/components/switchbot_cloud/translations/de.json +21 -0
- homeassistant/components/switchbot_cloud/translations/el.json +13 -0
- homeassistant/components/switchbot_cloud/translations/en-GB.json +21 -0
- homeassistant/components/switchbot_cloud/translations/en.json +21 -0
- homeassistant/components/switchbot_cloud/translations/es.json +21 -0
- homeassistant/components/switchbot_cloud/translations/et.json +21 -0
- homeassistant/components/switchbot_cloud/translations/ga.json +21 -0
- homeassistant/components/switchbot_cloud/translations/he.json +13 -0
- homeassistant/components/switchbot_cloud/translations/id.json +27 -0
- homeassistant/components/switchbot_cloud/translations/it.json +18 -0
- homeassistant/components/switchbot_cloud/translations/lt.json +21 -0
- homeassistant/components/switchbot_cloud/translations/nl.json +14 -0
- homeassistant/components/switchbot_cloud/translations/pt.json +21 -0
- homeassistant/components/switchbot_cloud/translations/ru.json +15 -0
- homeassistant/components/switchbot_cloud/translations/sk.json +21 -0
- homeassistant/components/switchbot_cloud/translations/zh-Hans.json +21 -0
- homeassistant/components/switchbot_cloud/translations/zh-Hant.json +21 -0
- homeassistant/components/synology_dsm/__init__.py +5 -2
- homeassistant/components/synology_dsm/binary_sensor.py +5 -2
- homeassistant/components/synology_dsm/button.py +6 -4
- homeassistant/components/synology_dsm/camera.py +11 -5
- homeassistant/components/synology_dsm/coordinator.py +7 -4
- homeassistant/components/synology_dsm/entity.py +22 -14
- homeassistant/components/synology_dsm/media_source.py +16 -9
- homeassistant/components/synology_dsm/sensor.py +64 -38
- homeassistant/components/synology_dsm/services.py +3 -2
- homeassistant/components/synology_dsm/switch.py +13 -9
- homeassistant/components/synology_dsm/translations/ar.json +9 -0
- homeassistant/components/synology_dsm/update.py +8 -5
- homeassistant/components/system_bridge/manifest.json +1 -1
- homeassistant/components/system_bridge/sensor.py +9 -0
- homeassistant/components/system_bridge/strings.json +3 -0
- homeassistant/components/system_bridge/translations/ar.json +9 -0
- homeassistant/components/system_bridge/translations/cs.json +3 -0
- homeassistant/components/system_bridge/translations/de.json +3 -0
- homeassistant/components/system_bridge/translations/en-GB.json +3 -0
- homeassistant/components/system_bridge/translations/en.json +3 -0
- homeassistant/components/system_bridge/translations/es.json +3 -0
- homeassistant/components/system_bridge/translations/et.json +3 -0
- homeassistant/components/system_bridge/translations/ga.json +3 -0
- homeassistant/components/system_bridge/translations/lt.json +3 -0
- homeassistant/components/system_bridge/translations/nl.json +3 -0
- homeassistant/components/system_bridge/translations/pt.json +3 -0
- homeassistant/components/system_bridge/translations/ru.json +3 -0
- homeassistant/components/system_bridge/translations/sk.json +3 -0
- homeassistant/components/system_bridge/translations/zh-Hans.json +3 -0
- homeassistant/components/system_bridge/translations/zh-Hant.json +3 -0
- homeassistant/components/systemmonitor/binary_sensor.py +3 -9
- homeassistant/components/systemmonitor/const.py +4 -0
- homeassistant/components/systemmonitor/coordinator.py +27 -3
- homeassistant/components/systemmonitor/sensor.py +25 -110
- homeassistant/components/systemmonitor/util.py +0 -6
- homeassistant/components/tado/translations/it.json +6 -0
- homeassistant/components/tag/manifest.json +1 -1
- homeassistant/components/tasmota/camera.py +110 -0
- homeassistant/components/tasmota/const.py +1 -0
- homeassistant/components/tasmota/manifest.json +1 -1
- homeassistant/components/tautulli/translations/de.json +2 -2
- homeassistant/components/technove/translations/de.json +1 -1
- homeassistant/components/tedee/translations/de.json +2 -2
- homeassistant/components/telegram_bot/__init__.py +39 -0
- homeassistant/components/telegram_bot/bot.py +22 -0
- homeassistant/components/telegram_bot/const.py +14 -0
- homeassistant/components/telegram_bot/icons.json +3 -0
- homeassistant/components/telegram_bot/services.yaml +32 -0
- homeassistant/components/telegram_bot/strings.json +37 -0
- homeassistant/components/telegram_bot/translations/cs.json +37 -0
- homeassistant/components/telegram_bot/translations/de.json +37 -0
- homeassistant/components/telegram_bot/translations/el.json +11 -0
- homeassistant/components/telegram_bot/translations/en-GB.json +37 -0
- homeassistant/components/telegram_bot/translations/en.json +37 -0
- homeassistant/components/telegram_bot/translations/es.json +37 -0
- homeassistant/components/telegram_bot/translations/et.json +37 -0
- homeassistant/components/telegram_bot/translations/ga.json +37 -0
- homeassistant/components/telegram_bot/translations/he.json +15 -0
- homeassistant/components/telegram_bot/translations/id.json +5 -0
- homeassistant/components/telegram_bot/translations/lt.json +37 -0
- homeassistant/components/telegram_bot/translations/nl.json +11 -0
- homeassistant/components/telegram_bot/translations/pt.json +39 -2
- homeassistant/components/telegram_bot/translations/ru.json +34 -0
- homeassistant/components/telegram_bot/translations/sk.json +37 -0
- homeassistant/components/telegram_bot/translations/zh-Hans.json +37 -0
- homeassistant/components/telegram_bot/translations/zh-Hant.json +37 -0
- homeassistant/components/template/config.py +35 -10
- homeassistant/components/template/config_flow.py +1 -1
- homeassistant/components/template/strings.json +21 -20
- homeassistant/components/template/translations/bg.json +1 -0
- homeassistant/components/template/translations/ca.json +17 -0
- homeassistant/components/template/translations/cs.json +5 -4
- homeassistant/components/template/translations/da.json +17 -0
- homeassistant/components/template/translations/de.json +5 -4
- homeassistant/components/template/translations/el.json +10 -2
- homeassistant/components/template/translations/en-GB.json +5 -4
- homeassistant/components/template/translations/en.json +5 -4
- homeassistant/components/template/translations/es.json +6 -5
- homeassistant/components/template/translations/et.json +5 -4
- homeassistant/components/template/translations/fr.json +6 -4
- homeassistant/components/template/translations/ga.json +4 -4
- homeassistant/components/template/translations/he.json +4 -4
- homeassistant/components/template/translations/id.json +81 -0
- homeassistant/components/template/translations/it.json +16 -0
- homeassistant/components/template/translations/lt.json +21 -6
- homeassistant/components/template/translations/mk.json +9 -0
- homeassistant/components/template/translations/nl.json +4 -2
- homeassistant/components/template/translations/pt.json +7 -6
- homeassistant/components/template/translations/ru.json +5 -4
- homeassistant/components/template/translations/sk.json +5 -4
- homeassistant/components/template/translations/sv.json +1 -1
- homeassistant/components/template/translations/zh-Hans.json +4 -4
- homeassistant/components/template/translations/zh-Hant.json +5 -4
- homeassistant/components/template/trigger_entity.py +17 -5
- homeassistant/components/tesla_fleet/strings.json +2 -2
- homeassistant/components/tesla_fleet/translations/ar.json +55 -0
- homeassistant/components/teslemetry/icons.json +3 -0
- homeassistant/components/teslemetry/services.py +3 -3
- homeassistant/components/teslemetry/strings.json +3 -0
- homeassistant/components/teslemetry/switch.py +50 -27
- homeassistant/components/teslemetry/translations/ar.json +27 -0
- homeassistant/components/teslemetry/translations/cs.json +3 -0
- homeassistant/components/teslemetry/translations/de.json +4 -1
- homeassistant/components/teslemetry/translations/en-GB.json +3 -0
- homeassistant/components/teslemetry/translations/en.json +3 -0
- homeassistant/components/teslemetry/translations/es.json +3 -0
- homeassistant/components/teslemetry/translations/et.json +3 -0
- homeassistant/components/teslemetry/translations/ga.json +3 -0
- homeassistant/components/teslemetry/translations/id.json +33 -0
- homeassistant/components/teslemetry/translations/it.json +5 -0
- homeassistant/components/teslemetry/translations/ko.json +5 -0
- homeassistant/components/teslemetry/translations/lt.json +3 -0
- homeassistant/components/teslemetry/translations/pt.json +5 -2
- homeassistant/components/teslemetry/translations/sk.json +3 -0
- homeassistant/components/teslemetry/translations/zh-Hans.json +3 -0
- homeassistant/components/teslemetry/translations/zh-Hant.json +3 -0
- homeassistant/components/tessie/translations/ar.json +9 -0
- homeassistant/components/thread/config_flow.py +11 -3
- homeassistant/components/thread/discovery.py +1 -0
- homeassistant/components/thread/manifest.json +1 -0
- homeassistant/components/threshold/__init__.py +1 -8
- homeassistant/components/threshold/config_flow.py +1 -0
- homeassistant/components/tibber/manifest.json +1 -1
- homeassistant/components/tibber/sensor.py +3 -4
- homeassistant/components/tibber/services.py +0 -1
- homeassistant/components/tile/translations/pt.json +1 -1
- homeassistant/components/tod/translations/sv.json +2 -2
- homeassistant/components/todo/intent.py +0 -2
- homeassistant/components/togrill/__init__.py +6 -1
- homeassistant/components/togrill/coordinator.py +24 -6
- homeassistant/components/togrill/icons.json +21 -0
- homeassistant/components/togrill/number.py +79 -26
- homeassistant/components/togrill/select.py +176 -0
- homeassistant/components/togrill/strings.json +40 -0
- homeassistant/components/togrill/translations/ca.json +10 -0
- homeassistant/components/togrill/translations/cs.json +40 -0
- homeassistant/components/togrill/translations/de.json +40 -0
- homeassistant/components/togrill/translations/el.json +6 -0
- homeassistant/components/togrill/translations/en-GB.json +40 -0
- homeassistant/components/togrill/translations/en.json +40 -0
- homeassistant/components/togrill/translations/es.json +40 -0
- homeassistant/components/togrill/translations/et.json +40 -0
- homeassistant/components/togrill/translations/ga.json +40 -0
- homeassistant/components/togrill/translations/he.json +15 -0
- homeassistant/components/togrill/translations/id.json +16 -0
- homeassistant/components/togrill/translations/it.json +44 -0
- homeassistant/components/togrill/translations/lt.json +40 -0
- homeassistant/components/togrill/translations/nl.json +21 -0
- homeassistant/components/togrill/translations/pl.json +18 -1
- homeassistant/components/togrill/translations/pt.json +40 -0
- homeassistant/components/togrill/translations/sk.json +40 -0
- homeassistant/components/togrill/translations/sv.json +13 -0
- homeassistant/components/togrill/translations/zh-Hans.json +40 -0
- homeassistant/components/togrill/translations/zh-Hant.json +40 -0
- homeassistant/components/tolo/config_flow.py +47 -17
- homeassistant/components/tolo/strings.json +2 -1
- homeassistant/components/tolo/translations/bg.json +2 -1
- homeassistant/components/tolo/translations/cs.json +2 -1
- homeassistant/components/tolo/translations/de.json +2 -1
- homeassistant/components/tolo/translations/el.json +2 -1
- homeassistant/components/tolo/translations/en-GB.json +2 -1
- homeassistant/components/tolo/translations/en.json +2 -1
- homeassistant/components/tolo/translations/es.json +2 -1
- homeassistant/components/tolo/translations/et.json +2 -1
- homeassistant/components/tolo/translations/ga.json +2 -1
- homeassistant/components/tolo/translations/he.json +2 -1
- homeassistant/components/tolo/translations/id.json +2 -1
- homeassistant/components/tolo/translations/lt.json +2 -1
- homeassistant/components/tolo/translations/nl.json +2 -1
- homeassistant/components/tolo/translations/pt.json +2 -1
- homeassistant/components/tolo/translations/sk.json +2 -1
- homeassistant/components/tolo/translations/zh-Hans.json +2 -1
- homeassistant/components/tolo/translations/zh-Hant.json +2 -1
- homeassistant/components/tomorrowio/translations/vi.json +1 -0
- homeassistant/components/totalconnect/translations/pt.json +1 -1
- homeassistant/components/traccar_server/translations/fy.json +9 -0
- homeassistant/components/traccar_server/translations/id.json +9 -1
- homeassistant/components/tractive/translations/de.json +1 -1
- homeassistant/components/tractive/translations/pt.json +1 -1
- homeassistant/components/tradfri/translations/ar.json +12 -0
- homeassistant/components/trafikverket_ferry/translations/uk.json +22 -0
- homeassistant/components/trafikverket_train/translations/pt.json +1 -1
- homeassistant/components/trafikverket_train/translations/zh-Hant.json +1 -1
- homeassistant/components/trafikverket_weatherstation/translations/uk.json +13 -0
- homeassistant/components/tts/__init__.py +101 -31
- homeassistant/components/tuya/__init__.py +11 -75
- homeassistant/components/tuya/alarm_control_panel.py +7 -11
- homeassistant/components/tuya/binary_sensor.py +39 -88
- homeassistant/components/tuya/button.py +8 -14
- homeassistant/components/tuya/camera.py +8 -14
- homeassistant/components/tuya/climate.py +12 -24
- homeassistant/components/tuya/const.py +527 -0
- homeassistant/components/tuya/cover.py +63 -36
- homeassistant/components/tuya/diagnostics.py +7 -9
- homeassistant/components/tuya/entity.py +4 -2
- homeassistant/components/tuya/event.py +10 -13
- homeassistant/components/tuya/fan.py +12 -23
- homeassistant/components/tuya/humidifier.py +8 -14
- homeassistant/components/tuya/light.py +45 -96
- homeassistant/components/tuya/manifest.json +1 -1
- homeassistant/components/tuya/number.py +61 -70
- homeassistant/components/tuya/scene.py +3 -3
- homeassistant/components/tuya/select.py +52 -76
- homeassistant/components/tuya/sensor.py +214 -168
- homeassistant/components/tuya/siren.py +11 -22
- homeassistant/components/tuya/strings.json +116 -3
- homeassistant/components/tuya/switch.py +168 -145
- homeassistant/components/tuya/translations/bg.json +32 -0
- homeassistant/components/tuya/translations/ca.json +6 -0
- homeassistant/components/tuya/translations/cs.json +113 -0
- homeassistant/components/tuya/translations/da.json +8 -0
- homeassistant/components/tuya/translations/de.json +113 -0
- homeassistant/components/tuya/translations/el.json +28 -0
- homeassistant/components/tuya/translations/en-GB.json +113 -0
- homeassistant/components/tuya/translations/en.json +113 -0
- homeassistant/components/tuya/translations/es.json +113 -0
- homeassistant/components/tuya/translations/et.json +113 -0
- homeassistant/components/tuya/translations/fr.json +6 -0
- homeassistant/components/tuya/translations/ga.json +113 -0
- homeassistant/components/tuya/translations/he.json +32 -0
- homeassistant/components/tuya/translations/id.json +32 -0
- homeassistant/components/tuya/translations/it.json +68 -0
- homeassistant/components/tuya/translations/lt.json +113 -0
- homeassistant/components/tuya/translations/nl.json +29 -0
- homeassistant/components/tuya/translations/pt.json +122 -0
- homeassistant/components/tuya/translations/ru.json +12 -0
- homeassistant/components/tuya/translations/sk.json +113 -0
- homeassistant/components/tuya/translations/sl.json +25 -0
- homeassistant/components/tuya/translations/uk.json +11 -0
- homeassistant/components/tuya/translations/zh-Hans.json +113 -0
- homeassistant/components/tuya/translations/zh-Hant.json +113 -0
- homeassistant/components/tuya/vacuum.py +6 -6
- homeassistant/components/tuya/valve.py +12 -11
- homeassistant/components/twitch/coordinator.py +3 -0
- homeassistant/components/unifi/manifest.json +1 -1
- homeassistant/components/unifiprotect/repairs.py +2 -11
- homeassistant/components/unifiprotect/translations/id.json +3 -0
- homeassistant/components/unifiprotect/translations/pt.json +1 -1
- homeassistant/components/universal/media_player.py +1 -1
- homeassistant/components/upcloud/manifest.json +1 -1
- homeassistant/components/update/translations/ca.json +3 -0
- homeassistant/components/update/translations/id.json +3 -0
- homeassistant/components/uptime_kuma/translations/id.json +40 -0
- homeassistant/components/uptime_kuma/translations/zh-Hant.json +1 -1
- homeassistant/components/uptimerobot/binary_sensor.py +23 -11
- homeassistant/components/uptimerobot/config_flow.py +27 -0
- homeassistant/components/uptimerobot/quality_scale.yaml +2 -6
- homeassistant/components/uptimerobot/sensor.py +32 -14
- homeassistant/components/uptimerobot/strings.json +9 -0
- homeassistant/components/uptimerobot/switch.py +23 -11
- homeassistant/components/uptimerobot/translations/bg.json +6 -0
- homeassistant/components/uptimerobot/translations/ca.json +6 -0
- homeassistant/components/uptimerobot/translations/cs.json +9 -0
- homeassistant/components/uptimerobot/translations/de.json +9 -0
- homeassistant/components/uptimerobot/translations/el.json +9 -0
- homeassistant/components/uptimerobot/translations/en-GB.json +9 -0
- homeassistant/components/uptimerobot/translations/en.json +9 -0
- homeassistant/components/uptimerobot/translations/es.json +9 -0
- homeassistant/components/uptimerobot/translations/et.json +9 -0
- homeassistant/components/uptimerobot/translations/ga.json +9 -0
- homeassistant/components/uptimerobot/translations/he.json +6 -0
- homeassistant/components/uptimerobot/translations/id.json +6 -0
- homeassistant/components/uptimerobot/translations/it.json +9 -0
- homeassistant/components/uptimerobot/translations/lt.json +9 -0
- homeassistant/components/uptimerobot/translations/nl.json +6 -0
- homeassistant/components/uptimerobot/translations/pt.json +9 -0
- homeassistant/components/uptimerobot/translations/ru.json +9 -0
- homeassistant/components/uptimerobot/translations/sk.json +9 -0
- homeassistant/components/uptimerobot/translations/zh-Hans.json +9 -0
- homeassistant/components/uptimerobot/translations/zh-Hant.json +9 -0
- homeassistant/components/usage_prediction/__init__.py +89 -0
- homeassistant/components/usage_prediction/common_control.py +236 -0
- homeassistant/components/usage_prediction/const.py +13 -0
- homeassistant/components/usage_prediction/manifest.json +10 -0
- homeassistant/components/usage_prediction/models.py +24 -0
- homeassistant/components/usage_prediction/strings.json +3 -0
- homeassistant/components/usage_prediction/translations/cs.json +3 -0
- homeassistant/components/usage_prediction/translations/de.json +3 -0
- homeassistant/components/usage_prediction/translations/en-GB.json +3 -0
- homeassistant/components/usage_prediction/translations/en.json +3 -0
- homeassistant/components/usage_prediction/translations/es.json +3 -0
- homeassistant/components/usage_prediction/translations/et.json +3 -0
- homeassistant/components/usage_prediction/translations/ga.json +3 -0
- homeassistant/components/usage_prediction/translations/lt.json +3 -0
- homeassistant/components/usage_prediction/translations/pt.json +3 -0
- homeassistant/components/usage_prediction/translations/sk.json +3 -0
- homeassistant/components/usage_prediction/translations/zh-Hans.json +3 -0
- homeassistant/components/usage_prediction/translations/zh-Hant.json +3 -0
- homeassistant/components/vacuum/intent.py +3 -1
- homeassistant/components/vallox/translations/ar.json +7 -0
- homeassistant/components/vallox/translations/mk.json +9 -0
- homeassistant/components/valve/translations/da.json +1 -0
- homeassistant/components/valve/translations/pl.json +3 -1
- homeassistant/components/vegehub/translations/id.json +4 -0
- homeassistant/components/velbus/translations/de.json +1 -1
- homeassistant/components/velbus/translations/fy.json +11 -0
- homeassistant/components/verisure/alarm_control_panel.py +18 -7
- homeassistant/components/verisure/lock.py +28 -27
- homeassistant/components/verisure/switch.py +1 -1
- homeassistant/components/verisure/translations/pt.json +2 -2
- homeassistant/components/vesync/__init__.py +20 -50
- homeassistant/components/vesync/binary_sensor.py +13 -6
- homeassistant/components/vesync/common.py +14 -26
- homeassistant/components/vesync/config_flow.py +42 -12
- homeassistant/components/vesync/const.py +10 -87
- homeassistant/components/vesync/coordinator.py +17 -10
- homeassistant/components/vesync/diagnostics.py +37 -29
- homeassistant/components/vesync/entity.py +2 -2
- homeassistant/components/vesync/fan.py +76 -74
- homeassistant/components/vesync/humidifier.py +32 -34
- homeassistant/components/vesync/light.py +24 -16
- homeassistant/components/vesync/manifest.json +4 -3
- homeassistant/components/vesync/number.py +27 -13
- homeassistant/components/vesync/select.py +42 -25
- homeassistant/components/vesync/sensor.py +34 -85
- homeassistant/components/vesync/switch.py +21 -17
- homeassistant/components/vesync/translations/fy.json +9 -0
- homeassistant/components/vesync/translations/pt.json +2 -2
- homeassistant/components/vicare/const.py +1 -0
- homeassistant/components/vicare/sensor.py +9 -0
- homeassistant/components/vicare/strings.json +3 -0
- homeassistant/components/vicare/translations/cs.json +3 -0
- homeassistant/components/vicare/translations/de.json +3 -0
- homeassistant/components/vicare/translations/en-GB.json +3 -0
- homeassistant/components/vicare/translations/en.json +3 -0
- homeassistant/components/vicare/translations/es.json +3 -0
- homeassistant/components/vicare/translations/et.json +3 -0
- homeassistant/components/vicare/translations/ga.json +3 -0
- homeassistant/components/vicare/translations/it.json +3 -0
- homeassistant/components/vicare/translations/lt.json +3 -0
- homeassistant/components/vicare/translations/pt.json +4 -1
- homeassistant/components/vicare/translations/sk.json +3 -0
- homeassistant/components/vicare/translations/zh-Hans.json +3 -0
- homeassistant/components/vicare/translations/zh-Hant.json +3 -0
- homeassistant/components/victron_remote_monitoring/__init__.py +34 -0
- homeassistant/components/victron_remote_monitoring/config_flow.py +255 -0
- homeassistant/components/victron_remote_monitoring/const.py +9 -0
- homeassistant/components/victron_remote_monitoring/coordinator.py +98 -0
- homeassistant/components/victron_remote_monitoring/manifest.json +11 -0
- homeassistant/components/victron_remote_monitoring/quality_scale.yaml +66 -0
- homeassistant/components/victron_remote_monitoring/sensor.py +250 -0
- homeassistant/components/victron_remote_monitoring/strings.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/bg.json +71 -0
- homeassistant/components/victron_remote_monitoring/translations/ca.json +25 -0
- homeassistant/components/victron_remote_monitoring/translations/cs.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/de.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/el.json +25 -0
- homeassistant/components/victron_remote_monitoring/translations/en-GB.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/en.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/es.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/et.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/fy.json +24 -0
- homeassistant/components/victron_remote_monitoring/translations/ga.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/he.json +25 -0
- homeassistant/components/victron_remote_monitoring/translations/id.json +25 -0
- homeassistant/components/victron_remote_monitoring/translations/lt.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/mk.json +60 -0
- homeassistant/components/victron_remote_monitoring/translations/nl.json +25 -0
- homeassistant/components/victron_remote_monitoring/translations/pt.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/ru.json +40 -0
- homeassistant/components/victron_remote_monitoring/translations/sk.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/zh-Hans.json +102 -0
- homeassistant/components/victron_remote_monitoring/translations/zh-Hant.json +102 -0
- homeassistant/components/voip/manifest.json +1 -1
- homeassistant/components/voip/translations/cs.json +1 -1
- homeassistant/components/voip/translations/de.json +1 -1
- homeassistant/components/voip/translations/fr.json +1 -1
- homeassistant/components/voip/translations/he.json +1 -1
- homeassistant/components/voip/translations/it.json +1 -1
- homeassistant/components/voip/translations/lt.json +1 -1
- homeassistant/components/voip/translations/nl.json +1 -1
- homeassistant/components/voip/translations/pt.json +2 -2
- homeassistant/components/voip/translations/ru.json +1 -1
- homeassistant/components/voip/translations/sv.json +1 -1
- homeassistant/components/voip/translations/zh-Hans.json +1 -1
- homeassistant/components/volvo/__init__.py +19 -17
- homeassistant/components/volvo/api.py +18 -0
- homeassistant/components/volvo/binary_sensor.py +1 -1
- homeassistant/components/volvo/coordinator.py +92 -53
- homeassistant/components/volvo/entity.py +1 -1
- homeassistant/components/volvo/sensor.py +13 -7
- homeassistant/components/volvo/translations/en-GB.json +1 -1
- homeassistant/components/volvo/translations/id.json +58 -0
- homeassistant/components/volvo/translations/pt.json +1 -1
- homeassistant/components/volvooncall/__init__.py +30 -55
- homeassistant/components/volvooncall/config_flow.py +5 -111
- homeassistant/components/volvooncall/const.py +1 -64
- homeassistant/components/volvooncall/manifest.json +2 -3
- homeassistant/components/volvooncall/strings.json +8 -13
- homeassistant/components/volvooncall/translations/bg.json +1 -21
- homeassistant/components/volvooncall/translations/bn.json +1 -7
- homeassistant/components/volvooncall/translations/ca.json +1 -21
- homeassistant/components/volvooncall/translations/cs.json +8 -13
- homeassistant/components/volvooncall/translations/da.json +1 -20
- homeassistant/components/volvooncall/translations/de.json +8 -13
- homeassistant/components/volvooncall/translations/el.json +1 -23
- homeassistant/components/volvooncall/translations/en-GB.json +8 -13
- homeassistant/components/volvooncall/translations/en.json +8 -13
- homeassistant/components/volvooncall/translations/es.json +8 -13
- homeassistant/components/volvooncall/translations/et.json +8 -13
- homeassistant/components/volvooncall/translations/fi.json +1 -21
- homeassistant/components/volvooncall/translations/fr.json +1 -21
- homeassistant/components/volvooncall/translations/fy.json +1 -21
- homeassistant/components/volvooncall/translations/ga.json +8 -11
- homeassistant/components/volvooncall/translations/he.json +1 -20
- homeassistant/components/volvooncall/translations/hu.json +1 -21
- homeassistant/components/volvooncall/translations/id.json +1 -21
- homeassistant/components/volvooncall/translations/it.json +1 -21
- homeassistant/components/volvooncall/translations/ja.json +1 -21
- homeassistant/components/volvooncall/translations/ko.json +1 -21
- homeassistant/components/volvooncall/translations/lt.json +8 -13
- homeassistant/components/volvooncall/translations/lv.json +1 -19
- homeassistant/components/volvooncall/translations/nb.json +1 -21
- homeassistant/components/volvooncall/translations/nl.json +1 -21
- homeassistant/components/volvooncall/translations/pl.json +1 -21
- homeassistant/components/volvooncall/translations/pt-BR.json +1 -21
- homeassistant/components/volvooncall/translations/pt.json +8 -13
- homeassistant/components/volvooncall/translations/ro.json +1 -21
- homeassistant/components/volvooncall/translations/ru.json +8 -11
- homeassistant/components/volvooncall/translations/sk.json +8 -13
- homeassistant/components/volvooncall/translations/sl.json +1 -20
- homeassistant/components/volvooncall/translations/sv.json +1 -21
- homeassistant/components/volvooncall/translations/tr.json +1 -21
- homeassistant/components/volvooncall/translations/uk.json +1 -21
- homeassistant/components/volvooncall/translations/vi.json +1 -7
- homeassistant/components/volvooncall/translations/zh-Hans.json +8 -13
- homeassistant/components/volvooncall/translations/zh-Hant.json +8 -13
- homeassistant/components/wake_on_lan/__init__.py +0 -6
- homeassistant/components/wake_on_lan/config_flow.py +1 -0
- homeassistant/components/waterfurnace/manifest.json +1 -1
- homeassistant/components/watergate/translations/de.json +2 -2
- homeassistant/components/weatherflow/__init__.py +1 -0
- homeassistant/components/weatherflow/event.py +104 -0
- homeassistant/components/weatherflow/icons.json +8 -0
- homeassistant/components/weatherflow/strings.json +8 -0
- homeassistant/components/weatherflow/translations/cs.json +8 -0
- homeassistant/components/weatherflow/translations/de.json +8 -0
- homeassistant/components/weatherflow/translations/en-GB.json +8 -0
- homeassistant/components/weatherflow/translations/en.json +8 -0
- homeassistant/components/weatherflow/translations/es.json +9 -1
- homeassistant/components/weatherflow/translations/et.json +8 -0
- homeassistant/components/weatherflow/translations/ga.json +8 -0
- homeassistant/components/weatherflow/translations/lt.json +8 -0
- homeassistant/components/weatherflow/translations/nl.json +8 -0
- homeassistant/components/weatherflow/translations/pt.json +8 -0
- homeassistant/components/weatherflow/translations/sk.json +8 -0
- homeassistant/components/weatherflow/translations/zh-Hans.json +8 -0
- homeassistant/components/weatherflow/translations/zh-Hant.json +8 -0
- homeassistant/components/webdav/translations/fy.json +11 -0
- homeassistant/components/webhook/trigger.py +10 -3
- homeassistant/components/webostv/translations/de.json +2 -2
- homeassistant/components/whirlpool/binary_sensor.py +1 -0
- homeassistant/components/whirlpool/climate.py +24 -29
- homeassistant/components/whirlpool/entity.py +32 -6
- homeassistant/components/whirlpool/manifest.json +2 -2
- homeassistant/components/whirlpool/quality_scale.yaml +5 -15
- homeassistant/components/whirlpool/sensor.py +1 -0
- homeassistant/components/whirlpool/strings.json +3 -0
- homeassistant/components/whirlpool/translations/cs.json +3 -0
- homeassistant/components/whirlpool/translations/de.json +3 -0
- homeassistant/components/whirlpool/translations/en-GB.json +3 -0
- homeassistant/components/whirlpool/translations/en.json +3 -0
- homeassistant/components/whirlpool/translations/es.json +3 -0
- homeassistant/components/whirlpool/translations/et.json +3 -0
- homeassistant/components/whirlpool/translations/ga.json +3 -0
- homeassistant/components/whirlpool/translations/id.json +1 -0
- homeassistant/components/whirlpool/translations/it.json +5 -0
- homeassistant/components/whirlpool/translations/lt.json +3 -0
- homeassistant/components/whirlpool/translations/pt.json +3 -0
- homeassistant/components/whirlpool/translations/ru.json +3 -0
- homeassistant/components/whirlpool/translations/sk.json +3 -0
- homeassistant/components/whirlpool/translations/zh-Hans.json +3 -0
- homeassistant/components/whirlpool/translations/zh-Hant.json +3 -0
- homeassistant/components/wled/analytics.py +11 -0
- homeassistant/components/wmspro/cover.py +24 -11
- homeassistant/components/workday/calendar.py +104 -0
- homeassistant/components/workday/config_flow.py +1 -0
- homeassistant/components/workday/const.py +1 -1
- homeassistant/components/workday/manifest.json +1 -1
- homeassistant/components/workday/strings.json +5 -0
- homeassistant/components/workday/translations/bg.json +5 -0
- homeassistant/components/workday/translations/ca.json +5 -0
- homeassistant/components/workday/translations/cs.json +5 -0
- homeassistant/components/workday/translations/de.json +5 -0
- homeassistant/components/workday/translations/el.json +5 -0
- homeassistant/components/workday/translations/en-GB.json +5 -0
- homeassistant/components/workday/translations/en.json +5 -0
- homeassistant/components/workday/translations/es.json +5 -0
- homeassistant/components/workday/translations/et.json +5 -0
- homeassistant/components/workday/translations/fr.json +5 -0
- homeassistant/components/workday/translations/ga.json +5 -0
- homeassistant/components/workday/translations/he.json +5 -0
- homeassistant/components/workday/translations/lt.json +5 -0
- homeassistant/components/workday/translations/nl.json +5 -0
- homeassistant/components/workday/translations/pt.json +5 -0
- homeassistant/components/workday/translations/ru.json +5 -0
- homeassistant/components/workday/translations/sk.json +5 -0
- homeassistant/components/workday/translations/uk.json +7 -0
- homeassistant/components/workday/translations/zh-Hans.json +5 -0
- homeassistant/components/workday/translations/zh-Hant.json +5 -0
- homeassistant/components/wyoming/manifest.json +1 -1
- homeassistant/components/wyoming/translations/cs.json +1 -1
- homeassistant/components/wyoming/translations/de.json +1 -1
- homeassistant/components/wyoming/translations/fr.json +1 -1
- homeassistant/components/wyoming/translations/he.json +1 -1
- homeassistant/components/wyoming/translations/it.json +1 -1
- homeassistant/components/wyoming/translations/lt.json +1 -1
- homeassistant/components/wyoming/translations/nl.json +1 -1
- homeassistant/components/wyoming/translations/pt.json +1 -1
- homeassistant/components/wyoming/translations/ru.json +1 -1
- homeassistant/components/wyoming/translations/sv.json +1 -1
- homeassistant/components/wyoming/translations/zh-Hans.json +1 -1
- homeassistant/components/wyoming/translations/zh-Hant.json +1 -1
- homeassistant/components/xiaomi_aqara/translations/zh-Hant.json +2 -2
- homeassistant/components/xiaomi_miio/translations/fy.json +7 -0
- homeassistant/components/yale/lock.py +13 -19
- homeassistant/components/yale/manifest.json +1 -1
- homeassistant/components/yale_smart_alarm/translations/pt.json +1 -1
- homeassistant/components/yalexs_ble/__init__.py +0 -12
- homeassistant/components/yalexs_ble/config_flow.py +2 -2
- homeassistant/components/yalexs_ble/translations/pt.json +2 -2
- homeassistant/components/yalexs_ble/translations/ru.json +12 -0
- homeassistant/components/yolink/translations/id.json +9 -0
- homeassistant/components/zabbix/manifest.json +1 -1
- homeassistant/components/zeroconf/manifest.json +1 -1
- homeassistant/components/zha/__init__.py +1 -1
- homeassistant/components/zha/api.py +1 -1
- homeassistant/components/zha/config_flow.py +293 -83
- homeassistant/components/zha/cover.py +1 -15
- homeassistant/components/zha/manifest.json +1 -1
- homeassistant/components/zha/radio_manager.py +85 -82
- homeassistant/components/zha/repairs/network_settings_inconsistent.py +1 -1
- homeassistant/components/zha/strings.json +101 -28
- homeassistant/components/zha/translations/bg.json +52 -25
- homeassistant/components/zha/translations/bn.json +0 -10
- homeassistant/components/zha/translations/ca.json +0 -35
- homeassistant/components/zha/translations/cs.json +86 -41
- homeassistant/components/zha/translations/da.json +1 -34
- homeassistant/components/zha/translations/de.json +115 -42
- homeassistant/components/zha/translations/el.json +0 -41
- homeassistant/components/zha/translations/en-GB.json +115 -42
- homeassistant/components/zha/translations/en.json +115 -42
- homeassistant/components/zha/translations/es.json +86 -41
- homeassistant/components/zha/translations/et.json +110 -37
- homeassistant/components/zha/translations/fi.json +1 -40
- homeassistant/components/zha/translations/fr.json +66 -42
- homeassistant/components/zha/translations/fy.json +0 -12
- homeassistant/components/zha/translations/ga.json +66 -42
- homeassistant/components/zha/translations/gsw.json +0 -28
- homeassistant/components/zha/translations/he.json +0 -6
- homeassistant/components/zha/translations/hr.json +0 -11
- homeassistant/components/zha/translations/hu.json +0 -42
- homeassistant/components/zha/translations/id.json +1 -41
- homeassistant/components/zha/translations/it.json +1 -40
- homeassistant/components/zha/translations/ja.json +0 -42
- homeassistant/components/zha/translations/ko.json +1 -40
- homeassistant/components/zha/translations/lt.json +86 -41
- homeassistant/components/zha/translations/lv.json +0 -4
- homeassistant/components/zha/translations/nb.json +0 -26
- homeassistant/components/zha/translations/nl.json +6 -41
- homeassistant/components/zha/translations/pl.json +20 -24
- homeassistant/components/zha/translations/pt-BR.json +0 -34
- homeassistant/components/zha/translations/pt.json +84 -39
- homeassistant/components/zha/translations/ro.json +0 -28
- homeassistant/components/zha/translations/ru.json +6 -43
- homeassistant/components/zha/translations/sk.json +86 -41
- homeassistant/components/zha/translations/sl.json +0 -41
- homeassistant/components/zha/translations/sv.json +0 -42
- homeassistant/components/zha/translations/tr.json +0 -42
- homeassistant/components/zha/translations/uk.json +13 -31
- homeassistant/components/zha/translations/vi.json +0 -30
- homeassistant/components/zha/translations/zh-Hans.json +73 -45
- homeassistant/components/zha/translations/zh-Hant.json +115 -42
- homeassistant/components/zhong_hong/climate.py +25 -3
- homeassistant/components/zimi/manifest.json +1 -1
- homeassistant/components/zimi/translations/pt.json +1 -1
- homeassistant/components/zone/translations/uk.json +1 -0
- homeassistant/components/zwave_js/__init__.py +25 -7
- homeassistant/components/zwave_js/config_flow.py +121 -24
- homeassistant/components/zwave_js/const.py +3 -0
- homeassistant/components/zwave_js/device_trigger.py +6 -4
- homeassistant/components/zwave_js/strings.json +7 -2
- homeassistant/components/zwave_js/translations/ca.json +0 -1
- homeassistant/components/zwave_js/translations/cs.json +6 -1
- homeassistant/components/zwave_js/translations/de.json +6 -1
- homeassistant/components/zwave_js/translations/el.json +0 -1
- homeassistant/components/zwave_js/translations/en-GB.json +6 -1
- homeassistant/components/zwave_js/translations/en.json +6 -1
- homeassistant/components/zwave_js/translations/es.json +6 -1
- homeassistant/components/zwave_js/translations/et.json +6 -1
- homeassistant/components/zwave_js/translations/fi.json +0 -1
- homeassistant/components/zwave_js/translations/fr.json +1 -1
- homeassistant/components/zwave_js/translations/ga.json +5 -1
- homeassistant/components/zwave_js/translations/hu.json +0 -1
- homeassistant/components/zwave_js/translations/id.json +0 -1
- homeassistant/components/zwave_js/translations/it.json +6 -1
- homeassistant/components/zwave_js/translations/ja.json +0 -1
- homeassistant/components/zwave_js/translations/ko.json +0 -1
- homeassistant/components/zwave_js/translations/lt.json +6 -1
- homeassistant/components/zwave_js/translations/nb.json +0 -1
- homeassistant/components/zwave_js/translations/nl.json +0 -1
- homeassistant/components/zwave_js/translations/pl.json +0 -1
- homeassistant/components/zwave_js/translations/pt-BR.json +0 -1
- homeassistant/components/zwave_js/translations/pt.json +8 -3
- homeassistant/components/zwave_js/translations/ro.json +0 -1
- homeassistant/components/zwave_js/translations/ru.json +1 -1
- homeassistant/components/zwave_js/translations/sk.json +6 -1
- homeassistant/components/zwave_js/translations/sv.json +0 -1
- homeassistant/components/zwave_js/translations/tr.json +0 -1
- homeassistant/components/zwave_js/translations/uk.json +20 -1
- homeassistant/components/zwave_js/translations/vi.json +0 -1
- homeassistant/components/zwave_js/translations/zh-Hans.json +6 -1
- homeassistant/components/zwave_js/translations/zh-Hant.json +6 -1
- homeassistant/components/zwave_js/triggers/event.py +143 -116
- homeassistant/components/zwave_js/triggers/value_updated.py +66 -39
- homeassistant/config_entries.py +38 -7
- homeassistant/const.py +10 -50
- homeassistant/data_entry_flow.py +140 -2
- homeassistant/generated/application_credentials.py +1 -0
- homeassistant/generated/config_flows.py +13 -0
- homeassistant/generated/dhcp.py +8 -0
- homeassistant/generated/entity_platforms.py +54 -0
- homeassistant/generated/integrations.json +113 -25
- homeassistant/generated/usb.py +6 -0
- homeassistant/generated/zeroconf.py +5 -0
- homeassistant/helpers/condition.py +7 -2
- homeassistant/helpers/config_validation.py +22 -5
- homeassistant/helpers/deprecation.py +35 -0
- homeassistant/helpers/device_registry.py +97 -40
- homeassistant/helpers/entity_component.py +2 -48
- homeassistant/helpers/entity_platform.py +1 -1
- homeassistant/helpers/entity_registry.py +2 -1
- homeassistant/helpers/event.py +2 -1
- homeassistant/helpers/intent.py +18 -21
- homeassistant/helpers/llm.py +4 -3
- homeassistant/helpers/schema_config_entry_flow.py +21 -0
- homeassistant/helpers/selector.py +81 -87
- homeassistant/helpers/service.py +87 -36
- homeassistant/helpers/service_info/esphome.py +26 -0
- homeassistant/helpers/target.py +3 -6
- homeassistant/helpers/{template.py → template/__init__.py} +113 -806
- homeassistant/helpers/template/context.py +45 -0
- homeassistant/helpers/template/extensions/__init__.py +17 -0
- homeassistant/helpers/template/extensions/base.py +60 -0
- homeassistant/helpers/template/extensions/base64.py +50 -0
- homeassistant/helpers/template/extensions/collection.py +191 -0
- homeassistant/helpers/template/extensions/crypto.py +64 -0
- homeassistant/helpers/template/extensions/math.py +329 -0
- homeassistant/helpers/template/extensions/regex.py +109 -0
- homeassistant/helpers/template/extensions/string.py +58 -0
- homeassistant/helpers/template/helpers.py +16 -0
- homeassistant/helpers/template/render_info.py +155 -0
- homeassistant/helpers/trigger.py +86 -11
- homeassistant/helpers/trigger_template_entity.py +2 -2
- homeassistant/loader.py +3 -0
- homeassistant/package_constraints.txt +15 -15
- homeassistant/runner.py +115 -0
- homeassistant/strings.json +1 -1
- homeassistant/util/unit_conversion.py +13 -0
- homeassistant/util/unit_system.py +6 -0
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/METADATA +6 -6
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/RECORD +3343 -2830
- homeassistant/components/google_gemini/__init__.py +0 -1
- homeassistant/components/google_gemini/manifest.json +0 -6
- homeassistant/components/home_connect/repairs.py +0 -60
- homeassistant/components/home_connect/time.py +0 -172
- homeassistant/components/homeassistant_sky_connect/translations/hr.json +0 -7
- homeassistant/components/logbook/translations/da.json +0 -3
- homeassistant/components/volvooncall/binary_sensor.py +0 -79
- homeassistant/components/volvooncall/coordinator.py +0 -40
- homeassistant/components/volvooncall/device_tracker.py +0 -72
- homeassistant/components/volvooncall/entity.py +0 -88
- homeassistant/components/volvooncall/errors.py +0 -7
- homeassistant/components/volvooncall/lock.py +0 -80
- homeassistant/components/volvooncall/models.py +0 -100
- homeassistant/components/volvooncall/sensor.py +0 -72
- homeassistant/components/volvooncall/switch.py +0 -78
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/WHEEL +0 -0
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/entry_points.txt +0 -0
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/licenses/LICENSE.md +0 -0
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
- {homeassistant-2025.9.3.dist-info → homeassistant-2025.10.0.dist-info}/top_level.txt +0 -0
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "Failed to connect",
|
|
15
15
|
"config_entry_not_loaded": "The Z-Wave configuration entry is not loaded. Please try again when the configuration entry is loaded.",
|
|
16
16
|
"different_device": "The connected USB device is not the same as previously configured for this config entry. Please instead create a new config entry for the new device.",
|
|
17
|
-
"discovery_requires_supervisor": "Discovery requires the
|
|
17
|
+
"discovery_requires_supervisor": "Discovery requires the Home Assistant Supervisor.",
|
|
18
18
|
"migration_low_sdk_version": "The SDK version of the old adapter is lower than {ok_sdk_version}. This means it's not possible to migrate the non-volatile memory (NVM) of the old adapter to another adapter.\n\nCheck the documentation on the manufacturer support pages of the old adapter, if it's possible to upgrade the firmware of the old adapter to a version that is built with SDK version {ok_sdk_version} or higher.",
|
|
19
19
|
"migration_successful": "Migration successful.",
|
|
20
|
+
"not_hassio": "ESPHome discovery requires Home Assistant to configure the Z-Wave add-on.",
|
|
20
21
|
"not_zwave_device": "Discovered device is not a Z-Wave device.",
|
|
21
22
|
"not_zwave_js_addon": "Discovered add-on is not the official Z-Wave add-on.",
|
|
22
23
|
"reconfigure_successful": "Re-configuration was successful",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "Are you migrating to a new adapter or re-configuring the current adapter?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "This will move your Z-Wave network to a new adapter.",
|
|
143
|
+
"intent_reconfigure": "This will let you change the adapter configuration."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Migrate to a new adapter",
|
|
142
147
|
"intent_reconfigure": "Re-configure the current adapter"
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "Failed to connect",
|
|
15
15
|
"config_entry_not_loaded": "The Z-Wave configuration entry is not loaded. Please try again when the configuration entry is loaded.",
|
|
16
16
|
"different_device": "The connected USB device is not the same as previously configured for this config entry. Please instead create a new config entry for the new device.",
|
|
17
|
-
"discovery_requires_supervisor": "Discovery requires the
|
|
17
|
+
"discovery_requires_supervisor": "Discovery requires the Home Assistant Supervisor.",
|
|
18
18
|
"migration_low_sdk_version": "The SDK version of the old adapter is lower than {ok_sdk_version}. This means it's not possible to migrate the non-volatile memory (NVM) of the old adapter to another adapter.\n\nCheck the documentation on the manufacturer support pages of the old adapter, if it's possible to upgrade the firmware of the old adapter to a version that is built with SDK version {ok_sdk_version} or higher.",
|
|
19
19
|
"migration_successful": "Migration successful.",
|
|
20
|
+
"not_hassio": "ESPHome discovery requires Home Assistant to configure the Z-Wave add-on.",
|
|
20
21
|
"not_zwave_device": "Discovered device is not a Z-Wave device.",
|
|
21
22
|
"not_zwave_js_addon": "Discovered add-on is not the official Z-Wave add-on.",
|
|
22
23
|
"reconfigure_successful": "Re-configuration was successful",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "Are you migrating to a new adapter or re-configuring the current adapter?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "This will move your Z-Wave network to a new adapter.",
|
|
143
|
+
"intent_reconfigure": "This will let you change the adapter configuration."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Migrate to a new adapter",
|
|
142
147
|
"intent_reconfigure": "Re-configure the current adapter"
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "No se pudo conectar",
|
|
15
15
|
"config_entry_not_loaded": "La entrada de configuraci\u00f3n de Z-Wave no se ha cargado. Por favor, int\u00e9ntalo de nuevo cuando se haya cargado.",
|
|
16
16
|
"different_device": "El dispositivo USB conectado no es el mismo que se configur\u00f3 previamente para esta entrada de configuraci\u00f3n. Por favor, en su lugar crea una nueva entrada de configuraci\u00f3n para el nuevo dispositivo.",
|
|
17
|
-
"discovery_requires_supervisor": "El descubrimiento requiere
|
|
17
|
+
"discovery_requires_supervisor": "El descubrimiento requiere de Home Assistant Supervisor.",
|
|
18
18
|
"migration_low_sdk_version": "La versi\u00f3n del SDK del adaptador antiguo es inferior a {ok_sdk_version}. Esto significa que no es posible migrar la memoria no vol\u00e1til (NVM) del adaptador antiguo a otro. \n \nConsulta la documentaci\u00f3n en las p\u00e1ginas de soporte del fabricante del adaptador antiguo para ver si es posible actualizar el firmware a una versi\u00f3n del SDK {ok_sdk_version} o superior.",
|
|
19
19
|
"migration_successful": "Migraci\u00f3n exitosa.",
|
|
20
|
+
"not_hassio": "El descubrimiento de ESPHome requiere que Home Assistant configure el complemento Z-Wave.",
|
|
20
21
|
"not_zwave_device": "El dispositivo descubierto no es un dispositivo Z-Wave.",
|
|
21
22
|
"not_zwave_js_addon": "El complemento descubierto no es el complemento oficial de Z-Wave.",
|
|
22
23
|
"reconfigure_successful": "Se volvi\u00f3 a configurar correctamente",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "\u00bfEst\u00e1s migrando a un nuevo adaptador o volviendo a configurar el adaptador actual?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "Esto mover\u00e1 tu red Z-Wave a un nuevo adaptador.",
|
|
143
|
+
"intent_reconfigure": "Esto te permitir\u00e1 cambiar la configuraci\u00f3n del adaptador."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Migrar a un nuevo adaptador",
|
|
142
147
|
"intent_reconfigure": "Volver a configurar el adaptador actual"
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "\u00dchendamine nurjus",
|
|
15
15
|
"config_entry_not_loaded": "Z-Wave'i konfiguratsioonikirje pole laaditud. Proovi uuesti kui konfiguratsioonikirje on laaditud.",
|
|
16
16
|
"different_device": "\u00dchendatud USB-seade ei ole sama, mis on varem selle seadekande jaoks seadistatud. Selle asemel loo uue seadme jaoks uus seadekanne.",
|
|
17
|
-
"discovery_requires_supervisor": "Avastamine n\u00f5uab
|
|
17
|
+
"discovery_requires_supervisor": "Avastamine n\u00f5uab Home Assistanti Supervisorit.",
|
|
18
18
|
"migration_low_sdk_version": "Vana adapteri SDK versioon on madalam kui {ok_sdk_version}. See t\u00e4hendab, et vana adapteri p\u00fcsim\u00e4lu (NVM) ei ole v\u00f5imalik teisele adapterile \u00fcle viia.\n\nKontrolli vanaadapteri tootja tugilehtede dokumentatsioonist kas vana adapteri p\u00fcsivara on v\u00f5imalik uuendada SDK versiooniga loodud versioonile {ok_sdk_version} v\u00f5i k\u00f5rgem.",
|
|
19
19
|
"migration_successful": "Migratsioon \u00f5nnestus.",
|
|
20
|
+
"not_hassio": "ESPHome'i avastamiseks on vaja Home Assistantit, et seadistada Z-Wave'i lisandmoodul.",
|
|
20
21
|
"not_zwave_device": "Avastatud seade ei ole Z-Wave seade.",
|
|
21
22
|
"not_zwave_js_addon": "Avastatud lisandmoodul ei ole ametlik Z-Wave lisandmoodul.",
|
|
22
23
|
"reconfigure_successful": "\u00dcmberseadistamine \u00f5nnestus",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "Kas l\u00e4hed \u00fcle uuele adapterile v\u00f5i seadistad praegust adapterit \u00fcmber?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "See teisaldab Z-Wave v\u00f5rgu uuele adapterile.",
|
|
143
|
+
"intent_reconfigure": "See v\u00f5imaldab muuta adapteri konfiguratsiooni."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Mine \u00fcle uuele adapterile",
|
|
142
147
|
"intent_reconfigure": "Seadista praegune adapter uuesti"
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "Laite on jo m\u00e4\u00e4ritetty",
|
|
5
5
|
"already_in_progress": "M\u00e4\u00e4ritysprosessi on jo k\u00e4ynniss\u00e4",
|
|
6
6
|
"cannot_connect": "Yhteyden muodostaminen ep\u00e4onnistui",
|
|
7
|
-
"discovery_requires_supervisor": "L\u00f6yt\u00e4minen vaatii valvojan.",
|
|
8
7
|
"not_zwave_device": "L\u00f6ytynyt laite ei ole Z-Wave-laite."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"already_configured": "L'appareil est d\u00e9j\u00e0 configur\u00e9",
|
|
10
10
|
"already_in_progress": "La configuration est d\u00e9j\u00e0 en cours",
|
|
11
11
|
"cannot_connect": "\u00c9chec de connexion",
|
|
12
|
-
"discovery_requires_supervisor": "La d\u00e9couverte n\u00e9cessite
|
|
12
|
+
"discovery_requires_supervisor": "La d\u00e9couverte n\u00e9cessite Home Assistant Supervisor",
|
|
13
13
|
"not_zwave_device": "L'appareil d\u00e9couvert n'est pas un appareil Z-Wave.",
|
|
14
14
|
"not_zwave_js_addon": "Le module compl\u00e9mentaire d\u00e9couvert n'est pas le module compl\u00e9mentaire Z-Wave officiel."
|
|
15
15
|
},
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"cannot_connect": "Theip ar an nascadh",
|
|
13
13
|
"config_entry_not_loaded": "N\u00edl an iontr\u00e1il chumra\u00edochta Z-Wave l\u00f3d\u00e1ilte. D\u00e9an iarracht ar\u00eds nuair a bheidh an iontr\u00e1il chumra\u00edochta l\u00f3d\u00e1ilte.",
|
|
14
14
|
"different_device": "N\u00ed hionann an gl\u00e9as USB ceangailte agus an ceann a cumra\u00edodh roimhe seo don iontr\u00e1il chumra\u00edochta seo. Cruthaigh iontr\u00e1il chumra\u00edochta nua don ghl\u00e9as nua ina ionad sin.",
|
|
15
|
-
"discovery_requires_supervisor": "\u00c9il\u00edonn fionnachtain an maoirseoir.",
|
|
16
15
|
"migration_successful": "Imirce rath\u00fail.",
|
|
16
|
+
"not_hassio": "\u00c9il\u00edonn ESPHome discovery go mbeidh Home Assistant ann chun an breise\u00e1n Z-Wave a chumr\u00fa.",
|
|
17
17
|
"not_zwave_device": "N\u00ed gl\u00e9as Z-Wave an gl\u00e9as a aims\u00edodh.",
|
|
18
18
|
"not_zwave_js_addon": "N\u00ed h\u00e9 an breise\u00e1n a aims\u00edodh an breise\u00e1n oifigi\u00fail Z-Wave.",
|
|
19
19
|
"reconfigure_successful": "D'\u00e9irigh leis an athchumr\u00fa",
|
|
@@ -116,6 +116,10 @@
|
|
|
116
116
|
"title": "Roghnaigh modh nasctha"
|
|
117
117
|
},
|
|
118
118
|
"reconfigure": {
|
|
119
|
+
"menu_option_descriptions": {
|
|
120
|
+
"intent_migrate": "Bogfaidh s\u00e9 seo do l\u00edonra Z-Wave chuig oiri\u00fant\u00f3ir nua.",
|
|
121
|
+
"intent_reconfigure": "Ligfidh s\u00e9 seo duit cumra\u00edocht an oiri\u00fanaitheora a athr\u00fa."
|
|
122
|
+
},
|
|
119
123
|
"title": "Imirce n\u00f3 athchumraigh"
|
|
120
124
|
},
|
|
121
125
|
"restore_failed": {
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"cannot_connect": "Sikertelen csatlakoz\u00e1s",
|
|
14
14
|
"config_entry_not_loaded": "A Z-Wave konfigur\u00e1ci\u00f3s bejegyz\u00e9s nincs bet\u00f6ltve. K\u00e9rj\u00fck, pr\u00f3b\u00e1lja meg \u00fajra, amikor a bejegyz\u00e9s bet\u00f6lt\u0151d\u00f6tt.",
|
|
15
15
|
"different_device": "A csatlakoztatott USB-eszk\u00f6z nem egyezik meg azzal, amely kor\u00e1bban ehhez a konfigur\u00e1ci\u00f3s bejegyz\u00e9shez volt rendelve. Hozzon l\u00e9tre \u00faj konfigur\u00e1ci\u00f3s bejegyz\u00e9st az \u00faj eszk\u00f6zh\u00f6z.",
|
|
16
|
-
"discovery_requires_supervisor": "A felfedez\u00e9shez a Supervisor sz\u00fcks\u00e9ges.",
|
|
17
16
|
"migration_successful": "A migr\u00e1ci\u00f3 sikeresen befejez\u0151d\u00f6tt.",
|
|
18
17
|
"not_zwave_device": "A felfedezett eszk\u00f6z nem Z-Wave eszk\u00f6z.",
|
|
19
18
|
"not_zwave_js_addon": "Az \u00e9szlelt b\u0151v\u00edtm\u00e9ny nem a hivatalos Z-Wave b\u0151v\u00edtm\u00e9ny.",
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "Perangkat sudah dikonfigurasi",
|
|
5
5
|
"already_in_progress": "Alur konfigurasi sedang berlangsung",
|
|
6
6
|
"cannot_connect": "Gagal terhubung",
|
|
7
|
-
"discovery_requires_supervisor": "Fitur penemuan membutuhkan supervisor.",
|
|
8
7
|
"not_zwave_device": "Perangkat yang ditemukan bukan perangkat Z-Wave.",
|
|
9
8
|
"reconfigure_successful": "Konfigurasi ulang berhasil"
|
|
10
9
|
},
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
"already_in_progress": "Il flusso di configurazione \u00e8 gi\u00e0 in corso",
|
|
6
6
|
"backup_failed": "Impossibile eseguire il backup della rete.",
|
|
7
7
|
"cannot_connect": "Impossibile connettersi",
|
|
8
|
-
"discovery_requires_supervisor": "Il rilevamento richiede il Supervisor.",
|
|
9
8
|
"not_zwave_device": "Il dispositivo rilevato non \u00e8 un dispositivo Z-Wave.",
|
|
10
9
|
"reset_failed": "Impossibile ripristinare il controller.",
|
|
11
10
|
"usb_ports_failed": "Impossibile ottenere i dispositivi USB."
|
|
@@ -42,6 +41,12 @@
|
|
|
42
41
|
},
|
|
43
42
|
"on_supervisor": {
|
|
44
43
|
"title": "Seleziona il metodo di connessione"
|
|
44
|
+
},
|
|
45
|
+
"reconfigure": {
|
|
46
|
+
"menu_option_descriptions": {
|
|
47
|
+
"intent_migrate": "In questo modo la rete Z-Wave verr\u00e0 spostata su un nuovo adattatore.",
|
|
48
|
+
"intent_reconfigure": "In questo modo \u00e8 possibile modificare la configurazione dell'adattatore."
|
|
49
|
+
}
|
|
45
50
|
}
|
|
46
51
|
}
|
|
47
52
|
},
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"already_configured": "\u30c7\u30d0\u30a4\u30b9\u306f\u3059\u3067\u306b\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059",
|
|
10
10
|
"already_in_progress": "\u69cb\u6210\u30d5\u30ed\u30fc\u306f\u3059\u3067\u306b\u9032\u884c\u4e2d\u3067\u3059",
|
|
11
11
|
"cannot_connect": "\u63a5\u7d9a\u306b\u5931\u6557\u3057\u307e\u3057\u305f",
|
|
12
|
-
"discovery_requires_supervisor": "\u691c\u51fa\u306b\u306fSupervisor\u304c\u5fc5\u8981\u3067\u3059\u3002",
|
|
13
12
|
"not_zwave_device": "\u767a\u898b\u3055\u308c\u305f\u30c7\u30d0\u30a4\u30b9\u306f\u3001Z-Wave\u30c7\u30d0\u30a4\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002",
|
|
14
13
|
"not_zwave_js_addon": "\u691c\u51fa\u3055\u308c\u305f\u30a2\u30c9\u30aa\u30f3\u306f\u516c\u5f0f\u306e Z-Wave \u30a2\u30c9\u30aa\u30f3\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"
|
|
15
14
|
},
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "\uae30\uae30\uac00 \uc774\ubbf8 \uad6c\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4",
|
|
5
5
|
"already_in_progress": "\uae30\uae30 \uad6c\uc131\uc774 \uc774\ubbf8 \uc9c4\ud589 \uc911\uc785\ub2c8\ub2e4",
|
|
6
6
|
"cannot_connect": "\uc5f0\uacb0\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4",
|
|
7
|
-
"discovery_requires_supervisor": "\uae30\uae30 \uac80\uc0c9\uc744 \uc704\ud574 supervisor\uac00 \ud544\uc694\ud569\ub2c8\ub2e4.",
|
|
8
7
|
"not_zwave_device": "\ubc1c\uacac\ub41c \uae30\uae30\uac00 Z-Wave \uae30\uae30\uac00 \uc544\ub2d9\ub2c8\ub2e4."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "Nepavyko prisijungti",
|
|
15
15
|
"config_entry_not_loaded": "Z-Wave konfig\u016bracijos \u012fra\u0161as ne\u012fkeltas. Bandykite dar kart\u0105, kai konfig\u016bracijos \u012fra\u0161as bus \u012fkeltas.",
|
|
16
16
|
"different_device": "Prijungtas USB \u012frenginys nesutampa su anks\u010diau \u0161iam konfig\u016bracijos \u012fra\u0161ui sukonfig\u016bruotu USB \u012frenginiu. Vietoj to sukurkite nauj\u0105 konfig\u016bracijos \u012fra\u0161\u0105 naujam \u012frenginiui.",
|
|
17
|
-
"discovery_requires_supervisor": "Atradimui reikalingas
|
|
17
|
+
"discovery_requires_supervisor": "Atradimui reikalingas Home Assistant Supervisor.",
|
|
18
18
|
"migration_low_sdk_version": "Seno adapterio SDK versija yra senesn\u0117 nei {ok_sdk_version}. Tai rei\u0161kia, kad ne\u012fmanoma perkelti seno adapterio nepastoviosios atminties (NVM) \u012f kit\u0105 adapter\u012f. \n \n Patikrinkite seno adapterio gamintojo pagalbos puslapiuose pateikt\u0105 dokumentacij\u0105, ar \u012fmanoma atnaujinti seno adapterio programin\u0119-aparatin\u0119 \u012frang\u0105 \u012f versij\u0105, kuri sukurta naudojant SDK versij\u0105 {ok_sdk_version} arba naujesn\u0119.",
|
|
19
19
|
"migration_successful": "Migracija s\u0117kminga.",
|
|
20
|
+
"not_hassio": "ESPHome aptikimui reikalingas Home Assistant, kad sukonfig\u016bruot\u0173 Z-Wave pried\u0105.",
|
|
20
21
|
"not_zwave_device": "Atrastas prietaisas n\u0117ra \u201eZ-Wave\u201c prietaisas.",
|
|
21
22
|
"not_zwave_js_addon": "Atrastas priedas n\u0117ra oficialus Z-Wave priedas.",
|
|
22
23
|
"reconfigure_successful": "Pakartotinis konfig\u016bravimas buvo s\u0117kmingas",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "Ar migruojate \u012f nauj\u0105 adapter\u012f, ar i\u0161 naujo konfig\u016bruojate dabartin\u012f adapter\u012f?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "Tai perkels j\u016bs\u0173 Z-Wave tinkl\u0105 \u012f nauj\u0105 adapter\u012f.",
|
|
143
|
+
"intent_reconfigure": "Tai leis jums pakeisti adapterio konfig\u016bracij\u0105."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Migracija \u012f nauj\u0105 adapter\u012f",
|
|
142
147
|
"intent_reconfigure": "I\u0161 naujo sukonfig\u016bruokite dabartin\u012f adapter\u012f"
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "Enhet er allerede konfigurert",
|
|
5
5
|
"already_in_progress": "Konfigurasjonsflyten p\u00e5g\u00e5r allerede",
|
|
6
6
|
"cannot_connect": "Tilkobling mislyktes",
|
|
7
|
-
"discovery_requires_supervisor": "Oppdagelsen krever veilederen.",
|
|
8
7
|
"not_zwave_device": "Oppdaget enhet er ikke en Z-Wave-enhet."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"already_in_progress": "De configuratie is momenteel al bezig",
|
|
12
12
|
"cannot_connect": "Kan geen verbinding maken",
|
|
13
13
|
"different_device": "Het aangesloten USB-apparaat is niet hetzelfde als eerder geconfigureerd voor dit config-entry. Maak in plaats daarvan een nieuw config-entry voor het nieuwe apparaat.",
|
|
14
|
-
"discovery_requires_supervisor": "Discovery vereist de Supervisor.",
|
|
15
14
|
"migration_successful": "Migratie geslaagd.",
|
|
16
15
|
"not_zwave_device": "Het ontdekte apparaat is niet een Z-Wave apparaat.",
|
|
17
16
|
"reconfigure_successful": "Herconfiguratie was succesvol"
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "Urz\u0105dzenie jest ju\u017c skonfigurowane",
|
|
5
5
|
"already_in_progress": "Konfiguracja jest ju\u017c w toku",
|
|
6
6
|
"cannot_connect": "Nie mo\u017cna nawi\u0105za\u0107 po\u0142\u0105czenia",
|
|
7
|
-
"discovery_requires_supervisor": "Wykrywanie wymaga Supervisora.",
|
|
8
7
|
"not_zwave_device": "Wykryte urz\u0105dzenie nie jest urz\u0105dzeniem Z-Wave."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "Dispositivo j\u00e1 est\u00e1 configurado",
|
|
5
5
|
"already_in_progress": "O fluxo de configura\u00e7\u00e3o j\u00e1 est\u00e1 em andamento",
|
|
6
6
|
"cannot_connect": "Falha ao conectar",
|
|
7
|
-
"discovery_requires_supervisor": "A descoberta requer o supervisor.",
|
|
8
7
|
"not_zwave_device": "O dispositivo descoberto n\u00e3o \u00e9 um dispositivo Z-Wave."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "A liga\u00e7\u00e3o falhou",
|
|
15
15
|
"config_entry_not_loaded": "A entrada de configura\u00e7\u00e3o Z-Wave n\u00e3o est\u00e1 carregada. Tente novamente quando a entrada de configura\u00e7\u00e3o estiver carregada.",
|
|
16
16
|
"different_device": "O dispositivo USB ligado n\u00e3o \u00e9 o mesmo que foi previamente configurado para esta entrada de configura\u00e7\u00e3o. Em vez disso, crie uma nova entrada de configura\u00e7\u00e3o para o novo dispositivo.",
|
|
17
|
-
"discovery_requires_supervisor": "A descoberta requer o
|
|
17
|
+
"discovery_requires_supervisor": "A descoberta requer o Home Assistant Supervisor.",
|
|
18
18
|
"migration_low_sdk_version": "A vers\u00e3o do SDK do adaptador antigo \u00e9 inferior a {ok_sdk_version}. Isto significa que n\u00e3o \u00e9 poss\u00edvel migrar a mem\u00f3ria n\u00e3o vol\u00e1til (NVM) do adaptador antigo para outro adaptador.\n\nVerifique a documenta\u00e7\u00e3o nas p\u00e1ginas de suporte do fabricante do adaptador antigo, se \u00e9 poss\u00edvel atualizar o firmware do adaptador antigo para uma vers\u00e3o constru\u00edda com a vers\u00e3o do SDK {ok_sdk_version} ou superior.",
|
|
19
19
|
"migration_successful": "Migra\u00e7\u00e3o bem sucedida.",
|
|
20
|
+
"not_hassio": "A descoberta do ESPHome requer que o Home Assistant configure o suplemento Z-Wave.",
|
|
20
21
|
"not_zwave_device": "O dispositivo descoberto n\u00e3o \u00e9 um dispositivo Z-Wave.",
|
|
21
22
|
"not_zwave_js_addon": "O suplemento descoberto n\u00e3o \u00e9 o suplemento oficial do Z-Wave.",
|
|
22
23
|
"reconfigure_successful": "A reconfigura\u00e7\u00e3o foi bem sucedida",
|
|
@@ -102,7 +103,7 @@
|
|
|
102
103
|
"url": "URL"
|
|
103
104
|
},
|
|
104
105
|
"data_description": {
|
|
105
|
-
"url": "O URL da API WebSocket do servidor Z-Wave,
|
|
106
|
+
"url": "O URL da API WebSocket do servidor Z-Wave, e.g. {example_server_url}"
|
|
106
107
|
},
|
|
107
108
|
"description": "A integra\u00e7\u00e3o Z-Wave requer um servidor Z-Wave em execu\u00e7\u00e3o. Se ainda n\u00e3o o tiver configurado, leia as [instru\u00e7\u00f5es]({server_instructions}) na nossa documenta\u00e7\u00e3o. Quando tiver um servidor Z-Wave em execu\u00e7\u00e3o, introduza o seu URL abaixo para permitir a liga\u00e7\u00e3o da integra\u00e7\u00e3o."
|
|
108
109
|
},
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
"url": "URL"
|
|
112
113
|
},
|
|
113
114
|
"data_description": {
|
|
114
|
-
"url": "O URL da API WebSocket do servidor Z-Wave,
|
|
115
|
+
"url": "O URL da API WebSocket do servidor Z-Wave, e.g. {example_server_url}"
|
|
115
116
|
},
|
|
116
117
|
"description": "A integra\u00e7\u00e3o Z-Wave requer um servidor Z-Wave em execu\u00e7\u00e3o. Se ainda n\u00e3o o tiver configurado, leia as [instru\u00e7\u00f5es]({server_instructions}) na nossa documenta\u00e7\u00e3o. Quando tiver um servidor Z-Wave em execu\u00e7\u00e3o, introduza o seu URL abaixo para permitir a liga\u00e7\u00e3o da integra\u00e7\u00e3o."
|
|
117
118
|
},
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "Est\u00e1 a migrar para um novo adaptador ou a reconfigurar o adaptador atual?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "Isto ir\u00e1 mover a sua rede Z-Wave para um novo adaptador.",
|
|
143
|
+
"intent_reconfigure": "Isto permitir-lhe-\u00e1 alterar a configura\u00e7\u00e3o do adaptador."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Migrar para um novo adaptador",
|
|
142
147
|
"intent_reconfigure": "Reconfigurar o adaptador atual"
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "Dispozitivul a fost configurat deja",
|
|
5
5
|
"already_in_progress": "Fluxul de configura\u021bie este deja \u00een desf\u0103\u0219urare",
|
|
6
6
|
"cannot_connect": "A e\u0219uat conectarea",
|
|
7
|
-
"discovery_requires_supervisor": "Descoperirea necesita supervizorul.",
|
|
8
7
|
"not_zwave_device": "Dispozitivul descoperit nu este un dispozitiv Z-Wave."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"backup_failed": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u0443\u044e \u043a\u043e\u043f\u0438\u044e \u0441\u0435\u0442\u0438.",
|
|
14
14
|
"cannot_connect": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f",
|
|
15
15
|
"different_device": "\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u043e\u0435 USB-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043e\u0442\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f \u043e\u0442 \u0440\u0430\u043d\u0435\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0433\u043e \u0434\u043b\u044f \u044d\u0442\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0432\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.",
|
|
16
|
-
"discovery_requires_supervisor": "\u0414\u043b\u044f \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u044f \
|
|
16
|
+
"discovery_requires_supervisor": "\u0414\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u044f \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c Home Assistant Supervisor.",
|
|
17
17
|
"migration_low_sdk_version": "\u0412\u0435\u0440\u0441\u0438\u044f SDK \u0441\u0442\u0430\u0440\u043e\u0433\u043e \u0430\u0434\u0430\u043f\u0442\u0435\u0440\u0430 \u043d\u0438\u0436\u0435 {ok_sdk_version}. \u042d\u0442\u043e \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 \u044d\u043d\u0435\u0440\u0433\u043e\u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0443\u044e \u043f\u0430\u043c\u044f\u0442\u044c (NVM) \u0441\u0442\u0430\u0440\u043e\u0433\u043e \u0430\u0434\u0430\u043f\u0442\u0435\u0440\u0430 \u043d\u0430 \u0434\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0430\u043f\u0442\u0435\u0440.\n\n\u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0445 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044f \u0441\u0442\u0430\u0440\u043e\u0433\u043e \u0430\u0434\u0430\u043f\u0442\u0435\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0448\u0438\u0432\u043a\u0443 \u0441\u0442\u0430\u0440\u043e\u0433\u043e \u0430\u0434\u0430\u043f\u0442\u0435\u0440\u0430 \u0434\u043e \u0432\u0435\u0440\u0441\u0438\u0438, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0439 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c SDK \u0432\u0435\u0440\u0441\u0438\u0438 {ok_sdk_version} \u0438\u043b\u0438 \u0432\u044b\u0448\u0435.",
|
|
18
18
|
"migration_successful": "\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043f\u0440\u043e\u0448\u0451\u043b \u0443\u0441\u043f\u0435\u0448\u043d\u043e.",
|
|
19
19
|
"not_zwave_device": "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c Z-Wave.",
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "Nepodarilo sa pripoji\u0165",
|
|
15
15
|
"config_entry_not_loaded": "Polo\u017eka konfigur\u00e1cie Z-Wave nie je na\u010d\u00edtan\u00e1. Sk\u00faste to znova, ke\u010f sa konfigura\u010dn\u00e1 polo\u017eka na\u010d\u00edta.",
|
|
16
16
|
"different_device": "Pripojen\u00e9 zariadenie USB nie je rovnak\u00e9 ako predt\u00fdm nakonfigurovan\u00e9 pre t\u00fato polo\u017eku konfigur\u00e1cie. Namiesto toho vytvorte nov\u00fa konfigura\u010dn\u00fa polo\u017eku pre nov\u00e9 zariadenie.",
|
|
17
|
-
"discovery_requires_supervisor": "Objavenie si vy\u017eaduje
|
|
17
|
+
"discovery_requires_supervisor": "Objavenie si vy\u017eaduje Home Assistant Supervisor.",
|
|
18
18
|
"migration_low_sdk_version": "Verzia SDK star\u00e9ho adapt\u00e9ra je ni\u017e\u0161ia ako {ok_sdk_version}. To znamen\u00e1, \u017ee nie je mo\u017en\u00e9 migrova\u0165 nevolatiln\u00fa pam\u00e4\u0165 (NVM) star\u00e9ho adapt\u00e9ra do in\u00e9ho adapt\u00e9ra. \n\nSkontrolujte v dokument\u00e1cii na str\u00e1nkach podpory v\u00fdrobcu star\u00e9ho adapt\u00e9ra, \u010di je mo\u017en\u00e9 aktualizova\u0165 firmv\u00e9r star\u00e9ho adapt\u00e9ra na verziu, ktor\u00e1 je zostaven\u00e1 s verziou SDK {ok_sdk_version} alebo vy\u0161\u0161ou.",
|
|
19
19
|
"migration_successful": "Migr\u00e1cia \u00faspe\u0161n\u00e1.",
|
|
20
|
+
"not_hassio": "Zistenie ESPHome vy\u017eaduje, aby aplik\u00e1cia Home Assistant nakonfigurovala doplnok Z-Wave.",
|
|
20
21
|
"not_zwave_device": "Objaven\u00e9 zariadenie nie je zariadenie Z-Wave.",
|
|
21
22
|
"not_zwave_js_addon": "Objaven\u00fd doplnok nie je ofici\u00e1lnym doplnkom Z-Wave.",
|
|
22
23
|
"reconfigure_successful": "Rekonfigur\u00e1cia bola \u00faspe\u0161n\u00e1",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "Migrujete na nov\u00fd adapt\u00e9r alebo men\u00edte konfigur\u00e1ciu s\u00fa\u010dasn\u00e9ho adapt\u00e9ra?",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "T\u00fdm sa va\u0161a sie\u0165 Z-Wave presunie na nov\u00fd adapt\u00e9r.",
|
|
143
|
+
"intent_reconfigure": "To v\u00e1m umo\u017en\u00ed zmeni\u0165 konfigur\u00e1ciu adapt\u00e9ra."
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "Migr\u00e1cia na nov\u00fd adapt\u00e9r",
|
|
142
147
|
"intent_reconfigure": "Znova nakonfigurujte aktu\u00e1lny adapt\u00e9r"
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"cannot_connect": "Det gick inte att ansluta",
|
|
14
14
|
"config_entry_not_loaded": "Z-Wave-konfigurationsposten \u00e4r inte inl\u00e4st. F\u00f6rs\u00f6k igen n\u00e4r konfigurationsposten har l\u00e4sts in.",
|
|
15
15
|
"different_device": "Den anslutna USB-enheten \u00e4r inte densamma som tidigare konfigurerats f\u00f6r den h\u00e4r konfigurationsposten. Skapa ist\u00e4llet en ny konfigurationspost f\u00f6r den nya enheten.",
|
|
16
|
-
"discovery_requires_supervisor": "Uppt\u00e4ckt kr\u00e4ver Supervisor.",
|
|
17
16
|
"migration_successful": "Migreringen lyckades.",
|
|
18
17
|
"not_zwave_device": "Uppt\u00e4ckt enhet \u00e4r inte en Z-Wave-enhet.",
|
|
19
18
|
"not_zwave_js_addon": "Det uppt\u00e4ckta till\u00e4gget \u00e4r inte det officiella Z-Wave-till\u00e4gget.",
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"already_in_progress": "Yap\u0131land\u0131rma ak\u0131\u015f\u0131 zaten devam ediyor",
|
|
11
11
|
"cannot_connect": "Ba\u011flanma hatas\u0131",
|
|
12
12
|
"config_entry_not_loaded": "Z-Wave yap\u0131land\u0131rma giri\u015fi y\u00fcklenmedi. L\u00fctfen yap\u0131land\u0131rma giri\u015fi y\u00fcklendi\u011finde tekrar deneyin.",
|
|
13
|
-
"discovery_requires_supervisor": "Tarama, s\u00fcperviz\u00f6r\u00fc gerektirir.",
|
|
14
13
|
"not_zwave_device": "Bulunan cihaz bir Z-Wave cihaz\u0131 de\u011fil.",
|
|
15
14
|
"not_zwave_js_addon": "Ke\u015ffedilen eklenti resmi Z-Wave eklentisi de\u011fildir."
|
|
16
15
|
},
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
"already_configured": "\u0426\u0435\u0439 \u043f\u0440\u0438\u0441\u0442\u0440\u0456\u0439 \u0432\u0436\u0435 \u043d\u0430\u043b\u0430\u0448\u0442\u043e\u0432\u0430\u043d\u043e",
|
|
5
5
|
"already_in_progress": "\u041f\u0440\u043e\u0446\u0435\u0441 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0436\u0435 \u0442\u0440\u0438\u0432\u0430\u0454.",
|
|
6
6
|
"cannot_connect": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u043f\u0456\u0434'\u0454\u0434\u043d\u0430\u0442\u0438\u0441\u044f",
|
|
7
|
-
"discovery_requires_supervisor": "\u0414\u043b\u044f \u0432\u0438\u044f\u0432\u043b\u0435\u043d\u043d\u044f \u043f\u043e\u0442\u0440\u0456\u0431\u0435\u043d supervisor.",
|
|
8
7
|
"not_zwave_device": "\u0412\u0438\u044f\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u0440\u0438\u0441\u0442\u0440\u0456\u0439 \u043d\u0435 \u0454 \u043f\u0440\u0438\u0441\u0442\u0440\u043e\u0454\u043c Z-Wave."
|
|
9
8
|
},
|
|
10
9
|
"error": {
|
|
@@ -178,6 +177,15 @@
|
|
|
178
177
|
},
|
|
179
178
|
"name": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043a\u043e\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457 \u043f\u0440\u0438\u0441\u0442\u0440\u043e\u044e"
|
|
180
179
|
},
|
|
180
|
+
"set_lock_configuration": {
|
|
181
|
+
"fields": {
|
|
182
|
+
"twist_assist": {
|
|
183
|
+
"description": "\u0427\u0438 \u043f\u043e\u0432\u0438\u043d\u0435\u043d \u0434\u0432\u0438\u0433\u0443\u043d \u0434\u043e\u043f\u043e\u043c\u0430\u0433\u0430\u0442\u0438 \u043f\u0440\u0438 \u0437\u0430\u043c\u0438\u043a\u0430\u043d\u043d\u0456 \u0442\u0430 \u0432\u0456\u0434\u043c\u0438\u043a\u0430\u043d\u043d\u0456.",
|
|
184
|
+
"name": "\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430 \u043f\u0440\u0438 \u043f\u043e\u0432\u043e\u0440\u043e\u0442\u0456"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"name": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 \u043a\u043e\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044e \u0437\u0430\u043c\u043a\u0430"
|
|
188
|
+
},
|
|
181
189
|
"set_lock_usercode": {
|
|
182
190
|
"description": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0454 \u043a\u043e\u0434 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u043d\u0430 \u0437\u0430\u043c\u043e\u043a.",
|
|
183
191
|
"fields": {
|
|
@@ -194,14 +202,25 @@
|
|
|
194
202
|
},
|
|
195
203
|
"set_value": {
|
|
196
204
|
"fields": {
|
|
205
|
+
"area_id": {
|
|
206
|
+
"name": "ID \u043f\u0440\u0438\u043c\u0456\u0449\u0435\u043d\u043d\u044f"
|
|
207
|
+
},
|
|
197
208
|
"command_class": {
|
|
198
209
|
"description": "ID \u043a\u043b\u0430\u0441\u0443 \u043a\u043e\u043c\u0430\u043d\u0434\u0438 \u0434\u043b\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f.",
|
|
199
210
|
"name": "\u041a\u043b\u0430\u0441 \u043a\u043e\u043c\u0430\u043d\u0434\u0438"
|
|
200
211
|
},
|
|
212
|
+
"device_id": {
|
|
213
|
+
"description": "\u041f\u0440\u0438\u0441\u0442\u0440\u0456\u0439(\u0438), \u043d\u0430 \u044f\u043a\u0438\u0439(\u0456) \u0431\u0443\u0434\u0435 \u0441\u043f\u0440\u044f\u043c\u043e\u0432\u0430\u043d\u0430 \u0446\u044f \u0434\u0456\u044f.",
|
|
214
|
+
"name": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440(\u0438) \u043f\u0440\u0438\u0441\u0442\u0440\u043e\u044e"
|
|
215
|
+
},
|
|
201
216
|
"endpoint": {
|
|
202
217
|
"description": "\u041a\u0456\u043d\u0446\u0435\u0432\u0430 \u0442\u043e\u0447\u043a\u0430 \u0434\u043b\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f.",
|
|
203
218
|
"name": "\u041a\u0456\u043d\u0446\u0435\u0432\u0430 \u0442\u043e\u0447\u043a\u0430"
|
|
204
219
|
},
|
|
220
|
+
"entity_id": {
|
|
221
|
+
"description": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440(\u0438) \u0441\u0443\u0442\u043d\u043e\u0441\u0442\u0456, \u043d\u0430 \u044f\u043a\u0443 \u0431\u0443\u0434\u0435 \u0441\u043f\u0440\u044f\u043c\u043e\u0432\u0430\u043d\u0430 \u0446\u044f \u0434\u0456\u044f.",
|
|
222
|
+
"name": "\u0406\u0434\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0442\u043e\u0440(\u0438) \u0441\u0443\u0442\u043d\u043e\u0441\u0442\u0456"
|
|
223
|
+
},
|
|
205
224
|
"options": {
|
|
206
225
|
"name": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438"
|
|
207
226
|
},
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"already_configured": "Thi\u1ebft b\u1ecb \u0111\u00e3 \u0111\u01b0\u1ee3c c\u1ea5u h\u00ecnh",
|
|
10
10
|
"already_in_progress": "Lu\u1ed3ng c\u1ea5u h\u00ecnh \u0111ang \u0111\u01b0\u1ee3c ti\u1ebfn h\u00e0nh",
|
|
11
11
|
"cannot_connect": "K\u1ebft n\u1ed1i th\u1ea5t b\u1ea1i",
|
|
12
|
-
"discovery_requires_supervisor": "Kh\u00e1m ph\u00e1 c\u1ea7n c\u00f3 supervisor.",
|
|
13
12
|
"not_zwave_device": "Thi\u1ebft b\u1ecb \u0111\u01b0\u1ee3c ph\u00e1t hi\u1ec7n kh\u00f4ng ph\u1ea3i l\u00e0 thi\u1ebft b\u1ecb Z-Wave.",
|
|
14
13
|
"not_zwave_js_addon": "Ti\u1ec7n \u00edch b\u1ed5 sung \u0111\u01b0\u1ee3c ph\u00e1t hi\u1ec7n kh\u00f4ng ph\u1ea3i l\u00e0 ti\u1ec7n \u00edch b\u1ed5 sung ch\u00ednh th\u1ee9c c\u1ee7a Z-Wave."
|
|
15
14
|
},
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "\u8fde\u63a5\u5931\u8d25",
|
|
15
15
|
"config_entry_not_loaded": "Z-Wave \u914d\u7f6e\u6761\u76ee\u672a\u52a0\u8f7d\u3002\u8bf7\u5728\u52a0\u8f7d\u914d\u7f6e\u6761\u76ee\u540e\u91cd\u8bd5\u3002",
|
|
16
16
|
"different_device": "\u8fde\u63a5\u7684 USB \u8bbe\u5907\u4e0e\u4e4b\u524d\u6b64\u914d\u7f6e\u9879\u7684\u8bbe\u5907\u4e0d\u540c\u3002\u8bf7\u4e3a\u65b0\u8bbe\u5907\u521b\u5efa\u4e00\u4e2a\u65b0\u7684\u914d\u7f6e\u9879\u3002",
|
|
17
|
-
"discovery_requires_supervisor": "\u81ea\u52a8\u53d1\u73b0\u529f\u80fd\u9700\u8981 Supervisor \u6743\u9650\u3002",
|
|
17
|
+
"discovery_requires_supervisor": "\u81ea\u52a8\u53d1\u73b0\u529f\u80fd\u9700\u8981 Home Assistant Supervisor \u6743\u9650\u3002",
|
|
18
18
|
"migration_low_sdk_version": "\u65e7\u9002\u914d\u5668\u7684 SDK \u7248\u672c\u4f4e\u4e8e {ok_sdk_version} \u3002\u8fd9\u610f\u5473\u7740\u65e0\u6cd5\u5c06\u65e7\u9002\u914d\u5668\u7684\u975e\u6613\u5931\u6027\u5b58\u50a8\u5668 (NVM) \u8fc1\u79fb\u5230\u53e6\u4e00\u4e2a\u9002\u914d\u5668\u3002\n\n\u8bf7\u67e5\u770b\u65e7\u9002\u914d\u5668\u5236\u9020\u5546\u652f\u6301\u9875\u9762\u4e0a\u7684\u6587\u6863\uff0c\u770b\u770b\u662f\u5426\u53ef\u4ee5\u5c06\u65e7\u9002\u914d\u5668\u7684\u56fa\u4ef6\u5347\u7ea7\u5230\u4f7f\u7528 SDK \u7248\u672c {ok_sdk_version} \u6216\u66f4\u9ad8\u7248\u672c\u6784\u5efa\u7684\u7248\u672c\u3002",
|
|
19
19
|
"migration_successful": "\u8fc1\u79fb\u6210\u529f\u3002",
|
|
20
|
+
"not_hassio": "ESPHome \u81ea\u52a8\u53d1\u73b0\u529f\u80fd\u9700\u8981 Home Assistant \u914d\u7f6e Z-Wave \u52a0\u8f7d\u9879\u3002",
|
|
20
21
|
"not_zwave_device": "\u53d1\u73b0\u7684\u8bbe\u5907\u4e0d\u662f Z-Wave \u8bbe\u5907\u3002",
|
|
21
22
|
"not_zwave_js_addon": "\u53d1\u73b0\u7684\u52a0\u8f7d\u9879\u4e0d\u662f\u5b98\u65b9\u7684 Z-Wave \u52a0\u8f7d\u9879\u3002",
|
|
22
23
|
"reconfigure_successful": "\u91cd\u65b0\u914d\u7f6e\u6210\u529f",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "\u60a8\u662f\u5426\u8981\u8fc1\u79fb\u5230\u65b0\u7684\u9002\u914d\u5668\u6216\u91cd\u65b0\u914d\u7f6e\u5f53\u524d\u9002\u914d\u5668 \uff1f",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "\u8fd9\u4f1a\u5c06\u60a8\u7684 Z-Wave \u7f51\u7edc\u79fb\u52a8\u5230\u65b0\u7684\u9002\u914d\u5668\u3002",
|
|
143
|
+
"intent_reconfigure": "\u8fd9\u5c06\u5141\u8bb8\u60a8\u66f4\u6539\u9002\u914d\u5668\u914d\u7f6e\u3002"
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "\u8fc1\u79fb\u5230\u65b0\u9002\u914d\u5668",
|
|
142
147
|
"intent_reconfigure": "\u91cd\u65b0\u914d\u7f6e\u5f53\u524d\u9002\u914d\u5668"
|
|
@@ -14,9 +14,10 @@
|
|
|
14
14
|
"cannot_connect": "\u9023\u7dda\u5931\u6557",
|
|
15
15
|
"config_entry_not_loaded": "Z-Wave \u8a2d\u5b9a\u689d\u76ee\u672a\u8f09\u5165\u3002\u8acb\u5728\u8f09\u5165\u8a2d\u5b9a\u689d\u76ee\u5f8c\u518d\u8a66\u4e00\u6b21\u3002",
|
|
16
16
|
"different_device": "\u6240\u9023\u63a5\u7684 USB \u88dd\u7f6e\u8207\u4e4b\u524d\u7684\u8a2d\u5b9a\u88dd\u7f6e\u4e0d\u540c\uff0c\u8acb\u91dd\u5c0d\u65b0\u88dd\u7f6e\u65b0\u589e\u8a2d\u5b9a\u3002",
|
|
17
|
-
"discovery_requires_supervisor": "\u641c\u7d22\u529f\u80fd\u9700\u8981 Supervisor \u6b0a\u9650\u3002",
|
|
17
|
+
"discovery_requires_supervisor": "\u641c\u7d22\u529f\u80fd\u9700\u8981 Home Assistant Supervisor \u6b0a\u9650\u3002",
|
|
18
18
|
"migration_low_sdk_version": "\u820a\u8f49\u63a5\u5668\u7684 SDK \u7248\u672c\u4f4e\u65bc {ok_sdk_version} \u7248\u3002\u9019\u8868\u793a\u7121\u6cd5\u5c07\u820a\u8f49\u63a5\u5668\u7684\u975e\u63ee\u767c\u6027\u8a18\u61b6\u9ad4\uff08NVM\uff09\u9077\u79fb\u5230\u53e6\u4e00\u500b\u8f49\u63a5\u5668\u3002 \n \n\u6aa2\u67e5\u820a\u8f49\u63a5\u5668\u88fd\u9020\u5546\u652f\u63f4\u9801\u9762\u4e0a\u7684\u8aaa\u660e\u6587\u4ef6\uff0c\u770b\u770b\u662f\u5426\u53ef\u4ee5\u5c07\u820a\u8f49\u63a5\u5668\u7684\u97cc\u9ad4\u5347\u7d1a\u81f3 SDK \u7248\u672c {ok_sdk_version}\u6216\u66f4\u9ad8\u7248\u672c\u69cb\u5efa\u7684\u7248\u672c\u3002",
|
|
19
19
|
"migration_successful": "\u9077\u79fb\u6210\u529f\u3002",
|
|
20
|
+
"not_hassio": "ESPHome \u63a2\u7d22\u529f\u80fd\u9700\u8981 Home Assistant \u8a2d\u5b9a Z-Wave \u9644\u52a0\u5143\u4ef6\u3002",
|
|
20
21
|
"not_zwave_device": "\u6240\u767c\u73fe\u7684\u88dd\u7f6e\u4e26\u975e Z-Wave \u88dd\u7f6e",
|
|
21
22
|
"not_zwave_js_addon": "\u767c\u73fe\u4e4b\u9644\u52a0\u5143\u4ef6\u4e26\u975e\u5b98\u65b9 Z-Wave \u9644\u52a0\u5143\u4ef6\u3002",
|
|
22
23
|
"reconfigure_successful": "\u91cd\u65b0\u8a2d\u5b9a\u6210\u529f",
|
|
@@ -137,6 +138,10 @@
|
|
|
137
138
|
},
|
|
138
139
|
"reconfigure": {
|
|
139
140
|
"description": "\u8981\u9077\u79fb\u81f3\u65b0\u8f49\u63a5\u5668\u6216\u91cd\u65b0\u8a2d\u5b9a\u76ee\u524d\u8f49\u63a5\u5668\uff1f",
|
|
141
|
+
"menu_option_descriptions": {
|
|
142
|
+
"intent_migrate": "\u9019\u52d5\u4f5c\u6703\u5c07\u60a8\u7684 Z-Wave \u7db2\u8def\u9077\u79fb\u81f3\u65b0\u7684\u8f49\u63a5\u5668\u3002",
|
|
143
|
+
"intent_reconfigure": "\u9019\u5c07\u8b93\u60a8\u8b8a\u66f4\u4ecb\u9762\u5361\u8a2d\u5b9a\u3002"
|
|
144
|
+
},
|
|
140
145
|
"menu_options": {
|
|
141
146
|
"intent_migrate": "\u9077\u79fb\u81f3\u65b0\u8f49\u63a5\u5668",
|
|
142
147
|
"intent_reconfigure": "\u91cd\u65b0\u8a2d\u5b9a\u76ee\u524d\u8f49\u63a5\u5668"
|