aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancisco Javier F. Serrador <serrador@openshine.com>2006-11-11 08:23:17 +0800
committerFrancisco Javier Fernandez Serrador <serrador@src.gnome.org>2006-11-11 08:23:17 +0800
commit9c9596defa632142a1679e931ac965b33566c7bb (patch)
tree20a9507d3cf1e8fc561944621050e65f03f2bfd4
parent66bb80da5d8e7972da7f29451460a213f24a9618 (diff)
downloadgsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.tar
gsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.tar.gz
gsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.tar.bz2
gsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.tar.lz
gsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.tar.xz
gsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.tar.zst
gsoc2013-evolution-9c9596defa632142a1679e931ac965b33566c7bb.zip
Fixes #358249 Fixes #358249
2006-11-11 Francisco Javier F. Serrador <serrador@openshine.com> * gui/widgets/e-minicard.c: Fixes #358249 * gui/widgets/eab-contact-display.c: Fixes #358249 svn path=/trunk/; revision=32967
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/widgets/e-minicard.c2
-rw-r--r--addressbook/gui/widgets/eab-contact-display.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index d1058832c6..8ff9e95773 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-11 Francisco Javier F. Serrador <serrador@openshine.com>
+
+ * gui/widgets/e-minicard.c: Fixed #358249
+ * gui/widgets/eab-contact-display.c: Fixed #358249
+
2005-10-16 Devashish Sharma <sdevashish@novell.com>
* gui/widgets/e-addressbook-view.c (display_view): Changed the
diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c
index aa968ed263..2ef9b89dc0 100644
--- a/addressbook/gui/widgets/e-minicard.c
+++ b/addressbook/gui/widgets/e-minicard.c
@@ -826,7 +826,7 @@ get_email_location (EVCardAttribute *attr)
for (i = 0; i < G_N_ELEMENTS (common_location); i++) {
if (e_vcard_attribute_has_type (attr, common_location [i].name))
- return common_location [i].pretty_name;
+ return _(common_location [i].pretty_name);
}
return NULL;
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c
index 73503af53d..964d37804e 100644
--- a/addressbook/gui/widgets/eab-contact-display.c
+++ b/addressbook/gui/widgets/eab-contact-display.c
@@ -489,7 +489,7 @@ get_email_location (EVCardAttribute *attr)
for (i = 0; i < G_N_ELEMENTS (common_location); i++) {
if (e_vcard_attribute_has_type (attr, common_location [i].name))
- return common_location [i].pretty_name;
+ return _(common_location [i].pretty_name);
}
return NULL;