Merge branch 'dev' into esphome_bronze

This commit is contained in:
J. Nick Koston 2025-04-15 11:35:29 -10:00 committed by GitHub
commit 33ea832452
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 9 additions and 10 deletions

1
CODEOWNERS generated
View File

@ -1391,7 +1391,6 @@ build.json @home-assistant/supervisor
/homeassistant/components/siren/ @home-assistant/core @raman325 /homeassistant/components/siren/ @home-assistant/core @raman325
/tests/components/siren/ @home-assistant/core @raman325 /tests/components/siren/ @home-assistant/core @raman325
/homeassistant/components/sisyphus/ @jkeljo /homeassistant/components/sisyphus/ @jkeljo
/homeassistant/components/sky_hub/ @rogerselwyn
/homeassistant/components/sky_remote/ @dunnmj @saty9 /homeassistant/components/sky_remote/ @dunnmj @saty9
/tests/components/sky_remote/ @dunnmj @saty9 /tests/components/sky_remote/ @dunnmj @saty9
/homeassistant/components/skybell/ @tkdrob /homeassistant/components/skybell/ @tkdrob

View File

@ -14,7 +14,7 @@
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]", "cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]", "invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"unknown": "[%key:common::config_flow::error::unknown%]", "unknown": "[%key:common::config_flow::error::unknown%]",
"no_flipr_id_found": "No flipr or hub associated to your account for now. You should verify it is working with the Flipr's mobile app first." "no_flipr_id_found": "No Flipr or hub associated to your account for now. You should verify it is working with the Flipr mobile app first."
} }
}, },
"entity": { "entity": {
@ -44,8 +44,8 @@
"hub_mode": { "hub_mode": {
"name": "Mode", "name": "Mode",
"state": { "state": {
"auto": "Automatic", "auto": "[%key:common::state::auto%]",
"manual": "Manual", "manual": "[%key:common::state::manual%]",
"planning": "Planning" "planning": "Planning"
} }
} }

View File

@ -21,7 +21,7 @@
"password": "[%key:common::config_flow::data::password%]" "password": "[%key:common::config_flow::data::password%]"
}, },
"data_description": { "data_description": {
"password": "(8 characters, see QR Code under the dustbin)." "password": "(8 characters, see QR code under the dustbin)."
} }
}, },
"zeroconf_confirm": { "zeroconf_confirm": {
@ -36,12 +36,12 @@
"fan_speed": { "fan_speed": {
"state": { "state": {
"default": "Default", "default": "Default",
"auto": "[%key:common::state::auto%]",
"normal": "[%key:common::state::normal%]", "normal": "[%key:common::state::normal%]",
"high": "[%key:common::state::high%]", "high": "[%key:common::state::high%]",
"intensive": "Intensive", "intensive": "Intensive",
"silent": "Silent", "silent": "Silent",
"super_silent": "Super silent", "super_silent": "Super silent"
"auto": "Auto"
} }
} }
} }

View File

@ -1,7 +1,7 @@
{ {
"domain": "sky_hub", "domain": "sky_hub",
"name": "Sky Hub", "name": "Sky Hub",
"codeowners": ["@rogerselwyn"], "codeowners": [],
"documentation": "https://www.home-assistant.io/integrations/sky_hub", "documentation": "https://www.home-assistant.io/integrations/sky_hub",
"iot_class": "local_polling", "iot_class": "local_polling",
"loggers": ["pyskyqhub"], "loggers": ["pyskyqhub"],

View File

@ -32,7 +32,7 @@
"deaktiviert": "[%key:common::state::disabled%]", "deaktiviert": "[%key:common::state::disabled%]",
"aus": "[%key:common::state::off%]", "aus": "[%key:common::state::off%]",
"standby": "[%key:common::state::standby%]", "standby": "[%key:common::state::standby%]",
"auto": "Auto", "auto": "[%key:common::state::auto%]",
"permanent": "Permanent", "permanent": "Permanent",
"initialisierung": "Initialization", "initialisierung": "Initialization",
"antilegionellenfunktion": "Anti-legionella Function", "antilegionellenfunktion": "Anti-legionella Function",

View File

@ -82,7 +82,7 @@
"airpurifier_mode": { "airpurifier_mode": {
"state": { "state": {
"silent": "Silent", "silent": "Silent",
"auto": "Auto", "auto": "[%key:common::state::auto%]",
"favorite": "Favorite" "favorite": "Favorite"
} }
}, },