aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-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;