changeset 27042:da9d25c582c1

Clarify the error message when an IRC server contains spaces. The server is part of the username (specified using an account split), so saying "IRC nicks may..." is too specific. Closes #8236 (though the Swedish translation still needs to be updated).
author Paul Aurich <paul@darkrain42.org>
date Wed, 27 May 2009 05:47:36 +0000
parents c5aab4bf799e
children 367570a961f0
files libpurple/protocols/irc/irc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/irc/irc.c	Wed May 27 05:32:50 2009 +0000
+++ b/libpurple/protocols/irc/irc.c	Wed May 27 05:47:36 2009 +0000
@@ -306,7 +306,7 @@
 	if (strpbrk(username, " \t\v\r\n") != NULL) {
 		purple_connection_error_reason (gc,
 			PURPLE_CONNECTION_ERROR_INVALID_SETTINGS,
-			_("IRC nicks may not contain whitespace"));
+			_("IRC nick and server may not contain whitespace"));
 		return;
 	}