changeset 31730:0e9b252f1769

propagate from branch 'im.pidgin.pidgin' (head b51a9f598d90ec0520c1d605d2335b29ed1ef64d) to branch 'im.pidgin.pidgin.mxit' (head a6e78a0638ffbf99efaa856cb181db5e0cea3797)
author andrew.victor@mxit.com
date Tue, 23 Nov 2010 07:50:25 +0000
parents 7c5a78a2cc0d (current diff) 6499f813c3af (diff)
children c7f0decf419b
files ChangeLog
diffstat 67 files changed, 2380 insertions(+), 1700 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Nov 01 08:14:54 2010 +0000
+++ b/ChangeLog	Tue Nov 23 07:50:25 2010 +0000
@@ -1,16 +1,65 @@
 Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
 
-version 2.7.6 (??/??/????):
+version 2.7.7 (??/??/????):
+	General:
+	* Allow multiple certificates to share the same Distinguished Name (DN).
+	  Partially fixes remaining MSN issues from #12906.
+	* The GNUTLS SSL plugin now discards any certificate in a chain that did
+	  not sign the previous certificate.  Once one certificate is discarded,
+	  all subsequent certificates are discarded.  Partially fixes remaining
+	  MSN issues from #12906.
+
+	AIM and ICQ:
+	* AIM should now connect if "Use clientLogin" is off and the "Server"
+	  field is set to anything but "login.oscar.aol.com". (#12948)
+	* Fix a crash on connection loss. (#5927)
+
 	MSN:
-	* Added support for MSNP16:
-	* Added support for "Multi Points of Presence" (MPOP), which let users
-	  to sign on multiple places at the same time.
-	* Added extended capabilities support (no one implemented).
-	* Merged the work done on the Google SoC:
-	* A major rewrite of SLP code:
+	* Don't show ourselves in the list of endpoints that can be disconnected.
+
+version 2.7.6 (11/21/2010):
+	General:
+	* Included Microsoft Internet Authority 2010 and Microsoft Secure Server
+	  Authority 2010 intermediate CA certificates to our bundle.  This fixes
+	  the "Unable to validate certificate" error for omega.contacts.msn.com.
+	  (#12906)
+
+	Pidgin:
+	* Avoid a use-after-free race condition in the media code (when
+	  there's an error reported by GStreamer). (#12806, Jakub Adam)
+
+	AIM and ICQ:
+	* SSL option has been changed to a tri-state menu with choices for
+	  "Don't Use Encryption", "Use Encryption if Available", and "Require
+	  Encryption".
+	* Fix some possible clientLogin URL issues introduced in version 2.7.5.
+	* Don't show a "<URL>: Ok" connection error when using clientLogin.
+	* Cleaned up some debug output for improved readability.
+
+	MSN:
+	* Added support for MSNP16, including Multiple Points of Presence (MPOP)
+	  which allows multiple simultaneous sign-ins. (#8247)
+	* Added extended capabilities support (none implemented).
+	* Merged the work done on the Google SoC (major rewrite of SLP code)
 	* Reworked the data transfer architecture.
 	  (http://developer.pidgin.im/wiki/SlpArchitecture)
-	* A lot of love to MSN prpl.
+	* Lots of little changes.
+	* Don't process zero-length DC messages. (#12660)
+	* Fixed a bunch of memory leaks.
+	* Prevent a use-after-free condition.
+
+	XMPP:
+	* Avoid a double-free in the Google Relay (V/V) code.
+	* Avoid double error message when failing a file transfer. (#12757)
+	* Password-related information is printed out for SASL authentication
+	  when the PURPLE_UNSAFE_DEBUG environment variable is set.
+	* Authentication mechanisms can now be added by UI's or other plugins
+	  with some work. This is outside the API/ABI rules! (#12715)
+	* Fixed a few printf("%s", NULL) crashes for broken OSes.
+
+	Windows-Specific Changes:
+	* Build the Pidgin Theme Editor plugin (finally).
+	* Untarring (for themes) now works for non-ASCII destination paths.
 
 version 2.7.5 (10/31/2010):
 	General:
--- a/ChangeLog.API	Mon Nov 01 08:14:54 2010 +0000
+++ b/ChangeLog.API	Tue Nov 23 07:50:25 2010 +0000
@@ -1,6 +1,7 @@
 Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
 
-version 2.7.6 (??/??/????):
+version 2.7.6 (11/21/2010):
+	* No changes
 
 version 2.7.5 (10/31/2010):
 	* No changes
--- a/NEWS	Mon Nov 01 08:14:54 2010 +0000
+++ b/NEWS	Tue Nov 23 07:50:25 2010 +0000
@@ -2,7 +2,7 @@
 
 Our development blog is available at: http://planet.pidgin.im
 
-2.7.6 (??/??/????):
+2.7.6 (11/21/2010):
 	Jorge: In this release I have merged two branches where I have spent
 	most of my time in the last months, the MSNP16 and SLP-rewrite.  I 
 	hope you all will enjoy the hability to be connected on multiple
@@ -11,6 +11,10 @@
 	happy with this rewrite because there was untoched code from almost
 	5 years ago. I hope you like this release!
 
+	John: In this release, we give you some new features and a bunch of
+	bug fixes.  This includes shipping intermediate certificates to fix
+	certificate validation for MSN's servers.  Upgrade and enjoy!
+
 2.7.5 (10/31/2010):
 	John: A bugfix release for all of you!  This time we fixed a bunch of
 	bugs ranging from annoying regressions to long-standing bugs we didn't
--- a/configure.ac	Mon Nov 01 08:14:54 2010 +0000
+++ b/configure.ac	Tue Nov 23 07:50:25 2010 +0000
@@ -46,7 +46,7 @@
 m4_define([purple_lt_current], [7])
 m4_define([purple_major_version], [2])
 m4_define([purple_minor_version], [7])
-m4_define([purple_micro_version], [6])
+m4_define([purple_micro_version], [7])
 m4_define([purple_version_suffix], [devel])
 m4_define([purple_version],
           [purple_major_version.purple_minor_version.purple_micro_version])
@@ -55,7 +55,7 @@
 m4_define([gnt_lt_current], [8])
 m4_define([gnt_major_version], [2])
 m4_define([gnt_minor_version], [8])
-m4_define([gnt_micro_version], [3])
+m4_define([gnt_micro_version], [4])
 m4_define([gnt_version_suffix], [devel])
 m4_define([gnt_version],
           [gnt_major_version.gnt_minor_version.gnt_micro_version])
--- a/libpurple/account.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/account.c	Tue Nov 23 07:50:25 2010 +0000
@@ -508,8 +508,6 @@
 		purple_account_remove_setting(account, "xferjp_host");
 
 	}
-
-	return;
 }
 
 static void
@@ -531,8 +529,6 @@
 		if(purple_strequal(tmp, "slogin.oscar.aol.com"))
 			purple_account_set_string(account, "server", "slogin.icq.com");
 	}
-
-	return;
 }
 
 static void
@@ -1091,6 +1087,9 @@
 	g_hash_table_destroy(account->settings);
 	g_hash_table_destroy(account->ui_settings);
 
+	if (account->proxy_info)
+		purple_proxy_info_destroy(account->proxy_info);
+
 	purple_account_set_status_types(account, NULL);
 
 	purple_presence_destroy(account->presence);
--- a/libpurple/certificate.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/certificate.c	Tue Nov 23 07:50:25 2010 +0000
@@ -947,6 +947,22 @@
 	return NULL;
 }
 
+static GSList *
+x509_ca_locate_certs(GList *lst, const gchar *dn)
+{
+	GList *cur;
+	GSList *crts = NULL;
+
+	for (cur = lst; cur; cur = cur->next) {
+		x509_ca_element *el = cur->data;
+		if (purple_strequal(dn, el->dn)) {
+			crts = g_slist_prepend(crts, el);
+		}
+	}
+	return crts;
+}
+
+
 static gboolean
 x509_ca_cert_in_pool(const gchar *id)
 {
@@ -985,6 +1001,31 @@
 	return crt;
 }
 
+static GSList *
+x509_ca_get_certs(const gchar *id)
+{
+	GSList *crts = NULL, *els = NULL;
+
+	g_return_val_if_fail(x509_ca_lazy_init(), NULL);
+	g_return_val_if_fail(id, NULL);
+
+	/* Search the memory-cached pool */
+	els = x509_ca_locate_certs(x509_ca_certs, id);
+
+	if (els != NULL) {
+		GSList *cur;
+		/* Make a copy of the memcached ones for the function caller
+		   to play with */
+		for (cur = els; cur; cur = cur->next) {
+			x509_ca_element *el = cur->data;
+			crts = g_slist_prepend(crts, purple_certificate_copy(el->crt));
+		}
+		g_slist_free(els);
+	}
+
+	return crts;
+}
+
 static gboolean
 x509_ca_put_cert(const gchar *id, PurpleCertificate *crt)
 {
@@ -1558,7 +1599,9 @@
 	PurpleCertificate *ca_crt, *end_crt;
 	PurpleCertificate *failing_crt;
 	GList *chain = vrq->cert_chain;
+	GSList *ca_crts, *cur;
 	GByteArray *last_fpr, *ca_fpr;
+	gboolean valid = FALSE;
 	gchar *ca_id;
 
 	peer_crt = (PurpleCertificate *) chain->data;
@@ -1646,8 +1689,8 @@
 	purple_debug_info("certificate/x509/tls_cached",
 			  "Checking for a CA with DN=%s\n",
 			  ca_id);
-	ca_crt = purple_certificate_pool_retrieve(ca, ca_id);
-	if ( NULL == ca_crt ) {
+	ca_crts = x509_ca_get_certs(ca_id);
+	if ( NULL == ca_crts ) {
 		flags |= PURPLE_CERTIFICATE_CA_UNKNOWN;
 
 		purple_debug_warning("certificate/x509/tls_cached",
@@ -1677,24 +1720,33 @@
 	 * the list, so here we are.
 	 */
 	last_fpr = purple_certificate_get_fingerprint_sha1(end_crt);
-	ca_fpr   = purple_certificate_get_fingerprint_sha1(ca_crt);
+	for (cur = ca_crts; cur; cur = cur->next) {
+		ca_crt = cur->data;
+		ca_fpr = purple_certificate_get_fingerprint_sha1(ca_crt);
 
-	if ( !byte_arrays_equal(last_fpr, ca_fpr) &&
-			!purple_certificate_signed_by(end_crt, ca_crt) )
-	{
-		/* TODO: If signed_by ever returns a reason, maybe mention
-		   that, too. */
-		/* TODO: Also mention the CA involved. While I could do this
-		   now, a full DN is a little much with which to assault the
-		   user's poor, leaky eyes. */
-		flags |= PURPLE_CERTIFICATE_INVALID_CHAIN;
+		if ( byte_arrays_equal(last_fpr, ca_fpr) ||
+				purple_certificate_signed_by(end_crt, ca_crt) )
+		{
+			/* TODO: If signed_by ever returns a reason, maybe mention
+			   that, too. */
+			/* TODO: Also mention the CA involved. While I could do this
+			   now, a full DN is a little much with which to assault the
+			   user's poor, leaky eyes. */
+			valid = TRUE;
+			g_byte_array_free(ca_fpr, TRUE);
+			break;
+		}
+
+		g_byte_array_free(ca_fpr, TRUE);
 	}
 
-	g_byte_array_free(ca_fpr, TRUE);
+	if (valid == FALSE)
+		flags |= PURPLE_CERTIFICATE_INVALID_CHAIN;
+
+	g_slist_foreach(ca_crts, (GFunc)purple_certificate_destroy, NULL);
+	g_slist_free(ca_crts);
 	g_byte_array_free(last_fpr, TRUE);
 
-	purple_certificate_destroy(ca_crt);
-
 	x509_tls_cached_check_subject_name(vrq, flags);
 }
 
--- a/libpurple/ft.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/ft.c	Tue Nov 23 07:50:25 2010 +0000
@@ -1488,6 +1488,20 @@
 
 	g_return_if_fail(xfer != NULL);
 
+	/* TODO: We definitely want to close any open request dialogs associated
+	   with this transfer.  However, in some cases the request dialog might
+	   own a reference on the xfer.  This happens at least with the "%s wants
+	   to send you %s" dialog from purple_xfer_ask_recv().  In these cases
+	   the ref count will not be decremented when the request dialog is
+	   closed, so the ref count will never reach 0 and the xfer will never
+	   be freed.  This is a memleak and should be fixed.  It's not clear what
+	   the correct fix is.  Probably requests should have a destroy function
+	   that is called when the request is destroyed.  But also, ref counting
+	   xfer objects makes this code REALLY complicated.  An alternate fix is
+	   to not ref count and instead just make sure the object still exists
+	   when we try to use it. */
+	purple_request_close_with_handle(xfer);
+
 	purple_xfer_set_status(xfer, PURPLE_XFER_STATUS_CANCEL_LOCAL);
 	xfer->end_time = time(NULL);
 
--- a/libpurple/plugins/ssl/ssl-gnutls.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/plugins/ssl/ssl-gnutls.c	Tue Nov 23 07:50:25 2010 +0000
@@ -520,11 +520,18 @@
 /* Forward declarations are fun! */
 static PurpleCertificate *
 x509_import_from_datum(const gnutls_datum dt, gnutls_x509_crt_fmt mode);
+/* indeed! */
+static gboolean
+x509_certificate_signed_by(PurpleCertificate * crt,
+			   PurpleCertificate * issuer);
+static void
+x509_destroy_certificate(PurpleCertificate * crt);
 
 static GList *
 ssl_gnutls_get_peer_certificates(PurpleSslConnection * gsc)
 {
 	PurpleSslGnutlsData *gnutls_data = PURPLE_SSL_GNUTLS_DATA(gsc);
+	PurpleCertificate *prvcrt = NULL;
 
 	/* List of Certificate instances to return */
 	GList * peer_certs = NULL;
@@ -550,7 +557,17 @@
 		/* Append is somewhat inefficient on linked lists, but is easy
 		   to read. If someone complains, I'll change it.
 		   TODO: Is anyone complaining? (Maybe elb?) */
-		peer_certs = g_list_append(peer_certs, newcrt);
+		/* only append if previous cert was actually signed by this one.
+		 * Thanks Microsoft. */
+		if ((prvcrt == NULL) || x509_certificate_signed_by(prvcrt, newcrt)) {
+			peer_certs = g_list_append(peer_certs, newcrt);
+			prvcrt = newcrt;
+		} else {
+			x509_destroy_certificate(newcrt);
+			purple_debug_error("gnutls", "Dropping further peer certificates "
+			                             "because the chain is broken!\n");
+			break;
+		}
 	}
 
 	/* cert_list doesn't need free()-ing */
--- a/libpurple/protocols/jabber/adhoccommands.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/adhoccommands.c	Tue Nov 23 07:50:25 2010 +0000
@@ -125,7 +125,8 @@
 	xmlnode_set_attrib(command,"node",actionInfo->node);
 
 	/* cancel is handled differently on ad-hoc commands than regular forms */
-	if(!strcmp(xmlnode_get_namespace(result),"jabber:x:data") && !strcmp(xmlnode_get_attrib(result, "type"),"cancel")) {
+	if (purple_strequal(xmlnode_get_namespace(result), "jabber:x:data") &&
+			purple_strequal(xmlnode_get_attrib(result, "type"), "cancel")) {
 		xmlnode_set_attrib(command,"action","cancel");
 	} else {
 		if(actionhandle)
--- a/libpurple/protocols/jabber/auth.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/auth.c	Tue Nov 23 07:50:25 2010 +0000
@@ -502,20 +502,30 @@
 	return 0;
 }
 
+void jabber_auth_add_mech(JabberSaslMech *mech)
+{
+	auth_mechs = g_slist_insert_sorted(auth_mechs, mech, compare_mech);
+}
+
+void jabber_auth_remove_mech(JabberSaslMech *mech)
+{
+	auth_mechs = g_slist_remove(auth_mechs, mech);
+}
+
 void jabber_auth_init(void)
 {
 	JabberSaslMech **tmp;
 	gint count, i;
 
-	auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_plain_mech(), compare_mech);
-	auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_digest_md5_mech(), compare_mech);
+	jabber_auth_add_mech(jabber_auth_get_plain_mech());
+	jabber_auth_add_mech(jabber_auth_get_digest_md5_mech());
 #ifdef HAVE_CYRUS_SASL
-	auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_cyrus_mech(), compare_mech);
+	jabber_auth_add_mech(jabber_auth_get_cyrus_mech());
 #endif
 
 	tmp = jabber_auth_get_scram_mechs(&count);
 	for (i = 0; i < count; ++i)
-		auth_mechs = g_slist_insert_sorted(auth_mechs, tmp[i], compare_mech);
+		jabber_auth_add_mech(tmp[i]);
 }
 
 void jabber_auth_uninit(void)
--- a/libpurple/protocols/jabber/auth.h	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/auth.h	Tue Nov 23 07:50:25 2010 +0000
@@ -58,6 +58,9 @@
 JabberSaslMech *jabber_auth_get_cyrus_mech(void);
 #endif
 
+void jabber_auth_add_mech(JabberSaslMech *);
+void jabber_auth_remove_mech(JabberSaslMech *);
+
 void jabber_auth_init(void);
 void jabber_auth_uninit(void);
 
--- a/libpurple/protocols/jabber/google/google_session.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/google/google_session.c	Tue Nov 23 07:50:25 2010 +0000
@@ -372,7 +372,7 @@
 	params =
 		jabber_google_session_get_params(js, relay_ip, relay_udp, relay_tcp,
 			relay_ssltcp, relay_username, relay_password, &num_params);
-	
+
 	if (purple_media_add_stream(session_data->media, "google-voice",
 			session->remote_jid, PURPLE_MEDIA_AUDIO,
 			TRUE, "nice", num_params, params) == FALSE ||
@@ -382,12 +382,11 @@
 			TRUE, "nice", num_params, params) == FALSE)) {
 		purple_media_error(session_data->media, "Error adding stream.");
 		purple_media_end(session_data->media, NULL, NULL);
-		g_free(params);
 	} else {
 		session_data->added_streams = TRUE;
 	}
 
-	g_free(params);	
+	g_free(params);
 }
 
 
--- a/libpurple/protocols/jabber/jabber.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/jabber.c	Tue Nov 23 07:50:25 2010 +0000
@@ -477,7 +477,7 @@
 		char *text = NULL, *last_part = NULL, *tag_start = NULL;
 
 		/* Because debug logs with plaintext passwords make me sad */
-		if(js->state != JABBER_STREAM_CONNECTED &&
+		if (!purple_debug_is_unsafe() && js->state != JABBER_STREAM_CONNECTED &&
 				/* Either <auth> or <query><password>... */
 				(((tag_start = strstr(data, "<auth ")) &&
 					strstr(data, "xmlns='" NS_XMPP_SASL "'")) ||
--- a/libpurple/protocols/jabber/presence.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/presence.c	Tue Nov 23 07:50:25 2010 +0000
@@ -995,12 +995,14 @@
 	}
 
 	for (child = packet->child; child; child = child->next) {
+		const char *xmlns;
 		char *key;
 		JabberPresenceHandler *pih;
 		if (child->type != XMLNODE_TYPE_TAG)
 			continue;
 
-		key = g_strdup_printf("%s %s", child->name, xmlnode_get_namespace(child));
+		xmlns = xmlnode_get_namespace(child);
+		key = g_strdup_printf("%s %s", child->name, xmlns ? xmlns : "");
 		pih = g_hash_table_lookup(presence_handlers, key);
 		g_free(key);
 		if (pih)
--- a/libpurple/protocols/jabber/si.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/jabber/si.c	Tue Nov 23 07:50:25 2010 +0000
@@ -983,14 +983,8 @@
 jabber_si_xfer_ibb_error_cb(JabberIBBSession *sess)
 {
 	PurpleXfer *xfer = (PurpleXfer *) jabber_ibb_session_get_user_data(sess);
-	JabberStream *js = jabber_ibb_session_get_js(sess);
-	PurpleConnection *gc = js->gc;
-	PurpleAccount *account = purple_connection_get_account(gc);
 
 	purple_debug_error("jabber", "an error occurred during IBB file transfer\n");
-	purple_xfer_error(purple_xfer_get_type(xfer), account,
-		jabber_ibb_session_get_who(sess),
-			_("An error occurred on the in-band bytestream transfer\n"));
 	purple_xfer_cancel_remote(xfer);
 }
 
@@ -998,14 +992,9 @@
 jabber_si_xfer_ibb_closed_cb(JabberIBBSession *sess)
 {
 	PurpleXfer *xfer = (PurpleXfer *) jabber_ibb_session_get_user_data(sess);
-	JabberStream *js = jabber_ibb_session_get_js(sess);
-	PurpleConnection *gc = js->gc;
-	PurpleAccount *account = purple_connection_get_account(gc);
 
 	purple_debug_info("jabber", "the remote user closed the transfer\n");
 	if (purple_xfer_get_bytes_remaining(xfer) > 0) {
-		purple_xfer_error(purple_xfer_get_type(xfer), account,
-			jabber_ibb_session_get_who(sess), _("Transfer was closed."));
 		purple_xfer_cancel_remote(xfer);
 	} else {
 		purple_xfer_set_completed(xfer, TRUE);
@@ -1137,18 +1126,12 @@
 jabber_si_xfer_ibb_opened_cb(JabberIBBSession *sess)
 {
 	PurpleXfer *xfer = (PurpleXfer *) jabber_ibb_session_get_user_data(sess);
-	JabberStream *js = jabber_ibb_session_get_js(sess);
-	PurpleConnection *gc = js->gc;
-	PurpleAccount *account = purple_connection_get_account(gc);
 
 	if (jabber_ibb_session_get_state(sess) == JABBER_IBB_SESSION_OPENED) {
 		purple_xfer_start(xfer, -1, NULL, 0);
 		purple_xfer_prpl_ready(xfer);
 	} else {
 		/* error */
-		purple_xfer_error(purple_xfer_get_type(xfer), account,
-			jabber_ibb_session_get_who(sess),
-			_("Failed to open in-band bytestream"));
 		purple_xfer_end(xfer);
 	}
 }
--- a/libpurple/protocols/msn/cmdproc.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/cmdproc.c	Tue Nov 23 07:50:25 2010 +0000
@@ -211,37 +211,39 @@
 
 				MsnMessage *first = g_hash_table_lookup(cmdproc->multiparts, message_id);
 				chunk = strtol(chunk_text, NULL, 10);
-				if (first == NULL) {
+				if (first != NULL) {
+					if (first->received_chunks != chunk) {
+						/*
+						 * We received an out of order chunk number (i.e. not the
+						 * next one in the sequence).  Not sure if this can happen
+						 * legitimately, but we definitely don't handle it right
+						 * now.
+						 */
+						g_hash_table_remove(cmdproc->multiparts, message_id);
+						return;
+					}
+
+					/* Chunk is from 1 to total-1 (doesn't count first one) */
+					purple_debug_info("msn", "Received chunk %d of %d, message_id: '%s'\n",
+							chunk + 1, first->total_chunks, message_id);
+					first->body = g_realloc(first->body, first->body_len + msg->body_len);
+					memcpy(first->body + first->body_len, msg->body, msg->body_len);
+					first->body_len += msg->body_len;
+					first->received_chunks++;
+					if (first->received_chunks != first->total_chunks)
+						/* We're waiting for more chunks */
+						return;
+
+					/*
+					 * We have all the chunks for this message, great!  Send
+					 * it along... The caller takes care of freeing the old one.
+					 */
+					msg = first;
+				} else {
 					purple_debug_error("msn",
 					                   "Unable to find first chunk of message_id '%s' to correspond with chunk %d.\n",
 					                   message_id, chunk + 1);
-				} else if (first->received_chunks != chunk) {
-					/*
-					 * We received an out of order chunk number (i.e. not the
-					 * next one in the sequence).  Not sure if this can happen
-					 * legitimately, but we definitely don't handle it right
-					 * now.
-					 */
-					g_hash_table_remove(cmdproc->multiparts, message_id);
-					return;
 				}
-
-				/* Chunk is from 1 to total-1 (doesn't count first one) */
-				purple_debug_info("msn", "Received chunk %d of %d, message_id: '%s'\n",
-						chunk + 1, first->total_chunks, message_id);
-				first->body = g_realloc(first->body, first->body_len + msg->body_len);
-				memcpy(first->body + first->body_len, msg->body, msg->body_len);
-				first->body_len += msg->body_len;
-				first->received_chunks++;
-				if (first->received_chunks != first->total_chunks)
-					/* We're waiting for more chunks */
-					return;
-
-				/*
-				 * We have all the chunks for this message, great!  Send
-				 * it along... The caller takes care of freeing the old one.
-				 */
-				msg = first;
 			} else {
 				purple_debug_error("msn", "Received MessageId '%s' with no chunk number!\n", message_id);
 			}
--- a/libpurple/protocols/msn/directconn.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/directconn.c	Tue Nov 23 07:50:25 2010 +0000
@@ -630,8 +630,11 @@
 
 	case DC_STATE_ESTABLISHED:
 
-		part = msn_slpmsgpart_new_from_data(dc->in_buffer + 4, dc->header.length);
-		msn_slplink_process_msg(dc->slplink, part);
+		if (dc->header.length) {
+			part = msn_slpmsgpart_new_from_data(dc->in_buffer + 4, dc->header.length);
+			msn_slplink_process_msg(dc->slplink, part);
+			msn_slpmsgpart_destroy(part);
+		}
 
 		/*
 		if (dc->num_calls == 0) {
--- a/libpurple/protocols/msn/msg.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/msg.c	Tue Nov 23 07:50:25 2010 +0000
@@ -50,18 +50,16 @@
 	return msg;
 }
 
-void
+/**
+ * Destroys a message.
+ *
+ * @param msg The message to destroy.
+ */
+static void
 msn_message_destroy(MsnMessage *msg)
 {
 	g_return_if_fail(msg != NULL);
 
-	if (msg->ref_count > 0)
-	{
-		msn_message_unref(msg);
-
-		return;
-	}
-
 	if (purple_debug_is_verbose())
 		purple_debug_info("msn", "message destroy (%p)\n", msg);
 
@@ -90,11 +88,11 @@
 	return msg;
 }
 
-MsnMessage *
+void
 msn_message_unref(MsnMessage *msg)
 {
-	g_return_val_if_fail(msg != NULL, NULL);
-	g_return_val_if_fail(msg->ref_count > 0, NULL);
+	g_return_if_fail(msg != NULL);
+	g_return_if_fail(msg->ref_count > 0);
 
 	msg->ref_count--;
 
@@ -102,13 +100,7 @@
 		purple_debug_info("msn", "message unref (%p)[%" G_GSIZE_FORMAT "]\n", msg, msg->ref_count);
 
 	if (msg->ref_count == 0)
-	{
 		msn_message_destroy(msg);
-
-		return NULL;
-	}
-
-	return msg;
 }
 
 MsnMessage *
@@ -368,6 +360,8 @@
 
 		memcpy(n, body, siz);
 		n += siz;
+
+		g_free(body);
 	}
 	else
 	{
@@ -916,8 +910,6 @@
 {
 	MsnSession *session;
 	MsnSlpLink *slplink;
-	const char *data;
-	gsize len;
 
 	session = cmdproc->servconn->session;
 	slplink = msn_session_get_slplink(session, msg->remote_user);
@@ -940,8 +932,6 @@
 		}
 	}
 
-	data = msn_message_get_bin_data(msg, &len);
-
 	if (msg->part) {
 		msn_slplink_process_msg(slplink, msg->part);
 	}
@@ -1226,7 +1216,7 @@
 			g_free(text);
 
 			msn_switchboard_send_msg(swboard, cancel, TRUE);
-			msn_message_destroy(cancel);
+			msn_message_unref(cancel);
 		}
 
 	} else if (!strcmp(command, "CANCEL")) {
--- a/libpurple/protocols/msn/msg.h	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/msg.h	Tue Nov 23 07:50:25 2010 +0000
@@ -171,13 +171,6 @@
 						  const char *line_dem,const char *body_dem);
 
 /**
- * Destroys a message.
- *
- * @param msg The message to destroy.
- */
-void msn_message_destroy(MsnMessage *msg);
-
-/**
  * Increments the reference count on a message.
  *
  * @param msg The message.
@@ -195,7 +188,7 @@
  *
  * @return @a msg, or @c NULL if the new count is 0.
  */
-MsnMessage *msn_message_unref(MsnMessage *msg);
+void msn_message_unref(MsnMessage *msg);
 
 /**
  * Generates the payload data of a message.
--- a/libpurple/protocols/msn/msn.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/msn.c	Tue Nov 23 07:50:25 2010 +0000
@@ -132,7 +132,7 @@
 	swboard = msn_session_get_swboard(session, username, MSN_SB_FLAG_IM);
 
 	msn_switchboard_send_msg(swboard, msg, TRUE);
-	msn_message_destroy(msg);
+	msn_message_unref(msg);
 
 	return TRUE;
 }
@@ -528,6 +528,7 @@
 	PurpleRequestFields *fields;
 	PurpleRequestFieldGroup *group;
 	PurpleRequestField *field;
+	gboolean have_other_endpoints;
 	GSList *l;
 	MsnLocationData *data;
 
@@ -550,19 +551,37 @@
 
 	group = purple_request_field_group_new(_("Other Locations"));
 	purple_request_fields_add_group(fields, group);
-	field = purple_request_field_label_new("others-label", _("You can sign out from other locations here"));
-	purple_request_field_group_add_field(group, field);
-
+
+	have_other_endpoints = FALSE;
 	for (l = session->user->endpoints; l; l = l->next) {
 		MsnUserEndpoint *ep = l->data;
 
-		if (g_str_equal(ep->id, session->guid))
+		if (ep->id[0] != '\0' && strncasecmp(ep->id + 1, session->guid, 36) == 0)
 			/* Don't add myself to the list */
 			continue;
 
+		if (!have_other_endpoints) {
+			/* We do in fact have an endpoint other than ourselves... let's
+			   add a label */
+			field = purple_request_field_label_new("others-label",
+					_("You can sign out from other locations here"));
+			purple_request_field_group_add_field(group, field);
+		}
+
+		have_other_endpoints = TRUE;
 		field = purple_request_field_bool_new(ep->id, ep->name, FALSE);
 		purple_request_field_group_add_field(group, field);
 	}
+	if (!have_other_endpoints) {
+		/* TODO: Due to limitations in our current request field API, the
+		   following string will show up with a trailing colon.  This should
+		   be fixed either by adding an "include_colon" boolean, or creating
+		   a separate purple_request_field_label_new_without_colon function,
+		   or by never automatically adding the colon and requiring that
+		   callers add the colon themselves. */
+		field = purple_request_field_label_new("others-label", _("You are not signed in from any other locations."));
+		purple_request_field_group_add_field(group, field);
+	}
 
 	data = g_new0(MsnLocationData, 1);
 	data->account = account;
@@ -1374,7 +1393,7 @@
 	msn_message_set_bin_data(msg, body->str, body->len);
 
 	msn_switchboard_send_msg(swboard, msg, TRUE);
-	msn_message_destroy(msg);
+	msn_message_unref(msg);
 }
 
 static void msn_emoticon_destroy(MsnEmoticon *emoticon)
@@ -1563,7 +1582,7 @@
 			purple_timeout_add(0, msn_send_me_im, imdata);
 		}
 
-		msn_message_destroy(msg);
+		msn_message_unref(msg);
 	} else {
 		/*send Offline Instant Message,only to MSN Passport User*/
 		char *friendname;
@@ -1627,7 +1646,7 @@
 
 	msn_switchboard_send_msg(swboard, msg, FALSE);
 
-	msn_message_destroy(msg);
+	msn_message_unref(msg);
 
 	return MSN_TYPING_SEND_TIMEOUT;
 }
@@ -2053,7 +2072,7 @@
 	}
 
 	msn_switchboard_send_msg(swboard, msg, FALSE);
-	msn_message_destroy(msg);
+	msn_message_unref(msg);
 
 	g_free(msgformat);
 	g_free(msgtext);
@@ -2081,6 +2100,7 @@
 		trans = msn_transaction_new(cmdproc, "PNG", NULL);
 		msn_transaction_set_saveable(trans, FALSE);
 		msn_cmdproc_send_trans(cmdproc, trans);
+		msn_transaction_destroy(trans);
 	}
 }
 
--- a/libpurple/protocols/msn/notification.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/notification.c	Tue Nov 23 07:50:25 2010 +0000
@@ -95,7 +95,6 @@
 	MsnCmdProc *cmdproc;
 	MsnSession *session;
 	MsnTransaction *trans;
-	PurpleAccount *account;
 	GString *vers;
 	const char *ver_str;
 	int i;
@@ -104,7 +103,6 @@
 
 	cmdproc = servconn->cmdproc;
 	session = servconn->session;
-	account = session->account;
 
 	vers = g_string_new("");
 
@@ -189,11 +187,7 @@
 static void
 usr_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd)
 {
-	MsnSession *session;
-	PurpleAccount *account;
-
-	session = cmdproc->session;
-	account = session->account;
+	MsnSession *session = cmdproc->session;
 
 	if (!g_ascii_strcasecmp(cmd->params[1], "OK"))
 	{
@@ -315,6 +309,7 @@
 	trans = msn_transaction_new(notification->cmdproc, "OUT", NULL);
 	msn_transaction_set_saveable(trans, FALSE);
 	msn_cmdproc_send_trans(notification->cmdproc, trans);
+	msn_transaction_destroy(trans);
 
 	msn_notification_disconnect(notification);
 }
@@ -337,7 +332,7 @@
 
 	msn_cmdproc_process_msg(cmdproc, msg);
 
-	msn_message_destroy(msg);
+	msn_message_unref(msg);
 }
 
 static void
