mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-21 08:16:36 +00:00
Show reconnecting when not connected and auto-connect is on (#9738)
This commit is contained in:
parent
4c247ac49d
commit
9ca64f9789
@ -56,7 +56,11 @@ export class CloudRemotePref extends LitElement {
|
|||||||
<div class="connection-status">
|
<div class="connection-status">
|
||||||
${this.hass.localize(
|
${this.hass.localize(
|
||||||
`ui.panel.config.cloud.account.remote.${
|
`ui.panel.config.cloud.account.remote.${
|
||||||
remote_connected ? "connected" : "not_connected"
|
remote_connected
|
||||||
|
? "connected"
|
||||||
|
: remote_enabled
|
||||||
|
? "connecting"
|
||||||
|
: "not_connected"
|
||||||
}`
|
}`
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1902,6 +1902,7 @@
|
|||||||
"title": "Remote Control",
|
"title": "Remote Control",
|
||||||
"connected": "Connected",
|
"connected": "Connected",
|
||||||
"not_connected": "Not Connected",
|
"not_connected": "Not Connected",
|
||||||
|
"reconnecting": "Reconnecting",
|
||||||
"access_is_being_prepared": "Remote control is being prepared. We will notify you when it's ready.",
|
"access_is_being_prepared": "Remote control is being prepared. We will notify you when it's ready.",
|
||||||
"info": "Home Assistant Cloud provides a secure remote connection to your instance while away from home.",
|
"info": "Home Assistant Cloud provides a secure remote connection to your instance while away from home.",
|
||||||
"instance_is_available": "Your instance is available at",
|
"instance_is_available": "Your instance is available at",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user