Fix missing abort strings in wiz (#66538)
parent
572fa7d055
commit
334a8ab13f
|
@ -25,6 +25,8 @@
|
|||
"no_ip": "Not a valid IP address."
|
||||
},
|
||||
"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%]"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"config": {
|
||||
"abort": {
|
||||
"already_configured": "Device is already configured",
|
||||
"cannot_connect": "Failed to connect",
|
||||
"no_devices_found": "No devices found on the network"
|
||||
},
|
||||
"error": {
|
||||
|
@ -13,9 +14,6 @@
|
|||
},
|
||||
"flow_title": "{name} ({host})",
|
||||
"step": {
|
||||
"confirm": {
|
||||
"description": "Do you want to start set up?"
|
||||
},
|
||||
"discovery_confirm": {
|
||||
"description": "Do you want to setup {name} ({host})?"
|
||||
},
|
||||
|
@ -26,8 +24,7 @@
|
|||
},
|
||||
"user": {
|
||||
"data": {
|
||||
"host": "IP Address",
|
||||
"name": "Name"
|
||||
"host": "IP Address"
|
||||
},
|
||||
"description": "If you leave the IP Address empty, discovery will be used to find devices."
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue