Fix missing abort strings in wiz (#66538)

pull/66540/head
J. Nick Koston 2022-02-15 01:24:35 -06:00 committed by GitHub
parent 572fa7d055
commit 334a8ab13f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -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%]"
}
}

View File

@ -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."
}