aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-26 08:46:30 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-26 08:46:30 +0800
commitb6df48bee7b46d6516256a1a09440917ad7b3260 (patch)
tree92a6e40464246e6dde52ba0bf790ef0685710ae8 /shell
parent3b577252a7df4ac4c63b1c9861ee789877b3c06e (diff)
downloadgsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.tar
gsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.tar.gz
gsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.tar.bz2
gsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.tar.lz
gsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.tar.xz
gsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.tar.zst
gsoc2013-evolution-b6df48bee7b46d6516256a1a09440917ad7b3260.zip
Don't allow translators to translate "Ximian Evolution".
* e-shell-view.c (update_for_current_uri): Don't allow translators to translate "Ximian Evolution". svn path=/trunk/; revision=14116
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-view.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 8a1ff8c643..d112717e8b 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2001-10-25 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell-view.c (update_for_current_uri): Don't allow translators
+ to translate "Ximian Evolution".
+
+2001-10-25 Ettore Perazzoli <ettore@ximian.com>
+
* e-component-registry.c (wait_for_corba_object_to_die): New
helper function.
(e_component_registry_restart_component): Use it.
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index c8be8588c8..fe55de6049 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1592,9 +1592,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 - Ximian Evolution %s"), title, VERSION);
+ utf8_window_title = g_strdup_printf ("%s - Ximian Evolution %s", title, VERSION);
else
- utf8_window_title = g_strdup_printf (_("%s - Ximian 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);