[evolution-patches] Always capitalize "On This Computer"
- From: Christian Neumair <chris gnome-de org>
- To: evolution-patches lists ximian com
- Subject: [evolution-patches] Always capitalize "On This Computer"
- Date: Wed, 11 Feb 2004 20:21:31 +0100
Currently, "On this computer" and "On This Computer" are used
inconsistently for tree view categories. This patch should unify those
strings.
regs,
Chris
Index: mail/em-folder-tree-model.c
===================================================================
RCS file: /cvs/gnome/evolution/mail/em-folder-tree-model.c,v
retrieving revision 1.36
diff -u -r1.36 em-folder-tree-model.c
--- mail/em-folder-tree-model.c 9 Feb 2004 13:11:51 -0000 1.36
+++ mail/em-folder-tree-model.c 11 Feb 2004 19:20:06 -0000
@@ -157,9 +157,9 @@
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;
Index: mail/mail-component.c
===================================================================
RCS file: /cvs/gnome/evolution/mail/mail-component.c,v
retrieving revision 1.53
diff -u -r1.53 mail-component.c
--- mail/mail-component.c 11 Feb 2004 08:26:16 -0000 1.53
+++ mail/mail-component.c 11 Feb 2004 19:20:07 -0000
@@ -170,7 +170,7 @@
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:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]