[evolution] Mark two strings as translatable that have been forgotten. Fixes bug 611975.
- From: Andre Klapper <aklapper src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Mark two strings as translatable that have been forgotten. Fixes bug 611975.
- Date: Sun, 7 Mar 2010 15:35:28 +0000 (UTC)
commit 0f150c8adfddcc7cc2bbb0e7f81e108f1590ff84
Author: Ulrich Schoepp <uli sonntagsassi de>
Date: Sun Mar 7 16:34:46 2010 +0100
Mark two strings as translatable that have been forgotten. Fixes bug 611975.
mail/em-composer-utils.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c
index f69e590..fc312c8 100644
--- a/mail/em-composer-utils.c
+++ b/mail/em-composer-utils.c
@@ -1574,7 +1574,8 @@ em_utils_send_receipt (CamelFolder *folder, CamelMimeMessage *message)
camel_content_type_unref (type);
stream = camel_stream_mem_new ();
camel_stream_printf (stream,
- "Your message to %s about \"%s\" on %s has been read.",
+ /* Translators: First %s is an email address, second %s is the subject of the email, third %s is the date */
+ _("Your message to %s about \"%s\" on %s has been read."),
self_address, message_subject, message_date);
camel_data_wrapper_construct_from_stream (receipt_text, stream);
camel_object_unref (stream);
@@ -1621,7 +1622,8 @@ em_utils_send_receipt (CamelFolder *folder, CamelMimeMessage *message)
camel_medium_set_content_object (CAMEL_MEDIUM (receipt), CAMEL_DATA_WRAPPER (body));
camel_object_unref (body);
- receipt_subject = g_strdup_printf ("Delivery Notification for: \"%s\"", message_subject);
+ /* Translators: %s is the subject of the email message */
+ receipt_subject = g_strdup_printf (_("Delivery Notification for: \"%s\""), message_subject);
camel_mime_message_set_subject (receipt, receipt_subject);
g_free (receipt_subject);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]