From: Bruno Haible Date: Wed, 19 Apr 2017 10:03:53 +0000 (+0200) Subject: PO mode: Fix typo. X-Git-Tag: v0.20~471 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=028c483c48aa8edd09b6bc9cf85af55a5a85598e;p=thirdparty%2Fgettext.git PO mode: Fix typo. * gettext-tools/misc/po-mode.el (po-select-mark-and-mark): Fix typo in message. --- diff --git a/gettext-tools/misc/po-mode.el b/gettext-tools/misc/po-mode.el index 7d3659812..e70be30ba 100644 --- a/gettext-tools/misc/po-mode.el +++ b/gettext-tools/misc/po-mode.el @@ -2910,7 +2910,7 @@ Disregard some simple strings which are most probably non-translatable." (po-mark-found-string "_")) (defun po-select-mark-and-mark (arg) - "Mark last found string in program sources as translatable, ask for keywoard, + "Mark last found string in program sources as translatable, ask for keyword, using completion. With prefix argument, just ask the name of a preferred keyword for subsequent commands, also added to possible completions." (interactive "P") @@ -2919,7 +2919,7 @@ keyword for subsequent commands, also added to possible completions." (setq po-keywords (cons keyword (delete keyword po-keywords)))) (or po-string-contents (error (_"No such string"))) (let* ((default (car (car po-keywords))) - (keyword (completing-read (format (_"Mark with keywoard? [%s] ") + (keyword (completing-read (format (_"Mark with keyword? [%s] ") default) po-keywords nil t ))) (if (string-equal keyword "") (setq keyword default))