# HG changeset patch # User pieter.loubser@mxit.com # Date 1258360054 0 # Node ID 95f8e7fb1f67dda048be6860e7cb805e0d04a739 # Parent 703c72411bb0852ac86bd3cff453f1daba757660 fixed strings (removed duplicate 'server') diff -r 703c72411bb0 -r 95f8e7fb1f67 libpurple/protocols/mxit/http.c --- a/libpurple/protocols/mxit/http.c Sun Nov 15 01:38:15 2009 +0000 +++ b/libpurple/protocols/mxit/http.c Mon Nov 16 08:27:34 2009 +0000 @@ -277,7 +277,7 @@ /* source is the file descriptor of the new connection */ if ( source < 0 ) { purple_debug_info( MXIT_PLUGIN_ID, "mxit_cb_http_connect failed: %s\n", error_message ); - purple_connection_error( req->session->con, _( "Unable to connect to the mxit HTTP server. Please check your server server settings." ) ); + purple_connection_error( req->session->con, _( "Unable to connect to the MXit HTTP server. Please check your server settings." ) ); return; } diff -r 703c72411bb0 -r 95f8e7fb1f67 libpurple/protocols/mxit/login.c --- a/libpurple/protocols/mxit/login.c Sun Nov 15 01:38:15 2009 +0000 +++ b/libpurple/protocols/mxit/login.c Mon Nov 16 08:27:34 2009 +0000 @@ -164,7 +164,7 @@ /* source is the file descriptor of the new connection */ if ( source < 0 ) { purple_debug_info( MXIT_PLUGIN_ID, "mxit_cb_connect failed: %s\n", error_message ); - purple_connection_error( session->con, _( "Unable to connect to the mxit server. Please check your server server settings." ) ); + purple_connection_error( session->con, _( "Unable to connect to the MXit server. Please check your server settings." ) ); return; } @@ -201,7 +201,7 @@ /* socket connection */ data = purple_proxy_connect( session->con, session->acc, session->server, session->port, mxit_cb_connect, session ); if ( !data ) { - purple_connection_error( session->con, _( "Unable to connect to the mxit server. Please check your server server settings." ) ); + purple_connection_error( session->con, _( "Unable to connect to the MXit server. Please check your server settings." ) ); return; } }