diff options
author | indu <indu_ait@yahoo.co.in> | 2007-11-13 06:08:41 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2007-11-13 06:08:41 +0800 |
commit | d6dbc91c653a4d596f0207505697c84ff1abaf62 (patch) | |
tree | 8f100b5b9c01140f69eedecc47bf2cdf6459bc20 /plugins | |
parent | 7c30eabd8a29a7cafaee3af3c1e8c781b6fc2217 (diff) | |
download | gsoc2013-evolution-d6dbc91c653a4d596f0207505697c84ff1abaf62.tar.gz gsoc2013-evolution-d6dbc91c653a4d596f0207505697c84ff1abaf62.tar.zst gsoc2013-evolution-d6dbc91c653a4d596f0207505697c84ff1abaf62.zip |
** 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
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/groupwise-features/status-track.c | 2 |
2 files changed, 7 insertions, 1 deletions
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 <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), 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'); } |