aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-05-10 20:59:36 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-05-10 20:59:36 +0800
commit6f6440de6109be0603e7b886d31fce3ff270735c (patch)
tree030d1ed457d3b59f60ba69c3f6787689672c6f3a /shell/main.c
parent0de7af661d4e72b621edc8ac06f8c48b9bea9d41 (diff)
downloadgsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.tar
gsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.tar.gz
gsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.tar.bz2
gsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.tar.lz
gsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.tar.xz
gsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.tar.zst
gsoc2013-evolution-6f6440de6109be0603e7b886d31fce3ff270735c.zip
set title to just Evolution (show_development_warning): ditto for warning
2004-05-10 JP Rosevear <jpr@ximian.com> * main.c (show_development_warning): set title to just Evolution (show_development_warning): ditto for warning (idle_cb): ditto for title * e-shell-window.c (update_offline_toggle_status): set tooltip to just Evolution (e_shell_window_new): ditto for window title * e-shell-window-commands.c (command_about_box): set title to just Evolution svn path=/trunk/; revision=25835
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/main.c b/shell/main.c
index 5cc459e528..215a5e0ce0 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -209,7 +209,7 @@ show_development_warning (GtkWindow *parent)
g_object_unref (client);
warning_dialog = gtk_dialog_new ();
- gtk_window_set_title (GTK_WINDOW (warning_dialog), "Ximian Evolution " VERSION);
+ gtk_window_set_title (GTK_WINDOW (warning_dialog), "Evolution " VERSION);
gtk_window_set_modal (GTK_WINDOW (warning_dialog), TRUE);
gtk_dialog_add_button (GTK_DIALOG (warning_dialog), GTK_STOCK_OK, GTK_RESPONSE_OK);
e_dialog_set_transient_for (GTK_WINDOW (warning_dialog), GTK_WIDGET (parent));
@@ -228,9 +228,9 @@ show_development_warning (GtkWindow *parent)
/* xgettext:no-c-format */
/* Preview/Alpha/Beta version warning message */
_("Hi. Thanks for taking the time to download this preview release\n"
- "of the Ximian Evolution groupware suite.\n"
+ "of the Evolution groupware suite.\n"
"\n"
- "This version of Ximian Evolution is not yet complete. It is getting close,\n"
+ "This version of Evolution is not yet complete. It is getting close,\n"
"but some features are either unfinished or do not work properly.\n"
"\n"
"If you want a stable version of Evolution, we urge you to uninstall\n"
@@ -252,7 +252,7 @@ show_development_warning (GtkWindow *parent)
gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0);
label = gtk_label_new (_("Thanks\n"
- "The Ximian Evolution Team\n"));
+ "The Evolution Team\n"));
gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_RIGHT);
gtk_misc_set_alignment(GTK_MISC(label), 1, .5);
@@ -388,7 +388,7 @@ idle_cb (void *data)
corba_shell = bonobo_activation_activate_from_id (E_SHELL_OAFIID, 0, NULL, &ev);
if (ev._major != CORBA_NO_EXCEPTION || corba_shell == CORBA_OBJECT_NIL) {
e_notice (NULL, GTK_MESSAGE_ERROR,
- _("Cannot register the Ximian Evolution shell."));
+ _("Cannot register the Evolution shell."));
CORBA_exception_free (&ev);
bonobo_main_quit ();
return FALSE;
@@ -397,7 +397,7 @@ idle_cb (void *data)
default:
e_notice (NULL, GTK_MESSAGE_ERROR,
- _("Cannot initialize the Ximian Evolution shell: %s"),
+ _("Cannot initialize the Evolution shell: %s"),
e_shell_construct_result_to_string (result));
CORBA_exception_free (&ev);
bonobo_main_quit ();