# HG changeset patch # User Mark Doliner # Date 1258933655 0 # Node ID 363691903201c062c1a8f8650aed144737660bf3 # Parent 730ed9c1c780e03299bc0cac3c4268a4179793da A few other minor little translation-related fixes diff -r 730ed9c1c780 -r 363691903201 libpurple/protocols/mxit/actions.c --- a/libpurple/protocols/mxit/actions.c Sun Nov 22 23:35:26 2009 +0000 +++ b/libpurple/protocols/mxit/actions.c Sun Nov 22 23:47:35 2009 +0000 @@ -279,7 +279,7 @@ } else { /* show error to user */ - mxit_popup( PURPLE_NOTIFY_MSG_ERROR, _( "Profile Update Error" ), _( err ) ); + mxit_popup( PURPLE_NOTIFY_MSG_ERROR, _( "Profile Update Error" ), err ); } } diff -r 730ed9c1c780 -r 363691903201 libpurple/protocols/mxit/login.c --- a/libpurple/protocols/mxit/login.c Sun Nov 22 23:35:26 2009 +0000 +++ b/libpurple/protocols/mxit/login.c Sun Nov 22 23:47:35 2009 +0000 @@ -287,7 +287,7 @@ } else { /* show error to user */ - mxit_popup( PURPLE_NOTIFY_MSG_ERROR, _( "Registration Error" ), _( err ) ); + mxit_popup( PURPLE_NOTIFY_MSG_ERROR, _( "Registration Error" ), err ); mxit_register_view( session ); } } diff -r 730ed9c1c780 -r 363691903201 libpurple/protocols/mxit/mxit.c --- a/libpurple/protocols/mxit/mxit.c Sun Nov 22 23:35:26 2009 +0000 +++ b/libpurple/protocols/mxit/mxit.c Sun Nov 22 23:47:35 2009 +0000 @@ -205,7 +205,7 @@ case MXIT_TYPE_CHATROOM : case MXIT_TYPE_GALLERY : case MXIT_TYPE_INFO : - tmp = g_strdup_printf("%s\n", _("Loading menu...")); + tmp = g_strdup_printf("%s\n", _( "Loading menu..." )); serv_got_im( session->con, who, tmp, PURPLE_MESSAGE_NOTIFY, time( NULL ) ); g_free(tmp); mxit_send_message( session, who, " ", FALSE ); diff -r 730ed9c1c780 -r 363691903201 libpurple/protocols/mxit/protocol.c --- a/libpurple/protocols/mxit/protocol.c Sun Nov 22 23:35:26 2009 +0000 +++ b/libpurple/protocols/mxit/protocol.c Sun Nov 22 23:47:35 2009 +0000 @@ -1958,7 +1958,7 @@ } else { sprintf( errmsg, _( "Login error: %s (%i)" ), errdesc, packet->errcode ); - purple_connection_error( session->con, _( errmsg ) ); + purple_connection_error( session->con, errmsg ); return -1; } case CP_CMD_LOGOUT :