diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-06 02:10:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-06 02:10:29 +0800 |
commit | 4261a67f4a81d66ec336516eddc3fd0dd8124a9d (patch) | |
tree | 04c531ae3426055ae42410a5d5ceeb89b7d3dbbe /addressbook/gui | |
parent | 868bb1808d6bf94344ec2e88b722d7b422c5a043 (diff) | |
download | gsoc2013-evolution-4261a67f4a81d66ec336516eddc3fd0dd8124a9d.tar.gz 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/gui')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 18 |
1 files changed, 9 insertions, 9 deletions
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."); } |