homeassistant 2025.8.2__py3-none-any.whl → 2025.9.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- homeassistant/auth/auth_store.py +3 -0
- homeassistant/auth/models.py +4 -1
- homeassistant/components/abode/translations/ga.json +70 -0
- homeassistant/components/abode/translations/it.json +5 -0
- homeassistant/components/acaia/translations/ga.json +12 -2
- homeassistant/components/accuweather/translations/fr.json +56 -7
- homeassistant/components/accuweather/translations/ga.json +71 -1
- homeassistant/components/accuweather/translations/sensor.ga.json +9 -0
- homeassistant/components/acmeda/translations/ga.json +15 -0
- homeassistant/components/adax/translations/ga.json +34 -0
- homeassistant/components/adguard/translations/ga.json +125 -1
- homeassistant/components/adguard/translations/it.json +2 -0
- homeassistant/components/ads/translations/ga.json +22 -0
- homeassistant/components/advantage_air/translations/ga.json +32 -0
- homeassistant/components/aemet/translations/fr.json +8 -0
- homeassistant/components/aemet/translations/ga.json +21 -1
- homeassistant/components/aftership/translations/ga.json +49 -0
- homeassistant/components/agent_dvr/translations/ga.json +35 -1
- homeassistant/components/agent_dvr/translations/it.json +3 -0
- homeassistant/components/ai_task/__init__.py +68 -2
- homeassistant/components/ai_task/const.py +9 -0
- homeassistant/components/ai_task/entity.py +22 -2
- homeassistant/components/ai_task/icons.json +8 -0
- homeassistant/components/ai_task/manifest.json +2 -2
- homeassistant/components/ai_task/media_source.py +81 -0
- homeassistant/components/ai_task/services.yaml +27 -0
- homeassistant/components/ai_task/strings.json +22 -0
- homeassistant/components/ai_task/task.py +239 -47
- homeassistant/components/ai_task/translations/de.json +22 -0
- homeassistant/components/ai_task/translations/en-GB.json +22 -0
- homeassistant/components/ai_task/translations/en.json +22 -0
- homeassistant/components/ai_task/translations/et.json +22 -0
- homeassistant/components/ai_task/translations/ga.json +22 -0
- homeassistant/components/ai_task/translations/it.json +22 -0
- homeassistant/components/ai_task/translations/nl.json +7 -0
- homeassistant/components/ai_task/translations/sk.json +22 -0
- homeassistant/components/ai_task/translations/zh-Hans.json +22 -0
- homeassistant/components/ai_task/translations/zh-Hant.json +22 -0
- homeassistant/components/airgradient/strings.json +1 -1
- homeassistant/components/airgradient/translations/bg.json +0 -5
- homeassistant/components/airgradient/translations/de.json +2 -2
- homeassistant/components/airgradient/translations/el.json +2 -2
- homeassistant/components/airgradient/translations/en-GB.json +2 -2
- homeassistant/components/airgradient/translations/en.json +2 -2
- homeassistant/components/airgradient/translations/es.json +0 -1
- homeassistant/components/airgradient/translations/ga.json +12 -1
- homeassistant/components/airgradient/translations/he.json +0 -5
- homeassistant/components/airgradient/translations/hu.json +0 -1
- homeassistant/components/airgradient/translations/ja.json +0 -1
- homeassistant/components/airgradient/translations/lt.json +0 -1
- homeassistant/components/airgradient/translations/nl.json +2 -2
- homeassistant/components/airgradient/translations/pt.json +0 -1
- homeassistant/components/airgradient/translations/ru.json +0 -1
- homeassistant/components/airgradient/translations/sv.json +0 -1
- homeassistant/components/airgradient/translations/tr.json +0 -1
- homeassistant/components/airgradient/translations/zh-Hans.json +2 -2
- homeassistant/components/airgradient/translations/zh-Hant.json +2 -2
- homeassistant/components/airly/translations/ga.json +35 -0
- homeassistant/components/airnow/translations/ga.json +37 -0
- homeassistant/components/airos/__init__.py +4 -1
- homeassistant/components/airos/binary_sensor.py +106 -0
- homeassistant/components/airos/manifest.json +1 -1
- homeassistant/components/airos/quality_scale.yaml +1 -3
- homeassistant/components/airos/sensor.py +51 -2
- homeassistant/components/airos/strings.json +37 -0
- homeassistant/components/airos/translations/bg.json +20 -0
- homeassistant/components/airos/translations/cs.json +37 -0
- homeassistant/components/airos/translations/de.json +37 -0
- homeassistant/components/airos/translations/el.json +23 -0
- homeassistant/components/airos/translations/en-GB.json +37 -0
- homeassistant/components/airos/translations/en.json +37 -0
- homeassistant/components/airos/translations/es.json +3 -0
- homeassistant/components/airos/translations/et.json +37 -0
- homeassistant/components/airos/translations/fr.json +42 -0
- homeassistant/components/airos/translations/ga.json +55 -1
- homeassistant/components/airos/translations/it.json +21 -1
- homeassistant/components/airos/translations/lt.json +20 -0
- homeassistant/components/airos/translations/nl.json +19 -0
- homeassistant/components/airos/translations/pt.json +37 -0
- homeassistant/components/airos/translations/ru.json +18 -1
- homeassistant/components/airos/translations/sk.json +37 -0
- homeassistant/components/airos/translations/sv.json +35 -0
- homeassistant/components/airos/translations/zh-Hans.json +37 -0
- homeassistant/components/airos/translations/zh-Hant.json +37 -0
- homeassistant/components/airq/__init__.py +1 -1
- homeassistant/components/airq/coordinator.py +1 -0
- homeassistant/components/airq/number.py +85 -0
- homeassistant/components/airq/strings.json +5 -0
- homeassistant/components/airq/translations/cs.json +5 -0
- homeassistant/components/airq/translations/de.json +5 -0
- homeassistant/components/airq/translations/el.json +5 -0
- homeassistant/components/airq/translations/en-GB.json +5 -0
- homeassistant/components/airq/translations/en.json +5 -0
- homeassistant/components/airq/translations/et.json +5 -0
- homeassistant/components/airq/translations/fr.json +5 -0
- homeassistant/components/airq/translations/ga.json +131 -0
- homeassistant/components/airq/translations/lt.json +5 -0
- homeassistant/components/airq/translations/nl.json +5 -0
- homeassistant/components/airq/translations/pt.json +5 -0
- homeassistant/components/airq/translations/sk.json +5 -0
- homeassistant/components/airq/translations/sv.json +5 -0
- homeassistant/components/airq/translations/zh-Hans.json +5 -0
- homeassistant/components/airq/translations/zh-Hant.json +5 -0
- homeassistant/components/airthings/translations/ga.json +37 -0
- homeassistant/components/airthings_ble/translations/ga.json +39 -0
- homeassistant/components/airtouch4/translations/ga.json +12 -1
- homeassistant/components/airtouch5/translations/ga.json +21 -0
- homeassistant/components/airvisual/translations/ga.json +75 -0
- homeassistant/components/airvisual/translations/sensor.ga.json +20 -0
- homeassistant/components/airvisual_pro/translations/ga.json +24 -1
- homeassistant/components/airzone/translations/ga.json +51 -3
- homeassistant/components/airzone_cloud/manifest.json +1 -1
- homeassistant/components/airzone_cloud/translations/ga.json +25 -1
- homeassistant/components/aladdin_connect/__init__.py +99 -26
- homeassistant/components/aladdin_connect/api.py +33 -0
- homeassistant/components/aladdin_connect/application_credentials.py +14 -0
- homeassistant/components/aladdin_connect/config_flow.py +58 -6
- homeassistant/components/aladdin_connect/const.py +14 -0
- homeassistant/components/aladdin_connect/coordinator.py +44 -0
- homeassistant/components/aladdin_connect/cover.py +62 -0
- homeassistant/components/aladdin_connect/entity.py +32 -0
- homeassistant/components/aladdin_connect/manifest.json +4 -2
- homeassistant/components/aladdin_connect/quality_scale.yaml +94 -0
- homeassistant/components/aladdin_connect/sensor.py +77 -0
- homeassistant/components/aladdin_connect/strings.json +26 -4
- homeassistant/components/aladdin_connect/translations/bg.json +1 -7
- homeassistant/components/aladdin_connect/translations/cs.json +1 -8
- homeassistant/components/aladdin_connect/translations/de.json +26 -4
- homeassistant/components/aladdin_connect/translations/el.json +1 -8
- homeassistant/components/aladdin_connect/translations/en-GB.json +26 -4
- homeassistant/components/aladdin_connect/translations/en.json +26 -4
- homeassistant/components/aladdin_connect/translations/es.json +1 -8
- homeassistant/components/aladdin_connect/translations/et.json +1 -8
- homeassistant/components/aladdin_connect/translations/ga.json +1 -8
- homeassistant/components/aladdin_connect/translations/hr.json +1 -8
- homeassistant/components/aladdin_connect/translations/hu.json +1 -8
- homeassistant/components/aladdin_connect/translations/id.json +1 -8
- homeassistant/components/aladdin_connect/translations/ja.json +1 -8
- homeassistant/components/aladdin_connect/translations/lt.json +1 -8
- homeassistant/components/aladdin_connect/translations/pt.json +1 -8
- homeassistant/components/aladdin_connect/translations/ru.json +1 -8
- homeassistant/components/aladdin_connect/translations/sk.json +1 -8
- homeassistant/components/aladdin_connect/translations/sv.json +1 -8
- homeassistant/components/aladdin_connect/translations/tr.json +1 -8
- homeassistant/components/aladdin_connect/translations/zh-Hans.json +1 -8
- homeassistant/components/aladdin_connect/translations/zh-Hant.json +1 -8
- homeassistant/components/alarm_control_panel/translations/ga.json +135 -1
- homeassistant/components/alarmdecoder/translations/fr.json +5 -1
- homeassistant/components/alarmdecoder/translations/ga.json +82 -2
- homeassistant/components/alert/translations/de.json +1 -1
- homeassistant/components/alert/translations/ga.json +27 -0
- homeassistant/components/alexa_devices/__init__.py +28 -2
- homeassistant/components/alexa_devices/config_flow.py +56 -11
- homeassistant/components/alexa_devices/const.py +19 -0
- homeassistant/components/alexa_devices/coordinator.py +2 -3
- homeassistant/components/alexa_devices/manifest.json +1 -1
- homeassistant/components/alexa_devices/quality_scale.yaml +1 -1
- homeassistant/components/alexa_devices/strings.json +11 -4
- homeassistant/components/alexa_devices/translations/bg.json +11 -1
- homeassistant/components/alexa_devices/translations/ca.json +6 -0
- homeassistant/components/alexa_devices/translations/cs.json +12 -5
- homeassistant/components/alexa_devices/translations/de.json +12 -5
- homeassistant/components/alexa_devices/translations/el.json +12 -5
- homeassistant/components/alexa_devices/translations/en-GB.json +12 -5
- homeassistant/components/alexa_devices/translations/en.json +12 -5
- homeassistant/components/alexa_devices/translations/es.json +11 -5
- homeassistant/components/alexa_devices/translations/et.json +12 -5
- homeassistant/components/alexa_devices/translations/fr.json +33 -0
- homeassistant/components/alexa_devices/translations/ga.json +27 -3
- homeassistant/components/alexa_devices/translations/he.json +6 -1
- homeassistant/components/alexa_devices/translations/hu.json +0 -3
- homeassistant/components/alexa_devices/translations/id.json +0 -3
- homeassistant/components/alexa_devices/translations/it.json +0 -3
- homeassistant/components/alexa_devices/translations/ja.json +1 -4
- homeassistant/components/alexa_devices/translations/ko.json +0 -1
- homeassistant/components/alexa_devices/translations/lt.json +1 -5
- homeassistant/components/alexa_devices/translations/mk.json +1 -5
- homeassistant/components/alexa_devices/translations/nl.json +6 -0
- homeassistant/components/alexa_devices/translations/pl.json +0 -1
- homeassistant/components/alexa_devices/translations/pt.json +1 -5
- homeassistant/components/alexa_devices/translations/ru.json +12 -5
- homeassistant/components/alexa_devices/translations/sk.json +12 -5
- homeassistant/components/alexa_devices/translations/sv.json +1 -5
- homeassistant/components/alexa_devices/translations/tr.json +0 -1
- homeassistant/components/alexa_devices/translations/zh-Hans.json +126 -5
- homeassistant/components/alexa_devices/translations/zh-Hant.json +12 -5
- homeassistant/components/altruist/translations/fr.json +9 -0
- homeassistant/components/altruist/translations/ga.json +10 -0
- homeassistant/components/amberelectric/config_flow.py +4 -2
- homeassistant/components/amberelectric/const.py +2 -1
- homeassistant/components/amberelectric/coordinator.py +6 -2
- homeassistant/components/amberelectric/services.py +1 -1
- homeassistant/components/amberelectric/translations/ga.json +16 -2
- homeassistant/components/ambient_network/translations/fr.json +12 -0
- homeassistant/components/ambient_network/translations/ga.json +3 -0
- homeassistant/components/ambient_station/entity.py +2 -1
- homeassistant/components/ambient_station/translations/ga.json +201 -0
- homeassistant/components/amcrest/translations/ga.json +130 -0
- homeassistant/components/amcrest/translations/sv.json +2 -2
- homeassistant/components/analytics/analytics.py +6 -19
- homeassistant/components/analytics_insights/translations/ga.json +7 -0
- homeassistant/components/android_ip_webcam/coordinator.py +1 -2
- homeassistant/components/android_ip_webcam/translations/ga.json +13 -0
- homeassistant/components/android_ip_webcam/translations/it.json +3 -0
- homeassistant/components/androidtv/translations/fr.json +15 -2
- homeassistant/components/androidtv/translations/ga.json +97 -1
- homeassistant/components/androidtv_remote/translations/ga.json +33 -3
- homeassistant/components/anova/translations/ga.json +38 -0
- homeassistant/components/anthemav/translations/ga.json +19 -0
- homeassistant/components/anthropic/__init__.py +6 -6
- homeassistant/components/anthropic/const.py +3 -5
- homeassistant/components/anthropic/entity.py +94 -88
- homeassistant/components/anthropic/manifest.json +1 -1
- homeassistant/components/anthropic/translations/ga.json +20 -0
- homeassistant/components/anthropic/translations/nl.json +1 -0
- homeassistant/components/aosmith/translations/ga.json +17 -1
- homeassistant/components/aosmith/translations/it.json +3 -1
- homeassistant/components/apcupsd/binary_sensor.py +3 -9
- homeassistant/components/apcupsd/entity.py +26 -0
- homeassistant/components/apcupsd/manifest.json +1 -0
- homeassistant/components/apcupsd/quality_scale.yaml +90 -0
- homeassistant/components/apcupsd/sensor.py +3 -9
- homeassistant/components/apcupsd/strings.json +15 -0
- homeassistant/components/apcupsd/translations/ca.json +7 -0
- homeassistant/components/apcupsd/translations/cs.json +15 -0
- homeassistant/components/apcupsd/translations/de.json +15 -0
- homeassistant/components/apcupsd/translations/el.json +7 -0
- homeassistant/components/apcupsd/translations/en-GB.json +15 -0
- homeassistant/components/apcupsd/translations/en.json +15 -0
- homeassistant/components/apcupsd/translations/es.json +15 -0
- homeassistant/components/apcupsd/translations/et.json +15 -0
- homeassistant/components/apcupsd/translations/fr.json +14 -0
- homeassistant/components/apcupsd/translations/ga.json +28 -0
- homeassistant/components/apcupsd/translations/he.json +6 -0
- homeassistant/components/apcupsd/translations/it.json +15 -0
- homeassistant/components/apcupsd/translations/lt.json +15 -0
- homeassistant/components/apcupsd/translations/nl.json +15 -0
- homeassistant/components/apcupsd/translations/pt.json +15 -0
- homeassistant/components/apcupsd/translations/sk.json +15 -0
- homeassistant/components/apcupsd/translations/sv.json +15 -0
- homeassistant/components/apcupsd/translations/zh-Hans.json +15 -0
- homeassistant/components/apcupsd/translations/zh-Hant.json +15 -0
- homeassistant/components/apple_tv/translations/ga.json +65 -0
- homeassistant/components/application_credentials/translations/ga.json +3 -0
- homeassistant/components/aprilaire/translations/ga.json +52 -9
- homeassistant/components/apsystems/translations/ga.json +10 -0
- homeassistant/components/aquacell/translations/ga.json +11 -1
- homeassistant/components/aranet/translations/ga.json +19 -1
- homeassistant/components/arcam_fmj/translations/ga.json +27 -0
- homeassistant/components/arve/translations/ga.json +6 -0
- homeassistant/components/aseko_pool_live/translations/ga.json +30 -0
- homeassistant/components/assist_pipeline/translations/ga.json +23 -0
- homeassistant/components/assist_satellite/entity.py +5 -5
- homeassistant/components/assist_satellite/manifest.json +1 -1
- homeassistant/components/assist_satellite/translations/ga.json +1 -0
- homeassistant/components/asuswrt/bridge.py +91 -94
- homeassistant/components/asuswrt/config_flow.py +2 -2
- homeassistant/components/asuswrt/helpers.py +56 -0
- homeassistant/components/asuswrt/manifest.json +3 -3
- homeassistant/components/asuswrt/router.py +3 -3
- homeassistant/components/asuswrt/translations/ga.json +66 -2
- homeassistant/components/asuswrt/translations/it.json +3 -0
- homeassistant/components/atag/translations/ga.json +11 -0
- homeassistant/components/august/__init__.py +20 -28
- homeassistant/components/august/application_credentials.py +15 -0
- homeassistant/components/august/config_flow.py +59 -257
- homeassistant/components/august/const.py +4 -0
- homeassistant/components/august/gateway.py +32 -19
- homeassistant/components/august/manifest.json +2 -1
- homeassistant/components/august/strings.json +24 -32
- homeassistant/components/august/translations/bg.json +8 -21
- homeassistant/components/august/translations/ca.json +15 -29
- homeassistant/components/august/translations/cs.json +19 -27
- homeassistant/components/august/translations/da.json +0 -20
- homeassistant/components/august/translations/de.json +19 -27
- homeassistant/components/august/translations/el.json +19 -27
- homeassistant/components/august/translations/en-GB.json +19 -27
- homeassistant/components/august/translations/en.json +19 -27
- homeassistant/components/august/translations/es-419.json +1 -15
- homeassistant/components/august/translations/es.json +19 -27
- homeassistant/components/august/translations/et.json +19 -27
- homeassistant/components/august/translations/fi.json +0 -29
- homeassistant/components/august/translations/fr.json +12 -20
- homeassistant/components/august/translations/fy.json +1 -11
- homeassistant/components/august/translations/ga.json +43 -3
- homeassistant/components/august/translations/he.json +0 -22
- homeassistant/components/august/translations/hu.json +0 -33
- homeassistant/components/august/translations/id.json +0 -29
- homeassistant/components/august/translations/it.json +0 -32
- homeassistant/components/august/translations/ja.json +0 -32
- homeassistant/components/august/translations/ko.json +0 -29
- homeassistant/components/august/translations/lb.json +0 -11
- homeassistant/components/august/translations/lt.json +0 -33
- homeassistant/components/august/translations/lv.json +1 -20
- homeassistant/components/august/translations/mk.json +1 -12
- homeassistant/components/august/translations/nb.json +0 -25
- homeassistant/components/august/translations/nl.json +15 -29
- homeassistant/components/august/translations/pl.json +0 -24
- homeassistant/components/august/translations/pt-BR.json +0 -29
- homeassistant/components/august/translations/pt.json +0 -33
- homeassistant/components/august/translations/ro.json +0 -29
- homeassistant/components/august/translations/ru.json +7 -26
- homeassistant/components/august/translations/sk.json +19 -27
- homeassistant/components/august/translations/sl.json +0 -20
- homeassistant/components/august/translations/sv.json +0 -33
- homeassistant/components/august/translations/tr.json +0 -32
- homeassistant/components/august/translations/uk.json +0 -29
- homeassistant/components/august/translations/vi.json +0 -9
- homeassistant/components/august/translations/zh-Hans.json +19 -27
- homeassistant/components/august/translations/zh-Hant.json +19 -27
- homeassistant/components/aurora/translations/fr.json +9 -0
- homeassistant/components/aurora/translations/ga.json +32 -1
- homeassistant/components/aurora_abb_powerone/translations/fr.json +7 -0
- homeassistant/components/aurora_abb_powerone/translations/ga.json +26 -0
- homeassistant/components/aussie_broadband/translations/ga.json +87 -0
- homeassistant/components/autarco/translations/ga.json +17 -1
- homeassistant/components/auth/login_flow.py +12 -15
- homeassistant/components/auth/mfa_setup_flow.py +7 -11
- homeassistant/components/auth/translations/ga.json +33 -0
- homeassistant/components/auth/translations/it.json +3 -1
- homeassistant/components/automation/translations/ga.json +79 -1
- homeassistant/components/awair/const.py +1 -0
- homeassistant/components/awair/sensor.py +10 -0
- homeassistant/components/awair/translations/ga.json +57 -0
- homeassistant/components/awair/translations/zh-Hant.json +1 -1
- homeassistant/components/aws_s3/translations/ga.json +3 -0
- homeassistant/components/axis/translations/ga.json +26 -1
- homeassistant/components/azure_data_explorer/translations/ga.json +8 -0
- homeassistant/components/azure_devops/manifest.json +1 -1
- homeassistant/components/azure_devops/translations/ga.json +22 -0
- homeassistant/components/azure_event_hub/translations/ga.json +36 -0
- homeassistant/components/azure_storage/translations/ga.json +7 -0
- homeassistant/components/backup/config.py +0 -24
- homeassistant/components/backup/translations/ga.json +5 -0
- homeassistant/components/backup/websocket.py +0 -3
- homeassistant/components/baf/translations/ga.json +95 -0
- homeassistant/components/balboa/translations/ga.json +32 -0
- homeassistant/components/bang_olufsen/translations/ga.json +12 -1
- homeassistant/components/bayesian/__init__.py +21 -3
- homeassistant/components/bayesian/binary_sensor.py +81 -18
- homeassistant/components/bayesian/config_flow.py +646 -0
- homeassistant/components/bayesian/const.py +4 -0
- homeassistant/components/bayesian/issues.py +1 -1
- homeassistant/components/bayesian/manifest.json +3 -2
- homeassistant/components/bayesian/strings.json +259 -0
- homeassistant/components/bayesian/translations/ca.json +96 -0
- homeassistant/components/bayesian/translations/cs.json +257 -0
- homeassistant/components/bayesian/translations/de.json +260 -3
- homeassistant/components/bayesian/translations/en-GB.json +257 -0
- homeassistant/components/bayesian/translations/en.json +257 -0
- homeassistant/components/bayesian/translations/et.json +257 -0
- homeassistant/components/bayesian/translations/ga.json +231 -0
- homeassistant/components/bayesian/translations/it.json +1 -0
- homeassistant/components/bayesian/translations/nl.json +89 -0
- homeassistant/components/bayesian/translations/sk.json +257 -0
- homeassistant/components/bayesian/translations/zh-Hans.json +257 -0
- homeassistant/components/bayesian/translations/zh-Hant.json +257 -0
- homeassistant/components/binary_sensor/translations/ga.json +307 -1
- homeassistant/components/blackbird/translations/ga.json +18 -0
- homeassistant/components/blebox/translations/ga.json +26 -0
- homeassistant/components/blink/const.py +0 -1
- homeassistant/components/blink/services.py +2 -2
- homeassistant/components/blink/translations/ga.json +66 -2
- homeassistant/components/blink/translations/it.json +3 -0
- homeassistant/components/blue_current/manifest.json +1 -1
- homeassistant/components/blue_current/translations/ga.json +50 -3
- homeassistant/components/bluemaestro/translations/ga.json +20 -0
- homeassistant/components/bluesound/translations/ga.json +57 -0
- homeassistant/components/bluetooth/__init__.py +8 -6
- homeassistant/components/bluetooth/manager.py +5 -7
- homeassistant/components/bluetooth/manifest.json +2 -2
- homeassistant/components/bluetooth/translations/ga.json +34 -0
- homeassistant/components/bluetooth/websocket_api.py +8 -1
- homeassistant/components/bluetooth_tracker/translations/ga.json +8 -0
- homeassistant/components/bmw_connected_drive/translations/ga.json +113 -0
- homeassistant/components/bond/translations/ga.json +90 -0
- homeassistant/components/bosch_alarm/const.py +0 -1
- homeassistant/components/bosch_alarm/services.py +2 -1
- homeassistant/components/bosch_alarm/strings.json +1 -1
- homeassistant/components/bosch_alarm/translations/fr.json +110 -4
- homeassistant/components/bosch_alarm/translations/ga.json +14 -0
- homeassistant/components/bosch_alarm/translations/pt.json +3 -0
- homeassistant/components/bosch_shc/entity.py +1 -6
- homeassistant/components/bosch_shc/manifest.json +1 -1
- homeassistant/components/bosch_shc/translations/ga.json +39 -1
- homeassistant/components/braviatv/button.py +2 -4
- homeassistant/components/braviatv/config_flow.py +4 -2
- homeassistant/components/braviatv/coordinator.py +4 -0
- homeassistant/components/braviatv/entity.py +5 -12
- homeassistant/components/braviatv/media_player.py +1 -3
- homeassistant/components/braviatv/remote.py +1 -1
- homeassistant/components/braviatv/translations/ga.json +48 -1
- homeassistant/components/braviatv/translations/it.json +3 -0
- homeassistant/components/bring/translations/fr.json +9 -0
- homeassistant/components/bring/translations/ga.json +24 -2
- homeassistant/components/broadlink/translations/ga.json +60 -1
- homeassistant/components/brother/manifest.json +1 -1
- homeassistant/components/brother/translations/ga.json +96 -2
- homeassistant/components/brother/translations/it.json +6 -0
- homeassistant/components/brother/translations/nl.json +11 -0
- homeassistant/components/brottsplatskartan/translations/ga.json +19 -0
- homeassistant/components/browser/translations/ga.json +14 -0
- homeassistant/components/brunt/translations/ga.json +29 -0
- homeassistant/components/bryant_evolution/translations/ga.json +6 -0
- homeassistant/components/bsblan/__init__.py +37 -6
- homeassistant/components/bsblan/config_flow.py +159 -20
- homeassistant/components/bsblan/coordinator.py +13 -1
- homeassistant/components/bsblan/strings.json +27 -2
- homeassistant/components/bsblan/translations/bg.json +11 -2
- homeassistant/components/bsblan/translations/ca.json +12 -2
- homeassistant/components/bsblan/translations/cs.json +27 -2
- homeassistant/components/bsblan/translations/de.json +27 -2
- homeassistant/components/bsblan/translations/el.json +17 -2
- homeassistant/components/bsblan/translations/en-GB.json +27 -2
- homeassistant/components/bsblan/translations/en.json +27 -2
- homeassistant/components/bsblan/translations/es.json +13 -2
- homeassistant/components/bsblan/translations/et.json +27 -2
- homeassistant/components/bsblan/translations/fr.json +21 -2
- homeassistant/components/bsblan/translations/ga.json +48 -1
- homeassistant/components/bsblan/translations/he.json +11 -2
- homeassistant/components/bsblan/translations/it.json +24 -2
- homeassistant/components/bsblan/translations/ko.json +6 -0
- homeassistant/components/bsblan/translations/lt.json +27 -2
- homeassistant/components/bsblan/translations/nl.json +21 -2
- homeassistant/components/bsblan/translations/pt.json +27 -2
- homeassistant/components/bsblan/translations/ru.json +22 -2
- homeassistant/components/bsblan/translations/sk.json +27 -2
- homeassistant/components/bsblan/translations/sv.json +17 -2
- homeassistant/components/bsblan/translations/zh-Hans.json +27 -2
- homeassistant/components/bsblan/translations/zh-Hant.json +27 -2
- homeassistant/components/bthome/sensor.py +4 -4
- homeassistant/components/bthome/translations/ga.json +45 -1
- homeassistant/components/buienradar/translations/ga.json +414 -0
- homeassistant/components/button/translations/fr.json +1 -0
- homeassistant/components/button/translations/ga.json +31 -0
- homeassistant/components/caldav/translations/ga.json +23 -1
- homeassistant/components/calendar/translations/ga.json +81 -1
- homeassistant/components/calendar/translations/it.json +6 -2
- homeassistant/components/calendar/translations/zh-Hant.json +1 -1
- homeassistant/components/cambridge_audio/translations/ga.json +11 -1
- homeassistant/components/camera/translations/ga.json +97 -1
- homeassistant/components/camera/translations/zh-Hant.json +1 -1
- homeassistant/components/canary/translations/ga.json +30 -0
- homeassistant/components/cast/manifest.json +1 -1
- homeassistant/components/cast/translations/ga.json +52 -1
- homeassistant/components/cast/translations/sl.json +7 -0
- homeassistant/components/ccm15/climate.py +8 -5
- homeassistant/components/ccm15/coordinator.py +25 -10
- homeassistant/components/ccm15/manifest.json +1 -1
- homeassistant/components/ccm15/translations/ga.json +19 -0
- homeassistant/components/cert_expiry/translations/ga.json +23 -1
- homeassistant/components/chacon_dio/translations/ga.json +20 -0
- homeassistant/components/channels/translations/ga.json +22 -0
- homeassistant/components/climate/__init__.py +1 -1
- homeassistant/components/climate/services.yaml +4 -10
- homeassistant/components/climate/translations/ga.json +217 -4
- homeassistant/components/cloud/alexa_config.py +28 -25
- homeassistant/components/cloud/google_config.py +2 -2
- homeassistant/components/cloud/manifest.json +1 -1
- homeassistant/components/cloud/subscription.py +9 -7
- homeassistant/components/cloud/translations/ga.json +37 -1
- homeassistant/components/cloudflare/translations/ga.json +46 -0
- homeassistant/components/co2signal/coordinator.py +3 -3
- homeassistant/components/co2signal/helpers.py +15 -9
- homeassistant/components/co2signal/manifest.json +1 -1
- homeassistant/components/co2signal/sensor.py +5 -5
- homeassistant/components/co2signal/translations/ga.json +33 -1
- homeassistant/components/coinbase/__init__.py +24 -83
- homeassistant/components/coinbase/config_flow.py +70 -20
- homeassistant/components/coinbase/manifest.json +1 -1
- homeassistant/components/coinbase/sensor.py +21 -10
- homeassistant/components/coinbase/strings.json +10 -1
- homeassistant/components/coinbase/translations/ca.json +5 -0
- homeassistant/components/coinbase/translations/cs.json +10 -1
- homeassistant/components/coinbase/translations/de.json +10 -1
- homeassistant/components/coinbase/translations/el.json +8 -0
- homeassistant/components/coinbase/translations/en-GB.json +10 -1
- homeassistant/components/coinbase/translations/en.json +10 -1
- homeassistant/components/coinbase/translations/et.json +10 -1
- homeassistant/components/coinbase/translations/fr.json +8 -1
- homeassistant/components/coinbase/translations/ga.json +41 -1
- homeassistant/components/coinbase/translations/he.json +5 -0
- homeassistant/components/coinbase/translations/lt.json +10 -1
- homeassistant/components/coinbase/translations/nl.json +5 -0
- homeassistant/components/coinbase/translations/pt.json +10 -1
- homeassistant/components/coinbase/translations/sk.json +10 -1
- homeassistant/components/coinbase/translations/sv.json +5 -0
- homeassistant/components/coinbase/translations/zh-Hans.json +10 -1
- homeassistant/components/coinbase/translations/zh-Hant.json +10 -1
- homeassistant/components/color_extractor/translations/ga.json +25 -0
- homeassistant/components/comelit/translations/fr.json +1 -0
- homeassistant/components/comelit/translations/ga.json +23 -1
- homeassistant/components/command_line/translations/ga.json +8 -0
- homeassistant/components/config/config_entries.py +51 -12
- homeassistant/components/configurator/translations/ga.json +12 -0
- homeassistant/components/control4/translations/ga.json +31 -0
- homeassistant/components/conversation/__init__.py +5 -2
- homeassistant/components/conversation/chat_log.py +114 -29
- homeassistant/components/conversation/default_agent.py +294 -90
- homeassistant/components/conversation/http.py +19 -10
- homeassistant/components/conversation/manifest.json +1 -1
- homeassistant/components/conversation/translations/ga.json +28 -3
- homeassistant/components/cookidoo/translations/ga.json +14 -1
- homeassistant/components/coolmaster/translations/ga.json +31 -0
- homeassistant/components/counter/translations/ga.json +53 -0
- homeassistant/components/cover/translations/ga.json +131 -1
- homeassistant/components/cpuspeed/translations/ga.json +14 -0
- homeassistant/components/crownstone/translations/ga.json +75 -0
- homeassistant/components/daikin/manifest.json +1 -1
- homeassistant/components/daikin/translations/ga.json +47 -0
- homeassistant/components/datadog/translations/ga.json +16 -0
- homeassistant/components/date/translations/ga.json +20 -0
- homeassistant/components/datetime/translations/ga.json +20 -0
- homeassistant/components/deako/translations/ga.json +4 -0
- homeassistant/components/debugpy/translations/ga.json +8 -0
- homeassistant/components/deconz/translations/ga.json +127 -0
- homeassistant/components/deconz/translations/it.json +5 -1
- homeassistant/components/deluge/translations/ga.json +33 -1
- homeassistant/components/deluge/translations/it.json +3 -0
- homeassistant/components/demo/media_player.py +10 -0
- homeassistant/components/demo/translations/ga.json +87 -1
- homeassistant/components/demo/translations/select.ga.json +9 -0
- homeassistant/components/denonavr/translations/fr.json +25 -0
- homeassistant/components/denonavr/translations/ga.json +76 -0
- homeassistant/components/derivative/__init__.py +12 -0
- homeassistant/components/derivative/config_flow.py +2 -2
- homeassistant/components/derivative/sensor.py +1 -1
- homeassistant/components/derivative/translations/ga.json +35 -6
- homeassistant/components/devialet/translations/ga.json +6 -0
- homeassistant/components/device_automation/condition.py +3 -3
- homeassistant/components/device_tracker/translations/ga.json +63 -1
- homeassistant/components/devolo_home_control/translations/ga.json +20 -0
- homeassistant/components/devolo_home_network/translations/ga.json +62 -2
- homeassistant/components/dexcom/translations/ga.json +30 -0
- homeassistant/components/diagnostics/translations/ga.json +3 -0
- homeassistant/components/dialogflow/translations/ga.json +18 -0
- homeassistant/components/dialogflow/translations/it.json +5 -1
- homeassistant/components/directv/translations/ga.json +14 -0
- homeassistant/components/directv/translations/it.json +3 -0
- homeassistant/components/discord/translations/ga.json +27 -0
- homeassistant/components/discovergy/translations/ga.json +54 -1
- homeassistant/components/discovergy/translations/nl.json +3 -3
- homeassistant/components/dlink/translations/ga.json +18 -0
- homeassistant/components/dlink/translations/it.json +1 -0
- homeassistant/components/dlna_dmr/translations/ga.json +55 -0
- homeassistant/components/dlna_dmr/translations/zh-Hant.json +1 -1
- homeassistant/components/dlna_dms/translations/ga.json +24 -0
- homeassistant/components/dnsip/translations/ga.json +17 -2
- homeassistant/components/dominos/translations/ga.json +14 -0
- homeassistant/components/doorbird/translations/ga.json +45 -0
- homeassistant/components/doorbird/translations/it.json +3 -0
- homeassistant/components/dormakaba_dkey/translations/ga.json +44 -0
- homeassistant/components/downloader/translations/ga.json +27 -0
- homeassistant/components/dremel_3d_printer/entity.py +1 -0
- homeassistant/components/dremel_3d_printer/translations/ga.json +88 -0
- homeassistant/components/drop_connect/translations/ga.json +2 -0
- homeassistant/components/dsmr/translations/ga.json +138 -0
- homeassistant/components/dsmr_reader/translations/ga.json +209 -0
- homeassistant/components/dsmr_reader/translations/nl.json +4 -4
- homeassistant/components/duckdns/translations/ga.json +14 -0
- homeassistant/components/duke_energy/translations/ga.json +20 -0
- homeassistant/components/dunehd/translations/ga.json +13 -1
- homeassistant/components/duotecno/translations/ga.json +11 -0
- homeassistant/components/dwd_weather_warnings/translations/fr.json +13 -0
- homeassistant/components/dwd_weather_warnings/translations/ga.json +11 -2
- homeassistant/components/dynalite/translations/ga.json +56 -0
- homeassistant/components/eafm/translations/ga.json +17 -0
- homeassistant/components/easyenergy/translations/ga.json +44 -0
- homeassistant/components/ebusd/translations/ga.json +14 -0
- homeassistant/components/ecobee/const.py +0 -1
- homeassistant/components/ecobee/translations/ga.json +129 -0
- homeassistant/components/ecobee/translations/zh-Hant.json +1 -1
- homeassistant/components/ecoforest/translations/fr.json +3 -0
- homeassistant/components/ecoforest/translations/ga.json +16 -0
- homeassistant/components/econet/translations/ga.json +20 -0
- homeassistant/components/econet/translations/zh-Hant.json +1 -1
- homeassistant/components/ecovacs/translations/ga.json +14 -2
- homeassistant/components/ecowitt/translations/ga.json +12 -0
- homeassistant/components/edl21/translations/ga.json +112 -0
- homeassistant/components/efergy/translations/ga.json +42 -0
- homeassistant/components/eheimdigital/translations/ga.json +15 -0
- homeassistant/components/electrasmart/translations/ga.json +25 -0
- homeassistant/components/electric_kiwi/translations/ga.json +19 -3
- homeassistant/components/elevenlabs/translations/ga.json +7 -0
- homeassistant/components/elgato/translations/el.json +2 -1
- homeassistant/components/elgato/translations/ga.json +47 -1
- homeassistant/components/elkm1/translations/el.json +21 -3
- homeassistant/components/elkm1/translations/ga.json +170 -1
- homeassistant/components/elmax/translations/ga.json +31 -1
- homeassistant/components/elvia/translations/ga.json +7 -0
- homeassistant/components/emoncms/const.py +0 -1
- homeassistant/components/emoncms/manifest.json +1 -1
- homeassistant/components/emoncms/sensor.py +3 -10
- homeassistant/components/emoncms/strings.json +20 -11
- homeassistant/components/emoncms/translations/bg.json +9 -5
- homeassistant/components/emoncms/translations/ca.json +9 -0
- homeassistant/components/emoncms/translations/cs.json +17 -8
- homeassistant/components/emoncms/translations/de.json +17 -8
- homeassistant/components/emoncms/translations/el.json +10 -8
- homeassistant/components/emoncms/translations/en-GB.json +17 -8
- homeassistant/components/emoncms/translations/en.json +17 -8
- homeassistant/components/emoncms/translations/es.json +17 -8
- homeassistant/components/emoncms/translations/et.json +17 -8
- homeassistant/components/emoncms/translations/fr.json +31 -0
- homeassistant/components/emoncms/translations/ga.json +20 -9
- homeassistant/components/emoncms/translations/he.json +6 -0
- homeassistant/components/emoncms/translations/hu.json +0 -8
- homeassistant/components/emoncms/translations/id.json +0 -7
- homeassistant/components/emoncms/translations/it.json +23 -4
- homeassistant/components/emoncms/translations/ja.json +0 -8
- homeassistant/components/emoncms/translations/ko.json +6 -0
- homeassistant/components/emoncms/translations/lt.json +17 -8
- homeassistant/components/emoncms/translations/nl.json +6 -9
- homeassistant/components/emoncms/translations/pt.json +17 -8
- homeassistant/components/emoncms/translations/ru.json +10 -8
- homeassistant/components/emoncms/translations/sk.json +17 -8
- homeassistant/components/emoncms/translations/sv.json +17 -8
- homeassistant/components/emoncms/translations/tr.json +0 -8
- homeassistant/components/emoncms/translations/vi.json +1 -8
- homeassistant/components/emoncms/translations/zh-Hans.json +17 -8
- homeassistant/components/emoncms/translations/zh-Hant.json +17 -8
- homeassistant/components/emoncms_history/__init__.py +47 -56
- homeassistant/components/emoncms_history/manifest.json +3 -2
- homeassistant/components/emonitor/sensor.py +1 -0
- homeassistant/components/emonitor/translations/ga.json +15 -0
- homeassistant/components/emulated_roku/translations/ga.json +21 -0
- homeassistant/components/emulated_roku/translations/it.json +6 -1
- homeassistant/components/energenie_power_sockets/translations/ga.json +4 -0
- homeassistant/components/energy/translations/ga.json +52 -0
- homeassistant/components/energyzero/translations/ga.json +16 -0
- homeassistant/components/enigma2/translations/ga.json +19 -0
- homeassistant/components/enocean/translations/ga.json +6 -0
- homeassistant/components/enphase_envoy/binary_sensor.py +115 -1
- homeassistant/components/enphase_envoy/diagnostics.py +1 -0
- homeassistant/components/enphase_envoy/manifest.json +2 -2
- homeassistant/components/enphase_envoy/sensor.py +130 -0
- homeassistant/components/enphase_envoy/strings.json +6 -0
- homeassistant/components/enphase_envoy/translations/bg.json +3 -0
- homeassistant/components/enphase_envoy/translations/ca.json +3 -0
- homeassistant/components/enphase_envoy/translations/cs.json +6 -0
- homeassistant/components/enphase_envoy/translations/de.json +6 -0
- homeassistant/components/enphase_envoy/translations/el.json +6 -0
- homeassistant/components/enphase_envoy/translations/en-GB.json +6 -0
- homeassistant/components/enphase_envoy/translations/en.json +6 -0
- homeassistant/components/enphase_envoy/translations/et.json +6 -0
- homeassistant/components/enphase_envoy/translations/fr.json +3 -0
- homeassistant/components/enphase_envoy/translations/ga.json +81 -4
- homeassistant/components/enphase_envoy/translations/pt.json +6 -0
- homeassistant/components/enphase_envoy/translations/sk.json +6 -0
- homeassistant/components/enphase_envoy/translations/sv.json +3 -0
- homeassistant/components/enphase_envoy/translations/zh-Hans.json +6 -0
- homeassistant/components/enphase_envoy/translations/zh-Hant.json +6 -0
- homeassistant/components/environment_canada/translations/ga.json +118 -0
- homeassistant/components/envisalink/translations/ga.json +32 -0
- homeassistant/components/epic_games_store/translations/ga.json +6 -0
- homeassistant/components/epion/translations/ga.json +18 -0
- homeassistant/components/epson/translations/ga.json +22 -1
- homeassistant/components/epson/translations/it.json +3 -0
- homeassistant/components/eq3btsmart/translations/ga.json +3 -0
- homeassistant/components/escea/translations/ga.json +8 -0
- homeassistant/components/esphome/const.py +1 -1
- homeassistant/components/esphome/manager.py +6 -16
- homeassistant/components/esphome/manifest.json +1 -1
- homeassistant/components/esphome/media_player.py +51 -9
- homeassistant/components/esphome/translations/ga.json +35 -2
- homeassistant/components/esphome/translations/it.json +11 -3
- homeassistant/components/esphome/translations/zh-Hant.json +2 -2
- homeassistant/components/eufylife_ble/translations/ga.json +35 -0
- homeassistant/components/event/translations/ga.json +25 -0
- homeassistant/components/evil_genius_labs/translations/ga.json +8 -0
- homeassistant/components/evil_genius_labs/translations/it.json +3 -0
- homeassistant/components/evohome/translations/ga.json +58 -0
- homeassistant/components/ezviz/sensor.py +38 -8
- homeassistant/components/ezviz/strings.json +12 -0
- homeassistant/components/ezviz/translations/cs.json +12 -0
- homeassistant/components/ezviz/translations/de.json +16 -4
- homeassistant/components/ezviz/translations/en-GB.json +12 -0
- homeassistant/components/ezviz/translations/en.json +12 -0
- homeassistant/components/ezviz/translations/es.json +12 -0
- homeassistant/components/ezviz/translations/et.json +12 -0
- homeassistant/components/ezviz/translations/ga.json +134 -0
- homeassistant/components/ezviz/translations/it.json +12 -0
- homeassistant/components/ezviz/translations/lt.json +12 -0
- homeassistant/components/ezviz/translations/pt.json +12 -0
- homeassistant/components/ezviz/translations/sk.json +12 -0
- homeassistant/components/ezviz/translations/sv.json +10 -1
- homeassistant/components/ezviz/translations/zh-Hans.json +12 -0
- homeassistant/components/ezviz/translations/zh-Hant.json +12 -0
- homeassistant/components/faa_delays/translations/ga.json +19 -0
- homeassistant/components/fan/intent.py +31 -0
- homeassistant/components/fan/translations/ga.json +123 -1
- homeassistant/components/fastdotcom/translations/ga.json +3 -0
- homeassistant/components/feedreader/translations/ga.json +9 -0
- homeassistant/components/ffmpeg/translations/ga.json +34 -0
- homeassistant/components/fibaro/translations/ga.json +21 -1
- homeassistant/components/file/translations/ga.json +3 -0
- homeassistant/components/filesize/translations/ga.json +16 -1
- homeassistant/components/filter/translations/ga.json +14 -1
- homeassistant/components/fireservicerota/translations/ga.json +27 -0
- homeassistant/components/fitbit/translations/ga.json +17 -2
- homeassistant/components/fivem/translations/ga.json +16 -0
- homeassistant/components/fjaraskupan/translations/ga.json +26 -0
- homeassistant/components/flexit_bacnet/translations/ga.json +23 -0
- homeassistant/components/flick_electric/translations/ga.json +24 -1
- homeassistant/components/flipr/translations/ga.json +31 -0
- homeassistant/components/flo/translations/ga.json +13 -0
- homeassistant/components/flume/translations/ga.json +62 -0
- homeassistant/components/flux_led/translations/ga.json +73 -0
- homeassistant/components/folder_watcher/translations/ga.json +3 -0
- homeassistant/components/forecast_solar/translations/ga.json +26 -2
- homeassistant/components/forked_daapd/translations/ga.json +11 -0
- homeassistant/components/foscam/__init__.py +1 -2
- homeassistant/components/foscam/config_flow.py +1 -1
- homeassistant/components/foscam/const.py +13 -0
- homeassistant/components/foscam/coordinator.py +106 -22
- homeassistant/components/foscam/entity.py +3 -7
- homeassistant/components/foscam/icons.json +34 -0
- homeassistant/components/foscam/manifest.json +1 -1
- homeassistant/components/foscam/strings.json +34 -2
- homeassistant/components/foscam/switch.py +142 -45
- homeassistant/components/foscam/translations/bg.json +10 -0
- homeassistant/components/foscam/translations/cs.json +33 -1
- homeassistant/components/foscam/translations/de.json +33 -1
- homeassistant/components/foscam/translations/el.json +40 -1
- homeassistant/components/foscam/translations/en-GB.json +33 -1
- homeassistant/components/foscam/translations/en.json +33 -1
- homeassistant/components/foscam/translations/et.json +33 -1
- homeassistant/components/foscam/translations/fr.json +38 -0
- homeassistant/components/foscam/translations/ga.json +57 -1
- homeassistant/components/foscam/translations/lt.json +37 -1
- homeassistant/components/foscam/translations/nl.json +7 -0
- homeassistant/components/foscam/translations/pt.json +40 -1
- homeassistant/components/foscam/translations/ru.json +13 -1
- homeassistant/components/foscam/translations/sk.json +33 -1
- homeassistant/components/foscam/translations/sv.json +22 -3
- homeassistant/components/foscam/translations/zh-Hans.json +33 -1
- homeassistant/components/foscam/translations/zh-Hant.json +33 -1
- homeassistant/components/freebox/alarm_control_panel.py +3 -5
- homeassistant/components/freebox/binary_sensor.py +6 -9
- homeassistant/components/freebox/camera.py +1 -1
- homeassistant/components/freebox/entity.py +3 -20
- homeassistant/components/freebox/router.py +5 -0
- homeassistant/components/freebox/sensor.py +11 -10
- homeassistant/components/freebox/translations/ga.json +22 -0
- homeassistant/components/freebox/translations/it.json +3 -0
- homeassistant/components/freedompro/translations/ga.json +20 -0
- homeassistant/components/fritz/coordinator.py +0 -1
- homeassistant/components/fritz/translations/ga.json +71 -3
- homeassistant/components/fritzbox/translations/ga.json +29 -0
- homeassistant/components/fritzbox/translations/it.json +3 -0
- homeassistant/components/fritzbox_callmonitor/translations/ga.json +14 -0
- homeassistant/components/fritzbox_callmonitor/translations/it.json +3 -0
- homeassistant/components/fronius/translations/ga.json +123 -1
- homeassistant/components/frontend/__init__.py +1 -1
- homeassistant/components/frontend/manifest.json +1 -1
- homeassistant/components/frontend/translations/ga.json +30 -0
- homeassistant/components/frontier_silicon/translations/ga.json +20 -0
- homeassistant/components/fujitsu_fglair/translations/ga.json +17 -2
- homeassistant/components/fully_kiosk/button.py +6 -0
- homeassistant/components/fully_kiosk/strings.json +3 -0
- homeassistant/components/fully_kiosk/translations/cs.json +3 -0
- homeassistant/components/fully_kiosk/translations/de.json +3 -0
- homeassistant/components/fully_kiosk/translations/en-GB.json +3 -0
- homeassistant/components/fully_kiosk/translations/en.json +3 -0
- homeassistant/components/fully_kiosk/translations/es.json +3 -0
- homeassistant/components/fully_kiosk/translations/et.json +3 -0
- homeassistant/components/fully_kiosk/translations/ga.json +58 -0
- homeassistant/components/fully_kiosk/translations/ru.json +3 -0
- homeassistant/components/fully_kiosk/translations/sk.json +3 -0
- homeassistant/components/fully_kiosk/translations/zh-Hans.json +3 -0
- homeassistant/components/fully_kiosk/translations/zh-Hant.json +3 -0
- homeassistant/components/fyta/const.py +5 -0
- homeassistant/components/fyta/sensor.py +96 -30
- homeassistant/components/fyta/strings.json +56 -2
- homeassistant/components/fyta/translations/bg.json +6 -0
- homeassistant/components/fyta/translations/ca.json +6 -0
- homeassistant/components/fyta/translations/cs.json +64 -2
- homeassistant/components/fyta/translations/de.json +64 -2
- homeassistant/components/fyta/translations/el.json +64 -2
- homeassistant/components/fyta/translations/en-GB.json +64 -2
- homeassistant/components/fyta/translations/en.json +64 -2
- homeassistant/components/fyta/translations/et.json +64 -2
- homeassistant/components/fyta/translations/fr.json +37 -2
- homeassistant/components/fyta/translations/ga.json +79 -3
- homeassistant/components/fyta/translations/he.json +6 -0
- homeassistant/components/fyta/translations/nl.json +6 -0
- homeassistant/components/fyta/translations/ru.json +64 -2
- homeassistant/components/fyta/translations/sk.json +64 -2
- homeassistant/components/fyta/translations/sv.json +64 -2
- homeassistant/components/fyta/translations/zh-Hans.json +64 -2
- homeassistant/components/fyta/translations/zh-Hant.json +64 -2
- homeassistant/components/garages_amsterdam/translations/ga.json +10 -1
- homeassistant/components/gardena_bluetooth/translations/ga.json +54 -0
- homeassistant/components/gdacs/translations/ga.json +15 -0
- homeassistant/components/generic/translations/ga.json +24 -1
- homeassistant/components/generic_hygrostat/translations/ga.json +1 -0
- homeassistant/components/generic_hygrostat/translations/pl.json +4 -0
- homeassistant/components/generic_thermostat/translations/ga.json +23 -0
- homeassistant/components/geniushub/translations/ga.json +61 -0
- homeassistant/components/geo_json_events/translations/ga.json +7 -0
- homeassistant/components/geo_location/translations/ga.json +14 -0
- homeassistant/components/geocaching/translations/ga.json +1 -0
- homeassistant/components/geofency/translations/it.json +6 -0
- homeassistant/components/geonetnz_quakes/translations/ga.json +12 -0
- homeassistant/components/geonetnz_volcano/translations/ga.json +15 -0
- homeassistant/components/gios/translations/ga.json +162 -0
- homeassistant/components/gios/translations/it.json +2 -1
- homeassistant/components/github/translations/ga.json +18 -0
- homeassistant/components/glances/coordinator.py +0 -1
- homeassistant/components/glances/translations/ga.json +9 -0
- homeassistant/components/goalzero/translations/el.json +3 -0
- homeassistant/components/goalzero/translations/it.json +3 -0
- homeassistant/components/google/translations/ga.json +112 -2
- homeassistant/components/google_assistant/translations/ga.json +21 -0
- homeassistant/components/google_assistant_sdk/translations/ga.json +51 -2
- homeassistant/components/google_assistant_sdk/translations/zh-Hant.json +1 -1
- homeassistant/components/google_drive/translations/ga.json +15 -2
- homeassistant/components/google_generative_ai_conversation/__init__.py +11 -7
- homeassistant/components/google_generative_ai_conversation/config_flow.py +1 -1
- homeassistant/components/google_generative_ai_conversation/entity.py +26 -18
- homeassistant/components/google_generative_ai_conversation/manifest.json +1 -1
- homeassistant/components/google_generative_ai_conversation/translations/ga.json +22 -1
- homeassistant/components/google_generative_ai_conversation/translations/nl.json +1 -0
- homeassistant/components/google_generative_ai_conversation/tts.py +29 -3
- homeassistant/components/google_mail/translations/ga.json +51 -1
- homeassistant/components/google_photos/translations/ga.json +18 -2
- homeassistant/components/google_sheets/translations/ga.json +26 -1
- homeassistant/components/google_tasks/translations/ga.json +18 -2
- homeassistant/components/google_travel_time/translations/ga.json +10 -1
- homeassistant/components/govee_ble/translations/ga.json +9 -0
- homeassistant/components/govee_light_local/translations/ga.json +11 -0
- homeassistant/components/gpsd/translations/ga.json +33 -0
- homeassistant/components/gpslogger/translations/ga.json +17 -0
- homeassistant/components/gree/translations/ga.json +11 -0
- homeassistant/components/gree/translations/it.json +19 -0
- homeassistant/components/group/config_flow.py +16 -2
- homeassistant/components/group/strings.json +8 -0
- homeassistant/components/group/translations/bg.json +2 -0
- homeassistant/components/group/translations/ca.json +2 -0
- homeassistant/components/group/translations/cs.json +8 -0
- homeassistant/components/group/translations/de.json +8 -0
- homeassistant/components/group/translations/el.json +2 -0
- homeassistant/components/group/translations/en-GB.json +8 -0
- homeassistant/components/group/translations/en.json +8 -0
- homeassistant/components/group/translations/et.json +8 -0
- homeassistant/components/group/translations/fr.json +8 -0
- homeassistant/components/group/translations/ga.json +140 -2
- homeassistant/components/group/translations/he.json +8 -0
- homeassistant/components/group/translations/lt.json +8 -0
- homeassistant/components/group/translations/nl.json +2 -0
- homeassistant/components/group/translations/pt.json +8 -0
- homeassistant/components/group/translations/ru.json +26 -0
- homeassistant/components/group/translations/sk.json +8 -0
- homeassistant/components/group/translations/sv.json +20 -0
- homeassistant/components/group/translations/zh-Hans.json +8 -0
- homeassistant/components/group/translations/zh-Hant.json +8 -0
- homeassistant/components/growatt_server/manifest.json +1 -1
- homeassistant/components/growatt_server/translations/ga.json +194 -1
- homeassistant/components/guardian/entity.py +1 -1
- homeassistant/components/guardian/translations/ga.json +98 -0
- homeassistant/components/habitica/__init__.py +56 -5
- homeassistant/components/habitica/binary_sensor.py +43 -5
- homeassistant/components/habitica/coordinator.py +59 -28
- homeassistant/components/habitica/entity.py +36 -1
- homeassistant/components/habitica/icons.json +21 -0
- homeassistant/components/habitica/image.py +76 -5
- homeassistant/components/habitica/manifest.json +1 -1
- homeassistant/components/habitica/quality_scale.yaml +1 -1
- homeassistant/components/habitica/sensor.py +133 -2
- homeassistant/components/habitica/strings.json +40 -2
- homeassistant/components/habitica/translations/bg.json +6 -0
- homeassistant/components/habitica/translations/cs.json +38 -0
- homeassistant/components/habitica/translations/de.json +38 -0
- homeassistant/components/habitica/translations/el.json +40 -1
- homeassistant/components/habitica/translations/en-GB.json +38 -0
- homeassistant/components/habitica/translations/en.json +38 -0
- homeassistant/components/habitica/translations/es.json +1 -0
- homeassistant/components/habitica/translations/et.json +38 -0
- homeassistant/components/habitica/translations/fr.json +62 -0
- homeassistant/components/habitica/translations/ga.json +64 -2
- homeassistant/components/habitica/translations/he.json +13 -0
- homeassistant/components/habitica/translations/lt.json +38 -0
- homeassistant/components/habitica/translations/nl.json +6 -0
- homeassistant/components/habitica/translations/pt.json +40 -1
- homeassistant/components/habitica/translations/ru.json +40 -1
- homeassistant/components/habitica/translations/sk.json +38 -0
- homeassistant/components/habitica/translations/sv.json +22 -1
- homeassistant/components/habitica/translations/zh-Hans.json +38 -0
- homeassistant/components/habitica/translations/zh-Hant.json +38 -0
- homeassistant/components/habitica/util.py +31 -2
- homeassistant/components/harmony/translations/ga.json +16 -0
- homeassistant/components/harmony/translations/it.json +3 -0
- homeassistant/components/hassio/issues.py +9 -34
- homeassistant/components/hassio/manifest.json +1 -1
- homeassistant/components/hassio/strings.json +5 -0
- homeassistant/components/hassio/system_health.py +10 -0
- homeassistant/components/hassio/translations/bg.json +1 -0
- homeassistant/components/hassio/translations/cs.json +5 -0
- homeassistant/components/hassio/translations/de.json +10 -5
- homeassistant/components/hassio/translations/el.json +5 -0
- homeassistant/components/hassio/translations/en-GB.json +5 -0
- homeassistant/components/hassio/translations/en.json +5 -0
- homeassistant/components/hassio/translations/es.json +1 -0
- homeassistant/components/hassio/translations/et.json +5 -0
- homeassistant/components/hassio/translations/fr.json +5 -0
- homeassistant/components/hassio/translations/ga.json +239 -4
- homeassistant/components/hassio/translations/he.json +1 -0
- homeassistant/components/hassio/translations/it.json +1 -0
- homeassistant/components/hassio/translations/ko.json +1 -0
- homeassistant/components/hassio/translations/lt.json +5 -0
- homeassistant/components/hassio/translations/nl.json +4 -0
- homeassistant/components/hassio/translations/pt.json +5 -0
- homeassistant/components/hassio/translations/ru.json +4 -0
- homeassistant/components/hassio/translations/sk.json +5 -0
- homeassistant/components/hassio/translations/sv.json +1 -0
- homeassistant/components/hassio/translations/zh-Hans.json +5 -0
- homeassistant/components/hassio/translations/zh-Hant.json +7 -2
- homeassistant/components/hdmi_cec/translations/ga.json +39 -0
- homeassistant/components/heos/translations/ga.json +45 -2
- homeassistant/components/heos/translations/it.json +9 -1
- homeassistant/components/here_travel_time/translations/ga.json +47 -0
- homeassistant/components/history_stats/translations/ga.json +7 -0
- homeassistant/components/hive/translations/ga.json +98 -0
- homeassistant/components/hko/translations/fr.json +9 -0
- homeassistant/components/hko/translations/ga.json +10 -0
- homeassistant/components/hlk_sw16/translations/ga.json +13 -0
- homeassistant/components/holiday/manifest.json +1 -1
- homeassistant/components/holiday/translations/fr.json +1 -1
- homeassistant/components/holiday/translations/it.json +13 -0
- homeassistant/components/home_connect/const.py +0 -7
- homeassistant/components/home_connect/manifest.json +1 -1
- homeassistant/components/home_connect/services.py +0 -301
- homeassistant/components/home_connect/services.yaml +0 -96
- homeassistant/components/home_connect/strings.json +0 -121
- homeassistant/components/home_connect/translations/bg.json +0 -39
- homeassistant/components/home_connect/translations/ca.json +0 -49
- homeassistant/components/home_connect/translations/cs.json +0 -130
- homeassistant/components/home_connect/translations/de.json +0 -130
- homeassistant/components/home_connect/translations/el.json +0 -130
- homeassistant/components/home_connect/translations/en-GB.json +0 -130
- homeassistant/components/home_connect/translations/en.json +0 -130
- homeassistant/components/home_connect/translations/es.json +0 -130
- homeassistant/components/home_connect/translations/et.json +0 -130
- homeassistant/components/home_connect/translations/fi.json +0 -77
- homeassistant/components/home_connect/translations/fr.json +43 -44
- homeassistant/components/home_connect/translations/fy.json +0 -12
- homeassistant/components/home_connect/translations/ga.json +85 -27
- homeassistant/components/home_connect/translations/he.json +0 -57
- homeassistant/components/home_connect/translations/hu.json +0 -130
- homeassistant/components/home_connect/translations/it.json +0 -77
- homeassistant/components/home_connect/translations/ja.json +0 -122
- homeassistant/components/home_connect/translations/ko.json +0 -77
- homeassistant/components/home_connect/translations/lt.json +0 -130
- homeassistant/components/home_connect/translations/mk.json +0 -11
- homeassistant/components/home_connect/translations/nb.json +0 -77
- homeassistant/components/home_connect/translations/nl.json +0 -131
- homeassistant/components/home_connect/translations/pt-BR.json +0 -75
- homeassistant/components/home_connect/translations/pt.json +0 -130
- homeassistant/components/home_connect/translations/ru.json +0 -130
- homeassistant/components/home_connect/translations/sk.json +0 -130
- homeassistant/components/home_connect/translations/sl.json +0 -108
- homeassistant/components/home_connect/translations/sv.json +0 -130
- homeassistant/components/home_connect/translations/tr.json +0 -124
- homeassistant/components/home_connect/translations/zh-Hans.json +0 -130
- homeassistant/components/home_connect/translations/zh-Hant.json +0 -130
- homeassistant/components/homeassistant/translations/ga.json +101 -6
- homeassistant/components/homeassistant/translations/it.json +3 -0
- homeassistant/components/homeassistant_alerts/translations/ga.json +8 -0
- homeassistant/components/homeassistant_green/translations/ga.json +1 -0
- homeassistant/components/homeassistant_hardware/coordinator.py +0 -1
- homeassistant/components/homeassistant_hardware/translations/ga.json +52 -2
- homeassistant/components/homeassistant_hardware/translations/zh-Hant.json +1 -1
- homeassistant/components/homeassistant_sky_connect/translations/ga.json +42 -2
- homeassistant/components/homeassistant_sky_connect/translations/zh-Hant.json +1 -1
- homeassistant/components/homeassistant_yellow/translations/ga.json +5 -1
- homeassistant/components/homeassistant_yellow/translations/zh-Hant.json +1 -1
- homeassistant/components/homee/config_flow.py +119 -36
- homeassistant/components/homee/const.py +5 -0
- homeassistant/components/homee/manifest.json +7 -1
- homeassistant/components/homee/strings.json +11 -0
- homeassistant/components/homee/translations/bg.json +10 -0
- homeassistant/components/homee/translations/ca.json +6 -0
- homeassistant/components/homee/translations/cs.json +11 -0
- homeassistant/components/homee/translations/de.json +11 -0
- homeassistant/components/homee/translations/el.json +10 -0
- homeassistant/components/homee/translations/en-GB.json +11 -0
- homeassistant/components/homee/translations/en.json +11 -0
- homeassistant/components/homee/translations/es.json +11 -0
- homeassistant/components/homee/translations/et.json +11 -0
- homeassistant/components/homee/translations/fr.json +38 -0
- homeassistant/components/homee/translations/ga.json +38 -2
- homeassistant/components/homee/translations/he.json +6 -0
- homeassistant/components/homee/translations/it.json +7 -0
- homeassistant/components/homee/translations/ko.json +6 -0
- homeassistant/components/homee/translations/lt.json +11 -0
- homeassistant/components/homee/translations/nl.json +10 -0
- homeassistant/components/homee/translations/pt.json +11 -0
- homeassistant/components/homee/translations/ru.json +11 -0
- homeassistant/components/homee/translations/sk.json +11 -0
- homeassistant/components/homee/translations/sv.json +10 -0
- homeassistant/components/homee/translations/zh-Hans.json +11 -0
- homeassistant/components/homee/translations/zh-Hant.json +11 -0
- homeassistant/components/homekit/accessories.py +2 -2
- homeassistant/components/homekit/const.py +4 -0
- homeassistant/components/homekit/manifest.json +1 -1
- homeassistant/components/homekit/translations/ga.json +48 -0
- homeassistant/components/homekit/type_sensors.py +1 -1
- homeassistant/components/homekit/type_switches.py +107 -1
- homeassistant/components/homekit/util.py +19 -5
- homeassistant/components/homekit_controller/connection.py +14 -5
- homeassistant/components/homekit_controller/translations/ga.json +52 -1
- homeassistant/components/homekit_controller/translations/it.json +3 -1
- homeassistant/components/homekit_controller/translations/select.ga.json +9 -0
- homeassistant/components/homekit_controller/translations/sensor.ga.json +21 -0
- homeassistant/components/homematic/translations/ga.json +95 -0
- homeassistant/components/homematicip_cloud/cover.py +4 -4
- homeassistant/components/homematicip_cloud/manifest.json +1 -1
- homeassistant/components/homematicip_cloud/translations/ga.json +118 -1
- homeassistant/components/homematicip_cloud/translations/it.json +6 -1
- homeassistant/components/homewizard/manifest.json +1 -1
- homeassistant/components/homewizard/translations/ga.json +53 -2
- homeassistant/components/homewizard/translations/it.json +6 -0
- homeassistant/components/homewizard/translations/zh-Hant.json +1 -1
- homeassistant/components/homeworks/translations/ga.json +17 -3
- homeassistant/components/honeywell/translations/ga.json +16 -1
- homeassistant/components/html5/translations/ga.json +17 -0
- homeassistant/components/huawei_lte/__init__.py +1 -1
- homeassistant/components/huawei_lte/const.py +0 -2
- homeassistant/components/huawei_lte/notify.py +2 -2
- homeassistant/components/huawei_lte/translations/ga.json +44 -2
- homeassistant/components/hue/__init__.py +2 -2
- homeassistant/components/hue/translations/ga.json +100 -3
- homeassistant/components/hue/v2/device.py +6 -7
- homeassistant/components/huisbaasje/translations/ga.json +75 -0
- homeassistant/components/humidifier/translations/ga.json +48 -2
- homeassistant/components/hunterdouglas_powerview/translations/ga.json +14 -2
- homeassistant/components/husqvarna_automower/__init__.py +1 -0
- homeassistant/components/husqvarna_automower/button.py +25 -0
- homeassistant/components/husqvarna_automower/const.py +125 -0
- homeassistant/components/husqvarna_automower/coordinator.py +61 -2
- homeassistant/components/husqvarna_automower/event.py +126 -0
- homeassistant/components/husqvarna_automower/icons.json +8 -0
- homeassistant/components/husqvarna_automower/manifest.json +1 -1
- homeassistant/components/husqvarna_automower/sensor.py +1 -127
- homeassistant/components/husqvarna_automower/strings.json +155 -0
- homeassistant/components/husqvarna_automower/translations/ca.json +61 -0
- homeassistant/components/husqvarna_automower/translations/cs.json +155 -0
- homeassistant/components/husqvarna_automower/translations/de.json +155 -0
- homeassistant/components/husqvarna_automower/translations/el.json +147 -0
- homeassistant/components/husqvarna_automower/translations/en-GB.json +155 -0
- homeassistant/components/husqvarna_automower/translations/en.json +155 -0
- homeassistant/components/husqvarna_automower/translations/es.json +3 -0
- homeassistant/components/husqvarna_automower/translations/et.json +155 -0
- homeassistant/components/husqvarna_automower/translations/fr.json +33 -0
- homeassistant/components/husqvarna_automower/translations/ga.json +174 -2
- homeassistant/components/husqvarna_automower/translations/he.json +25 -0
- homeassistant/components/husqvarna_automower/translations/it.json +32 -0
- homeassistant/components/husqvarna_automower/translations/lt.json +155 -0
- homeassistant/components/husqvarna_automower/translations/nl.json +145 -0
- homeassistant/components/husqvarna_automower/translations/pt.json +155 -0
- homeassistant/components/husqvarna_automower/translations/ru.json +85 -0
- homeassistant/components/husqvarna_automower/translations/sk.json +155 -0
- homeassistant/components/husqvarna_automower/translations/sv.json +152 -0
- homeassistant/components/husqvarna_automower/translations/zh-Hans.json +155 -0
- homeassistant/components/husqvarna_automower/translations/zh-Hant.json +155 -0
- homeassistant/components/husqvarna_automower_ble/__init__.py +23 -6
- homeassistant/components/husqvarna_automower_ble/config_flow.py +231 -41
- homeassistant/components/husqvarna_automower_ble/coordinator.py +2 -1
- homeassistant/components/husqvarna_automower_ble/entity.py +7 -1
- homeassistant/components/husqvarna_automower_ble/lawn_mower.py +8 -4
- homeassistant/components/husqvarna_automower_ble/manifest.json +1 -1
- homeassistant/components/husqvarna_automower_ble/strings.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/cs.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/de.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/el.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/en-GB.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/en.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/es.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/et.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/ga.json +4 -4
- homeassistant/components/husqvarna_automower_ble/translations/hu.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/it.json +30 -3
- homeassistant/components/husqvarna_automower_ble/translations/ja.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/lt.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/nl.json +4 -3
- homeassistant/components/husqvarna_automower_ble/translations/pt.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/ru.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/sk.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/sv.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/tr.json +0 -3
- homeassistant/components/husqvarna_automower_ble/translations/zh-Hans.json +34 -3
- homeassistant/components/husqvarna_automower_ble/translations/zh-Hant.json +34 -3
- homeassistant/components/huum/const.py +1 -1
- homeassistant/components/huum/icons.json +13 -0
- homeassistant/components/huum/manifest.json +1 -1
- homeassistant/components/huum/number.py +64 -0
- homeassistant/components/huum/strings.json +5 -0
- homeassistant/components/huum/translations/ca.json +5 -0
- homeassistant/components/huum/translations/cs.json +5 -0
- homeassistant/components/huum/translations/de.json +5 -0
- homeassistant/components/huum/translations/el.json +5 -0
- homeassistant/components/huum/translations/en-GB.json +5 -0
- homeassistant/components/huum/translations/en.json +5 -0
- homeassistant/components/huum/translations/et.json +5 -0
- homeassistant/components/huum/translations/fr.json +7 -0
- homeassistant/components/huum/translations/ga.json +19 -0
- homeassistant/components/huum/translations/he.json +5 -0
- homeassistant/components/huum/translations/it.json +7 -0
- homeassistant/components/huum/translations/lt.json +5 -0
- homeassistant/components/huum/translations/nl.json +5 -0
- homeassistant/components/huum/translations/pt.json +5 -0
- homeassistant/components/huum/translations/sk.json +5 -0
- homeassistant/components/huum/translations/zh-Hans.json +5 -0
- homeassistant/components/huum/translations/zh-Hant.json +5 -0
- homeassistant/components/hvv_departures/translations/ga.json +54 -0
- homeassistant/components/hydrawise/strings.json +2 -2
- homeassistant/components/hydrawise/translations/el.json +6 -2
- homeassistant/components/hydrawise/translations/ga.json +21 -1
- homeassistant/components/hydrawise/translations/pt.json +5 -1
- homeassistant/components/hydrawise/translations/ru.json +5 -1
- homeassistant/components/hyperion/translations/ga.json +5 -0
- homeassistant/components/ialarm/translations/fr.json +3 -0
- homeassistant/components/ialarm/translations/ga.json +3 -0
- homeassistant/components/iaqualink/manifest.json +1 -1
- homeassistant/components/iaqualink/translations/ga.json +18 -0
- homeassistant/components/ibeacon/translations/ga.json +25 -1
- homeassistant/components/icloud/services.py +11 -14
- homeassistant/components/icloud/translations/ga.json +53 -0
- homeassistant/components/idasen_desk/__init__.py +0 -8
- homeassistant/components/idasen_desk/translations/ga.json +12 -1
- homeassistant/components/ifttt/translations/ga.json +54 -0
- homeassistant/components/ifttt/translations/it.json +5 -1
- homeassistant/components/igloohome/translations/ga.json +8 -0
- homeassistant/components/ihc/translations/ga.json +72 -0
- homeassistant/components/image/translations/ga.json +7 -1
- homeassistant/components/image_processing/translations/ga.json +22 -0
- homeassistant/components/imap/translations/ga.json +33 -2
- homeassistant/components/imeon_inverter/const.py +23 -0
- homeassistant/components/imeon_inverter/coordinator.py +7 -9
- homeassistant/components/imeon_inverter/icons.json +46 -3
- homeassistant/components/imeon_inverter/sensor.py +86 -10
- homeassistant/components/imeon_inverter/strings.json +65 -7
- homeassistant/components/imeon_inverter/translations/bg.json +6 -0
- homeassistant/components/imeon_inverter/translations/ca.json +10 -0
- homeassistant/components/imeon_inverter/translations/cs.json +65 -7
- homeassistant/components/imeon_inverter/translations/de.json +65 -7
- homeassistant/components/imeon_inverter/translations/el.json +11 -15
- homeassistant/components/imeon_inverter/translations/en-GB.json +58 -21
- homeassistant/components/imeon_inverter/translations/en.json +65 -7
- homeassistant/components/imeon_inverter/translations/es.json +0 -21
- homeassistant/components/imeon_inverter/translations/et.json +65 -7
- homeassistant/components/imeon_inverter/translations/fi.json +25 -0
- homeassistant/components/imeon_inverter/translations/fr.json +61 -0
- homeassistant/components/imeon_inverter/translations/ga.json +60 -16
- homeassistant/components/imeon_inverter/translations/he.json +10 -0
- homeassistant/components/imeon_inverter/translations/hu.json +0 -21
- homeassistant/components/imeon_inverter/translations/lt.json +0 -21
- homeassistant/components/imeon_inverter/translations/nl.json +7 -0
- homeassistant/components/imeon_inverter/translations/pt.json +0 -21
- homeassistant/components/imeon_inverter/translations/ru.json +8 -21
- homeassistant/components/imeon_inverter/translations/sk.json +65 -7
- homeassistant/components/imeon_inverter/translations/sv.json +0 -21
- homeassistant/components/imeon_inverter/translations/zh-Hans.json +65 -7
- homeassistant/components/imeon_inverter/translations/zh-Hant.json +65 -7
- homeassistant/components/imgw_pib/manifest.json +1 -1
- homeassistant/components/imgw_pib/translations/ga.json +8 -0
- homeassistant/components/immich/translations/ga.json +13 -1
- homeassistant/components/improv_ble/translations/ga.json +26 -0
- homeassistant/components/incomfort/translations/ga.json +16 -0
- homeassistant/components/inkbird/manifest.json +10 -1
- homeassistant/components/inkbird/translations/ga.json +7 -0
- homeassistant/components/input_boolean/translations/ga.json +8 -4
- homeassistant/components/input_button/translations/ga.json +2 -1
- homeassistant/components/input_datetime/translations/ga.json +2 -1
- homeassistant/components/input_number/translations/ga.json +34 -2
- homeassistant/components/input_select/translations/ga.json +65 -1
- homeassistant/components/input_text/translations/ga.json +24 -2
- homeassistant/components/insteon/translations/ga.json +173 -0
- homeassistant/components/integration/translations/ga.json +14 -3
- homeassistant/components/intellifire/translations/ga.json +48 -0
- homeassistant/components/intent_script/translations/ga.json +8 -0
- homeassistant/components/iometer/translations/ga.json +11 -0
- homeassistant/components/iotty/translations/ga.json +15 -1
- homeassistant/components/iperf3/translations/ga.json +13 -0
- homeassistant/components/ipma/translations/fr.json +13 -0
- homeassistant/components/ipma/translations/ga.json +29 -0
- homeassistant/components/ipp/translations/ga.json +40 -0
- homeassistant/components/iqvia/translations/ga.json +10 -0
- homeassistant/components/iqvia/translations/it.json +3 -0
- homeassistant/components/iron_os/translations/ga.json +26 -3
- homeassistant/components/iron_os/translations/nl.json +1 -1
- homeassistant/components/iskra/translations/ga.json +17 -1
- homeassistant/components/iskra/translations/nl.json +3 -3
- homeassistant/components/islamic_prayer_times/translations/fr.json +5 -0
- homeassistant/components/islamic_prayer_times/translations/ga.json +8 -0
- homeassistant/components/israel_rail/translations/ga.json +6 -0
- homeassistant/components/ista_ecotrend/translations/ga.json +21 -1
- homeassistant/components/isy994/translations/ga.json +141 -0
- homeassistant/components/ituran/translations/ga.json +10 -2
- homeassistant/components/izone/translations/ga.json +29 -0
- homeassistant/components/jellyfin/translations/ga.json +8 -1
- homeassistant/components/jewish_calendar/__init__.py +14 -4
- homeassistant/components/jewish_calendar/binary_sensor.py +1 -2
- homeassistant/components/jewish_calendar/coordinator.py +116 -0
- homeassistant/components/jewish_calendar/diagnostics.py +1 -1
- homeassistant/components/jewish_calendar/entity.py +7 -57
- homeassistant/components/jewish_calendar/sensor.py +15 -21
- homeassistant/components/jewish_calendar/translations/ga.json +5 -0
- homeassistant/components/justnimbus/entity.py +1 -0
- homeassistant/components/justnimbus/translations/ga.json +3 -0
- homeassistant/components/jvc_projector/translations/ga.json +40 -0
- homeassistant/components/kaleidescape/translations/ga.json +50 -0
- homeassistant/components/keba/translations/ga.json +56 -1
- homeassistant/components/keenetic_ndms2/translations/ga.json +1 -0
- homeassistant/components/kef/translations/ga.json +31 -0
- homeassistant/components/kegtron/translations/ga.json +22 -0
- homeassistant/components/keyboard/translations/ga.json +8 -0
- homeassistant/components/keymitt_ble/translations/ga.json +58 -0
- homeassistant/components/kitchen_sink/config_flow.py +1 -1
- homeassistant/components/kitchen_sink/translations/ga.json +36 -0
- homeassistant/components/kitchen_sink/translations/zh-Hant.json +3 -3
- homeassistant/components/knocki/translations/ga.json +18 -0
- homeassistant/components/knx/manifest.json +2 -2
- homeassistant/components/knx/scene.py +9 -4
- homeassistant/components/knx/storage/entity_store_schema.py +154 -144
- homeassistant/components/knx/storage/knx_selector.py +170 -7
- homeassistant/components/knx/storage/serialize.py +47 -0
- homeassistant/components/knx/storage/util.py +18 -0
- homeassistant/components/knx/strings.json +270 -0
- homeassistant/components/knx/translations/bg.json +77 -0
- homeassistant/components/knx/translations/cs.json +270 -0
- homeassistant/components/knx/translations/de.json +270 -0
- homeassistant/components/knx/translations/el.json +162 -0
- homeassistant/components/knx/translations/en-GB.json +270 -0
- homeassistant/components/knx/translations/en.json +270 -0
- homeassistant/components/knx/translations/es.json +167 -0
- homeassistant/components/knx/translations/et.json +270 -0
- homeassistant/components/knx/translations/fr.json +168 -1
- homeassistant/components/knx/translations/ga.json +253 -6
- homeassistant/components/knx/translations/he.json +13 -0
- homeassistant/components/knx/translations/nl.json +64 -0
- homeassistant/components/knx/translations/sk.json +270 -0
- homeassistant/components/knx/translations/zh-Hans.json +270 -0
- homeassistant/components/knx/translations/zh-Hant.json +270 -0
- homeassistant/components/knx/websocket.py +38 -13
- homeassistant/components/kodi/translations/ga.json +43 -1
- homeassistant/components/konnected/translations/ga.json +52 -0
- homeassistant/components/konnected/translations/it.json +26 -8
- homeassistant/components/kostal_plenticore/translations/ga.json +2 -0
- homeassistant/components/kraken/translations/ga.json +30 -0
- homeassistant/components/kulersky/translations/ga.json +20 -0
- homeassistant/components/lacrosse_view/coordinator.py +0 -1
- homeassistant/components/lacrosse_view/translations/ga.json +19 -0
- homeassistant/components/lamarzocco/translations/ga.json +19 -0
- homeassistant/components/lametric/translations/ga.json +201 -2
- homeassistant/components/lametric/translations/select.ga.json +8 -0
- homeassistant/components/landisgyr_heat_meter/translations/ga.json +7 -0
- homeassistant/components/launch_library/translations/pt.json +7 -0
- homeassistant/components/lawn_mower/translations/ga.json +15 -1
- homeassistant/components/lcn/manifest.json +1 -1
- homeassistant/components/lcn/translations/ga.json +200 -25
- homeassistant/components/ld2410_ble/translations/ga.json +29 -0
- homeassistant/components/leaone/translations/ga.json +14 -1
- homeassistant/components/led_ble/translations/ga.json +7 -0
- homeassistant/components/lektrico/translations/ga.json +15 -0
- homeassistant/components/letpot/__init__.py +1 -0
- homeassistant/components/letpot/icons.json +17 -0
- homeassistant/components/letpot/manifest.json +1 -1
- homeassistant/components/letpot/select.py +163 -0
- homeassistant/components/letpot/strings.json +23 -0
- homeassistant/components/letpot/translations/ca.json +10 -0
- homeassistant/components/letpot/translations/cs.json +23 -0
- homeassistant/components/letpot/translations/de.json +23 -0
- homeassistant/components/letpot/translations/el.json +8 -0
- homeassistant/components/letpot/translations/en-GB.json +23 -0
- homeassistant/components/letpot/translations/en.json +23 -0
- homeassistant/components/letpot/translations/es.json +23 -0
- homeassistant/components/letpot/translations/et.json +23 -0
- homeassistant/components/letpot/translations/fr.json +29 -0
- homeassistant/components/letpot/translations/ga.json +39 -0
- homeassistant/components/letpot/translations/he.json +8 -0
- homeassistant/components/letpot/translations/it.json +25 -0
- homeassistant/components/letpot/translations/lt.json +23 -0
- homeassistant/components/letpot/translations/nl.json +21 -0
- homeassistant/components/letpot/translations/pt.json +23 -0
- homeassistant/components/letpot/translations/sk.json +23 -0
- homeassistant/components/letpot/translations/sv.json +19 -0
- homeassistant/components/letpot/translations/zh-Hans.json +23 -0
- homeassistant/components/letpot/translations/zh-Hant.json +23 -0
- homeassistant/components/lg_netcast/translations/ga.json +16 -0
- homeassistant/components/lg_thinq/climate.py +17 -3
- homeassistant/components/lg_thinq/coordinator.py +1 -1
- homeassistant/components/lg_thinq/icons.json +4 -1
- homeassistant/components/lg_thinq/strings.json +6 -3
- homeassistant/components/lg_thinq/switch.py +46 -1
- homeassistant/components/lg_thinq/translations/ca.json +1 -1
- homeassistant/components/lg_thinq/translations/cs.json +4 -1
- homeassistant/components/lg_thinq/translations/de.json +4 -1
- homeassistant/components/lg_thinq/translations/el.json +2 -1
- homeassistant/components/lg_thinq/translations/en-GB.json +4 -1
- homeassistant/components/lg_thinq/translations/en.json +4 -1
- homeassistant/components/lg_thinq/translations/es.json +4 -1
- homeassistant/components/lg_thinq/translations/et.json +4 -1
- homeassistant/components/lg_thinq/translations/fr.json +21 -0
- homeassistant/components/lg_thinq/translations/fy.json +1 -2
- homeassistant/components/lg_thinq/translations/ga.json +52 -5
- homeassistant/components/lg_thinq/translations/he.json +1 -1
- homeassistant/components/lg_thinq/translations/hu.json +0 -1
- homeassistant/components/lg_thinq/translations/id.json +1 -2
- homeassistant/components/lg_thinq/translations/it.json +1 -2
- homeassistant/components/lg_thinq/translations/lt.json +0 -1
- homeassistant/components/lg_thinq/translations/nl.json +4 -1
- homeassistant/components/lg_thinq/translations/pl.json +0 -1
- homeassistant/components/lg_thinq/translations/pt.json +2 -1
- homeassistant/components/lg_thinq/translations/ru.json +5 -1
- homeassistant/components/lg_thinq/translations/sk.json +4 -1
- homeassistant/components/lg_thinq/translations/sv.json +0 -1
- homeassistant/components/lg_thinq/translations/zh-Hans.json +4 -1
- homeassistant/components/lg_thinq/translations/zh-Hant.json +4 -1
- homeassistant/components/lifx/translations/el.json +6 -0
- homeassistant/components/lifx/translations/ga.json +227 -1
- homeassistant/components/lifx/translations/it.json +3 -0
- homeassistant/components/light/translations/ga.json +170 -1
- homeassistant/components/light/translations/it.json +1 -0
- homeassistant/components/linkplay/translations/ga.json +11 -0
- homeassistant/components/litejet/translations/ga.json +26 -0
- homeassistant/components/litterrobot/translations/ga.json +65 -1
- homeassistant/components/litterrobot/translations/sensor.ga.json +18 -0
- homeassistant/components/livisi/coordinator.py +0 -1
- homeassistant/components/local_calendar/translations/ga.json +3 -0
- homeassistant/components/local_file/translations/ga.json +20 -1
- homeassistant/components/local_todo/translations/ga.json +3 -0
- homeassistant/components/locative/translations/ga.json +10 -0
- homeassistant/components/lock/translations/ga.json +55 -3
- homeassistant/components/logbook/translations/ga.json +24 -0
- homeassistant/components/logger/translations/ga.json +12 -0
- homeassistant/components/lookin/climate.py +1 -1
- homeassistant/components/lookin/translations/ga.json +30 -0
- homeassistant/components/loqed/translations/ga.json +28 -0
- homeassistant/components/lovelace/translations/ga.json +8 -0
- homeassistant/components/luftdaten/translations/ga.json +17 -1
- homeassistant/components/lupusec/translations/ga.json +12 -0
- homeassistant/components/lutron/translations/ga.json +9 -0
- homeassistant/components/lutron_caseta/translations/ga.json +36 -0
- homeassistant/components/lutron_caseta/translations/it.json +3 -0
- homeassistant/components/lyric/manifest.json +1 -1
- homeassistant/components/lyric/translations/ga.json +21 -2
- homeassistant/components/madvr/manifest.json +1 -1
- homeassistant/components/madvr/translations/ga.json +10 -0
- homeassistant/components/mailgun/translations/it.json +5 -1
- homeassistant/components/manual/translations/fr.json +7 -0
- homeassistant/components/mastodon/__init__.py +4 -17
- homeassistant/components/mastodon/const.py +0 -1
- homeassistant/components/mastodon/manifest.json +2 -1
- homeassistant/components/mastodon/quality_scale.yaml +4 -17
- homeassistant/components/mastodon/services.py +1 -1
- homeassistant/components/mastodon/strings.json +0 -6
- homeassistant/components/mastodon/translations/cs.json +0 -6
- homeassistant/components/mastodon/translations/de.json +0 -6
- homeassistant/components/mastodon/translations/el.json +0 -6
- homeassistant/components/mastodon/translations/en-GB.json +0 -6
- homeassistant/components/mastodon/translations/en.json +0 -6
- homeassistant/components/mastodon/translations/es.json +0 -6
- homeassistant/components/mastodon/translations/et.json +0 -6
- homeassistant/components/mastodon/translations/fr.json +0 -6
- homeassistant/components/mastodon/translations/ga.json +5 -6
- homeassistant/components/mastodon/translations/he.json +0 -6
- homeassistant/components/mastodon/translations/hu.json +0 -6
- homeassistant/components/mastodon/translations/ja.json +0 -6
- homeassistant/components/mastodon/translations/lt.json +0 -6
- homeassistant/components/mastodon/translations/nl.json +0 -6
- homeassistant/components/mastodon/translations/pt-BR.json +0 -6
- homeassistant/components/mastodon/translations/pt.json +0 -6
- homeassistant/components/mastodon/translations/ru.json +0 -6
- homeassistant/components/mastodon/translations/sk.json +0 -6
- homeassistant/components/mastodon/translations/sv.json +0 -6
- homeassistant/components/mastodon/translations/tr.json +0 -6
- homeassistant/components/mastodon/translations/zh-Hans.json +0 -6
- homeassistant/components/mastodon/translations/zh-Hant.json +0 -6
- homeassistant/components/matter/binary_sensor.py +69 -1
- homeassistant/components/matter/button.py +12 -0
- homeassistant/components/matter/icons.json +15 -0
- homeassistant/components/matter/lock.py +63 -0
- homeassistant/components/matter/manifest.json +1 -1
- homeassistant/components/matter/number.py +17 -0
- homeassistant/components/matter/select.py +25 -0
- homeassistant/components/matter/sensor.py +140 -0
- homeassistant/components/matter/strings.json +46 -1
- homeassistant/components/matter/translations/bg.json +11 -0
- homeassistant/components/matter/translations/cs.json +48 -3
- homeassistant/components/matter/translations/de.json +49 -4
- homeassistant/components/matter/translations/el.json +30 -3
- homeassistant/components/matter/translations/en-GB.json +48 -3
- homeassistant/components/matter/translations/en.json +48 -3
- homeassistant/components/matter/translations/es.json +15 -3
- homeassistant/components/matter/translations/et.json +48 -3
- homeassistant/components/matter/translations/fr.json +48 -0
- homeassistant/components/matter/translations/ga.json +113 -5
- homeassistant/components/matter/translations/he.json +0 -3
- homeassistant/components/matter/translations/hu.json +0 -3
- homeassistant/components/matter/translations/it.json +0 -3
- homeassistant/components/matter/translations/ja.json +0 -3
- homeassistant/components/matter/translations/lt.json +3 -3
- homeassistant/components/matter/translations/nl.json +17 -3
- homeassistant/components/matter/translations/pt.json +21 -3
- homeassistant/components/matter/translations/ru.json +24 -3
- homeassistant/components/matter/translations/sk.json +48 -3
- homeassistant/components/matter/translations/sv.json +29 -3
- homeassistant/components/matter/translations/zh-Hans.json +48 -3
- homeassistant/components/matter/translations/zh-Hant.json +48 -3
- homeassistant/components/matter/valve.py +6 -4
- homeassistant/components/mcp/translations/ga.json +18 -2
- homeassistant/components/mcp_server/translations/ga.json +3 -0
- homeassistant/components/mealie/const.py +0 -1
- homeassistant/components/mealie/services.py +1 -2
- homeassistant/components/mealie/translations/fr.json +4 -2
- homeassistant/components/mealie/translations/ga.json +19 -1
- homeassistant/components/meater/translations/ga.json +42 -0
- homeassistant/components/medcom_ble/translations/ga.json +19 -1
- homeassistant/components/media_extractor/manifest.json +1 -1
- homeassistant/components/media_extractor/translations/ga.json +7 -0
- homeassistant/components/media_player/__init__.py +21 -0
- homeassistant/components/media_player/intent.py +126 -6
- homeassistant/components/media_player/services.yaml +5 -9
- homeassistant/components/media_player/strings.json +4 -8
- homeassistant/components/media_player/translations/bg.json +0 -8
- homeassistant/components/media_player/translations/cs.json +0 -9
- homeassistant/components/media_player/translations/de.json +6 -10
- homeassistant/components/media_player/translations/el.json +0 -9
- homeassistant/components/media_player/translations/en-GB.json +5 -9
- homeassistant/components/media_player/translations/en.json +5 -9
- homeassistant/components/media_player/translations/es.json +0 -9
- homeassistant/components/media_player/translations/et.json +3 -7
- homeassistant/components/media_player/translations/fi.json +0 -7
- homeassistant/components/media_player/translations/fr.json +0 -9
- homeassistant/components/media_player/translations/fy.json +0 -9
- homeassistant/components/media_player/translations/ga.json +226 -2
- homeassistant/components/media_player/translations/he.json +0 -9
- homeassistant/components/media_player/translations/hu.json +0 -9
- homeassistant/components/media_player/translations/id.json +0 -9
- homeassistant/components/media_player/translations/it.json +3 -6
- homeassistant/components/media_player/translations/ja.json +0 -9
- homeassistant/components/media_player/translations/ko.json +0 -10
- homeassistant/components/media_player/translations/lt.json +0 -9
- homeassistant/components/media_player/translations/nl.json +0 -8
- homeassistant/components/media_player/translations/pt-BR.json +0 -8
- homeassistant/components/media_player/translations/pt.json +0 -9
- homeassistant/components/media_player/translations/ru.json +0 -9
- homeassistant/components/media_player/translations/sk.json +3 -8
- homeassistant/components/media_player/translations/sl.json +0 -9
- homeassistant/components/media_player/translations/sv.json +0 -9
- homeassistant/components/media_player/translations/tr.json +0 -9
- homeassistant/components/media_player/translations/vi.json +0 -7
- homeassistant/components/media_player/translations/zh-Hans.json +3 -8
- homeassistant/components/media_player/translations/zh-Hant.json +3 -8
- homeassistant/components/melcloud/translations/ga.json +48 -1
- homeassistant/components/melcloud/translations/it.json +1 -0
- homeassistant/components/melnor/translations/ga.json +48 -0
- homeassistant/components/met_eireann/const.py +6 -0
- homeassistant/components/met_eireann/translations/ga.json +7 -0
- homeassistant/components/met_eireann/weather.py +10 -0
- homeassistant/components/meteoclimatic/translations/ga.json +11 -0
- homeassistant/components/metoffice/translations/ga.json +20 -0
- homeassistant/components/microbees/translations/ga.json +20 -1
- homeassistant/components/microsoft_face/translations/ga.json +80 -0
- homeassistant/components/miele/__init__.py +3 -1
- homeassistant/components/miele/const.py +8 -0
- homeassistant/components/miele/coordinator.py +2 -3
- homeassistant/components/miele/entity.py +2 -3
- homeassistant/components/miele/sensor.py +107 -4
- homeassistant/components/miele/strings.json +12 -0
- homeassistant/components/miele/translations/bg.json +12 -0
- homeassistant/components/miele/translations/cs.json +12 -0
- homeassistant/components/miele/translations/de.json +12 -0
- homeassistant/components/miele/translations/el.json +28 -0
- homeassistant/components/miele/translations/en-GB.json +12 -0
- homeassistant/components/miele/translations/en.json +12 -0
- homeassistant/components/miele/translations/et.json +12 -0
- homeassistant/components/miele/translations/fr.json +31 -1
- homeassistant/components/miele/translations/ga.json +59 -4
- homeassistant/components/miele/translations/it.json +18 -5
- homeassistant/components/miele/translations/nl.json +12 -0
- homeassistant/components/miele/translations/pt.json +1 -0
- homeassistant/components/miele/translations/sk.json +12 -0
- homeassistant/components/miele/translations/zh-Hans.json +12 -0
- homeassistant/components/miele/translations/zh-Hant.json +12 -0
- homeassistant/components/mikrotik/translations/ga.json +11 -0
- homeassistant/components/mill/translations/ga.json +5 -0
- homeassistant/components/min_max/translations/ga.json +53 -0
- homeassistant/components/minecraft_server/translations/ga.json +20 -1
- homeassistant/components/minio/translations/ga.json +24 -0
- homeassistant/components/mjpeg/translations/ga.json +18 -0
- homeassistant/components/moat/translations/ga.json +21 -0
- homeassistant/components/mobile_app/const.py +0 -1
- homeassistant/components/mobile_app/translations/ga.json +15 -1
- homeassistant/components/modbus/binary_sensor.py +1 -3
- homeassistant/components/modbus/climate.py +6 -6
- homeassistant/components/modbus/const.py +4 -0
- homeassistant/components/modbus/cover.py +0 -2
- homeassistant/components/modbus/entity.py +51 -39
- homeassistant/components/modbus/light.py +0 -2
- homeassistant/components/modbus/manifest.json +1 -1
- homeassistant/components/modbus/modbus.py +39 -44
- homeassistant/components/modbus/sensor.py +1 -7
- homeassistant/components/modbus/strings.json +0 -8
- homeassistant/components/modbus/translations/bg.json +0 -3
- homeassistant/components/modbus/translations/ca.json +0 -6
- homeassistant/components/modbus/translations/cs.json +0 -8
- homeassistant/components/modbus/translations/de.json +0 -8
- homeassistant/components/modbus/translations/el.json +0 -8
- homeassistant/components/modbus/translations/en-GB.json +0 -8
- homeassistant/components/modbus/translations/en.json +0 -8
- homeassistant/components/modbus/translations/es.json +0 -8
- homeassistant/components/modbus/translations/et.json +0 -8
- homeassistant/components/modbus/translations/fi.json +0 -6
- homeassistant/components/modbus/translations/fr.json +0 -8
- homeassistant/components/modbus/translations/ga.json +69 -7
- homeassistant/components/modbus/translations/he.json +0 -8
- homeassistant/components/modbus/translations/hu.json +0 -8
- homeassistant/components/modbus/translations/id.json +0 -7
- homeassistant/components/modbus/translations/ja.json +0 -8
- homeassistant/components/modbus/translations/ko.json +0 -5
- homeassistant/components/modbus/translations/lt.json +0 -8
- homeassistant/components/modbus/translations/nl.json +0 -8
- homeassistant/components/modbus/translations/pt.json +0 -8
- homeassistant/components/modbus/translations/ru.json +0 -8
- homeassistant/components/modbus/translations/sk.json +0 -8
- homeassistant/components/modbus/translations/sv.json +0 -8
- homeassistant/components/modbus/translations/tr.json +0 -8
- homeassistant/components/modbus/translations/zh-Hans.json +0 -8
- homeassistant/components/modbus/translations/zh-Hant.json +0 -8
- homeassistant/components/modem_callerid/translations/ga.json +14 -0
- homeassistant/components/modern_forms/entity.py +4 -1
- homeassistant/components/modern_forms/translations/ga.json +10 -0
- homeassistant/components/modern_forms/translations/it.json +3 -0
- homeassistant/components/moehlenhoff_alpha2/translations/ga.json +5 -1
- homeassistant/components/moehlenhoff_alpha2/translations/it.json +3 -0
- homeassistant/components/mold_indicator/translations/ga.json +7 -0
- homeassistant/components/monarch_money/translations/ga.json +7 -1
- homeassistant/components/monoprice/translations/ga.json +50 -0
- homeassistant/components/monzo/translations/ga.json +15 -2
- homeassistant/components/moon/translations/ga.json +26 -1
- homeassistant/components/motion_blinds/cover.py +14 -0
- homeassistant/components/motion_blinds/entity.py +17 -4
- homeassistant/components/motion_blinds/translations/ga.json +42 -0
- homeassistant/components/motionblinds_ble/translations/ga.json +8 -0
- homeassistant/components/motioneye/translations/ga.json +48 -0
- homeassistant/components/motionmount/translations/ga.json +13 -1
- homeassistant/components/mpd/translations/ga.json +12 -0
- homeassistant/components/mqtt/alarm_control_panel.py +43 -47
- homeassistant/components/mqtt/config_flow.py +290 -4
- homeassistant/components/mqtt/const.py +49 -1
- homeassistant/components/mqtt/icons.json +1 -1
- homeassistant/components/mqtt/lock.py +19 -24
- homeassistant/components/mqtt/number.py +7 -0
- homeassistant/components/mqtt/sensor.py +9 -3
- homeassistant/components/mqtt/strings.json +82 -2
- homeassistant/components/mqtt/translations/bg.json +4 -7
- homeassistant/components/mqtt/translations/ca.json +1 -0
- homeassistant/components/mqtt/translations/cs.json +30 -2
- homeassistant/components/mqtt/translations/de.json +82 -2
- homeassistant/components/mqtt/translations/el.json +10 -19
- homeassistant/components/mqtt/translations/en-GB.json +82 -2
- homeassistant/components/mqtt/translations/en.json +82 -2
- homeassistant/components/mqtt/translations/es.json +30 -2
- homeassistant/components/mqtt/translations/et.json +82 -2
- homeassistant/components/mqtt/translations/fr.json +85 -5
- homeassistant/components/mqtt/translations/ga.json +188 -10
- homeassistant/components/mqtt/translations/he.json +2 -3
- homeassistant/components/mqtt/translations/hu.json +0 -18
- homeassistant/components/mqtt/translations/it.json +60 -4
- homeassistant/components/mqtt/translations/ja.json +0 -17
- homeassistant/components/mqtt/translations/lt.json +3 -4
- homeassistant/components/mqtt/translations/mk.json +0 -11
- homeassistant/components/mqtt/translations/nl.json +18 -7
- homeassistant/components/mqtt/translations/pl.json +11 -0
- homeassistant/components/mqtt/translations/pt.json +3 -4
- homeassistant/components/mqtt/translations/ru.json +3 -3
- homeassistant/components/mqtt/translations/sk.json +76 -2
- homeassistant/components/mqtt/translations/sv.json +2 -7
- homeassistant/components/mqtt/translations/tr.json +0 -1
- homeassistant/components/mqtt/translations/vi.json +0 -1
- homeassistant/components/mqtt/translations/zh-Hans.json +83 -4
- homeassistant/components/mqtt/translations/zh-Hant.json +84 -4
- homeassistant/components/mqtt/triggers.yaml +1 -1
- homeassistant/components/mullvad/translations/ga.json +11 -0
- homeassistant/components/music_assistant/actions.py +1 -1
- homeassistant/components/music_assistant/const.py +0 -1
- homeassistant/components/music_assistant/translations/ga.json +6 -1
- homeassistant/components/mutesync/translations/it.json +3 -0
- homeassistant/components/mysensors/translations/ga.json +55 -0
- homeassistant/components/mystrom/manifest.json +1 -1
- homeassistant/components/mystrom/translations/ga.json +9 -0
- homeassistant/components/mystrom/translations/it.json +3 -0
- homeassistant/components/myuplink/translations/fr.json +7 -0
- homeassistant/components/myuplink/translations/ga.json +17 -3
- homeassistant/components/nam/translations/ga.json +83 -0
- homeassistant/components/nam/translations/it.json +6 -0
- homeassistant/components/nam/translations/sensor.ga.json +11 -0
- homeassistant/components/nanoleaf/config_flow.py +9 -2
- homeassistant/components/nanoleaf/translations/ga.json +37 -0
- homeassistant/components/nanoleaf/translations/zh-Hant.json +1 -1
- homeassistant/components/nasweb/translations/ga.json +13 -1
- homeassistant/components/nasweb/translations/nl.json +2 -0
- homeassistant/components/neato/translations/ga.json +15 -0
- homeassistant/components/ness_alarm/translations/fr.json +22 -0
- homeassistant/components/ness_alarm/translations/ga.json +28 -0
- homeassistant/components/nest/translations/el.json +1 -1
- homeassistant/components/nest/translations/ga.json +6 -0
- homeassistant/components/netatmo/manifest.json +1 -1
- homeassistant/components/netatmo/translations/fr.json +20 -1
- homeassistant/components/netatmo/translations/ga.json +86 -0
- homeassistant/components/netgear/translations/ga.json +34 -0
- homeassistant/components/netgear/translations/it.json +3 -0
- homeassistant/components/netgear_lte/translations/ga.json +72 -0
- homeassistant/components/network/translations/el.json +1 -1
- homeassistant/components/nexia/translations/ga.json +56 -0
- homeassistant/components/nextbus/translations/ga.json +3 -0
- homeassistant/components/nextcloud/translations/ga.json +136 -0
- homeassistant/components/nextdns/manifest.json +1 -1
- homeassistant/components/nextdns/strings.json +3 -0
- homeassistant/components/nextdns/switch.py +6 -0
- homeassistant/components/nextdns/translations/cs.json +3 -0
- homeassistant/components/nextdns/translations/de.json +3 -0
- homeassistant/components/nextdns/translations/el.json +3 -0
- homeassistant/components/nextdns/translations/en-GB.json +3 -0
- homeassistant/components/nextdns/translations/en.json +3 -0
- homeassistant/components/nextdns/translations/et.json +3 -0
- homeassistant/components/nextdns/translations/fr.json +3 -0
- homeassistant/components/nextdns/translations/ga.json +118 -0
- homeassistant/components/nextdns/translations/pl.json +3 -0
- homeassistant/components/nextdns/translations/pt.json +3 -0
- homeassistant/components/nextdns/translations/sk.json +3 -0
- homeassistant/components/nextdns/translations/sv.json +3 -0
- homeassistant/components/nextdns/translations/zh-Hans.json +3 -0
- homeassistant/components/nextdns/translations/zh-Hant.json +3 -0
- homeassistant/components/nfandroidtv/translations/fr.json +11 -0
- homeassistant/components/nfandroidtv/translations/ga.json +9 -0
- homeassistant/components/nice_go/translations/ga.json +23 -1
- homeassistant/components/niko_home_control/config_flow.py +19 -0
- homeassistant/components/niko_home_control/strings.json +10 -1
- homeassistant/components/niko_home_control/translations/bg.json +7 -1
- homeassistant/components/niko_home_control/translations/ca.json +7 -1
- homeassistant/components/niko_home_control/translations/cs.json +10 -1
- homeassistant/components/niko_home_control/translations/de.json +10 -1
- homeassistant/components/niko_home_control/translations/en-GB.json +10 -1
- homeassistant/components/niko_home_control/translations/en.json +10 -1
- homeassistant/components/niko_home_control/translations/es.json +10 -1
- homeassistant/components/niko_home_control/translations/et.json +10 -1
- homeassistant/components/niko_home_control/translations/fr.json +22 -0
- homeassistant/components/niko_home_control/translations/ga.json +9 -0
- homeassistant/components/niko_home_control/translations/nl.json +10 -1
- homeassistant/components/niko_home_control/translations/ru.json +10 -1
- homeassistant/components/niko_home_control/translations/sk.json +10 -1
- homeassistant/components/niko_home_control/translations/zh-Hans.json +10 -1
- homeassistant/components/niko_home_control/translations/zh-Hant.json +10 -1
- homeassistant/components/nina/binary_sensor.py +3 -0
- homeassistant/components/nina/diagnostics.py +24 -0
- homeassistant/components/nmbs/translations/ga.json +1 -0
- homeassistant/components/nobo_hub/select.py +3 -1
- homeassistant/components/nobo_hub/sensor.py +1 -0
- homeassistant/components/nobo_hub/translations/ga.json +7 -1
- homeassistant/components/nobo_hub/translations/it.json +4 -0
- homeassistant/components/nordpool/translations/ga.json +1 -0
- homeassistant/components/notify/translations/el.json +1 -1
- homeassistant/components/notify/translations/ga.json +32 -1
- homeassistant/components/notion/entity.py +1 -1
- homeassistant/components/ntfy/manifest.json +1 -1
- homeassistant/components/ntfy/translations/ga.json +29 -2
- homeassistant/components/nuki/translations/ga.json +3 -0
- homeassistant/components/number/__init__.py +14 -4
- homeassistant/components/number/const.py +30 -16
- homeassistant/components/number/translations/ga.json +16 -0
- homeassistant/components/nut/manifest.json +1 -0
- homeassistant/components/nut/quality_scale.yaml +90 -0
- homeassistant/components/nut/translations/ga.json +34 -2
- homeassistant/components/nut/translations/it.json +6 -0
- homeassistant/components/nws/translations/fr.json +20 -0
- homeassistant/components/nx584/translations/ga.json +12 -0
- homeassistant/components/nyt_games/translations/ga.json +8 -0
- homeassistant/components/nzbget/translations/ga.json +20 -0
- homeassistant/components/ohme/translations/ga.json +23 -2
- homeassistant/components/ollama/__init__.py +6 -6
- homeassistant/components/ollama/translations/ga.json +21 -0
- homeassistant/components/ollama/translations/nl.json +1 -0
- homeassistant/components/ombi/translations/ga.json +38 -0
- homeassistant/components/omnilogic/translations/ga.json +14 -0
- homeassistant/components/ondilo_ico/sensor.py +4 -2
- homeassistant/components/ondilo_ico/translations/ga.json +2 -0
- homeassistant/components/onedrive/translations/ga.json +17 -2
- homeassistant/components/onewire/binary_sensor.py +7 -0
- homeassistant/components/onewire/entity.py +0 -2
- homeassistant/components/onewire/strings.json +3 -0
- homeassistant/components/onewire/translations/cs.json +3 -0
- homeassistant/components/onewire/translations/de.json +3 -0
- homeassistant/components/onewire/translations/el.json +3 -0
- homeassistant/components/onewire/translations/en-GB.json +3 -0
- homeassistant/components/onewire/translations/en.json +3 -0
- homeassistant/components/onewire/translations/et.json +3 -0
- homeassistant/components/onewire/translations/ga.json +7 -0
- homeassistant/components/onewire/translations/pt.json +3 -0
- homeassistant/components/onewire/translations/sk.json +3 -0
- homeassistant/components/onewire/translations/zh-Hans.json +3 -0
- homeassistant/components/onewire/translations/zh-Hant.json +3 -0
- homeassistant/components/onkyo/translations/ga.json +13 -2
- homeassistant/components/onvif/manifest.json +1 -1
- homeassistant/components/onvif/translations/ga.json +10 -0
- homeassistant/components/onvif/translations/sv.json +3 -3
- homeassistant/components/onvif/translations/zh-Hant.json +1 -1
- homeassistant/components/open_router/entity.py +8 -7
- homeassistant/components/open_router/manifest.json +1 -1
- homeassistant/components/open_router/translations/ga.json +18 -0
- homeassistant/components/open_router/translations/nl.json +2 -1
- homeassistant/components/openai_conversation/__init__.py +6 -6
- homeassistant/components/openai_conversation/entity.py +217 -83
- homeassistant/components/openai_conversation/manifest.json +1 -1
- homeassistant/components/openai_conversation/translations/el.json +7 -0
- homeassistant/components/openai_conversation/translations/ga.json +9 -0
- homeassistant/components/openai_conversation/translations/it.json +8 -0
- homeassistant/components/openai_conversation/translations/nl.json +2 -1
- homeassistant/components/openai_conversation/translations/pt.json +9 -1
- homeassistant/components/openhome/media_player.py +2 -3
- homeassistant/components/opensky/translations/ga.json +6 -1
- homeassistant/components/opentherm_gw/translations/ga.json +68 -0
- homeassistant/components/opentherm_gw/translations/it.json +1 -0
- homeassistant/components/openweathermap/sensor.py +8 -0
- homeassistant/components/openweathermap/translations/fr.json +11 -0
- homeassistant/components/openweathermap/translations/ga.json +2 -1
- homeassistant/components/openweathermap/translations/zh-Hant.json +1 -1
- homeassistant/components/opower/__init__.py +23 -0
- homeassistant/components/opower/manifest.json +1 -1
- homeassistant/components/opower/repairs.py +44 -0
- homeassistant/components/opower/strings.json +13 -2
- homeassistant/components/opower/translations/cs.json +11 -0
- homeassistant/components/opower/translations/de.json +11 -0
- homeassistant/components/opower/translations/el.json +48 -0
- homeassistant/components/opower/translations/en-GB.json +11 -0
- homeassistant/components/opower/translations/en.json +11 -0
- homeassistant/components/opower/translations/et.json +11 -0
- homeassistant/components/opower/translations/fr.json +47 -1
- homeassistant/components/opower/translations/ga.json +14 -1
- homeassistant/components/opower/translations/it.json +13 -0
- homeassistant/components/opower/translations/lt.json +11 -0
- homeassistant/components/opower/translations/pt.json +14 -1
- homeassistant/components/opower/translations/sk.json +11 -0
- homeassistant/components/opower/translations/zh-Hans.json +11 -0
- homeassistant/components/opower/translations/zh-Hant.json +11 -0
- homeassistant/components/osoenergy/translations/ga.json +15 -0
- homeassistant/components/osoenergy/translations/it.json +6 -2
- homeassistant/components/otbr/translations/ga.json +2 -1
- homeassistant/components/otp/translations/ga.json +6 -1
- homeassistant/components/ourgroceries/translations/ga.json +17 -0
- homeassistant/components/overkiz/translations/ga.json +17 -0
- homeassistant/components/overkiz/translations/it.json +4 -2
- homeassistant/components/overkiz/translations/select.ga.json +7 -0
- homeassistant/components/overkiz/translations/sensor.ga.json +15 -0
- homeassistant/components/overseerr/const.py +0 -1
- homeassistant/components/overseerr/services.py +2 -8
- homeassistant/components/overseerr/translations/ga.json +13 -0
- homeassistant/components/ovo_energy/translations/ga.json +10 -0
- homeassistant/components/p1_monitor/translations/ga.json +3 -0
- homeassistant/components/palazzetti/translations/ga.json +11 -0
- homeassistant/components/paperless_ngx/quality_scale.yaml +8 -8
- homeassistant/components/paperless_ngx/sensor.py +7 -0
- homeassistant/components/paperless_ngx/translations/ga.json +27 -0
- homeassistant/components/peblar/translations/ga.json +21 -0
- homeassistant/components/peco/translations/it.json +6 -1
- homeassistant/components/pegel_online/translations/ga.json +12 -0
- homeassistant/components/permobil/translations/ga.json +5 -0
- homeassistant/components/persistent_notification/translations/ga.json +34 -0
- homeassistant/components/person/__init__.py +18 -7
- homeassistant/components/person/manifest.json +1 -1
- homeassistant/components/pglab/translations/ga.json +2 -1
- homeassistant/components/pi_hole/translations/ga.json +10 -0
- homeassistant/components/pi_hole/translations/zh-Hant.json +1 -1
- homeassistant/components/picnic/const.py +0 -1
- homeassistant/components/picnic/services.py +1 -1
- homeassistant/components/picnic/translations/ga.json +24 -0
- homeassistant/components/pilight/translations/ga.json +14 -0
- homeassistant/components/ping/helpers.py +1 -0
- homeassistant/components/ping/sensor.py +11 -0
- homeassistant/components/ping/strings.json +3 -0
- homeassistant/components/ping/translations/cs.json +3 -0
- homeassistant/components/ping/translations/de.json +3 -0
- homeassistant/components/ping/translations/en-GB.json +3 -0
- homeassistant/components/ping/translations/en.json +3 -0
- homeassistant/components/ping/translations/es.json +3 -0
- homeassistant/components/ping/translations/et.json +3 -0
- homeassistant/components/ping/translations/fr.json +3 -0
- homeassistant/components/ping/translations/ga.json +9 -1
- homeassistant/components/ping/translations/he.json +3 -0
- homeassistant/components/ping/translations/it.json +10 -0
- homeassistant/components/ping/translations/ko.json +7 -0
- homeassistant/components/ping/translations/lt.json +3 -0
- homeassistant/components/ping/translations/pt.json +3 -0
- homeassistant/components/ping/translations/ru.json +3 -0
- homeassistant/components/ping/translations/sk.json +3 -0
- homeassistant/components/ping/translations/sv.json +3 -0
- homeassistant/components/ping/translations/zh-Hans.json +3 -0
- homeassistant/components/ping/translations/zh-Hant.json +3 -0
- homeassistant/components/plaato/coordinator.py +0 -1
- homeassistant/components/playstation_network/config_flow.py +4 -0
- homeassistant/components/playstation_network/notify.py +74 -21
- homeassistant/components/playstation_network/strings.json +5 -1
- homeassistant/components/playstation_network/translations/cs.json +5 -1
- homeassistant/components/playstation_network/translations/de.json +5 -1
- homeassistant/components/playstation_network/translations/el.json +3 -0
- homeassistant/components/playstation_network/translations/en-GB.json +5 -1
- homeassistant/components/playstation_network/translations/en.json +5 -1
- homeassistant/components/playstation_network/translations/es.json +3 -0
- homeassistant/components/playstation_network/translations/et.json +5 -1
- homeassistant/components/playstation_network/translations/fr.json +41 -0
- homeassistant/components/playstation_network/translations/ga.json +17 -1
- homeassistant/components/playstation_network/translations/it.json +12 -0
- homeassistant/components/playstation_network/translations/lt.json +5 -1
- homeassistant/components/playstation_network/translations/nl.json +3 -0
- homeassistant/components/playstation_network/translations/pt.json +5 -1
- homeassistant/components/playstation_network/translations/sk.json +5 -1
- homeassistant/components/playstation_network/translations/zh-Hans.json +5 -1
- homeassistant/components/playstation_network/translations/zh-Hant.json +5 -1
- homeassistant/components/plex/translations/ga.json +18 -0
- homeassistant/components/plex/translations/it.json +3 -1
- homeassistant/components/plugwise/translations/ga.json +18 -0
- homeassistant/components/point/entity.py +2 -1
- homeassistant/components/point/translations/ga.json +13 -2
- homeassistant/components/pooldose/__init__.py +58 -0
- homeassistant/components/pooldose/config_flow.py +99 -0
- homeassistant/components/pooldose/const.py +6 -0
- homeassistant/components/pooldose/coordinator.py +68 -0
- homeassistant/components/pooldose/entity.py +78 -0
- homeassistant/components/pooldose/icons.json +45 -0
- homeassistant/components/pooldose/manifest.json +10 -0
- homeassistant/components/pooldose/quality_scale.yaml +94 -0
- homeassistant/components/pooldose/sensor.py +186 -0
- homeassistant/components/pooldose/strings.json +102 -0
- homeassistant/components/pooldose/translations/cs.json +102 -0
- homeassistant/components/pooldose/translations/de.json +102 -0
- homeassistant/components/pooldose/translations/en-GB.json +102 -0
- homeassistant/components/pooldose/translations/en.json +102 -0
- homeassistant/components/pooldose/translations/et.json +102 -0
- homeassistant/components/pooldose/translations/nl.json +54 -0
- homeassistant/components/pooldose/translations/sk.json +102 -0
- homeassistant/components/pooldose/translations/zh-Hans.json +102 -0
- homeassistant/components/pooldose/translations/zh-Hant.json +102 -0
- homeassistant/components/poolsense/translations/ga.json +32 -0
- homeassistant/components/powerfox/translations/ga.json +19 -1
- homeassistant/components/probe_plus/translations/ga.json +14 -2
- homeassistant/components/profiler/translations/ga.json +14 -0
- homeassistant/components/progettihwsw/translations/it.json +3 -0
- homeassistant/components/prometheus/__init__.py +4 -0
- homeassistant/components/proximity/translations/ga.json +1 -0
- homeassistant/components/prusalink/translations/ga.json +10 -0
- homeassistant/components/ps4/translations/ga.json +18 -0
- homeassistant/components/ps4/translations/zh-Hant.json +2 -2
- homeassistant/components/pterodactyl/translations/ga.json +18 -1
- homeassistant/components/pvpc_hourly_pricing/__init__.py +7 -11
- homeassistant/components/pvpc_hourly_pricing/coordinator.py +4 -2
- homeassistant/components/pvpc_hourly_pricing/sensor.py +3 -4
- homeassistant/components/pvpc_hourly_pricing/translations/ga.json +13 -0
- homeassistant/components/pyload/translations/ga.json +29 -1
- homeassistant/components/python_script/translations/ga.json +8 -0
- homeassistant/components/qbittorrent/translations/ga.json +5 -1
- homeassistant/components/qbittorrent/translations/lt.json +1 -1
- homeassistant/components/qbus/binary_sensor.py +144 -0
- homeassistant/components/qbus/climate.py +3 -3
- homeassistant/components/qbus/const.py +2 -0
- homeassistant/components/qbus/coordinator.py +20 -14
- homeassistant/components/qbus/cover.py +3 -3
- homeassistant/components/qbus/entity.py +59 -24
- homeassistant/components/qbus/icons.json +12 -0
- homeassistant/components/qbus/light.py +3 -3
- homeassistant/components/qbus/manifest.json +1 -0
- homeassistant/components/qbus/scene.py +8 -14
- homeassistant/components/qbus/sensor.py +378 -0
- homeassistant/components/qbus/strings.json +24 -0
- homeassistant/components/qbus/switch.py +3 -3
- homeassistant/components/qbus/translations/cs.json +24 -0
- homeassistant/components/qbus/translations/de.json +24 -0
- homeassistant/components/qbus/translations/el.json +10 -0
- homeassistant/components/qbus/translations/en-GB.json +24 -0
- homeassistant/components/qbus/translations/en.json +24 -0
- homeassistant/components/qbus/translations/es.json +16 -0
- homeassistant/components/qbus/translations/et.json +24 -0
- homeassistant/components/qbus/translations/fr.json +17 -0
- homeassistant/components/qbus/translations/ga.json +24 -0
- homeassistant/components/qbus/translations/he.json +9 -1
- homeassistant/components/qbus/translations/it.json +16 -0
- homeassistant/components/qbus/translations/lt.json +16 -0
- homeassistant/components/qbus/translations/nl.json +12 -0
- homeassistant/components/qbus/translations/pt.json +24 -0
- homeassistant/components/qbus/translations/ru.json +16 -0
- homeassistant/components/qbus/translations/sk.json +24 -0
- homeassistant/components/qbus/translations/zh-Hans.json +24 -0
- homeassistant/components/qbus/translations/zh-Hant.json +24 -0
- homeassistant/components/qingping/manifest.json +1 -1
- homeassistant/components/qnap/translations/it.json +3 -0
- homeassistant/components/qvr_pro/translations/ga.json +24 -0
- homeassistant/components/rabbitair/translations/ga.json +22 -0
- homeassistant/components/rachio/coordinator.py +0 -2
- homeassistant/components/rachio/translations/ga.json +41 -0
- homeassistant/components/radiotherm/translations/ga.json +9 -0
- homeassistant/components/rainbird/const.py +0 -1
- homeassistant/components/rainbird/translations/ga.json +28 -1
- homeassistant/components/rainbird/translations/it.json +3 -0
- homeassistant/components/rainforest_eagle/translations/ga.json +9 -0
- homeassistant/components/rainforest_eagle/translations/it.json +12 -0
- homeassistant/components/rainforest_raven/translations/ga.json +11 -0
- homeassistant/components/rainmachine/entity.py +3 -5
- homeassistant/components/rainmachine/translations/fr.json +56 -1
- homeassistant/components/rainmachine/translations/ga.json +84 -0
- homeassistant/components/rainmachine/translations/it.json +1 -0
- homeassistant/components/random/strings.json +1 -1
- homeassistant/components/random/translations/el.json +1 -1
- homeassistant/components/random/translations/fr.json +1 -1
- homeassistant/components/random/translations/ga.json +33 -2
- homeassistant/components/random/translations/he.json +1 -1
- homeassistant/components/random/translations/ko.json +1 -1
- homeassistant/components/random/translations/pl.json +3 -0
- homeassistant/components/random/translations/pt.json +1 -1
- homeassistant/components/random/translations/ru.json +1 -1
- homeassistant/components/random/translations/sv.json +1 -1
- homeassistant/components/recollect_waste/translations/el.json +10 -0
- homeassistant/components/recorder/auto_repairs/schema.py +1 -1
- homeassistant/components/recorder/statistics.py +4 -0
- homeassistant/components/recorder/translations/ga.json +4 -2
- homeassistant/components/recorder/websocket_api.py +4 -0
- homeassistant/components/refoss/translations/ga.json +11 -0
- homeassistant/components/rehlko/translations/ga.json +16 -0
- homeassistant/components/remember_the_milk/translations/ga.json +28 -0
- homeassistant/components/remote/translations/ga.json +34 -2
- homeassistant/components/remote_calendar/translations/ga.json +6 -1
- homeassistant/components/renault/manifest.json +1 -1
- homeassistant/components/renault/renault_hub.py +1 -0
- homeassistant/components/renault/translations/ga.json +51 -0
- homeassistant/components/renson/translations/ga.json +57 -3
- homeassistant/components/renson/translations/it.json +30 -2
- homeassistant/components/reolink/entity.py +1 -0
- homeassistant/components/reolink/icons.json +15 -0
- homeassistant/components/reolink/manifest.json +1 -1
- homeassistant/components/reolink/media_source.py +1 -3
- homeassistant/components/reolink/number.py +44 -2
- homeassistant/components/reolink/select.py +1 -0
- homeassistant/components/reolink/strings.json +9 -0
- homeassistant/components/reolink/switch.py +1 -0
- homeassistant/components/reolink/translations/cs.json +9 -0
- homeassistant/components/reolink/translations/de.json +9 -0
- homeassistant/components/reolink/translations/en-GB.json +9 -0
- homeassistant/components/reolink/translations/en.json +9 -0
- homeassistant/components/reolink/translations/et.json +9 -0
- homeassistant/components/reolink/translations/ga.json +222 -36
- homeassistant/components/reolink/translations/it.json +9 -1
- homeassistant/components/reolink/translations/lt.json +2 -2
- homeassistant/components/reolink/translations/sk.json +9 -0
- homeassistant/components/reolink/translations/sv.json +7 -7
- homeassistant/components/reolink/translations/zh-Hans.json +9 -0
- homeassistant/components/reolink/translations/zh-Hant.json +9 -0
- homeassistant/components/repairs/issue_handler.py +0 -2
- homeassistant/components/repairs/websocket_api.py +3 -3
- homeassistant/components/rest/translations/ga.json +7 -0
- homeassistant/components/rest_command/__init__.py +25 -5
- homeassistant/components/rest_command/translations/ga.json +6 -0
- homeassistant/components/rfxtrx/translations/fr.json +11 -0
- homeassistant/components/rfxtrx/translations/ga.json +3 -0
- homeassistant/components/ring/translations/ga.json +9 -1
- homeassistant/components/ring/translations/it.json +2 -1
- homeassistant/components/risco/translations/ga.json +5 -0
- homeassistant/components/risco/translations/nl.json +6 -0
- homeassistant/components/roborock/translations/ga.json +5 -1
- homeassistant/components/roborock/vacuum.py +5 -1
- homeassistant/components/romy/coordinator.py +0 -1
- homeassistant/components/romy/translations/ga.json +16 -0
- homeassistant/components/roomba/entity.py +0 -5
- homeassistant/components/roomba/sensor.py +1 -1
- homeassistant/components/roomba/translations/ga.json +14 -0
- homeassistant/components/roomba/vacuum.py +1 -2
- homeassistant/components/roon/translations/zh-Hant.json +1 -1
- homeassistant/components/rova/translations/ga.json +3 -0
- homeassistant/components/ruckus_unleashed/translations/ga.json +17 -0
- homeassistant/components/russound_rio/manifest.json +1 -1
- homeassistant/components/russound_rio/media_browser.py +97 -0
- homeassistant/components/russound_rio/media_player.py +14 -2
- homeassistant/components/russound_rio/translations/ga.json +10 -0
- homeassistant/components/ruuvitag_ble/manifest.json +1 -1
- homeassistant/components/ruuvitag_ble/sensor.py +80 -35
- homeassistant/components/ruuvitag_ble/strings.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/bg.json +7 -0
- homeassistant/components/ruuvitag_ble/translations/cs.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/de.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/el.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/en-GB.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/en.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/et.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/fi.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/fr.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/ga.json +40 -1
- homeassistant/components/ruuvitag_ble/translations/lt.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/pt.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/sk.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/sv.json +19 -0
- homeassistant/components/ruuvitag_ble/translations/zh-Hans.json +25 -0
- homeassistant/components/ruuvitag_ble/translations/zh-Hant.json +25 -0
- homeassistant/components/rympro/translations/ga.json +5 -0
- homeassistant/components/sabnzbd/translations/ga.json +6 -0
- homeassistant/components/samsungtv/translations/ga.json +6 -0
- homeassistant/components/sanix/translations/ga.json +9 -1
- homeassistant/components/scene/__init__.py +30 -11
- homeassistant/components/scene/translations/ga.json +41 -0
- homeassistant/components/scene/translations/it.json +3 -0
- homeassistant/components/schedule/__init__.py +1 -1
- homeassistant/components/schlage/translations/ga.json +18 -1
- homeassistant/components/scrape/manifest.json +1 -1
- homeassistant/components/scrape/strings.json +4 -1
- homeassistant/components/scrape/translations/bg.json +1 -0
- homeassistant/components/scrape/translations/cs.json +3 -0
- homeassistant/components/scrape/translations/de.json +3 -0
- homeassistant/components/scrape/translations/el.json +4 -1
- homeassistant/components/scrape/translations/en-GB.json +3 -0
- homeassistant/components/scrape/translations/en.json +3 -0
- homeassistant/components/scrape/translations/es.json +3 -0
- homeassistant/components/scrape/translations/et.json +3 -0
- homeassistant/components/scrape/translations/fr.json +4 -1
- homeassistant/components/scrape/translations/ga.json +20 -1
- homeassistant/components/scrape/translations/he.json +4 -1
- homeassistant/components/scrape/translations/ko.json +1 -0
- homeassistant/components/scrape/translations/lt.json +3 -0
- homeassistant/components/scrape/translations/nl.json +3 -0
- homeassistant/components/scrape/translations/pt.json +4 -1
- homeassistant/components/scrape/translations/ru.json +4 -1
- homeassistant/components/scrape/translations/sk.json +3 -0
- homeassistant/components/scrape/translations/sv.json +4 -1
- homeassistant/components/scrape/translations/zh-Hans.json +3 -0
- homeassistant/components/scrape/translations/zh-Hant.json +3 -0
- homeassistant/components/screenlogic/translations/fr.json +5 -0
- homeassistant/components/screenlogic/translations/ga.json +7 -1
- homeassistant/components/script/translations/ga.json +18 -0
- homeassistant/components/season/translations/fr.json +7 -0
- homeassistant/components/sensibo/select.py +1 -61
- homeassistant/components/sensibo/strings.json +29 -49
- homeassistant/components/sensibo/translations/bg.json +0 -10
- homeassistant/components/sensibo/translations/ca.json +0 -14
- homeassistant/components/sensibo/translations/cs.json +2 -22
- homeassistant/components/sensibo/translations/de.json +2 -22
- homeassistant/components/sensibo/translations/el.json +29 -22
- homeassistant/components/sensibo/translations/en-GB.json +2 -22
- homeassistant/components/sensibo/translations/en.json +2 -22
- homeassistant/components/sensibo/translations/es.json +0 -22
- homeassistant/components/sensibo/translations/et.json +2 -22
- homeassistant/components/sensibo/translations/fi.json +0 -16
- homeassistant/components/sensibo/translations/fy.json +0 -7
- homeassistant/components/sensibo/translations/ga.json +208 -21
- homeassistant/components/sensibo/translations/gl.json +0 -8
- homeassistant/components/sensibo/translations/gsw.json +0 -5
- homeassistant/components/sensibo/translations/he.json +4 -5
- homeassistant/components/sensibo/translations/hu.json +0 -22
- homeassistant/components/sensibo/translations/id.json +0 -13
- homeassistant/components/sensibo/translations/it.json +2 -16
- homeassistant/components/sensibo/translations/ja.json +0 -21
- homeassistant/components/sensibo/translations/ko.json +0 -16
- homeassistant/components/sensibo/translations/lt.json +2 -22
- homeassistant/components/sensibo/translations/lv.json +0 -13
- homeassistant/components/sensibo/translations/nb.json +0 -15
- homeassistant/components/sensibo/translations/nl.json +0 -14
- homeassistant/components/sensibo/translations/pl.json +0 -13
- homeassistant/components/sensibo/translations/pt-BR.json +0 -18
- homeassistant/components/sensibo/translations/pt.json +29 -22
- homeassistant/components/sensibo/translations/ro.json +0 -13
- homeassistant/components/sensibo/translations/ru.json +13 -22
- homeassistant/components/sensibo/translations/sk.json +2 -22
- homeassistant/components/sensibo/translations/sl.json +0 -5
- homeassistant/components/sensibo/translations/sv.json +0 -22
- homeassistant/components/sensibo/translations/tr.json +0 -21
- homeassistant/components/sensibo/translations/uk.json +0 -13
- homeassistant/components/sensibo/translations/vi.json +0 -5
- homeassistant/components/sensibo/translations/zh-Hans.json +2 -22
- homeassistant/components/sensibo/translations/zh-Hant.json +2 -22
- homeassistant/components/sensirion_ble/translations/ga.json +15 -1
- homeassistant/components/sensor/__init__.py +21 -8
- homeassistant/components/sensor/const.py +34 -16
- homeassistant/components/sensor/recorder.py +2 -1
- homeassistant/components/sensor/strings.json +3 -3
- homeassistant/components/sensor/translations/el.json +5 -0
- homeassistant/components/sensor/translations/fr.json +5 -0
- homeassistant/components/sensor/translations/ga.json +6 -0
- homeassistant/components/sensor/translations/he.json +5 -0
- homeassistant/components/sensor/translations/ko.json +1 -1
- homeassistant/components/sensor/translations/nl.json +1 -1
- homeassistant/components/sensor/translations/pt.json +5 -0
- homeassistant/components/sensor/translations/ru.json +5 -0
- homeassistant/components/sensor/translations/sv.json +3 -0
- homeassistant/components/sensorpush_cloud/translations/ga.json +11 -0
- homeassistant/components/sensoterra/translations/ga.json +16 -0
- homeassistant/components/senz/translations/ga.json +1 -0
- homeassistant/components/seventeentrack/const.py +0 -1
- homeassistant/components/seventeentrack/services.py +1 -2
- homeassistant/components/seventeentrack/translations/ga.json +19 -0
- homeassistant/components/sfr_box/translations/it.json +3 -0
- homeassistant/components/sharkiq/translations/ga.json +3 -1
- homeassistant/components/shelly/translations/fr.json +11 -1
- homeassistant/components/shelly/translations/ga.json +27 -0
- homeassistant/components/shelly/translations/zh-Hant.json +1 -1
- homeassistant/components/shopping_list/translations/ga.json +55 -0
- homeassistant/components/sia/alarm_control_panel.py +1 -1
- homeassistant/components/sia/translations/ga.json +11 -0
- homeassistant/components/simplisafe/translations/fr.json +14 -0
- homeassistant/components/simplisafe/translations/ga.json +34 -0
- homeassistant/components/siren/translations/ga.json +30 -0
- homeassistant/components/sky_remote/translations/ga.json +9 -0
- homeassistant/components/sleep_as_android/__init__.py +66 -0
- homeassistant/components/sleep_as_android/config_flow.py +14 -0
- homeassistant/components/sleep_as_android/const.py +32 -0
- homeassistant/components/sleep_as_android/diagnostics.py +19 -0
- homeassistant/components/sleep_as_android/entity.py +47 -0
- homeassistant/components/sleep_as_android/event.py +153 -0
- homeassistant/components/sleep_as_android/icons.json +38 -0
- homeassistant/components/sleep_as_android/manifest.json +10 -0
- homeassistant/components/sleep_as_android/quality_scale.yaml +110 -0
- homeassistant/components/sleep_as_android/sensor.py +96 -0
- homeassistant/components/sleep_as_android/strings.json +134 -0
- homeassistant/components/sleep_as_android/translations/bg.json +25 -0
- homeassistant/components/sleep_as_android/translations/ca.json +21 -0
- homeassistant/components/sleep_as_android/translations/cs.json +134 -0
- homeassistant/components/sleep_as_android/translations/de.json +134 -0
- homeassistant/components/sleep_as_android/translations/el.json +134 -0
- homeassistant/components/sleep_as_android/translations/en-GB.json +134 -0
- homeassistant/components/sleep_as_android/translations/en.json +134 -0
- homeassistant/components/sleep_as_android/translations/et.json +134 -0
- homeassistant/components/sleep_as_android/translations/fr.json +134 -0
- homeassistant/components/sleep_as_android/translations/ga.json +133 -0
- homeassistant/components/sleep_as_android/translations/he.json +31 -0
- homeassistant/components/sleep_as_android/translations/lt.json +134 -0
- homeassistant/components/sleep_as_android/translations/nl.json +75 -0
- homeassistant/components/sleep_as_android/translations/pt.json +134 -0
- homeassistant/components/sleep_as_android/translations/ru.json +103 -0
- homeassistant/components/sleep_as_android/translations/sk.json +134 -0
- homeassistant/components/sleep_as_android/translations/sv.json +42 -0
- homeassistant/components/sleep_as_android/translations/zh-Hans.json +132 -0
- homeassistant/components/sleep_as_android/translations/zh-Hant.json +134 -0
- homeassistant/components/sleepiq/manifest.json +1 -1
- homeassistant/components/sleepiq/translations/ga.json +4 -2
- homeassistant/components/slide_local/translations/ga.json +14 -0
- homeassistant/components/sma/translations/ga.json +13 -1
- homeassistant/components/sma/translations/it.json +3 -0
- homeassistant/components/smappee/translations/ga.json +4 -0
- homeassistant/components/smarla/const.py +1 -1
- homeassistant/components/smarla/icons.json +14 -0
- homeassistant/components/smarla/manifest.json +1 -1
- homeassistant/components/smarla/sensor.py +107 -0
- homeassistant/components/smarla/strings.json +15 -0
- homeassistant/components/smarla/translations/cs.json +15 -0
- homeassistant/components/smarla/translations/de.json +15 -0
- homeassistant/components/smarla/translations/el.json +15 -0
- homeassistant/components/smarla/translations/en-GB.json +15 -0
- homeassistant/components/smarla/translations/en.json +15 -0
- homeassistant/components/smarla/translations/et.json +15 -0
- homeassistant/components/smarla/translations/fr.json +11 -0
- homeassistant/components/smarla/translations/ga.json +22 -0
- homeassistant/components/smarla/translations/lt.json +15 -0
- homeassistant/components/smarla/translations/pt.json +15 -0
- homeassistant/components/smarla/translations/sk.json +15 -0
- homeassistant/components/smarla/translations/zh-Hans.json +15 -0
- homeassistant/components/smarla/translations/zh-Hant.json +15 -0
- homeassistant/components/smartthings/manifest.json +1 -1
- homeassistant/components/smartthings/sensor.py +10 -0
- homeassistant/components/smartthings/translations/fr.json +14 -0
- homeassistant/components/smartthings/translations/ga.json +41 -5
- homeassistant/components/smartthings/translations/ko.json +15 -0
- homeassistant/components/smarttub/translations/ga.json +46 -0
- homeassistant/components/smarty/translations/fr.json +9 -0
- homeassistant/components/smarty/translations/ga.json +12 -0
- homeassistant/components/smhi/translations/ga.json +4 -0
- homeassistant/components/smlight/manifest.json +1 -1
- homeassistant/components/smlight/translations/ga.json +22 -1
- homeassistant/components/smtp/translations/ga.json +6 -0
- homeassistant/components/smtp/translations/it.json +5 -0
- homeassistant/components/snapcast/coordinator.py +7 -0
- homeassistant/components/snapcast/media_player.py +173 -66
- homeassistant/components/snapcast/strings.json +10 -0
- homeassistant/components/snapcast/translations/cs.json +10 -0
- homeassistant/components/snapcast/translations/de.json +10 -0
- homeassistant/components/snapcast/translations/el.json +10 -0
- homeassistant/components/snapcast/translations/en-GB.json +10 -0
- homeassistant/components/snapcast/translations/en.json +10 -0
- homeassistant/components/snapcast/translations/et.json +10 -0
- homeassistant/components/snapcast/translations/fr.json +10 -0
- homeassistant/components/snapcast/translations/ga.json +40 -0
- homeassistant/components/snapcast/translations/it.json +3 -0
- homeassistant/components/snapcast/translations/lt.json +8 -0
- homeassistant/components/snapcast/translations/nl.json +10 -0
- homeassistant/components/snapcast/translations/pt.json +10 -0
- homeassistant/components/snapcast/translations/sk.json +10 -0
- homeassistant/components/snapcast/translations/zh-Hans.json +10 -0
- homeassistant/components/snapcast/translations/zh-Hant.json +10 -0
- homeassistant/components/snips/translations/ga.json +12 -0
- homeassistant/components/snoo/translations/ga.json +12 -0
- homeassistant/components/snooz/translations/ga.json +28 -0
- homeassistant/components/solaredge/translations/it.json +2 -1
- homeassistant/components/solarlog/manifest.json +1 -1
- homeassistant/components/solarlog/sensor.py +55 -1
- homeassistant/components/solarlog/strings.json +9 -0
- homeassistant/components/solarlog/translations/cs.json +9 -0
- homeassistant/components/solarlog/translations/de.json +9 -0
- homeassistant/components/solarlog/translations/el.json +9 -0
- homeassistant/components/solarlog/translations/en-GB.json +9 -0
- homeassistant/components/solarlog/translations/en.json +9 -0
- homeassistant/components/solarlog/translations/et.json +9 -0
- homeassistant/components/solarlog/translations/fr.json +9 -0
- homeassistant/components/solarlog/translations/ga.json +21 -2
- homeassistant/components/solarlog/translations/it.json +12 -0
- homeassistant/components/solarlog/translations/lt.json +9 -0
- homeassistant/components/solarlog/translations/pt.json +9 -0
- homeassistant/components/solarlog/translations/sk.json +9 -0
- homeassistant/components/solarlog/translations/zh-Hans.json +9 -0
- homeassistant/components/solarlog/translations/zh-Hant.json +9 -0
- homeassistant/components/soma/translations/it.json +3 -0
- homeassistant/components/somfy_mylink/strings.json +2 -2
- homeassistant/components/somfy_mylink/translations/el.json +4 -2
- homeassistant/components/somfy_mylink/translations/pt.json +4 -2
- homeassistant/components/somfy_mylink/translations/ru.json +2 -1
- homeassistant/components/songpal/translations/ga.json +18 -0
- homeassistant/components/sonos/const.py +5 -0
- homeassistant/components/sonos/media_player.py +7 -2
- homeassistant/components/sonos/quality_scale.yaml +76 -0
- homeassistant/components/sonos/select.py +129 -0
- homeassistant/components/sonos/speaker.py +8 -0
- homeassistant/components/sonos/strings.json +15 -0
- homeassistant/components/sonos/translations/bg.json +7 -0
- homeassistant/components/sonos/translations/ca.json +10 -0
- homeassistant/components/sonos/translations/cs.json +15 -0
- homeassistant/components/sonos/translations/de.json +15 -0
- homeassistant/components/sonos/translations/el.json +15 -0
- homeassistant/components/sonos/translations/en-GB.json +15 -0
- homeassistant/components/sonos/translations/en.json +15 -0
- homeassistant/components/sonos/translations/et.json +15 -0
- homeassistant/components/sonos/translations/fr.json +15 -0
- homeassistant/components/sonos/translations/ga.json +105 -0
- homeassistant/components/sonos/translations/he.json +10 -0
- homeassistant/components/sonos/translations/nl.json +10 -0
- homeassistant/components/sonos/translations/sk.json +15 -0
- homeassistant/components/sonos/translations/sv.json +11 -0
- homeassistant/components/sonos/translations/zh-Hans.json +15 -0
- homeassistant/components/sonos/translations/zh-Hant.json +15 -0
- homeassistant/components/soundtouch/translations/ga.json +42 -0
- homeassistant/components/speedtestdotnet/coordinator.py +1 -2
- homeassistant/components/spotify/manifest.json +1 -1
- homeassistant/components/spotify/translations/ga.json +5 -1
- homeassistant/components/sql/strings.json +6 -1
- homeassistant/components/sql/translations/bg.json +3 -0
- homeassistant/components/sql/translations/ca.json +1 -0
- homeassistant/components/sql/translations/cs.json +5 -0
- homeassistant/components/sql/translations/de.json +5 -0
- homeassistant/components/sql/translations/el.json +6 -1
- homeassistant/components/sql/translations/en-GB.json +5 -0
- homeassistant/components/sql/translations/en.json +5 -0
- homeassistant/components/sql/translations/es.json +5 -0
- homeassistant/components/sql/translations/et.json +5 -0
- homeassistant/components/sql/translations/fr.json +6 -1
- homeassistant/components/sql/translations/ga.json +6 -1
- homeassistant/components/sql/translations/he.json +6 -1
- homeassistant/components/sql/translations/ko.json +1 -1
- homeassistant/components/sql/translations/lt.json +5 -0
- homeassistant/components/sql/translations/nl.json +5 -0
- homeassistant/components/sql/translations/pl.json +2 -0
- homeassistant/components/sql/translations/pt.json +6 -1
- homeassistant/components/sql/translations/ru.json +6 -1
- homeassistant/components/sql/translations/sk.json +5 -0
- homeassistant/components/sql/translations/sv.json +6 -1
- homeassistant/components/sql/translations/zh-Hans.json +5 -0
- homeassistant/components/sql/translations/zh-Hant.json +5 -0
- homeassistant/components/squeezebox/media_player.py +2 -2
- homeassistant/components/squeezebox/translations/ga.json +30 -0
- homeassistant/components/squeezebox/translations/it.json +4 -0
- homeassistant/components/srp_energy/translations/ga.json +13 -0
- homeassistant/components/starline/entity.py +1 -11
- homeassistant/components/starline/translations/fr.json +5 -0
- homeassistant/components/starline/translations/ga.json +5 -0
- homeassistant/components/statistics/translations/ga.json +8 -1
- homeassistant/components/stiebel_eltron/__init__.py +1 -1
- homeassistant/components/stiebel_eltron/manifest.json +1 -1
- homeassistant/components/stiebel_eltron/translations/ga.json +13 -0
- homeassistant/components/stookwijzer/const.py +0 -1
- homeassistant/components/stookwijzer/services.py +2 -1
- homeassistant/components/stookwijzer/translations/ga.json +3 -0
- homeassistant/components/streamlabswater/translations/ga.json +16 -0
- homeassistant/components/subaru/translations/ga.json +31 -0
- homeassistant/components/suez_water/translations/ga.json +10 -2
- homeassistant/components/suez_water/translations/it.json +1 -0
- homeassistant/components/sun/condition.py +3 -3
- homeassistant/components/surepetcare/translations/ga.json +8 -1
- homeassistant/components/swiss_public_transport/const.py +0 -1
- homeassistant/components/swiss_public_transport/services.py +1 -1
- homeassistant/components/swiss_public_transport/translations/ga.json +1 -0
- homeassistant/components/switch/translations/ga.json +16 -0
- homeassistant/components/switch_as_x/translations/ga.json +4 -0
- homeassistant/components/switch_as_x/translations/it.json +1 -1
- homeassistant/components/switchbee/translations/it.json +3 -0
- homeassistant/components/switchbot/icons.json +15 -0
- homeassistant/components/switchbot/manifest.json +1 -1
- homeassistant/components/switchbot/sensor.py +0 -1
- homeassistant/components/switchbot/translations/ga.json +28 -0
- homeassistant/components/switchbot/translations/nl.json +1 -0
- homeassistant/components/switchbot/vacuum.py +1 -7
- homeassistant/components/switchbot_cloud/__init__.py +28 -0
- homeassistant/components/switchbot_cloud/binary_sensor.py +5 -0
- homeassistant/components/switchbot_cloud/const.py +16 -0
- homeassistant/components/switchbot_cloud/cover.py +233 -0
- homeassistant/components/switchbot_cloud/fan.py +92 -9
- homeassistant/components/switchbot_cloud/icons.json +22 -0
- homeassistant/components/switchbot_cloud/sensor.py +4 -0
- homeassistant/components/switchbot_cloud/strings.json +16 -0
- homeassistant/components/switchbot_cloud/translations/bg.json +13 -0
- homeassistant/components/switchbot_cloud/translations/ca.json +13 -0
- homeassistant/components/switchbot_cloud/translations/cs.json +16 -0
- homeassistant/components/switchbot_cloud/translations/de.json +16 -0
- homeassistant/components/switchbot_cloud/translations/el.json +16 -0
- homeassistant/components/switchbot_cloud/translations/en-GB.json +16 -0
- homeassistant/components/switchbot_cloud/translations/en.json +16 -0
- homeassistant/components/switchbot_cloud/translations/et.json +16 -0
- homeassistant/components/switchbot_cloud/translations/fi.json +16 -0
- homeassistant/components/switchbot_cloud/translations/fr.json +18 -0
- homeassistant/components/switchbot_cloud/translations/ga.json +20 -0
- homeassistant/components/switchbot_cloud/translations/he.json +14 -0
- homeassistant/components/switchbot_cloud/translations/nl.json +15 -0
- homeassistant/components/switchbot_cloud/translations/ru.json +16 -0
- homeassistant/components/switchbot_cloud/translations/sk.json +16 -0
- homeassistant/components/switchbot_cloud/translations/zh-Hans.json +16 -0
- homeassistant/components/switchbot_cloud/translations/zh-Hant.json +16 -0
- homeassistant/components/switcher_kis/translations/ga.json +35 -0
- homeassistant/components/synology_dsm/translations/ga.json +27 -0
- homeassistant/components/system_bridge/manifest.json +1 -1
- homeassistant/components/system_bridge/translations/ga.json +54 -0
- homeassistant/components/system_log/translations/ga.json +30 -0
- homeassistant/components/systemmonitor/translations/ga.json +27 -0
- homeassistant/components/systemmonitor/translations/zh-Hant.json +1 -1
- homeassistant/components/tado/translations/ga.json +68 -0
- homeassistant/components/tailscale/translations/ga.json +5 -0
- homeassistant/components/tailwind/translations/el.json +1 -1
- homeassistant/components/tailwind/translations/ga.json +10 -0
- homeassistant/components/tami4/translations/ga.json +7 -1
- homeassistant/components/tankerkoenig/translations/ga.json +30 -1
- homeassistant/components/tautulli/translations/de.json +1 -1
- homeassistant/components/tautulli/translations/ga.json +33 -0
- homeassistant/components/technove/translations/ga.json +10 -0
- homeassistant/components/tedee/translations/ga.json +9 -0
- homeassistant/components/telegram/translations/ga.json +8 -0
- homeassistant/components/telegram_bot/__init__.py +12 -2
- homeassistant/components/telegram_bot/bot.py +19 -1
- homeassistant/components/telegram_bot/notify.py +62 -0
- homeassistant/components/telegram_bot/polling.py +1 -1
- homeassistant/components/telegram_bot/services.yaml +40 -17
- homeassistant/components/telegram_bot/translations/ga.json +451 -14
- homeassistant/components/telegram_bot/translations/it.json +10 -9
- homeassistant/components/telegram_bot/webhooks.py +1 -1
- homeassistant/components/tellduslive/translations/it.json +7 -0
- homeassistant/components/tellduslive/translations/zh-Hant.json +1 -1
- homeassistant/components/template/alarm_control_panel.py +7 -3
- homeassistant/components/template/binary_sensor.py +13 -11
- homeassistant/components/template/button.py +3 -3
- homeassistant/components/template/config.py +11 -1
- homeassistant/components/template/config_flow.py +83 -0
- homeassistant/components/template/const.py +4 -14
- homeassistant/components/template/cover.py +5 -3
- homeassistant/components/template/entity.py +6 -2
- homeassistant/components/template/event.py +237 -0
- homeassistant/components/template/fan.py +3 -3
- homeassistant/components/template/helpers.py +4 -3
- homeassistant/components/template/image.py +7 -3
- homeassistant/components/template/light.py +3 -3
- homeassistant/components/template/lock.py +3 -3
- homeassistant/components/template/number.py +4 -4
- homeassistant/components/template/schemas.py +109 -0
- homeassistant/components/template/select.py +3 -3
- homeassistant/components/template/sensor.py +15 -10
- homeassistant/components/template/strings.json +150 -1
- homeassistant/components/template/switch.py +3 -3
- homeassistant/components/template/template_entity.py +2 -100
- homeassistant/components/template/translations/bg.json +48 -0
- homeassistant/components/template/translations/ca.json +46 -0
- homeassistant/components/template/translations/cs.json +149 -0
- homeassistant/components/template/translations/de.json +149 -0
- homeassistant/components/template/translations/el.json +7 -1
- homeassistant/components/template/translations/en-GB.json +149 -0
- homeassistant/components/template/translations/en.json +149 -0
- homeassistant/components/template/translations/es.json +149 -0
- homeassistant/components/template/translations/et.json +149 -0
- homeassistant/components/template/translations/fr.json +152 -2
- homeassistant/components/template/translations/ga.json +121 -5
- homeassistant/components/template/translations/he.json +3 -1
- homeassistant/components/template/translations/ko.json +1 -1
- homeassistant/components/template/translations/nl.json +38 -1
- homeassistant/components/template/translations/pl.json +142 -1
- homeassistant/components/template/translations/pt.json +3 -2
- homeassistant/components/template/translations/ru.json +141 -2
- homeassistant/components/template/translations/sk.json +149 -0
- homeassistant/components/template/translations/sv.json +1 -1
- homeassistant/components/template/translations/zh-Hans.json +149 -0
- homeassistant/components/template/translations/zh-Hant.json +149 -0
- homeassistant/components/template/update.py +463 -0
- homeassistant/components/template/vacuum.py +7 -3
- homeassistant/components/template/weather.py +3 -2
- homeassistant/components/tesla_fleet/coordinator.py +5 -1
- homeassistant/components/tesla_fleet/translations/ga.json +41 -12
- homeassistant/components/tesla_fleet/translations/nl.json +31 -1
- homeassistant/components/tesla_wall_connector/translations/ga.json +35 -0
- homeassistant/components/teslemetry/__init__.py +22 -0
- homeassistant/components/teslemetry/icons.json +12 -0
- homeassistant/components/teslemetry/services.py +203 -0
- homeassistant/components/teslemetry/services.yaml +136 -0
- homeassistant/components/teslemetry/strings.json +143 -11
- homeassistant/components/teslemetry/translations/ca.json +33 -3
- homeassistant/components/teslemetry/translations/cs.json +142 -10
- homeassistant/components/teslemetry/translations/de.json +142 -10
- homeassistant/components/teslemetry/translations/el.json +108 -9
- homeassistant/components/teslemetry/translations/en-GB.json +142 -10
- homeassistant/components/teslemetry/translations/en.json +142 -10
- homeassistant/components/teslemetry/translations/es.json +0 -9
- homeassistant/components/teslemetry/translations/et.json +142 -10
- homeassistant/components/teslemetry/translations/fr.json +146 -1
- homeassistant/components/teslemetry/translations/ga.json +185 -34
- homeassistant/components/teslemetry/translations/he.json +53 -0
- homeassistant/components/teslemetry/translations/hu.json +0 -9
- homeassistant/components/teslemetry/translations/it.json +144 -1
- homeassistant/components/teslemetry/translations/ja.json +0 -6
- homeassistant/components/teslemetry/translations/lt.json +142 -10
- homeassistant/components/teslemetry/translations/nl.json +90 -0
- homeassistant/components/teslemetry/translations/pt.json +144 -10
- homeassistant/components/teslemetry/translations/ru.json +0 -9
- homeassistant/components/teslemetry/translations/sk.json +142 -10
- homeassistant/components/teslemetry/translations/sv.json +16 -10
- homeassistant/components/teslemetry/translations/tr.json +0 -6
- homeassistant/components/teslemetry/translations/zh-Hans.json +142 -10
- homeassistant/components/teslemetry/translations/zh-Hant.json +142 -10
- homeassistant/components/tessie/translations/ga.json +47 -10
- homeassistant/components/thethingsnetwork/translations/ga.json +9 -2
- homeassistant/components/thread/discovery.py +1 -0
- homeassistant/components/thread/translations/ga.json +7 -0
- homeassistant/components/tile/translations/ga.json +5 -0
- homeassistant/components/tilt_ble/manifest.json +1 -1
- homeassistant/components/tilt_pi/translations/ga.json +13 -0
- homeassistant/components/time/translations/ga.json +15 -0
- homeassistant/components/timer/translations/ga.json +43 -1
- homeassistant/components/todo/translations/it.json +19 -1
- homeassistant/components/todoist/translations/ga.json +22 -0
- homeassistant/components/togrill/__init__.py +33 -0
- homeassistant/components/togrill/config_flow.py +136 -0
- homeassistant/components/togrill/const.py +8 -0
- homeassistant/components/togrill/coordinator.py +217 -0
- homeassistant/components/togrill/entity.py +51 -0
- homeassistant/components/togrill/event.py +63 -0
- homeassistant/components/togrill/manifest.json +19 -0
- homeassistant/components/togrill/number.py +139 -0
- homeassistant/components/togrill/quality_scale.yaml +68 -0
- homeassistant/components/togrill/sensor.py +128 -0
- homeassistant/components/togrill/strings.json +74 -0
- homeassistant/components/togrill/translations/bg.json +18 -0
- homeassistant/components/togrill/translations/ca.json +20 -0
- homeassistant/components/togrill/translations/cs.json +74 -0
- homeassistant/components/togrill/translations/de.json +74 -0
- homeassistant/components/togrill/translations/el.json +56 -0
- homeassistant/components/togrill/translations/en-GB.json +74 -0
- homeassistant/components/togrill/translations/en.json +74 -0
- homeassistant/components/togrill/translations/es.json +23 -0
- homeassistant/components/togrill/translations/et.json +74 -0
- homeassistant/components/togrill/translations/fi.json +17 -0
- homeassistant/components/togrill/translations/fr.json +64 -0
- homeassistant/components/togrill/translations/ga.json +25 -0
- homeassistant/components/togrill/translations/he.json +21 -0
- homeassistant/components/togrill/translations/it.json +25 -0
- homeassistant/components/togrill/translations/lt.json +25 -0
- homeassistant/components/togrill/translations/nl.json +43 -0
- homeassistant/components/togrill/translations/pt.json +25 -0
- homeassistant/components/togrill/translations/ru.json +25 -0
- homeassistant/components/togrill/translations/sk.json +74 -0
- homeassistant/components/togrill/translations/sv.json +33 -0
- homeassistant/components/togrill/translations/zh-Hans.json +74 -0
- homeassistant/components/togrill/translations/zh-Hant.json +74 -0
- homeassistant/components/tolo/translations/ga.json +26 -0
- homeassistant/components/tomorrowio/sensor.py +3 -3
- homeassistant/components/tomorrowio/translations/fr.json +3 -0
- homeassistant/components/tomorrowio/translations/sensor.ga.json +11 -0
- homeassistant/components/toon/translations/ga.json +13 -0
- homeassistant/components/totalconnect/binary_sensor.py +2 -2
- homeassistant/components/totalconnect/config_flow.py +1 -5
- homeassistant/components/totalconnect/manifest.json +1 -1
- homeassistant/components/totalconnect/translations/fr.json +2 -1
- homeassistant/components/totalconnect/translations/ga.json +13 -0
- homeassistant/components/touchline_sl/manifest.json +1 -1
- homeassistant/components/touchline_sl/translations/ga.json +12 -0
- homeassistant/components/tplink/translations/fr.json +3 -0
- homeassistant/components/tplink/translations/ga.json +129 -2
- homeassistant/components/tplink/translations/nl.json +3 -0
- homeassistant/components/tplink_omada/translations/ga.json +2 -0
- homeassistant/components/traccar_server/manifest.json +1 -1
- homeassistant/components/traccar_server/translations/ga.json +21 -0
- homeassistant/components/tractive/translations/ga.json +12 -1
- homeassistant/components/trafikverket_camera/translations/ga.json +20 -0
- homeassistant/components/trafikverket_ferry/translations/ga.json +11 -0
- homeassistant/components/trafikverket_train/translations/ga.json +23 -0
- homeassistant/components/trafikverket_weatherstation/translations/fr.json +33 -1
- homeassistant/components/trafikverket_weatherstation/translations/ga.json +13 -0
- homeassistant/components/transmission/translations/ga.json +63 -0
- homeassistant/components/transmission/translations/it.json +2 -1
- homeassistant/components/trend/translations/ga.json +2 -1
- homeassistant/components/triggercmd/translations/ga.json +10 -1
- homeassistant/components/tts/translations/ga.json +3 -0
- homeassistant/components/tuya/__init__.py +10 -4
- homeassistant/components/tuya/alarm_control_panel.py +2 -1
- homeassistant/components/tuya/binary_sensor.py +22 -0
- homeassistant/components/tuya/climate.py +7 -6
- homeassistant/components/tuya/const.py +61 -15
- homeassistant/components/tuya/cover.py +2 -1
- homeassistant/components/tuya/entity.py +5 -18
- homeassistant/components/tuya/fan.py +30 -16
- homeassistant/components/tuya/humidifier.py +20 -4
- homeassistant/components/tuya/icons.json +3 -0
- homeassistant/components/tuya/light.py +3 -5
- homeassistant/components/tuya/models.py +8 -8
- homeassistant/components/tuya/number.py +86 -0
- homeassistant/components/tuya/sensor.py +175 -23
- homeassistant/components/tuya/strings.json +69 -2
- homeassistant/components/tuya/switch.py +44 -0
- homeassistant/components/tuya/translations/bg.json +27 -0
- homeassistant/components/tuya/translations/ca.json +10 -0
- homeassistant/components/tuya/translations/cs.json +67 -0
- homeassistant/components/tuya/translations/de.json +67 -0
- homeassistant/components/tuya/translations/el.json +57 -0
- homeassistant/components/tuya/translations/en-GB.json +67 -0
- homeassistant/components/tuya/translations/en.json +67 -0
- homeassistant/components/tuya/translations/es.json +38 -0
- homeassistant/components/tuya/translations/et.json +67 -0
- homeassistant/components/tuya/translations/fr.json +76 -0
- homeassistant/components/tuya/translations/ga.json +254 -0
- homeassistant/components/tuya/translations/he.json +13 -0
- homeassistant/components/tuya/translations/it.json +45 -0
- homeassistant/components/tuya/translations/ko.json +4 -1
- homeassistant/components/tuya/translations/lt.json +67 -0
- homeassistant/components/tuya/translations/nl.json +57 -0
- homeassistant/components/tuya/translations/pt.json +69 -0
- homeassistant/components/tuya/translations/ru.json +19 -0
- homeassistant/components/tuya/translations/select.ga.json +8 -0
- homeassistant/components/tuya/translations/sk.json +67 -0
- homeassistant/components/tuya/translations/sl.json +29 -0
- homeassistant/components/tuya/translations/sv.json +27 -0
- homeassistant/components/tuya/translations/zh-Hans.json +67 -0
- homeassistant/components/tuya/translations/zh-Hant.json +69 -2
- homeassistant/components/tuya/util.py +23 -0
- homeassistant/components/tuya/vacuum.py +5 -4
- homeassistant/components/tuya/valve.py +140 -0
- homeassistant/components/twilio/translations/it.json +5 -1
- homeassistant/components/twinkly/translations/ga.json +4 -0
- homeassistant/components/twinkly/translations/it.json +3 -0
- homeassistant/components/twitch/translations/ga.json +7 -1
- homeassistant/components/unifi/manifest.json +1 -1
- homeassistant/components/unifi/switch.py +37 -1
- homeassistant/components/unifi/translations/ga.json +18 -0
- homeassistant/components/unifi/translations/it.json +3 -0
- homeassistant/components/unifiprotect/services.py +19 -31
- homeassistant/components/unifiprotect/translations/el.json +1 -1
- homeassistant/components/unifiprotect/translations/fr.json +21 -0
- homeassistant/components/unifiprotect/translations/ga.json +70 -2
- homeassistant/components/unifiprotect/translations/it.json +3 -0
- homeassistant/components/upb/translations/ga.json +35 -0
- homeassistant/components/update/translations/ga.json +21 -1
- homeassistant/components/upnp/strings.json +0 -1
- homeassistant/components/upnp/translations/ar.json +1 -11
- homeassistant/components/upnp/translations/bg.json +0 -9
- homeassistant/components/upnp/translations/ca.json +0 -9
- homeassistant/components/upnp/translations/cs.json +1 -2
- homeassistant/components/upnp/translations/de.json +1 -2
- homeassistant/components/upnp/translations/el.json +1 -2
- homeassistant/components/upnp/translations/en-GB.json +1 -2
- homeassistant/components/upnp/translations/en.json +1 -2
- homeassistant/components/upnp/translations/es.json +1 -2
- homeassistant/components/upnp/translations/et.json +1 -2
- homeassistant/components/upnp/translations/fi.json +0 -9
- homeassistant/components/upnp/translations/fr.json +0 -9
- homeassistant/components/upnp/translations/ga.json +38 -0
- homeassistant/components/upnp/translations/hu.json +1 -2
- homeassistant/components/upnp/translations/id.json +1 -2
- homeassistant/components/upnp/translations/it.json +0 -9
- homeassistant/components/upnp/translations/ja.json +1 -2
- homeassistant/components/upnp/translations/ko.json +0 -9
- homeassistant/components/upnp/translations/lt.json +1 -2
- homeassistant/components/upnp/translations/nb.json +0 -9
- homeassistant/components/upnp/translations/nl.json +0 -9
- homeassistant/components/upnp/translations/pl.json +0 -9
- homeassistant/components/upnp/translations/pt-BR.json +0 -9
- homeassistant/components/upnp/translations/pt.json +1 -2
- homeassistant/components/upnp/translations/ro.json +0 -9
- homeassistant/components/upnp/translations/ru.json +1 -2
- homeassistant/components/upnp/translations/sk.json +1 -2
- homeassistant/components/upnp/translations/sl.json +0 -9
- homeassistant/components/upnp/translations/sv.json +1 -2
- homeassistant/components/upnp/translations/tr.json +1 -2
- homeassistant/components/upnp/translations/uk.json +0 -9
- homeassistant/components/upnp/translations/vi.json +0 -9
- homeassistant/components/upnp/translations/zh-Hans.json +1 -2
- homeassistant/components/upnp/translations/zh-Hant.json +1 -2
- homeassistant/components/uptime_kuma/manifest.json +1 -1
- homeassistant/components/uptime_kuma/quality_scale.yaml +3 -3
- homeassistant/components/uptime_kuma/translations/el.json +11 -1
- homeassistant/components/uptime_kuma/translations/ga.json +23 -0
- homeassistant/components/uptime_kuma/translations/zh-Hant.json +4 -4
- homeassistant/components/utility_meter/translations/ga.json +16 -0
- homeassistant/components/v2c/translations/ga.json +10 -0
- homeassistant/components/v2c/translations/it.json +3 -0
- homeassistant/components/vacuum/translations/ga.json +43 -4
- homeassistant/components/vallox/translations/ga.json +36 -1
- homeassistant/components/valve/translations/ga.json +10 -4
- homeassistant/components/vegehub/translations/ga.json +3 -0
- homeassistant/components/velbus/manifest.json +1 -1
- homeassistant/components/velbus/translations/ga.json +30 -4
- homeassistant/components/velux/binary_sensor.py +2 -2
- homeassistant/components/velux/cover.py +5 -3
- homeassistant/components/velux/entity.py +17 -2
- homeassistant/components/velux/strings.json +7 -0
- homeassistant/components/velux/translations/de.json +7 -0
- homeassistant/components/velux/translations/en-GB.json +7 -0
- homeassistant/components/velux/translations/en.json +7 -0
- homeassistant/components/velux/translations/et.json +7 -0
- homeassistant/components/velux/translations/ga.json +22 -0
- homeassistant/components/velux/translations/it.json +7 -0
- homeassistant/components/velux/translations/sk.json +7 -0
- homeassistant/components/velux/translations/zh-Hans.json +7 -0
- homeassistant/components/velux/translations/zh-Hant.json +7 -0
- homeassistant/components/venstar/translations/ga.json +1 -0
- homeassistant/components/venstar/translations/it.json +5 -1
- homeassistant/components/vera/entity.py +4 -0
- homeassistant/components/verisure/translations/ga.json +11 -0
- homeassistant/components/version/translations/ga.json +3 -0
- homeassistant/components/vesync/translations/ga.json +17 -2
- homeassistant/components/vicare/manifest.json +1 -1
- homeassistant/components/vicare/translations/ga.json +51 -4
- homeassistant/components/vilfo/translations/ga.json +3 -0
- homeassistant/components/vilfo/translations/it.json +3 -0
- homeassistant/components/vizio/translations/ga.json +20 -0
- homeassistant/components/vizio/translations/it.json +16 -2
- homeassistant/components/vodafone_station/coordinator.py +1 -0
- homeassistant/components/vodafone_station/translations/ga.json +44 -2
- homeassistant/components/voip/assist_satellite.py +1 -0
- homeassistant/components/volumio/translations/it.json +3 -0
- homeassistant/components/volvo/__init__.py +5 -0
- homeassistant/components/volvo/binary_sensor.py +408 -0
- homeassistant/components/volvo/const.py +2 -5
- homeassistant/components/volvo/coordinator.py +73 -2
- homeassistant/components/volvo/icons.json +260 -0
- homeassistant/components/volvo/sensor.py +13 -26
- homeassistant/components/volvo/strings.json +137 -0
- homeassistant/components/volvo/translations/cs.json +137 -0
- homeassistant/components/volvo/translations/de.json +137 -0
- homeassistant/components/volvo/translations/el.json +7 -1
- homeassistant/components/volvo/translations/en-GB.json +137 -0
- homeassistant/components/volvo/translations/en.json +137 -0
- homeassistant/components/volvo/translations/et.json +137 -0
- homeassistant/components/volvo/translations/fr.json +12 -0
- homeassistant/components/volvo/translations/ga.json +27 -3
- homeassistant/components/volvo/translations/nl.json +8 -0
- homeassistant/components/volvo/translations/pt.json +4 -1
- homeassistant/components/volvo/translations/sk.json +137 -0
- homeassistant/components/volvo/translations/zh-Hans.json +137 -0
- homeassistant/components/volvo/translations/zh-Hant.json +137 -0
- homeassistant/components/vulcan/translations/ga.json +9 -0
- homeassistant/components/wake_on_lan/translations/ga.json +6 -0
- homeassistant/components/wallbox/translations/ga.json +7 -1
- homeassistant/components/waqi/translations/ga.json +15 -0
- homeassistant/components/water_heater/translations/ga.json +43 -3
- homeassistant/components/watergate/translations/ga.json +9 -0
- homeassistant/components/waze_travel_time/__init__.py +14 -107
- homeassistant/components/waze_travel_time/coordinator.py +245 -0
- homeassistant/components/waze_travel_time/sensor.py +19 -149
- homeassistant/components/waze_travel_time/translations/nl.json +4 -0
- homeassistant/components/weather/translations/fr.json +1 -1
- homeassistant/components/weather/translations/ga.json +28 -0
- homeassistant/components/weather/translations/it.json +7 -3
- homeassistant/components/weather/translations/zh-Hant.json +1 -1
- homeassistant/components/weatherflow/translations/fr.json +10 -0
- homeassistant/components/weatherflow/translations/ga.json +14 -1
- homeassistant/components/weatherflow/translations/it.json +3 -0
- homeassistant/components/weatherflow/translations/zh-Hant.json +1 -1
- homeassistant/components/weatherflow_cloud/translations/fr.json +44 -0
- homeassistant/components/weatherflow_cloud/translations/ga.json +8 -0
- homeassistant/components/weatherkit/translations/ga.json +5 -0
- homeassistant/components/webdav/translations/ga.json +12 -2
- homeassistant/components/webmin/translations/ga.json +19 -0
- homeassistant/components/webostv/__init__.py +2 -7
- homeassistant/components/webostv/const.py +0 -1
- homeassistant/components/webostv/notify.py +2 -2
- homeassistant/components/webostv/translations/ga.json +37 -0
- homeassistant/components/webostv/translations/zh-Hant.json +3 -3
- homeassistant/components/websocket_api/translations/it.json +7 -0
- homeassistant/components/weheat/translations/ga.json +15 -1
- homeassistant/components/wemo/coordinator.py +0 -1
- homeassistant/components/wemo/translations/ga.json +18 -0
- homeassistant/components/whirlpool/translations/ga.json +13 -1
- homeassistant/components/wilight/translations/ga.json +48 -0
- homeassistant/components/withings/diagnostics.py +11 -0
- homeassistant/components/withings/translations/ga.json +5 -0
- homeassistant/components/wled/translations/it.json +3 -0
- homeassistant/components/wmspro/translations/ga.json +13 -0
- homeassistant/components/workday/__init__.py +51 -82
- homeassistant/components/workday/binary_sensor.py +18 -298
- homeassistant/components/workday/entity.py +115 -0
- homeassistant/components/workday/manifest.json +1 -1
- homeassistant/components/workday/translations/it.json +2 -1
- homeassistant/components/workday/util.py +254 -0
- homeassistant/components/worldclock/translations/ga.json +7 -0
- homeassistant/components/wyoming/translations/ga.json +21 -1
- homeassistant/components/wyoming/translations/it.json +15 -0
- homeassistant/components/xbox/translations/ga.json +2 -0
- homeassistant/components/xiaomi_aqara/translations/ga.json +12 -0
- homeassistant/components/xiaomi_ble/manifest.json +1 -1
- homeassistant/components/xiaomi_ble/strings.json +1 -1
- homeassistant/components/xiaomi_ble/translations/el.json +2 -1
- homeassistant/components/xiaomi_ble/translations/ga.json +4 -0
- homeassistant/components/xiaomi_ble/translations/pt.json +2 -1
- homeassistant/components/xiaomi_miio/translations/ga.json +157 -0
- homeassistant/components/xiaomi_miio/translations/select.ga.json +9 -0
- homeassistant/components/yale/manifest.json +1 -1
- homeassistant/components/yale/translations/ga.json +20 -2
- homeassistant/components/yale_smart_alarm/translations/fr.json +42 -2
- homeassistant/components/yale_smart_alarm/translations/ga.json +10 -1
- homeassistant/components/yalexs_ble/translations/ga.json +5 -0
- homeassistant/components/yamaha_musiccast/translations/ga.json +13 -0
- homeassistant/components/yamaha_musiccast/translations/it.json +3 -0
- homeassistant/components/yamaha_musiccast/translations/select.ga.json +7 -0
- homeassistant/components/yardian/translations/ga.json +16 -2
- homeassistant/components/yardian/translations/it.json +3 -0
- homeassistant/components/yeelight/translations/ga.json +80 -0
- homeassistant/components/yolink/__init__.py +1 -0
- homeassistant/components/yolink/coordinator.py +17 -1
- homeassistant/components/yolink/entity.py +3 -11
- homeassistant/components/yolink/icons.json +10 -0
- homeassistant/components/yolink/manifest.json +1 -1
- homeassistant/components/yolink/select.py +119 -0
- homeassistant/components/yolink/sensor.py +5 -0
- homeassistant/components/yolink/strings.json +13 -0
- homeassistant/components/yolink/translations/bg.json +10 -0
- homeassistant/components/yolink/translations/ca.json +10 -0
- homeassistant/components/yolink/translations/cs.json +13 -0
- homeassistant/components/yolink/translations/de.json +13 -0
- homeassistant/components/yolink/translations/el.json +15 -0
- homeassistant/components/yolink/translations/en-GB.json +13 -0
- homeassistant/components/yolink/translations/en.json +13 -0
- homeassistant/components/yolink/translations/et.json +13 -0
- homeassistant/components/yolink/translations/fr.json +20 -0
- homeassistant/components/yolink/translations/ga.json +30 -0
- homeassistant/components/yolink/translations/he.json +14 -0
- homeassistant/components/yolink/translations/nl.json +9 -0
- homeassistant/components/yolink/translations/pt.json +3 -0
- homeassistant/components/yolink/translations/ru.json +13 -0
- homeassistant/components/yolink/translations/sk.json +13 -0
- homeassistant/components/yolink/translations/zh-Hans.json +13 -0
- homeassistant/components/yolink/translations/zh-Hant.json +13 -0
- homeassistant/components/yolink/valve.py +47 -3
- homeassistant/components/youless/translations/it.json +3 -0
- homeassistant/components/youtube/translations/ga.json +12 -0
- homeassistant/components/zeversolar/entity.py +1 -0
- homeassistant/components/zeversolar/translations/it.json +3 -0
- homeassistant/components/zha/manifest.json +7 -1
- homeassistant/components/zha/strings.json +69 -0
- homeassistant/components/zha/translations/cs.json +69 -0
- homeassistant/components/zha/translations/de.json +69 -0
- homeassistant/components/zha/translations/en-GB.json +69 -0
- homeassistant/components/zha/translations/en.json +69 -0
- homeassistant/components/zha/translations/et.json +69 -0
- homeassistant/components/zha/translations/fr.json +12 -0
- homeassistant/components/zha/translations/ga.json +187 -8
- homeassistant/components/zha/translations/it.json +3 -0
- homeassistant/components/zha/translations/lt.json +20 -20
- homeassistant/components/zha/translations/sk.json +66 -0
- homeassistant/components/zha/translations/zh-Hans.json +69 -0
- homeassistant/components/zha/translations/zh-Hant.json +69 -0
- homeassistant/components/zimi/cover.py +7 -5
- homeassistant/components/zimi/manifest.json +1 -1
- homeassistant/components/zimi/quality_scale.yaml +1 -0
- homeassistant/components/zimi/translations/ga.json +14 -1
- homeassistant/components/zone/condition.py +3 -3
- homeassistant/components/zwave_js/__init__.py +11 -11
- homeassistant/components/zwave_js/binary_sensor.py +174 -58
- homeassistant/components/zwave_js/config_flow.py +66 -4
- homeassistant/components/zwave_js/const.py +0 -1
- homeassistant/components/zwave_js/cover.py +15 -3
- homeassistant/components/zwave_js/discovery.py +81 -120
- homeassistant/components/zwave_js/discovery_data_template.py +1 -46
- homeassistant/components/zwave_js/entity.py +32 -9
- homeassistant/components/zwave_js/helpers.py +0 -10
- homeassistant/components/zwave_js/migrate.py +4 -3
- homeassistant/components/zwave_js/models.py +225 -3
- homeassistant/components/zwave_js/sensor.py +27 -11
- homeassistant/components/zwave_js/strings.json +10 -0
- homeassistant/components/zwave_js/translations/cs.json +10 -0
- homeassistant/components/zwave_js/translations/de.json +10 -0
- homeassistant/components/zwave_js/translations/el.json +10 -2
- homeassistant/components/zwave_js/translations/en-GB.json +10 -0
- homeassistant/components/zwave_js/translations/en.json +10 -0
- homeassistant/components/zwave_js/translations/et.json +10 -0
- homeassistant/components/zwave_js/translations/fr.json +21 -1
- homeassistant/components/zwave_js/translations/ga.json +86 -6
- homeassistant/components/zwave_js/translations/it.json +16 -1
- homeassistant/components/zwave_js/translations/pt.json +10 -2
- homeassistant/components/zwave_js/translations/ru.json +10 -2
- homeassistant/components/zwave_js/translations/sk.json +10 -0
- homeassistant/components/zwave_js/translations/zh-Hans.json +10 -0
- homeassistant/components/zwave_js/translations/zh-Hant.json +10 -0
- homeassistant/components/zwave_js/trigger.py +2 -2
- homeassistant/components/zwave_js/triggers/event.py +12 -5
- homeassistant/components/zwave_js/triggers/trigger_helpers.py +2 -2
- homeassistant/components/zwave_js/triggers/value_updated.py +6 -3
- homeassistant/components/zwave_js/update.py +0 -20
- homeassistant/config_entries.py +68 -7
- homeassistant/const.py +13 -7
- homeassistant/data_entry_flow.py +3 -14
- homeassistant/generated/application_credentials.py +2 -0
- homeassistant/generated/bluetooth.py +21 -0
- homeassistant/generated/config_flows.py +5 -1
- homeassistant/generated/integrations.json +24 -22
- homeassistant/generated/usb.py +6 -0
- homeassistant/generated/zeroconf.py +4 -0
- homeassistant/helpers/automation.py +21 -0
- homeassistant/helpers/condition.py +49 -33
- homeassistant/helpers/config_entry_oauth2_flow.py +1 -1
- homeassistant/helpers/config_validation.py +27 -0
- homeassistant/helpers/data_entry_flow.py +13 -13
- homeassistant/helpers/device_registry.py +39 -6
- homeassistant/helpers/entity_registry.py +24 -1
- homeassistant/helpers/json.py +1 -33
- homeassistant/helpers/llm.py +2 -1
- homeassistant/helpers/schema_config_entry_flow.py +16 -3
- homeassistant/helpers/selector.py +9 -3
- homeassistant/helpers/target.py +7 -2
- homeassistant/helpers/trigger.py +34 -24
- homeassistant/package_constraints.txt +18 -16
- homeassistant/util/unit_conversion.py +34 -0
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/METADATA +6 -6
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/RECORD +2839 -2576
- homeassistant/components/aps/__init__.py +0 -1
- homeassistant/components/aps/manifest.json +0 -6
- homeassistant/components/linear_garage_door/__init__.py +0 -54
- homeassistant/components/linear_garage_door/config_flow.py +0 -160
- homeassistant/components/linear_garage_door/const.py +0 -3
- homeassistant/components/linear_garage_door/coordinator.py +0 -86
- homeassistant/components/linear_garage_door/cover.py +0 -85
- homeassistant/components/linear_garage_door/diagnostics.py +0 -29
- homeassistant/components/linear_garage_door/entity.py +0 -43
- homeassistant/components/linear_garage_door/light.py +0 -78
- homeassistant/components/linear_garage_door/manifest.json +0 -9
- homeassistant/components/linear_garage_door/strings.json +0 -33
- homeassistant/components/linear_garage_door/translations/bg.json +0 -27
- homeassistant/components/linear_garage_door/translations/ca.json +0 -27
- homeassistant/components/linear_garage_door/translations/cs.json +0 -33
- homeassistant/components/linear_garage_door/translations/de.json +0 -33
- homeassistant/components/linear_garage_door/translations/el.json +0 -33
- homeassistant/components/linear_garage_door/translations/en-GB.json +0 -33
- homeassistant/components/linear_garage_door/translations/en.json +0 -33
- homeassistant/components/linear_garage_door/translations/es.json +0 -33
- homeassistant/components/linear_garage_door/translations/et.json +0 -33
- homeassistant/components/linear_garage_door/translations/fi.json +0 -20
- homeassistant/components/linear_garage_door/translations/fr.json +0 -18
- homeassistant/components/linear_garage_door/translations/ga.json +0 -8
- homeassistant/components/linear_garage_door/translations/he.json +0 -27
- homeassistant/components/linear_garage_door/translations/hu.json +0 -33
- homeassistant/components/linear_garage_door/translations/id.json +0 -27
- homeassistant/components/linear_garage_door/translations/it.json +0 -27
- homeassistant/components/linear_garage_door/translations/ja.json +0 -33
- homeassistant/components/linear_garage_door/translations/ko.json +0 -20
- homeassistant/components/linear_garage_door/translations/lt.json +0 -33
- homeassistant/components/linear_garage_door/translations/nb.json +0 -20
- homeassistant/components/linear_garage_door/translations/nl.json +0 -33
- homeassistant/components/linear_garage_door/translations/pl.json +0 -27
- homeassistant/components/linear_garage_door/translations/pt-BR.json +0 -26
- homeassistant/components/linear_garage_door/translations/pt.json +0 -33
- homeassistant/components/linear_garage_door/translations/ru.json +0 -33
- homeassistant/components/linear_garage_door/translations/sk.json +0 -33
- homeassistant/components/linear_garage_door/translations/sl.json +0 -20
- homeassistant/components/linear_garage_door/translations/sv.json +0 -33
- homeassistant/components/linear_garage_door/translations/tr.json +0 -33
- homeassistant/components/linear_garage_door/translations/vi.json +0 -9
- homeassistant/components/linear_garage_door/translations/zh-Hans.json +0 -33
- homeassistant/components/linear_garage_door/translations/zh-Hant.json +0 -33
- homeassistant/components/mastodon/notify.py +0 -152
- homeassistant/components/mercury_nz/__init__.py +0 -1
- homeassistant/components/mercury_nz/manifest.json +0 -6
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/WHEEL +0 -0
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/entry_points.txt +0 -0
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/licenses/LICENSE.md +0 -0
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
- {homeassistant-2025.8.2.dist-info → homeassistant-2025.9.0b0.dist-info}/top_level.txt +0 -0
|
@@ -7,10 +7,7 @@ import logging
|
|
|
7
7
|
import voluptuous as vol
|
|
8
8
|
|
|
9
9
|
from homeassistant.components import alarm_control_panel as alarm
|
|
10
|
-
from homeassistant.components.alarm_control_panel import
|
|
11
|
-
AlarmControlPanelEntityFeature,
|
|
12
|
-
AlarmControlPanelState,
|
|
13
|
-
)
|
|
10
|
+
from homeassistant.components.alarm_control_panel import AlarmControlPanelState
|
|
14
11
|
from homeassistant.config_entries import ConfigEntry
|
|
15
12
|
from homeassistant.const import CONF_CODE, CONF_NAME, CONF_VALUE_TEMPLATE
|
|
16
13
|
from homeassistant.core import HomeAssistant, callback
|
|
@@ -21,12 +18,33 @@ from homeassistant.helpers.typing import ConfigType
|
|
|
21
18
|
from . import subscription
|
|
22
19
|
from .config import DEFAULT_RETAIN, MQTT_BASE_SCHEMA
|
|
23
20
|
from .const import (
|
|
21
|
+
ALARM_CONTROL_PANEL_SUPPORTED_FEATURES,
|
|
22
|
+
CONF_CODE_ARM_REQUIRED,
|
|
23
|
+
CONF_CODE_DISARM_REQUIRED,
|
|
24
|
+
CONF_CODE_TRIGGER_REQUIRED,
|
|
24
25
|
CONF_COMMAND_TEMPLATE,
|
|
25
26
|
CONF_COMMAND_TOPIC,
|
|
27
|
+
CONF_PAYLOAD_ARM_AWAY,
|
|
28
|
+
CONF_PAYLOAD_ARM_CUSTOM_BYPASS,
|
|
29
|
+
CONF_PAYLOAD_ARM_HOME,
|
|
30
|
+
CONF_PAYLOAD_ARM_NIGHT,
|
|
31
|
+
CONF_PAYLOAD_ARM_VACATION,
|
|
32
|
+
CONF_PAYLOAD_DISARM,
|
|
33
|
+
CONF_PAYLOAD_TRIGGER,
|
|
26
34
|
CONF_RETAIN,
|
|
27
35
|
CONF_STATE_TOPIC,
|
|
28
36
|
CONF_SUPPORTED_FEATURES,
|
|
37
|
+
DEFAULT_ALARM_CONTROL_PANEL_COMMAND_TEMPLATE,
|
|
38
|
+
DEFAULT_PAYLOAD_ARM_AWAY,
|
|
39
|
+
DEFAULT_PAYLOAD_ARM_CUSTOM_BYPASS,
|
|
40
|
+
DEFAULT_PAYLOAD_ARM_HOME,
|
|
41
|
+
DEFAULT_PAYLOAD_ARM_NIGHT,
|
|
42
|
+
DEFAULT_PAYLOAD_ARM_VACATION,
|
|
43
|
+
DEFAULT_PAYLOAD_DISARM,
|
|
44
|
+
DEFAULT_PAYLOAD_TRIGGER,
|
|
29
45
|
PAYLOAD_NONE,
|
|
46
|
+
REMOTE_CODE,
|
|
47
|
+
REMOTE_CODE_TEXT,
|
|
30
48
|
)
|
|
31
49
|
from .entity import MqttEntity, async_setup_entity_entry_helper
|
|
32
50
|
from .models import MqttCommandTemplate, MqttValueTemplate, ReceiveMessage
|
|
@@ -37,26 +55,6 @@ _LOGGER = logging.getLogger(__name__)
|
|
|
37
55
|
|
|
38
56
|
PARALLEL_UPDATES = 0
|
|
39
57
|
|
|
40
|
-
_SUPPORTED_FEATURES = {
|
|
41
|
-
"arm_home": AlarmControlPanelEntityFeature.ARM_HOME,
|
|
42
|
-
"arm_away": AlarmControlPanelEntityFeature.ARM_AWAY,
|
|
43
|
-
"arm_night": AlarmControlPanelEntityFeature.ARM_NIGHT,
|
|
44
|
-
"arm_vacation": AlarmControlPanelEntityFeature.ARM_VACATION,
|
|
45
|
-
"arm_custom_bypass": AlarmControlPanelEntityFeature.ARM_CUSTOM_BYPASS,
|
|
46
|
-
"trigger": AlarmControlPanelEntityFeature.TRIGGER,
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
CONF_CODE_ARM_REQUIRED = "code_arm_required"
|
|
50
|
-
CONF_CODE_DISARM_REQUIRED = "code_disarm_required"
|
|
51
|
-
CONF_CODE_TRIGGER_REQUIRED = "code_trigger_required"
|
|
52
|
-
CONF_PAYLOAD_DISARM = "payload_disarm"
|
|
53
|
-
CONF_PAYLOAD_ARM_HOME = "payload_arm_home"
|
|
54
|
-
CONF_PAYLOAD_ARM_AWAY = "payload_arm_away"
|
|
55
|
-
CONF_PAYLOAD_ARM_NIGHT = "payload_arm_night"
|
|
56
|
-
CONF_PAYLOAD_ARM_VACATION = "payload_arm_vacation"
|
|
57
|
-
CONF_PAYLOAD_ARM_CUSTOM_BYPASS = "payload_arm_custom_bypass"
|
|
58
|
-
CONF_PAYLOAD_TRIGGER = "payload_trigger"
|
|
59
|
-
|
|
60
58
|
MQTT_ALARM_ATTRIBUTES_BLOCKED = frozenset(
|
|
61
59
|
{
|
|
62
60
|
alarm.ATTR_CHANGED_BY,
|
|
@@ -65,44 +63,40 @@ MQTT_ALARM_ATTRIBUTES_BLOCKED = frozenset(
|
|
|
65
63
|
}
|
|
66
64
|
)
|
|
67
65
|
|
|
68
|
-
DEFAULT_COMMAND_TEMPLATE = "{{action}}"
|
|
69
|
-
DEFAULT_ARM_NIGHT = "ARM_NIGHT"
|
|
70
|
-
DEFAULT_ARM_VACATION = "ARM_VACATION"
|
|
71
|
-
DEFAULT_ARM_AWAY = "ARM_AWAY"
|
|
72
|
-
DEFAULT_ARM_HOME = "ARM_HOME"
|
|
73
|
-
DEFAULT_ARM_CUSTOM_BYPASS = "ARM_CUSTOM_BYPASS"
|
|
74
|
-
DEFAULT_DISARM = "DISARM"
|
|
75
|
-
DEFAULT_TRIGGER = "TRIGGER"
|
|
76
66
|
DEFAULT_NAME = "MQTT Alarm"
|
|
77
67
|
|
|
78
|
-
REMOTE_CODE = "REMOTE_CODE"
|
|
79
|
-
REMOTE_CODE_TEXT = "REMOTE_CODE_TEXT"
|
|
80
|
-
|
|
81
68
|
PLATFORM_SCHEMA_MODERN = MQTT_BASE_SCHEMA.extend(
|
|
82
69
|
{
|
|
83
|
-
vol.Optional(
|
|
84
|
-
|
|
85
|
-
|
|
70
|
+
vol.Optional(
|
|
71
|
+
CONF_SUPPORTED_FEATURES,
|
|
72
|
+
default=list(ALARM_CONTROL_PANEL_SUPPORTED_FEATURES),
|
|
73
|
+
): [vol.In(ALARM_CONTROL_PANEL_SUPPORTED_FEATURES)],
|
|
86
74
|
vol.Optional(CONF_CODE): cv.string,
|
|
87
75
|
vol.Optional(CONF_CODE_ARM_REQUIRED, default=True): cv.boolean,
|
|
88
76
|
vol.Optional(CONF_CODE_DISARM_REQUIRED, default=True): cv.boolean,
|
|
89
77
|
vol.Optional(CONF_CODE_TRIGGER_REQUIRED, default=True): cv.boolean,
|
|
90
78
|
vol.Optional(
|
|
91
|
-
CONF_COMMAND_TEMPLATE, default=
|
|
79
|
+
CONF_COMMAND_TEMPLATE, default=DEFAULT_ALARM_CONTROL_PANEL_COMMAND_TEMPLATE
|
|
92
80
|
): cv.template,
|
|
93
81
|
vol.Required(CONF_COMMAND_TOPIC): valid_publish_topic,
|
|
94
82
|
vol.Optional(CONF_NAME): vol.Any(cv.string, None),
|
|
95
|
-
vol.Optional(CONF_PAYLOAD_ARM_AWAY, default=DEFAULT_ARM_AWAY): cv.string,
|
|
96
|
-
vol.Optional(CONF_PAYLOAD_ARM_HOME, default=DEFAULT_ARM_HOME): cv.string,
|
|
97
|
-
vol.Optional(CONF_PAYLOAD_ARM_NIGHT, default=DEFAULT_ARM_NIGHT): cv.string,
|
|
98
83
|
vol.Optional(
|
|
99
|
-
|
|
84
|
+
CONF_PAYLOAD_ARM_AWAY, default=DEFAULT_PAYLOAD_ARM_AWAY
|
|
85
|
+
): cv.string,
|
|
86
|
+
vol.Optional(
|
|
87
|
+
CONF_PAYLOAD_ARM_HOME, default=DEFAULT_PAYLOAD_ARM_HOME
|
|
88
|
+
): cv.string,
|
|
89
|
+
vol.Optional(
|
|
90
|
+
CONF_PAYLOAD_ARM_NIGHT, default=DEFAULT_PAYLOAD_ARM_NIGHT
|
|
91
|
+
): cv.string,
|
|
92
|
+
vol.Optional(
|
|
93
|
+
CONF_PAYLOAD_ARM_VACATION, default=DEFAULT_PAYLOAD_ARM_VACATION
|
|
100
94
|
): cv.string,
|
|
101
95
|
vol.Optional(
|
|
102
|
-
CONF_PAYLOAD_ARM_CUSTOM_BYPASS, default=
|
|
96
|
+
CONF_PAYLOAD_ARM_CUSTOM_BYPASS, default=DEFAULT_PAYLOAD_ARM_CUSTOM_BYPASS
|
|
103
97
|
): cv.string,
|
|
104
|
-
vol.Optional(CONF_PAYLOAD_DISARM, default=
|
|
105
|
-
vol.Optional(CONF_PAYLOAD_TRIGGER, default=
|
|
98
|
+
vol.Optional(CONF_PAYLOAD_DISARM, default=DEFAULT_PAYLOAD_DISARM): cv.string,
|
|
99
|
+
vol.Optional(CONF_PAYLOAD_TRIGGER, default=DEFAULT_PAYLOAD_TRIGGER): cv.string,
|
|
106
100
|
vol.Optional(CONF_RETAIN, default=DEFAULT_RETAIN): cv.boolean,
|
|
107
101
|
vol.Required(CONF_STATE_TOPIC): valid_subscribe_topic,
|
|
108
102
|
vol.Optional(CONF_VALUE_TEMPLATE): cv.template,
|
|
@@ -152,7 +146,9 @@ class MqttAlarm(MqttEntity, alarm.AlarmControlPanelEntity):
|
|
|
152
146
|
).async_render
|
|
153
147
|
|
|
154
148
|
for feature in self._config[CONF_SUPPORTED_FEATURES]:
|
|
155
|
-
self._attr_supported_features |=
|
|
149
|
+
self._attr_supported_features |= ALARM_CONTROL_PANEL_SUPPORTED_FEATURES[
|
|
150
|
+
feature
|
|
151
|
+
]
|
|
156
152
|
|
|
157
153
|
if (code := self._config.get(CONF_CODE)) is None:
|
|
158
154
|
self._attr_code_format = None
|
|
@@ -71,6 +71,7 @@ from homeassistant.const import (
|
|
|
71
71
|
ATTR_SW_VERSION,
|
|
72
72
|
CONF_BRIGHTNESS,
|
|
73
73
|
CONF_CLIENT_ID,
|
|
74
|
+
CONF_CODE,
|
|
74
75
|
CONF_DEVICE,
|
|
75
76
|
CONF_DEVICE_CLASS,
|
|
76
77
|
CONF_DISCOVERY,
|
|
@@ -129,6 +130,7 @@ from homeassistant.util.unit_conversion import TemperatureConverter
|
|
|
129
130
|
from .addon import get_addon_manager
|
|
130
131
|
from .client import MqttClientSetup
|
|
131
132
|
from .const import (
|
|
133
|
+
ALARM_CONTROL_PANEL_SUPPORTED_FEATURES,
|
|
132
134
|
ATTR_PAYLOAD,
|
|
133
135
|
ATTR_QOS,
|
|
134
136
|
ATTR_RETAIN,
|
|
@@ -149,6 +151,10 @@ from .const import (
|
|
|
149
151
|
CONF_CERTIFICATE,
|
|
150
152
|
CONF_CLIENT_CERT,
|
|
151
153
|
CONF_CLIENT_KEY,
|
|
154
|
+
CONF_CODE_ARM_REQUIRED,
|
|
155
|
+
CONF_CODE_DISARM_REQUIRED,
|
|
156
|
+
CONF_CODE_FORMAT,
|
|
157
|
+
CONF_CODE_TRIGGER_REQUIRED,
|
|
152
158
|
CONF_COLOR_MODE_STATE_TOPIC,
|
|
153
159
|
CONF_COLOR_MODE_VALUE_TEMPLATE,
|
|
154
160
|
CONF_COLOR_TEMP_COMMAND_TEMPLATE,
|
|
@@ -215,17 +221,26 @@ from .const import (
|
|
|
215
221
|
CONF_OSCILLATION_COMMAND_TOPIC,
|
|
216
222
|
CONF_OSCILLATION_STATE_TOPIC,
|
|
217
223
|
CONF_OSCILLATION_VALUE_TEMPLATE,
|
|
224
|
+
CONF_PAYLOAD_ARM_AWAY,
|
|
225
|
+
CONF_PAYLOAD_ARM_CUSTOM_BYPASS,
|
|
226
|
+
CONF_PAYLOAD_ARM_HOME,
|
|
227
|
+
CONF_PAYLOAD_ARM_NIGHT,
|
|
228
|
+
CONF_PAYLOAD_ARM_VACATION,
|
|
218
229
|
CONF_PAYLOAD_AVAILABLE,
|
|
219
230
|
CONF_PAYLOAD_CLOSE,
|
|
231
|
+
CONF_PAYLOAD_LOCK,
|
|
220
232
|
CONF_PAYLOAD_NOT_AVAILABLE,
|
|
221
233
|
CONF_PAYLOAD_OPEN,
|
|
222
234
|
CONF_PAYLOAD_OSCILLATION_OFF,
|
|
223
235
|
CONF_PAYLOAD_OSCILLATION_ON,
|
|
224
236
|
CONF_PAYLOAD_PRESS,
|
|
237
|
+
CONF_PAYLOAD_RESET,
|
|
225
238
|
CONF_PAYLOAD_RESET_PERCENTAGE,
|
|
226
239
|
CONF_PAYLOAD_RESET_PRESET_MODE,
|
|
227
240
|
CONF_PAYLOAD_STOP,
|
|
228
241
|
CONF_PAYLOAD_STOP_TILT,
|
|
242
|
+
CONF_PAYLOAD_TRIGGER,
|
|
243
|
+
CONF_PAYLOAD_UNLOCK,
|
|
229
244
|
CONF_PERCENTAGE_COMMAND_TEMPLATE,
|
|
230
245
|
CONF_PERCENTAGE_COMMAND_TOPIC,
|
|
231
246
|
CONF_PERCENTAGE_STATE_TOPIC,
|
|
@@ -262,15 +277,21 @@ from .const import (
|
|
|
262
277
|
CONF_SPEED_RANGE_MIN,
|
|
263
278
|
CONF_STATE_CLOSED,
|
|
264
279
|
CONF_STATE_CLOSING,
|
|
280
|
+
CONF_STATE_JAMMED,
|
|
281
|
+
CONF_STATE_LOCKED,
|
|
282
|
+
CONF_STATE_LOCKING,
|
|
265
283
|
CONF_STATE_OFF,
|
|
266
284
|
CONF_STATE_ON,
|
|
267
285
|
CONF_STATE_OPEN,
|
|
268
286
|
CONF_STATE_OPENING,
|
|
269
287
|
CONF_STATE_STOPPED,
|
|
270
288
|
CONF_STATE_TOPIC,
|
|
289
|
+
CONF_STATE_UNLOCKED,
|
|
290
|
+
CONF_STATE_UNLOCKING,
|
|
271
291
|
CONF_STATE_VALUE_TEMPLATE,
|
|
272
292
|
CONF_SUGGESTED_DISPLAY_PRECISION,
|
|
273
293
|
CONF_SUPPORTED_COLOR_MODES,
|
|
294
|
+
CONF_SUPPORTED_FEATURES,
|
|
274
295
|
CONF_SWING_HORIZONTAL_MODE_COMMAND_TEMPLATE,
|
|
275
296
|
CONF_SWING_HORIZONTAL_MODE_COMMAND_TOPIC,
|
|
276
297
|
CONF_SWING_HORIZONTAL_MODE_LIST,
|
|
@@ -320,14 +341,21 @@ from .const import (
|
|
|
320
341
|
CONF_XY_VALUE_TEMPLATE,
|
|
321
342
|
CONFIG_ENTRY_MINOR_VERSION,
|
|
322
343
|
CONFIG_ENTRY_VERSION,
|
|
344
|
+
DEFAULT_ALARM_CONTROL_PANEL_COMMAND_TEMPLATE,
|
|
323
345
|
DEFAULT_BIRTH,
|
|
324
346
|
DEFAULT_CLIMATE_INITIAL_TEMPERATURE,
|
|
325
347
|
DEFAULT_DISCOVERY,
|
|
326
348
|
DEFAULT_ENCODING,
|
|
327
349
|
DEFAULT_KEEPALIVE,
|
|
328
350
|
DEFAULT_ON_COMMAND_TYPE,
|
|
351
|
+
DEFAULT_PAYLOAD_ARM_AWAY,
|
|
352
|
+
DEFAULT_PAYLOAD_ARM_CUSTOM_BYPASS,
|
|
353
|
+
DEFAULT_PAYLOAD_ARM_HOME,
|
|
354
|
+
DEFAULT_PAYLOAD_ARM_NIGHT,
|
|
355
|
+
DEFAULT_PAYLOAD_ARM_VACATION,
|
|
329
356
|
DEFAULT_PAYLOAD_AVAILABLE,
|
|
330
357
|
DEFAULT_PAYLOAD_CLOSE,
|
|
358
|
+
DEFAULT_PAYLOAD_LOCK,
|
|
331
359
|
DEFAULT_PAYLOAD_NOT_AVAILABLE,
|
|
332
360
|
DEFAULT_PAYLOAD_OFF,
|
|
333
361
|
DEFAULT_PAYLOAD_ON,
|
|
@@ -337,6 +365,8 @@ from .const import (
|
|
|
337
365
|
DEFAULT_PAYLOAD_PRESS,
|
|
338
366
|
DEFAULT_PAYLOAD_RESET,
|
|
339
367
|
DEFAULT_PAYLOAD_STOP,
|
|
368
|
+
DEFAULT_PAYLOAD_TRIGGER,
|
|
369
|
+
DEFAULT_PAYLOAD_UNLOCK,
|
|
340
370
|
DEFAULT_PORT,
|
|
341
371
|
DEFAULT_POSITION_CLOSED,
|
|
342
372
|
DEFAULT_POSITION_OPEN,
|
|
@@ -345,7 +375,12 @@ from .const import (
|
|
|
345
375
|
DEFAULT_QOS,
|
|
346
376
|
DEFAULT_SPEED_RANGE_MAX,
|
|
347
377
|
DEFAULT_SPEED_RANGE_MIN,
|
|
378
|
+
DEFAULT_STATE_JAMMED,
|
|
379
|
+
DEFAULT_STATE_LOCKED,
|
|
380
|
+
DEFAULT_STATE_LOCKING,
|
|
348
381
|
DEFAULT_STATE_STOPPED,
|
|
382
|
+
DEFAULT_STATE_UNLOCKED,
|
|
383
|
+
DEFAULT_STATE_UNLOCKING,
|
|
349
384
|
DEFAULT_TILT_CLOSED_POSITION,
|
|
350
385
|
DEFAULT_TILT_MAX,
|
|
351
386
|
DEFAULT_TILT_MIN,
|
|
@@ -354,6 +389,8 @@ from .const import (
|
|
|
354
389
|
DEFAULT_WILL,
|
|
355
390
|
DEFAULT_WS_PATH,
|
|
356
391
|
DOMAIN,
|
|
392
|
+
REMOTE_CODE,
|
|
393
|
+
REMOTE_CODE_TEXT,
|
|
357
394
|
SUPPORTED_PROTOCOLS,
|
|
358
395
|
TRANSPORT_TCP,
|
|
359
396
|
TRANSPORT_WEBSOCKETS,
|
|
@@ -452,12 +489,14 @@ KEY_UPLOAD_SELECTOR = FileSelector(
|
|
|
452
489
|
|
|
453
490
|
# Subentry selectors
|
|
454
491
|
SUBENTRY_PLATFORMS = [
|
|
492
|
+
Platform.ALARM_CONTROL_PANEL,
|
|
455
493
|
Platform.BINARY_SENSOR,
|
|
456
494
|
Platform.BUTTON,
|
|
457
495
|
Platform.CLIMATE,
|
|
458
496
|
Platform.COVER,
|
|
459
497
|
Platform.FAN,
|
|
460
498
|
Platform.LIGHT,
|
|
499
|
+
Platform.LOCK,
|
|
461
500
|
Platform.NOTIFY,
|
|
462
501
|
Platform.SENSOR,
|
|
463
502
|
Platform.SWITCH,
|
|
@@ -556,6 +595,21 @@ TIMEOUT_SELECTOR = NumberSelector(
|
|
|
556
595
|
NumberSelectorConfig(mode=NumberSelectorMode.BOX, min=0)
|
|
557
596
|
)
|
|
558
597
|
|
|
598
|
+
# Alarm control panel selectors
|
|
599
|
+
ALARM_CONTROL_PANEL_FEATURES_SELECTOR = SelectSelector(
|
|
600
|
+
SelectSelectorConfig(
|
|
601
|
+
options=list(ALARM_CONTROL_PANEL_SUPPORTED_FEATURES),
|
|
602
|
+
multiple=True,
|
|
603
|
+
translation_key="alarm_control_panel_features",
|
|
604
|
+
)
|
|
605
|
+
)
|
|
606
|
+
ALARM_CONTROL_PANEL_CODE_MODE = SelectSelector(
|
|
607
|
+
SelectSelectorConfig(
|
|
608
|
+
options=["local_code", "remote_code", "remote_code_text"],
|
|
609
|
+
translation_key="alarm_control_panel_code_mode",
|
|
610
|
+
)
|
|
611
|
+
)
|
|
612
|
+
|
|
559
613
|
# Climate specific selectors
|
|
560
614
|
CLIMATE_MODE_SELECTOR = SelectSelector(
|
|
561
615
|
SelectSelectorConfig(
|
|
@@ -712,6 +766,25 @@ HUMIDITY_SELECTOR = vol.All(
|
|
|
712
766
|
vol.Coerce(int),
|
|
713
767
|
)
|
|
714
768
|
|
|
769
|
+
_CODE_VALIDATION_MODE = {
|
|
770
|
+
"remote_code": REMOTE_CODE,
|
|
771
|
+
"remote_code_text": REMOTE_CODE_TEXT,
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
@callback
|
|
776
|
+
def default_alarm_control_panel_code(config: dict[str, Any]) -> str:
|
|
777
|
+
"""Return alarm control panel code based on the stored code and code mode."""
|
|
778
|
+
code: str
|
|
779
|
+
if config["alarm_control_panel_code_mode"] in _CODE_VALIDATION_MODE:
|
|
780
|
+
# Return magic value for remote code validation
|
|
781
|
+
return _CODE_VALIDATION_MODE[config["alarm_control_panel_code_mode"]]
|
|
782
|
+
if (code := config.get(CONF_CODE, "")) in _CODE_VALIDATION_MODE.values():
|
|
783
|
+
# Remove magic value for remote code validation
|
|
784
|
+
return ""
|
|
785
|
+
|
|
786
|
+
return code
|
|
787
|
+
|
|
715
788
|
|
|
716
789
|
@callback
|
|
717
790
|
def temperature_default_from_celsius_to_system_default(
|
|
@@ -908,6 +981,7 @@ class PlatformField:
|
|
|
908
981
|
vol.UNDEFINED
|
|
909
982
|
)
|
|
910
983
|
is_schema_default: bool = False
|
|
984
|
+
include_in_config: bool = False
|
|
911
985
|
exclude_from_reconfig: bool = False
|
|
912
986
|
exclude_from_config: bool = False
|
|
913
987
|
conditions: tuple[dict[str, Any], ...] | None = None
|
|
@@ -978,6 +1052,23 @@ SHARED_PLATFORM_ENTITY_FIELDS: dict[str, PlatformField] = {
|
|
|
978
1052
|
}
|
|
979
1053
|
|
|
980
1054
|
PLATFORM_ENTITY_FIELDS: dict[str, dict[str, PlatformField]] = {
|
|
1055
|
+
Platform.ALARM_CONTROL_PANEL.value: {
|
|
1056
|
+
CONF_SUPPORTED_FEATURES: PlatformField(
|
|
1057
|
+
selector=ALARM_CONTROL_PANEL_FEATURES_SELECTOR,
|
|
1058
|
+
required=True,
|
|
1059
|
+
default=lambda config: config.get(
|
|
1060
|
+
CONF_SUPPORTED_FEATURES, list(ALARM_CONTROL_PANEL_SUPPORTED_FEATURES)
|
|
1061
|
+
),
|
|
1062
|
+
),
|
|
1063
|
+
"alarm_control_panel_code_mode": PlatformField(
|
|
1064
|
+
selector=ALARM_CONTROL_PANEL_CODE_MODE,
|
|
1065
|
+
required=True,
|
|
1066
|
+
exclude_from_config=True,
|
|
1067
|
+
default=lambda config: config[CONF_CODE].lower()
|
|
1068
|
+
if config.get(CONF_CODE) in (REMOTE_CODE, REMOTE_CODE_TEXT)
|
|
1069
|
+
else "local_code",
|
|
1070
|
+
),
|
|
1071
|
+
},
|
|
981
1072
|
Platform.BINARY_SENSOR.value: {
|
|
982
1073
|
CONF_DEVICE_CLASS: PlatformField(
|
|
983
1074
|
selector=BINARY_SENSOR_DEVICE_CLASS_SELECTOR,
|
|
@@ -1148,8 +1239,95 @@ PLATFORM_ENTITY_FIELDS: dict[str, dict[str, PlatformField]] = {
|
|
|
1148
1239
|
is_schema_default=True,
|
|
1149
1240
|
),
|
|
1150
1241
|
},
|
|
1242
|
+
Platform.LOCK.value: {},
|
|
1151
1243
|
}
|
|
1152
1244
|
PLATFORM_MQTT_FIELDS: dict[str, dict[str, PlatformField]] = {
|
|
1245
|
+
Platform.ALARM_CONTROL_PANEL: {
|
|
1246
|
+
CONF_COMMAND_TOPIC: PlatformField(
|
|
1247
|
+
selector=TEXT_SELECTOR,
|
|
1248
|
+
required=True,
|
|
1249
|
+
validator=valid_publish_topic,
|
|
1250
|
+
error="invalid_publish_topic",
|
|
1251
|
+
),
|
|
1252
|
+
CONF_COMMAND_TEMPLATE: PlatformField(
|
|
1253
|
+
selector=TEMPLATE_SELECTOR,
|
|
1254
|
+
required=False,
|
|
1255
|
+
default=DEFAULT_ALARM_CONTROL_PANEL_COMMAND_TEMPLATE,
|
|
1256
|
+
validator=validate(cv.template),
|
|
1257
|
+
error="invalid_template",
|
|
1258
|
+
),
|
|
1259
|
+
CONF_STATE_TOPIC: PlatformField(
|
|
1260
|
+
selector=TEXT_SELECTOR,
|
|
1261
|
+
required=True,
|
|
1262
|
+
validator=valid_subscribe_topic,
|
|
1263
|
+
error="invalid_subscribe_topic",
|
|
1264
|
+
),
|
|
1265
|
+
CONF_VALUE_TEMPLATE: PlatformField(
|
|
1266
|
+
selector=TEMPLATE_SELECTOR,
|
|
1267
|
+
required=False,
|
|
1268
|
+
validator=validate(cv.template),
|
|
1269
|
+
error="invalid_template",
|
|
1270
|
+
),
|
|
1271
|
+
CONF_CODE: PlatformField(
|
|
1272
|
+
selector=PASSWORD_SELECTOR,
|
|
1273
|
+
required=True,
|
|
1274
|
+
include_in_config=True,
|
|
1275
|
+
default=default_alarm_control_panel_code,
|
|
1276
|
+
conditions=({"alarm_control_panel_code_mode": "local_code"},),
|
|
1277
|
+
),
|
|
1278
|
+
CONF_CODE_ARM_REQUIRED: PlatformField(
|
|
1279
|
+
selector=BOOLEAN_SELECTOR,
|
|
1280
|
+
required=True,
|
|
1281
|
+
default=True,
|
|
1282
|
+
),
|
|
1283
|
+
CONF_CODE_DISARM_REQUIRED: PlatformField(
|
|
1284
|
+
selector=BOOLEAN_SELECTOR,
|
|
1285
|
+
required=True,
|
|
1286
|
+
default=True,
|
|
1287
|
+
),
|
|
1288
|
+
CONF_CODE_TRIGGER_REQUIRED: PlatformField(
|
|
1289
|
+
selector=BOOLEAN_SELECTOR,
|
|
1290
|
+
required=True,
|
|
1291
|
+
default=True,
|
|
1292
|
+
),
|
|
1293
|
+
CONF_RETAIN: PlatformField(selector=BOOLEAN_SELECTOR, required=False),
|
|
1294
|
+
CONF_PAYLOAD_ARM_HOME: PlatformField(
|
|
1295
|
+
selector=TEXT_SELECTOR,
|
|
1296
|
+
required=False,
|
|
1297
|
+
default=DEFAULT_PAYLOAD_ARM_HOME,
|
|
1298
|
+
section="alarm_control_panel_payload_settings",
|
|
1299
|
+
),
|
|
1300
|
+
CONF_PAYLOAD_ARM_AWAY: PlatformField(
|
|
1301
|
+
selector=TEXT_SELECTOR,
|
|
1302
|
+
required=False,
|
|
1303
|
+
default=DEFAULT_PAYLOAD_ARM_AWAY,
|
|
1304
|
+
section="alarm_control_panel_payload_settings",
|
|
1305
|
+
),
|
|
1306
|
+
CONF_PAYLOAD_ARM_NIGHT: PlatformField(
|
|
1307
|
+
selector=TEXT_SELECTOR,
|
|
1308
|
+
required=False,
|
|
1309
|
+
default=DEFAULT_PAYLOAD_ARM_NIGHT,
|
|
1310
|
+
section="alarm_control_panel_payload_settings",
|
|
1311
|
+
),
|
|
1312
|
+
CONF_PAYLOAD_ARM_VACATION: PlatformField(
|
|
1313
|
+
selector=TEXT_SELECTOR,
|
|
1314
|
+
required=False,
|
|
1315
|
+
default=DEFAULT_PAYLOAD_ARM_VACATION,
|
|
1316
|
+
section="alarm_control_panel_payload_settings",
|
|
1317
|
+
),
|
|
1318
|
+
CONF_PAYLOAD_ARM_CUSTOM_BYPASS: PlatformField(
|
|
1319
|
+
selector=TEXT_SELECTOR,
|
|
1320
|
+
required=False,
|
|
1321
|
+
default=DEFAULT_PAYLOAD_ARM_CUSTOM_BYPASS,
|
|
1322
|
+
section="alarm_control_panel_payload_settings",
|
|
1323
|
+
),
|
|
1324
|
+
CONF_PAYLOAD_TRIGGER: PlatformField(
|
|
1325
|
+
selector=TEXT_SELECTOR,
|
|
1326
|
+
required=False,
|
|
1327
|
+
default=DEFAULT_PAYLOAD_TRIGGER,
|
|
1328
|
+
section="alarm_control_panel_payload_settings",
|
|
1329
|
+
),
|
|
1330
|
+
},
|
|
1153
1331
|
Platform.BINARY_SENSOR.value: {
|
|
1154
1332
|
CONF_STATE_TOPIC: PlatformField(
|
|
1155
1333
|
selector=TEXT_SELECTOR,
|
|
@@ -2664,17 +2842,106 @@ PLATFORM_MQTT_FIELDS: dict[str, dict[str, PlatformField]] = {
|
|
|
2664
2842
|
section="advanced_settings",
|
|
2665
2843
|
),
|
|
2666
2844
|
},
|
|
2845
|
+
Platform.LOCK.value: {
|
|
2846
|
+
CONF_COMMAND_TOPIC: PlatformField(
|
|
2847
|
+
selector=TEXT_SELECTOR,
|
|
2848
|
+
required=True,
|
|
2849
|
+
validator=valid_publish_topic,
|
|
2850
|
+
error="invalid_publish_topic",
|
|
2851
|
+
),
|
|
2852
|
+
CONF_COMMAND_TEMPLATE: PlatformField(
|
|
2853
|
+
selector=TEMPLATE_SELECTOR,
|
|
2854
|
+
required=False,
|
|
2855
|
+
validator=validate(cv.template),
|
|
2856
|
+
error="invalid_template",
|
|
2857
|
+
),
|
|
2858
|
+
CONF_STATE_TOPIC: PlatformField(
|
|
2859
|
+
selector=TEXT_SELECTOR,
|
|
2860
|
+
required=False,
|
|
2861
|
+
validator=valid_subscribe_topic,
|
|
2862
|
+
error="invalid_subscribe_topic",
|
|
2863
|
+
),
|
|
2864
|
+
CONF_VALUE_TEMPLATE: PlatformField(
|
|
2865
|
+
selector=TEMPLATE_SELECTOR,
|
|
2866
|
+
required=False,
|
|
2867
|
+
validator=validate(cv.template),
|
|
2868
|
+
error="invalid_template",
|
|
2869
|
+
),
|
|
2870
|
+
CONF_CODE_FORMAT: PlatformField(
|
|
2871
|
+
selector=TEXT_SELECTOR,
|
|
2872
|
+
required=False,
|
|
2873
|
+
validator=validate(cv.is_regex),
|
|
2874
|
+
error="invalid_regular_expression",
|
|
2875
|
+
),
|
|
2876
|
+
CONF_PAYLOAD_LOCK: PlatformField(
|
|
2877
|
+
selector=TEXT_SELECTOR,
|
|
2878
|
+
required=False,
|
|
2879
|
+
default=DEFAULT_PAYLOAD_LOCK,
|
|
2880
|
+
section="lock_payload_settings",
|
|
2881
|
+
),
|
|
2882
|
+
CONF_PAYLOAD_UNLOCK: PlatformField(
|
|
2883
|
+
selector=TEXT_SELECTOR,
|
|
2884
|
+
required=False,
|
|
2885
|
+
default=DEFAULT_PAYLOAD_UNLOCK,
|
|
2886
|
+
section="lock_payload_settings",
|
|
2887
|
+
),
|
|
2888
|
+
CONF_PAYLOAD_OPEN: PlatformField(
|
|
2889
|
+
selector=TEXT_SELECTOR,
|
|
2890
|
+
required=False,
|
|
2891
|
+
section="lock_payload_settings",
|
|
2892
|
+
),
|
|
2893
|
+
CONF_PAYLOAD_RESET: PlatformField(
|
|
2894
|
+
selector=TEXT_SELECTOR,
|
|
2895
|
+
required=False,
|
|
2896
|
+
default=DEFAULT_PAYLOAD_RESET,
|
|
2897
|
+
section="lock_payload_settings",
|
|
2898
|
+
),
|
|
2899
|
+
CONF_STATE_LOCKED: PlatformField(
|
|
2900
|
+
selector=TEXT_SELECTOR,
|
|
2901
|
+
required=False,
|
|
2902
|
+
default=DEFAULT_STATE_LOCKED,
|
|
2903
|
+
section="lock_payload_settings",
|
|
2904
|
+
),
|
|
2905
|
+
CONF_STATE_UNLOCKED: PlatformField(
|
|
2906
|
+
selector=TEXT_SELECTOR,
|
|
2907
|
+
required=False,
|
|
2908
|
+
default=DEFAULT_STATE_UNLOCKED,
|
|
2909
|
+
section="lock_payload_settings",
|
|
2910
|
+
),
|
|
2911
|
+
CONF_STATE_LOCKING: PlatformField(
|
|
2912
|
+
selector=TEXT_SELECTOR,
|
|
2913
|
+
required=False,
|
|
2914
|
+
default=DEFAULT_STATE_LOCKING,
|
|
2915
|
+
section="lock_payload_settings",
|
|
2916
|
+
),
|
|
2917
|
+
CONF_STATE_UNLOCKING: PlatformField(
|
|
2918
|
+
selector=TEXT_SELECTOR,
|
|
2919
|
+
required=False,
|
|
2920
|
+
default=DEFAULT_STATE_UNLOCKING,
|
|
2921
|
+
section="lock_payload_settings",
|
|
2922
|
+
),
|
|
2923
|
+
CONF_STATE_JAMMED: PlatformField(
|
|
2924
|
+
selector=TEXT_SELECTOR,
|
|
2925
|
+
required=False,
|
|
2926
|
+
default=DEFAULT_STATE_JAMMED,
|
|
2927
|
+
section="lock_payload_settings",
|
|
2928
|
+
),
|
|
2929
|
+
CONF_RETAIN: PlatformField(selector=BOOLEAN_SELECTOR, required=False),
|
|
2930
|
+
CONF_OPTIMISTIC: PlatformField(selector=BOOLEAN_SELECTOR, required=False),
|
|
2931
|
+
},
|
|
2667
2932
|
}
|
|
2668
2933
|
ENTITY_CONFIG_VALIDATOR: dict[
|
|
2669
2934
|
str,
|
|
2670
2935
|
Callable[[dict[str, Any]], dict[str, str]] | None,
|
|
2671
2936
|
] = {
|
|
2937
|
+
Platform.ALARM_CONTROL_PANEL: None,
|
|
2672
2938
|
Platform.BINARY_SENSOR.value: None,
|
|
2673
2939
|
Platform.BUTTON.value: None,
|
|
2674
2940
|
Platform.CLIMATE.value: validate_climate_platform_config,
|
|
2675
2941
|
Platform.COVER.value: validate_cover_platform_config,
|
|
2676
2942
|
Platform.FAN.value: validate_fan_platform_config,
|
|
2677
2943
|
Platform.LIGHT.value: validate_light_platform_config,
|
|
2944
|
+
Platform.LOCK.value: None,
|
|
2678
2945
|
Platform.NOTIFY.value: None,
|
|
2679
2946
|
Platform.SENSOR.value: validate_sensor_platform_config,
|
|
2680
2947
|
Platform.SWITCH.value: None,
|
|
@@ -2863,13 +3130,24 @@ def data_schema_from_fields(
|
|
|
2863
3130
|
data_schema: dict[Any, Any] = {}
|
|
2864
3131
|
all_data_element_options: set[Any] = set()
|
|
2865
3132
|
no_reconfig_options: set[Any] = set()
|
|
3133
|
+
|
|
3134
|
+
defaults: dict[str, Any] = {}
|
|
3135
|
+
for field_name, field_details in data_schema_fields.items():
|
|
3136
|
+
default = defaults[field_name] = get_default(field_details)
|
|
3137
|
+
if not field_details.include_in_config or component_data is None:
|
|
3138
|
+
continue
|
|
3139
|
+
component_data[field_name] = default
|
|
3140
|
+
|
|
2866
3141
|
for schema_section in sections:
|
|
3142
|
+
# Always calculate the default values
|
|
3143
|
+
# Getting the default value may update the subentry data,
|
|
3144
|
+
# even when and option is filtered out
|
|
2867
3145
|
data_schema_element = {
|
|
2868
|
-
vol.Required(field_name, default=
|
|
3146
|
+
vol.Required(field_name, default=defaults[field_name])
|
|
2869
3147
|
if field_details.required
|
|
2870
3148
|
else vol.Optional(
|
|
2871
3149
|
field_name,
|
|
2872
|
-
default=
|
|
3150
|
+
default=defaults[field_name]
|
|
2873
3151
|
if field_details.default is not None
|
|
2874
3152
|
else vol.UNDEFINED,
|
|
2875
3153
|
): field_details.selector(component_data_with_user_input or {})
|
|
@@ -2918,12 +3196,16 @@ def data_schema_from_fields(
|
|
|
2918
3196
|
)
|
|
2919
3197
|
|
|
2920
3198
|
# Reset all fields from the component_data not in the schema
|
|
3199
|
+
# except for options that should stay included
|
|
2921
3200
|
if component_data:
|
|
2922
3201
|
filtered_fields = (
|
|
2923
3202
|
set(data_schema_fields) - all_data_element_options - no_reconfig_options
|
|
2924
3203
|
)
|
|
2925
3204
|
for field in filtered_fields:
|
|
2926
|
-
if
|
|
3205
|
+
if (
|
|
3206
|
+
field in component_data
|
|
3207
|
+
and not data_schema_fields[field].include_in_config
|
|
3208
|
+
):
|
|
2927
3209
|
del component_data[field]
|
|
2928
3210
|
return vol.Schema(data_schema)
|
|
2929
3211
|
|
|
@@ -3485,6 +3767,7 @@ class MQTTSubentryFlowHandler(ConfigSubentryFlow):
|
|
|
3485
3767
|
for field, platform_field in data_schema_fields.items()
|
|
3486
3768
|
if field in (set(component_data) - set(config))
|
|
3487
3769
|
and not platform_field.exclude_from_reconfig
|
|
3770
|
+
and not platform_field.include_in_config
|
|
3488
3771
|
):
|
|
3489
3772
|
component_data.pop(field)
|
|
3490
3773
|
component_data.update(merged_user_input)
|
|
@@ -3800,7 +4083,10 @@ class MQTTSubentryFlowHandler(ConfigSubentryFlow):
|
|
|
3800
4083
|
)
|
|
3801
4084
|
component_data.update(subentry_default_data)
|
|
3802
4085
|
for key, platform_field in platform_fields.items():
|
|
3803
|
-
if
|
|
4086
|
+
if (
|
|
4087
|
+
not platform_field.exclude_from_config
|
|
4088
|
+
or platform_field.include_in_config
|
|
4089
|
+
):
|
|
3804
4090
|
continue
|
|
3805
4091
|
if key in component_data:
|
|
3806
4092
|
component_data.pop(key)
|