aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-06 03:27:03 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-06 03:27:03 +0800
commit000b01e9a1620e750d64e7be966e39da1bb7f35d (patch)
treec441f49573c82211c24e43d2417f7f86a4960947 /shell/e-shell-view.c
parentcb704fd31b7ea71c2adc798796ff72cb555c20b8 (diff)
downloadgsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.tar
gsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.tar.gz
gsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.tar.bz2
gsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.tar.lz
gsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.tar.xz
gsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.tar.zst
gsoc2013-evolution-000b01e9a1620e750d64e7be966e39da1bb7f35d.zip
Replace "Evolution" with "Ximian Evolution" in a bunch of user-visible
places. svn path=/trunk/; revision=12625
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r--shell/e-shell-view.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 4186427e93..4161ba727a 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1275,7 +1275,7 @@ e_shell_view_construct (EShellView *shell_view,
priv = shell_view->priv;
- view = E_SHELL_VIEW (bonobo_window_construct (BONOBO_WINDOW (shell_view), "evolution", "Evolution"));
+ view = E_SHELL_VIEW (bonobo_window_construct (BONOBO_WINDOW (shell_view), "evolution", "Ximian Evolution"));
if (!view) {
gtk_object_unref (GTK_OBJECT (shell_view));
@@ -1499,9 +1499,9 @@ update_for_current_uri (EShellView *shell_view)
title = g_strdup (folder_name);
if (SUB_VERSION[0] == '\0')
- utf8_window_title = g_strdup_printf (_("%s - Evolution %s"), title, VERSION);
+ utf8_window_title = g_strdup_printf (_("%s - Ximian Evolution %s"), title, VERSION);
else
- utf8_window_title = g_strdup_printf (_("%s - Evolution %s [%s]"), title, VERSION, SUB_VERSION);
+ utf8_window_title = g_strdup_printf (_("%s - Ximian Evolution %s [%s]"), title, VERSION, SUB_VERSION);
gtk_window_title = e_utf8_to_gtk_string (GTK_WIDGET (shell_view), utf8_window_title);
gtk_window_set_title (GTK_WINDOW (shell_view), gtk_window_title);
@@ -1541,20 +1541,20 @@ update_offline_toggle_status (EShellView *shell_view)
icon_pixmap = online_pixmap;
icon_mask = online_mask;
sensitive = TRUE;
- tooltip = _("Evolution is currently online. "
+ tooltip = _("Ximian Evolution is currently online. "
"Click on this button to work offline.");
break;
case E_SHELL_LINE_STATUS_GOING_OFFLINE:
icon_pixmap = online_pixmap;
icon_mask = online_mask;
sensitive = FALSE;
- tooltip = _("Evolution is in the process of going offline.");
+ tooltip = _("Ximian Evolution is in the process of going offline.");
break;
case E_SHELL_LINE_STATUS_OFFLINE:
icon_pixmap = offline_pixmap;
icon_mask = offline_mask;
sensitive = TRUE;
- tooltip = _("Evolution is currently offline. "
+ tooltip = _("Ximian Evolution is currently offline. "
"Click on this button to work online.");
break;
default: