aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--addressbook/ChangeLog14
-rw-r--r--addressbook/gui/component/addressbook-view.c2
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c6
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c4
-rw-r--r--addressbook/gui/widgets/eab-vcard-control.c6
-rw-r--r--addressbook/importers/evolution-vcard-importer.c4
6 files changed, 25 insertions, 11 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index b94ff7c4e2..2d1c1785dc 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,17 @@
+2007-12-05 Lucky Wankhede <wlakke@novell.com>
+
+ ** Fix for bug #409121
+
+ * gui/component/addressbook-view.c:
+ * gui/widgets/e-addressbook-view.c: (save_as), (eab_view_save_as):
+ * gui/widgets/eab-gui-util.c:
+ (eab_send_contact_list_as_attachment):
+ * gui/widgets/eab-vcard-control.c: (toggle_full_vcard),
+ (eab_vcard_control_new):
+ * importers/evolution-vcard-importer.c:
+ (evolution_vcard_importer_peek): Corrected misspelled instances
+ of vCard
+
2007-11-28 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #489652
diff --git a/addressbook/gui/component/addressbook-view.c b/addressbook/gui/component/addressbook-view.c
index ec5600f80a..8d27b27f53 100644
--- a/addressbook/gui/component/addressbook-view.c
+++ b/addressbook/gui/component/addressbook-view.c
@@ -952,7 +952,7 @@ primary_source_selection_changed_callback (ESourceSelector *selector,
static EPopupItem abv_source_popups[] = {
{ E_POPUP_ITEM, "10.new", N_("_New Address Book"), new_addressbook_cb, NULL, "contact-new", 0, 0 },
- { E_POPUP_ITEM, "20.saveasvcard", N_("Save As Vcard..."), save_addressbook_cb, NULL,"document-save-as", 0, EAB_POPUP_SOURCE_PRIMARY },
+ { E_POPUP_ITEM, "20.saveasvcard", N_("Save As vCard..."), save_addressbook_cb, NULL,"document-save-as", 0, EAB_POPUP_SOURCE_PRIMARY },
{ E_POPUP_BAR, "30.bar" },
{ E_POPUP_ITEM, "30.delete", N_("_Delete"), delete_addressbook_cb, NULL, "edit-delete", 0, EAB_POPUP_SOURCE_USER|EAB_POPUP_SOURCE_PRIMARY },
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index b591389d7c..fd6215a5e8 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -811,7 +811,7 @@ save_as (EPopup *ep, EPopupItem *pitem, void *data)
GList *contacts = get_contact_list ((EABPopupTargetSelect *)ep->target);
if (contacts) {
- eab_contact_list_save(_("Save as VCard..."), contacts, NULL);
+ eab_contact_list_save(_("Save as vCard..."), contacts, NULL);
g_list_free(contacts);
}
}
@@ -938,7 +938,7 @@ static EPopupItem eabv_popup_items[] = {
{ E_POPUP_ITEM, "15.newlist", N_("New Contact _List..."), new_list, NULL, "stock_contact-list", 0, EAB_POPUP_SELECT_EDITABLE },
{ E_POPUP_BAR, "20.bar" },
- { E_POPUP_ITEM, "30.saveas", N_("_Save as VCard..."), save_as, NULL, "document-save-as", 0, EAB_POPUP_SELECT_ANY },
+ { E_POPUP_ITEM, "30.saveas", N_("_Save as vCard..."), save_as, NULL, "document-save-as", 0, EAB_POPUP_SELECT_ANY },
{ E_POPUP_ITEM, "40.forward", N_("_Forward Contact"), send_as, NULL, "mail-forward", EAB_POPUP_SELECT_ONE },
{ E_POPUP_ITEM, "40.forward", N_("_Forward Contacts"), send_as, NULL, "mail-forward", EAB_POPUP_SELECT_MANY },
{ E_POPUP_ITEM, "50.mailto", N_("Send _Message to Contact"), send_to, NULL, "mail-message-new", EAB_POPUP_SELECT_ONE|EAB_POPUP_SELECT_EMAIL|EAB_POPUP_CONTACT },
@@ -1921,7 +1921,7 @@ eab_view_save_as (EABView *view, gboolean all)
list = get_selected_contacts(view);
}
if (list)
- eab_contact_list_save (_("Save as VCard..."), list, NULL);
+ eab_contact_list_save (_("Save as vCard..."), list, NULL);
g_list_foreach (list, (GFunc) g_object_unref, NULL);
g_list_free (list);
}
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);
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);
diff --git a/addressbook/importers/evolution-vcard-importer.c b/addressbook/importers/evolution-vcard-importer.c
index 9afb1b0a47..ef54ffd844 100644
--- a/addressbook/importers/evolution-vcard-importer.c
+++ b/addressbook/importers/evolution-vcard-importer.c
@@ -544,8 +544,8 @@ static EImportImporter vcard_importer = {
EImportImporter *
evolution_vcard_importer_peek(void)
{
- vcard_importer.name = _("VCard (.vcf, .gcrd)");
- vcard_importer.description = _("Evolution VCard Importer");
+ vcard_importer.name = _("vCard (.vcf, .gcrd)");
+ vcard_importer.description = _("Evolution vCard Importer");
return &vcard_importer;
}