diff options
Diffstat (limited to 'plugins/ipod-sync')
-rw-r--r-- | plugins/ipod-sync/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/ipod-sync/evolution-ipod-sync.c | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/plugins/ipod-sync/ChangeLog b/plugins/ipod-sync/ChangeLog index 684b5be1e8..198e86a2a1 100644 --- a/plugins/ipod-sync/ChangeLog +++ b/plugins/ipod-sync/ChangeLog @@ -1,3 +1,8 @@ +2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru> + + * evolution-ipod-sync.c: (ipod_check_status): + mark strings as translatable. See bug #399381 for details. + 2006-05-13 Harish Krishnaswamy <kharish@novell.com> * Makefile.am : Add evolution-ipod-sync.h to dist. diff --git a/plugins/ipod-sync/evolution-ipod-sync.c b/plugins/ipod-sync/evolution-ipod-sync.c index fe31bdb4d7..4b7a3743ed 100644 --- a/plugins/ipod-sync/evolution-ipod-sync.c +++ b/plugins/ipod-sync/evolution-ipod-sync.c @@ -11,6 +11,7 @@ #include "evolution-ipod-sync.h" #include <gnome.h> +#include <glib/gi18n-lib.h> #include <glade/glade.h> #include <libhal.h> @@ -57,14 +58,13 @@ ipod_check_status (gboolean silent) * it wasn't plugged in. Either way, we want to umount * the iPod when we finish syncing. */ if (!silent) { - GtkWidget *message = gtk_message_dialog_new_with_markup ( - NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, - "<span weight=\"bold\" size=\"larger\">" - "Search for a iPod failed" - "</span>\n\n" - "Evolution could not find a iPod to synchronize with." - "Either it is not connected to the system or it is " - "not powered on."); + GtkWidget *message = gtk_message_dialog_new_with_markup (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, + _("<span weight=\"bold\" size=\"larger\">" + "Search for a iPod failed" + "</span>\n\n" + "Evolution could not find a iPod to synchronize with." + "Either it is not connected to the system or it is " + "not powered on.")); gtk_dialog_run (GTK_DIALOG (message)); gtk_widget_destroy (message); |