diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-10-22 17:11:05 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-10-22 17:11:05 +0800 |
commit | 474b0fbe0de4fa017cce8c7311783dc5ace5d8cd (patch) | |
tree | 20585aa93cf43cc60977ef74f2df27b7f47a4073 /addressbook | |
parent | 05601e86ebfc36093c8b2afb66cbe14cb45d6bd2 (diff) | |
download | gsoc2013-evolution-474b0fbe0de4fa017cce8c7311783dc5ace5d8cd.tar.gz gsoc2013-evolution-474b0fbe0de4fa017cce8c7311783dc5ace5d8cd.tar.zst gsoc2013-evolution-474b0fbe0de4fa017cce8c7311783dc5ace5d8cd.zip |
Marked subject line for translation. Fixes #317753.
svn path=/trunk/; revision=30556
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 6 |
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); } |