aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-01-02 05:22:45 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2009-01-02 05:22:45 +0800
commite650afea025a34dd179f4743c25558a5c50e9dfd (patch)
treed847d10adec28f8abbb610aa7f106c768b6a2721 /addressbook/gui
parentd8b6eae211270503c8cdbf6a6cded1f08513d185 (diff)
downloadgsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar
gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar.gz
gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar.bz2
gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar.lz
gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar.xz
gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar.zst
gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.zip
Use the correct macro when marking strings for translation.
2009-01-01 Matthew Barnes <mbarnes@redhat.com> * ui/component/addressbook-config.c (eabc_general_offline): Use the correct macro when marking strings for translation. svn path=/trunk/; revision=36956
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/component/addressbook-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index b8f2e3f6d9..bfa91cea47 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -632,7 +632,7 @@ eabc_general_offline(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent,
if (old)
return old;
else {
- offline_setting = gtk_check_button_new_with_mnemonic (N_("Copy _book content locally for offline operation"));
+ offline_setting = gtk_check_button_new_with_mnemonic (_("Copy _book content locally for offline operation"));
gtk_widget_show (offline_setting);
gtk_container_add (GTK_CONTAINER (parent), offline_setting);
g_signal_connect (offline_setting, "toggled", G_CALLBACK (offline_status_changed_cb), sdialog);