aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-04-29 21:14:25 +0800
committerMilan Crha <mcrha@redhat.com>2014-04-29 21:14:25 +0800
commit07d7cdf0a5334ac24a2842f09d842838ddbf6f19 (patch)
tree64050fd4847d69e66ea4ba44a39083cfe44ae40b
parent3c497e278d5af861d09db0d57758f0612ea4baf1 (diff)
downloadgsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.tar
gsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.tar.gz
gsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.tar.bz2
gsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.tar.lz
gsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.tar.xz
gsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.tar.zst
gsoc2013-evolution-07d7cdf0a5334ac24a2842f09d842838ddbf6f19.zip
EContactEditor: IM service name not localized properly
The IM service names are correctly marked for translation, but they are not localized (passed to gettext) at the place of its usage.
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index 6751a002ba..8359e7e0b7 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -1931,7 +1931,7 @@ init_im_record_type (EContactEditor *editor)
gtk_list_store_append (store, &iter);
gtk_list_store_set (store, &iter,
- DYNTABLE_COMBO_COLUMN_TEXT, im_service[i].pretty_name,
+ DYNTABLE_COMBO_COLUMN_TEXT, _(im_service[i].pretty_name),
DYNTABLE_COMBO_COLUMN_SENSITIVE, TRUE,
-1);
}