diff options
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 4 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-contacts.c | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index f4d81e1f9d..4e470410e1 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,10 @@ +2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru> + + * exchange-account-setup.c: + (org_gnome_exchange_show_folder_size_factory): + * exchange-contacts.c: (e_exchange_contacts_pcontacts): + mark strings as translatable. See bug #399381 for details. + 2006-01-18 Raghavendran R <raghavguru7@gmail.com> * exchange-send-options.glade :Glade file for 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); 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:")); |