diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2007-07-30 23:16:10 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2007-07-30 23:16:10 +0800 |
commit | 1105d21ac1b5798ff4d3aa6dc7f340d31c8b92c3 (patch) | |
tree | 2839f8d8771d696c901d3b5bda019185894f8a84 /mail | |
parent | 68eb730d00eb673038eb8dac9c48991afa584b69 (diff) | |
download | gsoc2013-evolution-1105d21ac1b5798ff4d3aa6dc7f340d31c8b92c3.tar.gz gsoc2013-evolution-1105d21ac1b5798ff4d3aa6dc7f340d31c8b92c3.tar.zst gsoc2013-evolution-1105d21ac1b5798ff4d3aa6dc7f340d31c8b92c3.zip |
Marked a string for translation.
Marked a string for translation.
svn path=/trunk/; revision=33905
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-format-html.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5122d9d747..540dd13bf3 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,12 @@ 2007-07-30 Chenthill Palanisamy <pchenthill@novell.com> + * em-format-html.c: (efh_format_headers): Marked + a string for translation. + + Committing on behalf of Bharath Acharya <abharath@novell.com> + +2007-07-30 Chenthill Palanisamy <pchenthill@novell.com> + * em-format-html.c: (efh_format_headers): Displaying a message to the recipient of the mail informing him about delegated mails. The message is displayed for all mails containing the "Sender" field diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 325035490b..e999e54953 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1831,7 +1831,7 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part) /* To translators: This message suggests to the receipients that the sender of the mail is different from the one listed in From field. */ - camel_stream_printf(stream, "This message was sent by <b>%s</b> on behalf of <b>%s</b>", header_sender, header_from); + camel_stream_printf(stream, _("This message was sent by <b>%s</b> on behalf of <b>%s</b>"), header_sender, header_from); camel_stream_printf(stream, "</td></tr></table></td></tr>"); break; } |