Fix typo in NMAP Tracker Config Flow (#68712)

This commit is contained in:
Nathan Tilley 2022-03-26 19:05:02 -07:00 committed by GitHub
parent b9b81da2ec
commit 4e9430cba5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 9 deletions

View File

@ -23,9 +23,9 @@
"user": {
"description":"Configure hosts to be scanned by Nmap. Network address and excludes can be IP Addresses (192.168.1.1), IP Networks (192.168.0.0/24) or IP Ranges (192.168.1.0-32).",
"data": {
"hosts": "Network addresses (comma seperated) to scan",
"hosts": "Network addresses (comma separated) to scan",
"home_interval": "Minimum number of minutes between scans of active devices (preserve battery)",
"exclude": "Network addresses (comma seperated) to exclude from scanning",
"exclude": "Network addresses (comma separated) to exclude from scanning",
"scan_options": "Raw configurable scan options for Nmap"
}
}
@ -37,4 +37,4 @@
"already_configured": "[%key:common::config_flow::abort::already_configured_location%]"
}
}
}
}

View File

@ -9,9 +9,9 @@
"step": {
"user": {
"data": {
"exclude": "Network addresses (comma seperated) to exclude from scanning",
"exclude": "Network addresses (comma separated) to exclude from scanning",
"home_interval": "Minimum number of minutes between scans of active devices (preserve battery)",
"hosts": "Network addresses (comma seperated) to scan",
"hosts": "Network addresses (comma separated) to scan",
"scan_options": "Raw configurable scan options for Nmap"
},
"description": "Configure hosts to be scanned by Nmap. Network address and excludes can be IP Addresses (192.168.1.1), IP Networks (192.168.0.0/24) or IP Ranges (192.168.1.0-32)."
@ -26,12 +26,11 @@
"init": {
"data": {
"consider_home": "Seconds to wait till marking a device tracker as not home after not being seen.",
"exclude": "Network addresses (comma seperated) to exclude from scanning",
"exclude": "Network addresses (comma separated) to exclude from scanning",
"home_interval": "Minimum number of minutes between scans of active devices (preserve battery)",
"hosts": "Network addresses (comma seperated) to scan",
"hosts": "Network addresses (comma separated) to scan",
"interval_seconds": "Scan interval",
"scan_options": "Raw configurable scan options for Nmap",
"track_new_devices": "Track new devices"
"scan_options": "Raw configurable scan options for Nmap"
},
"description": "Configure hosts to be scanned by Nmap. Network address and excludes can be IP Addresses (192.168.1.1), IP Networks (192.168.0.0/24) or IP Ranges (192.168.1.0-32)."
}