aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/widgets/eab-contact-display.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 985c4ccc41..3d392a57bd 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-10 Andre Klapper <a9016009@gmx.de>
+
+ * gui/widgets/eab-contact-display.c:
+ change "E-Mail" to "Email". Fixes bug #404233.
+
2007-04-09 simon.zheng <simon.zheng@sun.com>
** Fix for bug #426487
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c
index d243d93bb1..26a5fc01e2 100644
--- a/addressbook/gui/widgets/eab-contact-display.c
+++ b/addressbook/gui/widgets/eab-contact-display.c
@@ -532,9 +532,9 @@ render_contact (GtkHTMLStream *html_stream, EContact *contact)
gtk_html_stream_printf (html_stream, "<tr><td valign=\"top\" width=\"" IMAGE_COL_WIDTH "\">");
gtk_html_stream_printf (html_stream,
"</td><td valign=\"top\" width=\"100\" nowrap><font color=" HEADER_COLOR ">%s:</font></td> <td valign=\"top\">%s</td></tr>",
- _("E-mail"), accum->str);
+ _("Email"), accum->str);
#else
- render_name_value (html_stream, _("E-mail"), accum->str, NULL,
+ render_name_value (html_stream, _("Email"), accum->str, NULL,
E_TEXT_TO_HTML_CONVERT_ADDRESSES | E_TEXT_TO_HTML_CONVERT_NL);
#endif
}