diff options
author | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2007-01-27 07:53:57 +0800 |
---|---|---|
committer | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2007-01-27 07:53:57 +0800 |
commit | 44eb71780ac5a7e72ba9106c20eef913b29abd05 (patch) | |
tree | b6360a88d2b2d6ce69e376d9350a917f0754079e /plugins/exchange-operations/exchange-account-setup.c | |
parent | fcfe102b0c0340918e013b7f3cb39fb5560a4fef (diff) | |
download | gsoc2013-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-account-setup.c')
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index 80f9ef2dd6..0ac6ffcd75 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -946,9 +946,9 @@ org_gnome_exchange_show_folder_size_factory (EPlugin *epl, EConfigHookItemFactor account = exchange_operations_get_exchange_account (); model = exchange_account_folder_size_get_model (account); if (model) - folder_size = g_strdup_printf ("%s KB", exchange_folder_size_get_val (model, folder_name)); + folder_size = g_strdup_printf (_("%s KB"), exchange_folder_size_get_val (model, folder_name)); else - folder_size = g_strdup ("0 KB"); + folder_size = g_strdup (_("0 KB")); hbx_size = (GtkHBox*) gtk_hbox_new (FALSE, 0); vbx = (GtkVBox *)gtk_notebook_get_nth_page (GTK_NOTEBOOK (data->parent), 0); |