@@ -732,11 +727,8 @@
 	for (domain_node = xmlnode_get_child(root, "d");
 	     domain_node;
 	     domain_node = xmlnode_get_next_twin(domain_node)) {
-		const gchar * domain = NULL;
 		xmlnode *contact_node = NULL;
 
-		domain = xmlnode_get_attrib(domain_node, "n");
-
 		for (contact_node = xmlnode_get_child(domain_node, "c");
 		     contact_node;
 		     contact_node = xmlnode_get_next_twin(contact_node)) {
@@ -1021,8 +1013,6 @@
 iln_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd)
 {
 	MsnSession *session;
-	PurpleAccount *account;
-	PurpleConnection *gc;
 	MsnUser *user;
 	MsnObject *msnobj = NULL;
 	unsigned long clientid, extcaps;
@@ -1032,8 +1022,6 @@
 	char *friendly;
 
 	session = cmdproc->session;
-	account = session->account;
-	gc = purple_account_get_connection(account);
 
 	state    = cmd->params[1];
 	passport = cmd->params[2];
@@ -1222,7 +1210,7 @@
 
 					g_free(body_str);
 					g_free(body_enc);
-					msn_message_destroy(msg);
+					msn_message_unref(msg);
 					trans->data = NULL;
 				}
 			}
@@ -1246,8 +1234,6 @@
 nln_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd)
 {
 	MsnSession *session;
-	PurpleAccount *account;
-	PurpleConnection *gc;
 	MsnUser *user;
 	MsnObject *msnobj;
 	unsigned long clientid, extcaps;
@@ -1256,8 +1242,6 @@
 	const char *state, *passport, *friendly;
 
 	session = cmdproc->session;
-	account = session->account;
-	gc = purple_account_get_connection(account);
 
 	state    = cmd->params[0];
 	passport = cmd->params[1];
@@ -1455,7 +1439,7 @@
 	swboard = msn_switchboard_new(session);
 
 	msn_switchboard_set_invited(swboard, TRUE);
-	msn_switchboard_set_session_id(swboard, cmd->params[0]);
+	msn_switchboard_set_session_id(swboard, session_id);
 	msn_switchboard_set_auth_key(swboard, cmd->params[3]);
 	swboard->im_user = g_strdup(cmd->params[4]);
 	/* msn_switchboard_add_user(swboard, cmd->params[4]); */
@@ -1696,14 +1680,12 @@
 			 size_t len)
 {
 	MsnSession *session;
-	PurpleAccount *account;
 	MsnUser *user;
 	const char *passport;
 	xmlnode *payloadNode;
 	char *psm_str, *str;
 
 	session = cmdproc->session;
-	account = session->account;
 
 	passport = cmd->params[0];
 	if (g_str_equal(passport, session->user->passport))
--- a/libpurple/protocols/msn/object.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/object.c	Tue Nov 23 07:50:25 2010 +0000
@@ -202,6 +202,8 @@
 	g_free(obj->friendly);
 	g_free(obj->sha1d);
 	g_free(obj->sha1c);
+	g_free(obj->url);
+	g_free(obj->url1);
 
 	purple_imgstore_unref(obj->img);
 
--- a/libpurple/protocols/msn/oim.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/oim.c	Tue Nov 23 07:50:25 2010 +0000
@@ -641,10 +641,10 @@
 			type = msn_message_get_content_type(multipart);
 			if (type && !strcmp(type, "text/plain")) {
 				decode_msg = (char *)purple_base64_decode(multipart->body, &body_len);
-				msn_message_destroy(multipart);
+				msn_message_unref(multipart);
 				break;
 			}
-			msn_message_destroy(multipart);
+			msn_message_unref(multipart);
 		}
 
 		g_strfreev(tokens);
@@ -652,7 +652,7 @@
 
 		if (decode_msg == NULL) {
 			purple_debug_error("msn", "Couldn't find text/plain OIM message.\n");
-			msn_message_destroy(message);
+			msn_message_unref(message);
 			return;
 		}
 	} else {
@@ -708,7 +708,7 @@
 
 	g_free(passport);
 	g_free(decode_msg);
-	msn_message_destroy(message);
+	msn_message_unref(message);
 }
 
 /* Parse the XML data,
--- a/libpurple/protocols/msn/sbconn.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/sbconn.c	Tue Nov 23 07:50:25 2010 +0000
@@ -16,10 +16,10 @@
 	passport = purple_normalize(slplink->session->account, slplink->remote_user);
 	msn_message_set_header(msg, "P2P-Dest", passport);
 
+	msg->part = msn_slpmsgpart_ref(part);
 	data = msn_slpmsgpart_serialize(part, &size);
-	msg->part = msn_slpmsgpart_ref(part);
-
 	msn_message_set_bin_data(msg, data, size);
+	g_free(data);
 
 	if (slplink->swboard == NULL)
 	{
@@ -33,6 +33,7 @@
 	}
 
 	msn_switchboard_send_msg(slplink->swboard, msg, TRUE);
+	msn_message_unref(msg);
 }
 
 /** Called when a message times out. */
--- a/libpurple/protocols/msn/slp.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/slp.c	Tue Nov 23 07:50:25 2010 +0000
@@ -118,7 +118,6 @@
 got_user_display(MsnSlpCall *slpcall,
 				 const guchar *data, gsize size)
 {
-	MsnUserList *userlist;
 	const char *info;
 	PurpleAccount *account;
 
@@ -128,7 +127,6 @@
 	if (purple_debug_is_verbose())
 		purple_debug_info("msn", "Got User Display: %s\n", slpcall->slplink->remote_user);
 
-	userlist = slpcall->slplink->session->userlist;
 	account = slpcall->slplink->session->account;
 
 	purple_buddy_icons_set_for_user(account, slpcall->slplink->remote_user,
@@ -198,7 +196,7 @@
 	MsnSession *session;
 	MsnObject *my_obj = NULL;
 	gconstpointer data = NULL;
-	const char *info;
+	const char *info = NULL;
 	size_t len = 0;
 
 	if (purple_debug_is_verbose())
--- a/libpurple/protocols/msn/slpcall.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/slpcall.c	Tue Nov 23 07:50:25 2010 +0000
@@ -567,8 +567,7 @@
 
 	} else if (!strcmp(euf_guid, MSN_CAM_REQUEST_GUID)) {
 		purple_debug_info("msn", "Cam request.\n");
-		if (slpcall && slpcall->slplink &&
-				slpcall->slplink->session) {
+		if (slpcall->slplink && slpcall->slplink->session) {
 			PurpleConversation *conv;
 			gchar *from = slpcall->slplink->remote_user;
 			conv = purple_find_conversation_with_account(
@@ -590,8 +589,7 @@
 
 	} else if (!strcmp(euf_guid, MSN_CAM_GUID)) {
 		purple_debug_info("msn", "Cam invite.\n");
-		if (slpcall && slpcall->slplink &&
-				slpcall->slplink->session) {
+		if (slpcall->slplink && slpcall->slplink->session) {
 			PurpleConversation *conv;
 			gchar *from = slpcall->slplink->remote_user;
 			conv = purple_find_conversation_with_account(
@@ -828,6 +826,7 @@
 
 		/* Try direct file transfer by sending a second INVITE */
 		dc = msn_dc_new(slpcall);
+		g_free(slpcall->branch);
 		slpcall->branch = rand_guid();
 
 		dc->listen_data = purple_network_listen_range(
--- a/libpurple/protocols/msn/slplink.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/slplink.c	Tue Nov 23 07:50:25 2010 +0000
@@ -625,6 +625,10 @@
 	/* All the pieces of the slpmsg have been received */
 	if (header->offset + header->length >= header->total_size)
 		process_complete_msg(slplink, slpmsg, header);
+
+	/* NOTE: The slpmsg will be destroyed in process_complete_msg or left in
+	   the slplink until fully received. Don't free it here!
+	 */
 }
 
 void
--- a/libpurple/protocols/msn/slpmsg.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/slpmsg.c	Tue Nov 23 07:50:25 2010 +0000
@@ -54,41 +54,6 @@
 	return slpmsg;
 }
 
-MsnSlpMessage *msn_slpmsg_new_from_data(const char *data, size_t data_len)
-{
-	MsnSlpMessage *slpmsg;
-	MsnP2PHeader *header;
-	const char *tmp;
-	int body_len;
-
-	tmp = data;
-	slpmsg = msn_slpmsg_new(NULL);
-
-	if (data_len < sizeof(*header)) {
-		return NULL;
-	}
-
-	/* Extract the binary SLP header */
-	slpmsg->header = msn_p2p_header_from_wire((MsnP2PHeader*)tmp);
-
-	/* Extract the body */
-	body_len = data_len - (tmp - data);
-	/* msg->body_len = msg->msnslp_header.length; */
-
-	if (body_len > 0) {
-		slpmsg->size = body_len;
-		slpmsg->buffer = g_malloc(body_len);
-		memcpy(slpmsg->buffer, tmp, body_len);
-		tmp += body_len;
-	}
-
-	/* Extract the footer */
-	if (body_len >= 0) 
-		slpmsg->footer = msn_p2p_footer_from_wire((MsnP2PFooter*)tmp);
-
-	return slpmsg;
-}
-
 void
 msn_slpmsg_destroy(MsnSlpMessage *slpmsg)
 {
@@ -326,6 +291,9 @@
 
 	*ret_size = tmp - base;
 
+	g_free(header);
+	g_free(footer);
+
 	return base;
 }
 
--- a/libpurple/protocols/msn/slpmsg.h	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/slpmsg.h	Tue Nov 23 07:50:25 2010 +0000
@@ -78,16 +78,6 @@
 MsnSlpMessage *msn_slpmsg_new(MsnSlpLink *slplink);
 
 /**
- * Creates a MsnSlpMessage without a MsnSlpLink by parsing the raw data.
- *
- * @param data 		The raw data with the slp message.
- * @param data_len 	The len of the data
- *
- * @return The createed slp message.
- */
-MsnSlpMessage *msn_slpmsg_new_from_data(const char *data, size_t data_len);
-
-/**
  * Destroys a slp message
  *
  * @param slpmsg The slp message to destory.
--- a/libpurple/protocols/msn/slpmsg_part.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/slpmsg_part.c	Tue Nov 23 07:50:25 2010 +0000
@@ -28,13 +28,13 @@
 	const char *tmp;
 	int body_len;
 
-	tmp = data;
-	part = msn_slpmsgpart_new(NULL, NULL);
-
 	if (data_len < sizeof(*header)) {
 		return NULL;
 	}
 
+	part = msn_slpmsgpart_new(NULL, NULL);
+	tmp = data;
+
 	/* Extract the binary SLP header */
 	part->header = msn_p2p_header_from_wire((MsnP2PHeader*)tmp);
 	tmp += P2P_PACKET_HEADER_SIZE;
@@ -109,8 +109,7 @@
 {
 	g_return_if_fail(part != NULL);
 
-	if (part->buffer != NULL)
-		g_free(part->buffer);
+	g_free(part->buffer);
 
 	if (data != NULL && len > 0) {
 		part->buffer = g_malloc(len + 1);
@@ -154,6 +153,9 @@
 
 	*ret_size = tmp - base;
 
+	g_free(header);
+	g_free(footer);
+
 	return base;
 }
 /* We have received the message ack */
--- a/libpurple/protocols/msn/switchboard.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/switchboard.c	Tue Nov 23 07:50:25 2010 +0000
@@ -225,7 +225,7 @@
 
 	msn_switchboard_send_msg(swboard, msg, TRUE);
 
-	msn_message_destroy(msg);
+	msn_message_unref(msg);
 }
 
 static void
@@ -325,9 +325,8 @@
 			for (l = swboard->users; l != NULL; l = l->next)
 			{
 				const char *tmp_user;
-				user = l->data;
 
-				tmp_user = msnuser->passport;
+				tmp_user = ((MsnUser*)l->data)->passport;
 
 				purple_conv_chat_add_user(PURPLE_CONV_CHAT(swboard->conv),
 										tmp_user, NULL, PURPLE_CBFLAGS_NONE, TRUE);
@@ -678,11 +677,9 @@
 iro_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd)
 {
 	PurpleAccount *account;
-	PurpleConnection *gc;
 	MsnSwitchBoard *swboard;
 
 	account = cmdproc->session->account;
-	gc = account->gc;
 	swboard = cmdproc->data;
 
 	swboard->total_users = atoi(cmd->params[2]);
@@ -695,7 +692,6 @@
 {
 	MsnSession *session;
 	PurpleAccount *account;
-	PurpleConnection *gc;
 	MsnSwitchBoard *swboard;
 	const char *passport;
 
@@ -703,7 +699,6 @@
 
 	session = cmdproc->session;
 	account = session->account;
-	gc = account->gc;
 	swboard = cmdproc->data;
 
 	msn_switchboard_add_user(swboard, passport);
@@ -1152,6 +1147,7 @@
 		trans = msn_transaction_new(cmdproc, "OUT", NULL);
 		msn_transaction_set_saveable(trans, FALSE);
 		msn_cmdproc_send_trans(cmdproc, trans);
+		msn_transaction_destroy(trans);
 
 		msn_switchboard_destroy(swboard);
 	}
--- a/libpurple/protocols/msn/transaction.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/transaction.c	Tue Nov 23 07:50:25 2010 +0000
@@ -220,10 +220,11 @@
 	purple_debug_info("msn", "timed out: %s %d %s\n", trans->command, trans->trId, trans->params);
 #endif
 
+	trans->timer = 0;
+
 	if (trans->timeout_cb != NULL)
 		trans->timeout_cb(trans->cmdproc, trans);
 
-	trans->timer = 0;
 	return FALSE;
 }
 
--- a/libpurple/protocols/msn/user.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/user.c	Tue Nov 23 07:50:25 2010 +0000
@@ -742,7 +742,18 @@
 	str = purple_normalize_nocase(NULL, msn_user_get_passport(user));
 	pass = g_strdup(str);
 
+#if GLIB_CHECK_VERSION(2,16,0)
 	result = g_strcmp0(pass, purple_normalize_nocase(NULL, passport));
+#else
+	str = purple_normalize_nocase(NULL, passport);
+	if (!pass)
+		result = -(pass != str);
+	else if (!str)
+		result = pass != str;
+	else
+		result = strcmp(pass, str);
+#endif /* GLIB < 2.16.0 */
+
 	g_free(pass);
 
 	return result;
--- a/libpurple/protocols/msn/userlist.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/msn/userlist.c	Tue Nov 23 07:50:25 2010 +0000
@@ -699,8 +699,6 @@
 
 	if (userlist->buddy_icon_window > 0) {
 		GQueue *queue;
-		PurpleAccount *account;
-		const char *username;
 
 		queue = userlist->buddy_icon_requests;
 
@@ -709,9 +707,6 @@
 
 		user = g_queue_pop_head(queue);
 
-		account  = userlist->session->account;
-		username = user->passport;
-
 		userlist->buddy_icon_window--;
 
 		msn_request_user_display(user);
--- a/libpurple/protocols/oscar/clientlogin.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/clientlogin.c	Tue Nov 23 07:50:25 2010 +0000
@@ -65,12 +65,12 @@
 
 static const gchar *get_client_login_url(OscarData *od)
 {
-	return client_login_urls[od->icq];
+	return client_login_urls[od->icq ? 1 : 0];
 }
 
 static const gchar *get_start_oscar_session_url(OscarData *od)
 {
-	return start_oscar_session_urls[od->icq];
+	return start_oscar_session_urls[od->icq ? 1 : 0];
 }
 
 /*
@@ -93,10 +93,22 @@
 static gchar *generate_error_message(xmlnode *resp, const char *url)
 {
 	xmlnode *text;
+	xmlnode *status_code_node;
+	gchar *status_code;
+	gboolean have_error_code = TRUE;
 	gchar *err = NULL;
 	gchar *details = NULL;
 
-	if (resp && (text = xmlnode_get_child(resp, "statusText"))) {
+	status_code_node = xmlnode_get_child(resp, "statusCode");
+	if (status_code_node) {
+		/* We can get 200 OK here if the server omitted something we think it shouldn't have (see #12783).
+		 * No point in showing the "Ok" string to the user.
+		 */
+		if ((status_code = xmlnode_get_data_unescaped(status_code_node)) && strcmp(status_code, "200") == 0) {
+			have_error_code = FALSE;
+		}
+	}
+	if (have_error_code && resp && (text = xmlnode_get_child(resp, "statusText"))) {
 		details = xmlnode_get_data(text);
 	}
 
@@ -156,11 +168,9 @@
 	OscarData *od = purple_connection_get_protocol_data(gc);
 	xmlnode *response_node, *tmp_node, *data_node;
 	xmlnode *host_node = NULL, *port_node = NULL, *cookie_node = NULL, *tls_node = NULL;
-	gboolean use_tls;
 	char *tmp;
 	guint code;
-
-	use_tls = purple_account_get_bool(purple_connection_get_account(gc), "use_ssl", OSCAR_DEFAULT_USE_SSL);
+	const gchar *encryption_type = purple_account_get_string(purple_connection_get_account(gc), "encryption", OSCAR_DEFAULT_ENCRYPTION);
 
 	/* Parse the response as XML */
 	response_node = xmlnode_from_str(response, response_len);
@@ -185,7 +195,6 @@
 		host_node = xmlnode_get_child(data_node, "host");
 		port_node = xmlnode_get_child(data_node, "port");
 		cookie_node = xmlnode_get_child(data_node, "cookie");
-		tls_node = xmlnode_get_child(data_node, "tlsCertName");
 	}
 
 	/* Make sure we have a status code */
@@ -259,19 +268,30 @@
 		return FALSE;
 	}
 
+	if (strcmp(encryption_type, OSCAR_NO_ENCRYPTION) != 0) {
+		tls_node = xmlnode_get_child(data_node, "tlsCertName");
+		if (tls_node != NULL) {
+			*tls_certname = xmlnode_get_data_unescaped(tls_node);
+		} else {
+			if (strcmp(encryption_type, OSCAR_OPPORTUNISTIC_ENCRYPTION) == 0) {
+				purple_debug_warning("oscar", "We haven't received a tlsCertName to use. We will not do SSL to BOS.\n");
+			} else {
+				purple_debug_error("oscar", "startOSCARSession was missing tlsCertName: %s\n", response);
+				purple_connection_error_reason(
+					gc,
+					PURPLE_CONNECTION_ERROR_NO_SSL_SUPPORT,
+					_("You required encryption in your account settings, but one of the servers doesn't support it."));
+				xmlnode_free(response_node);
+				return FALSE;
+			}
+		}
+	}
+
 	/* Extract data from the XML */
 	*host = xmlnode_get_data_unescaped(host_node);
 	tmp = xmlnode_get_data_unescaped(port_node);
 	*cookie = xmlnode_get_data_unescaped(cookie_node);
 
-	if (use_tls) {
-		if (tls_node != NULL) {
-			*tls_certname = xmlnode_get_data_unescaped(tls_node);
-		} else {
-			purple_debug_warning("oscar", "useTls was 1, but we haven't received a tlsCertName to use. We will not do SSL to BOS.\n");
-		}
-	}
-
 	if (*host == NULL || **host == '\0' || tmp == NULL || *tmp == '\0' || *cookie == NULL || **cookie == '\0')
 	{
 		char *msg;
@@ -315,7 +335,8 @@
 		/* Note to translators: The first %s is a URL, the second is an
 		   error message. */
 		tmp = g_strdup_printf(_("Error requesting %s: %s"),
-				get_start_oscar_session_url(od), error_message);
+				get_start_oscar_session_url(od), error_message ?
+				error_message : _("The server returned an empty response"));
 		purple_connection_error_reason(gc,
 				PURPLE_CONNECTION_ERROR_NETWORK_ERROR, tmp);
 		g_free(tmp);
@@ -337,11 +358,8 @@
 static void send_start_oscar_session(OscarData *od, const char *token, const char *session_key, time_t hosttime)
 {
 	char *query_string, *signature, *url;
-	PurpleAccount *account;
-	gboolean use_tls;
-
-	account = purple_connection_get_account(od->gc);
-	use_tls = purple_account_get_bool(account, "use_ssl", OSCAR_DEFAULT_USE_SSL);
+	PurpleAccount *account = purple_connection_get_account(od->gc);
+	const gchar *encryption_type = purple_account_get_string(account, "encryption", OSCAR_DEFAULT_ENCRYPTION);
 
 	/*
 	 * Construct the GET parameters.  0x00000611 is the distid given to
@@ -354,9 +372,10 @@
 			"&ts=%" PURPLE_TIME_T_MODIFIER
 			"&useTLS=%d",
 			purple_url_encode(token),
-			oscar_get_ui_info_int(od->icq ? "prpl-icq-distid"
-					: "prpl-aim-distid", 0x00000611),
-			get_client_key(od), hosttime, use_tls);
+			oscar_get_ui_info_int(od->icq ? "prpl-icq-distid" : "prpl-aim-distid", 0x00000611),
+			get_client_key(od),
+			hosttime,
+			strcmp(encryption_type, OSCAR_NO_ENCRYPTION) != 0 ? 1 : 0);
 	signature = generate_signature("GET", get_start_oscar_session_url(od),
 			query_string, session_key);
 	url = g_strdup_printf("%s?%s&sig_sha256=%s", get_start_oscar_session_url(od),
@@ -550,12 +569,9 @@
 
 	if (error_message != NULL || len == 0) {
 		gchar *tmp;
-		if (error_message != NULL)
-			tmp = g_strdup_printf(_("Error requesting %s: %s"),
-					get_client_login_url(od), error_message);
-		else
-			tmp = g_strdup_printf(_("Error requesting %s"),
-					get_client_login_url(od));
+		tmp = g_strdup_printf(_("Error requesting %s: %s"),
+				get_client_login_url(od), error_message ?
+				error_message : _("The server returned an empty response"));
 		purple_connection_error_reason(gc,
 				PURPLE_CONNECTION_ERROR_NETWORK_ERROR, tmp);
 		g_free(tmp);
--- a/libpurple/protocols/oscar/encoding.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/encoding.c	Tue Nov 23 07:50:25 2010 +0000
@@ -61,7 +61,6 @@
 	} else if (!g_ascii_strcasecmp(extracted_encoding, "unicode-2-0")) {
 		glib_encoding = "UTF-16BE";
 	} else if (g_ascii_strcasecmp(extracted_encoding, "utf-8")) {
-		purple_debug_warning("oscar", "Unrecognized character encoding \"%s\", attempting to convert to UTF-8 anyway\n", extracted_encoding);
 		glib_encoding = extracted_encoding;
 	}
 
--- a/libpurple/protocols/oscar/oscar.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Tue Nov 23 07:50:25 2010 +0000
@@ -73,7 +73,6 @@
 
 static guint8 features_aim[] = {0x01, 0x01, 0x01, 0x02};
 static guint8 features_icq[] = {0x01};
-static guint8 ck[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
 
 struct create_room {
 	char *name;
@@ -284,7 +283,6 @@
 
 	/* Destroy the chat_connection */
 	od->oscar_chats = g_slist_remove(od->oscar_chats, cc);
-	flap_connection_schedule_destroy(cc->conn, OSCAR_DISCONNECT_DONE, NULL);
 	oscar_chat_destroy(cc);
 }
 
@@ -376,12 +374,10 @@
 		aim_request_login(od, conn, purple_account_get_username(account));
 		purple_debug_info("oscar", "Username sent, waiting for response\n");
 		purple_connection_update_progress(gc, _("Username sent"), 1, OSCAR_CONNECT_STEPS);
-		ck[1] = 0x65;
 	}
 	else if (conn->type == SNAC_FAMILY_LOCATE)
 	{
 		purple_connection_update_progress(gc, _("Connection established, cookie sent"), 4, OSCAR_CONNECT_STEPS);
-		ck[4] = 0x61;
 	}
 	else if (conn->type == SNAC_FAMILY_CHAT)
 	{
@@ -619,16 +615,46 @@
 	ICQ_DEFAULT_SSL_LOGIN_SERVER,
 };
 
-static const gchar *get_login_server(gboolean is_icq, gboolean use_ssl)
+static const gchar *
+get_login_server(gboolean is_icq, gboolean use_ssl)
+{
+	return login_servers[(is_icq ? 2 : 0) + (use_ssl ? 1 : 0)];
+}
+
+static gint
+compare_handlers(gconstpointer a, gconstpointer b)
 {
-	return login_servers[is_icq*2 + use_ssl];
+	guint aa = GPOINTER_TO_UINT(a);
+	guint bb = GPOINTER_TO_UINT(b);
+	guint family1 = aa >> 16;
+	guint family2 = bb >> 16;
+	guint subtype1 = aa & 0xFFFF;
+	guint subtype2 = bb & 0xFFFF;
+	if (family1 != family2) {
+		return family1 - family2;
+	}
+	return subtype1 - subtype2;
 }
 
+#if !GLIB_CHECK_VERSION(2,14,0)
+static void hash_table_get_list_of_keys(gpointer key, gpointer value, gpointer user_data)
+{
+	GList **handlers = (GList **)user_data;
+
+	*handlers = g_list_prepend(*handlers, key);
+}
+#endif /* GLIB < 2.14.0 */
+
 void
 oscar_login(PurpleAccount *account)
 {
 	PurpleConnection *gc;
 	OscarData *od;
+	const gchar *encryption_type;
+	GList *handlers;
+	GList *sorted_handlers;
+	GList *cur;
+	GString *msg = g_string_new("");
 
 	gc = purple_account_get_connection(account);
 	od = oscar_data_new();
@@ -687,6 +713,23 @@
 	oscar_data_addhandler(od, SNAC_FAMILY_USERLOOKUP, SNAC_SUBTYPE_USERLOOKUP_ERROR, purple_parse_searcherror, 0);
 	oscar_data_addhandler(od, SNAC_FAMILY_USERLOOKUP, 0x0003, purple_parse_searchreply, 0);
 
+	g_string_append(msg, "Registered handlers: ");
+#if GLIB_CHECK_VERSION(2,14,0)
+	handlers = g_hash_table_get_keys(od->handlerlist);
+#else
+	handlers = NULL;
+	g_hash_table_foreach(od->handlerlist, hash_table_get_list_of_keys, &handlers);
+#endif /* GLIB < 2.14.0 */
+	sorted_handlers = g_list_sort(g_list_copy(handlers), compare_handlers);
+	for (cur = sorted_handlers; cur; cur = cur->next) {
+		guint x = GPOINTER_TO_UINT(cur->data);
+		g_string_append_printf(msg, "%04x/%04x, ", x >> 16, x & 0xFFFF);
+	}
+	g_list_free(sorted_handlers);
+	g_list_free(handlers);
+	purple_debug_misc("oscar", "%s\n", msg->str);
+	g_string_free(msg, TRUE);
+
 	purple_debug_misc("oscar", "oscar_login: gc = %p\n", gc);
 
 	if (!oscar_util_valid_name(purple_account_get_username(account))) {
@@ -706,7 +749,16 @@
 	}
 
 	od->default_port = purple_account_get_int(account, "port", OSCAR_DEFAULT_LOGIN_PORT);
-	od->use_ssl = purple_account_get_bool(account, "use_ssl", OSCAR_DEFAULT_USE_SSL);
+
+	encryption_type = purple_account_get_string(account, "encryption", OSCAR_DEFAULT_ENCRYPTION);
+	if (!purple_ssl_is_supported() && strcmp(encryption_type, OSCAR_REQUIRE_ENCRYPTION) == 0) {
+		purple_connection_error_reason(
+			gc,
+			PURPLE_CONNECTION_ERROR_NO_SSL_SUPPORT,
+			_("You required encryption in your account settings, but encryption is not supported by your system."));
+		return;
+	}
+	od->use_ssl = purple_ssl_is_supported() && strcmp(encryption_type, OSCAR_NO_ENCRYPTION) != 0;
 
 	/* Connect to core Purple signals */
 	purple_prefs_connect_callback(gc, "/purple/away/idle_reporting", idle_reporting_pref_cb, gc);
@@ -731,12 +783,6 @@
 		newconn = flap_connection_new(od, SNAC_FAMILY_AUTH);
 
 		if (od->use_ssl) {
-			if (!purple_ssl_is_supported()) {
-				purple_connection_error_reason(gc, PURPLE_CONNECTION_ERROR_NO_SSL_SUPPORT,
-						_("SSL support unavailable"));
-				return;
-			}
-
 			server = purple_account_get_string(account, "server", get_login_server(od->icq, TRUE));
 
 			/*
@@ -746,7 +792,7 @@
 			 * do what we know is best for them and change the setting out
 			 * from under them to the SSL login server.
 			 */
-			if (!strcmp(server, get_login_server(od->icq, FALSE))) {
+			if (!strcmp(server, get_login_server(od->icq, FALSE)) || !strcmp(server, AIM_ALT_LOGIN_SERVER)) {
 				purple_debug_info("oscar", "Account uses SSL, so changing server to default SSL server\n");
 				purple_account_set_string(account, "server", get_login_server(od->icq, TRUE));
 				server = get_login_server(od->icq, TRUE);
@@ -782,7 +828,6 @@
 	}
 
 	purple_connection_update_progress(gc, _("Connecting"), 0, OSCAR_CONNECT_STEPS);
-	ck[0] = 0x5a;
 }
 
 void
@@ -981,7 +1026,7 @@
 	conn->cookie = g_memdup(cookie, cookielen);
 
 	/*
-	 * Use SSL only if the server provided us with a tls_certname. The server might not specify a tls_certname even if we requested to use TLS, 
+	 * Use TLS only if the server provided us with a tls_certname. The server might not specify a tls_certname even if we requested to use TLS, 
 	 * and that is something we should be prepared to.
 	 */
 	if (tls_certname)
@@ -1006,7 +1051,6 @@
 	od->default_port = port;
 
 	purple_connection_update_progress(gc, _("Received authorization"), 3, OSCAR_CONNECT_STEPS);
-	ck[3] = 0x64;
 
 	return 1;
 }
@@ -1126,7 +1170,6 @@
 	}
 
 	purple_connection_update_progress(gc, _("Received authorization"), 3, OSCAR_CONNECT_STEPS);
-	ck[3] = 0x64;
 
 	return 1;
 }
@@ -1210,7 +1253,6 @@
 			purple_account_get_bool(account, "allow_multiple_logins", OSCAR_DEFAULT_ALLOW_MULTIPLE_LOGINS));
 
 	purple_connection_update_progress(gc, _("Password sent"), 2, OSCAR_CONNECT_STEPS);
-	ck[2] = 0x6c;
 
 	return 1;
 }
@@ -1240,6 +1282,20 @@
 	else
 		host = g_strdup(redir->ip);
 
+	if (!redir->use_ssl) {
+		const gchar *encryption_type = purple_account_get_string(account, "encryption", OSCAR_DEFAULT_ENCRYPTION);
+		if (strcmp(encryption_type, OSCAR_OPPORTUNISTIC_ENCRYPTION) == 0) {
+			purple_debug_warning("oscar", "We won't use SSL for FLAP type 0x%04hx.\n", redir->group);
+		} else if (strcmp(encryption_type, OSCAR_REQUIRE_ENCRYPTION) == 0) {
+			purple_debug_error("oscar", "FLAP server %s:%d of type 0x%04hx doesn't support encryption.", host, port, redir->group);
+			purple_connection_error_reason(
+				gc,
+				PURPLE_CONNECTION_ERROR_NO_SSL_SUPPORT,
+				_("You required encryption in your account settings, but one of the servers doesn't support it."));
+			return 0;
+		} 
+	}
+
 	/*
 	 * These FLAP servers advertise SSL (type "0x02"), but SSL connections to these hosts
 	 * die a painful death. iChat and Miranda, when using SSL, still do these in plaintext.
@@ -1247,14 +1303,11 @@
 	if (redir->use_ssl && (redir->group == SNAC_FAMILY_ADMIN ||
 	                       redir->group == SNAC_FAMILY_BART))
 	{
-		purple_debug_info("oscar", "Ignoring broken SSL for FLAP type 0x%04hx.\n",
-						redir->group);
+		purple_debug_info("oscar", "Ignoring broken SSL for FLAP type 0x%04hx.\n", redir->group);
 		redir->use_ssl = 0;
 	}
 
-	purple_debug_info("oscar", "Connecting to FLAP server %s:%d of type 0x%04hx%s\n",
-					host, port, redir->group,
-					od->use_ssl && !redir->use_ssl ? " without SSL, despite main stream encryption" : "");
+	purple_debug_info("oscar", "Connecting to FLAP server %s:%d of type 0x%04hx\n", host, port, redir->group);
 
 	newconn = flap_connection_new(od, redir->group);
 	newconn->cookielen = redir->cookielen;
@@ -1481,13 +1534,6 @@
 	return 1;
 }
 
-static void purple_check_comment(OscarData *od, const char *str) {
-	if ((str == NULL) || strcmp(str, (const char *)ck))
-		aim_locate_setcaps(od, purple_caps);
-	else
-		aim_locate_setcaps(od, purple_caps | OSCAR_CAPABILITY_SECUREIM);
-}
-
 static int purple_parse_offgoing(OscarData *od, FlapConnection *conn, FlapFrame *fr, ...) {
 	PurpleConnection *gc = od->gc;
 	PurpleAccount *account = purple_connection_get_account(gc);
@@ -2386,6 +2432,7 @@
 
 	switch(type) {
 		case 0x0002: {
+			GString *msg = g_string_new("");
 			guint8 maxrooms;
 			struct aim_chat_exchangeinfo *exchanges;
 			int exchangecount, i;
@@ -2394,15 +2441,17 @@
 			exchangecount = va_arg(ap, int);
 			exchanges = va_arg(ap, struct aim_chat_exchangeinfo *);
 
-			purple_debug_misc("oscar", "chat info: Chat Rights:\n");
-			purple_debug_misc("oscar",
-					   "chat info: \tMax Concurrent Rooms: %hhd\n", maxrooms);
-			purple_debug_misc("oscar",
-					   "chat info: \tExchange List: (%d total)\n", exchangecount);
-			for (i = 0; i < exchangecount; i++)
-				purple_debug_misc("oscar",
-						   "chat info: \t\t%hu    %s\n",
-						   exchanges[i].number, exchanges[i].name ? exchanges[i].name : "");
+			g_string_append_printf(msg, "chat info: Max Concurrent Rooms: %hhd, Exchange List (%d total): ", maxrooms, exchangecount);
+			for (i = 0; i < exchangecount; i++) {
+				g_string_append_printf(msg, "%hu", exchanges[i].number);
+				if (exchanges[i].name) {
+					g_string_append_printf(msg, " %s", exchanges[i].name);
+				}
+				g_string_append(msg, ", ");
+			}
+			purple_debug_misc("oscar", "%s\n", msg->str);
+			g_string_free(msg, TRUE);
+
 			while (od->create_rooms) {
 				struct create_room *cr = od->create_rooms->data;
 				purple_debug_info("oscar",
@@ -3927,14 +3976,6 @@
 								   "ssi: adding buddy %s to group %s to local list\n", curitem->name, gname);
 						purple_blist_add_buddy(b, NULL, g, NULL);
 					}
-					if (!oscar_util_name_compare(curitem->name, purple_account_get_username(account))) {
-						char *comment = aim_ssi_getcomment(od->ssi.local, gname, curitem->name);
-						if (comment != NULL)
-						{
-							purple_check_comment(od, comment);
-							g_free(comment);
-						}
-					}
 
 					/* Mobile users should always be online */
 					if (curitem->name[0] == '+') {
@@ -4409,6 +4450,7 @@
 			purple_conversation_get_name(conv));
 
 	cc = find_oscar_chat(gc, purple_conv_chat_get_id(PURPLE_CONV_CHAT(conv)));
+	flap_connection_schedule_destroy(cc->conn, OSCAR_DISCONNECT_DONE, NULL);
 	oscar_chat_kill(gc, cc);
 }
 
