summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-17 05:45:38 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-17 05:45:38 +0000
commite1992f98fa52338acbd0d44a960e10fa46951477 (patch)
treead574a8a366341c5a166da2a681a8a4c36954a5e
parentfe68c9895a4a48251cec799d101bbf78255f416e (diff)
downloademacs-e1992f98fa52338acbd0d44a960e10fa46951477.tar.gz
Improve text of messages.
-rw-r--r--lisp/mail/emacsbug.el27
1 files changed, 14 insertions, 13 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 774ca1b86bb..5ca0af250fc 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -73,15 +73,16 @@ Prompts for bug subject. Leaves you in a mail buffer."
(goto-char (point-min))
(re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
;; Insert warnings for novice users.
- (insert "This mail is sent to Free Software Foundation, ")
+ (insert "This bug report will be sent to the Free Software Foundation,\n")
(let ((pos (point)))
- (insert "NOT TO YOUR SITE MANAGERS!!")
+ (insert " not to your local site managers!!")
(put-text-property pos (point) 'face 'highlight))
(insert "\nPlease write in ")
(let ((pos (point)))
- (insert "ENGLISH ONLY")
+ (insert "English")
(put-text-property pos (point) 'face 'highlight))
- (insert ", recipients are not yet fully multilingualized.\n\n")
+ (insert ", because the Emacs maintainers do not have
+translators to read other languages for them.\n\n")
(insert "In " (emacs-version) "\n")
(if (and system-configuration-options
@@ -171,7 +172,7 @@ Type SPC to scroll through this section and its subsections.")))
(find-charset-region (point-min) (point-max)))))
(if charsets
(if (or report-emacs-bug-run-tersely
- (y-or-n-p "Convert Non-English letters to hexadecimal? "))
+ (y-or-n-p "Convert non-ASCII letters to hexadecimal? "))
(save-excursion
(goto-char (point-min))
(let ((enable-multibyte-characters nil)
@@ -181,12 +182,12 @@ Type SPC to scroll through this section and its subsections.")))
(setq ch (preceding-char))
(delete-char -1)
(insert (format "=%02x" ch)))))
- (error "Please delete non-English chars by yourself"))))
+ (error "Please convert non-ASCII characters to something else"))))
;; The last warning for novice users.
(if (or report-emacs-bug-run-tersely
(yes-or-no-p
- "Do you surely send this mail to Free Software Foundation? "))
+ "Send this bug report to the Emacs maintainers? "))
;; Just send the current mail.
nil
(goto-char (point-min))
@@ -197,13 +198,13 @@ Type SPC to scroll through this section and its subsections.")))
(kill-local-variable 'mail-send-hook)
(with-output-to-temp-buffer "*Bug Help*"
(princ (substitute-command-keys "\
-You invoked the command report-emacs-bug (\\[report-emacs-bug]),
-but refused to send an e-mail report to Free Software Foundation.
+You invoked the command M-x report-emacs-bug,
+but you decided not to mail the bug report to the Emacs maintainers.
-If you want to send the mail to someone else,
-please insert the actual e-mail address after \"To: \",
-and send the mail again by \\[mail-send-and-exit].")))
- (error "Report-emacs-bug was cancelled, please read *Bug Help* buffer"))
+If you want to mail it to someone else instead,
+please insert the proper e-mail address after \"To: \",
+and send the mail again using \\[mail-send-and-exit].")))
+ (error "M-x report-emacs-bug was cancelled, please read *Bug Help* buffer"))
))
(provide 'emacsbug)