aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/eab-gui-util.c
diff options
context:
space:
mode:
authorSuman Manjunath <msuman@src.gnome.org>2007-12-06 01:57:09 +0800
committerSuman Manjunath <msuman@src.gnome.org>2007-12-06 01:57:09 +0800
commit4c836a0a8214111f247070943e4538b919e51c0d (patch)
treecfe11e888d1090ccf475c43a4a3bdf7c8fe88e4a /addressbook/gui/widgets/eab-gui-util.c
parent1613f2b67d06537d0c8ff334188f42353dedd0ae (diff)
downloadgsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.tar
gsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.tar.gz
gsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.tar.bz2
gsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.tar.lz
gsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.tar.xz
gsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.tar.zst
gsoc2013-evolution-4c836a0a8214111f247070943e4538b919e51c0d.zip
Corrected misspelled instances of vCard in:
M addressbook/gui/component/addressbook-view.c M addressbook/gui/widgets/eab-vcard-control.c M addressbook/gui/widgets/eab-gui-util.c M addressbook/gui/widgets/e-addressbook-view.c M addressbook/importers/evolution-vcard-importer.c svn path=/trunk/; revision=34657
Diffstat (limited to 'addressbook/gui/widgets/eab-gui-util.c')
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index 731d141a84..9124583b82 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -957,10 +957,10 @@ eab_send_contact_list_as_attachment (GList *contacts)
filename = CORBA_string_dup ("");
if (contacts->next) {
- description = CORBA_string_dup (_("Multiple VCards"));
+ description = CORBA_string_dup (_("Multiple vCards"));
} else {
char *file_as = e_contact_get (E_CONTACT (contacts->data), E_CONTACT_FILE_AS);
- tempstr = g_strdup_printf (_("VCard for %s"), file_as);
+ tempstr = g_strdup_printf (_("vCard for %s"), file_as);
description = CORBA_string_dup (tempstr);
g_free (tempstr);
g_free (file_as);