aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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));