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": { "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).", "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": { "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)", "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" "scan_options": "Raw configurable scan options for Nmap"
} }
} }
@ -37,4 +37,4 @@
"already_configured": "[%key:common::config_flow::abort::already_configured_location%]" "already_configured": "[%key:common::config_flow::abort::already_configured_location%]"
} }
} }
} }

View File

@ -9,9 +9,9 @@
"step": { "step": {
"user": { "user": {
"data": { "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)", "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" "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)." "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": { "init": {
"data": { "data": {
"consider_home": "Seconds to wait till marking a device tracker as not home after not being seen.", "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)", "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", "interval_seconds": "Scan interval",
"scan_options": "Raw configurable scan options for Nmap", "scan_options": "Raw configurable scan options for Nmap"
"track_new_devices": "Track new devices"
}, },
"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)." "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)."
} }