aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2008-08-27 18:37:32 +0800
committerPhilip Withnall <pwithnall@src.gnome.org>2008-08-27 18:37:32 +0800
commit0368e5866b2e700a7b7642775c6fb81ab1aef18e (patch)
treed681634b14360df1d8bcdc298928e8ee8fbf59d2 /addressbook/gui
parent1bad915150e2d5e97cbbf1a77f7a85e338c07f28 (diff)
downloadgsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar
gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.gz
gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.bz2
gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.lz
gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.xz
gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.tar.zst
gsoc2013-evolution-0368e5866b2e700a7b7642775c6fb81ab1aef18e.zip
** Fix for bug #534762
2008-08-27 Philip Withnall <philip@tecnocode.co.uk> ** Fix for bug #534762 Change "addressbook" to "address book" in translatable strings. svn path=/trunk/; revision=36117
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c20
-rw-r--r--addressbook/gui/widgets/eab-vcard-control.c2
2 files changed, 11 insertions, 11 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index 42ce9cd8f2..5f21e4da29 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -99,16 +99,16 @@ eab_load_error_dialog (GtkWidget *parent, ESource *source, EBookStatus status)
uri = e_source_get_uri (source);
if (status == E_BOOK_ERROR_OFFLINE_UNAVAILABLE) {
- label_string = _("We were unable to open this addressbook. This either means "
+ label_string = _("We were unable to open this address book. This either means "
"this book is not marked for offline usage or not yet downloaded "
- "for offline usage. Please load the addressbook once in online mode "
+ "for offline usage. Please load the address book once in online mode "
"to download its contents");
}
else if (!strncmp (uri, "file:", 5)) {
char *path = g_filename_from_uri (uri, NULL, NULL);
label = g_strdup_printf (
- _("We were unable to open this addressbook. Please check that the "
+ _("We were unable to open this address book. Please check that the "
"path %s exists and that you have permission to access it."), path);
g_free (path);
label_string = label;
@@ -117,7 +117,7 @@ eab_load_error_dialog (GtkWidget *parent, ESource *source, EBookStatus status)
/* special case for ldap: contact folders so we can tell the user about openldap */
#ifdef HAVE_LDAP
label_string =
- _("We were unable to open this addressbook. This either "
+ _("We were unable to open this address book. This either "
"means you have entered an incorrect URI, or the LDAP server "
"is unreachable.");
#else
@@ -129,7 +129,7 @@ eab_load_error_dialog (GtkWidget *parent, ESource *source, EBookStatus status)
} else {
/* other network folders */
label_string =
- _("We were unable to open this addressbook. This either "
+ _("We were unable to open this address book. This either "
"means you have entered an incorrect URI, or the server "
"is unreachable.");
@@ -161,19 +161,19 @@ eab_search_result_dialog (GtkWidget *parent,
str = _("More cards matched this query than either the server is \n"
"configured to return or Evolution is configured to display.\n"
"Please make your search more specific or raise the result limit in\n"
- "the directory server preferences for this addressbook.");
+ "the directory server preferences for this address book.");
break;
case E_BOOK_VIEW_STATUS_TIME_LIMIT_EXCEEDED:
str = _("The time to execute this query exceeded the server limit or the limit\n"
- "you have configured for this addressbook. Please make your search\n"
+ "you have configured for this address book. Please make your search\n"
"more specific or raise the time limit in the directory server\n"
- "preferences for this addressbook.");
+ "preferences for this address book.");
break;
case E_BOOK_VIEW_ERROR_INVALID_QUERY:
- str = _("The backend for this addressbook was unable to parse this query.");
+ str = _("The backend for this address book was unable to parse this query.");
break;
case E_BOOK_VIEW_ERROR_QUERY_REFUSED:
- str = _("The backend for this addressbook refused to perform this query.");
+ str = _("The backend for this address book refused to perform this query.");
break;
case E_BOOK_VIEW_ERROR_OTHER_ERROR:
str = _("This query did not complete successfully.");
diff --git a/addressbook/gui/widgets/eab-vcard-control.c b/addressbook/gui/widgets/eab-vcard-control.c
index 7b81ec64a7..2379559e3d 100644
--- a/addressbook/gui/widgets/eab-vcard-control.c
+++ b/addressbook/gui/widgets/eab-vcard-control.c
@@ -281,7 +281,7 @@ eab_vcard_control_new (void)
G_CALLBACK (toggle_full_vcard), vcard_control);
gtk_box_pack_start (GTK_BOX (bbox), button1, FALSE, FALSE, 0);
- button2 = gtk_button_new_with_label(_("Save in addressbook"));
+ button2 = gtk_button_new_with_label(_("Save in address book"));
g_signal_connect (button2, "clicked",
G_CALLBACK (save_in_addressbook), vcard_control);
gtk_box_pack_start (GTK_BOX (bbox), button2, FALSE, FALSE, 0);