diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index 83089bb2c1..a1aaacfd06 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,3 +1,9 @@ +2007-11-12 indu + + ** Fix for bug #458515 + * status-track.c: (recipient->undelivered_date) + string corrected + 2007-10-26 Kjartan Maraas * junk-mail-settings.c: (junk_mail_settings), diff --git a/plugins/groupwise-features/status-track.c b/plugins/groupwise-features/status-track.c index 7606fe0bf3..0db1aab090 100644 --- a/plugins/groupwise-features/status-track.c +++ b/plugins/groupwise-features/status-track.c @@ -222,7 +222,7 @@ track_status (EPopup *ep, EPopupItem *item, void *data) label = g_string_append_c (label, '\n'); } if (recipient->undelivered_date) { - label = g_string_append (label, _("Un-delivered: ")); + label = g_string_append (label, _("Undelivered: ")); label = g_string_append (label, format_date(recipient->undelivered_date)); label = g_string_append_c (label, '\n'); }