aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
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
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')
-rw-r--r--addressbook/gui/component/addressbook-component.c4
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c2
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c2
-rw-r--r--addressbook/gui/widgets/eab-popup-control.c2
4 files changed, 5 insertions, 5 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);
}
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index aaaee4a089..e94772d168 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -491,7 +491,7 @@ init_collection (void)
if (collection == NULL) {
collection = gal_view_collection_new();
- gal_view_collection_set_title (collection, _("Addressbook"));
+ gal_view_collection_set_title (collection, _("Address Book"));
galview = gnome_util_prepend_user_home("/.evolution/addressbook/views");
gal_view_collection_set_storage_directories
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index 2459b5c483..1a5d06f2a2 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -54,7 +54,7 @@ eab_error_dialog (const gchar *msg, EBookStatus status)
N_("Authentication Failed"),
N_("Authentication Required"),
N_("TLS not Available"),
- N_("Addressbook does not exist"),
+ N_("Address Book does not exist"),
N_("Other error")
};
char *error_msg;
diff --git a/addressbook/gui/widgets/eab-popup-control.c b/addressbook/gui/widgets/eab-popup-control.c
index 6e2ad6a603..b7c635b089 100644
--- a/addressbook/gui/widgets/eab-popup-control.c
+++ b/addressbook/gui/widgets/eab-popup-control.c
@@ -885,7 +885,7 @@ eab_popup_control_construct (EABPopupControl *pop)
gtk_box_pack_start (GTK_BOX (pop->main_vbox), pop->generic_view, TRUE, TRUE, 0);
gtk_widget_show_all (pop->generic_view);
- pop->query_msg = gtk_label_new (_("Querying Addressbook..."));
+ pop->query_msg = gtk_label_new (_("Querying Address Book..."));
gtk_box_pack_start (GTK_BOX (pop->main_vbox), pop->query_msg, TRUE, TRUE, 0);
gtk_widget_show (pop->query_msg);