diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-01-02 05:22:45 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-02 05:22:45 +0800 |
commit | e650afea025a34dd179f4743c25558a5c50e9dfd (patch) | |
tree | d847d10adec28f8abbb610aa7f106c768b6a2721 /addressbook/gui | |
parent | d8b6eae211270503c8cdbf6a6cded1f08513d185 (diff) | |
download | gsoc2013-evolution-e650afea025a34dd179f4743c25558a5c50e9dfd.tar.gz 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.c | 2 |
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); |