aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-10-15 01:56:16 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-10-15 01:56:16 +0800
commit9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee (patch)
tree5081b45b59bcc161dc3676ef6e1d55103ff9aff1 /addressbook/gui/component
parentb407e779ceabe146aad777352a2e6af5f275c3c8 (diff)
downloadgsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.tar
gsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.tar.gz
gsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.tar.bz2
gsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.tar.lz
gsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.tar.xz
gsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.tar.zst
gsoc2013-evolution-9aa2b4c40f3e3a1214ceedbcf3fb20d4ea8a01ee.zip
Added linebreaks to our "this shouldn't happen" dialog message. (Bug
2001-10-14 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names.c (e_select_names_hookup_shell_listeners): Added linebreaks to our "this shouldn't happen" dialog message. (Bug #12498)CVS: ---------------------------------------------------------------------- svn path=/trunk/; revision=13668
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index e915b20edf..ccb17a79f3 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -513,11 +513,12 @@ e_select_names_hookup_shell_listeners (ESelectNames *e_select_names)
if (storage == CORBA_OBJECT_NIL) {
GtkWidget *oh_shit;
- oh_shit = gnome_error_dialog (_("Evolution is unable to get the addressbook local storage. "
- "This may have been caused by the evolution-addressbook component crashing. "
- "To help us better understand and ultimately resolve this problem, "
- "please send an e-mail to Jon Trowbridge <trow@ximian.com> with a detailed description of "
- "the circumstances under which this error occurred. Thank you."));
+ oh_shit = gnome_error_dialog (_("Evolution is unable to get the addressbook local storage.\n"
+ "This may have been caused by the evolution-addressbook component crashing.\n"
+ "To help us better understand and ultimately resolve this problem,\n"
+ "please send an e-mail to Jon Trowbridge <trow@ximian.com> with a\n"
+ "detailed description of the circumstances under which this error\n"
+ "occurred. Thank you."));
gtk_widget_show (oh_shit);
return;
}