diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-local.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 58fcf11930..e7d5535db6 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2001-05-21 Kjartan Maraas <kmaraas@gnome.org> + + * mail-local.c: Mark a string for translation. + 2001-05-18 Jon Trowbridge <trow@ximian.com> * Makefile.am (evolution_mail_LDADD): Added libebook.la (which is @@ -4802,7 +4806,7 @@ End of branch * mail-callbacks.c (save_msg): New callback for saving messages. (save_msg_ok): - * folder-browser.c (on_right_click): Add a Save Ass menu item. + * folder-browser.c (on_right_click): Add a Save As menu item. * mail-ops.c (cleanup_save_messages): Save all emails to the path given. diff --git a/mail/mail-local.c b/mail/mail-local.c index e6167b812d..0805fd38a2 100644 --- a/mail/mail-local.c +++ b/mail/mail-local.c @@ -1044,7 +1044,7 @@ mail_local_reconfigure_folder (FolderBrowser *fb) gd = (GnomeDialog *)glade_xml_get_widget (gui, "dialog_format"); name = mail_tool_get_folder_name (fb->folder); - title = g_strdup_printf ("Reconfigure %s", name); + title = g_strdup_printf (_("Reconfigure %s"), name); gtk_window_set_title (GTK_WINDOW (gd), title); g_free (title); g_free (name); |