aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/em-mailer-prefs.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 1d0dcc74d4..c7e68450a2 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2007-08-22 Srinivasa Ragavan <sragavan@novell.com>
+
+ ** Fix for bug #468303
+
+ * em-mailer-prefs.c: (junk_plugin_setup): Add strings for i18n.
+
2007-08-21 Tobias Mueller <tobiasmue@svn.gnome.org>
** Another fix for bug #467382
diff --git a/mail/em-mailer-prefs.c b/mail/em-mailer-prefs.c
index 3affda4771..77aae592f3 100644
--- a/mail/em-mailer-prefs.c
+++ b/mail/em-mailer-prefs.c
@@ -838,7 +838,7 @@ junk_plugin_setup (GtkWidget *combo, EMMailerPrefs *prefs)
char *text, *html;
gtk_image_set_from_stock (prefs->plugin_image, "gtk-dialog-info", GTK_ICON_SIZE_MENU);
/* May be a better text */
- 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 ("<i>%s</i>", text);
gtk_label_set_markup (prefs->plugin_status, html);
g_free (html);
@@ -847,7 +847,7 @@ junk_plugin_setup (GtkWidget *combo, EMMailerPrefs *prefs)
char *text, *html;
gtk_image_set_from_stock (prefs->plugin_image, "gtk-dialog-warning", GTK_ICON_SIZE_MENU);
/* May be a better text */
- 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 ("<i>%s</i>", text);
gtk_label_set_markup (prefs->plugin_status, html);
g_free (html);