Fix strings for UPNP (#50762)

This commit is contained in:
Simone Chemelli 2021-05-17 14:07:01 +02:00 committed by GitHub
parent eccefd154a
commit 9e86602950
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 7 deletions

View File

@ -2,15 +2,12 @@
"config": { "config": {
"flow_title": "{name}", "flow_title": "{name}",
"step": { "step": {
"init": {
},
"ssdp_confirm": { "ssdp_confirm": {
"description": "Do you want to set up this UPnP/IGD device?" "description": "Do you want to set up this UPnP/IGD device?"
}, },
"user": { "user": {
"data": { "data": {
"usn": "Device", "unique_id": "Device"
"scan_interval": "Update interval (seconds, minimal 30)"
} }
} }
}, },
@ -19,5 +16,14 @@
"no_devices_found": "[%key:common::config_flow::abort::no_devices_found%]", "no_devices_found": "[%key:common::config_flow::abort::no_devices_found%]",
"incomplete_discovery": "Incomplete discovery" "incomplete_discovery": "Incomplete discovery"
} }
} },
"options": {
"step": {
"init": {
"data": {
"scan_interval": "Update interval (seconds, minimal 30)"
}
}
}
}
} }

View File

@ -12,8 +12,16 @@
}, },
"user": { "user": {
"data": { "data": {
"scan_interval": "Update interval (seconds, minimal 30)", "unique_id": "Device"
"usn": "Device" }
}
}
},
"options": {
"step": {
"init": {
"data": {
"scan_interval": "Update interval (seconds, minimal 30)"
} }
} }
} }