mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 03:07:37 +00:00
Fix missing abort strings in wiz (#66538)
This commit is contained in:
parent
572fa7d055
commit
334a8ab13f
@ -25,6 +25,8 @@
|
|||||||
"no_ip": "Not a valid IP address."
|
"no_ip": "Not a valid IP address."
|
||||||
},
|
},
|
||||||
"abort": {
|
"abort": {
|
||||||
|
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
|
||||||
|
"no_devices_found": "[%key:common::config_flow::abort::no_devices_found%]",
|
||||||
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
|
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
"config": {
|
"config": {
|
||||||
"abort": {
|
"abort": {
|
||||||
"already_configured": "Device is already configured",
|
"already_configured": "Device is already configured",
|
||||||
|
"cannot_connect": "Failed to connect",
|
||||||
"no_devices_found": "No devices found on the network"
|
"no_devices_found": "No devices found on the network"
|
||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
@ -13,9 +14,6 @@
|
|||||||
},
|
},
|
||||||
"flow_title": "{name} ({host})",
|
"flow_title": "{name} ({host})",
|
||||||
"step": {
|
"step": {
|
||||||
"confirm": {
|
|
||||||
"description": "Do you want to start set up?"
|
|
||||||
},
|
|
||||||
"discovery_confirm": {
|
"discovery_confirm": {
|
||||||
"description": "Do you want to setup {name} ({host})?"
|
"description": "Do you want to setup {name} ({host})?"
|
||||||
},
|
},
|
||||||
@ -26,8 +24,7 @@
|
|||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"data": {
|
"data": {
|
||||||
"host": "IP Address",
|
"host": "IP Address"
|
||||||
"name": "Name"
|
|
||||||
},
|
},
|
||||||
"description": "If you leave the IP Address empty, discovery will be used to find devices."
|
"description": "If you leave the IP Address empty, discovery will be used to find devices."
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user