diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-08-27 13:25:47 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-08-27 13:25:47 +0800 |
commit | 8683d227456da4b93de9bcffd873d54c73ebf3db (patch) | |
tree | 208da9e4624f67a720198960aa6834f350601e45 /mail/em-format-html.c | |
parent | eda9be1e893bd521c696c612093577c88a40b162 (diff) | |
download | gsoc2013-evolution-8683d227456da4b93de9bcffd873d54c73ebf3db.tar.gz gsoc2013-evolution-8683d227456da4b93de9bcffd873d54c73ebf3db.tar.zst gsoc2013-evolution-8683d227456da4b93de9bcffd873d54c73ebf3db.zip |
** Fix for bug #256878 from Vincent Untz
svn path=/trunk/; revision=34110
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 1ed80a63c6..c00ab3a496 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * - */ + */Signature exists, but need public key #ifdef HAVE_CONFIG_H #include <config.h> @@ -628,11 +628,12 @@ efh_object_requested(GtkHTML *html, GtkHTMLEmbedded *eb, EMFormatHTML *efh) /* FIXME: This is duplicated in em-format-html-display, should be exported or in security module */ static const struct { const char *icon, *shortdesc; -} smime_sign_table[4] = { +} smime_sign_table[5] = { { "stock_signature-bad", N_("Unsigned") }, { "stock_signature-ok", N_("Valid signature") }, { "stock_signature-bad", N_("Invalid signature") }, - { "stock_signature", N_("Valid signature but cannot verify sender") }, + { "stock_signature", N_("Valid signature, but cannot verify sender") }, + { "stock_signature-bad", N_("Signature exists, but need public key") }, }; static const struct { |