aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-contacts.c
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/exchange-operations/exchange-contacts.c
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/exchange-operations/exchange-contacts.c')
-rw-r--r--plugins/exchange-operations/exchange-contacts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/exchange-operations/exchange-contacts.c b/plugins/exchange-operations/exchange-contacts.c
index eae0944491..a1ea6dab98 100644
--- a/plugins/exchange-operations/exchange-contacts.c
+++ b/plugins/exchange-operations/exchange-contacts.c
@@ -210,9 +210,9 @@ e_exchange_contacts_pcontacts (EPlugin *epl, EConfigHookItemFactoryData *data)
abook_name = (char*)e_source_peek_name (source);
model = exchange_account_folder_size_get_model (account);
if (model)
- folder_size = g_strdup_printf ("%s KB", exchange_folder_size_get_val (model, abook_name));
+ folder_size = g_strdup_printf (_("%s KB"), exchange_folder_size_get_val (model, abook_name));
else
- folder_size = g_strdup_printf ("0 KB");
+ folder_size = g_strdup_printf (_("0 KB"));
/* FIXME: Take care of i18n */
lbl_size = gtk_label_new_with_mnemonic (_("Size:"));