changeset 27962:d5e2dbce5864

Use a better error post-string freeze for the IDNA-conversion failure.
author Paul Aurich <paul@darkrain42.org>
date Sat, 18 Jul 2009 07:39:24 +0000
parents 1f329bdc91ab
children 8d413ce87e7e
files libpurple/protocols/jabber/jabber.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/jabber/jabber.c	Sat Jul 18 07:26:04 2009 +0000
+++ b/libpurple/protocols/jabber/jabber.c	Sat Jul 18 07:39:24 2009 +0000
@@ -882,10 +882,9 @@
 
 	ascii_domain = jabber_try_idna_to_ascii(js->certificate_CN);
 	if (ascii_domain == NULL) {
-		/* TODO: Change this for 2.6.1 */
 		purple_connection_error_reason(gc,
 				PURPLE_CONNECTION_ERROR_INVALID_SETTINGS,
-				_("Invalid XMPP ID"));
+				_("Invalid XMPP ID. Domain is not properly internationalized."));
 		return;
 	}