aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ipod-sync
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-01-27 07:53:57 +0800
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-01-27 07:53:57 +0800
commit44eb71780ac5a7e72ba9106c20eef913b29abd05 (patch)
treeb6360a88d2b2d6ce69e376d9350a917f0754079e /plugins/ipod-sync
parentfcfe102b0c0340918e013b7f3cb39fb5560a4fef (diff)
downloadgsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar
gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.gz
gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.bz2
gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.lz
gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.xz
gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.zst
gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.zip
Mark strings as translatable. See bug #399381 for details.
svn path=/trunk/; revision=33152
Diffstat (limited to 'plugins/ipod-sync')
-rw-r--r--plugins/ipod-sync/ChangeLog5
-rw-r--r--plugins/ipod-sync/evolution-ipod-sync.c16
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);