diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-mailer-prefs.c | 4 | ||||
-rw-r--r-- | plugins/bogo-junk-plugin/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml | 2 | ||||
-rw-r--r-- | plugins/sa-junk-plugin/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml | 2 |
6 files changed, 22 insertions, 4 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); diff --git a/plugins/bogo-junk-plugin/ChangeLog b/plugins/bogo-junk-plugin/ChangeLog index 75930bd54e..cb2636d549 100644 --- a/plugins/bogo-junk-plugin/ChangeLog +++ b/plugins/bogo-junk-plugin/ChangeLog @@ -1,3 +1,9 @@ +2007-08-22 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #468303 + + * org-gnome-bogo-junk-plugin.eplug.xml: Enable strings for i18n. + 2007-07-26 Hiroyuki Ikezoe <poincare@ikezoe.net> * bf-junk-filter.c: (convert_unicode_cb): Plugged memory leak. diff --git a/plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml b/plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml index 3ce26cc0b7..3b6613f324 100644 --- a/plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml +++ b/plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml @@ -18,7 +18,7 @@ <!-- hook into the 'mail properties' menu --> <hook class="org.gnome.evolution.mail.config:1.0"> <group target="prefs" id="org.gnome.evolution.mail.prefs"> - <item type="section_table" path="40.junk/30.options" label="Bogofilter Options"/> + <item type="section_table" path="40.junk/30.options" _label="Bogofilter Options"/> <item type="item_table" path="40.junk/40.options" factory="org_gnome_bogo_convert_unicode"/> </group> </hook> diff --git a/plugins/sa-junk-plugin/ChangeLog b/plugins/sa-junk-plugin/ChangeLog index 9cec485bdf..546a2982b8 100644 --- a/plugins/sa-junk-plugin/ChangeLog +++ b/plugins/sa-junk-plugin/ChangeLog @@ -1,3 +1,9 @@ +2007-08-22 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #468303 + + * org-gnome-sa-junk-plugin.eplug.xml: Add strings for i18n. + 2007-05-11 Jules Colding <colding@omesc.com> * em-junk-filter.c (pipe_to_sa_full): File descriptor leaks fixed. diff --git a/plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml b/plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml index 6b2489744c..7dee4cd2d3 100644 --- a/plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml +++ b/plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml @@ -18,7 +18,7 @@ <!-- hook into the 'mail properties' menu --> <hook class="org.gnome.evolution.mail.config:1.0"> <group target="prefs" id="org.gnome.evolution.mail.prefs"> - <item type="section_table" path="40.junk/10.options" label="Spamassassin Options"/> + <item type="section_table" path="40.junk/10.options" _label="Spamassassin Options"/> <item type="item_table" path="40.junk/20.options" factory="org_gnome_sa_use_remote_tests"/> </group> </hook> |