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

View File

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