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
This commit is contained in:
Jon Trowbridge
2001-10-14 17:56:16 +00:00
committed by Jon Trowbridge
parent b407e779ce
commit 9aa2b4c40f
2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,9 @@
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)
2001-10-12 Jon Trowbridge <trow@ximian.com>
* gui/component/addressbook-factory.c (main): Add a component name

View File

@ -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;
}