From 28d562233ce5e2151203e10322daf610097fad51 Mon Sep 17 00:00:00 2001 From: Srinivasa Ragavan Date: Sat, 19 May 2007 09:42:40 +0000 Subject: ** Fix for bug #439512 svn path=/trunk/; revision=33558 --- mail/ChangeLog | 7 +++++++ mail/em-mailer-prefs.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 0d8a485196..afbdc793d7 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2007-05-19 Srinivasa Ragavan + + ** Fix for bug #439512 + + * em-mailer-prefs.c: (junk_plugin_changed): Mark strings for + translation. + 2007-05-17 Srinivasa Ragavan ** Improved GMail like thread sorting. Even expanded threads are diff --git a/mail/em-mailer-prefs.c b/mail/em-mailer-prefs.c index d724223e88..7caeee32a3 100644 --- a/mail/em-mailer-prefs.c +++ b/mail/em-mailer-prefs.c @@ -775,7 +775,7 @@ junk_plugin_changed (GtkWidget *combo, EMMailerPrefs *prefs) if (status) { char *text, *html; gtk_image_set_from_stock (prefs->plugin_image, "gtk-dialog-info", GTK_ICON_SIZE_MENU); - text = g_strdup_printf ("%s plugin is available and the binary is installed.", item->plugin_name); + text = g_strdup_printf (_("%s plugin is available and the binary is installed."), item->plugin_name); html = g_strdup_printf ("%s", text); gtk_label_set_markup (prefs->plugin_status, html); g_free (html); @@ -783,7 +783,7 @@ junk_plugin_changed (GtkWidget *combo, EMMailerPrefs *prefs) } else { char *text, *html; gtk_image_set_from_stock (prefs->plugin_image, "gtk-dialog-warning", GTK_ICON_SIZE_MENU); - text = g_strdup_printf ("%s plugin is not available. Please check whether the package is installed.", item->plugin_name); + text = g_strdup_printf (_("%s plugin is not available. Please check whether the package is installed."), item->plugin_name); html = g_strdup_printf ("%s", text); gtk_label_set_markup (prefs->plugin_status, html); g_free (html); -- cgit v1.2.3