aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Leach <jleach@ximian.com>2001-07-27 00:56:33 +0800
committerJacob Leach <jleach@src.gnome.org>2001-07-27 00:56:33 +0800
commitf98da84ec3fad3591ac0eb0547c580e346af6ee5 (patch)
tree076228badbcb1ec1f3e371dda2f22003b36ee0cd
parenta1677306784f06aa3e705f5f656d8c4b425deb4d (diff)
downloadgsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.tar
gsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.tar.gz
gsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.tar.bz2
gsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.tar.lz
gsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.tar.xz
gsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.tar.zst
gsoc2013-evolution-f98da84ec3fad3591ac0eb0547c580e346af6ee5.zip
Little UI nit: capitalize the words Offline/Online for the File menu.
2001-07-26 Jason Leach <jleach@ximian.com> * e-shell-view-menu.c (update_offline_menu_item): Little UI nit: capitalize the words Offline/Online for the File menu. svn path=/trunk/; revision=11428
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-view-menu.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index cd5e256e8a..07896c83be 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-26 Jason Leach <jleach@ximian.com>
+
+ * e-shell-view-menu.c (update_offline_menu_item): Little UI thing:
+ capitalize the words Offline/Online for the File menu.
+
2001-07-25 Jason Leach <jleach@ximian.com>
* e-shell-folder-selection-dialog.c (folder_selected_cb): New
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index 09dbbae78f..21b8680c49 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -686,7 +686,7 @@ update_offline_menu_item (EShellView *shell_view,
case E_SHELL_LINE_STATUS_OFFLINE:
bonobo_ui_component_set_prop (ui_component,
"/menu/File/ToggleOffline",
- "label", _("Work online"), NULL);
+ "label", _("Work Online"), NULL);
bonobo_ui_component_set_prop (ui_component,
"/menu/File/ToggleOffline",
"verb", "WorkOnline", NULL);
@@ -698,7 +698,7 @@ update_offline_menu_item (EShellView *shell_view,
case E_SHELL_LINE_STATUS_ONLINE:
bonobo_ui_component_set_prop (ui_component,
"/menu/File/ToggleOffline",
- "label", _("Work offline"), NULL);
+ "label", _("Work Offline"), NULL);
bonobo_ui_component_set_prop (ui_component,
"/menu/File/ToggleOffline",
"verb", "WorkOffline", NULL);
@@ -710,7 +710,7 @@ update_offline_menu_item (EShellView *shell_view,
case E_SHELL_LINE_STATUS_GOING_OFFLINE:
bonobo_ui_component_set_prop (ui_component,
"/menu/File/ToggleOffline",
- "label", _("Work offline"), NULL);
+ "label", _("Work Offline"), NULL);
bonobo_ui_component_set_prop (ui_component,
"/menu/File/ToggleOffline",
"verb", "WorkOffline", NULL);