diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-09-27 07:45:35 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-09-27 07:45:35 +0800 |
commit | 115673976ef283adb657f6d21da731b61fa34bae (patch) | |
tree | 461832434e46170d5bc93a23830988cb9326e99d | |
parent | 1eb6dc987a1e46ee36211d0417c152e14986f32a (diff) | |
download | gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.tar gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.tar.gz gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.tar.bz2 gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.tar.lz gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.tar.xz gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.tar.zst gsoc2013-evolution-115673976ef283adb657f6d21da731b61fa34bae.zip |
Change the wording of the password dialog if we are getting a pgp
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.
svn path=/trunk/; revision=13176
-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) { |