diff options
-rw-r--r-- | composer/ChangeLog | 4 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 57451818fa..73ffd7d31c 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,7 @@ +2002-09-15 Kjartan Maraas <kmaraas@gnome.org> + + * e-msg-composer.c: Mark a string for translation. + 2002-09-05 Ettore Perazzoli <ettore@ximian.com> * e-msg-composer.c (composer_key_pressed): Don't chain the event diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 53de237e4b..b63830426b 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -1516,7 +1516,7 @@ do_exit (EMsgComposer *composer) subject = e_utf8_to_locale_string (subject_utf8); g_free (subject_utf8); - label = g_strdup_printf (("The message \"%s\" has not been sent.\n\nDo you wish to save your changes?"), subject); + label = g_strdup_printf (_("The message \"%s\" has not been sent.\n\nDo you wish to save your changes?"), subject); g_free (subject); dialog = gnome_message_box_new (label, GNOME_MESSAGE_BOX_QUESTION, |