aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/eab-vcard-control.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-vcard-control.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-vcard-control.c')
-rw-r--r--addressbook/gui/widgets/eab-vcard-control.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/eab-vcard-control.c b/addressbook/gui/widgets/eab-vcard-control.c
index 8922c396c5..3ef802cbc9 100644
--- a/addressbook/gui/widgets/eab-vcard-control.c
+++ b/addressbook/gui/widgets/eab-vcard-control.c
@@ -225,11 +225,11 @@ toggle_full_vcard(GtkWidget *button, gpointer data)
if (vcard_control->render_mode == EAB_CONTACT_DISPLAY_RENDER_NORMAL) {
vcard_control->render_mode = EAB_CONTACT_DISPLAY_RENDER_COMPACT;
- label = _("Show Full VCard");
+ label = _("Show Full vCard");
}
else {
vcard_control->render_mode = EAB_CONTACT_DISPLAY_RENDER_NORMAL;
- label = _("Show Compact VCard");
+ label = _("Show Compact vCard");
}
gtk_button_set_label (GTK_BUTTON (button), label);
@@ -276,7 +276,7 @@ eab_vcard_control_new (void)
gtk_button_box_set_layout (GTK_BUTTON_BOX (bbox), GTK_BUTTONBOX_START);
gtk_box_set_spacing (GTK_BOX (bbox), 12);
- button1 = gtk_button_new_with_label(_("Show Full VCard"));
+ button1 = gtk_button_new_with_label(_("Show Full vCard"));
g_signal_connect (button1, "clicked",
G_CALLBACK (toggle_full_vcard), vcard_control);
gtk_box_pack_start (GTK_BOX (bbox), button1, FALSE, FALSE, 0);