diff options
author | Milan Crha <mcrha@redhat.com> | 2014-04-29 21:14:25 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-04-29 21:14:25 +0800 |
commit | 07d7cdf0a5334ac24a2842f09d842838ddbf6f19 (patch) | |
tree | 64050fd4847d69e66ea4ba44a39083cfe44ae40b /addressbook/gui/contact-editor | |
parent | 3c497e278d5af861d09db0d57758f0612ea4baf1 (diff) | |
download | gsoc2013-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.
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
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); } |