diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-format-html-display.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0afbbfcb75..08ef99acc4 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2006-07-20 Srinivasa Ragavan <sragavan@novell.com> + + * em-format-html-display.c: (efhd_attachment_bar_refresh): Modified + the mnemonics for avoiding the conflict with search. + 2006-07-19 Johnny Jacob <jjohnny@novell.com> ** Fix for bug #347993 diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index 8a0dd3caf4..72a0ec6524 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -2182,7 +2182,7 @@ efhd_attachment_bar_refresh (EMFormatHTMLDisplay *efhd) char *txt; /* Cant i put in the number of attachments here ?*/ - txt = g_strdup_printf(ngettext("%d attachme_nt", "%d attachme_nts", nattachments), nattachments); + txt = g_strdup_printf(ngettext("%d at_tachment", "%d at_tachments", nattachments), nattachments); gtk_label_set_text_with_mnemonic ((GtkLabel *)efhd->priv->label, txt); g_free (txt); |