diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-08-22 03:09:27 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-08-22 03:09:27 +0800 |
commit | 1cd6a9cb400d4da31668c199a757066f2ff42e4d (patch) | |
tree | 8dd1b25f230cd4dd698362dd040e1d5660d0a493 /mail | |
parent | a5c73aaa9a67136deef137c6f3b30e469ce0dd89 (diff) | |
download | gsoc2013-evolution-1cd6a9cb400d4da31668c199a757066f2ff42e4d.tar.gz gsoc2013-evolution-1cd6a9cb400d4da31668c199a757066f2ff42e4d.tar.zst gsoc2013-evolution-1cd6a9cb400d4da31668c199a757066f2ff42e4d.zip |
** Fix for bug #468303
svn path=/trunk/; revision=34054
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-mailer-prefs.c | 4 |
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); |