From 49c4bb80fea323b4df1784636b6fa89742c0d993 Mon Sep 17 00:00:00 2001 From: Zev Eisenberg Date: Mon, 21 Oct 2024 22:23:28 -0400 Subject: [PATCH] Pluralize seconds. --- ESP32_PrusaConnectCam/WebPage.h | 4 ++-- webpage/scripts.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ESP32_PrusaConnectCam/WebPage.h b/ESP32_PrusaConnectCam/WebPage.h index 28b1687..bb45115 100644 --- a/ESP32_PrusaConnectCam/WebPage.h +++ b/ESP32_PrusaConnectCam/WebPage.h @@ -15,7 +15,7 @@ #define MSG_REBOOT_MCU "Reboot process started, wait several seconds for mcu to boot up. You can close this window now" #define MSG_SAVE_OK_REBOOT "Save OK. Please reboot MCU" ///< WEB app msg save OK -#define MSG_SAVE_OK_WIFI "Save OK. Connecting to Wi-Fi. Please wait several second" +#define MSG_SAVE_OK_WIFI "Save OK. Connecting to Wi-Fi. Please wait several seconds" #define MSG_SAVE_OK "Save cfg OK" ///< WEB app msg save OK #define MSG_SAVE_NOTOK "Save cfg NOT OK!" ///< WEB app msg save NOT OK #define MSG_SCANNING "Scanning Wi-Fi networks. Wait 8s..." ///< WEB app msg Scanning wifi @@ -1342,7 +1342,7 @@ function updateProgress() { function checkUpdate() { var xmlHttp = new XMLHttpRequest(); - alert("Connecting to server... Please wait several second"); + alert("Connecting to server... Please wait several seconds"); xmlHttp.open("GET", "/check_web_ota_update", false); xmlHttp.send(null); alert(xmlHttp.responseText); diff --git a/webpage/scripts.js b/webpage/scripts.js index f206fbd..704bb60 100644 --- a/webpage/scripts.js +++ b/webpage/scripts.js @@ -434,7 +434,7 @@ function updateProgress() { function checkUpdate() { var xmlHttp = new XMLHttpRequest(); - alert("Connecting to server... Please wait several second"); + alert("Connecting to server... Please wait several seconds"); xmlHttp.open("GET", "/check_web_ota_update", false); xmlHttp.send(null); alert(xmlHttp.responseText);