diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 66e8545bd6..718311c3f5 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2008-04-01 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #525510, patch from Thomas M. + + * message-list.c (ml_tree_value_at): + Mark "On This Computer" for translation. + 2008-03-29 Matthew Barnes <mbarnes@redhat.com> * em-network-prefs.c (em_network_prefs_finalise), diff --git a/mail/message-list.c b/mail/message-list.c index b276e227e7..0bad6c7a90 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1472,7 +1472,7 @@ ml_tree_value_at (ETreeModel *etm, ETreePath path, int col, void *model_data) euri = em_uri_from_camel(url); curl = camel_url_new (euri, &ex); if (curl->host && !strcmp(curl->host, "local") && curl->user && !strcmp(curl->user, "local")) - location = g_strconcat ("On This Computer", ":",curl->path, NULL); + location = g_strconcat (_("On This Computer"), ":",curl->path, NULL); } camel_exception_clear (&ex); |