aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-02-12 04:29:33 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-02-12 04:29:33 +0800
commit45d5fce5db468145d9516f3da7cb03b992418543 (patch)
treec92a26ff016f326bcf1d010bb3c40afa6d28f369 /addressbook/gui/component
parentc990fa1a79d9fbec4212318aa11c4cf8c2fce613 (diff)
downloadgsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.tar
gsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.tar.gz
gsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.tar.bz2
gsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.tar.lz
gsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.tar.xz
gsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.tar.zst
gsoc2013-evolution-45d5fce5db468145d9516f3da7cb03b992418543.zip
Address Book, not Addressbook
2004-02-11 Rodney Dawes <dobey@ximian.com> * gui/component/addressbook-component.c (delete_addressbook_cb): (fill_popup_menu_callback): * gui/widgets/e-addressbook-view.c (init_collection): * gui/widgets/eab-gui-util.c (eab_error_dialog): * gui/widgets/eab-popup-control.c (eab_popup_control_contstruct): Address Book, not Addressbook svn path=/trunk/; revision=24715
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/addressbook-component.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c
index 44076bfceb..257c53c62b 100644
--- a/addressbook/gui/component/addressbook-component.c
+++ b/addressbook/gui/component/addressbook-component.c
@@ -209,7 +209,7 @@ delete_addressbook_cb (GtkWidget *widget, AddressbookComponent *comp)
GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
- _("Addressbook '%s' will be removed. Are you sure you want to continue?"),
+ _("Address Book '%s' will be removed. Are you sure you want to continue?"),
e_source_peek_name (selected_source));
gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_YES) {
@@ -267,7 +267,7 @@ fill_popup_menu_callback (ESourceSelector *selector, GtkMenu *menu, AddressbookC
sensitive = e_source_selector_peek_primary_selection (E_SOURCE_SELECTOR (comp->priv->source_selector)) ? TRUE : FALSE;
- add_popup_menu_item (menu, _("New Addressbook"), NULL, G_CALLBACK (new_addressbook_cb), comp, TRUE);
+ add_popup_menu_item (menu, _("New Address Book"), NULL, G_CALLBACK (new_addressbook_cb), comp, TRUE);
add_popup_menu_item (menu, _("Delete"), GTK_STOCK_DELETE, G_CALLBACK (delete_addressbook_cb), comp, sensitive);
add_popup_menu_item (menu, _("Properties..."), NULL, G_CALLBACK (edit_addressbook_cb), comp, sensitive);
}