# HG changeset patch # User Mark Doliner # Date 1246857514 0 # Node ID 97947f51b2210d11a91ca972ab1fd57bbcf72bd5 # Parent b41b69e8b341ead4fe594a1009040293cf49d27f 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. diff -r b41b69e8b341 -r 97947f51b221 libpurple/protocols/bonjour/bonjour.c --- 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; }