Fix missing abort strings in wiz (#66538)

This commit is contained in:
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." "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%]"
} }
} }

View File

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