aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/openpgp-utils.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 1ea0df32ee..73771aa63b 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-17 Martin Norbäck <d95mback@dtek.chalmers.se>
+
+ * openpgp-utils.c (pgp_get_passphrase): Changed the word entry
+ to enter, which is the correct word to use.
+
2001-01-17 Jeffrey Stedfast <fejj@ximian.com>
* mail-callbacks.c (ask_confirm_for_empty_subject): Update to use
diff --git a/mail/openpgp-utils.c b/mail/openpgp-utils.c
index 58585fceef..290562d55a 100644
--- a/mail/openpgp-utils.c
+++ b/mail/openpgp-utils.c
@@ -75,10 +75,10 @@ pgp_get_passphrase (const gchar *userid)
}
if (userid)
- prompt = g_strdup_printf (_("Please entry your %s passphrase for %s"),
+ prompt = g_strdup_printf (_("Please enter your %s passphrase for %s"),
type, userid);
else
- prompt = g_strdup_printf (_("Please entry your %s passphrase"),
+ prompt = g_strdup_printf (_("Please enter your %s passphrase"),
type);
passphrase = pgp_passwd_func (prompt, pgp_data);