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/em-mailer-prefs.c | |
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/em-mailer-prefs.c')
-rw-r--r-- | mail/em-mailer-prefs.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |