diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-10-09 03:16:10 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-10-09 03:16:10 +0800 |
commit | 705ab7a4d29509fe4b0f278763cf108c82e5ea82 (patch) | |
tree | b3973312061b885d9bfd9f966d56b793fa4fed84 | |
parent | 155223435b0a80bcc8fa3a6ff0b03d2031ae2403 (diff) | |
download | gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.tar gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.tar.gz gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.tar.bz2 gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.tar.lz gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.tar.xz gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.tar.zst gsoc2013-evolution-705ab7a4d29509fe4b0f278763cf108c82e5ea82.zip |
Mark a string for translation, fixes bug #31942. Thanks to
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.
svn path=/trunk/; revision=18353
-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); |