Mercurial > pidgin
changeset 27370:97947f51b221
Change the wording in a connection error message. I'm trying to make
these a bit more uniform, and I think this is easier to read. And remove
a newline from the end of another connection error message.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 06 Jul 2009 05:18:34 +0000 |
parents | b41b69e8b341 |
children | 96cafa3d271c |
files | libpurple/protocols/bonjour/bonjour.c |
diffstat | 1 files changed, 6 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/bonjour/bonjour.c Mon Jul 06 04:19:26 2009 +0000 +++ b/libpurple/protocols/bonjour/bonjour.c Mon Jul 06 05:18:34 2009 +0000 @@ -89,13 +89,12 @@ #ifdef _WIN32 if (!dns_sd_available()) { purple_connection_error_reason(gc, - PURPLE_CONNECTION_ERROR_OTHER_ERROR, - _("The Apple Bonjour For Windows toolkit wasn't found, see the FAQ at: " - "http://d.pidgin.im/BonjourWindows" - " for more information.")); + PURPLE_CONNECTION_ERROR_OTHER_ERROR, + _("Unable to find Apple's \"Bonjour for Windows\" toolkit, see " + "http://d.pidgin.im/BonjourWindows for more information.")); return; } -#endif +#endif /* _WIN32 */ gc->flags |= PURPLE_CONNECTION_HTML; gc->proto_data = bd = g_new0(BonjourData, 1); @@ -108,8 +107,8 @@ if (bonjour_jabber_start(bd->jabber_data) == -1) { /* Send a message about the connection error */ purple_connection_error_reason (gc, - PURPLE_CONNECTION_ERROR_NETWORK_ERROR, - _("Unable to listen for incoming IM connections\n")); + PURPLE_CONNECTION_ERROR_NETWORK_ERROR, + _("Unable to listen for incoming IM connections")); return; }