diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-03 03:05:39 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-03 03:05:39 +0800 |
commit | 811d0de363b2f750cfbe47540437ddaf3139de3f (patch) | |
tree | 8cf9164cb01afd8205d6662762b91db54530758b /shell/e-shell.c | |
parent | 9c9e6d8e0c8124971d06b694df2d3e1d77edc3b1 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 7 |
1 files changed, 4 insertions, 3 deletions
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)); |