aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c6
2 files changed, 9 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 577ead5e21..acb633b238 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,4 +1,9 @@
-2005-10-20 Sushma Rai <rsushma@novell.com>
+2005-10-22 Sushma Rai <rsushma@novell.com>
+
+ * gui/widgets/eab-gui-util.c (eab_send_contact_list_as_attachment):
+ Marked subject line for translation. Fixes #317753
+
+2005-10-22 Sushma Rai <rsushma@novell.com>
* gui/component/addressbook-config.c: Storing the search filter entered
at configuration dialog.
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index dd09c7620c..aeb259d3e8 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -1028,7 +1028,7 @@ eab_send_contact_list_as_attachment (GList *contacts)
bcc_list->_maximum = bcc_list->_length = 0;
if (!contacts || contacts->next) {
- subject = CORBA_string_dup ("Contact information");
+ subject = CORBA_string_dup (_("Contact information"));
} else {
EContact *contact = contacts->data;
const gchar *tempstr2;
@@ -1046,9 +1046,9 @@ eab_send_contact_list_as_attachment (GList *contacts)
tempstr2 = e_contact_get_const (contact, E_CONTACT_EMAIL_3);
if (!tempstr2 || !*tempstr2)
- tempstr = g_strdup_printf ("Contact information");
+ tempstr = g_strdup_printf (_("Contact information"));
else
- tempstr = g_strdup_printf ("Contact information for %s", tempstr2);
+ tempstr = g_strdup_printf (_("Contact information for %s"), tempstr2);
subject = CORBA_string_dup (tempstr);
g_free (tempstr);
}