** Fix for bug #458515 string corrected

2007-11-12  indu  <indu_ait@yahoo.co.in>

          ** Fix for bug #458515
          *  status-track.c: (recipient->undelivered_date)
             string corrected


svn path=/trunk/; revision=34527
This commit is contained in:
indu
2007-11-12 22:08:41 +00:00
committed by Andre Klapper
parent 7c30eabd8a
commit d6dbc91c65
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-11-12 indu <indu_ait@yahoo.co.in>
** Fix for bug #458515
* status-track.c: (recipient->undelivered_date)
string corrected
2007-10-26 Kjartan Maraas <kmaraas@gnome.org>
* junk-mail-settings.c: (junk_mail_settings),

View File

@ -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');
}