소스 검색

Slightly change wording of alerts

j433866 6 년 전
부모
커밋
c43f829854
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/web/waiters/InputWaiter.mjs

+ 2 - 2
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;