diff options
author | Andre Klapper <a9016009@gmx.de> | 2007-04-10 11:03:51 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2007-04-10 11:03:51 +0800 |
commit | dc3776587125ed2a0f5fbf8d4216bdb109bf679c (patch) | |
tree | b2bad1644a855b63208313a5861b180dd7629858 | |
parent | ad8fe0d70f4edcb431b9d4a9be0e36ea8fce5cfe (diff) | |
download | gsoc2013-evolution-dc3776587125ed2a0f5fbf8d4216bdb109bf679c.tar.gz gsoc2013-evolution-dc3776587125ed2a0f5fbf8d4216bdb109bf679c.tar.zst gsoc2013-evolution-dc3776587125ed2a0f5fbf8d4216bdb109bf679c.zip |
change "E-Mail" to "Email". Fixes bug #404233.
2006-04-10 Andre Klapper <a9016009@gmx.de>
* gui/widgets/eab-contact-display.c:
change "E-Mail" to "Email". Fixes bug #404233.
svn path=/trunk/; revision=33411
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 4 |
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 } |