From c43f829854858448902cca73ef703045051c0ecb Mon Sep 17 00:00:00 2001 From: j433866 Date: Thu, 22 Aug 2019 11:56:14 +0100 Subject: [PATCH] Slightly change wording of alerts --- src/web/waiters/InputWaiter.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/waiters/InputWaiter.mjs b/src/web/waiters/InputWaiter.mjs index 58b794b6..36b5f05c 100644 --- a/src/web/waiters/InputWaiter.mjs +++ b/src/web/waiters/InputWaiter.mjs @@ -857,9 +857,9 @@ class InputWaiter { this.manager.options.updateOption("userSetCR", true); } else { if (this.app.options.preserveCR) { - this.app.alert(`Carriage return(s) detected in input, so editing has been disabled to preserve them. ${optionsStr}`, 6000); + this.app.alert(`A carriage return was detected in your input, so editing has been disabled to preserve it. ${optionsStr}`, 6000); } else { - this.app.alert(`Carriage return(s) detected in input. Editing is remaining enabled, but any carriage returns will be removed. ${optionsStr}`, 6000); + this.app.alert(`A carriage return was detected in your input. Editing is remaining enabled, but any carriage returns will be removed. ${optionsStr}`, 6000); } } return this.app.options.preserveCR;