@@ -4803,7 +4845,6 @@
 	OscarData *od;
 	PurpleBuddy *b;
 	PurpleGroup *g;
-	const char *username;
 
 	gc = data->gc;
 	od = purple_connection_get_protocol_data(gc);
@@ -4822,11 +4863,6 @@
 	}
 
 	aim_ssi_editcomment(od, purple_group_get_name(g), data->name, text);
-
-	username = purple_account_get_username(account);
-	if (!oscar_util_name_compare(data->name, username))
-		purple_check_comment(od, text);
-
 	oscar_free_name_data(data);
 }
 
@@ -5677,15 +5713,34 @@
 	PurplePluginProtocolInfo *prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(plugin);
 	PurpleAccountOption *option;
 	static gboolean init = FALSE;
-
-	option = purple_account_option_string_new(_("Server"), "server", get_login_server(is_icq, OSCAR_DEFAULT_USE_SSL));
+	static const gchar *encryption_keys[] = {
+		N_("Use encryption if available"),
+		N_("Require encryption"),
+		N_("Don't use encryption"),
+		NULL
+	};
+	static const gchar *encryption_values[] = {
+		OSCAR_OPPORTUNISTIC_ENCRYPTION,
+		OSCAR_REQUIRE_ENCRYPTION,
+		OSCAR_NO_ENCRYPTION,
+		NULL
+	};
+	GList *encryption_options = NULL;
+	int i;
+
+	option = purple_account_option_string_new(_("Server"), "server", get_login_server(is_icq, TRUE));
 	prpl_info->protocol_options = g_list_append(prpl_info->protocol_options, option);
 
 	option = purple_account_option_int_new(_("Port"), "port", OSCAR_DEFAULT_LOGIN_PORT);
 	prpl_info->protocol_options = g_list_append(prpl_info->protocol_options, option);
 
