diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-mt.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 6c2ad2b6a5..039653a794 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-09-26 Jeffrey Stedfast <fejj@ximian.com> + + * mail-mt.c (do_get_pass): Change the wording of the password + dialog if we are getting a pgp passphrase so that users don't + misinterpret it to mean saving the passphrase forever. + 2001-09-26 Jon Trowbridge <trow@ximian.com> * mail-callbacks.c (composer_get_message): strdup our "This diff --git a/mail/mail-mt.c b/mail/mail-mt.c index 2ce8f6cab4..972a89787f 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -506,7 +506,8 @@ do_get_pass (struct _mail_msg *mm) 0, pass_got, m, NULL); /* Remember the password? */ - check = gtk_check_button_new_with_label (_("Remember this password")); + check = gtk_check_button_new_with_label (m->service_url ? _("Remember this password") : + _("Remember this password for the remainder of this session")); show = TRUE; if (m->service_url) { |