diff options
author | Christian Neumair <cneumair@src.gnome.org> | 2004-02-12 03:34:48 +0800 |
---|---|---|
committer | Christian Neumair <cneumair@src.gnome.org> | 2004-02-12 03:34:48 +0800 |
commit | f4206679edf2e98c4f6c952e7fe47fd875bda272 (patch) | |
tree | c530e0f48b2861f771617c60c93a7becf74a7c8a | |
parent | 957f1e9b8dbbc96161c00101bcf507fcfc43dbc3 (diff) | |
download | gsoc2013-evolution-f4206679edf2e98c4f6c952e7fe47fd875bda272.tar.gz gsoc2013-evolution-f4206679edf2e98c4f6c952e7fe47fd875bda272.tar.zst gsoc2013-evolution-f4206679edf2e98c4f6c952e7fe47fd875bda272.zip |
"On this computer" -> "On This Computer".
svn path=/trunk/; revision=24713
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-folder-tree-model.c | 4 | ||||
-rw-r--r-- | mail/mail-component.c | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 28d273de86..43ce287c92 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2004-02-11 Christian Neumair <chris@gnome-de.org> + + * em-folder-tree-model.c (sort_cb): "On this Computer" -> "On This + Computer". + + * mail-component.c (mc_setup_local_store): Ditto. + 2004-02-11 Jeffrey Stedfast <fejj@ximian.com> * em-format-html-print.c: Same. diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c index 3c1399ba74..3bb2305b9b 100644 --- a/mail/em-folder-tree-model.c +++ b/mail/em-folder-tree-model.c @@ -157,9 +157,9 @@ sort_cb (GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer user_data if (is_store) { /* On This Computer is always first and VFolders is always last */ - if (!strcmp (aname, _("On this Computer"))) + if (!strcmp (aname, _("On This Computer"))) return -1; - if (!strcmp (bname, _("On this Computer"))) + if (!strcmp (bname, _("On This Computer"))) return 1; if (!strcmp (aname, _("VFolders"))) return 1; diff --git a/mail/mail-component.c b/mail/mail-component.c index 2efe4d7a75..edc0866398 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -170,7 +170,7 @@ mc_setup_local_store(MailComponent *mc) g_object_ref(mc); camel_object_ref(p->local_store); - mail_async_event_emit(p->async_event, MAIL_ASYNC_GUI, (MailAsyncFunc)mc_add_store, p->local_store, _("On this Computer"), mc); + mail_async_event_emit(p->async_event, MAIL_ASYNC_GUI, (MailAsyncFunc)mc_add_store, p->local_store, _("On This Computer"), mc); return; fail: |