changeset 29005:363691903201

A few other minor little translation-related fixes
author Mark Doliner <mark@kingant.net>
date Sun, 22 Nov 2009 23:47:35 +0000
parents 730ed9c1c780
children 588fb0db1cd8
files libpurple/protocols/mxit/actions.c libpurple/protocols/mxit/login.c libpurple/protocols/mxit/mxit.c libpurple/protocols/mxit/protocol.c
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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 );
 	}
 }
 
--- 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 );
 	}
 }
--- 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("<font color=\"#999999\">%s</font>\n", _("Loading menu..."));
+				tmp = g_strdup_printf("<font color=\"#999999\">%s</font>\n", _( "Loading menu..." ));
 				serv_got_im( session->con, who, tmp, PURPLE_MESSAGE_NOTIFY, time( NULL ) );
 				g_free(tmp);
 				mxit_send_message( session, who, " ", FALSE );
--- 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 :