-	option = purple_account_option_bool_new(_("Use SSL"), "use_ssl",
-			OSCAR_DEFAULT_USE_SSL);
+	for (i = 0; encryption_keys[i]; i++) {
+		PurpleKeyValuePair *kvp = g_new0(PurpleKeyValuePair, 1);
+		kvp->key = g_strdup(_(encryption_keys[i]));
+		kvp->value = g_strdup(encryption_values[i]);
+		encryption_options = g_list_append(encryption_options, kvp);
+	}
+	option = purple_account_option_list_new(_("Connection security"), "encryption", encryption_options);
 	prpl_info->protocol_options = g_list_append(prpl_info->protocol_options, option);
 
 	option = purple_account_option_bool_new(_("Use clientLogin"), "use_clientlogin",
--- a/libpurple/protocols/oscar/oscar_data.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/oscar_data.c	Tue Nov 23 07:50:25 2010 +0000
@@ -37,6 +37,8 @@
 oscar_data_new(void)
 {
 	OscarData *od;
+	aim_module_t *cur;
+	GString *msg;
 
 	od = g_new0(OscarData, 1);
 
@@ -70,6 +72,20 @@
 	aim__registermodule(od, auth_modfirst);
 	aim__registermodule(od, email_modfirst);
 
+	msg = g_string_new("Registered modules: ");
+	for (cur = od->modlistv; cur; cur = cur->next) {
+		g_string_append_printf(
+			msg,
+			"%s (family=0x%04x, version=0x%04x, toolid=0x%04x, toolversion=0x%04x), ",
+			cur->name,
+			cur->family,
+			cur->version,
+			cur->toolid,
+			cur->toolversion);
+	}
+	purple_debug_misc("oscar", "%s\n", msg->str);
+	g_string_free(msg, TRUE);
+
 	return od;
 }
 
@@ -118,8 +134,6 @@
 {
 	SnacHandler *snac_handler;
 
-	purple_debug_misc("oscar", "Adding handler for %04x/%04x\n", family, subtype);
-
 	snac_handler = g_new0(SnacHandler, 1);
 
 	snac_handler->family = family;
--- a/libpurple/protocols/oscar/oscarcommon.h	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/oscarcommon.h	Tue Nov 23 07:50:25 2010 +0000
@@ -33,12 +33,17 @@
 #include "status.h"
 
 #define AIM_DEFAULT_LOGIN_SERVER "login.oscar.aol.com"
+#define AIM_ALT_LOGIN_SERVER "login.messaging.aol.com"
 #define AIM_DEFAULT_SSL_LOGIN_SERVER "slogin.oscar.aol.com"
 #define ICQ_DEFAULT_LOGIN_SERVER "login.icq.com"
 #define ICQ_DEFAULT_SSL_LOGIN_SERVER "slogin.icq.com"
 
 #define OSCAR_DEFAULT_LOGIN_PORT 5190
 
+#define OSCAR_OPPORTUNISTIC_ENCRYPTION "opportunistic_encryption"
+#define OSCAR_REQUIRE_ENCRYPTION "require_encryption"
+#define OSCAR_NO_ENCRYPTION "no_encryption"
+
 #ifndef _WIN32
 #define OSCAR_DEFAULT_CUSTOM_ENCODING "ISO-8859-1"
 #else
@@ -49,8 +54,8 @@
 #define OSCAR_DEFAULT_WEB_AWARE FALSE
 #define OSCAR_DEFAULT_ALWAYS_USE_RV_PROXY FALSE
 #define OSCAR_DEFAULT_ALLOW_MULTIPLE_LOGINS TRUE
-#define OSCAR_DEFAULT_USE_SSL TRUE
 #define OSCAR_DEFAULT_USE_CLIENTLOGIN TRUE
+#define OSCAR_DEFAULT_ENCRYPTION OSCAR_OPPORTUNISTIC_ENCRYPTION
 
 #ifdef _WIN32
 const char *oscar_get_locale_charset(void);
--- a/libpurple/protocols/oscar/rxhandlers.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/rxhandlers.c	Tue Nov 23 07:50:25 2010 +0000
@@ -69,8 +69,6 @@
 	mod->next = (aim_module_t *)od->modlistv;
 	od->modlistv = mod;
 
-	purple_debug_misc("oscar", "registered module %s (family 0x%04x, version = 0x%04x, tool 0x%04x, tool version 0x%04x)\n", mod->name, mod->family, mod->version, mod->toolid, mod->toolversion);
-
 	return 0;
 }
 
--- a/libpurple/protocols/oscar/visibility.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/protocols/oscar/visibility.c	Tue Nov 23 07:50:25 2010 +0000
@@ -20,10 +20,25 @@
 
 #include "visibility.h"
 
-/* 4 separate strings are needed in order to ease translators' job */
+/* Translators: This string is a menu option that, if selected, will cause
+   you to appear online to the chosen user even when your status is set to
+   Invisible. */
 #define APPEAR_ONLINE		N_("Appear Online")
+
+/* Translators: This string is a menu option that, if selected, will cause
+   you to appear offline to the chosen user when your status is set to
+   Invisible (this is the default). */
 #define DONT_APPEAR_ONLINE	N_("Don't Appear Online")
+
+/* Translators: This string is a menu option that, if selected, will cause
+   you to always appear offline to the chosen user (even when your status
+   isn't Invisible). */
 #define APPEAR_OFFLINE		N_("Appear Offline")
+
+/* Translators: This string is a menu option that, if selected, will cause
+   you to appear offline to the chosen user if you are invisible, and
+   appear online to the chosen user if you are not invisible (this is the
+   default). */
 #define DONT_APPEAR_OFFLINE	N_("Don't Appear Offline")
 
 static guint16
--- a/libpurple/util.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/libpurple/util.c	Tue Nov 23 07:50:25 2010 +0000
@@ -3798,12 +3798,13 @@
 		gfud->webdata[gfud->len] = '\0';
 
 		if(!gfud->got_headers) {
-			char *tmp;
+			char *end_of_headers;
 
 			/* See if we've reached the end of the headers yet */
-			if((tmp = strstr(gfud->webdata, "\r\n\r\n"))) {
-				char * new_data;
-				guint header_len = (tmp + 4 - gfud->webdata);
+			end_of_headers = strstr(gfud->webdata, "\r\n\r\n");
+			if (end_of_headers) {
+				char *new_data;
+				guint header_len = (end_of_headers + 4 - gfud->webdata);
 				size_t content_len;
 
 				purple_debug_misc("util", "Response headers: '%.*s'\n",
@@ -3819,7 +3820,7 @@
 				content_len = parse_content_len(gfud->webdata, header_len);
 				gfud->chunked = content_is_chunked(gfud->webdata, header_len);
 
-				if(content_len == 0) {
+				if (content_len == 0) {
 					/* We'll stick with an initial 8192 */
 					content_len = 8192;
 				} else {
@@ -3828,19 +3829,16 @@
 
 
 				/* If we're returning the headers too, we don't need to clean them out */
-				if(gfud->include_headers) {
+				if (gfud->include_headers) {
 					gfud->data_len = content_len + header_len;
 					gfud->webdata = g_realloc(gfud->webdata, gfud->data_len);
 				} else {
-					size_t body_len = 0;
-
-					if(gfud->len > (header_len + 1))
-						body_len = (gfud->len - header_len);
+					size_t body_len = gfud->len - header_len;
 
 					content_len = MAX(content_len, body_len);
 
 					new_data = g_try_malloc(content_len);
-					if(new_data == NULL) {
+					if (new_data == NULL) {
 						purple_debug_error("util",
 								"Failed to allocate %" G_GSIZE_FORMAT " bytes: %s\n",
 								content_len, g_strerror(errno));
@@ -3854,9 +3852,8 @@
 					}
 
 					/* We may have read part of the body when reading the headers, don't lose it */
-					if(body_len > 0) {
-						tmp += 4;
-						memcpy(new_data, tmp, body_len);
+					if (body_len > 0) {
+						memcpy(new_data, end_of_headers + 4, body_len);
 					}
 
 					/* Out with the old... */
--- a/pidgin/gtkmedia.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/pidgin/gtkmedia.c	Tue Nov 23 07:50:25 2010 +0000
@@ -399,6 +399,9 @@
 		gtkmedia->priv->ui = NULL;
 	}
 
+	if (gtkmedia->priv->timeout_id != 0)
+		g_source_remove(gtkmedia->priv->timeout_id);
+
 	G_OBJECT_CLASS(parent_class)->dispose(media);
 }
 
--- a/pidgin/plugins/Makefile.mingw	Mon Nov 01 08:14:54 2010 +0000
+++ b/pidgin/plugins/Makefile.mingw	Tue Nov 23 07:50:25 2010 +0000
@@ -73,10 +73,19 @@
 	$(MAKE) -C $(WINPREFS_PLUGIN) -f $(MINGW_MAKEFILE) install
 	cp *.dll $(PIDGIN_INSTALL_PLUGINS_DIR)
 
+THEMEEDIT_SRC = themeedit.c themeedit-icon.c
+THEMEEDIT_OBJECTS = $(THEMEEDIT_SRC:%.c=%.o)
+
+themeedit.dll: $(THEMEEDIT_OBJECTS)
+	$(CC) -shared $(THEMEEDIT_OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $@
+
 %.dll: %.c $(PURPLE_CONFIG_H) $(PURPLE_VERSION_H)
 	$(CC) $(CFLAGS) $(DEFINES) $(INCLUDE_PATHS) -o $@.o -c $<
 	$(CC) -shared $@.o $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $@
 
+
+include $(PIDGIN_COMMON_RULES)
+
 plugins: \
 		convcolors.dll \
 		extplacement.dll \
@@ -89,6 +98,7 @@
 		relnot.dll \
 		sendbutton.dll \
 		spellchk.dll \
+		themeedit.dll \
 		timestamp_format.dll \
 		timestamp.dll \
 		xmppconsole.dll
--- a/pidgin/plugins/themeedit-icon.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/pidgin/plugins/themeedit-icon.c	Tue Nov 23 07:50:25 2010 +0000
@@ -106,9 +106,16 @@
 create_icon_theme(GtkWidget *window)
 {
 	int s, i, j;
-	char *dirname = "/tmp";   /* FIXME */
-	PidginStatusIconTheme *theme = g_object_new(PIDGIN_TYPE_STATUS_ICON_THEME, "type", "status-icon",
-				"author", getlogin(),
+	const char *dirname = g_get_tmp_dir();
+	PidginStatusIconTheme *theme;
+	const char *author;
+#ifndef _WIN32
+	author = getlogin();
+#else
+	author = "user";
+#endif
+	theme = g_object_new(PIDGIN_TYPE_STATUS_ICON_THEME, "type", "status-icon",
+				"author", author,
 				"directory", dirname,
 				NULL);
 
--- a/pidgin/plugins/themeedit.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/pidgin/plugins/themeedit.c	Tue Nov 23 07:50:25 2010 +0000
@@ -268,8 +268,14 @@
 
 	theme = pidgin_blist_get_theme();
 	if (!theme) {
+		const char *author;
+#ifndef _WIN32
+		author = getlogin();
+#else
+		author = "user";
+#endif
 		theme = g_object_new(PIDGIN_TYPE_BLIST_THEME, "type", "blist",
-				"author", getlogin(),
+				"author", author,
 				NULL);
 		pidgin_blist_set_theme(theme);
 	}
--- a/pidgin/win32/nsis/pidgin-installer.nsi	Mon Nov 01 08:14:54 2010 +0000
+++ b/pidgin/win32/nsis/pidgin-installer.nsi	Tue Nov 23 07:50:25 2010 +0000
@@ -541,7 +541,9 @@
     Delete "$INSTDIR\ca-certs\Go_Daddy_Class_2_CA.pem"
     Delete "$INSTDIR\ca-certs\GTE_CyberTrust_Global_Root.pem"
     Delete "$INSTDIR\ca-certs\Microsoft_Internet_Authority.pem"
+    Delete "$INSTDIR\ca-certs\Microsoft_Internet_Authority_2010.pem"
     Delete "$INSTDIR\ca-certs\Microsoft_Secure_Server_Authority.pem"
+    Delete "$INSTDIR\ca-certs\Microsoft_Secure_Server_Authority_2010.pem"
     Delete "$INSTDIR\ca-certs\StartCom_Certification_Authority.pem"
     Delete "$INSTDIR\ca-certs\StartCom_Free_SSL_CA.pem"
     Delete "$INSTDIR\ca-certs\Thawte_Premium_Server_CA.pem"
@@ -599,6 +601,7 @@
     Delete "$INSTDIR\plugins\ssl.dll"
     Delete "$INSTDIR\plugins\statenotify.dll"
     Delete "$INSTDIR\plugins\tcl.dll"
+    Delete "$INSTDIR\plugins\themeedit.dll"
     Delete "$INSTDIR\plugins\ticker.dll"
     Delete "$INSTDIR\plugins\timestamp.dll"
     Delete "$INSTDIR\plugins\timestamp_format.dll"
--- a/pidgin/win32/untar.c	Mon Nov 01 08:14:54 2010 +0000
+++ b/pidgin/win32/untar.c	Tue Nov 23 07:50:25 2010 +0000
@@ -578,7 +578,8 @@
  */
 int untar(const char *filename, const char* destdir, untar_opt options) {
 	int ret=1;
-	char curdir[_MAX_PATH];
+	wchar_t curdir[_MAX_PATH];
+	wchar_t *w_destdir;
 	untarops = options;
 	/* open the archive */
 	inname = filename;
@@ -589,13 +590,15 @@
 		return 0;
 	}
 
+	w_destdir = g_utf8_to_utf16(destdir, -1, NULL, NULL, NULL);
+
 	/* Set current directory */
-	if(!GetCurrentDirectory(_MAX_PATH, curdir)) {
+	if(!GetCurrentDirectoryW(_MAX_PATH, curdir)) {
 		untar_error("Could not get current directory (error %lu).\n", GetLastError());
 		fclose(infp);
 		return 0;
 	}
-	if(!SetCurrentDirectory(destdir)) {
+	if(!SetCurrentDirectoryW(w_destdir)) {
 		untar_error("Could not set current directory to (error %lu): %s\n", GetLastError(), destdir);
 		fclose(infp);
 		return 0;
@@ -614,12 +617,14 @@
 			fclose(outfp);
 			outfp = NULL;
 		}
-		if(!SetCurrentDirectory(curdir)) {
+		if(!SetCurrentDirectoryW(curdir)) {
 			untar_error("Could not set current dir back to original (error %lu).\n", GetLastError());
 			ret=0;
 		}
 	}
 
+	g_free(w_destdir);
+
 	/* close the archive file. */
 	fclose(infp);
 
--- a/po/ChangeLog	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/ChangeLog	Tue Nov 23 07:50:25 2010 +0000
@@ -1,6 +1,21 @@
 Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
 
 version 2.7.6
+	* Albanian translation updated (Besnik Bleta)
+	* Bengali translation updated (Jamil Ahmed)
+	* Chinese (Hong Kong) translation updated (Ambrose C. Li, Paladin R.
+	  Liu)
+	* Chinese (Traditional) translation updated (Ambrose C. Li, Paladin R.
+	  Liu)
+	* Czech translation updated (David Vachulka)
+	* Dutch translation updated (Gideon van Melle)
+	* German translation updated (Björn Voigt, Jochen Kemnade)
+	* Hebrew translation updated (Shalom Craimer)
+	* Norwegian Nynorsk translation updated (Yngve Spjeld Landro)
+	* Polish translation updated (Piotr Drąg)
+	* Romanian translation updated (Mişu Moldovan)
+	* Spanish translation updated (Javier Fernández-Sanguino Peña)
+	* Ukrainian translation updated (Oleksandr Kovalenko)
 
 version 2.7.5
 	* German translation updated (Björn Voigt, Jochen Kemnade)
--- a/po/POTFILES.in	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/POTFILES.in	Tue Nov 23 07:50:25 2010 +0000
@@ -116,6 +116,7 @@
 libpurple/protocols/msn/servconn.c
 libpurple/protocols/msn/session.c
 libpurple/protocols/msn/slp.c
+libpurple/protocols/msn/slpcall.c
 libpurple/protocols/msn/state.c
 libpurple/protocols/msn/switchboard.c
 libpurple/protocols/msn/userlist.c
--- a/po/bn.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/bn.po	Tue Nov 23 07:50:25 2010 +0000
@@ -13,8 +13,8 @@
 msgstr ""
 "Project-Id-Version: bn\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:11-0400\n"
-"PO-Revision-Date: 2010-08-17 13:37+0600\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-08 13:37+0600\n"
 "Last-Translator: israt <israt@ankur.org.bd>\n"
 "Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
 "Language: bn\n"
@@ -810,9 +810,8 @@
 msgid "Waiting for transfer to begin"
 msgstr "স্থানান্তর শুরু করার জন্য অপেক্ষা করা হচ্ছে"
 
-#, fuzzy
 msgid "Cancelled"
-msgstr "বাতিল করা হয়েছে"
+msgstr "বাতিলকৃত"
 
 # mark6
 msgid "Failed"
@@ -1750,13 +1749,12 @@
 "সার্টিফিকেটটি এখনও কার্যকর নয়। আপনার কম্পিউটারের সময় এবং তারিখ ঠিক আছে কিনা "
 "পরীক্ষা করুন।"
 
-#, fuzzy
 msgid ""
 "The certificate has expired and should not be considered valid.  Check that "
 "your computer's date and time are accurate."
 msgstr ""
-"সার্টিফিকেটটি এখনও কার্যকর নয়। আপনার কম্পিউটারের সময় এবং তারিখ ঠিক আছে কিনা "
-"পরীক্ষা করুন।"
+"সার্টিফিকেটটি মেয়াদোত্তীর্ণ এবং একে কার্যকর ধরা হবে না।  আপনার কম্পিউটারের সময় "
+"এবং তারিখ ঠিক আছে কিনা পরীক্ষা করুন।"
 
 # Translated by sadia
 #. Translators: "domain" refers to a DNS domain (e.g. talk.google.com)
@@ -4974,20 +4972,17 @@
 msgstr "ডোমেইন"
 
 # tithi
-#, fuzzy
 msgid "Require encryption"
-msgstr "অনুমোদন প্রয়োজন"
-
-#, fuzzy
+msgstr "প্রয়োজনীয় এনক্রিপশন"
+
 msgid "Use encryption if available"
-msgstr "ব্যবহারকারীর তথ্য পাওয়া যাচ্ছে না: %s"
+msgstr "যদি পাওয়া যায় তবে এনক্রিপশন ব্যবহার"
 
 msgid "Use old-style SSL"
-msgstr ""
-
-#, fuzzy
+msgstr "পুরাতন শৈলীর SSL ব্যবহার"
+
 msgid "Connection security"
-msgstr "সংযোগ সময়কাল উত্তীর্ণ"
+msgstr "সংযোগের নিরাপত্তা"
 
 # tithi
 msgid "Allow plaintext auth over unencrypted streams"
@@ -5102,15 +5097,6 @@
 msgid "Unknown Error in presence"
 msgstr "উপস্থিতিতে অজানা ত্রুটি"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "ইন-ব্যান্ড বাইটস্ট্রিম বিনিময়ে ত্রুটি হয়েছে\n"
-
-msgid "Transfer was closed."
-msgstr "স্থানান্তর বন্ধ করে দেয়া হয়েছে।"
-
-msgid "Failed to open in-band bytestream"
-msgstr "ইন-ব্যান্ড বাইটস্ট্রিম খুলতে ব্যর্থ"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr "%s এ ফাইল পাঠাতে ব্যর্থ, ব্যবহাকারী ফাইল স্থানান্তর সমর্থন করে না"
@@ -5499,30 +5485,6 @@
 msgid "The username specified does not exist."
 msgstr "উল্লেখিত ব্যবহারকারীর নামটি বিদ্যমান নয়।"
 
-# fix me tithi
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "%1$s (%2$s) এ বন্ধু তালিকার অভিন্নকরণ ইস্যু"
-
-# tithi
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%1$s স্থানীয় তালিকায় এবং \"%2$s\" দলে অন্তর্ভুক্ত কিন্তু সার্ভার তালিকায় নেই। আপনি "
-"কি এই বন্ধুটি যোগ করতে চান?"
-
-# msgstr ""
-# "স্থানীয় তালিকার %s গ্রুপ এ আছেন কিন্তু সার্ভার তালিকায় নেই।আপনি কি এই বন্ধুটিকে যোগ "
-# "করতে চান?"
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s স্থানীয় তালিকায় আছে কিন্তু সার্ভার তালিকায় নেই। আপনি কি এই বন্ধুকে যোগ করতে চান?"
-
 msgid "Unable to parse message"
 msgstr "বার্তা পার্স করা সম্ভব হয়নি"
 
@@ -5719,6 +5681,30 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN ত্রুটি: %s\n"
 
+# fix me tithi
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "%1$s (%2$s) এ বন্ধু তালিকার অভিন্নকরণ ইস্যু"
+
+# tithi
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%1$s স্থানীয় তালিকায় এবং \"%2$s\" দলে অন্তর্ভুক্ত কিন্তু সার্ভার তালিকায় নেই। আপনি "
+"কি এই বন্ধুটি যোগ করতে চান?"
+
+# msgstr ""
+# "স্থানীয় তালিকার %s গ্রুপ এ আছেন কিন্তু সার্ভার তালিকায় নেই।আপনি কি এই বন্ধুটিকে যোগ "
+# "করতে চান?"
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s স্থানীয় তালিকায় আছে কিন্তু সার্ভার তালিকায় নেই। আপনি কি এই বন্ধুকে যোগ করতে চান?"
+
 msgid "Other Contacts"
 msgstr "অন্যান্য পরিচিতি"
 
@@ -5775,14 +5761,26 @@
 msgid "Set friendly name for %s."
 msgstr "%s এর জন্য বন্ধুসুলভ নাম নির্ধারণ করুন।"
 
-# tithi
-msgid "Set your friendly name."
-msgstr "আপনার বন্ধুসুলভ নাম নির্ধারণ।"
+msgid "Set Friendly Name"
+msgstr "বন্ধুসুলভ নাম নির্ধারণ"
 
 # tithi
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "অন্যান্য MSN বন্ধুরা আপনাকে এই নামে দেখবে"
 
+msgid "This Location"
+msgstr "এই অবস্থান"
+
+# tithi
+msgid "This is the name that identifies this location"
+msgstr "অবস্থানটি নির্দেশ করে এমন নাম"
+
+msgid "Other Locations"
+msgstr "অন্যান্য অবস্থান"
+
+msgid "You can sign out from other locations here"
+msgstr "আপনি এখানে অন্যান্য অবস্থান থেকে সাইন আউট করতে পারেন"
+
 # tithi
 msgid "Set your home phone number."
 msgstr "আপনার বাসার ফোন নাম্বার দিন।"
@@ -5878,6 +5876,9 @@
 msgid "Set Friendly Name..."
 msgstr "বন্ধুসুলভ নাম নির্ধারণ..."
 
+msgid "View Locations..."
+msgstr "অবস্থান প্রদর্শন..."
+
 msgid "Set Home Phone Number..."
 msgstr "বাসার ফোন নম্বর নির্ধারণ..."
 
@@ -7483,6 +7484,12 @@
 "আপনি খুব ঘনঘন সংযোগ স্থাপন এবং বিচ্ছিন্ন করছেন। দশ মিনিট অপেক্ষা করে পুনরায় চেষ্টা "
 "করুন। আপনি যদি চেষ্টা অব্যাহত রাখতে চান, আপনাকে আরও বেশী অপেক্ষা করতে হবে।"
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"আপনার অ্যাকাউন্ট সেটিং এ এনক্রিপশন প্রয়োজন, কিন্তু একটি সার্ভার এটি সমর্থন করে না।"
+
 # Translated by sadia
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
@@ -7856,6 +7863,12 @@
 "হলে, শুধুমাত্র বর্ণ, সংখ্যা এবং স্পেস দ্বারা গঠিত হবে, বা শুধুমাত্র সংখ্যা দ্বারা গঠিত "
 "হবে।"
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"আপনার অ্যাকাউন্ট সেটিং এ এনক্রিপশন প্রয়োজন, কিন্তু আপনার সিস্টেম এটি সমর্থন করে না।"
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr "আপনি সাময়িকভাবে বিচ্ছিন্ন হতে পারেন। হালানাগাদের জন্য %s পরীক্ষা করুন."
@@ -8430,13 +8443,11 @@
 msgid "Set Privacy Options..."
 msgstr "গোপনীয়তার অপশন নির্ধারণ ..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "বন্ধু তালিকা প্রদর্শন (_L)"
-
-#, fuzzy
+msgstr "দৃশ্যমানদের তালিকা প্রদর্শন"
+
 msgid "Show Invisible List"
-msgstr "আমন্ত্রন তালিকা"
+msgstr "অদৃশ্যদের তালিকা প্রদর্শন"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -8458,6 +8469,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "ইমেইল ঠিকানার মাধ্যমে বন্ধু অনুসন্ধান..."
 
+msgid "Don't use encryption"
+msgstr "এনক্রিপশন ব্যবহার করা হবে না"
+
 msgid "Use clientLogin"
 msgstr "clientLogin ব্যবহার"
 
@@ -8677,7 +8691,7 @@
 msgid "Buddy Comment"
 msgstr "বন্ধুর মন্তব্য"
 
-#, fuzzy, c-format
+#, c-format
 msgid "User information not available: %s"
 msgstr "ব্যবহারকারীর তথ্য পাওয়া যাচ্ছে না: %s"
 
@@ -8690,7 +8704,7 @@
 msgstr "ব্যক্তিগত ওয়েব পেইজ"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "অতিরিক্ত তথ্য"
 
@@ -8724,50 +8738,55 @@
 msgstr "ক্ষমতা"
 
 # tithi
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "অনলাইনে দেখান"
 
 # tithi
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "অনলাইনে দেখান"
-
+msgstr "অনলাইনে দেখনো হবে না"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "অফলাইনে দেখান"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "অফলাইনে দেখান"
+msgstr "অফলাইনে দেখানো হবে না"
 
 # Kick =  তিরস্কার
 # OR  পদাঘাত
-#, fuzzy
 msgid "you have no buddies on this list"
-msgstr "MultiMX হতে আপনাকে তিরস্কার করা হয়েছে।"
-
-# tithi
-#, fuzzy, c-format
+msgstr "এই তালিকায় আপনার কোনো বন্ধু নেই"
+
+# tithi
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
-msgstr ""
-"আপনি বন্ধু তলিকায় ডান ক্লিক করে এবং‌ \"অনুমোদনের জন্য পুনরায় অনুরোধ\" নির্বাচন করে "
-"তাদের থেকে আবার অনুমোদন চাইতে পারেন।"
-
-#, fuzzy
+msgstr "আপনি \"%s\" নির্বাচন করে বা ডান ক্লিক করে বন্ধু যোগ করতে পারেন"
+
 msgid "Visible List"
-msgstr "দৃশ্যমান"
+msgstr "দৃশ্যমান তালিকা"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "আপনি \"অদৃশ্য\" হলে এই বন্ধুরা আপনার স্ট্যাটাস দেখতে পাবেন"
+
 msgid "Invisible List"
-msgstr "আমন্ত্রন তালিকা"
+msgstr "অদৃশ্যদের তালিকা"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "এই বন্ধুরা আপনাকে সবসময় অফলাইন হিসেবে দেখতে পাবেন"
 
 # tithi
 msgid "Aquarius"
@@ -8967,9 +8986,9 @@
 msgstr "আপনার অনুরোধটি অনুমোদন করা যায়নি।"
 
 # tithi
-#, fuzzy, c-format
+#, c-format
 msgid "%u requires verification: %s"
-msgstr "%u এর সত্যতা যাচাই করা প্রয়োজন"
+msgstr "%u এর সত্যতা যাচাই করা প্রয়োজন: %s"
 
 msgid "Add buddy question"
 msgstr "বন্ধুর প্রশ্ন যোগ"
@@ -12210,7 +12229,7 @@
 msgstr ""
 "<span size='larger' weight='bold'>%s এ স্বাগতম!</span>\n"
 "\n"
-"আপনার তাৎক্ষনিক বার্তা অ্যাকাউন্ট কনফিগার করা নেই। %s এর সাথে সংযোগ পেতে  <b>"
+"আপনার তাৎক্ষণিক বার্তা অ্যাকাউন্ট কনফিগার করা নেই। %s এর সাথে সংযোগ পেতে  <b>"
 "\"যোগ...\"</b> বোতাম চাপুন এবং আপনার প্রথম অ্যাকাউন্টটি কনফিগার করুন। যদি আপনি %s "
 "এর মাধ্যমে একাধিক IM অ্যাকাউন্টে সংযুক্ত হতে চান তবে সেগুলোকে কনফিগার করতে পুনরায় "
 "<b>\"যোগ...\"</b> বোতাম চাপুন।\n"
@@ -12491,7 +12510,7 @@
 msgstr "/বন্ধুগণ (_B)"
 
 msgid "/Buddies/New Instant _Message..."
-msgstr "/বন্ধুগণ/নতুন তাৎক্ষনিক বার্তা... (_M)"
+msgstr "/বন্ধুগণ/নতুন তাৎক্ষণিক বার্তা... (_M)"
 
 msgid "/Buddies/Join a _Chat..."
 msgstr "/বন্ধুগণ/আড্ডায় যোগদান... (_C)"
@@ -12567,7 +12586,7 @@
 
 # snigdha
 msgid "/Tools/Set _Mood"
-msgstr "/টুল/মুড সেট (_M)"
+msgstr "/টুল/মুড নির্ধারণ (_M)"
 
 msgid "/Tools/_File Transfers"
 msgstr "/টুল/ফাইল স্থানান্তর (_F)"
@@ -12590,7 +12609,7 @@
 
 # snigdha
 msgid "/Help/_Build Information"
-msgstr "/সহায়ক /তথ্য গড়ুন (_B)"
+msgstr "/সহায়ক /বিল্ড সংক্রান্ত তথ্য (_B)"
 
 msgid "/Help/_Debug Window"
 msgstr "/সহায়তা/ডিবাগ উইন্ডো (_D)"
@@ -12820,7 +12839,7 @@
 msgstr "অনুগ্রহ করে যে দলটি যুক্ত করতে হবে তার নাম দিন।"
 
 msgid "Enable Account"
-msgstr "অ্যাকাউন্ট সক্রিয় করা হবে"
+msgstr "অ্যাকাউন্ট সক্রিয়"
 
 msgid "<PurpleMain>/Accounts/Enable Account"
 msgstr "<PurpleMain>/অ্যাকাউন্ট/অ্যাকাউন্ট সক্রিয়করণ"
@@ -13420,6 +13439,9 @@
 msgid "Lao"
 msgstr "লাও"
 
+msgid "Maithili"
+msgstr "মৈথিলি"
+
 msgid "Macedonian"
 msgstr "ম্যাসেডনিয়"
 
@@ -14733,9 +14755,8 @@
 msgid "_TURN server:"
 msgstr "TURN সার্ভার: (_T)"
 
-#, fuzzy
 msgid "_UDP Port:"
-msgstr "পোর্ট (_P):"
+msgstr "UDP পোর্ট (_U):"
 
 # Translated by sadia
 msgid "Use_rname:"
@@ -14762,7 +14783,7 @@
 msgstr "কনকোয়েরার"
 
 msgid "Google Chrome"
-msgstr ""
+msgstr "গুগল ক্রোম"
 
 #. Do not move the line below.  Code below expects gnome-open to be in
 #. * this list immediately after xdg-open!
@@ -14786,11 +14807,11 @@
 
 #. Translators: please do not translate "chromium-browser" here!
 msgid "Chromium (chromium-browser)"
-msgstr ""
+msgstr "ক্রোমিয়াম (chromium-browser)"
 
 #. Translators: please do not translate "chrome" here!
 msgid "Chromium (chrome)"
-msgstr ""
+msgstr "ক্রোমিয়াম (chrome)"
 
 msgid "Manual"
 msgstr "সহায়িকা"
@@ -15365,7 +15386,6 @@
 msgid "Small"
 msgstr "ছোট"
 
-#, fuzzy
 msgid "Smaller versions of the default smileys"
 msgstr "ডিফল্ট স্মাইলিগুলোর ছোট সংস্করণ"
 
@@ -16453,9 +16473,8 @@
 msgstr "ভয়েস/ভিডিও সেটিংসমূহ  "
 
 # Translated by sadia
-#, fuzzy
 msgid "Voice and Video Settings"
-msgstr "ভয়েস/ভিডিও সেটিংসমূহ  "
+msgstr "ভয়েস এবং ভিডিও সেটিং"
 
 # Translated by sadia
 #. *< name
@@ -16756,6 +16775,15 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "আপনার এই অ্যাপ্লিকেশনটি আনইন্সটল করার অনুমতি নেই।"
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "ইন-ব্যান্ড বাইটস্ট্রিম বিনিময়ে ত্রুটি হয়েছে\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "স্থানান্তর বন্ধ করে দেয়া হয়েছে।"
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "ইন-ব্যান্ড বাইটস্ট্রিম খুলতে ব্যর্থ"
+
 # Translated by sadia
 #~ msgid "The certificate has expired and should not be considered valid."
 #~ msgstr "সার্টিফিকেটটি মেয়াদউত্তীর্ণ এবং বৈধ হিসেবে বিবেচনা করা উচিত নয়। "
@@ -16769,6 +16797,10 @@
 #~ msgstr "পুরাতন (পোর্ট 5223) SSL প্রয়োগ বাধ্য করা হবে"
 
 # tithi
+#~ msgid "Set your friendly name."
+#~ msgstr "আপনার বন্ধুসুলভ নাম নির্ধারণ।"
+
+# tithi
 #
 #
 # Translated by sadia
--- a/po/ca.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/ca.po	Tue Nov 23 07:50:25 2010 +0000
@@ -33,8 +33,8 @@
 msgstr ""
 "Project-Id-Version: Pidgin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:11-0400\n"
-"PO-Revision-Date: 2010-08-01 08:46+0200\n"
+"POT-Creation-Date: 2010-11-20 09:55+0100\n"
+"PO-Revision-Date: 2010-11-20 10:19+0100\n"
 "Last-Translator: Josep Puigdemont i Casamajó <josep.puigdemont@gmail.com>\n"
 "Language-Team: Catalan <tradgnome@softcatala.net>\n"
 "Language: ca\n"
@@ -1727,13 +1727,12 @@
 "El certificat encara no és vàlid. Comproveu que la data i l'hora de "
 "l'ordinador siguin correctes."
 
-#, fuzzy
 msgid ""
 "The certificate has expired and should not be considered valid.  Check that "
 "your computer's date and time are accurate."
 msgstr ""
-"El certificat encara no és vàlid. Comproveu que la data i l'hora de "
-"l'ordinador siguin correctes."
+"El certificat ha vençut i s'ha de considerar invàlid. Comproveu que la data "
+"i l'hora de l'ordinador siguin correctes."
 
 #. Translators: "domain" refers to a DNS domain (e.g. talk.google.com)
 msgid "The certificate presented is not issued to this domain."
@@ -4778,20 +4777,17 @@
 msgid "Domain"
 msgstr "Domini"
 
-#, fuzzy
 msgid "Require encryption"
-msgstr "Requereix autorització"
-
-#, fuzzy
+msgstr "Requereix xifratge"
+
 msgid "Use encryption if available"
-msgstr "Empra TLS si està disponible"
+msgstr "Empra xifratge si està disponible"
 
 msgid "Use old-style SSL"
-msgstr ""
-
-#, fuzzy
+msgstr "Empra SSL antic"
+
 msgid "Connection security"
-msgstr "S'ha reiniciat la connexió"
+msgstr "Seguretat de la connexió"
 
 msgid "Allow plaintext auth over unencrypted streams"
 msgstr "Permet autorització de text sobre fluxos sense xifrar"
@@ -4898,15 +4894,6 @@
 msgid "Unknown Error in presence"
 msgstr "Error desconegut en la presència"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "S'ha produït un error en el flux de transferència de dades en banda\n"
-
-msgid "Transfer was closed."
-msgstr "La transferència s'ha tancat."
-
-msgid "Failed to open in-band bytestream"
-msgstr "No s'ha pogut obrir el fluxe de transferència de dades en banda"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5226,25 +5213,6 @@
 msgid "The username specified does not exist."
 msgstr "El nom d'usuari especificat no existeix."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Problema de sincronització de la llista d'amics a %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s de la llista local està dins el grup «%s», però no a la llista del "
-"servidor. Voleu afegir aquest amic?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s és a la llista local però no a la del servidor. Voleu afegir aquest amic?"
-
 msgid "Unable to parse message"
 msgstr "No s'ha pogut analitzar el missatge"
 
@@ -5415,6 +5383,25 @@
 msgid "MSN Error: %s\n"
 msgstr "Error d'MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Problema de sincronització de la llista d'amics a %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s de la llista local està dins el grup «%s», però no a la llista del "
+"servidor. Voleu afegir aquest amic?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s és a la llista local però no a la del servidor. Voleu afegir aquest amic?"
+
 msgid "Other Contacts"
 msgstr "Altres contactes"
 
@@ -5468,12 +5455,24 @@
 msgid "Set friendly name for %s."
 msgstr "Establiu el nom amistós de %s."
 
-msgid "Set your friendly name."
-msgstr "Establiu el vostre nom amistós."
+msgid "Set Friendly Name"
+msgstr "Estableix el nom amistós"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Aquest és el nom amb el que els amics de l'MSN us veuran."
 
+msgid "This Location"
+msgstr "Aquesta ubicació"
+
+msgid "This is the name that identifies this location"
+msgstr "Aquest és el nom que identifica aquesta ubicació"
+
+msgid "Other Locations"
+msgstr "Altres ubicacions"
+
+msgid "You can sign out from other locations here"
+msgstr "Podeu desconnectar-vos d'altres ubicacions aquí"
+
 msgid "Set your home phone number."
 msgstr "Estableix el número de telèfon de casa."
 
@@ -5560,6 +5559,9 @@
 msgid "Set Friendly Name..."
 msgstr "Estableix el nom amistós..."
 
+msgid "View Locations..."
+msgstr "Mostra les ubicacions..."
+
 msgid "Set Home Phone Number..."
 msgstr "Estableix el número de telèfon de casa..."
 
@@ -5949,8 +5951,8 @@
 
 msgid "Message may have not been sent because a timeout occurred:"
 msgstr ""
-"És possible que no s'hagi pogut enviar el missatge perquè el temps ha "
-"expirat:"
+"És possible que no s'hagi pogut enviar el missatge perquè el temps d'espera "
+"ha vençut:"
 
 msgid "Message could not be sent, not allowed while invisible:"
 msgstr ""
@@ -6992,6 +6994,13 @@
 "deu minuts i intenteu-ho de nou. Si continueu intentant-ho, haureu d'esperar "
 "encara més temps."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"A la configuració del compte heu requerit que es xifri, però un dels "
+"servidors no ho implementa."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7306,6 +7315,13 @@
 "noms d'usuari han de ser adreces de correu vàlides, o començar amb una "
 "lletra i contenir només lletres, nombres o espais, o només nombres."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"A la configuració del compte heu requerit que es xifri, però el vostre "
+"sistema no ho implementa."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7772,9 +7788,8 @@
 msgid "Change Address To:"
 msgstr "Canvia l'adreça per:"
 
-#, fuzzy
 msgid "you are not waiting for authorization"
-msgstr "<i>no esteu esperant cap autorització</i>"
+msgstr "no esteu esperant cap autorització"
 
 msgid "You are awaiting authorization from the following buddies"
 msgstr "Esteu esperant l'autorització dels següents amics"
@@ -7812,13 +7827,11 @@
 msgid "Set Privacy Options..."
 msgstr "Estableix les opcions de privadesa..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Mostra la _llista d'amics"
-
-#, fuzzy
+msgstr "Mostra la llista visible"
+
 msgid "Show Invisible List"
-msgstr "Llista de convidats"
+msgstr "Mostra la llista invisible"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7836,6 +7849,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Cerca un amic per l'adreça de correu..."
 
+msgid "Don't use encryption"
+msgstr "No empris xifratge"
+
 msgid "Use clientLogin"
 msgstr "Empra clientLogin"
 
@@ -8036,7 +8052,7 @@
 msgstr "Pàgina web personal"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Informació addicional"
 
@@ -8068,42 +8084,38 @@
 msgid "Appear Online"
 msgstr "Simula estar en línia"
 
-#, fuzzy
 msgid "Don't Appear Online"
-msgstr "Simula estar en línia"
+msgstr "Mostra estar en línia"
 
 msgid "Appear Offline"
-msgstr "Simula estar fora de línia"
-
-#, fuzzy
+msgstr "Mostra estar fora de línia"
+
 msgid "Don't Appear Offline"
-msgstr "Simula estar fora de línia"
-
-#, fuzzy
+msgstr "No mostris estar fora de línia"
+
 msgid "you have no buddies on this list"
-msgstr "Us han fet fora d'aquest MultiMX."
-
-#, fuzzy, c-format
+msgstr "no teniu cap amic en aquesta llista"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"Podeu tornar a demanar l'autorització d'aquests amics fent-hi clic a sobre "
-"amb el botó dret del ratolí, i seleccionant «Torna a demanar l'autorització»."
-
-#, fuzzy
+"Podeu afegir un amic a aquesta llista fent clic al botó secundari i "
+"seleccionant «%s»"
+
 msgid "Visible List"
-msgstr "Visible"
+msgstr "Llista visible"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
 msgstr ""
-
-#, fuzzy
+"Aquests amics podran veure el vostre estat quan canvieu al mode «invisible»"
+
 msgid "Invisible List"
-msgstr "Llista de convidats"
+msgstr "Llista invisible"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Aquests amics us veuran sempre fora de línia"
 
 msgid "Aquarius"
 msgstr "Aquari"
@@ -8284,9 +8296,9 @@
 msgid "Your request was rejected."
 msgstr "S'ha rebutjat la vostra sol·licitud."
 
-#, fuzzy, c-format
+#, c-format
 msgid "%u requires verification: %s"
-msgstr "Cal verificació per a %u"
+msgstr "%u requereix verificació: %s"
 
 # Nota: títol de finestra
 msgid "Add buddy question"
@@ -11244,9 +11256,9 @@
 "partir del menú <b>Comptes->Gestiona els comptes</b> a finestra de la llista "
 "d'amics."
 
-#, fuzzy, c-format
+#, c-format
 msgid "%s%s%s%s wants to add you (%s) to his or her buddy list%s%s"
-msgstr "L'usuari %s%s%s%s vol afegir %s a la seva llista d'amics%s%s"
+msgstr "L'usuari %s%s%s%s us vol afegir (%s) a la seva llista d'amics%s%s"
 
 #. Buddy List
 msgid "Background Color"
@@ -12418,6 +12430,9 @@
 msgid "Lao"
 msgstr "Lasià"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Macedoni"
 
@@ -13657,9 +13672,8 @@
 msgid "_TURN server:"
 msgstr "Servidor _TURN:"
 
-#, fuzzy
 msgid "_UDP Port:"
-msgstr "Port UDP"
+msgstr "Port _UDP:"
 
 msgid "Use_rname:"
 msgstr "Nom d'_usuari:"
@@ -13683,7 +13697,7 @@
 msgstr "Konqueror"
 
 msgid "Google Chrome"
-msgstr ""
+msgstr "Google Chrome"
 
 #. Do not move the line below.  Code below expects gnome-open to be in
 #. * this list immediately after xdg-open!
@@ -13707,11 +13721,11 @@
 
 #. Translators: please do not translate "chromium-browser" here!
 msgid "Chromium (chromium-browser)"
-msgstr ""
+msgstr "Chromium (chromium-browser)"
 
 #. Translators: please do not translate "chrome" here!
 msgid "Chromium (chrome)"
-msgstr ""
+msgstr "Chromium (chrome)"
 
 msgid "Manual"
 msgstr "Manual"
@@ -14252,7 +14266,6 @@
 msgid "Small"
 msgstr "Petites"
 
-#, fuzzy
 msgid "Smaller versions of the default smileys"
 msgstr "Versions més petites de les emoticones per defecte"
 
@@ -15294,9 +15307,8 @@
 msgid "Voice/Video Settings"
 msgstr "Configuració del so/vídeo"
 
-#, fuzzy
 msgid "Voice and Video Settings"
-msgstr "Configuració del so/vídeo"
+msgstr "Configuració de la veu i el vídeo"
 
 #. *< name
 #. *< version
@@ -15575,8 +15587,21 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "No tens permís per desinstal.lar aquesta aplicació."
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr ""
+#~ "S'ha produït un error en el flux de transferència de dades en banda\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "La transferència s'ha tancat."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "No s'ha pogut obrir el fluxe de transferència de dades en banda"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Establiu el vostre nom amistós."
+
 #~ msgid "The certificate has expired and should not be considered valid."
-#~ msgstr "El certificat ha expirat i no s'hauria de considerar vàlid."
+#~ msgstr "El certificat ha vençut i no s'hauria de considerar vàlid."
 
 #~ msgid "Require SSL/TLS"
 #~ msgstr "Requereix SSL/TLS"
@@ -16139,9 +16164,6 @@
 #~ msgid "XHTML-IM"
 #~ msgstr "XHTML-IM"
 
-#~ msgid "User Location"
-#~ msgstr "Ubicació de l'usuari"
-
 #~ msgid "User Avatar"
 #~ msgstr "Avatar de l'usuari"
 
--- a/po/cs.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/cs.po	Tue Nov 23 07:50:25 2010 +0000
@@ -9,8 +9,8 @@
 msgstr ""
 "Project-Id-Version: pidgin VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:11-0400\n"
-"PO-Revision-Date: 2010-10-15 17:26+0100\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-21 11:47+0100\n"
 "Last-Translator: David Vachulka <david@konstrukce-cad.com>\n"
 "Language-Team: Czech <cs@li.org>\n"
 "Language: cs\n"
@@ -251,7 +251,7 @@
 msgstr "Chyba při přidávání skupiny"
 
 msgid "You must give a name for the group to add."
-msgstr "Musíte zadat název skupiny, kterou přidat."
+msgstr "Musíte zadat název skupiny, kterou chcete přidat."
 
 msgid "Add Group"
 msgstr "Přidat skupinu"
@@ -639,7 +639,7 @@
 msgstr "Povolit zvuky"
 
 msgid "You are not connected."
-msgstr "Nejsi připojen."
+msgstr "Nejste připojen."
 
 msgid "<AUTO-REPLY> "
 msgstr "<AUTO-ODPOVĚĎ> "
@@ -904,7 +904,7 @@
 msgstr "%s se pokouší spustit multimediální sezení s nepodporovaným typem."
 
 msgid "You have rejected the call."
-msgstr "Odmítnul jste volání."
+msgstr "Odmítli jste volání."
 
 msgid "call: Make an audio call."
 msgstr "call: Vytvořit audio hovor."
@@ -1254,7 +1254,7 @@
 msgstr "Osoba opustí chat"
 
 msgid "You talk in chat"
-msgstr "Vy mluvíte v chatu"
+msgstr "Mluvíte v chatu"
 
 msgid "Others talk in chat"
 msgstr "Jiní mluví v chatu"
@@ -1694,7 +1694,7 @@
 msgid ""
 "You have no database of root certificates, so this certificate cannot be "
 "validated."
-msgstr "Nemáte databázi certifikátů, takže certifikáty nemohou ověřeny."
+msgstr "Nemáte databázi certifikátů, takže certifikáty nemohou být ověřeny."
 
 msgid "The certificate chain presented is invalid."
 msgstr "Certifikační řetěz je neplatný."
@@ -4805,15 +4805,6 @@
 msgid "Unknown Error in presence"
 msgstr "Neznámá chyba v přítomnosti"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Chyba při in-band bytestream přenosu\n"
-
-msgid "Transfer was closed."
-msgstr "Přenos byl ukončen."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Selhalo otevření in-band bytestreamu"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr "Nemohu odeslat soubor %s, uživatel nepodporuje přenosy souborů"
@@ -5127,26 +5118,6 @@
 msgid "The username specified does not exist."
 msgstr "Zadané jméno uživatele neexistuje."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Problém se synchronizací seznamu kamarádů v %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s na místním seznamu je ve skupině \"%s\", ale ne v seznamu na serveru. "
-"Chcete přidat tohoto kamaráda?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s je na místním seznamu, ale ne v seznamu na serveru. Chcete přidat tohoto "
-"kamaráda?"
-
 msgid "Unable to parse message"
 msgstr "Nemohu zpracovat zprávu"
 
@@ -5317,6 +5288,26 @@
 msgid "MSN Error: %s\n"
 msgstr "Chyba MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Problém se synchronizací seznamu kamarádů v %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s na místním seznamu je ve skupině \"%s\", ale ne v seznamu na serveru. "
+"Chcete přidat tohoto kamaráda?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s je na místním seznamu, ale ne v seznamu na serveru. Chcete přidat tohoto "
+"kamaráda?"
+
 msgid "Other Contacts"
 msgstr "Jiné kontakty"
 
@@ -5341,7 +5332,7 @@
 
 #, c-format
 msgid "%s sent you a voice chat invite, which is not yet supported."
-msgstr "%s vám poslal pozvánku k hlasovému chatu, který není podporováno."
+msgstr "%s vám poslal pozvánku k hlasovému chatu, který není podporován."
 
 msgid "Nudge"
 msgstr "Šťouchnutí"
@@ -5364,12 +5355,24 @@
 msgid "Set friendly name for %s."
 msgstr "Nastavit přátelské jméno pro %s."
 
-msgid "Set your friendly name."
-msgstr "Nastavit vaše přátelské jméno"
+msgid "Set Friendly Name"
+msgstr "Nastavit přátelské jméno"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Toto je jméno, pod kterým vás budou vidět ostatní kamarádi MSN."
 
+msgid "This Location"
+msgstr "Toto umístění"
+
+msgid "This is the name that identifies this location"
+msgstr "Toto je jméno, které identifikuje toto umístění"
+
+msgid "Other Locations"
+msgstr "Další umístění"
+
+msgid "You can sign out from other locations here"
+msgstr "Můžete se přihlásit z jiného umístění"
+
 msgid "Set your home phone number."
 msgstr "Nastavte své domácí telefonní číslo."
 
@@ -5455,6 +5458,9 @@
 msgid "Set Friendly Name..."
 msgstr "Nastavit přátelské jméno..."
 
+msgid "View Locations..."
+msgstr "Zobrazit umístění..."
+
 msgid "Set Home Phone Number..."
 msgstr "Nastavit domácí telefonní číslo..."
 
@@ -5890,7 +5896,7 @@
 msgstr "PINy nesouhlasí."
 
 msgid "The Display Name you entered is invalid."
-msgstr "Zadaný jméno pro zobrazení není platné"
+msgstr "Zadané jméno pro zobrazení není platné"
 
 msgid ""
 "The birthday you entered is invalid. The correct format is: 'YYYY-MM-DD'."
@@ -5909,7 +5915,7 @@
 msgstr "Informace z profilu nebyly získány, zkuste to prosím později."
 
 msgid "Your UID"
-msgstr "Tvoje UID"
+msgstr "Vaše UID"
 
 #. pin
 #. pin (required)
@@ -6059,7 +6065,7 @@
 msgstr "Skryté číslo"
 
 msgid "Your MXit ID..."
-msgstr "Tvoje MXit ID..."
+msgstr "Vaše MXit ID..."
 
 #. Configuration options
 #. WAP server (reference: "libpurple/accountopt.h")
@@ -6840,6 +6846,13 @@
 "Připojovali a odpojovali jste se příliš často. Počkejte deset minut a zkuste "
 "to znovu. Pokud to budete dále zkouše, budete muset čekat ještě déle."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Vyžadujete šifrování v nastavení účtů, ale jeden ze serverů šifrování "
+"nepodporuje."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7149,6 +7162,12 @@
 "uživatele musí být platná emailová adresa nebo začínat písmenem a obsahovat "
 "jen číslice, písmena a mezery, nebo obsahovat jen číslice."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Vyžadujete šifrování v nastavení účtů, ale váš systém šifrování nepodporuje."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7276,7 +7295,7 @@
 msgstr "Uživatel ICQ %u vám poslal kamaráda: %s (%s)"
 
 msgid "Do you want to add this buddy to your buddy list?"
-msgstr "Chcete přidat tohoto kamaráda do svého seznamu kamarádů?"
+msgstr "Chcete přidat tohoto kamaráda do vašeho seznamu kamarádů?"
 
 msgid "_Add"
 msgstr "_Přidat"
@@ -7671,13 +7690,11 @@
 msgid "Set Privacy Options..."
 msgstr "Nastavit možnosti soukromí..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Zobrazit seznam _kamarádů"
-
-#, fuzzy
+msgstr "Zobrazit seznam viditelných kamarádů"
+
 msgid "Show Invisible List"
-msgstr "Seznam pozvaných"
+msgstr "Zobrazit seznam neviditelných kamarádů"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7695,6 +7712,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Hledat kamaráda podle emailové adresy..."
 
+msgid "Don't use encryption"
+msgstr "Nepoužívat šifrování"
+
 msgid "Use clientLogin"
 msgstr "Použít clientLogin"
 
@@ -7893,7 +7913,7 @@
 msgstr "Osobní WWW stránka"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Přídavné informace"
 
@@ -7921,46 +7941,51 @@
 msgid "Capabilities"
 msgstr "Schopnosti"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Vypadat připojen"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "Vypadat připojen"
-
+msgstr "Nevypadat připojen"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "Vypadat odpojen"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "Vypadat odpojen"
-
-#, fuzzy
+msgstr "Nevypadat odpojen"
+
 msgid "you have no buddies on this list"
-msgstr "Byl jste vykopnut z MultiMX."
-
-#, fuzzy, c-format
+msgstr "nemáte kamarády v tomto seznamu"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
-msgstr ""
-"Můžete znovu požádat o autorizaci od těchto kamarádů kliknutím na ně pravým "
-"tlačítkem a zvolením \"Znovu požádat o autorizaci.\""
-
-#, fuzzy
+msgstr "Můžete přidat kamaráda pravým kliknutím a vybráním \"%s\""
+
 msgid "Visible List"
-msgstr "Viditelný"
+msgstr "Seznam viditelných"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "Tyto kamarádi uvidí váš stav při přepnutí na \"Neviditelný\""
+
 msgid "Invisible List"
-msgstr "Seznam pozvaných"
+msgstr "Seznam neviditelných"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Tyto kamarádi vás vždy uvidí jako odpojeného"
 
 msgid "Aquarius"
 msgstr "Vodnář"
@@ -8123,7 +8148,7 @@
 msgstr "Poznámka kamaráda"
 
 msgid "Change his/her memo as you like"
-msgstr "Změňte jeho/její poznámku podle sebe"
+msgstr "Změňte jeho/její poznámku podle vás"
 
 msgid "_Modify"
 msgstr "_Změnit"
@@ -8227,7 +8252,7 @@
 msgstr "Zadejte prosím Qun číslo"
 
 msgid "You can only search for permanent Qun\n"
-msgstr "You can only search for permanent Qun\n"
+msgstr "Můžete vyhledávat jen permanentní Qun\n"
 
 msgid "(Invalid UTF-8 string)"
 msgstr "(Neplatný UTF-8 řetězec)"
@@ -9415,7 +9440,7 @@
 
 #, c-format
 msgid "You have been killed by %s (%s)"
-msgstr "Byli jste zabiti v %s: (%s)"
+msgstr "Byli jste zabiti %s (%s)"
 
 #, c-format
 msgid "Killed by %s (%s)"
@@ -10179,7 +10204,7 @@
 
 #, c-format
 msgid "%s has sent you a webcam invite, which is not yet supported."
-msgstr "%s vám poslal pozvánku k WWW kameře, což ještě není podporováno."
+msgstr "%s vám poslal pozvánku k webové kameře, což ještě není podporováno."
 
 msgid "Your SMS was not delivered"
 msgstr "Vaše SMS nebyla doručena"
@@ -10268,7 +10293,7 @@
 "Your account has been locked due to too many failed login attempts.  Please "
 "try logging into the Yahoo! website."
 msgstr ""
-"Účet uzamčen pro příliš mnoho pokusů o přihlášení. Přihlášte se na stránku "
+"Účet uzamčen pro příliš mnoho pokusů o přihlášení. Přihlaste se na stránku "
 "Yahoo!."
 
 #, c-format
@@ -10393,7 +10418,7 @@
 
 #, c-format
 msgid "%s is trying to send you a group of %d files.\n"
-msgstr "%s zkouší vám poslat %d souborů.\n"
+msgstr "%s vám zkouší poslat %d souborů.\n"
 
 msgid "Write Error"
 msgstr "Chyba při zápisu"
@@ -10462,7 +10487,7 @@
 msgstr ""
 "Nemohu získat profil uživatele. To pravděpodobně znamená, že uživatel "
 "neexistuje; někdy ale Yahoo! opravdu nemůže najít profil uživatele. Pokud "
-"více, že uživatel existuje, zkuste to prosím znovu později."
+"víte, že uživatel existuje, zkuste to prosím znovu později."
 
 msgid "The user's profile is empty."
 msgstr "Profil uživatele je prázdný."
@@ -11057,7 +11082,7 @@
 
 #, c-format
 msgid "%s%s%s%s wants to add you (%s) to his or her buddy list%s%s"
-msgstr "%s%s%s%s chce tě (%s) přidat do svého seznamu kamarádů%s%s"
+msgstr "%s%s%s%s chce vás (%s) přidat do svého seznamu kamarádů%s%s"
 
 #. Buddy List
 msgid "Background Color"
@@ -11170,7 +11195,7 @@
 msgid ""
 "The text information for when a chat has an unread message that mentions "
 "your nickname"
-msgstr "Text informace, když je v chatu zpráva s tvojí přezdívkou"
+msgstr "Text informace, když je v chatu zpráva s vaší přezdívkou"
 
 msgid "The text information for a buddy's status"
 msgstr "Text informace pro stav kamaráda"
@@ -12220,6 +12245,9 @@
 msgid "Lao"
 msgstr "Laonština"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Makedonština"
 
@@ -12884,16 +12912,14 @@
 "Are you sure you want to permanently delete the log of the conversation with "
 "%s which started at %s?"
 msgstr ""
-"Opravdu že chcete natrvalo odstranit záznam konverzace s %s, který začal v "
-"%s?"
+"Opravdu chcete natrvalo odstranit záznam konverzace s %s, který začal v %s?"
 
 #, c-format
 msgid ""
 "Are you sure you want to permanently delete the log of the conversation in "
 "%s which started at %s?"
 msgstr ""
-"Opravdu že chcete natrvalo odstranit záznam konverzace v %s, který začal v "
-"%s?"
+"Opravdu chcete natrvalo odstranit záznam konverzace v %s, který začal v %s?"
 
 #, c-format
 msgid ""
@@ -13010,11 +13036,11 @@
 
 #, c-format
 msgid "%s wishes to start an audio/video session with you."
-msgstr "%s chce začít audio/video rozhovor s tebou."
+msgstr "%s chce začít audio/video rozhovor s vámi."
 
 #, c-format
 msgid "%s wishes to start a video session with you."
-msgstr "%s chce začít video rozhovor s tebou."
+msgstr "%s chce začít video rozhovor s vámi."
 
 msgid "Incoming Call"
 msgstr "Příchozí hovor"
@@ -13756,7 +13782,7 @@
 msgstr "_Přidat chat"
 
 msgid "Are you sure you want to delete the selected saved statuses?"
-msgstr "Opravdu že chcete odstranit zvolené uložené stavy?"
+msgstr "Opravdu chcete odstranit zvolené uložené stavy?"
 
 #. Use button
 msgid "_Use"
@@ -15299,6 +15325,18 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "Nemáte oprávnění k odinstalaci této aplikace."
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "Chyba při in-band bytestream přenosu\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Přenos byl ukončen."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Selhalo otevření in-band bytestreamu"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Nastavit vaše přátelské jméno"
+
 #~ msgid "The certificate has expired and should not be considered valid."
 #~ msgstr "Certifikát vypršel a neměl by být považován za platný."
 
@@ -15759,9 +15797,6 @@
 #~ msgid "In-Band Registration"
 #~ msgstr "In-Band registrace"
 
-#~ msgid "User Location"
-#~ msgstr "Umístění uživatele"
-
 #~ msgid "User Avatar"
 #~ msgstr "Avatar uživatele"
 
--- a/po/de.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/de.po	Tue Nov 23 07:50:25 2010 +0000
@@ -11,8 +11,8 @@
 msgstr ""
 "Project-Id-Version: de\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-28 19:57+0200\n"
-"PO-Revision-Date: 2010-10-28 19:50+0200\n"
+"POT-Creation-Date: 2010-11-17 09:26+0100\n"
+"PO-Revision-Date: 2010-11-17 09:19+0100\n"
 "Last-Translator: Björn Voigt <bjoern@cs.tu-berlin.de>\n"
 "Language-Team: German <de@li.org>\n"
 "Language: de\n"
@@ -4891,15 +4891,6 @@
 msgid "Unknown Error in presence"
 msgstr "Unbekannter Fehlercode"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Bei der In-Band-Bytestrom-Übertragung trat ein Fehler auf\n"
-
-msgid "Transfer was closed."
-msgstr "Übertragung wurde geschlossen."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Öffnen des In-Band-Bytestroms fehlgeschlagen"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5219,26 +5210,6 @@
 msgid "The username specified does not exist."
 msgstr "Der angegebene Benutzername existiert nicht."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Fehler bei der Buddy-Listen-Synchronisation bei %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s auf der lokalen Liste ist in der Gruppe „%s“, aber nicht auf der "
-"Serverliste. Möchten Sie, dass der Buddy hinzugefügt wird?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s ist auf der lokalen Liste, aber nicht auf der Serverliste. Möchten Sie, "
-"dass der Buddy hinzugefügt wird?"
-
 msgid "Unable to parse message"
 msgstr "Kann die Nachricht nicht parsen"
 
@@ -5410,6 +5381,26 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN-Fehler: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Fehler bei der Buddy-Listen-Synchronisation bei %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s auf der lokalen Liste ist in der Gruppe „%s“, aber nicht auf der "
+"Serverliste. Möchten Sie, dass der Buddy hinzugefügt wird?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s ist auf der lokalen Liste, aber nicht auf der Serverliste. Möchten Sie, "
+"dass der Buddy hinzugefügt wird?"
+
 msgid "Other Contacts"
 msgstr "Andere Kontakte"
 
@@ -5464,12 +5455,24 @@
 msgid "Set friendly name for %s."
 msgstr "Setze Spitznamen für %s."
 
-msgid "Set your friendly name."
-msgstr "Setze Ihren Spitznamen."
+msgid "Set Friendly Name"
+msgstr "Setze Spitznamen"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Das ist der Name, den andere MSN-Buddys von Ihren sehen."
 
+msgid "This Location"
+msgstr "Dieser Ort"
+
+msgid "This is the name that identifies this location"
+msgstr "Das ist der Name, der diesen Ort identifiziert"
+
+msgid "Other Locations"
+msgstr "Andere Orte"
+
+msgid "You can sign out from other locations here"
+msgstr "Sie können andere Orte von hier abmelden"
+
 msgid "Set your home phone number."
 msgstr "Setze Ihre private Telefonnummer."
 
@@ -5556,6 +5559,9 @@
 msgid "Set Friendly Name..."
 msgstr "Setze Spitzname..."
 
+msgid "View Locations..."
+msgstr "Orte betrachten..."
+
 msgid "Set Home Phone Number..."
 msgstr "Setze private Telefonnummer..."
 
@@ -6999,6 +7005,13 @@
 "versuchen Sie es noch einmal. Wenn Sie es weiter versuchen, müssen Sie sogar "
 "noch länger warten."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Sie haben Verschlüsselung in Ihren Kontoeinstellungen gefordert, aber einer "
+"der Server unterstützt keine Verschlüsselung."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7314,6 +7327,13 @@
 "Buchstaben beginnen und nur Buchstaben, Ziffern und Leerzeichen enthalten "
 "oder nur aus Ziffern bestehen."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Sie haben Verschlüsselung in Ihren Kontoeinstellungen gefordert, aber Ihr "
+"System unterstützt keine Verschlüsselung."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7864,6 +7884,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Suche Buddys nach E-Mail-Adresse..."
 
+msgid "Don't use encryption"
+msgstr "Keine Verschlüsselung benutzen"
+
 msgid "Use clientLogin"
 msgstr "clientLogin benutzen"
 
@@ -8062,7 +8085,7 @@
 msgstr "Persönliche Webseite"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Zusätzliche Informationen"
 
@@ -15600,3 +15623,12 @@
 
 msgid "You do not have permission to uninstall this application."
 msgstr "Sie haben keine Berechtigung, diese Anwendung zu deinstallieren."
+
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "Bei der In-Band-Bytestrom-Übertragung trat ein Fehler auf\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Übertragung wurde geschlossen."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Öffnen des In-Band-Bytestroms fehlgeschlagen"
--- a/po/es.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/es.po	Tue Nov 23 07:50:25 2010 +0000
@@ -53,8 +53,8 @@
 msgstr ""
 "Project-Id-Version: Pidgin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:11-0400\n"
-"PO-Revision-Date: 2010-08-02 23:10+0200\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-17 03:10+0100\n"
 "Last-Translator: Javier Fernández-Sanguino <jfs@debian.org>\n"
 "Language-Team:  Spanish team <es@li.org>\n"
 "Language: \n"
@@ -1808,13 +1808,12 @@
 "El certificado no es válido aún. Compruebe que la fecha y hora de su "
 "ordenador son correctas."
 
-#, fuzzy
 msgid ""
 "The certificate has expired and should not be considered valid.  Check that "
 "your computer's date and time are accurate."
 msgstr ""
-"El certificado no es válido aún. Compruebe que la fecha y hora de su "
-"ordenador son correctas."
+"El certificado ha expirado y no se considera ya válido. Compruebe que la "
+"fecha y hora de su ordenador son correctas."
 
 #. Translators: "domain" refers to a DNS domain (e.g. talk.google.com)
 msgid "The certificate presented is not issued to this domain."
@@ -4870,20 +4869,17 @@
 msgid "Domain"
 msgstr "Dominio"
 
-#, fuzzy
 msgid "Require encryption"
-msgstr "Solicitar autorización"
-
-#, fuzzy
+msgstr "Solicitar cifrado"
+
 msgid "Use encryption if available"
-msgstr "Información de usuario de no disponible: %s"
+msgstr "Utilizar cifrado si es posible"
 
 msgid "Use old-style SSL"
-msgstr ""
-
-#, fuzzy
+msgstr "Utilizar SSL antiguo"
+
 msgid "Connection security"
-msgstr "Expiró la conexión"
+msgstr "Seguridad de la conexión"
 
 msgid "Allow plaintext auth over unencrypted streams"
 msgstr "Permitir autenticación en claro sobre canales no cifrados"
@@ -4989,15 +4985,6 @@
 msgid "Unknown Error in presence"
 msgstr "Error desconocido en presencia"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Se produjo un error en la transferencia de flujos de bytes en banda\n"
-
-msgid "Transfer was closed."
-msgstr "Se cerró la transferencia."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Fallo al abrir un flujo de bytes en banda"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5317,26 +5304,6 @@
 msgid "The username specified does not exist."
 msgstr "El nombre de usuario especificado no existe."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Problema de sincronización de la lista de amigos en %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s está en la lista local dentro del grupo «%s» pero no está en la lista del "
-"servidor. ¿Desea añadir a este amigo?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s está en la lista local pero no está en la lista del servidor. ¿Desea "
-"añadir a este amigo?"
-
 msgid "Unable to parse message"
 msgstr "No se pudo interpretar el mensaje"
 
@@ -5511,6 +5478,26 @@
 msgid "MSN Error: %s\n"
 msgstr "Error MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Problema de sincronización de la lista de amigos en %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s está en la lista local dentro del grupo «%s» pero no está en la lista del "
+"servidor. ¿Desea añadir a este amigo?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s está en la lista local pero no está en la lista del servidor. ¿Desea "
+"añadir a este amigo?"
+
 msgid "Other Contacts"
 msgstr "Otros contactos"
 
@@ -5564,12 +5551,24 @@
 msgid "Set friendly name for %s."
 msgstr "Establecer  nombre de amigo para %s."
 
-msgid "Set your friendly name."
-msgstr "Establecer su nombre de amigo."
+msgid "Set Friendly Name"
+msgstr "Establecer nombre de amigo"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Éste es el nombre bajo el que otros amigos MSN le verán."
 
+msgid "This Location"
+msgstr "Esta ubicación"
+
+msgid "This is the name that identifies this location"
+msgstr "Éste es el nombre que identifica a esta ubicación"
+
+msgid "Other Locations"
+msgstr "Otras ubicaciones"
+
+msgid "You can sign out from other locations here"
+msgstr "Puede desconectarse de otras ubicaciones aquí"
+
 msgid "Set your home phone number."
 msgstr "Establezca el número de teléfono de su domicilio."
 
@@ -5657,6 +5656,9 @@
 msgid "Set Friendly Name..."
 msgstr "Establecer su nombre de amigo..."
 
+msgid "View Locations..."
+msgstr "Ver ubicaciones..."
+
 msgid "Set Home Phone Number..."
 msgstr "Establecer el número de teléfono de su domicilio..."
 
@@ -7073,6 +7075,13 @@
 "inténtelo de nuevo. Si sigue intentándolo, necesitará esperar incluso más "
 "tiempo."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"En su configuración de cuenta indicó que era necesario utilizar cifrado, "
+"pero ninguno de los servidores lo soporta."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7387,6 +7396,13 @@
 "una letra y sólo pueden contener letras, números y espacios, o contener sólo "
 "números."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Solicitó cifrado en su configuración de cuenta, pero su sistema no soporta "
+"el uso de cifrado."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7862,9 +7878,8 @@
 msgid "Change Address To:"
 msgstr "Cambiar dirección a:"
 
-#, fuzzy
 msgid "you are not waiting for authorization"
-msgstr "<i>usted no está esperando autorización</i>"
+msgstr "usted no está esperando autorización"
 
 msgid "You are awaiting authorization from the following buddies"
 msgstr "En espera de la autorización de los siguientes amigos"
@@ -7903,13 +7918,11 @@
 msgid "Set Privacy Options..."
 msgstr "Configurar las opciones de privacidad..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Mostrar la _lista de amigos"
-
-#, fuzzy
+msgstr "Mostrar lista visible"
+
 msgid "Show Invisible List"
-msgstr "Lista de invitados"
+msgstr "Mostrar lista invisible"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7927,6 +7940,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Buscar un amigo por correo electrónico..."
 
+msgid "Don't use encryption"
+msgstr "No utilizar cifrado"
+
 msgid "Use clientLogin"
 msgstr "Utilizar «clientLogin»"
 
@@ -8126,7 +8142,7 @@
 msgstr "Página web personal"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Información adicional"
 
@@ -8154,46 +8170,53 @@
 msgid "Capabilities"
 msgstr "Capacidades"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Parecer conectado"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "Parecer conectado"
-
+msgstr "No aparecer conectado"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "Parecer desconectado"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "Parecer desconectado"
-
-#, fuzzy
+msgstr "No aparecer desconectado"
+
 msgid "you have no buddies on this list"
-msgstr "Ha sido expulsado de este MultiMX."
-
-#, fuzzy, c-format
+msgstr "no tiene amigos en esta lista"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"Puede volver a pedir autorización a estos amigos apretando el botón derecho "
-"del ratón sobre ellos y escogiendo «Solicitar autorización otra vez.»"
-
-#, fuzzy
+"Puede añadir a un amigo a esta lista pulsando con el botón derecho del ratón "
+"sobre él y escogiendo «%s»"
+
 msgid "Visible List"
-msgstr "Visible"
+msgstr "Lista visible"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "Estos amigos verán su estado cuando pase a estado «Invisible»"
+
 msgid "Invisible List"
-msgstr "Lista de invitados"
+msgstr "Lista invisible"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Estos amigos siempre le verán como desconectado"
 
 msgid "Aquarius"
 msgstr "Acuario"
@@ -8373,9 +8396,9 @@
 msgid "Your request was rejected."
 msgstr "Su solicitud fué rechazada."
 
-#, fuzzy, c-format
+#, c-format
 msgid "%u requires verification: %s"
-msgstr "%u solicita verificación"
+msgstr "%u solicita verificación: %s"
 
 msgid "Add buddy question"
 msgstr "Añadir una pregunta para el amigo"
@@ -11320,9 +11343,9 @@
 "Puede volver a esta ventana para añadir, editar o eliminar cuentas desde la "
 "ventana de lista de amigos seleccionando <b>Cuentas->Gestionar Cuentas</b>"
 
-#, fuzzy, c-format
+#, c-format
 msgid "%s%s%s%s wants to add you (%s) to his or her buddy list%s%s"
-msgstr "%s%s%s%s quiere añadir a %s a su lista de amigos%s%s."
+msgstr "%s%s%s%s quiere añadirle (%s) a su lista de amigos%s%s."
 
 #. Buddy List
 msgid "Background Color"
@@ -12486,6 +12509,9 @@
 msgid "Lao"
 msgstr "Laosiano"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Macedonio"
 
@@ -13708,9 +13734,8 @@
 msgid "_TURN server:"
 msgstr "Servidor _TURN:"
 
-#, fuzzy
 msgid "_UDP Port:"
-msgstr "_Puerto:"
+msgstr "Puerto _UDP:"
 
 msgid "Use_rname:"
 msgstr "Nombre de usua_rio:"
@@ -13734,7 +13759,7 @@
 msgstr "Konqueror"
 
 msgid "Google Chrome"
-msgstr ""
+msgstr "Google Chrome"
 
 #. Do not move the line below.  Code below expects gnome-open to be in
 #. * this list immediately after xdg-open!
@@ -13758,11 +13783,11 @@
 
 #. Translators: please do not translate "chromium-browser" here!
 msgid "Chromium (chromium-browser)"
-msgstr ""
+msgstr "Chromium (chromium-browser)"
 
 #. Translators: please do not translate "chrome" here!
 msgid "Chromium (chrome)"
-msgstr ""
+msgstr "Chromium (chrome)"
 
 msgid "Manual"
 msgstr "Manual"
@@ -14304,7 +14329,6 @@
 msgid "Small"
 msgstr "Pequeña"
 
-#, fuzzy
 msgid "Smaller versions of the default smileys"
 msgstr "Versiones más pequeñas de los emoticonos por omisión"
 
@@ -15354,9 +15378,8 @@
 msgid "Voice/Video Settings"
 msgstr "Configuración de voz/vídeo"
 
-#, fuzzy
 msgid "Voice and Video Settings"
-msgstr "Configuración de voz/vídeo"
+msgstr "Configuración de voz y vídeo"
 
 #. *< name
 #. *< version
@@ -15635,6 +15658,19 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "No tiene permisos para desinstalar esta aplicación."
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr ""
+#~ "Se produjo un error en la transferencia de flujos de bytes en banda\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Se cerró la transferencia."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Fallo al abrir un flujo de bytes en banda"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Establecer su nombre de amigo."
+
 #~ msgid "The certificate has expired and should not be considered valid."
 #~ msgstr "El certificado ha expirado y no sería considerado válido."
 
--- a/po/hu.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/hu.po	Tue Nov 23 07:50:25 2010 +0000
@@ -9,14 +9,14 @@
 msgstr ""
 "Project-Id-Version: pidgin 2.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-10 12:33+0200\n"
+"POT-Creation-Date: 2010-11-21 03:11+0100\n"
+"PO-Revision-Date: 2010-11-21 03:10+0100\n"
 "Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
 "Language-Team: Hungarian <gnome at fsf dot hu>\n"
-"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
 "Plural-Forms:  nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
@@ -4854,15 +4854,6 @@
 msgid "Unknown Error in presence"
 msgstr "Ismeretlen hiba a jelenlétben"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Hiba történt a bejövő adatfolyam átvitelében\n"
-
-msgid "Transfer was closed."
-msgstr "Az átvitel lezárva."
-
-msgid "Failed to open in-band bytestream"
-msgstr "A bejövő adatfolyam megnyitása meghiúsult"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5182,26 +5173,6 @@
 msgid "The username specified does not exist."
 msgstr "A megadott felhasználónév nem létezik."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Partnerlista-szinkronizációs probléma itt: %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s a helyi listán a(z) %s csoport tagja, de a kiszolgáló listáján nem az. "
-"Szeretné ezt a partnert felvenni?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s rajta van a helyi listán, de a kiszolgáló listáján nincs. Szeretné ezt a "
-"partnert felvenni?"
-
 msgid "Unable to parse message"
 msgstr "Az üzenetet nem sikerült értelmezni"
 
@@ -5372,6 +5343,26 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN hiba: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Partnerlista-szinkronizációs probléma itt: %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s a helyi listán a(z) %s csoport tagja, de a kiszolgáló listáján nem az. "
+"Szeretné ezt a partnert felvenni?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s rajta van a helyi listán, de a kiszolgáló listáján nincs. Szeretné ezt a "
+"partnert felvenni?"
+
 msgid "Other Contacts"
 msgstr "Egyéb partnerek"
 
@@ -5423,12 +5414,24 @@
 msgid "Set friendly name for %s."
 msgstr "Becenév beállítása %s számára."
 
-msgid "Set your friendly name."
-msgstr "Becenév beállítása."
+msgid "Set Friendly Name"
+msgstr "Becenév beállítása"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Ezen a néven fogják látni az MSN partnerei."
 
+msgid "This Location"
+msgstr "Ez a hely"
+
+msgid "This is the name that identifies this location"
+msgstr "A helyet azonosító név"
+
+msgid "Other Locations"
+msgstr "Egyéb helyek"
+
+msgid "You can sign out from other locations here"
+msgstr "Itt kijelentkezhet más helyekről"
+
 msgid "Set your home phone number."
 msgstr "Otthoni telefonszám beállítása."
 
@@ -5517,6 +5520,9 @@
 msgid "Set Friendly Name..."
 msgstr "Becenév beállítása…"
 
+msgid "View Locations..."
+msgstr "Helyek megjelenítése…"
+
 msgid "Set Home Phone Number..."
 msgstr "Otthoni telefonszám beállítása…"
 
@@ -5847,8 +5853,8 @@
 
 msgid "The MSN servers are temporarily unavailable. Please wait and try again."
 msgstr ""
-"Az MSN kiszolgálók átmenetileg nem érhetők el. Kérem várjon és próbálja újra "
-"később."
+"Az MSN kiszolgálók átmenetileg nem érhetők el. Kérem várjon, és próbálja "
+"újra később."
 
 msgid "The MSN servers are going down temporarily"
 msgstr "Az MSN kiszolgálók átmenetileg leállnak"
@@ -5860,8 +5866,8 @@
 msgid ""
 "Your MSN buddy list is temporarily unavailable. Please wait and try again."
 msgstr ""
-"Az Ön MSN partnerlistája átmenetileg nem érhető el. Kérem várjon és próbálja "
-"újra később."
+"Az Ön MSN partnerlistája átmenetileg nem érhető el. Kérem várjon, és "
+"próbálja újra később."
 
 msgid "Handshaking"
 msgstr "Kézfogás"
@@ -6728,8 +6734,8 @@
 #, c-format
 msgid "Unable to send message. Could not get details for user (%s)."
 msgstr ""
-"Az üzenetet nem lehet elküldeni. A felhasználó részletei nem kérhetőek le "
-"(%s)."
+"Az üzenetet nem lehet elküldeni. A felhasználó részletei nem kérhetőek le (%"
+"s)."
 
 #, c-format
 msgid "Unable to add %s to your buddy list (%s)."
@@ -6889,14 +6895,13 @@
 msgstr "Kiszolgáló portja"
 
 msgid "Please authorize me so I can add you to my buddy list."
-msgstr ""
+msgstr "Engedje meg, hogy felvegyem partnerlistámra."
 
 msgid "No reason given."
 msgstr "Nincs ok megadva."
 
-#, fuzzy
 msgid "Authorization Denied Message:"
-msgstr "Hozzáférés elutasítva üzenet:"
+msgstr "Felhatalmazás elutasítva üzenet:"
 
 #, c-format
 msgid "Received unexpected response from %s: %s"
@@ -6913,6 +6918,13 @@
 "Ön túl gyakran jelentkezik ki/be. Várjon tíz percet és próbálja meg újra. Ha "
 "tovább folytatja, még többet kell majd várnia."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Fiókbeállításaiban titkosítást követelt meg, de az egyik kiszolgáló nem "
+"támogatja azt."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -6939,12 +6951,17 @@
 "encoding he is using, you can specify it in the advanced account options for "
 "your AIM/ICQ account.)"
 msgstr ""
+"(Hiba történt ezen üzenet fogadásakor. A partner valószínűleg a várttól "
+"eltérő kódolást használ. Ha tudja, milyen kódolást használ a partner, akkor "
+"megadhatja az AIM/ICQ fiók speciális beállításai közt.)"
 
 #, c-format
 msgid ""
 "(There was an error receiving this message.  Either you and %s have "
 "different encodings selected, or %s has a buggy client.)"
 msgstr ""
+"(Hiba történt ezen üzenet fogadásakor. Ön vagy %s eltérő kódolást választott "
+"ki, vagy %s hibás klienst használ.)"
 
 msgid "Could not join chat room"
 msgstr "Nem sikerült kapcsolódni a csevegőszobához"
@@ -7152,8 +7169,8 @@
 "%s tried to send you a %s file, but we only allow files up to %s over Direct "
 "IM.  Try using file transfer instead.\n"
 msgstr ""
-"%s egy %s fájlt próbált küldeni, de közvetlen kapcsolatban legfeljebb csak "
-"%s méretű fájl küldhető. Próbálkozzon inkább a fájlátvitellel.\n"
+"%s egy %s fájlt próbált küldeni, de közvetlen kapcsolatban legfeljebb csak %"
+"s méretű fájl küldhető. Próbálkozzon inkább a fájlátvitellel.\n"
 
 #, c-format
 msgid "File %s is %s, which is larger than the maximum size of %s."
@@ -7218,6 +7235,12 @@
 "kezdődniük és betűket, számokat, szóközöket, vagy csak számokat "
 "tartalmazhatnak."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Fiókbeállításaiban titkosítást követelt meg, de rendszere nem támogatja azt."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7711,7 +7734,7 @@
 "You can re-request authorization from these buddies by right-clicking on "
 "them and selecting \"Re-request Authorization.\""
 msgstr ""
-"Újra kérheti engedélyezést ezektől a partnerektől a jobb egérgombbal "
+"Újra kérheti az engedélyezést ezektől a partnerektől a jobb egérgombbal "
 "kattintva a nevükön, és az „Engedélyezés újra kérése” választásával"
 
 msgid "Find Buddy by Email"
@@ -7740,13 +7763,11 @@
 msgid "Set Privacy Options..."
 msgstr "Magánszféra-beállítások…"
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "P_artnerlista megjelenítése"
-
-#, fuzzy
+msgstr "Láthatók listája"
+
 msgid "Show Invisible List"
-msgstr "Meghívási lista"
+msgstr "Láthatatlanok listája"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7764,6 +7785,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Partner keresése e-mail cím szerint…"
 
+msgid "Don't use encryption"
+msgstr "Ne használjon titkosítást"
+
 msgid "Use clientLogin"
 msgstr "Kliensbejelentkezés használata"
 
@@ -7880,128 +7904,108 @@
 msgid "Voice"
 msgstr "Hang"
 
-#, fuzzy
 msgid "AIM Direct IM"
-msgstr "Közvetlen IM"
-
-#, fuzzy
+msgstr "AIM közvetlen IM"
+
 msgid "Get File"
-msgstr "Fájl küldése"
-
-#, fuzzy
+msgstr "Fájl kérése"
+
 msgid "Games"
-msgstr "Asszámi"
+msgstr "Játékok"
 
 msgid "ICQ Xtraz"
-msgstr ""
+msgstr "ICQ Xtraz"
 
 msgid "Add-Ins"
-msgstr ""
-
-#, fuzzy
+msgstr "Bővítmények"
+
 msgid "Send Buddy List"
-msgstr "Partnerlista"
-
-#, fuzzy
+msgstr "Partnerlista küldése"
+
 msgid "ICQ Direct Connect"
-msgstr "Közvetlen kapcsolatok engedélyezése"
-
-#, fuzzy
+msgstr "ICQ közvetlen kapcsolat"
+
 msgid "AP User"
-msgstr "Felhasználó hitelesítése"
+msgstr "AP felhasználó"
 
 msgid "ICQ RTF"
-msgstr ""
+msgstr "ICQ RTF"
 
 msgid "Nihilist"
-msgstr ""
-
-#, fuzzy
+msgstr "Nihilist"
+
 msgid "ICQ Server Relay"
-msgstr "A kiszolgáló válasza:"
+msgstr "ICQ kiszolgálótovábbítás"
 
 msgid "Old ICQ UTF8"
-msgstr ""
+msgstr "Régi ICQ UTF8"
 
 msgid "Trillian Encryption"
-msgstr ""
+msgstr "Trillian titkosítás"
 
 msgid "ICQ UTF8"
-msgstr ""
+msgstr "ICQ UTF8"
 
 msgid "Hiptop"
-msgstr ""
-
-#, fuzzy
+msgstr "Hiptop"
+
 msgid "Security Enabled"
-msgstr "Biztonsági kód"
-
-#, fuzzy
+msgstr "Biztonság engedélyezve"
+
 msgid "Video Chat"
-msgstr "_Videóhívás"
-
-#, fuzzy
+msgstr "Videocsevegés"
+
 msgid "iChat AV"
-msgstr "Csevegés"
-
-#, fuzzy
+msgstr "iChat AV"
+
 msgid "Live Video"
-msgstr " Videó"
-
-#, fuzzy
+msgstr "Élő videó"
+
 msgid "Camera"
-msgstr "Videokamera"
+msgstr "Kamera"
 
 msgid "Screen Sharing"
-msgstr ""
+msgstr "Képernyőmegosztás"
 
 msgid "IP Address"
 msgstr "IP cím"
 
-#, fuzzy
 msgid "Warning Level"
-msgstr "Figyelmeztetés"
-
-#, fuzzy
+msgstr "Figyelmeztetési szint"
+
 msgid "Buddy Comment"
-msgstr "Partnermegjegyzés:"
-
-#, fuzzy, c-format
+msgstr "Partnermegjegyzés"
+
+#, c-format
 msgid "User information not available: %s"
-msgstr "Titkosítás használata, ha elérhető"
+msgstr "A felhasználóinformációk nem érhetők el: %s"
 
 msgid "Mobile Phone"
 msgstr "Mobiltelefon"
 
-#, fuzzy
 msgid "Personal Web Page"
-msgstr "Személyes mobil"
+msgstr "Személyes weboldal"
 
 #. aim_userinfo_t
-#. strip_html_tags
-#, fuzzy
+#. use_html_status
 msgid "Additional Information"
-msgstr "Opcionális információk:"
+msgstr "További információk"
 
 msgid "Zip Code"
-msgstr ""
-
-#, fuzzy
+msgstr "Irányítószám"
+
 msgid "Work Information"
-msgstr "További információk"
+msgstr "Munkahely-információk"
 
 msgid "Division"
-msgstr ""
-
-#, fuzzy
+msgstr "Részleg"
+
 msgid "Position"
-msgstr "Leírás"
-
-#, fuzzy
+msgstr "Pozíció"
+
 msgid "Web Page"
-msgstr "Honlap"
-
-#, fuzzy
+msgstr "Weboldal"
+
 msgid "Online Since"
 msgstr "Kapcsolódva ezóta"
 
@@ -8009,48 +8013,43 @@
 msgstr "Tagság kezdete"
 
 msgid "Capabilities"
-msgstr ""
+msgstr "Képességek"
 
 #. 4 separate strings are needed in order to ease translators' job
 msgid "Appear Online"
 msgstr "Belépettként látszik"
 
-#, fuzzy
 msgid "Don't Appear Online"
-msgstr "Belépettként látszik"
+msgstr "Ne látsszon belépettként"
 
 msgid "Appear Offline"
 msgstr "Kilépettként látszik"
 
-#, fuzzy
 msgid "Don't Appear Offline"
-msgstr "Kilépettként látszik"
-
-#, fuzzy
+msgstr "Ne látsszon kilépettként"
+
 msgid "you have no buddies on this list"
-msgstr "Kirúgták ebből a MultiMX-ből."
-
-#, fuzzy, c-format
+msgstr "nincsenek partnerei ezen a listán"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"Újra kérheti engedélyezést ezektől a partnerektől a jobb egérgombbal "
-"kattintva a nevükön, és az „Engedélyezés újra kérése” választásával"
-
-#, fuzzy
+"Felveheti a partnert a listára a jobb egérgombbal kattintva a nevén, és a(z) "
+"„%s” kiválasztásával"
+
 msgid "Visible List"
-msgstr "Látható"
+msgstr "Látható számukra"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "Ezek a partnerek látni fogják állapotát amikor „Láthatatlanra” vált"
+
 msgid "Invisible List"
-msgstr "Meghívási lista"
+msgstr "Láthatatlan számukra"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Ezek a partnerek mindig kilépettként fogják látni"
 
 msgid "Aquarius"
 msgstr "Vízöntő"
@@ -10798,8 +10797,8 @@
 #, c-format
 msgid "Access denied: HTTP proxy server forbids port %d tunneling"
 msgstr ""
-"Hozzáférés megtagadva: a HTTP proxy kiszolgáló tiltja az alagutazást a(z) "
-"%d. porton"
+"Hozzáférés megtagadva: a HTTP proxy kiszolgáló tiltja az alagutazást a(z) %"
+"d. porton"
 
 #, c-format
 msgid "Error resolving %s"
@@ -11047,8 +11046,8 @@
 "An error was encountered reading your %s.  The file has not been loaded, and "
 "the old file has been renamed to %s~."
 msgstr ""
-"Hiba történt a(z) %s olvasásakor. Ez a fájl nem lett betöltve, a régi fájl "
-"%s~ néven lett elmentve."
+"Hiba történt a(z) %s olvasásakor. Ez a fájl nem lett betöltve, a régi fájl %"
+"s~ néven lett elmentve."
 
 msgid ""
 "Chat over IM.  Supports AIM, Google Talk, Jabber/XMPP, MSN, Yahoo and more"
@@ -12354,6 +12353,9 @@
 msgid "Lao"
 msgstr "lao"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "macedón"
 
@@ -12474,8 +12476,8 @@
 "to multiple messaging services at once.  %s is written in C using GTK+.  %s "
 "is released, and may be modified and redistributed,  under the terms of the "
 "GPL version 2 (or later).  A copy of the GPL is distributed with %s.  %s is "
-"copyrighted by its contributors, a list of whom is also distributed with "
-"%s.  There is no warranty for %s.<BR><BR>"
+"copyrighted by its contributors, a list of whom is also distributed with %"
+"s.  There is no warranty for %s.<BR><BR>"
 msgstr ""
 "A %s egy libpurple alapú moduláris üzenetküldő kliens, amely egyszerre több "
 "üzenetküldő szolgáltatáshoz is képes csatlakozni. A %s GTK+ használatával, C "
@@ -13025,16 +13027,16 @@
 
 #, c-format
 msgid ""
-"Are you sure you want to permanently delete the log of the conversation in "
-"%s which started at %s?"
+"Are you sure you want to permanently delete the log of the conversation in %"
+"s which started at %s?"
 msgstr ""
 "Biztos, hogy törölni akarja a(z) %s csatornán folytatott, %s időpontban "
 "kezdődött beszélgetés naplóját?"
 
 #, c-format
 msgid ""
-"Are you sure you want to permanently delete the system log which started at "
-"%s?"
+"Are you sure you want to permanently delete the system log which started at %"
+"s?"
 msgstr ""
 "Biztos, hogy törölni akarja a(z) %s időpontban kezdődött rendszernaplót?"
 
@@ -15382,8 +15384,8 @@
 #, no-c-format
 msgid ""
 "Error Installing Spellchecking ($R3).$\\rIf retrying fails, manual "
-"installation instructions are at: http://developer.pidgin.im/wiki/Installing"
-"%20Pidgin#manual_win32_spellcheck_installation"
+"installation instructions are at: http://developer.pidgin.im/wiki/Installing%"
+"20Pidgin#manual_win32_spellcheck_installation"
 msgstr ""
 "Hiba a helyesírás-ellenőrző telepítésekor. ($R3).$\\rHa az újrapróbálkozás "
 "meghiúsul, akkor saját kezűleg is telepítheti a http://developer.pidgin.im/"
--- a/po/nl.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/nl.po	Tue Nov 23 07:50:25 2010 +0000
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: pidgin 2.7.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-10 10:55+0100\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-18 17:03+0100\n"
 "Last-Translator: Gideon van Melle <translations@gvmelle.com>\n"
 "Language-Team: Dutch <translations@gvmelle.com>\n"
 "Language: nl\n"
@@ -1777,7 +1777,7 @@
 msgstr "SSL certificaatfout"
 
 msgid "Unable to validate certificate"
-msgstr "Kan certificaat valideren"
+msgstr "Kan certificaat niet valideren"
 
 #, c-format
 msgid ""
@@ -4887,15 +4887,6 @@
 msgid "Unknown Error in presence"
 msgstr "Onbekende fout in aanwezigheid"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Er is een fout op de in-band bytestream overdracht\n"
-
-msgid "Transfer was closed."
-msgstr "Bestandsoverdracht gesloten."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Kan geen in-band bytestream openen"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5214,25 +5205,6 @@
 msgid "The username specified does not exist."
 msgstr "Ingevoerde gebruikersnaam bestaat niet."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Synchronisatieprobleem in vriendenlijst van %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s is op de lokale lijst in de groep \"%s\", maar niet op de serverlijst. "
-"Wilt u deze toevoegen?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s is op de lokale lijst, maar niet op de serverlijst. Wilt u deze toevoegen?"
-
 msgid "Unable to parse message"
 msgstr "Kan het bericht niet ontleden"
 
@@ -5403,6 +5375,25 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN-fout: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Synchronisatieprobleem in vriendenlijst van %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s is op de lokale lijst in de groep \"%s\", maar niet op de serverlijst. "
+"Wilt u deze toevoegen?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s is op de lokale lijst, maar niet op de serverlijst. Wilt u deze toevoegen?"
+
 msgid "Other Contacts"
 msgstr "Andere Contactpersonen"
 
@@ -5454,12 +5445,24 @@
 msgid "Set friendly name for %s."
 msgstr "Geef een bijnaam voor %s."
 
-msgid "Set your friendly name."
-msgstr "Bijnaam instellen."
+msgid "Set Friendly Name"
+msgstr "Geef Bijnaam"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Dit is de naam die andere MSN vrienden van u zullen zien."
 
+msgid "This Location"
+msgstr "Deze Locatie"
+
+msgid "This is the name that identifies this location"
+msgstr "Dit is de naam die deze locatie indentificeert."
+
+msgid "Other Locations"
+msgstr "andere Locaties"
+
+msgid "You can sign out from other locations here"
+msgstr "U kunt u hier bij andere locaties afmelden."
+
 msgid "Set your home phone number."
 msgstr "Telefoonnummer voor thuis instellen."
 
@@ -5546,6 +5549,9 @@
 msgid "Set Friendly Name..."
 msgstr "Bijnaam instellen..."
 
+msgid "View Locations..."
+msgstr "Bekijk Locaties..."
+
 msgid "Set Home Phone Number..."
 msgstr "Telefoon thuis instellen..."
 
@@ -6953,6 +6959,13 @@
 "U heeft u te snel aan en afgemeld. Wacht 10 minuten en probeer het nog een "
 "keer. Als u verder gaat moet u nog langer wachten."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"U heeft encryptie nodig volgens uw account instellingen, maar één van de "
+"servers ondersteunt dit niet."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7266,6 +7279,13 @@
 "met een letter en slechts cijfers, letters en spaties bevatten, of slechts "
 "nummers bevatten."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"U heeft encryptie nodig volgens uw account instellingen, maar encryptie "
+"wordt niet door uw systeem ondersteund."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7783,13 +7803,11 @@
 msgid "Set Privacy Options..."
 msgstr "Privacy-opties instellen..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Vriendenlijst _weergeven"
-
-#, fuzzy
+msgstr "Toon Zichtbaren Lijst"
+
 msgid "Show Invisible List"
-msgstr "Uitnodigingslijst"
+msgstr "Toon Onzichtbaren Lijst"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7807,6 +7825,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Vriend zoeken door middel van e-mail..."
 
+msgid "Don't use encryption"
+msgstr "Gebruik geen encryptie"
+
 msgid "Use clientLogin"
 msgstr "Gebruik clientLogin"
 
@@ -7999,9 +8020,9 @@
 msgid "Buddy Comment"
 msgstr "Opmerking bij Vriend"
 
-#, fuzzy, c-format
+#, c-format
 msgid "User information not available: %s"
-msgstr "Gebruik encryptie indien aanwezig"
+msgstr "Gebruikersinformatie niet beschikbaar: %s"
 
 msgid "Mobile Phone"
 msgstr "Mobiel nummer"
@@ -8010,7 +8031,7 @@
 msgstr "Persoonlijke webpagina"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Extra informatie"
 
@@ -8038,46 +8059,54 @@
 msgid "Capabilities"
 msgstr "Mogelijkheden"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Online weergeven"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "Online weergeven"
-
+msgstr "Niet Online weergeven"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "offline weergeven"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "offline weergeven"
-
-#, fuzzy
+msgstr "Niet Offline weergeven"
+
 msgid "you have no buddies on this list"
-msgstr "U bent uit deze MultiMX gegooid."
-
-#, fuzzy, c-format
+msgstr "U heeft geen vrienden op deze lijst"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"U kunt opnieuw toestemming aanvragen door met de rechter muisknop op de "
-"vrienden te klikken en de optie \"Opnieuw toestemming vragen.\" te kiezen."
-
-#, fuzzy
+"U kunt een vriend toevoegen aan deze lijst door rechts op een van hern te "
+"klikken en dan \"%s\" te selecteren"
+
 msgid "Visible List"
-msgstr "Beschikbaar"
+msgstr "Zichtbaren Lijst"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
 msgstr ""
-
-#, fuzzy
+"Deze vrienden kunnen uw status zien als u overschakelt naar \"Onzichtbaar\""
+
 msgid "Invisible List"
-msgstr "Uitnodigingslijst"
+msgstr "Onzichtbaren Lijst"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Deze vrienden zullen u altijd als Offline zien"
 
 msgid "Aquarius"
 msgstr "Waterman"
@@ -12382,6 +12411,9 @@
 msgid "Lao"
 msgstr "Laotiaans"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Macedonisch"
 
@@ -15525,6 +15557,18 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "U mag dit programma niet verwijderen."
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "Er is een fout op de in-band bytestream overdracht\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Bestandsoverdracht gesloten."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Kan geen in-band bytestream openen"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Bijnaam instellen."
+
 #~ msgid "The certificate has expired and should not be considered valid."
 #~ msgstr ""
 #~ "Het certificaat is verlopen en moet niet als geldig worden beschouwd."
--- a/po/nn.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/nn.po	Tue Nov 23 07:50:25 2010 +0000
@@ -5,8 +5,8 @@
 msgstr ""
 "Project-Id-Version: gtranslator\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-11 01:26+0100\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-15 21:27+0100\n"
 "Last-Translator: Yngve Spjeld Landro <l10n@landro.net>\n"
 "Language-Team: Norwegian Nynorsk <l10n@landro.net>\n"
 "Language: nn\n"
@@ -3841,7 +3841,7 @@
 msgstr "Autentisering i klartekst"
 
 msgid "You require encryption, but it is not available on this server."
-msgstr "Du krev kryptering som ikkje er tilgjengeleg på denne tenaren."
+msgstr "Du krev kryptering, men han finst ikkje på denne tenaren."
 
 msgid "Invalid challenge from server"
 msgstr "Ugyldig utfordring frå tenaren"
@@ -4843,15 +4843,6 @@
 msgid "Unknown Error in presence"
 msgstr "Ukjend feil til stades"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Overføringa av samtidsdatastraumen feila\n"
-
-msgid "Transfer was closed."
-msgstr "Overføringa blei lukka."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Klarte ikkje å opna samtidsdatastraum"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5169,26 +5160,6 @@
 msgid "The username specified does not exist."
 msgstr "Brukarnamnet finst ikkje"
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Problem med synkroniseringa av vennelista i %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s på den lokale lista er med i gruppa \"%s\", men ikkje på tenarlista. "
-"Ønskjer du å leggja ho/han til?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s er i den lokale lista, men ikkje på tenarlista. Ønskjer du å leggja ho/"
-"han til?"
-
 msgid "Unable to parse message"
 msgstr "Klarte ikkje å tyda meldinga"
 
@@ -5359,6 +5330,26 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN-feil: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Problem med synkroniseringa av vennelista i %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s på den lokale lista er med i gruppa \"%s\", men ikkje på tenarlista. "
+"Ønskjer du å leggja ho/han til?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s er i den lokale lista, men ikkje på tenarlista. Ønskjer du å leggja ho/"
+"han til?"
+
 msgid "Other Contacts"
 msgstr "Andre kontaktar"
 
@@ -5411,12 +5402,24 @@
 msgid "Set friendly name for %s."
 msgstr "Vel visingsnamnet til %s."
 
-msgid "Set your friendly name."
-msgstr "Vel visingsnamn."
+msgid "Set Friendly Name"
+msgstr "Vel visingsnamn"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Dette er namnet som vil synast hos andre MSN-venner."
 
+msgid "This Location"
+msgstr "Denne staden"
+
+msgid "This is the name that identifies this location"
+msgstr "Dette er namnet som identifiserer denne staden"
+
+msgid "Other Locations"
+msgstr "Andre stader"
+
+msgid "You can sign out from other locations here"
+msgstr "Du kan logga ut frå andre stader her"
+
 msgid "Set your home phone number."
 msgstr "Skriv inn heimetelefonnummeret ditt."
 
@@ -5502,6 +5505,9 @@
 msgid "Set Friendly Name..."
 msgstr "Vel visingsnamn…"
 
+msgid "View Locations..."
+msgstr "Vel stader…"
+
 msgid "Set Home Phone Number..."
 msgstr "Skriv inn heimetelefonnummer…"
 
@@ -5862,17 +5868,16 @@
 msgid "Retrieving buddy list"
 msgstr "Hentar vennelista"
 
-# dårleg formulering?
 #, c-format
 msgid "%s requests to view your webcam, but this request is not yet supported."
 msgstr ""
-"%s spør om å få sjå nettkameraet ditt. Denne funksjonen er enno ikkje støtta."
-
-# dårleg formulering?
+"%s spør om løyve til å sjå nettkameraet ditt, men førespurnaden er enno "
+"ikkje støtta."
+
 #, c-format
 msgid "%s invited you to view his/her webcam, but this is not yet supported."
 msgstr ""
-"%s har invitert deg til å få sjå nettkameraet hans/hennar, men funksjonen er "
+"%s har gjeve deg løyve til å sjå nettkameraet sitt, men denne funksjonen er "
 "enno ikkje støtta."
 
 msgid "Away From Computer"
@@ -6889,6 +6894,13 @@
 "Du har kopla til og blitt fråkopla for ofte. Vent i ti minutt og prøv igjen. "
 "Held du fram med å prøva, vil du måtta venta endå lenger."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Du krev kryptering i kontoinnstillingane dine, men ein av tenarane kan ikkje "
+"gje deg det."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7200,6 +7212,13 @@
 "vera ei gyldig e-postadresse, eller begynna med ein bokstav og berre "
 "innehalda bokstavar, tal og mellomrom, eller berre innehalda tal."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Du krev kryptering i kontoinnstillingane dine, men systemet ditt kan ikkje "
+"gje deg det."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7704,13 +7723,11 @@
 msgid "Set Privacy Options..."
 msgstr "Personvernval…"
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Vis venne_liste"
-
-#, fuzzy
+msgstr "Vis synleg liste"
+
 msgid "Show Invisible List"
-msgstr "Invitasjonsliste"
+msgstr "Vis usynleg liste"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7728,6 +7745,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Finn venn utfrå e-postadressa…"
 
+msgid "Don't use encryption"
+msgstr "Bruk ikkje kryptering"
+
 msgid "Use clientLogin"
 msgstr "Bruk klientpålogging"
 
@@ -7916,9 +7936,9 @@
 msgstr "Vennenotat"
 
 # 20101010 ylan meiner "mogleg" er betre enn "tilgjengeleg"
-#, fuzzy, c-format
+#, c-format
 msgid "User information not available: %s"
-msgstr "Bruk kryptering om mogleg"
+msgstr "Brukaropplysningar er ikkje tilgengelege: %s"
 
 msgid "Mobile Phone"
 msgstr "Mobiltelefon"
@@ -7927,7 +7947,7 @@
 msgstr "Personelg nettside"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Tilleggsinformasjon"
 
@@ -7955,46 +7975,53 @@
 msgid "Capabilities"
 msgstr "Evner"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Framstå som tilkopla"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "Framstå som tilkopla"
-
+msgstr "Framstå som fråkopla"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
-msgstr "Verkar vera fråkopla"
-
-#, fuzzy
+msgstr "Framstå som fråkopla"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "Verkar vera fråkopla"
-
-#, fuzzy
+msgstr "Framstå som tilkopla"
+
 msgid "you have no buddies on this list"
-msgstr "Du er blitt sparka ut frå denne MultiMX-en."
-
-#, fuzzy, c-format
+msgstr "du har ingen venner på denne lista"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"Du kan be om godkjenning frå desse vennene igjen ved å høgreklikka dei og "
-"velja \"Spør om ny godkjenning.\""
-
-#, fuzzy
+"Du kan leggja til ein venn i denne lista ved å høgreklikka han og velja \"%s"
+"\""
+
 msgid "Visible List"
-msgstr "Synleg"
+msgstr "Synleg liste"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "Desse vennene vil sjå statusen din om du byter til \"Usynleg\" "
+
 msgid "Invisible List"
-msgstr "Invitasjonsliste"
+msgstr "Usynleg liste"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Desse vennene vil alltid sjå deg som fråkopla"
 
 msgid "Aquarius"
 msgstr "Vassmannen"
@@ -12280,6 +12307,9 @@
 msgid "Lao"
 msgstr "Lao"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Makedonsk"
 
@@ -15386,84 +15416,14 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "Du har ikkje rettar til å avinstallera dette programmet."
 
-#~ msgid "The certificate has expired and should not be considered valid."
-#~ msgstr "Sertifikatet har gått ut og kan ikkje reknast for å vera gyldig."
-
-#~ msgid "Require SSL/TLS"
-#~ msgstr "Krev SSL/TLS"
-
-#~ msgid "Force old (port 5223) SSL"
-#~ msgstr "Overstyr med gammal SSL (port 5223)"
-
-#~ msgid ""
-#~ "[Unable to display a message from this user because it contained invalid "
-#~ "characters.]"
-#~ msgstr ""
-#~ "Klarer ikkje visa ei melding frå denne brukaren: ho inneheldt ulovlege "
-#~ "teikn.]"
-
-#~ msgid "Search for Buddy by Information"
-#~ msgstr "Søk etter venn utfrå opplysningar"
-
-#~ msgid "The nick name you entered is invalid."
-#~ msgstr "Kallenamnet du skreiv er ugyldig."
-
-#~ msgid "MXit Login Name"
-#~ msgstr "Påloggingsnamn MXit"
-
-#~ msgid "Nick Name"
-#~ msgstr "Kallenamn"
-
-#~ msgid "Your Mobile Number..."
-#~ msgstr "Mobiltelefonnummeret ditt…"
-
-#~ msgid "/Media/_Hangup"
-#~ msgstr "/Media/_Legg på"
-
-#~ msgid "The certificate is not valid yet."
-#~ msgstr "Sertifikatet er ikkje gyldig enno."
-
-#~ msgid "Rate to host"
-#~ msgstr "Fart mot vert"
-
-#~ msgid "Rate to client"
-#~ msgstr "Fart mot klient"
-
-#~ msgid "Unknown reason."
-#~ msgstr "Ukjend årsak."
-
-#~ msgid "Current Mood"
-#~ msgstr "Sinnsstemninga no"
-
-#~ msgid "New Mood"
-#~ msgstr "Ny sinnsstemning"
-
-#~ msgid "Change your Mood"
-#~ msgstr "Endra sinnsstemninga di"
-
-#~ msgid "How do you feel right now?"
-#~ msgstr "Korleis kjenner du deg nett no?"
-
-#~ msgid "Change Mood..."
-#~ msgstr "Endra sinnsstemninga…"
-
-#~ msgid "Orientation"
-#~ msgstr "Orientering"
-
-#~ msgid "The orientation of the tray."
-#~ msgstr "Panelorienteringa."
-
-#~ msgid "Artist"
-#~ msgstr "Kunstnar"
-
-#~ msgid "Album"
-#~ msgstr "Album"
-
-#~ msgid "Pager server"
-#~ msgstr "Søkjetenestetenar"
-
-#~ msgid "Yahoo Chat server"
-#~ msgstr "Yahoo pratetenar"
-
-#~ msgid "Yahoo Chat port"
-#~ msgstr "Yahoo prateport"
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "Overføringa av samtidsdatastraumen feila\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Overføringa blei lukka."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Klarte ikkje å opna samtidsdatastraum"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Vel visingsnamn."
--- a/po/pl.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/pl.po	Tue Nov 23 07:50:25 2010 +0000
@@ -13,8 +13,8 @@
 msgstr ""
 "Project-Id-Version: Pidgin Polish translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-20 12:58+0200\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-16 22:28+0100\n"
 "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
 "Language-Team: Polish <pl@li.org>\n"
 "Language: pl\n"
@@ -4883,15 +4883,6 @@
 msgid "Unknown Error in presence"
 msgstr "Nieznany błąd obecności"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Wystąpił błąd przesyłania strumienia bitów w paśmie\n"
-
-msgid "Transfer was closed."
-msgstr "Przesyłanie zostało zamknięte."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Otwarcie strumienia bitów w paśmie się nie powiodło"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5209,26 +5200,6 @@
 msgid "The username specified does not exist."
 msgstr "Podana nazwa użytkownika nie istnieje."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Problem synchronizacji listy znajomych w %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"Użytkownik %s na lokalnej liście jest w grupie \"%s\", ale nie ma go na "
-"serwerze. Dodać tego znajomego?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"Użytkownik %s znajduje się na lokalnej liście, ale nie ma go na serwerze. "
-"Dodać tego użytkownika?"
-
 msgid "Unable to parse message"
 msgstr "Nie można przetworzyć wiadomości"
 
@@ -5399,6 +5370,26 @@
 msgid "MSN Error: %s\n"
 msgstr "Błąd MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Problem synchronizacji listy znajomych w %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"Użytkownik %s na lokalnej liście jest w grupie \"%s\", ale nie ma go na "
+"serwerze. Dodać tego znajomego?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"Użytkownik %s znajduje się na lokalnej liście, ale nie ma go na serwerze. "
+"Dodać tego użytkownika?"
+
 msgid "Other Contacts"
 msgstr "Inne kontakty"
 
@@ -5452,12 +5443,24 @@
 msgid "Set friendly name for %s."
 msgstr "Ustawienie pseudonimu dla %s."
 
-msgid "Set your friendly name."
-msgstr "Ustawienie pseudonimu."
+msgid "Set Friendly Name"
+msgstr "Ustaw pseudonim"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Ta nazwa będzie widoczna dla innych znajomych MSN."
 
+msgid "This Location"
+msgstr "To położenie"
+
+msgid "This is the name that identifies this location"
+msgstr "Ta nazwa identyfikuje to położenie."
+
+msgid "Other Locations"
+msgstr "Inne położenia"
+
+msgid "You can sign out from other locations here"
+msgstr "Tutaj można wylogować się z innych położeń"
+
 msgid "Set your home phone number."
 msgstr "Ustawienie numeru telefonu domowego."
 
@@ -5543,6 +5546,9 @@
 msgid "Set Friendly Name..."
 msgstr "Ustaw pseudonim..."
 
+msgid "View Locations..."
+msgstr "Wyświetl położenia..."
+
 msgid "Set Home Phone Number..."
 msgstr "Ustaw domowy numer telefonu..."
 
@@ -6953,6 +6959,13 @@
 "spróbować ponownie. Jeśli próba zostanie podjęta teraz, czas oczekiwania "
 "jeszcze się wydłuży."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Szyfrowanie jest wymagane w ustawieniach konta, ale jeden z serwerów go nie "
+"obsługuje."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7263,6 +7276,13 @@
 "Nazwy użytkowników muszą być prawidłowymi adresami e-mail lub zaczynać się "
 "od litery i zawierać tylko litery, liczby i spacje lub zawierać tylko liczby."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Wymagane jest szyfrowanie w ustawieniach konta, ale nie jest ono obsługiwane "
+"przez system."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7802,13 +7822,11 @@
 msgid "Set Privacy Options..."
 msgstr "Ustaw opcje prywatności..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Lista widocznych"
-
-#, fuzzy
+msgstr "Wyświetl lista widocznych"
+
 msgid "Show Invisible List"
-msgstr "Lista niewidocznych"
+msgstr "Wyświetl listę niewidocznych"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7826,6 +7844,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Wyszukaj znajomych według adresu e-mail..."
 
+msgid "Don't use encryption"
+msgstr "Bez użycia szyfrowania"
+
 msgid "Use clientLogin"
 msgstr "Użycie logowania klienta"
 
@@ -8026,7 +8047,7 @@
 msgstr "Osobista strona WWW"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Dodatkowe informacje"
 
@@ -8054,16 +8075,28 @@
 msgid "Capabilities"
 msgstr "Możliwości"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Wygląda na tryb online"
 
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
 msgstr "Nie wygląda na tryb online"
 
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "Wygląda na tryb offline"
 
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
 msgstr "Nie wygląda na tryb offline"
 
@@ -12376,6 +12409,9 @@
 msgid "Lao"
 msgstr "laotański"
 
+msgid "Maithili"
+msgstr "maithili"
+
 msgid "Macedonian"
 msgstr "macedoński"
 
--- a/po/ro.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/ro.po	Tue Nov 23 07:50:25 2010 +0000
@@ -5,11 +5,11 @@
 # Contributions: 2007, Alexandru Szasz <alexxed@gmail.com>
 msgid ""
 msgstr ""
-"Project-Id-Version: pidgin-2.7.4\n"
+"Project-Id-Version: pidgin-2.7.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-20 23:11+0300\n"
-"Last-Translator: Mișu Moldovan <dumol@gnome.org>\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-20 18:36+0200\n"
+"Last-Translator: Mișu Moldovan <dumol@l10n.ro>\n"
 "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
 "Language: ro\n"
 "MIME-Version: 1.0\n"
@@ -4861,15 +4861,6 @@
 msgid "Unknown Error in presence"
 msgstr "Eroare necunoscută în starea de prezență"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "A apărut o eroare la transferul de octeți în-bandă\n"
-
-msgid "Transfer was closed."
-msgstr "Transferul a fost închis"
-
-msgid "Failed to open in-band bytestream"
-msgstr "Nu s-a putut deschide fluxul de octeți în-bandă"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5186,26 +5177,6 @@
 msgid "The username specified does not exist."
 msgstr "Numele de utilizator specificat nu există."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Probleme de sincronizare a liste de contacte în %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s din grupul „%s” e în lista contactelor, dar nu este în lista de pe "
-"server. Doriți să adăugați acest contact?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s este în lista contactelor, dar nu și în lista de pe server. Doriți să "
-"adăugați acest contact?"
-
 msgid "Unable to parse message"
 msgstr "Nu se poate prelucra mesajul"
 
@@ -5376,6 +5347,26 @@
 msgid "MSN Error: %s\n"
 msgstr "Eroare MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Probleme de sincronizare a liste de contacte în %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s din grupul „%s” e în lista contactelor, dar nu este în lista de pe "
+"server. Doriți să adăugați acest contact?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s este în lista contactelor, dar nu și în lista de pe server. Doriți să "
+"adăugați acest contact?"
+
 msgid "Other Contacts"
 msgstr "Alte contacte"
 
@@ -5428,12 +5419,24 @@
 msgid "Set friendly name for %s."
 msgstr "Alegeți un pseudonim pentru %s."
 
-msgid "Set your friendly name."
-msgstr "Alegeți-vă un pseudonim propriu."
+msgid "Set Friendly Name"
+msgstr "Introducere pseudonim"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Acesta este numele sub care veți fi cunoscuți de contactele MSN."
 
+msgid "This Location"
+msgstr "Acest loc"
+
+msgid "This is the name that identifies this location"
+msgstr "Aceasta este denumirea pentru acest loc"
+
+msgid "Other Locations"
+msgstr "Alte locuri"
+
+msgid "You can sign out from other locations here"
+msgstr "Aici puteți să anulați alte autentificări curente"
+
 msgid "Set your home phone number."
 msgstr "Introduceți numărul telefonului de acasă."
 
@@ -5520,6 +5523,9 @@
 msgid "Set Friendly Name..."
 msgstr "Introducere pseudonim..."
 
+msgid "View Locations..."
+msgstr "Vizualizare locuri..."
+
 msgid "Set Home Phone Number..."
 msgstr "Introducere număr telefon acasă..."
 
@@ -6926,6 +6932,12 @@
 "V-ați conectat și deconectat prea des. Așteptați zece minute și încercați "
 "din nou. Dacă continuați să încercați, va trebui să așteptați mai mult."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Se cere criptare în opțiunile contului, dar unul dintre servere nu o suportă."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7238,6 +7250,13 @@
 "cu o literă și să conțină doar litere, numere și spații sau să conțină doar "
 "numere."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Se cere criptare în opțiunile contului, dar acest sistem de operare nu o "
+"suportă."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -7769,13 +7788,11 @@
 msgid "Set Privacy Options..."
 msgstr "Opțiuni de securitate..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Listă de vizibilitate"
-
-#, fuzzy
+msgstr "Lista celor ce vă văd"
+
 msgid "Show Invisible List"
-msgstr "Listă de invizibilitate"
+msgstr "Lista celor ce nu vă văd"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7793,6 +7810,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Căutare contact după adresa de mail..."
 
+msgid "Don't use encryption"
+msgstr "Nu utiliza criptare"
+
 msgid "Use clientLogin"
 msgstr "Utilizați clientLogin"
 
@@ -7992,7 +8012,7 @@
 msgstr "Pagină personală"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Alte informații"
 
@@ -8020,16 +8040,28 @@
 msgid "Capabilities"
 msgstr "Facilități"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Apar online"
 
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
 msgstr "Nu apar online"
 
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "Apar offline"
 
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
 msgstr "Nu apar offline"
 
@@ -12354,6 +12386,9 @@
 msgid "Lao"
 msgstr "Lao"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Macedoneană"
 
@@ -15458,3 +15493,15 @@
 
 msgid "You do not have permission to uninstall this application."
 msgstr "Nu aveţi drepturile de acces necesare dezinstalării acestei aplicaţii."
+
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "A apărut o eroare la transferul de octeți în-bandă\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Transferul a fost închis"
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Nu s-a putut deschide fluxul de octeți în-bandă"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Alegeți-vă un pseudonim propriu."
--- a/po/sq.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/sq.po	Tue Nov 23 07:50:25 2010 +0000
@@ -8,8 +8,8 @@
 msgstr ""
 "Project-Id-Version: trunk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-05-03 11:41+0200\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-16 20:58+0200\n"
 "Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
 "Language-Team: Albanian <besnik@programeshqip.org>\n"
 "Language: sq\n"
@@ -65,9 +65,8 @@
 msgid "Error"
 msgstr "Gabim"
 
-#, fuzzy
 msgid "Account was not modified"
-msgstr "Nuk u shtua llogaria"
+msgstr "Llogaria nuk u ndryshua"
 
 msgid "Account was not added"
 msgstr "Nuk u shtua llogaria"
@@ -78,10 +77,14 @@
 msgid ""
 "The account's protocol cannot be changed while it is connected to the server."
 msgstr ""
+"Protokolli i llogarisë nuk mund të ndryshohet kur është i lidhur te "
+"shërbyesi."
 
 msgid ""
 "The account's username cannot be changed while it is connected to the server."
 msgstr ""
+"Emri i përdoruesit për llogarinë nuk mund të ndryshohet kur është i lidhur "
+"te shërbyesi."
 
 msgid "New mail notifications"
 msgstr "Njoftime poste të re"
@@ -814,7 +817,7 @@
 msgstr "Po pritet të fillojë shpërngulja"
 
 msgid "Cancelled"
-msgstr "Anuluar"
+msgstr "U anulua"
 
 msgid "Failed"
 msgstr "Dështova"
@@ -1299,7 +1302,7 @@
 msgstr "Dikush thotë emrin tuaj në fjalosje"
 
 msgid "Attention received"
-msgstr ""
+msgstr "U mor vëmendje"
 
 msgid "GStreamer Failure"
 msgstr "Dështim i GStreamer-it"
@@ -1726,12 +1729,15 @@
 "The certificate is not valid yet.  Check that your computer's date and time "
 "are accurate."
 msgstr ""
-
-#, fuzzy
+"Dëshmia nuk është ende e vlefshme.  Kontrolloni që data dhe koha e "
+"kompjuterit tuaj janë të sakta."
+
 msgid ""
 "The certificate has expired and should not be considered valid.  Check that "
 "your computer's date and time are accurate."
-msgstr "Dëshmia ka skaduar dhe nuk duhet marrë si e vlefshme."
+msgstr ""
+"Dëshmia ka skaduar dhe nuk duhet marrë si e vlefshme. Kontrolloni në janë të "
+"sakta data dhe ora e kompjuterit."
 
 #. Translators: "domain" refers to a DNS domain (e.g. talk.google.com)
 msgid "The certificate presented is not issued to this domain."
@@ -4073,19 +4079,18 @@
 "Shërbyesi mendon se mirëfilltësimi është i plotë, por klienti nuk mendon "
 "kështu."
 
-#, fuzzy
 msgid "Server may require plaintext authentication over an unencrypted stream"
 msgstr ""
-"karshi një rrjedhe të pakoduar shërbyesi lyp mirëfilltësim me bazë tekst të "
-"thjeshtë"
-
-#, fuzzy, c-format
+"Shërbyesi mund të kërkojë mirëfilltësim në trajtë teksti të thjeshtë përmes "
+"një lidhjeje të pakoduar."
+
+#, c-format
 msgid ""
 "%s may require plaintext authentication over an unencrypted connection.  "
 "Allow this and continue authentication?"
 msgstr ""
-"%s lyp mirëfilltësim në trajtë teksti të thjeshtë përmes një lidhjeje të "
-"pakoduar. Ta lejojë këtë dhe të vazhdojë me mirëfilltësimin? "
+"%s mund të kërkojë mirëfilltësim në trajtë teksti të thjeshtë përmes një "
+"lidhjeje të pakoduar. Të lejohet kjo dhe të vazhdohet me mirëfilltësimin? "
 
 msgid "SASL authentication failed"
 msgstr "Mirëfilltësimi SASL dështoi"
@@ -4984,20 +4989,17 @@
 msgid "Domain"
 msgstr "Përkatësi"
 
-#, fuzzy
 msgid "Require encryption"
-msgstr "Kërko autorizim"
-
-#, fuzzy
+msgstr "Lyp kodim"
+
 msgid "Use encryption if available"
-msgstr "Të dhëna përdoruesi jo të mundshme: %s"
+msgstr "Përdor kodim në qoftë e mundur"
 
 msgid "Use old-style SSL"
-msgstr ""
-
-#, fuzzy
+msgstr "Përdor SSL të vjetër"
+
 msgid "Connection security"
-msgstr "Rivendosje lidhjeje"
+msgstr "Siguri Lidhjeje"
 
 msgid "Allow plaintext auth over unencrypted streams"
 msgstr "Lejo autorizim në formë teksti të thjeshtë në rrjedha të pakoduara"
@@ -5104,15 +5106,6 @@
 msgid "Unknown Error in presence"
 msgstr "Gabim i Panjohur te prania"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Ndodhi një gabim në shpërnguljen \"in-band bytestream\"\n"
-
-msgid "Transfer was closed."
-msgstr "Shpërngulja u mbyll."
-
-msgid "Failed to open in-band bytestream"
-msgstr "Dështoi në hapjen e \"in-band bytestream\""
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5436,26 +5429,6 @@
 msgid "The username specified does not exist."
 msgstr "Emri i dhënë i përdoruesit nuk ekziston."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Problem njëkohësimi liste shokësh në %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s i listës vendore është brenda grupit \"%s\" por jo në listën e "
-"shërbyesit. Doni të shtohet ky shok?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s është në listën vendore por jo në listën e shërbyesit. Doni të shtohet ky "
-"shok?"
-
 msgid "Unable to parse message"
 msgstr "I pazoti të përtypë mesazh"
 
@@ -5626,6 +5599,26 @@
 msgid "MSN Error: %s\n"
 msgstr "Gabim MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Problem njëkohësimi liste shokësh në %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s i listës vendore është brenda grupit \"%s\" por jo në listën e "
+"shërbyesit. Doni të shtohet ky shok?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s është në listën vendore por jo në listën e shërbyesit. Doni të shtohet ky "
+"shok?"
+
 msgid "Other Contacts"
 msgstr "Kontakte të Tjera"
 
@@ -5678,12 +5671,24 @@
 msgid "Set friendly name for %s."
 msgstr "Caktoni emër miqësor për %s."
 
-msgid "Set your friendly name."
-msgstr "Caktoni ermin tuaj miqësor."
+msgid "Set Friendly Name"
+msgstr "Caktoni Emër Miqësor"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Ky është emri me të cilin do t'ju shohin shokë të tjerë MSN-së."
 
+msgid "This Location"
+msgstr "Këtë Vend"
+
+msgid "This is the name that identifies this location"
+msgstr "Ky është emri që identifikon këtë vend"
+
+msgid "Other Locations"
+msgstr "Vende të Tjera"
+
+msgid "You can sign out from other locations here"
+msgstr "Këtu mund të dilni prej vendesh të tjera"
+
 msgid "Set your home phone number."
 msgstr "Vini numrin tuaj të telefonit."
 
@@ -5770,6 +5775,9 @@
 msgid "Set Friendly Name..."
 msgstr "Caktoni Emër Miqësor..."
 
+msgid "View Locations..."
+msgstr "Shihni Vendet..."
+
 msgid "Set Home Phone Number..."
 msgstr "Vini Numër Telefoni të Shtëpisë..."
 
@@ -6019,9 +6027,8 @@
 msgid "Show custom smileys"
 msgstr "Shfaq emotikone vetjake"
 
-#, fuzzy
 msgid "Allow direct connections"
-msgstr "I pazoti të krijojë lidhje"
+msgstr "Lejo lidhje të drejtpërdrejta"
 
 msgid "nudge: nudge a user to get their attention"
 msgstr "nudge: preke një përdorues me bërryl për t'i tërhequr vëmendjen"
@@ -6226,9 +6233,8 @@
 msgid "The two PINs you entered do not match."
 msgstr "Dy PIN-et që dhatë nuk përputhen."
 
-#, fuzzy
 msgid "The Display Name you entered is invalid."
-msgstr "Emri që dhatë është i pavlefshëm."
+msgstr "Emri për në Ekran që dhatë është e mangët."
 
 msgid ""
 "The birthday you entered is invalid. The correct format is: 'YYYY-MM-DD'."
@@ -6249,7 +6255,7 @@
 "Të dhënat e profilit tuaj nuk janë marrë ende. Ju lutem,, riprovoni më vonë."
 
 msgid "Your UID"
-msgstr ""
+msgstr "UID-ja juaj"
 
 #. pin
 #. pin (required)
@@ -6333,7 +6339,7 @@
 
 #. mxit login name
 msgid "MXit ID"
-msgstr ""
+msgstr "ID MXit"
 
 #. show the form to the user to complete
 msgid "Register New MXit Account"
@@ -6363,17 +6369,15 @@
 msgid "Invalid country selected. Please try again."
 msgstr "U përzgjodh vend i pavlefshëm. Ju lutem,, riprovoni."
 
-#, fuzzy
 msgid "The MXit ID you entered is not registered. Please register first."
 msgstr ""
-"Emri i përdoruesit nuk është i regjistruar. Ju lutem,, së pari  "
+"ID-ja MXit që dhatë nuk është e regjistruar. Ju lutem, së pari  "
 "regjistrohuni."
 
-#, fuzzy
 msgid "The MXit ID you entered is already registered. Please choose another."
 msgstr ""
-"Ky emër përdoruesi është i regjistruar tashmë. Ju lutem,, zgjidhni një emër "
-"tjetër përdoruesi."
+"ID-ja MXit që dhatë është tashmë e regjistruar. Ju lutem, zgjidhni një "
+"tjetër."
 
 msgid "Internal error. Please try again later."
 msgstr "Gabim i brendshëm. Ju lutem,, riprovoni më vonë."
@@ -6412,17 +6416,15 @@
 msgid "Status Message"
 msgstr "Mesazh Gjendjeje"
 
-#, fuzzy
 msgid "Rejection Message"
-msgstr "Mesazhe të Marrë"
+msgstr "Mesazh Mospranimi"
 
 #. hidden number
 msgid "Hidden Number"
 msgstr "Numër i Fshehur"
 
-#, fuzzy
 msgid "Your MXit ID..."
-msgstr "ID Yahoo..."
+msgstr "ID-ja Juaj MXit..."
 
 #. Configuration options
 #. WAP server (reference: "libpurple/accountopt.h")
@@ -6437,26 +6439,21 @@
 msgstr "Aktivizo flluskën e siglës"
 
 #. you were kicked
-#, fuzzy
 msgid "You have been kicked from this MultiMX."
-msgstr "Jeni përzënë: (%s)"
-
-#, fuzzy
+msgstr "Jepni përzënë nga ky MultiMX."
+
 msgid "was kicked"
-msgstr "Biletë e pavlefshme"
-
-#, fuzzy
+msgstr "u përzu"
+
 msgid "_Room Name:"
-msgstr "_Dhomë:"
+msgstr "_Emër Dhome:"
 
 #. Display system message in chat window
-#, fuzzy
 msgid "You have invited"
-msgstr "Ju ka ardhur postë!"
-
-#, fuzzy
+msgstr "Keni ftuar"
+
 msgid "Last Online"
-msgstr "I lidhur"
+msgstr "Së fundi Online"
 
 #. we must have lost the connection, so terminate it so that we can reconnect
 msgid "We have lost the connection to MXit. Please reconnect."
@@ -7234,6 +7231,13 @@
 "Jeni lidhur e shkëputur shumë shpesh. Prisni dhjetë minuta dhe riprovoni. "
 "nëse vazhdoni të provoni, do t'ju duhet të prisni edhe më."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Te rregullimet tuaja për llogarinë kërkuat kodim, por një nga shërbyesat nuk "
+"e mbulon atë. "
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -7528,7 +7532,7 @@
 msgstr "I padukshëm"
 
 msgid "Evil"
-msgstr ""
+msgstr "Goxha i keq"
 
 msgid "Depression"
 msgstr "Depresion"
@@ -7571,6 +7575,13 @@
 "të fillojnë me një gërmë dhe të përmbajnë vetëm gërma, numra dhe hapësira, "
 "ose të përmbajnë vetëm numra."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Te rregullimet tuaja për llogarinë kërkuat kodim, por kodimi nuk mbulohet "
+"nga sistemi juaj. "
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr ""
@@ -8053,9 +8064,8 @@
 msgid "Change Address To:"
 msgstr "Ndrysho Vendndodhje Si:"
 
-#, fuzzy
 msgid "you are not waiting for authorization"
-msgstr "<i>nuk po prisni për autorizim</i>"
+msgstr "nuk po prisni për autorizim"
 
 msgid "You are awaiting authorization from the following buddies"
 msgstr "Po prisni autorizim prej shokëve vijues"
@@ -8093,13 +8103,11 @@
 msgid "Set Privacy Options..."
 msgstr "Caktoni Mundësi Vetësie..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Shfaq _Listë Shokësh"
-
-#, fuzzy
+msgstr "Shfaq Listë të Dukshme"
+
 msgid "Show Invisible List"
-msgstr "Listë Ftesash"
+msgstr "Shfaq Listë të Padukshme"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -8117,6 +8125,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Kërkoni një Shok përmes Vendndodhjes Email..."
 
+msgid "Don't use encryption"
+msgstr "Mos përdor kodim"
+
 msgid "Use clientLogin"
 msgstr "Përdor \"clientLogin\""
 
@@ -8315,7 +8326,7 @@
 msgstr "Faqe Web Personale"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "Të dhëna Shtesë"
 
@@ -8343,46 +8354,53 @@
 msgid "Capabilities"
 msgstr "Aftësi"
 
-#. 4 separate strings are needed in order to ease translators' job
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "Shfaqu I lidhur"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "Shfaqu I lidhur"
-
+msgstr "Mos u Shfaq Online"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "Shfaqet Jo i lidhur"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "Shfaqet Jo i lidhur"
-
-#, fuzzy
+msgstr "Mos Shfaq Offline"
+
 msgid "you have no buddies on this list"
-msgstr "Jeni përzënë: (%s)"
-
-#, fuzzy, c-format
+msgstr "nuk keni shokë në këtë listë"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"Mund të rikërkoni autorizim prej këtyre shokëve duke djathtas klikuar mbi ta "
-"dhe përzgjedhur \"Rikërko Autorizim.\""
-
-#, fuzzy
+"Një shok mund ta shtoni në këtë listë duke djathtasklikuar mbi të dhe "
+"përzgjedhur \"%s\""
+
 msgid "Visible List"
-msgstr "I dukshëm"
+msgstr "Listë e Dukshme"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "Këta shokë do ta shohin gjendjen tuaj kur kaloni si \"I padukshëm\""
+
 msgid "Invisible List"
-msgstr "Listë Ftesash"
+msgstr "Listë e Padukshme"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Këta shokë do t'ju shohin përherë si offline"
 
 msgid "Aquarius"
 msgstr "Ujori"
@@ -8567,9 +8585,9 @@
 msgid "Your request was rejected."
 msgstr "Kërkesa juaj u hodh poshtë."
 
-#, fuzzy, c-format
+#, c-format
 msgid "%u requires verification: %s"
-msgstr "%u lyp verifikim"
+msgstr "%u lyp verifikim: %s"
 
 msgid "Add buddy question"
 msgstr "Pyetje shtimi shoku"
@@ -10002,7 +10020,7 @@
 msgstr "Nuk mundi të asgjësojë përdorues"
 
 msgid "WATCH"
-msgstr ""
+msgstr "MBIKQYRE"
 
 msgid "Cannot watch user"
 msgstr "S'ndjek dot përdoruesin"
@@ -10653,9 +10671,8 @@
 msgid "Ignore conference and chatroom invitations"
 msgstr "Shpërfill ftesa konferencash dhe dhomash fjalosjeje"
 
-#, fuzzy
 msgid "Use account proxy for HTTP and HTTPS connections"
-msgstr "Përdor ndërmjetës llogarie për lidhje SSL"
+msgstr "Për lidhjet HTTP dhe HTTPS përdor ndërmjetës llogarie "
 
 msgid "Chat room list URL"
 msgstr "Url liste dhome fjalosjeje"
@@ -11597,9 +11614,9 @@
 "Mund t'i riktheheni kësaj dritareje për shtim, përpunim apo heqje llogarish "
 "nga <b>Llogari->Administroni Llogarira</b> te dritarja e Listave të Shokëve"
 
-#, fuzzy, c-format
+#, c-format
 msgid "%s%s%s%s wants to add you (%s) to his or her buddy list%s%s"
-msgstr "%s%s%s%s don të shtojë %s te listë e tij ose e saj shokësh%s%s"
+msgstr "%s%s%s%s don t'ju shtojë (%s) te lista e tij e shokëve %s%s"
 
 #. Buddy List
 msgid "Background Color"
@@ -12653,9 +12670,8 @@
 msgid "Arabic"
 msgstr "Arabe"
 
-#, fuzzy
 msgid "Assamese"
-msgstr "I turpëruar"
+msgstr "Asameze"
 
 msgid "Belarusian Latin"
 msgstr "Bjelloruse Latine"
@@ -12780,12 +12796,14 @@
 msgid "Lao"
 msgstr "Lao"
 
+msgid "Maithili"
+msgstr "Maithili"
+
 msgid "Macedonian"
 msgstr "Maqedone"
 
-#, fuzzy
 msgid "Malayalam"
-msgstr "Malaje"
+msgstr "Malajalame"
 
 msgid "Mongolian"
 msgstr "Mongole"
@@ -13508,7 +13526,7 @@
 "\n"
 
 msgid "DIR"
-msgstr ""
+msgstr "DIR"
 
 msgid "use DIR for config files"
 msgstr "për kartela formësimi përdor DIR"
@@ -13530,7 +13548,7 @@
 msgstr "mos hyr vetvetiu"
 
 msgid "NAME"
-msgstr ""
+msgstr "EMËR"
 
 msgid ""
 "enable specified account(s) (optional argument NAME\n"
@@ -13578,9 +13596,8 @@
 msgid "Exiting because another libpurple client is already running.\n"
 msgstr "Po dilet, ngaqë ka një tjetër klient libpurple në xhirim e sipër.\n"
 
-#, fuzzy
 msgid "_Media"
-msgstr "/_Media"
+msgstr "_Media"
 
 msgid "_Hangup"
 msgstr ""
@@ -14007,9 +14024,8 @@
 msgid "_TURN server:"
 msgstr "Shërbyes _TURN:"
 
-#, fuzzy
 msgid "_UDP Port:"
-msgstr "_Portë:"
+msgstr "Portë _UDP:"
 
 msgid "Use_rname:"
 msgstr "_Emër përdoruesi:"
@@ -14033,7 +14049,7 @@
 msgstr "Konqueror"
 
 msgid "Google Chrome"
-msgstr ""
+msgstr "Google Chrome"
 
 #. Do not move the line below.  Code below expects gnome-open to be in
 #. * this list immediately after xdg-open!
@@ -14057,11 +14073,11 @@
 
 #. Translators: please do not translate "chromium-browser" here!
 msgid "Chromium (chromium-browser)"
-msgstr ""
+msgstr "Chromium (chromium-browser)"
 
 #. Translators: please do not translate "chrome" here!
 msgid "Chromium (chrome)"
-msgstr ""
+msgstr "Chromium (chrome)"
 
 msgid "Manual"
 msgstr "Dorazi"
@@ -14605,7 +14621,6 @@
 msgid "Small"
 msgstr "E vogël"
 
-#, fuzzy
 msgid "Smaller versions of the default smileys"
 msgstr "Versione më të vegjël të emotikoneve parazgjedhje"
 
@@ -15798,9 +15813,8 @@
 msgid "Voice/Video Settings"
 msgstr "Rregullime Zë/Figurë"
 
-#, fuzzy
 msgid "Voice and Video Settings"
-msgstr "Rregullime Zë/Figurë"
+msgstr "Rregullime për Zë dhe Video"
 
 #. *< name
 #. *< version
@@ -15950,35 +15964,39 @@
 "$(^Name) is released under the GNU General Public License (GPL). The license "
 "is provided here for information purposes only. $_CLICK"
 msgstr ""
+"$(^Name) qarkullon nën lejen GNU General Public License (GPL). Leja këtu "
+"jepet vetëm për qëllime informimi. $_CLICK"
 
 #. Installer Subsection Detailed Description
 msgid "A multi-platform GUI toolkit, used by Pidgin"
-msgstr "Një grup mjetesh shumëplatformësh për GUI, përdorur nga Pidgin-i"
+msgstr "Një grupmjetesh ndërplatformësh GUI, i përdorur nga Pidgin"
 
 msgid ""
 "An instance of Pidgin is currently running.  Please exit Pidgin and try "
 "again."
 msgstr ""
+"Ka një instancë të Pidgin-it në xhirim e sipër.  Ju lutem, dilni prej Pidgin-"
+"it dhe riprovoni."
 
 #. Installer Subsection Detailed Description
 msgid "Core Pidgin files and dlls"
-msgstr "Kartela dhe dll bazë të Pidgin-it"
+msgstr "Kartelat dhe dll-të bazë të Pidgin-it"
 
 #. Installer Subsection Detailed Description
 msgid "Create a Start Menu entry for Pidgin"
-msgstr ""
+msgstr "Krijo një zë Menuje Nisjeje për Pidgin-n"
 
 #. Installer Subsection Detailed Description
 msgid "Create a shortcut to Pidgin on the Desktop"
-msgstr ""
+msgstr "Krijo në Desktop një shkurtire për Pidgin-in"
 
 #. Installer Subsection Text
 msgid "Debug Symbols (for reporting crashes)"
-msgstr ""
+msgstr "Simbole Diagnostikimi (për raportim vithisjesh)"
 
 #. Installer Subsection Text
 msgid "Desktop"
-msgstr ""
+msgstr "Desktop"
 
 #. $R2 will display the URL that the GTK+ Runtime failed to download from
 msgid ""
@@ -15986,12 +16004,18 @@
 "function; if retrying fails, you may need to use the 'Offline Installer' "
 "from http://pidgin.im/download/windows/ ."
 msgstr ""
+"Gabim në shkarkimin e GTK+ Runtime ($R2).$\\rE domosdoshme që të funksionojë "
+"Pidgin-i; nëse riprovoni dhe prapë dështon, mund t'ju duhet të përdorni "
+"'Instaluesin Offline' prej http://pidgin.im/download/windows/ ."
 
 #. $R2 will display the URL that the Debug Symbols failed to download from
 msgid ""
 "Error Installing Debug Symbols ($R2).$\\rIf retrying fails, you may need to "
 "use the 'Offline Installer' from http://pidgin.im/download/windows/ ."
 msgstr ""
+"Gabim gjatë Instalimit të Simboleve të Diagnostikimit ($R2).$\\rNëse "
+"riprovoni dhe prapë dështon, mund t'ju duhet të përdorni 'Instaluesin "
+"Offline' prej http://pidgin.im/download/windows/ ."
 
 #. $R3 will display the URL that the Dictionary failed to download from
 #, no-c-format
@@ -16000,74 +16024,78 @@
 "installation instructions are at: http://developer.pidgin.im/wiki/Installing"
 "%20Pidgin#manual_win32_spellcheck_installation"
 msgstr ""
+"Gabim gjatë Instalimit të Kontrollit të Drejtshkrimit ($R3).$\\rNëse "
+"riprovoni dhe prapë dështon, udhëzimet për instalimin dorazi gjenden te: "
+"http://developer.pidgin.im/wiki/Installing"
+"%20Pidgin#manual_win32_spellcheck_installation"
 
 #. Installer Subsection Text
-#, fuzzy
 msgid "GTK+ Runtime (required if not present)"
-msgstr "GTK+ Runtime Environment (i nevojshëm)"
+msgstr "GTK+ Runtime (i domosdoshëm, nëse nuk është i pranishëm)"
 
 #. Installer Subsection Text
-#, fuzzy
 msgid "Localizations"
-msgstr "Vendndodhje"
+msgstr "Përkthime"
 
 #. "Next >" appears on a button on the License Page of the Installer
 msgid "Next >"
-msgstr "Më tej >"
+msgstr "Pasuesi >"
 
 #. Installer Subsection Text
 msgid "Pidgin Instant Messaging Client (required)"
-msgstr "Klient Shkëmbimi Mesazhesh të Atypëratyshëm Pidgin (i nevojshëm)"
+msgstr "Klienti Pidgin për ShKëmbim Mesazhesh të Atypëratyshëm (i domosdoshëm)"
 
 msgid ""
 "Pidgin requires a compatible GTK+ Runtime (which doesn't appear to be "
 "already present).$\\rAre you sure you want to skip installing the GTK+ "
 "Runtime?"
 msgstr ""
+"Pidgin-i lyp një GTK+ Runtime (që nuk duket se e keni).$\\rJeni i sigurt që "
+"dëshironi të anashkaloni instalimin e GTK+ Runtime?"
 
 #. Installer Subsection Text
-#, fuzzy
 msgid "Shortcuts"
 msgstr "Shkurtore"
 
 #. Installer Subsection Detailed Description
 msgid "Shortcuts for starting Pidgin"
-msgstr ""
+msgstr "Shkurtore për nisjen e Pidgin-it"
 
 #. Installer Subsection Text
 msgid "Spellchecking Support"
-msgstr ""
+msgstr "Mbulim Kontrolli Drejtshkrimi"
 
 #  Autostart
 #. Installer Subsection Text
-#, fuzzy
 msgid "Start Menu"
-msgstr "Nisje"
+msgstr "Menu Nisjeje"
 
 #. Installer Subsection Detailed Description
 msgid ""
 "Support for Spellchecking.  (Internet connection required for installation)"
 msgstr ""
+"Mbulim i Kontrollit të Drejtshkrimit. (Lyp lidhje në Internet për instalimin)"
 
 msgid "The installer is already running."
-msgstr ""
+msgstr "Instaluesi është në xhirim e sipër."
 
 msgid ""
 "The uninstaller could not find registry entries for Pidgin.$\\rIt is likely "
 "that another user installed this application."
 msgstr ""
-"Çinstaluesi nuk gjeti dot zëra regjistri për Pidgin-in.$\\rKa mundësi që "
-"këtë zbatim ta ketë instaluar një tjetër përdorues."
+"instaluesi nuk gjeti dot zërat e regjistrit për Pidgin-in.$\\rKa gjasa që "
+"këtë zbatim ta ketë instaluar një përdorues tjetër."
 
 #. Installer Subsection Text
-#, fuzzy
 msgid "URI Handlers"
-msgstr "Trajtues URL-je myim"
+msgstr "Trajtuesa URI"
 
 msgid ""
 "Unable to uninstall the currently installed version of Pidgin. The new "
 "version will be installed without removing the currently installed version."
 msgstr ""
+"I pazoti të çinstaloj versionin e tanishëm të Pidgin-it. Versioni i ri do të "
+"instalohet pa hequr versionin e tanishëm."
 
 #. Text displayed on Installer Finish Page
 msgid "Visit the Pidgin Web Page"
@@ -16076,28 +16104,42 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "Nuk keni leje të çinstaloni këtë zbatim."
 
+#~ msgid "The certificate is not valid yet."
+#~ msgstr "Dëshmia nuk është ende e vlefshme."
+
 #~ msgid "Require SSL/TLS"
 #~ msgstr "Lyp SSL/TLS"
 
 #~ msgid "Force old (port 5223) SSL"
 #~ msgstr "Detyro SSL të vjetër (porta 5223)"
 
-#~ msgid "The name you entered is invalid."
-#~ msgstr "Emri që dhatë është i pavlefshëm."
-
-#  The conversion failed!
-#~ msgid ""
-#~ "[Unable to display a message from this user because it contained invalid "
-#~ "characters.]"
-#~ msgstr ""
-#~ "[I pazoti të shfaqë mesazh prej këtij përdoruesi sepse përmbante shenja "
-#~ "të pavlefshme.]"
-
-#~ msgid "Search for Buddy by Information"
-#~ msgstr "Kërko për Shokë sipas Të dhënash"
-
-#~ msgid "The certificate is not valid yet."
-#~ msgstr "Dëshmia nuk është ende e vlefshme."
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "Ndodhi një gabim në shpërnguljen \"in-band bytestream\"\n"
+
+#~ msgid "Transfer was closed."
+#~ msgstr "Shpërngulja u mbyll."
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "Dështoi në hapjen e \"in-band bytestream\""
+
+#~ msgid "Set your friendly name."
+#~ msgstr "Caktoni ermin tuaj miqësor."
+
+#~ msgid "Current Mood"
+#~ msgstr "Humori i Çastit"
+
+#~ msgid "New Mood"
+#~ msgstr "Humori i Ri"
+
+#  if (js->protocol_options & CHANGE_PASSWORD) {
+#~ msgid "Change your Mood"
+#~ msgstr "Ndryshoni Humorin tuaj"
+
+#~ msgid "How do you feel right now?"
+#~ msgstr "Si ndjeheni tani?"
+
+#~ msgid "Change Mood..."
+#~ msgstr "Ndryshoni Humor..."
 
 #~ msgid "The nick name you entered is invalid."
 #~ msgstr "Nofka që dhatë është e mangët."
@@ -16120,21 +16162,16 @@
 #~ msgid "Unknown reason."
 #~ msgstr "Arsye e panjohur."
 
-#~ msgid "Current Mood"
-#~ msgstr "Humori i Çastit"
-
-#~ msgid "New Mood"
-#~ msgstr "Humori i Ri"
-
-#  if (js->protocol_options & CHANGE_PASSWORD) {
-#~ msgid "Change your Mood"
-#~ msgstr "Ndryshoni Humorin tuaj"
-
-#~ msgid "How do you feel right now?"
-#~ msgstr "Si ndjeheni tani?"
-
-#~ msgid "Change Mood..."
-#~ msgstr "Ndryshoni Humor..."
+#  The conversion failed!
+#~ msgid ""
+#~ "[Unable to display a message from this user because it contained invalid "
+#~ "characters.]"
+#~ msgstr ""
+#~ "[I pazoti të shfaqë mesazh prej këtij përdoruesi sepse përmbante shenja "
+#~ "të pavlefshme.]"
+
+#~ msgid "Search for Buddy by Information"
+#~ msgstr "Kërko për Shokë sipas Të dhënash"
 
 #~ msgid "Error creating conference."
 #~ msgstr "Gabim në krijimin e konferencës."
@@ -16440,9 +16477,6 @@
 #~ msgid "XHTML-IM"
 #~ msgstr "XHTML-IM"
 
-#~ msgid "User Location"
-#~ msgstr "Vendndodhje Përdoruesi"
-
 #~ msgid "User Avatar"
 #~ msgstr "Avatar Përdoruesi"
 
--- a/po/uk.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/uk.po	Tue Nov 23 07:50:25 2010 +0000
@@ -9,8 +9,8 @@
 msgstr ""
 "Project-Id-Version: Pidgin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-10 21:42+0300\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-17 22:25+0300\n"
 "Last-Translator: Oleksandr Kovalenko <alx.kovalenko@gmail.com>\n"
 "Language-Team: Ukrainian <uk@li.org>\n"
 "Language: uk\n"
@@ -4852,17 +4852,6 @@
 msgid "Unknown Error in presence"
 msgstr "Невідома помилка стану присутності"
 
-# http://xmpp.org/extensions/xep-0047.html
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Сталася помилка передавання внутрішнього потоку даних (IBB)\n"
-
-msgid "Transfer was closed."
-msgstr "Передавання було закрито."
-
-# http://xmpp.org/extensions/xep-0047.html
-msgid "Failed to open in-band bytestream"
-msgstr "Помилка відкривання внутрішнього потоку даних (IBB)"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr ""
@@ -5178,26 +5167,6 @@
 msgid "The username specified does not exist."
 msgstr "Визначене ім'я користувача не існує."
 
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "Проблема синхронізації переліку контактів у %s (%s)"
-
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s є у локальному переліку у групі \"%s\", але відсутній у переліку сервера. "
-"Хочете додати цей контакт?"
-
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s є у локальному переліку, але відсутній у переліку сервера. Хочете додати "
-"цей контакт?"
-
 msgid "Unable to parse message"
 msgstr "Не вдається розібрати повідомлення"
 
@@ -5368,6 +5337,26 @@
 msgid "MSN Error: %s\n"
 msgstr "Помилка MSN: %s\n"
 
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "Проблема синхронізації переліку контактів у %s (%s)"
+
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s є у локальному переліку у групі \"%s\", але відсутній у переліку сервера. "
+"Хочете додати цей контакт?"
+
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s є у локальному переліку, але відсутній у переліку сервера. Хочете додати "
+"цей контакт?"
+
 msgid "Other Contacts"
 msgstr "Інші контакти"
 
@@ -5420,12 +5409,24 @@
 msgid "Set friendly name for %s."
 msgstr "Встановити дружнє ім'я для %s."
 
-msgid "Set your friendly name."
-msgstr "Введіть ваше дружнє ім'я."
+msgid "Set Friendly Name"
+msgstr "Встановити дружнє ім'я"
 
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "Ім'я, під яким вас будуть бачити інші користувачі MSN."
 
+msgid "This Location"
+msgstr "Це місцезнаходження"
+
+msgid "This is the name that identifies this location"
+msgstr "Ця назва визначає місцезнаходження"
+
+msgid "Other Locations"
+msgstr "Інше місцезнаходження"
+
+msgid "You can sign out from other locations here"
+msgstr "Тут ви можете вийти з іншого місцезнаходження"
+
 msgid "Set your home phone number."
 msgstr "Введіть номер вашого домашнього телефону."
 
@@ -5512,6 +5513,9 @@
 msgid "Set Friendly Name..."
 msgstr "Встановити дружнє ім'я..."
 
+msgid "View Locations..."
+msgstr "Переглянути місцезнаходження..."
+
 msgid "Set Home Phone Number..."
 msgstr "Встановити номер домашнього телефону..."
 
@@ -6898,13 +6902,13 @@
 
 msgid "Please authorize me so I can add you to my buddy list."
 msgstr ""
+"Будь ласка, авторизуйте мене і я зможу додати Вас до мого переліку контактів."
 
 msgid "No reason given."
 msgstr "Причина не вказана."
 
-#, fuzzy
 msgid "Authorization Denied Message:"
-msgstr "Повідомлення відмови у авторизації:"
+msgstr "Повідомлення відмови в авторизації:"
 
 #, c-format
 msgid "Received unexpected response from %s: %s"
@@ -6921,6 +6925,13 @@
 "Ви занадто часто з'єднуєтесь та від'єднуєтесь. Зачекайте 10 хвилин та "
 "спробуйте знову. Якщо ви продовжите спроби, вам доведеться чекати ще довше."
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr ""
+"Ви увімкнули необхідність шифрування в налаштуваннях облікового запису, але "
+"один з серверів не підтримує його."
+
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
 #, c-format
@@ -6947,12 +6958,18 @@
 "encoding he is using, you can specify it in the advanced account options for "
 "your AIM/ICQ account.)"
 msgstr ""
+"(Сталася помилка отримання цього повідомлення. Контакт, з яким ви "
+"спілкуєтесь, можливо використовує інше кодування, ніж очікується. Якщо ви "
+"знаєте, яке кодування він використовує, ви можете визначити його в "
+"розширених налаштуваннях облікового запису AIM/ICQ.) "
 
 #, c-format
 msgid ""
 "(There was an error receiving this message.  Either you and %s have "
 "different encodings selected, or %s has a buggy client.)"
 msgstr ""
+"(Сталася помилка отримання цього повідомлення. Або ви та %s обрали різні "
+"кодування, або %s користується клієнтом з помилками.)"
 
 msgid "Could not join chat room"
 msgstr "Не вдалося приєднатися до кімнати балачки"
@@ -7230,6 +7247,13 @@
 "користувачів мають бути правильними адресами ел. пошти або починатися з "
 "літери та містити тільки літери, цифри та пробіли, або тільки цифри."
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr ""
+"Ви увімкнули необхідність шифрування в налаштуваннях облікового запису, але "
+"шифрування не підтримується вашою системою."
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr "Незабаром вас можуть від'єднати. Якщо так, перевірте %s на оновлення."
@@ -7758,13 +7782,11 @@
 msgid "Set Privacy Options..."
 msgstr "Встановити опції приватності..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "Показати _перелік контактів"
-
-#, fuzzy
+msgstr "Показати перелік видимих"
+
 msgid "Show Invisible List"
-msgstr "Перелік запрошень"
+msgstr "Показати перелік невидимих"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -7782,6 +7804,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "Шукати користувача за адресою ел.пошти..."
 
+msgid "Don't use encryption"
+msgstr "Не використовувати шифрування"
+
 msgid "Use clientLogin"
 msgstr "Використовувати clientLogin"
 
@@ -7897,177 +7922,164 @@
 msgid "Voice"
 msgstr "Голос"
 
-#, fuzzy
 msgid "AIM Direct IM"
-msgstr "Пряме миттєве повідомлення"
-
-#, fuzzy
+msgstr "AIM Direct IM"
+
 msgid "Get File"
-msgstr "Надсилання файлу"
-
-#, fuzzy
+msgstr "Отримати файл"
+
 msgid "Games"
-msgstr "Асамська"
+msgstr "Ігри"
 
 msgid "ICQ Xtraz"
-msgstr ""
+msgstr "ICQ Xtraz"
 
 msgid "Add-Ins"
-msgstr ""
-
-#, fuzzy
+msgstr "Додатки"
+
 msgid "Send Buddy List"
-msgstr "Перелік контактів"
-
-#, fuzzy
+msgstr "Надіслати перелік контактів"
+
 msgid "ICQ Direct Connect"
-msgstr "Дозволити прямі з'єднання"
-
-#, fuzzy
+msgstr "Пряме з'єднання ICQ"
+
 msgid "AP User"
-msgstr "Користувач"
+msgstr "Користувач AP"
 
 msgid "ICQ RTF"
-msgstr ""
+msgstr "ICQ RTF"
 
 msgid "Nihilist"
-msgstr ""
-
-#, fuzzy
+msgstr "Нігіліст"
+
 msgid "ICQ Server Relay"
-msgstr "Сервер каже:"
+msgstr "Транзитний сервер ICQ"
 
 msgid "Old ICQ UTF8"
-msgstr ""
+msgstr "Старий ICQ UTF8"
 
 msgid "Trillian Encryption"
-msgstr ""
+msgstr "Шифрування Trillian"
 
 msgid "ICQ UTF8"
-msgstr ""
+msgstr "ICQ UTF8"
 
 msgid "Hiptop"
-msgstr ""
-
-#, fuzzy
+msgstr "Хіп-хоп"
+
 msgid "Security Enabled"
-msgstr "Код безпеки"
-
-#, fuzzy
+msgstr "Безпека увімкнена"
+
 msgid "Video Chat"
-msgstr "_Відеовиклик"
-
-#, fuzzy
+msgstr "Відеобалачка"
+
 msgid "iChat AV"
-msgstr "Балачка"
-
-#, fuzzy
+msgstr "iChat AV"
+
 msgid "Live Video"
-msgstr " Відео"
-
-#, fuzzy
+msgstr "Відео наживо"
+
 msgid "Camera"
-msgstr "Відеокамера"
+msgstr "Камера"
 
 msgid "Screen Sharing"
-msgstr ""
+msgstr "Спільний екран"
 
 msgid "IP Address"
 msgstr "IP Адреса"
 
-#, fuzzy
 msgid "Warning Level"
-msgstr "Застереження"
-
-#, fuzzy
+msgstr "Рівень застереження"
+
 msgid "Buddy Comment"
-msgstr "Коментар користувача:"
-
-#, fuzzy, c-format
+msgstr "Коментар користувача"
+
+#, c-format
 msgid "User information not available: %s"
-msgstr "Використовувати шифрування, коли це можливо"
+msgstr "Відомості про користувача недоступні: %s"
 
 msgid "Mobile Phone"
 msgstr "Мобільний телефон"
 
-#, fuzzy
 msgid "Personal Web Page"
-msgstr "Особистий мобільний"
+msgstr "Особиста сторінка тенет"
 
 #. aim_userinfo_t
-#. strip_html_tags
-#, fuzzy
+#. use_html_status
 msgid "Additional Information"
-msgstr "Необов'язкові відомості:"
+msgstr "Додаткові відомості"
 
 msgid "Zip Code"
-msgstr ""
-
-#, fuzzy
+msgstr "Поштовий код"
+
 msgid "Work Information"
-msgstr "Більше відомостей"
+msgstr "Відомості про роботу"
 
 msgid "Division"
-msgstr ""
-
-#, fuzzy
+msgstr "Відділ"
+
 msgid "Position"
-msgstr "Опис"
-
-#, fuzzy
+msgstr "Посада"
+
 msgid "Web Page"
-msgstr "Домашня сторінка"
-
-#, fuzzy
+msgstr "Сторінка тенет"
+
 msgid "Online Since"
-msgstr "У мережі з"
+msgstr "В мережі з"
 
 msgid "Member Since"
 msgstr "Член з"
 
 msgid "Capabilities"
-msgstr ""
-
-#. 4 separate strings are needed in order to ease translators' job
+msgstr "Можливості"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "З'явився в мережі"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "З'явився в мережі"
-
+msgstr "Не з'являвся в мережі"
+
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
 msgstr "З'явився поза мережею"
 
-#, fuzzy
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "З'явився поза мережею"
-
-#, fuzzy
+msgstr "Не з'являвся поза мережею"
+
 msgid "you have no buddies on this list"
-msgstr "Вас викинули з цього MultiMX."
-
-#, fuzzy, c-format
+msgstr "немає контактів в цьому переліку"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"Ви можете повторно запитати авторизацію від цих користувачів, клацнувши на "
-"них правою кнопкою миші та вибравши \"Повторний запит авторизації\"."
-
-#, fuzzy
+"Ви можете додати контакт до цього переліку натиснувши на ньому правою "
+"кнопкою миші на вибравши \"%s"
+
 msgid "Visible List"
-msgstr "Видимий"
+msgstr "Перелік видимих"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "Ці контакти бачитимуть ваш стан, коли ви перемкнетеся на \"Невидимий\""
+
 msgid "Invisible List"
-msgstr "Перелік запрошень"
+msgstr "Перелік невидимих"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "Ці контакти завжди будуть бачити, що ви поза мережею"
 
 msgid "Aquarius"
 msgstr "Водолій"
@@ -12365,6 +12377,9 @@
 msgid "Lao"
 msgstr "Лао"
 
+msgid "Maithili"
+msgstr "Майтхілі"
+
 msgid "Macedonian"
 msgstr "Македонська"
 
@@ -15461,21 +15476,3 @@
 
 msgid "You do not have permission to uninstall this application."
 msgstr "Ви не маєте права на видалення цієї програми."
-
-#~ msgid "The certificate has expired and should not be considered valid."
-#~ msgstr "Термін дії сертифікату закінчився і його не слід вважати дійсним."
-
-#~ msgid "_UDP:"
-#~ msgstr "_UDP:"
-
-#~ msgid "_TCP:"
-#~ msgstr "_TCP:"
-
-#~ msgid "_TLS:"
-#~ msgstr "_TLS:"
-
-#~ msgid "Require SSL/TLS"
-#~ msgstr "Потребує SSL/TLS"
-
-#~ msgid "Force old (port 5223) SSL"
-#~ msgstr "Примусово старий (порт 5223) SSL"
--- a/po/zh_HK.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/zh_HK.po	Tue Nov 23 07:50:25 2010 +0000
@@ -8,7 +8,7 @@
 # LINE NUMBERS (LINES BEGINNING WITH #:) IN THIS FILE.
 #
 # This file is distributed under the same license as the "Pidgin" package.
-# $InternalId: zh_TW.po,v 1.650 2010/10/17 14:56:33 acli Exp $
+# $InternalId: zh_TW.po,v 1.655 2010/11/18 06:05:50 acli Exp $
 #
 # ----------------------------------------------------------
 # For internal use only:
@@ -60,11 +60,11 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Pidgin 2.7.4\n"
+"Project-Id-Version: Pidgin 2.7.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-17 10:55-0400\n"
-"Last-Translator: Paladin R. Liu <paladin@ms1.hinet.net>\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-15 16:24-0500\n"
+"Last-Translator: Ambrose Li <ambrose.li@gmail.com>\n"
 "Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
 "Language: zh_HK\n"
 "MIME-Version: 1.0\n"
@@ -5036,16 +5036,6 @@
 msgid "Unknown Error in presence"
 msgstr "不明的狀態資訊錯誤"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "帶內位元組流傳輸途中發生錯誤\n"
-
-# XXX 還是直譯「被關閉」? 20090305 acli
-msgid "Transfer was closed."
-msgstr "傳輸已被中止。"
-
-msgid "Failed to open in-band bytestream"
-msgstr "無法開啟帶內位元組流"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr "無法傳送檔案至 %s,因為對方不支援檔案傳輸"
@@ -5465,28 +5455,6 @@
 msgid "The username specified does not exist."
 msgstr "你所輸入的帳號並不存在。"
 
-# XXX 暫譯
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "為 %s (%s) 的好友清單進行同步化途中出現問題"
-
-# XXX 暫譯
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s 在本地端的好友清單的「%s」羣組裏,卻不在伺服器上;你要新增這個好友至伺服器"
-"的好友清單嗎?"
-
-# XXX 暫譯
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s 在本地端的好友清單,郤不在伺服器上;你要新增這個好友至伺服器的好友清單嗎?"
-
 msgid "Unable to parse message"
 msgstr "無法解析訊息"
 
@@ -5665,6 +5633,28 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN 錯誤:%s\n"
 
+# XXX 暫譯
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "為 %s (%s) 的好友清單進行同步化途中出現問題"
+
+# XXX 暫譯
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s 在本地端的好友清單的「%s」羣組裏,卻不在伺服器上;你要新增這個好友至伺服器"
+"的好友清單嗎?"
+
+# XXX 暫譯
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s 在本地端的好友清單,郤不在伺服器上;你要新增這個好友至伺服器的好友清單嗎?"
+
 # XXX 暫譯,有待改進 - 20090226 acli
 # NOTE: (09時14分13秒 EST) wing: what does "Other Contacts" (msn/group.h:36) actually mean? ..
 # NOTE: (09時24分18秒 EST) khc: I'd probably just translate to 其他人, hehe
@@ -5720,8 +5710,8 @@
 msgid "Set friendly name for %s."
 msgstr "設定 %s 的網名。"
 
-msgid "Set your friendly name."
-msgstr "設定你的網名。"
+msgid "Set Friendly Name"
+msgstr "設定網名"
 
 # NOTE MSN的暱稱不像Yahoo;使用者可以輸入任何的新暱稱,
 # NOTE 即使和使用者的帳號毫無關係,似乎也是有效的
@@ -5729,6 +5719,18 @@
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "別人在 MSN 查閱你的個人資料時顯示這個網名。"
 
+msgid "This Location"
+msgstr "目前所在位置"
+
+msgid "This is the name that identifies this location"
+msgstr "目前的所在位置將以這個名稱代表"
+
+msgid "Other Locations"
+msgstr "其他所在位置"
+
+msgid "You can sign out from other locations here"
+msgstr "你可在這裏登出其他所在位置"
+
 msgid "Set your home phone number."
 msgstr "設定你的家用電話號碼。"
 
@@ -5815,6 +5817,9 @@
 msgid "Set Friendly Name..."
 msgstr "設定網名..."
 
+msgid "View Locations..."
+msgstr "檢視所在位置..."
+
 msgid "Set Home Phone Number..."
 msgstr "設定家用電話號碼..."
 
@@ -7195,7 +7200,7 @@
 msgstr "伺服器通訊埠"
 
 msgid "Please authorize me so I can add you to my buddy list."
-msgstr "請通過我的認證要求,好讓我可以將您加入我的好友清單中。"
+msgstr "請通過我的認證要求,好讓我可以將你加入我的好友清單中。"
 
 msgid "No reason given."
 msgstr "沒有給予原因。"
@@ -7220,6 +7225,11 @@
 "你的連線/斷線動作太過頻繁。請等待十分鐘後再行重試。如果你依然繼續嘗試連線,"
 "那麼你的等待時間將會更加的延長。"
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr "你在帳號設定中指定了使用加密,但其中一個伺服器不支援加密功能。"
+
 # NOTE 單寫「要求 %s」好像有些怪 - acli 20090902
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
@@ -7246,8 +7256,8 @@
 "encoding he is using, you can specify it in the advanced account options for "
 "your AIM/ICQ account.)"
 msgstr ""
-"(接收這個訊息時發生了錯誤。正在跟您交談的好友很可能在使用與您想像不乎的字元"
-"編碼;如果您知道那是什麼編碼,請在您的 AIM/ICQ 帳號的「進階設定」中的「編碼」"
+"(接收這個訊息時發生了錯誤。正在跟你交談的好友很可能在使用與你想像不乎的字符"
+"編碼;如果你知道那是什麼編碼,請在你的 AIM/ICQ 帳號的「進階設定」中的「編碼」"
 "欄位指定。)"
 
 #, c-format
@@ -7255,7 +7265,7 @@
 "(There was an error receiving this message.  Either you and %s have "
 "different encodings selected, or %s has a buggy client.)"
 msgstr ""
-"(接收這個訊息時發生了錯誤。可能您和 %s 選用了不同的編碼,也有可能是 %s 在使"
+"(接收這個訊息時發生了錯誤。可能你和 %s 選用了不同的編碼,也有可能是 %s 在使"
 "用有問題的用戶端程式。)"
 
 msgid "Could not join chat room"
@@ -7538,6 +7548,11 @@
 "無法以 %s 身份登入,因為這個帳號是無效的。帳號必須為有效電郵地址;或者以英文"
 "字母起始,並只含英文字母、數字及空白;或者只由數字組成。"
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr "你在帳號設定中指定了使用加密,但你的系統不支援加密功能。"
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr "你可能會在短時間內中斷連線。如果屬實,請到 %s 看看有沒有更新。"
@@ -8027,13 +8042,11 @@
 msgid "Set Privacy Options..."
 msgstr "設定私隱選項..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "公開"
-
-#, fuzzy
+msgstr "顯示「報稱上線」清單"
+
 msgid "Show Invisible List"
-msgstr "邀請清單"
+msgstr "顯示「報稱離線」清單"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -8051,6 +8064,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "使用電子郵件地址搜尋好友..."
 
+msgid "Don't use encryption"
+msgstr "不使用加密"
+
 msgid "Use clientLogin"
 msgstr "使用 clientLogin"
 
@@ -8247,7 +8263,7 @@
 msgstr "iChat 視像聊天"
 
 msgid "Live Video"
-msgstr "動態視訊"
+msgstr "動態視像"
 
 #  NOTE AIM_CAPS_CAMERA,即是什麼呢(^^;)
 msgid "Camera"
@@ -8266,10 +8282,9 @@
 msgid "Buddy Comment"
 msgstr "好友備註"
 
-#  NOTE Connection security 選項,指在伺服器支援的情況下使用 TLS, 如伺服器不支援 TLS 則以不加密的方式繼續進行連線
-#, fuzzy, c-format
+#, c-format
 msgid "User information not available: %s"
-msgstr "當伺服器支援時,使用加密功能"
+msgstr "找不到使用者資訊:%s"
 
 msgid "Mobile Phone"
 msgstr "流動電話"
@@ -8278,12 +8293,12 @@
 msgstr "個人網頁"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "其他資訊"
 
 msgid "Zip Code"
-msgstr "郵遞區號"
+msgstr "郵遞編號"
 
 msgid "Work Information"
 msgstr "工作資訊"
@@ -8305,50 +8320,63 @@
 msgstr "成為成員的時間"
 
 msgid "Capabilities"
-msgstr "相容性"
-
-#. 4 separate strings are needed in order to ease translators' job
+msgstr "兼容性"
+
+#  NOTE 這四個字串在 Oscar (ICQ) 的解釋在此:http://pidgin.im/pipermail/translators/2010-November/000554.html
+#  NOTE Oscar: 把好友新增到 Visible List 內
+#  NOTE Yahoo: 狀態為「隱身」時,對某指定的好友報稱上線
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "報稱上線"
 
-#, fuzzy
+#  NOTE 把好友從 Visible List 內移除
+#  NOTE 參閱 "Don't Appear Permanently Offline"
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "報稱上線"
-
-# NOTE 下次登入時不報稱離線,所以加「暫時」字眼
+msgstr "停止報稱上線"
+
+#  NOTE Oscar: 把好友新增到 Invisible List 內
+#  NOTE Yahoo: 狀態為「隱身」時,對某指定的好友報稱離線
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
-msgstr "暫時報稱離線"
-
-# NOTE 下次登入時不報稱離線,所以加「暫時」字眼
-#, fuzzy
+msgstr "報稱離線"
+
+#  NOTE 把好友從 Invisible List 內移除
+#  NOTE 參閱 "Don't Appear Permanently Offline"
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "暫時報稱離線"
-
-#, fuzzy
+msgstr "停止報稱離線"
+
 msgid "you have no buddies on this list"
-msgstr "你已經從MultiMX中被踢出。"
-
-#, fuzzy, c-format
+msgstr "這清單內沒有好友"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"你可以重新要求這些好友的認證,只要在好友清單中以滑鼠右鍵點擊他們,然後選擇"
-"「要求重新認證」。"
-
-#, fuzzy
+"把好友新增在這清單內,只要在好友清單中以滑鼠右鍵點擊他們,然後選擇「%s」"
+
 msgid "Visible List"
-msgstr "公開"
+msgstr "「報稱上線」清單"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "這些好友在你隱身時仍能看見你的上線狀態"
+
 msgid "Invisible List"
-msgstr "邀請清單"
+msgstr "「報稱離線」清單"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "長時間向這些好友隱身"
 
 msgid "Aquarius"
 msgstr "水秤座"
@@ -8426,7 +8454,7 @@
 msgstr "其他"
 
 msgid "Visible"
-msgstr "公開"
+msgstr "不隱身"
 
 # XXX 暫譯 - 20090226
 msgid "Friend Only"
@@ -10798,6 +10826,7 @@
 msgstr "不在伺服器上的清單中"
 
 # NOTE Yahoo 官方譯「永遠顯示離線」,說白一點其實即是(針對某人)「長期隠身」
+#  NOTE 參閱 "Appear Offline"
 msgid "Appear Permanently Offline"
 msgstr "長期報稱離線"
 
@@ -10805,6 +10834,7 @@
 msgstr "現狀"
 
 #  NOTE 這是清單內的一個指令
+#  NOTE 參閱 "Don't Appear Offline"
 msgid "Don't Appear Permanently Offline"
 msgstr "停止長期報稱離線"
 
@@ -12779,6 +12809,11 @@
 msgid "Lao"
 msgstr "寮國文"
 
+#  NOTE 代碼 mai,印度的一種方言,維基百科譯「邁蒂利語」
+#  XXX 找不到正式的台灣譯文,參閱 http://zh.wikipedia.org/zh/迈蒂利语, http://tc.wangchao.net.cn/baike/detail_2071696.html
+msgid "Maithili"
+msgstr "邁蒂利文"
+
 #  NOTE「馬其頓文」是一種東歐語文,跟希臘的馬其頓並無關係
 msgid "Macedonian"
 msgstr "馬其頓文"
@@ -15969,6 +16004,19 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "你沒有權限移除程式。"
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "帶內位元組流傳輸途中發生錯誤\n"
+
+# XXX 還是直譯「被關閉」? 20090305 acli
+#~ msgid "Transfer was closed."
+#~ msgstr "傳輸已被中止。"
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "無法開啟帶內位元組流"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "設定您的暱稱。"
+
 #~ msgid "The certificate has expired and should not be considered valid."
 #~ msgstr "這張憑證已逾期,應視作無效。"
 
--- a/po/zh_TW.po	Mon Nov 01 08:14:54 2010 +0000
+++ b/po/zh_TW.po	Tue Nov 23 07:50:25 2010 +0000
@@ -6,7 +6,7 @@
 # LINE NUMBERS (LINES BEGINNING WITH #:) IN THIS FILE.
 #
 # This file is distributed under the same license as the "Pidgin" package.
-# $InternalId: zh_TW.po,v 1.650 2010/10/17 14:56:33 acli Exp $
+# $InternalId: zh_TW.po,v 1.655 2010/11/18 06:05:50 acli Exp $
 #
 # ----------------------------------------------------------
 # For internal use only:
@@ -58,11 +58,11 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Pidgin 2.7.4\n"
+"Project-Id-Version: Pidgin 2.7.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-21 00:12-0400\n"
-"PO-Revision-Date: 2010-10-17 10:55-0400\n"
-"Last-Translator: Paladin R. Liu <paladin@ms1.hinet.net>\n"
+"POT-Creation-Date: 2010-11-21 13:55-0500\n"
+"PO-Revision-Date: 2010-11-15 16:24-0500\n"
+"Last-Translator: Ambrose Li <ambrose.li@gmail.com>\n"
 "Language-Team: Chinese (Traditional) <zh-l10n@linux.org.tw>\n"
 "Language: zh_TW\n"
 "MIME-Version: 1.0\n"
@@ -373,10 +373,10 @@
 msgstr "如果要重置名稱,請輸入空白字串。"
 
 msgid "Removing this contact will also remove all the buddies in the contact"
-msgstr "移除這組好友會同時移除裏面的所有好友"
+msgstr "移除這組好友會同時移除裡面的所有好友"
 
 msgid "Removing this group will also remove all the buddies in the group"
-msgstr "移除這個群組會同時移除裏面的所有好友"
+msgstr "移除這個群組會同時移除裡面的所有好友"
 
 #, c-format
 msgid "Are you sure you want to remove %s?"
@@ -728,14 +728,14 @@
 msgstr "支援的除錯選項有:plugins version"
 
 msgid "No such command (in this context)."
-msgstr "沒有這個指令(可在這裏使用)"
+msgstr "沒有這個指令(可在這裡使用)"
 
 msgid ""
 "Use \"/help &lt;command&gt;\" for help on a specific command.\n"
 "The following commands are available in this context:\n"
 msgstr ""
 "要獲得某一指令的說明,輸入「/help &lt;指令&gt;」即可。\n"
-"在這裏,可用的指令有:\n"
+"在這裡,可用的指令有:\n"
 
 #, c-format
 msgid ""
@@ -5034,16 +5034,6 @@
 msgid "Unknown Error in presence"
 msgstr "不明的狀態資訊錯誤"
 
-msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "帶內位元組流傳輸途中發生錯誤\n"
-
-# XXX 還是直譯「被關閉」? 20090305 acli
-msgid "Transfer was closed."
-msgstr "傳輸已被中止。"
-
-msgid "Failed to open in-band bytestream"
-msgstr "無法開啟帶內位元組流"
-
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
 msgstr "無法傳送檔案至 %s,因為對方不支援檔案傳輸"
@@ -5463,28 +5453,6 @@
 msgid "The username specified does not exist."
 msgstr "您所輸入的帳號並不存在。"
 
-# XXX 暫譯
-#, c-format
-msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "為 %s (%s) 的好友清單進行同步化途中出現問題"
-
-# XXX 暫譯
-#, c-format
-msgid ""
-"%s on the local list is inside the group \"%s\" but not on the server list. "
-"Do you want this buddy to be added?"
-msgstr ""
-"%s 在本地端的好友清單的「%s」群組裏,卻不在伺服器上;您要新增這個好友至伺服器"
-"的好友清單嗎?"
-
-# XXX 暫譯
-#, c-format
-msgid ""
-"%s is on the local list but not on the server list. Do you want this buddy "
-"to be added?"
-msgstr ""
-"%s 在本地端的好友清單,郤不在伺服器上;您要新增這個好友至伺服器的好友清單嗎?"
-
 msgid "Unable to parse message"
 msgstr "無法解析訊息"
 
@@ -5663,6 +5631,28 @@
 msgid "MSN Error: %s\n"
 msgstr "MSN 錯誤:%s\n"
 
+# XXX 暫譯
+#, c-format
+msgid "Buddy list synchronization issue in %s (%s)"
+msgstr "為 %s (%s) 的好友清單進行同步化途中出現問題"
+
+# XXX 暫譯
+#, c-format
+msgid ""
+"%s on the local list is inside the group \"%s\" but not on the server list. "
+"Do you want this buddy to be added?"
+msgstr ""
+"%s 在本地端的好友清單的「%s」群組裡,卻不在伺服器上;您要新增這個好友至伺服器"
+"的好友清單嗎?"
+
+# XXX 暫譯
+#, c-format
+msgid ""
+"%s is on the local list but not on the server list. Do you want this buddy "
+"to be added?"
+msgstr ""
+"%s 在本地端的好友清單,郤不在伺服器上;您要新增這個好友至伺服器的好友清單嗎?"
+
 # XXX 暫譯,有待改進 - 20090226 acli
 # NOTE: (09時14分13秒 EST) wing: what does "Other Contacts" (msn/group.h:36) actually mean? ..
 # NOTE: (09時24分18秒 EST) khc: I'd probably just translate to 其他人, hehe
@@ -5679,7 +5669,7 @@
 
 #, c-format
 msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>"
-msgstr "%s 對您眨眼,<a href='msn-wink://%s'>請點擊這裏播放這個動作</a>"
+msgstr "%s 對您眨眼,<a href='msn-wink://%s'>請點擊這裡播放這個動作</a>"
 
 #, c-format
 msgid "%s sent a wink, but it could not be saved"
@@ -5687,7 +5677,7 @@
 
 #, c-format
 msgid "%s sent a voice clip. <a href='audio://%s'>Click here to play it</a>"
-msgstr "%s 送來了一段語音片段,<a href='audio://%s'>請點擊這裏播放</a>"
+msgstr "%s 送來了一段語音片段,<a href='audio://%s'>請點擊這裡播放</a>"
 
 #, c-format
 msgid "%s sent a voice clip, but it could not be saved"
@@ -5718,8 +5708,8 @@
 msgid "Set friendly name for %s."
 msgstr "設定 %s 的暱稱。"
 
-msgid "Set your friendly name."
-msgstr "設定您的暱稱。"
+msgid "Set Friendly Name"
+msgstr "設定暱稱"
 
 # NOTE MSN的暱稱不像Yahoo;使用者可以輸入任何的新暱稱,
 # NOTE 即使和使用者的帳號毫無關係,似乎也是有效的
@@ -5727,6 +5717,18 @@
 msgid "This is the name that other MSN buddies will see you as."
 msgstr "別人在 MSN 查閱您的個人資料時顯示這個暱稱。"
 
+msgid "This Location"
+msgstr "目前所在位置"
+
+msgid "This is the name that identifies this location"
+msgstr "目前的所在位置將以這個名稱代表"
+
+msgid "Other Locations"
+msgstr "其他所在位置"
+
+msgid "You can sign out from other locations here"
+msgstr "您可在這裡登出其他所在位置"
+
 msgid "Set your home phone number."
 msgstr "設定您的住家電話號碼。"
 
@@ -5780,7 +5782,7 @@
 msgstr "正在工作"
 
 msgid "Has you"
-msgstr "你在他(她)的好友清單裏"
+msgstr "你在他(她)的好友清單裡"
 
 msgid "Home Phone Number"
 msgstr "住家電話號碼"
@@ -5813,6 +5815,9 @@
 msgid "Set Friendly Name..."
 msgstr "設定暱稱..."
 
+msgid "View Locations..."
+msgstr "檢視所在位置..."
+
 msgid "Set Home Phone Number..."
 msgstr "設定住家電話號碼..."
 
@@ -6293,7 +6298,7 @@
 msgstr "更新個人資料"
 
 msgid "Here you can update your MXit profile"
-msgstr "您可以在這裏更新您在 MXit 的個人資料"
+msgstr "您可以在這裡更新您在 MXit 的個人資料"
 
 msgid "View Splash"
 msgstr "檢視啟動畫面"
@@ -7218,6 +7223,11 @@
 "您的連線/斷線動作太過頻繁。請等待十分鐘後再行重試。如果您依然繼續嘗試著連"
 "線,那麼您的等待時間將會更加的延長。"
 
+msgid ""
+"You required encryption in your account settings, but one of the servers "
+"doesn't support it."
+msgstr "您在帳號設定中指定了使用加密,但其中一個伺服器不支援加密功能。"
+
 # NOTE 單寫「要求 %s」好像有些怪 - acli 20090902
 #. Note to translators: The first %s is a URL, the second is an
 #. error message.
@@ -7231,7 +7241,7 @@
 msgstr "伺服器表示登入前必須完成圖片驗證,但這用戶端尚未支援圖片驗證。"
 
 msgid "AOL does not allow your screen name to authenticate here"
-msgstr "AOL 不允許您的帳號在這裏登入"
+msgstr "AOL 不允許您的帳號在這裡登入"
 
 # NOTE 單寫「要求 %s」好像有些怪 - acli 20090902
 #, c-format
@@ -7536,6 +7546,11 @@
 "無法以 %s 身份登入,因為這個帳號是無效的。帳號必須為有效電郵地址;或者以英文"
 "字母起始,並只含英文字母、數字及空白;或者只由數字組成。"
 
+msgid ""
+"You required encryption in your account settings, but encryption is not "
+"supported by your system."
+msgstr "您在帳號設定中指定了使用加密,但您的系統不支援加密功能。"
+
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
 msgstr "您可能會在短時間內中斷連線。如果屬實,請到 %s 看看有沒有更新。"
@@ -8025,13 +8040,11 @@
 msgid "Set Privacy Options..."
 msgstr "設定隱私選項..."
 
-#, fuzzy
 msgid "Show Visible List"
-msgstr "公開"
-
-#, fuzzy
+msgstr "顯示「報稱上線」清單"
+
 msgid "Show Invisible List"
-msgstr "邀請清單"
+msgstr "顯示「報稱離線」清單"
 
 #. AIM actions
 msgid "Confirm Account"
@@ -8049,6 +8062,9 @@
 msgid "Search for Buddy by Email Address..."
 msgstr "使用電子郵件地址搜尋好友..."
 
+msgid "Don't use encryption"
+msgstr "不使用加密"
+
 msgid "Use clientLogin"
 msgstr "使用 clientLogin"
 
@@ -8264,10 +8280,9 @@
 msgid "Buddy Comment"
 msgstr "好友備註"
 
-#  NOTE Connection security 選項,指在伺服器支援的情況下使用 TLS, 如伺服器不支援 TLS 則以不加密的方式繼續進行連線
-#, fuzzy, c-format
+#, c-format
 msgid "User information not available: %s"
-msgstr "當伺服器支援時,使用加密功能"
+msgstr "找不到使用者資訊:%s"
 
 msgid "Mobile Phone"
 msgstr "行動電話"
@@ -8276,7 +8291,7 @@
 msgstr "個人網頁"
 
 #. aim_userinfo_t
-#. strip_html_tags
+#. use_html_status
 msgid "Additional Information"
 msgstr "其他資訊"
 
@@ -8305,48 +8320,61 @@
 msgid "Capabilities"
 msgstr "相容性"
 
-#. 4 separate strings are needed in order to ease translators' job
+#  NOTE 這四個字串在 Oscar (ICQ) 的解釋在此:http://pidgin.im/pipermail/translators/2010-November/000554.html
+#  NOTE Oscar: 把好友新增到 Visible List 內
+#  NOTE Yahoo: 狀態為「隱身」時,對某指定的好友報稱上線
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear online to the chosen user even when your status is set to
+#. Invisible.
 msgid "Appear Online"
 msgstr "報稱上線"
 
-#, fuzzy
+#  NOTE 把好友從 Visible List 內移除
+#  NOTE 參閱 "Don't Appear Permanently Offline"
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user when your status is set to
+#. Invisible (this is the default).
 msgid "Don't Appear Online"
-msgstr "報稱上線"
-
-# NOTE 下次登入時不報稱離線,所以加「暫時」字眼
+msgstr "停止報稱上線"
+
+#  NOTE Oscar: 把好友新增到 Invisible List 內
+#  NOTE Yahoo: 狀態為「隱身」時,對某指定的好友報稱離線
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to always appear offline to the chosen user (even when your status
+#. isn't Invisible).
 msgid "Appear Offline"
-msgstr "暫時報稱離線"
-
-# NOTE 下次登入時不報稱離線,所以加「暫時」字眼
-#, fuzzy
+msgstr "報稱離線"
+
+#  NOTE 把好友從 Invisible List 內移除
+#  NOTE 參閱 "Don't Appear Permanently Offline"
+#. Translators: This string is a menu option that, if selected, will cause
+#. you to appear offline to the chosen user if you are invisible, and
+#. appear online to the chosen user if you are not invisible (this is the
+#. default).
 msgid "Don't Appear Offline"
-msgstr "暫時報稱離線"
-
-#, fuzzy
+msgstr "停止報稱離線"
+
 msgid "you have no buddies on this list"
-msgstr "您已經從MultiMX中被踢出。"
-
-#, fuzzy, c-format
+msgstr "這清單內沒有好友"
+
+#, c-format
 msgid ""
 "You can add a buddy to this list by right-clicking on them and selecting \"%s"
 "\""
 msgstr ""
-"您可以重新要求這些好友的認證,只要在好友清單中以滑鼠右鍵點擊他們,然後選擇"
-"「要求重新認證」。"
-
-#, fuzzy
+"把好友新增在這清單內,只要在好友清單中以滑鼠右鍵點擊他們,然後選擇「%s」"
+
 msgid "Visible List"
-msgstr "公開"
+msgstr "「報稱上線」清單"
 
 msgid "These buddies will see your status when you switch to \"Invisible\""
-msgstr ""
-
-#, fuzzy
+msgstr "這些好友在您隱身時仍能看見您的上線狀態"
+
 msgid "Invisible List"
-msgstr "邀請清單"
+msgstr "「報稱離線」清單"
 
 msgid "These buddies will always see you as offline"
-msgstr ""
+msgstr "長時間向這些好友隱身"
 
 msgid "Aquarius"
 msgstr "水秤座"
@@ -8424,7 +8452,7 @@
 msgstr "其他"
 
 msgid "Visible"
-msgstr "公開"
+msgstr "不隱身"
 
 # XXX 暫譯 - 20090226
 msgid "Friend Only"
@@ -10792,6 +10820,7 @@
 msgstr "不在伺服器上的清單中"
 
 # NOTE Yahoo 官方譯「永遠顯示離線」,說白一點其實即是(針對某人)「長期隠身」
+#  NOTE 參閱 "Appear Offline"
 msgid "Appear Permanently Offline"
 msgstr "長期報稱離線"
 
@@ -10799,6 +10828,7 @@
 msgstr "現狀"
 
 #  NOTE 這是清單內的一個指令
+#  NOTE 參閱 "Don't Appear Offline"
 msgid "Don't Appear Permanently Offline"
 msgstr "停止長期報稱離線"
 
@@ -12773,6 +12803,11 @@
 msgid "Lao"
 msgstr "寮國文"
 
+#  NOTE 代碼 mai,印度的一種方言,維基百科譯「邁蒂利語」
+#  XXX 找不到正式的台灣譯文,參閱 http://zh.wikipedia.org/zh/迈蒂利语, http://tc.wangchao.net.cn/baike/detail_2071696.html
+msgid "Maithili"
+msgstr "邁蒂利文"
+
 #  NOTE「馬其頓文」是一種東歐語文,跟希臘的馬其頓並無關係
 msgid "Macedonian"
 msgstr "馬其頓文"
@@ -12951,7 +12986,7 @@
 "如果希望獲得<font size=\"4\">其他 Pidgin 使用者提供的支援</font>,可電郵至<a "
 "href=\"mailto:support@pidgin.im\">support@pidgin.im</a>。<br/>這是個<b>公開的"
 "</b>郵件論壇!(<a href=\"http://pidgin.im/pipermail/support/\">論壇存檔請點"
-"擊這裏</a>)<br/>本論壇恕不為第三者開發的模組(包括通訊協定模組)提供任何支"
+"擊這裡</a>)<br/>本論壇恕不為第三者開發的模組(包括通訊協定模組)提供任何支"
 "援!<br/>發帖請以<b>英文</b>為主;以中文或其他語文發帖亦可,但收到的回覆未必"
 "有用。<br/>"
 
@@ -14685,7 +14720,7 @@
 "The buddy with the <i>largest score</i> is the buddy who will have priority "
 "in the contact.\n"
 msgstr ""
-"若果一個好友其實概括了好幾個好友帳號,通訊時便根據這裏\n"
+"若果一個好友其實概括了好幾個好友帳號,通訊時便根據這裡\n"
 "所給定的得分值計分,積分最多者為「優先」,成為當時實際\n"
 "使用的好友帳號。\n"
 
@@ -15963,6 +15998,19 @@
 msgid "You do not have permission to uninstall this application."
 msgstr "您沒有權限移除程式。"
 
+#~ msgid "An error occurred on the in-band bytestream transfer\n"
+#~ msgstr "帶內位元組流傳輸途中發生錯誤\n"
+
+# XXX 還是直譯「被關閉」? 20090305 acli
+#~ msgid "Transfer was closed."
+#~ msgstr "傳輸已被中止。"
+
+#~ msgid "Failed to open in-band bytestream"
+#~ msgstr "無法開啟帶內位元組流"
+
+#~ msgid "Set your friendly name."
+#~ msgstr "設定您的暱稱。"
+
 #~ msgid "The certificate has expired and should not be considered valid."
 #~ msgstr "這張憑證已逾期,應視作無效。"
 
--- a/share/ca-certs/Makefile.am	Mon Nov 01 08:14:54 2010 +0000
+++ b/share/ca-certs/Makefile.am	Tue Nov 23 07:50:25 2010 +0000
@@ -22,7 +22,9 @@
 EXTRA_CERTS = \
 		AOL_Member_CA.pem \
 		Microsoft_Internet_Authority.pem \
+		Microsoft_Internet_Authority_2010.pem \
 		Microsoft_Secure_Server_Authority.pem \
+		Microsoft_Secure_Server_Authority_2010.pem \
 		VeriSign_Class3_Extended_Validation_CA.pem \
 		VeriSign_International_Server_Class_3_CA.pem
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/ca-certs/Microsoft_Internet_Authority_2010.pem	Tue Nov 23 07:50:25 2010 +0000
@@ -0,0 +1,30 @@
+-----BEGIN CERTIFICATE-----
+MIIFEjCCBHugAwIBAgIEBydiAjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJV
+UzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYDVQQLEx5HVEUgQ3liZXJU
+cnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdURSBDeWJlclRydXN0IEds
+b2JhbCBSb290MB4XDTEwMDQxNDE4MTIyNloXDTE4MDQxNDE4MTIxNFowJzElMCMG
+A1UEAxMcTWljcm9zb2Z0IEludGVybmV0IEF1dGhvcml0eTCCAiIwDQYJKoZIhvcN
+AQEBBQADggIPADCCAgoCggIBAL30zSelStiQGduyCntgpE6PDpijnHxQduuzSoyf
+GLDnmsUrgoYJKKwREjIm9Rnq8LhnaMUG/fQZrtkToNCBJwimeZwE9UgyLjYfq2sm
+7KFDtJ2AsEkD6oJJXwUTxaCDX+Eq9AQZS37I2oi8tV0DvHhWoel/xWrvtv8dAVm3
+H1NaX8b4kW3FfUOTGHRF7RW6snzIOjQUHqpj9+XUS8gjK4dplROZCRTvegEgTrfG
+SEGuyYcBKdnChzh/tkKk8LLOLf20TFfwqNbLTvpfXf25+wncFoVk5XGc1fEzlzhn
+Lpu8FzYFfhA2f37rmFpbHK2l5wkQfflKL7OPNxXWb7lbN9y3n3+OZn8jXO0Sf4wH
+8P4Z+bg0Q3uy6oX7jKmq3/2RDSz1+6+XifEGiq9J9jwuI/ZEFiWREeIjw8qFVUkq
+yCGvfREmhrAoRbqH7jYTgdVLRxqO2wnx0ZcpUBQymQnj8sDnU49r9PoTXDyN7lSZ
+DydHTjwS848SF0bwiWpFs7U8DHdFBC+9vrWemDwFO7tBOYQgvHkE1kLNPonp53o3
+SRC0zJ8kXCOmSG7749TuISmT5P2AGhs6bMH369nUTb7xEfaijkIkoU9ptdJoFInZ
+n5DYH54b5m1kJSm2NEOkW/UN63QGfp/xY9xFp3w6mlxrc9jDWASOiG8T0ObQ383E
+Cg4HAgMBAAGjggF3MIIBczASBgNVHRMBAf8ECDAGAQH/AgEBMFsGA1UdIARUMFIw
+SAYJKwYBBAGxPgEAMDswOQYIKwYBBQUHAgEWLWh0dHA6Ly9jeWJlcnRydXN0Lm9t
+bmlyb290LmNvbS9yZXBvc2l0b3J5LmNmbTAGBgRVHSAAMA4GA1UdDwEB/wQEAwIB
+hjCBiQYDVR0jBIGBMH+heaR3MHUxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9HVEUg
+Q29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJlclRydXN0IFNvbHV0aW9ucywg
+SW5jLjEjMCEGA1UEAxMaR1RFIEN5YmVyVHJ1c3QgR2xvYmFsIFJvb3SCAgGlMEUG
+A1UdHwQ+MDwwOqA4oDaGNGh0dHA6Ly93d3cucHVibGljLXRydXN0LmNvbS9jZ2kt
+YmluL0NSTC8yMDE4L2NkcC5jcmwwHQYDVR0OBBYEFDMh8Mv+oqBEkt72OzPYXwFL
+l3hdMA0GCSqGSIb3DQEBBQUAA4GBACtI85T7RMWTatZN/rQTThImF8qyWqsJuVak
+b39XnmSy9eTTNe9jZcvlLBWc7874KsWSZCtJPjw2bL0Ym2Rnlz/taNAWwRM88lGg
+V94kzjWraZBOKww6+bTxgPptAHmmOpaZTjpuVNCjWW6LHZVJu5XYdbjhEjOsXCe7
+y1Vx1frt
+-----END CERTIFICATE-----
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/share/ca-certs/Microsoft_Secure_Server_Authority_2010.pem	Tue Nov 23 07:50:25 2010 +0000
@@ -0,0 +1,35 @@
+-----BEGIN CERTIFICATE-----
+MIIGEzCCA/ugAwIBAgIKYQMzNgAFAAAAMDANBgkqhkiG9w0BAQUFADAnMSUwIwYD
+VQQDExxNaWNyb3NvZnQgSW50ZXJuZXQgQXV0aG9yaXR5MB4XDTEwMDUxOTIyMTMz
+MFoXDTE0MDUxOTIyMjMzMFowgYsxEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJ
+kiaJk/IsZAEZFgltaWNyb3NvZnQxFDASBgoJkiaJk/IsZAEZFgRjb3JwMRcwFQYK
+CZImiZPyLGQBGRYHcmVkbW9uZDEqMCgGA1UEAxMhTWljcm9zb2Z0IFNlY3VyZSBT
+ZXJ2ZXIgQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
+6p9fkQvNGYJfkeqr9Yso2Iv1HOCRybzNAhBQIrc4ClzPcQxYLYhsqLg8M2P5c508
+6cN57fL+ycvDbiTiPEJw2F+3W/ebX/Unb3gA65Zdt2/P5EEE8LtDvW9fJg+3jjdB
+E1RnG5AAJzi4GsOWbRwxNTVJxUYe53OkygMReUGBr9OORqLFvgBTBbk4nLdgKbPK
+UpqSxVMntkENQPgvm+eBSRpaaqhPccfobYG+J+/J1saSKxDkNjVACNBNcP1wmyAc
+s7nfdZ0rd9DEzWpx71pYC/lwhYgFiW1mkjCrr4g519QtC5aceCSvAKvPCT4TrmvD
+4OHPYH+LU9wC0POwhhHevQIDAQABo4IB2jCCAdYwEgYDVR0TAQH/BAgwBgEB/wIB
+ADAdBgNVHQ4EFgQUCELj204RZvO1CMVA21V8M0YRgzgwCwYDVR0PBAQDAgGGMBIG
+CSsGAQQBgjcVAQQFAgMIAAgwIwYJKwYBBAGCNxUCBBYEFH6KwpxaMozCcaLZT3Vw
+96kb9pQFMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMB8GA1UdIwQYMBaAFDMh
+8Mv+oqBEkt72OzPYXwFLl3hdMIGjBgNVHR8EgZswgZgwgZWggZKggY+GNmh0dHA6
+Ly9tc2NybC5taWNyb3NvZnQuY29tL3BraS9tc2NvcnAvY3JsL21zd3d3KDUpLmNy
+bIY0aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9tc2NvcnAvY3JsL21zd3d3
+KDUpLmNybIYfaHR0cDovL2NvcnBwa2kvY3JsL21zd3d3KDUpLmNybDB5BggrBgEF
+BQcBAQRtMGswPAYIKwYBBQUHMAKGMGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9w
+a2kvbXNjb3JwL21zd3d3KDUpLmNydDArBggrBgEFBQcwAoYfaHR0cDovL2NvcnBw
+a2kvYWlhL21zd3d3KDUpLmNydDANBgkqhkiG9w0BAQUFAAOCAgEAj8LRXO8UEXcX
+Ywc8THxo2v6GSuIgzD+wJz3R4qzIi0im5Fn3OgatfVLx9mVhliEirmi+L3reswz1
+6cXd+GWCXctsPgw3EXQVCXhVvSYSu9aVdNO89XYJKmrfNsSOVtUfIN9/gjDXQ6to
+IotqWsWb0J2NCwxQhX7MWoAHiwNOv71fbFYPBaniVMOl01JcX00L3QX4URIDIW+c
+bJeYKsHBEby9G67741dfTx8AnuKkUdP3rAk3WKUJIdFy0LLBi9tN3BPRVFhNK8Ct
++lMZNbEVqEJkt+3HH6V5qA041FC/9Fr/L+m/P3045fsgDNRO4C8dRXr7KC8xSG/M
+blxoQvrqyAsBMOwQJkI4I6nDGbjZcBpoLJLLn3PmzP8zI+7bXrV/BVg/UMUcCBj0
+6y9iqlP3oc3e4+uCHBpna6FMp2hxQNFlO0EYnEnjcfvrTYOT00fmZELLtjUc+zQO
+oSj7jKGnHwEoUeVxlDec3EFbfH7pLCNnlJ1z319AeaONlTDMUxcIvFCG8/wQGYH8
+9Fpu89yimnV7w6ygUe0ytljfT46RU2rSqhtd5lO4iaOeiaHjKeCzbOsazG9aqsLi
+9h5FKe/WwkOxO60+JvyBl1xI/WJZNJLJ+7mh10IF+xn2fjL7KTTVh2blBB3IPhD6
+pnj1Hn3eGjp4fNwqcQajLW8FVSOLkO8=
+-----END CERTIFICATE-----