diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 11 | ||||
-rw-r--r-- | mail/mail-offline-handler.h | 4 | ||||
-rw-r--r-- | mail/mail-signature-editor.c | 4 |
3 files changed, 12 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 57e975b606..40ce345892 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,6 +1,15 @@ +2002-10-08 Jeffrey Stedfast <fejj@ximian.com> + + * mail-signature-editor.c (mail_signature_editor): Mark a string + for translation, fixes bug #31942. Thanks to kmaraas@gnome.org for + this patch. + + * mail-offline-handler.h: Don't #include config.h here. Fixes bug + #31941. + 2002-10-07 Jeffrey Stedfast <fejj@ximian.com> - * mail-composer-prefs.c (spell_load_values): Don't maek "en" for + * mail-composer-prefs.c (spell_load_values): Don't mark "en" for translation. Fixes bug #31788. * mail-config.glade: Removed a "xxxxxxxxxxx" string so that diff --git a/mail/mail-offline-handler.h b/mail/mail-offline-handler.h index b053b715e7..5d9746b148 100644 --- a/mail/mail-offline-handler.h +++ b/mail/mail-offline-handler.h @@ -23,10 +23,6 @@ #ifndef _MAIL_OFFLINE_HANDLER_H_ #define _MAIL_OFFLINE_HANDLER_H_ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include <bonobo/bonobo-xobject.h> #include "Evolution.h" diff --git a/mail/mail-signature-editor.c b/mail/mail-signature-editor.c index 2a6463d680..d2f0df303d 100644 --- a/mail/mail-signature-editor.c +++ b/mail/mail-signature-editor.c @@ -329,8 +329,8 @@ mail_signature_editor (MailConfigSignature *sig) editor->sig = sig; editor->html = sig->html; - - title = g_strdup_printf ("Edit signature"); + + title = g_strdup_printf (_("Edit signature")); editor->win = bonobo_window_new ("e-sig-editor", title); gtk_window_set_default_size (GTK_WINDOW (editor->win), DEFAULT_WIDTH, DEFAULT_HEIGHT); gtk_window_set_policy (GTK_WINDOW (editor->win), FALSE, TRUE, FALSE); |