diff options
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 6 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 4 | ||||
-rw-r--r-- | composer/evolution-composer.c | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index ff09113d6b..d4704eb554 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,9 @@ +2002-09-30 Aaron Weber <aaron@ximian.com> + + * evolution-composer.c (evolution_composer_factory_init): adjust string on line 391 + + * e-msg-composer.c (create_composer): adjust string on 2872 + 2002-09-27 Dan Winship <danw@ximian.com> * Evolution-Composer.idl (setHeaders): let the caller set the diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 2da8679807..1dfe6667fe 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -2818,7 +2818,9 @@ create_composer (int visible_mask) if (!composer->editor) { e_activation_failure_dialog (GTK_WINDOW (composer), _("Could not create composer window:\n" - "Unable to activate HTML editor component."), + "Unable to activate HTML editor component.\n" + "Please make sure you have the correct version\n" + "of gtkhtml and libgtkhtml installed.\n"), GNOME_GTKHTML_EDITOR_CONTROL_ID, "IDL:Bonobo/Control:1.0"); gtk_object_destroy (GTK_OBJECT (composer)); diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c index f7131ae6ae..a8d8f154a5 100644 --- a/composer/evolution-composer.c +++ b/composer/evolution-composer.c @@ -405,7 +405,7 @@ evolution_composer_factory_init (void (*send) (EMsgComposer *, gpointer), if (bonobo_generic_factory_new (GNOME_EVOLUTION_MAIL_COMPOSER_FACTORY_ID, factory_fn, NULL) == NULL) { e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, - _("Cannot initialize Evolution's composer.")); + _("Cannot initialize the Evolution composer.")); exit (1); } |