aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-10-03 03:05:39 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-10-03 03:05:39 +0800
commit811d0de363b2f750cfbe47540437ddaf3139de3f (patch)
tree8cf9164cb01afd8205d6662762b91db54530758b
parent9c9e6d8e0c8124971d06b694df2d3e1d77edc3b1 (diff)
downloadgsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.tar
gsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.tar.gz
gsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.tar.bz2
gsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.tar.lz
gsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.tar.xz
gsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.tar.zst
gsoc2013-evolution-811d0de363b2f750cfbe47540437ddaf3139de3f.zip
Make the crash message less dorky. [#10264]
* e-shell.c (e_shell_component_maybe_crashed): Make the crash message less dorky. [#10264] svn path=/trunk/; revision=13309
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell.c7
2 files changed, 9 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 537d90be20..40daa553ac 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2001-10-02 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell.c (e_shell_component_maybe_crashed): Make the crash
+ message less dorky. [#10264]
+
+2001-10-02 Ettore Perazzoli <ettore@ximian.com>
+
[Don't allow dragging from a folder to one of its descendants or
onto itself, when the operation is GDK_DRAG_MOVE. This fixes bugs
like #8737.]
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 562893a4a3..a1f47ca8b5 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -1485,9 +1485,10 @@ e_shell_component_maybe_crashed (EShell *shell,
parent_window = GTK_WINDOW (shell_view);
e_notice (parent_window, GNOME_MESSAGE_BOX_ERROR,
- _("Ooops! The views for `%s' have died unexpectedly. :-(\n"
- "This probably means that the %s component has crashed."),
- uri, type_name);
+ _("The Evolution component that handles folders of type \"%s\"\n"
+ "has unexpectedly quit. You will need to quit Evolution and restart\n"
+ "in order to access that data again."),
+ type_name);
if (shell_view)
bonobo_window_deregister_dead_components (BONOBO_WINDOW (shell_view));