diff --git a/src/httpserver/http_fns.c b/src/httpserver/http_fns.c index 044fc7d4e..4da63aa80 100644 --- a/src/httpserver/http_fns.c +++ b/src/httpserver/http_fns.c @@ -1207,7 +1207,7 @@ int http_fn_cfg_wifi(http_request_t* request) { if(bChanged) { poststr(request,"

Device will reconnect after restarting

"); }*/ - poststr(request, "

Check networks reachable by module

This will lag few seconds.
"); + poststr(request, "

Check networks reachable by module

This will take a few seconds
"); if (http_getArg(request->url, "scan", tmpA, sizeof(tmpA))) { #ifdef WINDOWS @@ -1265,22 +1265,22 @@ int http_fn_cfg_wifi(http_request_t* request) { } poststr(request, "
\ \ -\ +\
"); poststr_h4(request, "Use this to disconnect from your WiFi"); poststr(request, "
\ \ -\ +\
"); poststr_h2(request, "Use this to connect to your WiFi"); add_label_text_field(request, "SSID", "ssid", CFG_GetWiFiSSID(), "
"); - add_label_password_field(request, "", "pass", CFG_GetWiFiPass(), "
Password enable clear text password (clears password)"); + add_label_password_field(request, "", "pass", CFG_GetWiFiPass(), "
Password enable clear text password (clears existing)"); poststr_h2(request, "Alternate WiFi (used when first one is not responding)"); #ifndef PLATFORM_BEKEN - poststr_h2(request, "SSID2 only on Beken Platform (BK7231T,BK7231N)"); + poststr_h2(request, "SSID2 only on Beken Platform (BK7231T, BK7231N)"); #endif add_label_text_field(request, "SSID2", "ssid2", CFG_GetWiFiSSID2(), ""); - add_label_password_field(request, "", "pass2", CFG_GetWiFiPass2(), "
Password2 enable clear text password (clears password)"); + add_label_password_field(request, "", "pass2", CFG_GetWiFiPass2(), "
Password2 enable clear text password (clears existing)"); #if ALLOW_WEB_PASSWORD int web_password_enabled = strcmp(CFG_GetWebPassword(), "") == 0 ? 0 : 1; poststr_h2(request, "Web Authentication"); @@ -1290,7 +1290,7 @@ int http_fn_cfg_wifi(http_request_t* request) { add_label_password_field(request, "Admin Password", "web_admin_password", CFG_GetWebPassword(), ""); #endif poststr(request, "

\ -\ +\
"); poststr(request, htmlFooterReturnToCfgOrMainPage); http_html_end(request); @@ -2759,7 +2759,7 @@ int http_fn_cfg_generic(http_request_t* request) { poststr(request, ""); poststr(request, SUBMIT_AND_END_FORM); - add_label_numeric_field(request, "Uptime seconds required to mark boot as OK", "boot_ok_delay", + add_label_numeric_field(request, "Uptime in seconds required to mark boot as OK", "boot_ok_delay", CFG_GetBootOkSeconds(), "
"); poststr(request, "
");