aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-01-06 02:10:29 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-01-06 02:10:29 +0800
commit4261a67f4a81d66ec336516eddc3fd0dd8124a9d (patch)
tree04c531ae3426055ae42410a5d5ceeb89b7d3dbbe /addressbook
parent868bb1808d6bf94344ec2e88b722d7b422c5a043 (diff)
downloadgsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar
gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar.gz
gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar.bz2
gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar.lz
gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar.xz
gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar.zst
gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.zip
these line breaks in the error messages should actually be spaces
2004-01-05 JP Rosevear <jpr@ximian.com> * gui/component/addressbook.c (addressbook_show_load_error_dialog): these line breaks in the error messages should actually be spaces Fixes #51732 svn path=/trunk/; revision=24047
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/gui/component/addressbook.c18
2 files changed, 17 insertions, 9 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 8cf7977e0b..456e5faf0a 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,11 @@
+2004-01-05 JP Rosevear <jpr@ximian.com>
+
+ * gui/component/addressbook.c
+ (addressbook_show_load_error_dialog): these line breaks in the
+ error messages should actually be spaces
+
+ Fixes #51732
+
2003-12-19 Hans Petter Jansson <hpj@ximian.com>
* gui/component/addressbook-component.c (find_first_source): Impl.
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c
index c9c028f5bd..a553a2641a 100644
--- a/addressbook/gui/component/addressbook.c
+++ b/addressbook/gui/component/addressbook.c
@@ -589,29 +589,29 @@ addressbook_show_load_error_dialog (GtkWidget *parent, ESource *source, EBookSta
if (!strncmp (uri, "file:", 5)) {
label_string =
- _("We were unable to open this addressbook. Please check that the\n"
+ _("We were unable to open this addressbook. Please check that the "
"path exists and that you have permission to access it.");
}
else if (!strncmp (uri, "ldap:", 5)) {
/* special case for ldap: contact folders so we can tell the user about openldap */
#if HAVE_LDAP
label_string =
- _("We were unable to open this addressbook. This either\n"
- "means you have entered an incorrect URI, or the LDAP server\n"
+ _("We were unable to open this addressbook. This either "
+ "means you have entered an incorrect URI, or the LDAP server "
"is unreachable.");
#else
label_string =
- _("This version of Evolution does not have LDAP support\n"
- "compiled in to it. If you want to use LDAP in Evolution\n"
- "you must compile the program from the CVS sources after\n"
- "retrieving OpenLDAP from the link below.\n");
+ _("This version of Evolution does not have LDAP support "
+ "compiled in to it. If you want to use LDAP in Evolution "
+ "you must compile the program from the CVS sources after "
+ "retrieving OpenLDAP from the link below.");
href = gnome_href_new ("http://www.openldap.org/", "OpenLDAP at http://www.openldap.org/");
#endif
} else {
/* other network folders */
label_string =
- _("We were unable to open this addressbook. This either\n"
- "means you have entered an incorrect URI, or the server\n"
+ _("We were unable to open this addressbook. This either "
+ "means you have entered an incorrect URI, or the server "
"is unreachable.");
}