changeset 28010:0754698c49f4

merged with im.pidgin.pidgin
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sun, 26 Jul 2009 22:18:59 +0900
parents 7a661fe78cdd (current diff) efe680b86811 (diff)
children 586093c4b17b
files configure.ac libpurple/certificate.c libpurple/protocols/jabber/google.c libpurple/protocols/jabber/jabber.c libpurple/protocols/oscar/family_icbm.c libpurple/protocols/yahoo/libymsg.c libpurple/server.c pidgin/gtkblist.c pidgin/pixmaps/dialogs/64/scalable/auth.svg pidgin/pixmaps/dialogs/64/scalable/cool.svg pidgin/pixmaps/dialogs/64/scalable/dialog.svg pidgin/pixmaps/dialogs/64/scalable/error.svg pidgin/pixmaps/dialogs/64/scalable/info.svg pidgin/pixmaps/dialogs/64/scalable/mail.svg pidgin/pixmaps/dialogs/64/scalable/question.svg pidgin/pixmaps/dialogs/64/scalable/warning.svg pidgin/pixmaps/emblems/16/scalable/aol-client.svg pidgin/pixmaps/emblems/16/scalable/birthday.svg pidgin/pixmaps/emblems/16/scalable/blocked.svg pidgin/pixmaps/emblems/16/scalable/bot.svg pidgin/pixmaps/emblems/16/scalable/external.svg pidgin/pixmaps/emblems/16/scalable/female.svg pidgin/pixmaps/emblems/16/scalable/free-for-chat.svg pidgin/pixmaps/emblems/16/scalable/game.svg pidgin/pixmaps/emblems/16/scalable/male.svg pidgin/pixmaps/emblems/16/scalable/mobile.svg pidgin/pixmaps/emblems/16/scalable/music.svg pidgin/pixmaps/emblems/16/scalable/not-authorized.svg pidgin/pixmaps/emblems/16/scalable/qq-member.svg pidgin/pixmaps/emblems/16/scalable/secure.svg pidgin/pixmaps/emblems/16/scalable/unavailable.svg pidgin/pixmaps/emblems/16/scalable/video.svg pidgin/pixmaps/emblems/16/scalable/voice.svg pidgin/pixmaps/protocols/48/scalable/aim.svg pidgin/pixmaps/protocols/48/scalable/bonjour.svg pidgin/pixmaps/protocols/48/scalable/gadu-gadu.svg pidgin/pixmaps/protocols/48/scalable/google-talk.svg pidgin/pixmaps/protocols/48/scalable/icq.svg pidgin/pixmaps/protocols/48/scalable/irc.svg pidgin/pixmaps/protocols/48/scalable/jabber.svg pidgin/pixmaps/protocols/48/scalable/meanwhile.svg pidgin/pixmaps/protocols/48/scalable/msn.svg pidgin/pixmaps/protocols/48/scalable/novell.svg pidgin/pixmaps/protocols/48/scalable/qq.svg pidgin/pixmaps/protocols/48/scalable/silc.svg pidgin/pixmaps/protocols/48/scalable/simple.svg pidgin/pixmaps/protocols/48/scalable/yahoo.svg pidgin/pixmaps/protocols/48/scalable/zephyr.svg
diffstat 110 files changed, 17413 insertions(+), 17688 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Jul 25 05:14:27 2009 +0000
+++ b/ChangeLog	Sun Jul 26 22:18:59 2009 +0900
@@ -40,6 +40,8 @@
 	  (Jan Kaluza and Aman Gupta)
 	* Internationalized Domain Names are supported when libpurple is compiled
 	  against the GNU IDN library.
+	* Install scalable versions of the main Pidgin icon, the protocol icons,
+	  the dialog icons, and the Buddy List emblems.
 
 	AIM and ICQ:
 	* Preliminary support for a new authentication scheme called
--- a/ChangeLog.API	Sat Jul 25 05:14:27 2009 +0000
+++ b/ChangeLog.API	Sun Jul 26 22:18:59 2009 +0900
@@ -26,6 +26,7 @@
 		* purple_blist_set_ui_data
 		* purple_blist_node_get_ui_data
 		* purple_blist_node_set_ui_data
+		* purple_certificate_check_signature_chain_with_failing
 		* purple_chat_destroy
 		* purple_connection_get_protocol_data
 		* purple_connection_set_protocol_data
@@ -86,12 +87,14 @@
 		* purple_find_group is now more efficient for large numbers of groups.
 		* All DNS routines support internationalized domain names (IDNs) when
 		  libpurple is compiled with GNU libidn.
+		* status is set before emitting signals in purple_xfer_set_status.
 
 		Deprecated:
 		* buddy-added and buddy-removed blist signals
 		* purple_blist_destroy
 		* purple_blist_new
 		* purple_buddy_get_local_alias
+		* purple_certificate_check_signature_chain
 		* purple_ip_address_is_valid
 		* purple_notify_user_info_remove_entry
 		* purple_set_blist
--- a/configure.ac	Sat Jul 25 05:14:27 2009 +0000
+++ b/configure.ac	Sun Jul 26 22:18:59 2009 +0900
@@ -604,7 +604,7 @@
 ])
 			fi])
 	fi
-
+        
 
 else # GTK
 	enable_cap=no
@@ -2046,23 +2046,6 @@
 	AC_SUBST(NSS_LIBS)
 fi
 
-if test "x$enable_nss" = "xyes"; then
-	AC_MSG_CHECKING(for NSS_SetAlgorithmPolicy)
-	LIBS_save="$LIBS"
-	LIBS="$LIBS $NSS_LIBS"
-	CPPFLAGS_save="$CPPFLAGS"
-	CPPFLAGS="$CPPFLAGS $NSS_CFLAGS"
-	AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <nss.h>
-#include <secmod.h>]],
-                                        [[NSS_SetAlgorithmPolicy(SEC_OID_MD2, 0, 0);]])],
-	               [AC_DEFINE([NEED_NSS_WEAK_ALGORITHMS], 1,
-                                  [Define if your NSS needs weak algorithms activated with NSS_SetAlgorithmPolicy])
-	                AC_MSG_RESULT(yes)],
-	               [AC_MSG_RESULT(no)])
-	CPPFLAGS="$CPPFLAGS_save"
-        LIBS="$LIBS_save"
-fi
-
 AM_CONDITIONAL(USE_NSS, test "x$enable_nss" = "xyes")
 
 if test "x$msg_nss" != "x" -a "x$msg_gnutls" != "x"; then
--- a/libpurple/blist.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/blist.c	Sun Jul 26 22:18:59 2009 +0900
@@ -1299,8 +1299,8 @@
 	PurpleBlistUiOps *ops = purple_blist_get_ui_ops();
 	PurpleChat *chat;
 
-	g_return_val_if_fail(account != NULL, FALSE);
-	g_return_val_if_fail(components != NULL, FALSE);
+	g_return_val_if_fail(account != NULL, NULL);
+	g_return_val_if_fail(components != NULL, NULL);
 
 	chat = g_new0(PurpleChat, 1);
 	chat->account = account;
--- a/libpurple/certificate.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/certificate.c	Sun Jul 26 22:18:59 2009 +0900
@@ -190,14 +190,20 @@
 }
 
 gboolean
-purple_certificate_check_signature_chain(GList *chain)
+purple_certificate_check_signature_chain_with_failing(GList *chain,
+                                                      PurpleCertificate **failing)
 {
 	GList *cur;
 	PurpleCertificate *crt, *issuer;
 	gchar *uid;
+	time_t now, activation, expiration;
+	gboolean ret;
 
 	g_return_val_if_fail(chain, FALSE);
 
+	if (failing)
+		*failing = NULL;
+
 	uid = purple_certificate_get_unique_id((PurpleCertificate *) chain->data);
 	purple_debug_info("certificate",
 			  "Checking signature chain for uid=%s\n",
@@ -211,6 +217,8 @@
 		return TRUE;
 	}
 
+	now = time(NULL);
+
 	/* Load crt with the first certificate */
 	crt = (PurpleCertificate *)(chain->data);
 	/* And start with the second certificate in the chain */
@@ -218,18 +226,43 @@
 
 		issuer = (PurpleCertificate *)(cur->data);
 
+		uid = purple_certificate_get_unique_id(issuer);
+
+		ret = purple_certificate_get_times(issuer, &activation, &expiration);
+		if (!ret || now < activation || now > expiration) { 
+			if (!ret)
+				purple_debug_error("certificate",
+						"...Failed to get validity times for certificate %s\n"
+						"Chain is INVALID\n", uid);
+			else if (now > expiration)
+				purple_debug_error("certificate",
+						"...Issuer %s expired at %s\nChain is INVALID\n",
+						uid, ctime(&expiration));
+			else
+				purple_debug_error("certificate",
+						"...Not-yet-activated issuer %s will be valid at %s\n"
+						"Chain is INVALID\n", uid, ctime(&activation));
+
+			if (failing)
+				*failing = crt;
+
+			g_free(uid);
+			return FALSE;
+		}
+
 		/* Check the signature for this link */
 		if (! purple_certificate_signed_by(crt, issuer) ) {
-			uid = purple_certificate_get_unique_id(issuer);
 			purple_debug_error("certificate",
 					  "...Bad or missing signature by %s\nChain is INVALID\n",
 					  uid);
 			g_free(uid);
 
+			if (failing)
+				*failing = crt;
+
 			return FALSE;
 		}
 
-		uid = purple_certificate_get_unique_id(issuer);
 		purple_debug_info("certificate",
 				  "...Good signature by %s\n",
 				  uid);
@@ -245,6 +278,12 @@
 	return TRUE;
 }
 
+gboolean
+purple_certificate_check_signature_chain(GList *chain)
+{
+	return purple_certificate_check_signature_chain_with_failing(chain, NULL);
+}
+
 PurpleCertificate *
 purple_certificate_import(PurpleCertificateScheme *scheme, const gchar *filename)
 {
@@ -270,6 +309,16 @@
 	return (scheme->export_certificate)(filename, crt);
 }
 
+static gboolean
+byte_arrays_equal(const GByteArray *array1, const GByteArray *array2)
+{
+	g_return_val_if_fail(array1 != NULL, FALSE);
+	g_return_val_if_fail(array2 != NULL, FALSE);
+
+	return (array1->len == array2->len) &&
+		(0 == memcmp(array1->data, array2->data, array1->len));
+}
+	
 GByteArray *
 purple_certificate_get_fingerprint_sha1(PurpleCertificate *crt)
 {
@@ -362,7 +411,6 @@
 	return (scheme->get_times)(crt, activation, expiration);
 }
 
-
 gchar *
 purple_certificate_pool_mkpath(PurpleCertificatePool *pool, const gchar *id)
 {
@@ -1280,10 +1328,10 @@
 x509_tls_cached_unknown_peer(PurpleCertificateVerificationRequest *vrq)
 {
 	PurpleCertificatePool *ca, *tls_peers;
-	PurpleCertificate *end_crt, *ca_crt, *peer_crt;
+	PurpleCertificate *peer_crt;
+	PurpleCertificate *failing_crt;
 	GList *chain = vrq->cert_chain;
-	GList *last;
-	gchar *ca_id;
+	gboolean chain_validated = FALSE;
 
 	peer_crt = (PurpleCertificate *) chain->data;
 
@@ -1309,12 +1357,52 @@
 		return;
 	} /* if (self signed) */
 
+	/* Next, attempt to verify the last certificate against a CA */
+	ca = purple_certificate_find_pool(x509_tls_cached.scheme_name, "ca");
+
 	/* Next, check that the certificate chain is valid */
-	if ( ! purple_certificate_check_signature_chain(chain) ) {
-		/* TODO: Tell the user where the chain broke? */
-		/* TODO: This error will hopelessly confuse any
-		   non-elite user. */
-		if(purple_prefs_get_bool("/purple/network/warn_cert")) {
+	if (purple_certificate_check_signature_chain_with_failing(chain,
+	                                                          &failing_crt))
+		chain_validated = TRUE;
+	else {
+		/*
+		 * Check if the failing certificate is in the CA store. If it is, then
+		 * consider this fully validated. This works around issues with some
+		 * prominent intermediate CAs whose signature is md5WithRSAEncryption.
+		 * I'm looking at CACert Class 3 here. See #4458 for details.
+		 */
+		if (ca) {
+			gchar *uid = purple_certificate_get_unique_id(failing_crt);
+			PurpleCertificate *ca_crt = purple_certificate_pool_retrieve(ca, uid);
+			if (ca_crt != NULL) {
+				GByteArray *failing_fpr;
+				GByteArray *ca_fpr;
+				failing_fpr = purple_certificate_get_fingerprint_sha1(failing_crt);
+				ca_fpr = purple_certificate_get_fingerprint_sha1(ca_crt);
+				if (byte_arrays_equal(failing_fpr, ca_fpr)) {
+					purple_debug_info("certificate/x509/tls_cached",
+							"Full chain verification failed (probably a bad "
+							"signature algorithm), but found the last "
+							"certificate %s in the CA pool.\n", uid);
+					chain_validated = TRUE;
+				}
+
+				g_byte_array_free(failing_fpr, TRUE);
+				g_byte_array_free(ca_fpr, TRUE);
+			}
+
+			purple_certificate_destroy(ca_crt);
+			g_free(uid);
+		}
+
+		/*
+		 * If we get here, either the cert matched the stuff right above
+		 * or it didn't, in which case we give up and complain to the user.
+		 */
+		if (!chain_validated) {
+			/* TODO: Tell the user where the chain broke? */
+			/* TODO: This error will hopelessly confuse any
+			   non-elite user. */
 			gchar *secondary;
 
 			secondary = g_strdup_printf(_("The certificate chain presented"
@@ -1329,17 +1417,14 @@
 					    _("Invalid certificate chain"),
 					    secondary );
 			g_free(secondary);
+
+			/* Okay, we're done here */
+			purple_certificate_verify_complete(vrq,
+							   PURPLE_CERTIFICATE_INVALID);
+			return;
 		}
-
-		/* Okay, we're done here */
-		purple_certificate_verify_complete(vrq,
-						   PURPLE_CERTIFICATE_INVALID);
-		return;
 	} /* if (signature chain not good) */
 
-	/* Next, attempt to verify the last certificate against a CA */
-	ca = purple_certificate_find_pool(x509_tls_cached.scheme_name, "ca");
-
 	/* If, for whatever reason, there is no Certificate Authority pool
 	   loaded, we will simply present it to the user for checking. */
 	if ( !ca ) {
@@ -1355,40 +1440,60 @@
 		return;
 	}
 
-	last = g_list_last(chain);
-	end_crt = (PurpleCertificate *) last->data;
+	if (!chain_validated) {
+		GByteArray *last_fpr, *ca_fpr;
+		PurpleCertificate *ca_crt, *end_crt;
+		gchar *ca_id;
+
+		end_crt = g_list_last(chain)->data;
 
-	/* Attempt to look up the last certificate's issuer */
-	ca_id = purple_certificate_get_issuer_unique_id(end_crt);
-	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 ) {
-		purple_debug_warning("certificate/x509/tls_cached",
-				  "Certificate Authority with DN='%s' not "
-				  "found. I'll prompt the user, I guess.\n",
+		/* Attempt to look up the last certificate's issuer */
+		ca_id = purple_certificate_get_issuer_unique_id(end_crt);
+		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 ) {
+			purple_debug_warning("certificate/x509/tls_cached",
+					  "Certificate Authority with DN='%s' not "
+					  "found. I'll prompt the user, I guess.\n",
+					  ca_id);
+			g_free(ca_id);
+			/* vrq will be completed by user_auth */
+			x509_tls_cached_user_auth(vrq,_("The root certificate this "
+							"one claims to be issued by "
+							"is unknown to Pidgin."));
+			return;
+		}
+
 		g_free(ca_id);
-		/* vrq will be completed by user_auth */
-		x509_tls_cached_user_auth(vrq,_("The root certificate this "
-						"one claims to be issued by "
-						"is unknown to Pidgin."));
-		return;
-	}
-
-	g_free(ca_id);
 
-	/* Check the signature */
-	if ( !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. */
-		/* TODO: This error message makes my eyes cross, and I wrote it */
-		if(purple_prefs_get_bool("/purple/network/warn_cert")) {
+		/*
+		 * Check the fingerprints; if they match, then this certificate *is* one
+		 * of the designated "trusted roots", and we don't need to verify the
+		 * signature. This is good because some of the older roots are self-signed
+		 * with bad hash algorithms that we don't want to allow in any other
+		 * circumstances (one of Verisign's root CAs is self-signed with MD2).
+		 *
+		 * If the fingerprints don't match, we'll fall back to checking the
+		 * signature.
+		 *
+		 * GnuTLS doesn't seem to include the final root in the verification
+		 * list, so this check will never succeed.  NSS *does* include it in
+		 * the list, so here we are.
+		 */
+		last_fpr = purple_certificate_get_fingerprint_sha1(end_crt);
+		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. */
+			/* TODO: This error message makes my eyes cross, and I wrote it */
 			gchar * secondary =
 				g_strdup_printf(_("The certificate chain presented by "
 						  "%s does not have a valid digital "
@@ -1403,12 +1508,20 @@
 					      " signature"),
 					    secondary);
 			g_free(secondary);
-		}
-		/* Signal "bad cert" */
-		purple_certificate_verify_complete(vrq,
-						   PURPLE_CERTIFICATE_INVALID);
-		return;
-	} /* if (CA signature not good) */
+
+			/* Signal "bad cert" */
+			purple_certificate_verify_complete(vrq,
+							   PURPLE_CERTIFICATE_INVALID);
+
+			purple_certificate_destroy(ca_crt);
+			g_byte_array_free(ca_fpr, TRUE);
+			g_byte_array_free(last_fpr, TRUE);
+			return;
+		} /* if (CA signature not good) */
+
+		g_byte_array_free(ca_fpr, TRUE);
+		g_byte_array_free(last_fpr, TRUE);
+	}
 
 	/* Last, check that the hostname matches */
 	if ( ! purple_certificate_check_subject_name(peer_crt,
@@ -1465,6 +1578,8 @@
 {
 	const gchar *tls_peers_name = "tls_peers"; /* Name of local cache */
 	PurpleCertificatePool *tls_peers;
+	time_t now, activation, expiration;
+	gboolean ret;
 
 	g_return_if_fail(vrq);
 
@@ -1472,6 +1587,46 @@
 			  "Starting verify for %s\n",
 			  vrq->subject_name);
 
+	/*
+	 * Verify the first certificate (the main one) has been activated and
+	 * isn't expired, i.e. activation < now < expiration.
+	 */
+	now = time(NULL);
+	ret = purple_certificate_get_times(vrq->cert_chain->data, &activation,
+	                                   &expiration);
+	if (!ret || now > expiration || now < activation) {
+		gchar *secondary;
+
+		if (!ret)
+			purple_debug_error("certificate/x509/tls_cached",
+					"Failed to get validity times for certificate %s\n",
+					vrq->subject_name);
+		else if (now > expiration)
+			purple_debug_error("certificate/x509/tls_cached",
+					"Certificate %s expired at %s\n",
+					vrq->subject_name, ctime(&expiration));
+		else
+			purple_debug_error("certificate/x509/tls_cached",
+					"Certificate %s is not yet valid, will be at %s\n",
+					vrq->subject_name, ctime(&activation));
+
+		/* FIXME 2.6.1 */
+		secondary = g_strdup_printf(_("The certificate chain presented"
+					" for %s is not valid."),
+					vrq->subject_name);
+
+		purple_notify_error(NULL, /* TODO: Probably wrong. */
+					_("SSL Certificate Error"),
+					_("Invalid certificate chain"),
+					secondary );
+		g_free(secondary);
+
+		/* Okay, we're done here */
+		purple_certificate_verify_complete(vrq,
+						    PURPLE_CERTIFICATE_INVALID);
+		return;
+	}
+
 	tls_peers = purple_certificate_find_pool(x509_tls_cached.scheme_name,tls_peers_name);
 
 	if (!tls_peers) {
--- a/libpurple/certificate.h	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/certificate.h	Sun Jul 26 22:18:59 2009 +0900
@@ -443,6 +443,28 @@
 purple_certificate_signed_by(PurpleCertificate *crt, PurpleCertificate *issuer);
 
 /**
+ * Check that a certificate chain is valid and, if not, the failing certificate.
+ *
+ * Uses purple_certificate_signed_by() to verify that each PurpleCertificate
+ * in the chain carries a valid signature from the next. A single-certificate
+ * chain is considered to be valid.
+ *
+ * @param chain      List of PurpleCertificate instances comprising the chain,
+ *                   in the order certificate, issuer, issuer's issuer, etc.
+ * @param failing    A pointer to a PurpleCertificate*. If not NULL, if the
+ *                   chain fails to validate, this will be set to the
+ *                   certificate whose signature could not be validated.
+ * @return TRUE if the chain is valid. See description.
+ *
+ * @since 2.6.0
+ * @deprecated  This function will become
+ *              purple_certificate_check_signature_chain in 3.0.0
+ */
+gboolean
+purple_certificate_check_signature_chain_with_failing(GList *chain,
+		PurpleCertificate **failing);
+
+/**
  * Check that a certificate chain is valid
  *
  * Uses purple_certificate_signed_by() to verify that each PurpleCertificate
@@ -453,6 +475,8 @@
  *                   in the order certificate, issuer, issuer's issuer, etc.
  * @return TRUE if the chain is valid. See description.
  * @todo Specify which certificate in the chain caused a failure
+ * @deprecated  This function will be removed in 3.0.0 and replaced with
+ *              purple_certificate_check_signature_chain_with_failing
  */
 gboolean
 purple_certificate_check_signature_chain(GList *chain);
--- a/libpurple/ft.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/ft.c	Sun Jul 26 22:18:59 2009 +0900
@@ -132,6 +132,8 @@
 {
 	g_return_if_fail(xfer != NULL);
 
+	xfer->status = status;
+
 	if(xfer->type == PURPLE_XFER_SEND) {
 		switch(status) {
 			case PURPLE_XFER_STATUS_ACCEPTED:
@@ -169,8 +171,6 @@
 				break;
 		}
 	}
-
-	xfer->status = status;
 }
 
 void purple_xfer_conversation_write(PurpleXfer *xfer, char *message, gboolean is_error)
@@ -949,7 +949,7 @@
 			const size_t wc = fwrite(buffer, 1, r, xfer->dest_fp);
 			if (wc != r) {
 				purple_debug_error("filetransfer", "Unable to write whole buffer.\n");
-				purple_xfer_cancel_remote(xfer);
+				purple_xfer_cancel_local(xfer);
 				return;
 			}
 		} else if(r < 0) {
--- a/libpurple/mediamanager.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/mediamanager.c	Sun Jul 26 22:18:59 2009 +0900
@@ -780,7 +780,8 @@
 		pad = gst_element_get_static_pad(queue, "sink");
 		peer = gst_pad_get_peer(pad);
 		gst_object_unref(pad);
-		gst_element_release_request_pad(GST_ELEMENT_PARENT(peer), peer);
+		if (peer != NULL)
+			gst_element_release_request_pad(GST_ELEMENT_PARENT(peer), peer);
 		gst_element_set_locked_state(queue, TRUE);
 		gst_element_set_state(queue, GST_STATE_NULL);
 		gst_bin_remove(GST_BIN(GST_ELEMENT_PARENT(queue)), queue);
--- a/libpurple/plugins/ssl/ssl-gnutls.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/plugins/ssl/ssl-gnutls.c	Sun Jul 26 22:18:59 2009 +0900
@@ -668,6 +668,8 @@
 	gnutls_x509_crt issuer_dat;
 	unsigned int verify; /* used to store result from GnuTLS verifier */
 	int ret;
+	gchar *crt_id = NULL;
+	gchar *issuer_id = NULL;
 
 	g_return_val_if_fail(crt, FALSE);
 	g_return_val_if_fail(issuer, FALSE);
@@ -728,13 +730,29 @@
 		return FALSE;
 	}
 
+	if (verify & GNUTLS_CERT_INSECURE_ALGORITHM) {
+		/*
+		 * A certificate in the chain is signed with an insecure
+		 * algorithm. Put a warning into the log to make this error
+		 * perfectly clear as soon as someone looks at the debug log is
+		 * generated.
+		 */
+		crt_id = purple_certificate_get_unique_id(crt);
+		issuer_id = purple_certificate_get_issuer_unique_id(crt);
+		purple_debug_warning("gnutls/x509",
+				"Insecure hash algorithm used by %s to sign %s\n",
+				issuer_id, crt_id);
+	}
+
 	if (verify & GNUTLS_CERT_INVALID) {
 		/* Signature didn't check out, but at least
 		   there were no errors*/
-		gchar *crt_id = purple_certificate_get_unique_id(crt);
-		gchar *issuer_id = purple_certificate_get_issuer_unique_id(crt);
-		purple_debug_info("gnutls/x509",
-				  "Bad signature for %s on %s\n",
+		if (!crt_id)
+			crt_id = purple_certificate_get_unique_id(crt);
+		if (!issuer_id)
+			issuer_id = purple_certificate_get_issuer_unique_id(crt);
+		purple_debug_error("gnutls/x509",
+				  "Bad signature from %s on %s\n",
 				  issuer_id, crt_id);
 		g_free(crt_id);
 		g_free(issuer_id);
--- a/libpurple/plugins/ssl/ssl-nss.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/plugins/ssl/ssl-nss.c	Sun Jul 26 22:18:59 2009 +0900
@@ -152,12 +152,6 @@
 	SSL_CipherPrefSetDefault(SSL_DHE_RSA_WITH_DES_CBC_SHA, 1);
 	SSL_CipherPrefSetDefault(SSL_DHE_DSS_WITH_DES_CBC_SHA, 1);
 
-#ifdef NEED_NSS_WEAK_ALGORITHMS
-	/* Enable some weaker algorithms for XMPP and MSN */
-	NSS_SetAlgorithmPolicy(SEC_OID_PKCS1_MD2_WITH_RSA_ENCRYPTION, NSS_USE_ALG_IN_CERT_SIGNATURE, 0);
-	NSS_SetAlgorithmPolicy(SEC_OID_PKCS1_MD4_WITH_RSA_ENCRYPTION, NSS_USE_ALG_IN_CERT_SIGNATURE, 0);
-#endif
-
 	_identity = PR_GetUniqueIdentity("Purple");
 	_nss_methods = PR_GetDefaultIOMethods();
 }
--- a/libpurple/protocols/jabber/google.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/jabber/google.c	Sun Jul 26 22:18:59 2009 +0900
@@ -983,21 +983,17 @@
 	PurpleAccount *account = purple_connection_get_account(js->gc);
 	GSList *list = account->deny;
 	const char *jid = xmlnode_get_attrib(item, "jid");
-	char *jid_norm = g_strdup(jabber_normalize(account, jid));
+	char *jid_norm = jabber_normalize(account, jid);
 
 	while (list) {
 		if (!strcmp(jid_norm, (char*)list->data)) {
 			xmlnode_set_attrib(query, "xmlns:gr", "google:roster");
+			xmlnode_set_attrib(query, "gr:ext", "2");
 			xmlnode_set_attrib(item, "gr:t", "B");
-			xmlnode_set_attrib(query, "xmlns:gr", "google:roster");
-			xmlnode_set_attrib(query, "gr:ext", "2");
 			return;
 		}
 		list = list->next;
 	}
-
-	g_free(jid_norm);
-
 }
 
 gboolean jabber_google_roster_incoming(JabberStream *js, xmlnode *item)
--- a/libpurple/protocols/jabber/jabber.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/jabber/jabber.c	Sun Jul 26 22:18:59 2009 +0900
@@ -457,6 +457,7 @@
 void jabber_send_signal_cb(PurpleConnection *pc, xmlnode **packet,
                            gpointer unused)
 {
+	JabberStream *js;
 	char *txt, *utf;
 	int len;
 	gsize utflen;
@@ -464,9 +465,15 @@
 	if (NULL == packet)
 		return;
 
+	js = purple_connection_get_protocol_data(pc);
+	if (js->use_bosh)
+		if (g_str_equal((*packet)->name, "message") ||
+				g_str_equal((*packet)->name, "iq") ||
+				g_str_equal((*packet)->name, "presence"))
+			xmlnode_set_namespace(*packet, "jabber:client");
 	txt = xmlnode_to_str(*packet, &len);
 	utf = botch_utf(txt, len, &utflen); //yaz
-	jabber_send_raw(purple_connection_get_protocol_data(pc), utf, utflen);
+	jabber_send_raw(js, utf, utflen);
 	g_free(txt); g_free(utf);
 }
 
@@ -701,6 +708,8 @@
 	js->gc->inpa = 0;
 	js->gsc = purple_ssl_connect_with_host_fd(js->gc->account, js->fd,
 			jabber_login_callback_ssl, jabber_ssl_connect_failure, js->certificate_CN, js->gc);
+	/* The fd is no longer our concern */
+	js->fd = -1;
 }
 
 static gboolean jabber_login_connect(JabberStream *js, const char *domain, const char *host, int port,
--- a/libpurple/protocols/msn/httpconn.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/msn/httpconn.c	Sun Jul 26 22:18:59 2009 +0900
@@ -293,7 +293,7 @@
 		purple_debug_error("msn", "HTTP: servconn %03d read error, "
 			"len: %" G_GSSIZE_FORMAT ", errno: %d, error: %s\n",
 			servconn->num, len, error, g_strerror(errno));
-		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ);
+		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ, NULL);
 
 		return;
 	}
@@ -309,7 +309,7 @@
 	{
 		/* Either we must wait for more input, or something went wrong */
 		if (error)
-			msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ);
+			msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ, NULL);
 
 		return;
 	}
@@ -317,7 +317,7 @@
 	if (error)
 	{
 		purple_debug_error("msn", "HTTP: Special error\n");
-		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ);
+		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ, NULL);
 
 		return;
 	}
@@ -368,7 +368,7 @@
 			return;
 
 		/* Error! */
-		msn_servconn_got_error(httpconn->servconn, MSN_SERVCONN_ERROR_WRITE);
+		msn_servconn_got_error(httpconn->servconn, MSN_SERVCONN_ERROR_WRITE, NULL);
 		return;
 	}
 
@@ -394,7 +394,7 @@
 
 	if ((res <= 0) && ((errno != EAGAIN) && (errno != EWOULDBLOCK)))
 	{
-		msn_servconn_got_error(httpconn->servconn, MSN_SERVCONN_ERROR_WRITE);
+		msn_servconn_got_error(httpconn->servconn, MSN_SERVCONN_ERROR_WRITE, NULL);
 		return FALSE;
 	}
 
@@ -672,7 +672,7 @@
 	{
 		purple_debug_error("msn", "HTTP: Connection error: %s\n",
 		                   error_message ? error_message : "(null)");
-		msn_servconn_got_error(httpconn->servconn, MSN_SERVCONN_ERROR_CONNECT);
+		msn_servconn_got_error(httpconn->servconn, MSN_SERVCONN_ERROR_CONNECT, error_message);
 	}
 }
 
--- a/libpurple/protocols/msn/servconn.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/msn/servconn.c	Sun Jul 26 22:18:59 2009 +0900
@@ -123,38 +123,35 @@
  **************************************************************************/
 
 void
-msn_servconn_got_error(MsnServConn *servconn, MsnServConnError error)
+msn_servconn_got_error(MsnServConn *servconn, MsnServConnError error,
+                       const char *reason)
 {
-	char *tmp;
-	const char *reason;
+	MsnSession *session = servconn->session;
+	MsnServConnType type = servconn->type;
 
 	const char *names[] = { "Notification", "Switchboard" };
 	const char *name;
 
-	name = names[servconn->type];
+	name = names[type];
 
-	switch (error)
-	{
-		case MSN_SERVCONN_ERROR_CONNECT:
-			reason = _("Unable to connect"); break;
-		case MSN_SERVCONN_ERROR_WRITE:
-			reason = _("Writing error"); break;
-		case MSN_SERVCONN_ERROR_READ:
-			reason = _("Reading error"); break;
-		default:
-			reason = _("Unknown error"); break;
+	if (reason == NULL) {
+		switch (error)
+		{
+			case MSN_SERVCONN_ERROR_CONNECT:
+				reason = _("Unable to connect"); break;
+			case MSN_SERVCONN_ERROR_WRITE:
+				reason = _("Writing error"); break;
+			case MSN_SERVCONN_ERROR_READ:
+				reason = _("Reading error"); break;
+			default:
+				reason = _("Unknown error"); break;
+		}
 	}
 
 	purple_debug_error("msn", "Connection error from %s server (%s): %s\n",
 					 name, servconn->host, reason);
-	tmp = g_strdup_printf(_("Connection error from %s server:\n%s"),
-						  name, reason);
 
-	if (servconn->type == MSN_SERVCONN_NS)
-	{
-		msn_session_set_error(servconn->session, MSN_ERROR_SERVCONN, tmp);
-	}
-	else if (servconn->type == MSN_SERVCONN_SB)
+	if (type == MSN_SERVCONN_SB)
 	{
 		MsnSwitchBoard *swboard;
 		swboard = servconn->cmdproc->data;
@@ -162,9 +159,16 @@
 			swboard->error = MSN_SB_ERROR_CONNECTION;
 	}
 
+	/* servconn->disconnect_cb may destroy servconn, so don't use it again */
 	msn_servconn_disconnect(servconn);
 
-	g_free(tmp);
+	if (type == MSN_SERVCONN_NS)
+	{
+		char *tmp = g_strdup_printf(_("Connection error from %s server:\n%s"),
+		                            name, reason);
+		msn_session_set_error(session, MSN_ERROR_SERVCONN, tmp);
+		g_free(tmp);
+	}
 }
 
 /**************************************************************************
@@ -194,7 +198,7 @@
 	else
 	{
 		purple_debug_error("msn", "Connection error: %s\n", error_message);
-		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_CONNECT);
+		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_CONNECT, error_message);
 	}
 }
 
@@ -310,7 +314,7 @@
 
 	if (servconn->connected && servconn->timeout_sec) {
 		servconn->timeout_handle = purple_timeout_add_seconds(
-			servconn->timeout_sec, servconn_idle_timeout_cb, servconn);
+			servconn->timeout_sec, (GSourceFunc)servconn_idle_timeout_cb, servconn);
 	}
 }
 
@@ -342,7 +346,7 @@
 	if (ret < 0 && errno == EAGAIN)
 		return;
 	else if (ret <= 0) {
-		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_WRITE);
+		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_WRITE, NULL);
 		return;
 	}
 
@@ -399,7 +403,7 @@
 
 	if (ret == -1)
 	{
-		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_WRITE);
+		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_WRITE, NULL);
 	}
 
 	servconn_timeout_renew(servconn);
@@ -425,7 +429,7 @@
 		purple_debug_error("msn", "servconn %03d read error, "
 			"len: %" G_GSSIZE_FORMAT ", errno: %d, error: %s\n",
 			servconn->num, len, errno, g_strerror(errno));
-		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ);
+		msn_servconn_got_error(servconn, MSN_SERVCONN_ERROR_READ, NULL);
 
 		return;
 	}
--- a/libpurple/protocols/msn/servconn.h	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/msn/servconn.h	Sun Jul 26 22:18:59 2009 +0900
@@ -170,7 +170,8 @@
  * @param servconn The servconn.
  * @param error The error that happened.
  */
-void msn_servconn_got_error(MsnServConn *servconn, MsnServConnError error);
+void msn_servconn_got_error(MsnServConn *servconn, MsnServConnError error,
+                            const char *reason);
 
 /**
  * Process the data in servconn->rx_buf.  This is called after reading
--- a/libpurple/protocols/oscar/family_icbm.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/oscar/family_icbm.c	Sun Jul 26 22:18:59 2009 +0900
@@ -949,6 +949,9 @@
 	GSList *outer_tlvlist = NULL, *inner_tlvlist = NULL;
 	ByteStream hdrbs;
 
+	g_return_if_fail(bn != NULL);
+	g_return_if_fail(ip != NULL);
+
 	conn = flap_connection_findbygroup(od, SNAC_FAMILY_ICBM);
 	if (conn == NULL)
 		return;
--- a/libpurple/protocols/oscar/peer.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/oscar/peer.c	Sun Jul 26 22:18:59 2009 +0900
@@ -712,10 +712,10 @@
 	{
 		const guchar *ip_atoi = purple_network_ip_atoi(listener_ip);
 		if (ip_atoi == NULL) {
-			purple_debug_error("oscar", "Cannot send file. IP %s failed atoi.\n"
+			purple_debug_error("oscar", "Cannot send file. atoi(%s) failed.\n"
 					"Other possibly useful information: fd = %d, port = %d\n",
-			                   listener_ip ? listener_ip : "(null!)", conn->listenerfd,
-							   listener_port);
+					listener_ip ? listener_ip : "(null!)", conn->listenerfd,
+					listener_port);
 			purple_xfer_cancel_local(conn->xfer);
 			return;
 		}
--- a/libpurple/protocols/yahoo/libymsg.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/protocols/yahoo/libymsg.c	Sun Jul 26 22:18:59 2009 +0900
@@ -577,16 +577,21 @@
 
 	g_hash_table_foreach(ht, yahoo_do_group_cleanup, NULL);
 
+	/* The reporter of ticket #9745 determined that we weren't retrieving the
+	 * aliases during buddy list retrieval, so we never updated aliases that
+	 * changed while we were signed off. */
+	yahoo_fetch_aliases(gc);
+
 	/* Now that we have processed the buddy list, we can say yahoo has connected */
 	purple_connection_set_display_name(gc, purple_normalize(account, purple_account_get_username(account)));
+	yd->logged_in = TRUE;
+	purple_debug_info("yahoo","Authentication: Connection established\n");
 	purple_connection_set_state(gc, PURPLE_CONNECTED);
-	yd->logged_in = TRUE;
 	if (yd->picture_upload_todo) {
 		yahoo_buddy_icon_upload(gc, yd->picture_upload_todo);
 		yd->picture_upload_todo = NULL;
 	}
 	yahoo_set_status(account, purple_account_get_active_status(account));
-	purple_debug_info("yahoo","Authentication: Connection established\n");
 
 	g_hash_table_destroy(ht);
 	g_free(norm_bud);
--- a/libpurple/proxy.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/proxy.c	Sun Jul 26 22:18:59 2009 +0900
@@ -606,6 +606,9 @@
 static void
 purple_proxy_connect_data_connected(PurpleProxyConnectData *connect_data)
 {
+	purple_debug_info("proxy", "Connected to %s:%d.\n",
+	                  connect_data->host, connect_data->port);
+
 	connect_data->connect_cb(connect_data->data, connect_data->fd, NULL);
 
 	/*
--- a/libpurple/win32/targets.mak	Sat Jul 25 05:14:27 2009 +0000
+++ b/libpurple/win32/targets.mak	Sun Jul 26 22:18:59 2009 +0900
@@ -36,7 +36,7 @@
 $(PIDGIN_INSTALL_DIR):
 	mkdir -p $(PIDGIN_INSTALL_DIR)
 
-$(PIDGIN_INSTALL_PERLMOD_DIR):
+$(PIDGIN_INSTALL_PERL_DIR):
 	mkdir -p $(PIDGIN_INSTALL_PERL_DIR)
 
 $(PIDGIN_INSTALL_PLUGINS_DIR):
--- a/pidgin/gtkblist.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/pidgin/gtkblist.c	Sun Jul 26 22:18:59 2009 +0900
@@ -6986,12 +6986,9 @@
 static void
 add_chat_cb(GtkWidget *w, PidginAddChatData *data)
 {
-	GHashTable *components;
 	GList *tmp;
 	PurpleChat *chat;
-	PurpleGroup *group;
-	const char *group_name;
-	const char *value;
+	GHashTable *components;
 
 	components = g_hash_table_new_full(g_str_hash, g_str_equal,
 									   g_free, g_free);
@@ -7007,7 +7004,8 @@
 		}
 		else
 		{
-			value = gtk_entry_get_text(tmp->data);
+			const char *value = gtk_entry_get_text(tmp->data);
+
 			if (*value != '\0')
 				g_hash_table_replace(components,
 						g_strdup(g_object_get_data(tmp->data, "identifier")),
@@ -7016,28 +7014,31 @@
 	}
 
 	chat = purple_chat_new(data->chat_data.rq_data.account,
-							   gtk_entry_get_text(GTK_ENTRY(data->alias_entry)),
-							   components);
-
-	group_name = pidgin_text_combo_box_entry_get_text(data->group_combo);
-
-	group = NULL;
-	if ((group_name != NULL) && (*group_name != '\0') && ((group = purple_find_group(group_name)) == NULL))
-	{
-		group = purple_group_new(group_name);
-		purple_blist_add_group(group, NULL);
-	}
-
-	if (chat != NULL)
-	{
+	                       gtk_entry_get_text(GTK_ENTRY(data->alias_entry)),
+	                       components);
+
+	if (chat != NULL) {
+		PurpleGroup *group;
+		const char *group_name;
+
+		group_name = pidgin_text_combo_box_entry_get_text(data->group_combo);
+
+		group = NULL;
+		if ((group_name != NULL) && (*group_name != '\0') &&
+		    ((group = purple_find_group(group_name)) == NULL))
+		{
+			group = purple_group_new(group_name);
+			purple_blist_add_group(group, NULL);
+		}
+
 		purple_blist_add_chat(chat, group, NULL);
-	}
-
-	if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(data->autojoin)))
-		purple_blist_node_set_bool((PurpleBlistNode*)chat, "gtk-autojoin", TRUE);
-
-	if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(data->persistent)))
-		purple_blist_node_set_bool((PurpleBlistNode*)chat, "gtk-persistent", TRUE);
+
+		if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(data->autojoin)))
+			purple_blist_node_set_bool((PurpleBlistNode*)chat, "gtk-autojoin", TRUE);
+
+		if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(data->persistent)))
+			purple_blist_node_set_bool((PurpleBlistNode*)chat, "gtk-persistent", TRUE);
+	}
 
 	gtk_widget_destroy(data->chat_data.rq_data.window);
 	g_free(data->chat_data.default_chat_name);
--- a/pidgin/gtkdialogs.c	Sat Jul 25 05:14:27 2009 +0000
+++ b/pidgin/gtkdialogs.c	Sun Jul 26 22:18:59 2009 +0900
@@ -147,10 +147,8 @@
 	{N_("Bulgarian"),           "bg", "Vladimira Girginova", "missing@here.is"},
 	{N_("Bulgarian"),           "bg", "Vladimir (Kaladan) Petkov", "vpetkov@i-space.org"},
 	{N_("Bengali"),             "bn", "Israt Jahan", "israt@ankur.org.bd"},
-	{N_("Bengali"),             "bn", "INDRANIL DAS GUPTA", "indradg@l2c2.org"},
 	{N_("Bengali"),             "bn", "Jamil Ahmed", "jamil@bengalinux.org"},
 	{N_("Bengali"),             "bn", "Samia Nimatullah", "mailsamia2001@yahoo.com"},
-	{N_("Bengali"),             "bn", "Tisa Nafisa", "tisa_nafisa@yahoo.com"},
 	{N_("Bosnian"),             "bs", "Lejla Hadzialic", "lejlah@gmail.com"},
 	{N_("Catalan"),             "ca", "Josep Puigdemont", "josep.puigdemont@gmail.com"},
 	{N_("Valencian-Catalan"),   "ca@valencia", "Toni Hermoso", "toniher@softcatala.org"},
@@ -245,6 +243,8 @@
 	{N_("Amharic"),             "am", "Daniel Yacob", NULL},
 	{N_("Arabic"),              "ar", "Mohamed Magdy", "alnokta@yahoo.com"},
 	{N_("Bulgarian"),           "bg", "Hristo Todorov", NULL},
+	{N_("Bengali"),             "bn", "INDRANIL DAS GUPTA", "indradg@l2c2.org"},
+	{N_("Bengali"),             "bn", "Tisa Nafisa", "tisa_nafisa@yahoo.com"},
 	{N_("Catalan"),             "ca", "JM Pérez Cáncer", NULL},
 	{N_("Catalan"),             "ca", "Robert Millan", NULL},
 	{N_("Czech"),               "cs", "Honza Král", NULL},
--- a/pidgin/pixmaps/Makefile.am	Sat Jul 25 05:14:27 2009 +0000
+++ b/pidgin/pixmaps/Makefile.am	Sun Jul 26 22:18:59 2009 +0900
@@ -69,15 +69,6 @@
 		dialogs/16/mail.png \
 		dialogs/16/question.png
 
-DIALOGS_64_SCALABLE = \
-		dialogs/64/scalable/auth.svg \
-		dialogs/64/scalable/cool.svg \
-		dialogs/64/scalable/dialog.svg \
-		dialogs/64/scalable/error.svg \
-		dialogs/64/scalable/info.svg \
-		dialogs/64/scalable/question.svg \
-		dialogs/64/scalable/warning.svg
-
 DIALOGS_64 = \
 		dialogs/64/auth.png \
 		dialogs/64/cool.png \
@@ -88,23 +79,14 @@
 		dialogs/64/question.png \
 		dialogs/64/warning.png
 
-EMBLEMS_16_SCALABLE = \
-		emblems/16/scalable/aol-client.svg \
-		emblems/16/scalable/blocked.svg \
-		emblems/16/scalable/bot.svg \
-		emblems/16/scalable/external.svg \
-		emblems/16/scalable/female.svg \
-		emblems/16/scalable/free-for-chat.svg \
-		emblems/16/scalable/game.svg \
-		emblems/16/scalable/male.svg \
-		emblems/16/scalable/mobile.svg \
-		emblems/16/scalable/music.svg \
-		emblems/16/scalable/not-authorized.svg \
-		emblems/16/scalable/qq-member.svg \
-		emblems/16/scalable/secure.svg \
-		emblems/16/scalable/unavailable.svg \
-		emblems/16/scalable/video.svg \
-		emblems/16/scalable/voice.svg
+DIALOGS_SCALABLE = \
+		dialogs/scalable/auth.svg \
+		dialogs/scalable/cool.svg \
+		dialogs/scalable/dialog.svg \
+		dialogs/scalable/error.svg \
+		dialogs/scalable/info.svg \
+		dialogs/scalable/question.svg \
+		dialogs/scalable/warning.svg
 
 EMBLEMS_16 = \
 		emblems/16/aol-client.png \
@@ -129,6 +111,24 @@
 		emblems/16/video.png \
 		emblems/16/voice.png
 
+EMBLEMS_SCALABLE = \
+		emblems/scalable/aol-client.svg \
+		emblems/scalable/blocked.svg \
+		emblems/scalable/bot.svg \
+		emblems/scalable/external.svg \
+		emblems/scalable/female.svg \
+		emblems/scalable/free-for-chat.svg \
+		emblems/scalable/game.svg \
+		emblems/scalable/male.svg \
+		emblems/scalable/mobile.svg \
+		emblems/scalable/music.svg \
+		emblems/scalable/not-authorized.svg \
+		emblems/scalable/qq-member.svg \
+		emblems/scalable/secure.svg \
+		emblems/scalable/unavailable.svg \
+		emblems/scalable/video.svg \
+		emblems/scalable/voice.svg
+
 EMOTES_DEFAULT_24_SCALABLE = \
 		emotes/default/24/scalable/airplane.svg \
 		emotes/default/24/scalable/bad.svg \
@@ -260,10 +260,9 @@
 
 ICONS_32 = icons/hicolor/32x32/apps/pidgin.png
 
-ICONS_48_SCALABLE = \
-		icons/hicolor/48x48/apps/scalable/pidgin.svg
+ICONS_48 = icons/hicolor/48x48/apps/pidgin.png
 
-ICONS_48 = icons/hicolor/48x48/apps/pidgin.png
+ICONS_SCALABLE = icons/hicolor/scalable/apps/pidgin.svg
 
 PROTOCOLS_22_SCALABLE = \
 		protocols/22/scalable/aim.svg \
@@ -299,23 +298,6 @@
 		protocols/22/yahoo.png \
 		protocols/22/zephyr.png
 
-PROTOCOLS_48_SCALABLE = \
-		protocols/48/scalable/aim.svg \
-		protocols/48/scalable/bonjour.svg \
-		protocols/48/scalable/gadu-gadu.svg \
-		protocols/48/scalable/google-talk.svg \
-		protocols/48/scalable/novell.svg \
-		protocols/48/scalable/icq.svg \
-		protocols/48/scalable/irc.svg \
-		protocols/48/scalable/jabber.svg \
-		protocols/48/scalable/meanwhile.svg \
-		protocols/48/scalable/msn.svg \
-		protocols/48/scalable/qq.svg \
-		protocols/48/scalable/silc.svg \
-		protocols/48/scalable/simple.svg \
-		protocols/48/scalable/yahoo.svg \
-		protocols/48/scalable/zephyr.svg
-
 PROTOCOLS_48 = \
 		protocols/48/aim.png \
 		protocols/48/bonjour.png \
@@ -333,6 +315,23 @@
 		protocols/48/yahoo.png \
 		protocols/48/zephyr.png
 
+PROTOCOLS_SCALABLE = \
+		protocols/scalable/aim.svg \
+		protocols/scalable/bonjour.svg \
+		protocols/scalable/gadu-gadu.svg \
+		protocols/scalable/google-talk.svg \
+		protocols/scalable/novell.svg \
+		protocols/scalable/icq.svg \
+		protocols/scalable/irc.svg \
+		protocols/scalable/jabber.svg \
+		protocols/scalable/meanwhile.svg \
+		protocols/scalable/msn.svg \
+		protocols/scalable/qq.svg \
+		protocols/scalable/silc.svg \
+		protocols/scalable/simple.svg \
+		protocols/scalable/yahoo.svg \
+		protocols/scalable/zephyr.svg
+
 STATUS_11 = \
 		status/11/available.png \
 		status/11/away.png \
@@ -541,16 +540,12 @@
 		pidgin.ico		\
 		$(MAKEFILE_MINGW)	\
 		$(DIALOGS_16_SCALABLE)	\
-		$(DIALOGS_64_SCALABLE)	\
 		$(ICONS_16_SCALABLE)	\
 		$(ICONS_24_SCALABLE)	\
 		$(ICONS_32_SCALABLE)	\
-		$(ICONS_48_SCALABLE)	\
-		$(EMBLEMS_16_SCALABLE)	\
 		$(EMOTES_DEFAULT_24_SCALABLE)	\
 		$(PROTOCOLS_16_SCALABLE)	\
 		$(PROTOCOLS_22_SCALABLE)	\
-		$(PROTOCOLS_48_SCALABLE)	\
 		$(TOOLBAR_16_SCALABLE)	\
 		$(TOOLBAR_22_SCALABLE)	\
 		$(TOOLBAR_32_SCALABLE)	\
@@ -566,10 +561,13 @@
 		$(ANIMATIONS_16) \
 		$(DIALOGS_16) \
 		$(DIALOGS_64) \
+		$(DIALOGS_SCALABLE)	\
 		$(EMBLEMS_16) \
+		$(EMBLEMS_SCALABLE)	\
 		$(PROTOCOLS_16) \
 		$(PROTOCOLS_22) \
 		$(PROTOCOLS_48) \
+		$(PROTOCOLS_SCALABLE)	\
 		$(STATUS_11) \
 		$(STATUS_11_RTL) \
 		$(STATUS_16) \
@@ -596,5 +594,6 @@
 		$(ICONS_22) \
 		$(ICONS_24) \
 		$(ICONS_32) \
-		$(ICONS_48)
+		$(ICONS_48) \
+		$(ICONS_SCALABLE)
 endif
--- a/pidgin/pixmaps/dialogs/64/scalable/auth.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,850 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="auth.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/pidgin-mtn/pidgin/pixmaps/dialogs/64/auth.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9188">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop9190" />
-      <stop
-         style="stop-color:#6f726d;stop-opacity:1"
-         offset="1"
-         id="stop9192" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9166">
-      <stop
-         style="stop-color:#3b73bb;stop-opacity:1;"
-         offset="0"
-         id="stop9168" />
-      <stop
-         style="stop-color:#3b73bb;stop-opacity:0;"
-         offset="1"
-         id="stop9170" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9158">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1;"
-         offset="0"
-         id="stop9160" />
-      <stop
-         style="stop-color:#bcd2e9;stop-opacity:1"
-         offset="1"
-         id="stop9162" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9056">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1;"
-         offset="0"
-         id="stop9058" />
-      <stop
-         style="stop-color:#729fcf;stop-opacity:0;"
-         offset="1"
-         id="stop9060" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9040">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1"
-         offset="0"
-         id="stop9042" />
-      <stop
-         style="stop-color:#3465a4;stop-opacity:1"
-         offset="1"
-         id="stop9044" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11669"
-       inkscape:collect="always">
-      <stop
-         id="stop11671"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         id="stop11673"
-         offset="1"
-         style="stop-color:#2e3436;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11653">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop11655" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1"
-         offset="1"
-         id="stop11657" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11493"
-       inkscape:collect="always">
-      <stop
-         id="stop11495"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1" />
-      <stop
-         id="stop11497"
-         offset="1"
-         style="stop-color:#070808;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient11202"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11310"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="translate(10.999931,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11669"
-       id="radialGradient11659"
-       cx="14"
-       cy="19.5"
-       fx="9.3258924"
-       fy="14.814685"
-       r="8"
-       gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11653"
-       id="radialGradient11667"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)"
-       cx="14"
-       cy="19.5"
-       fx="9.3258924"
-       fy="14.814685"
-       r="8" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient8720"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient8722"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient8985"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient8993"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient8995"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient8997"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient9005"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-34.999933,2.0000002)"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient9018"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)"
-       x1="22.919643"
-       y1="33.491837"
-       x2="23.746914"
-       y2="36.579254" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient9036"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)"
-       cx="24.00321"
-       cy="34.70562"
-       fx="24.00321"
-       fy="34.70562"
-       r="12.133846" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9040"
-       id="linearGradient9046"
-       x1="24"
-       y1="37"
-       x2="44.533825"
-       y2="40.875"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9056"
-       id="linearGradient9062"
-       x1="34.5"
-       y1="61.35038"
-       x2="34.5"
-       y2="33.72963"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9158"
-       id="linearGradient9164"
-       x1="29"
-       y1="35.649048"
-       x2="29"
-       y2="32.334484"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-1,0)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9166"
-       id="linearGradient9172"
-       x1="29.125"
-       y1="36.5625"
-       x2="25"
-       y2="31.9375"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9188"
-       id="linearGradient9194"
-       x1="37.5"
-       y1="42.295494"
-       x2="37.5"
-       y2="40.792892"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9166"
-       id="linearGradient9246"
-       gradientUnits="userSpaceOnUse"
-       x1="29.78125"
-       y1="37.09375"
-       x2="23.984375"
-       y2="30.40625" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="1"
-     inkscape:cx="274.07651"
-     inkscape:cy="97.498181"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
-       d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z"
-       id="path11288"
-       sodipodi:nodetypes="cscscscsccc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z"
-       style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path17968"
-       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11300"
-       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       style="opacity:0.80000000000000004;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 22.1875,18.537724 C 22.1875,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22.53125,14.293548 22.1875,18.537724 z"
-       id="path11647"
-       sodipodi:nodetypes="csssc" />
-    <rect
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect11649"
-       width="5.1303458"
-       height="1.0018942"
-       x="6.2930641"
-       y="14.833013"
-       rx="0.51303452"
-       ry="0.50094712"
-       transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" />
-    <rect
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect11651"
-       width="5.1303449"
-       height="1.0018942"
-       x="31.000992"
-       y="25.932768"
-       rx="0.51303446"
-       ry="0.50094712"
-       transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" />
-    <path
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99999994000000003;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 14.5,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z"
-       id="path11661" />
-    <path
-       style="opacity:0.80000000000000004;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 21.849813,22.809207 21.78125,18.600224 C 21.711014,14.288526 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z"
-       id="path11663"
-       sodipodi:nodetypes="csssc" />
-    <path
-       transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path8714"
-       style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path8716"
-       style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path8718"
-       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <rect
-       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9046);stroke-width:0.99999994000000003;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect9038"
-       width="21.999998"
-       height="15"
-       x="23.499998"
-       y="29.5"
-       rx="1.331211"
-       ry="1.2101918" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0060635"
-       inkscape:original="M 25.71875 29.5 C 25.048304 29.5 24.5 30.048304 24.5 30.71875 L 24.5 43.28125 C 24.5 43.951696 25.048304 44.5 25.71875 44.5 L 43.28125 44.5 C 43.951696 44.5 44.5 43.951698 44.5 43.28125 L 44.5 30.71875 C 44.5 30.048304 43.951698 29.5 43.28125 29.5 L 25.71875 29.5 z "
-       style="opacity:1;fill:url(#linearGradient9062);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.94868326000000003;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path9052"
-       d="M 25.71875,30.5 C 25.596823,30.5 25.5,30.596823 25.5,30.71875 L 25.5,43.28125 C 25.5,43.403177 25.596823,43.5 25.71875,43.5 L 43.28125,43.5 C 43.403179,43.5 43.5,43.403181 43.5,43.28125 L 43.5,30.71875 C 43.5,30.596821 43.403181,30.5 43.28125,30.5 L 25.71875,30.5 z"
-       transform="matrix(1.1111112,0,0,1,-3.833336,0)" />
-    <rect
-       style="opacity:1;fill:url(#linearGradient9164);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9246);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect9064"
-       width="5"
-       height="6"
-       x="25.5"
-       y="31.5"
-       rx="0.53033006"
-       ry="0.53033006" />
-    <path
-       style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 28 34 C 27.448 34 27 34.447999 27 35 C 27 35.552 27.448001 35.999999 28 36 C 28.552 36 29 35.551999 29 35 C 29 34.448 28.552001 33.999999 28 34 z M 28 36 C 27.448 36 27 36.448 27 37 C 27 37 29 37 29 37 C 29 36.448 28.552001 36 28 36 z "
-       id="path9242" />
-    <path
-       style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed"
-       d="M 33.000002,33.459106 L 33.308145,33.459106 L 33.308145,33.96439 L 33.761924,33.96439 L 33.761924,33.459106 L 34.069179,33.459106 L 34.069179,34.784921 L 33.761924,34.784921 L 33.761924,34.222804 L 33.308145,34.222804 L 33.308145,34.784921 L 33.000002,34.784921 L 33.000002,33.459106 M 34.237014,33.790338 L 34.523845,33.790338 L 34.764499,34.465233 L 34.968743,33.790338 L 35.254686,33.790338 L 34.878165,34.879051 C 34.840276,34.989757 34.796171,35.067015 34.74585,35.110824 C 34.695529,35.155225 34.629223,35.177425 34.546934,35.177426 L 34.380874,35.177426 L 34.380874,34.968741 L 34.470564,34.968741 C 34.519109,34.968741 34.554333,34.960157 34.576238,34.942988 C 34.598734,34.92582 34.616199,34.895035 34.628631,34.850634 L 34.636624,34.823106 L 34.237014,33.790338 M 35.420746,33.403161 L 35.706688,33.403161 L 35.706688,34.784921 L 35.420746,34.784921 L 35.420746,33.403161 M 35.985527,33.403161 L 36.271469,33.403161 L 36.271469,34.155314 L 36.600925,33.790338 L 36.933045,33.790338 L 36.496139,34.24678 L 36.967677,34.784921 L 36.620461,34.784921 L 36.271469,34.370215 L 36.271469,34.784921 L 35.985527,34.784921 L 35.985527,33.403161 M 37.919635,34.284965 L 37.919635,34.375543 L 37.250956,34.375543 C 37.257468,34.450137 37.281444,34.506083 37.322886,34.543379 C 37.364918,34.580676 37.423231,34.599325 37.497826,34.599324 C 37.55821,34.599325 37.61978,34.589556 37.682534,34.57002 C 37.745878,34.549891 37.810704,34.519699 37.87701,34.479442 L 37.87701,34.724535 C 37.80952,34.752952 37.741734,34.774265 37.673654,34.788473 C 37.606163,34.803273 37.538674,34.810673 37.471185,34.810673 C 37.308973,34.810673 37.182874,34.765088 37.092888,34.673918 C 37.003494,34.582156 36.958797,34.453689 36.958797,34.288517 C 36.958797,34.126306 37.002902,33.998727 37.091112,33.90578 C 37.179322,33.812835 37.300685,33.766362 37.455201,33.766361 C 37.596099,33.766362 37.708582,33.813427 37.792648,33.907556 C 37.877305,34.001687 37.919634,34.12749 37.919635,34.284965 M 37.625701,34.179291 C 37.6257,34.118906 37.609715,34.070361 37.577747,34.033655 C 37.54637,33.996359 37.504929,33.977711 37.453425,33.97771 C 37.398367,33.977711 37.353374,33.995175 37.318445,34.030103 C 37.284108,34.064441 37.2625,34.11417 37.25362,34.179291 L 37.625701,34.179291 M 39.193057,33.972382 C 39.241601,33.972383 39.278306,33.960542 39.303171,33.936861 C 39.328627,33.913182 39.341355,33.878253 39.341356,33.832075 C 39.341355,33.786491 39.328627,33.751858 39.303171,33.728176 C 39.278306,33.703905 39.241601,33.691769 39.193057,33.691767 L 39.023445,33.691767 L 39.023445,33.972382 L 39.193057,33.972382 M 39.203713,34.552259 C 39.265874,34.55226 39.312347,34.537755 39.343132,34.508746 C 39.374508,34.479738 39.390196,34.435929 39.390197,34.377319 C 39.390196,34.319894 39.374508,34.276974 39.343132,34.248556 C 39.312347,34.219548 39.265874,34.205044 39.203713,34.205043 L 39.023445,34.205043 L 39.023445,34.552259 L 39.203713,34.552259 M 39.489655,34.075392 C 39.55596,34.096706 39.607169,34.136074 39.643283,34.193499 C 39.679395,34.250925 39.697451,34.321374 39.697452,34.404848 C 39.697451,34.532723 39.658378,34.628037 39.580234,34.69079 C 39.502679,34.753544 39.384572,34.784921 39.225913,34.784921 L 38.715302,34.784921 L 38.715302,33.459106 L 39.177072,33.459106 C 39.342835,33.459107 39.462718,33.486932 39.536721,33.54258 C 39.611313,33.598231 39.64861,33.687329 39.648611,33.809874 C 39.64861,33.874405 39.634994,33.929462 39.607762,33.975046 C 39.581121,34.02004 39.541752,34.053489 39.489655,34.075392 M 40.375012,33.993694 C 40.311666,33.993695 40.263417,34.019152 40.230265,34.070064 C 40.197111,34.120386 40.180535,34.193204 40.180535,34.288517 C 40.180535,34.383832 40.197111,34.456946 40.230265,34.507858 C 40.263417,34.55818 40.311666,34.58334 40.375012,34.58334 C 40.437765,34.58334 40.485422,34.55818 40.517983,34.507858 C 40.551135,34.456946 40.567712,34.383832 40.567712,34.288517 C 40.567712,34.193204 40.551135,34.120386 40.517983,34.070064 C 40.485422,34.019152 40.437765,33.993695 40.375012,33.993694 M 40.375012,33.766361 C 40.529527,33.766362 40.650001,33.812539 40.736436,33.904892 C 40.822869,33.997247 40.866086,34.125122 40.866087,34.288517 C 40.866086,34.451913 40.822869,34.579788 40.736436,34.672142 C 40.650001,34.764496 40.529527,34.810673 40.375012,34.810673 C 40.221088,34.810673 40.100317,34.764496 40.0127,34.672142 C 39.925673,34.579788 39.88216,34.451913 39.882161,34.288517 C 39.88216,34.125122 39.925673,33.997247 40.0127,33.904892 C 40.100317,33.812539 40.221088,33.766362 40.375012,33.766361 M 41.975225,34.179291 L 41.975225,34.784921 L 41.687506,34.784921 L 41.687506,34.68635 L 41.687506,34.321374 C 41.687505,34.235533 41.685729,34.176331 41.682178,34.14377 C 41.678625,34.11121 41.672705,34.087233 41.664418,34.07184 C 41.653169,34.051121 41.637776,34.035136 41.618241,34.023887 C 41.599295,34.012048 41.577687,34.006127 41.553415,34.006127 C 41.493621,34.006127 41.446556,34.03188 41.41222,34.083385 C 41.378475,34.134298 41.361602,34.205044 41.361603,34.295621 L 41.361603,34.784921 L 41.07566,34.784921 L 41.07566,33.790338 L 41.361603,33.790338 L 41.361603,33.935973 C 41.404819,33.877957 41.4507,33.835332 41.499246,33.808098 C 41.54779,33.780274 41.601367,33.766362 41.659977,33.766361 C 41.762987,33.766362 41.841133,33.801587 41.894415,33.872036 C 41.948287,33.942486 41.975224,34.044904 41.975225,34.179291 M 42.939615,33.821418 L 42.939615,34.06296 C 42.878637,34.034544 42.819435,34.013232 42.762011,33.999023 C 42.705177,33.984815 42.6516,33.977711 42.601279,33.97771 C 42.546813,33.977711 42.506261,33.985407 42.47962,34.000799 C 42.453571,34.0156 42.440547,34.038688 42.440547,34.070064 C 42.440547,34.095521 42.450315,34.115058 42.469852,34.128674 C 42.48998,34.142291 42.526093,34.152355 42.578191,34.158866 L 42.62792,34.166858 C 42.774739,34.18758 42.873309,34.22162 42.923631,34.268981 C 42.974543,34.316342 42.999999,34.39064 43,34.491874 C 42.999999,34.597845 42.964775,34.67747 42.894326,34.730751 C 42.823876,34.784033 42.718793,34.810673 42.579079,34.810673 C 42.519877,34.810673 42.458603,34.805345 42.395258,34.794689 C 42.332505,34.784625 42.267975,34.769232 42.20167,34.748512 L 42.20167,34.50697 C 42.258503,34.537755 42.316816,34.560844 42.37661,34.576236 C 42.436995,34.591628 42.497972,34.599325 42.559542,34.599324 C 42.615191,34.599325 42.657224,34.59074 42.685641,34.573572 C 42.714057,34.556404 42.728265,34.530947 42.728266,34.497202 C 42.728265,34.468786 42.718497,34.447769 42.698961,34.434153 C 42.679424,34.419945 42.640648,34.408992 42.582631,34.401296 L 42.532014,34.394192 C 42.40473,34.376432 42.315336,34.343575 42.263831,34.295621 C 42.212918,34.247669 42.187462,34.174851 42.187462,34.077168 C 42.187462,33.971791 42.220022,33.893645 42.285144,33.842731 C 42.350265,33.791819 42.450019,33.766362 42.584407,33.766361 C 42.637095,33.766362 42.692449,33.770802 42.750467,33.779681 C 42.808483,33.788563 42.871533,33.802475 42.939615,33.821418"
-       id="flowRoot9140" />
-    <path
-       style="opacity:1;fill:url(#linearGradient9194);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 31 40 L 31 43 L 32 43 L 32 40 L 31 40 z M 33 40 L 33 43 L 35 43 L 35 40 L 33 40 z M 36 40 L 36 43 L 36.9375 43 L 36.9375 40 L 36 40 z M 38 40 L 38 43 L 40 43 L 40 40 L 38 40 z M 41.28125 40 C 41.168464 40 41.0625 40.105962 41.0625 40.21875 L 41.0625 42.78125 C 41.0625 42.894036 41.168462 43 41.28125 43 L 41.78125 43 C 41.894036 43 42 42.894038 42 42.78125 L 42 40.21875 C 42 40.105964 41.894038 40 41.78125 40 L 41.28125 40 z M 43.0625 40 L 43.0625 43 L 44 43 L 44 40 L 43.0625 40 z "
-       id="rect9175" />
-    <path
-       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed"
-       d="M 33,35.766614 L 33.543122,35.766614 C 33.704956,35.766616 33.829008,35.806602 33.915279,35.886573 C 34.001548,35.965918 34.044683,36.079265 34.044684,36.226615 C 34.044683,36.374597 34.001548,36.488574 33.915279,36.568546 C 33.829008,36.64789 33.704956,36.687561 33.543122,36.687561 L 33.327762,36.687561 L 33.327762,37.176843 L 33,37.176843 L 33,35.766614 M 33.327762,36.030147 L 33.327762,36.424028 L 33.508174,36.424028 C 33.571773,36.424029 33.62089,36.407027 33.655525,36.373022 C 33.690158,36.338389 33.707475,36.289587 33.707476,36.226615 C 33.707475,36.163646 33.690158,36.115158 33.655525,36.081153 C 33.62089,36.04715 33.571773,36.030148 33.508174,36.030147 L 33.327762,36.030147 M 34.260044,36.118936 L 34.564192,36.118936 L 34.564192,37.176843 L 34.260044,37.176843 L 34.260044,36.118936 M 34.260044,35.707107 L 34.564192,35.707107 L 34.564192,35.982918 L 34.260044,35.982918 L 34.260044,35.707107 M 35.508753,36.273843 L 35.508753,35.707107 L 35.814791,35.707107 L 35.814791,37.176843 L 35.508753,37.176843 L 35.508753,37.023824 C 35.466561,37.086166 35.420278,37.131819 35.369903,37.160786 C 35.319525,37.189752 35.260962,37.204235 35.194214,37.204235 C 35.077088,37.204235 34.980743,37.152599 34.905178,37.049327 C 34.830243,36.945426 34.792776,36.811928 34.792776,36.648834 C 34.792776,36.48574 34.830243,36.352558 34.905178,36.249285 C 34.980743,36.145384 35.077088,36.093433 35.194214,36.093432 C 35.260333,36.093433 35.318581,36.108231 35.368958,36.137827 C 35.419963,36.166794 35.466561,36.212133 35.508753,36.273843 M 35.307561,36.95865 C 35.37305,36.95865 35.422797,36.932202 35.456802,36.879307 C 35.491435,36.826412 35.508752,36.749587 35.508753,36.648834 C 35.508752,36.548081 35.491435,36.471257 35.456802,36.418361 C 35.422797,36.365467 35.37305,36.339019 35.307561,36.339018 C 35.243331,36.339019 35.193899,36.365467 35.159265,36.418361 C 35.125261,36.471257 35.108259,36.548081 35.108259,36.648834 C 35.108259,36.749587 35.125261,36.826412 35.159265,36.879307 C 35.193899,36.932202 35.243331,36.95865 35.307561,36.95865 M 36.759351,36.997376 C 36.71716,37.059088 36.670876,37.104427 36.6205,37.133394 C 36.570123,37.16236 36.511561,37.176843 36.444812,37.176843 C 36.328946,37.176843 36.232915,37.126152 36.156721,37.024769 C 36.081156,36.922757 36.043374,36.793037 36.043374,36.63561 C 36.043374,36.477554 36.081156,36.348149 36.156721,36.247396 C 36.232915,36.146014 36.328946,36.095322 36.444812,36.095322 C 36.511561,36.095322 36.570123,36.109806 36.6205,36.138771 C 36.670876,36.167739 36.71716,36.213392 36.759351,36.275732 L 36.759351,36.118936 L 37.065388,36.118936 L 37.065388,37.070108 C 37.065387,37.240129 37.0169,37.369848 36.919926,37.459267 C 36.82358,37.549315 36.68347,37.594339 36.499597,37.594339 C 36.440404,37.594339 36.382786,37.589301 36.326742,37.579226 C 36.271327,37.56915 36.215599,37.553722 36.159555,37.532943 L 36.159555,37.26941 C 36.21308,37.303414 36.265345,37.328602 36.316352,37.344975 C 36.367358,37.361977 36.418679,37.370478 36.470315,37.370478 C 36.569809,37.370478 36.642854,37.346234 36.689453,37.297747 C 36.736051,37.24926 36.75935,37.17338 36.759351,37.070108 L 36.759351,36.997376 M 36.55816,36.339018 C 36.495188,36.339019 36.446071,36.364837 36.410808,36.416472 C 36.376174,36.468108 36.358857,36.541155 36.358857,36.63561 C 36.358857,36.732585 36.375859,36.806261 36.409864,36.856637 C 36.443867,36.906384 36.493299,36.931257 36.55816,36.931257 C 36.621759,36.931257 36.671191,36.90544 36.706456,36.853803 C 36.741718,36.802168 36.75935,36.729437 36.759351,36.63561 C 36.75935,36.541155 36.741718,36.468108 36.706456,36.416472 C 36.671191,36.364837 36.621759,36.339019 36.55816,36.339018 M 37.36198,36.118936 L 37.666129,36.118936 L 37.666129,37.176843 L 37.36198,37.176843 L 37.36198,36.118936 M 37.36198,35.707107 L 37.666129,35.707107 L 37.666129,35.982918 L 37.36198,35.982918 L 37.36198,35.707107 M 38.919561,36.532653 L 38.919561,37.176843 L 38.613523,37.176843 L 38.613523,37.071997 L 38.613523,36.683783 C 38.613522,36.592476 38.611633,36.529505 38.607856,36.494871 C 38.604077,36.460237 38.597779,36.434734 38.588965,36.418361 C 38.577,36.396322 38.560627,36.37932 38.539847,36.367355 C 38.519696,36.354762 38.496712,36.348464 38.470894,36.348464 C 38.407293,36.348464 38.357232,36.375857 38.320709,36.43064 C 38.284816,36.484796 38.266869,36.560046 38.266869,36.65639 L 38.266869,37.176843 L 37.962721,37.176843 L 37.962721,36.118936 L 38.266869,36.118936 L 38.266869,36.273843 C 38.312838,36.212133 38.36164,36.166794 38.413276,36.137827 C 38.464912,36.108231 38.5219,36.093433 38.584242,36.093432 C 38.69381,36.093433 38.776931,36.130901 38.833606,36.205835 C 38.890908,36.280771 38.91956,36.38971 38.919561,36.532653"
-       id="flowRoot9198" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/cool.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,704 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="cool.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/cool.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective105" />
-    <linearGradient
-       id="linearGradient11669"
-       inkscape:collect="always">
-      <stop
-         id="stop11671"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         id="stop11673"
-         offset="1"
-         style="stop-color:#3465a4;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11653">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop11655" />
-      <stop
-         style="stop-color:#3465a4;stop-opacity:1"
-         offset="1"
-         id="stop11657" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11586">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11588" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11590" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11493"
-       inkscape:collect="always">
-      <stop
-         id="stop11495"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1" />
-      <stop
-         id="stop11497"
-         offset="1"
-         style="stop-color:#070808;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11418">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11420" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11422" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11346"
-       inkscape:collect="always">
-      <stop
-         id="stop11348"
-         offset="0"
-         style="stop-color:#ef7700;stop-opacity:1" />
-      <stop
-         id="stop11350"
-         offset="1"
-         style="stop-color:#fea523;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11346"
-       id="linearGradient10424"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-2.0000002,0,0,2.0000001,48.499999,-0.4999991)"
-       x1="8.9999981"
-       y1="10.5625"
-       x2="8.9999981"
-       y2="12.4375" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient11202"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient11214"
-       x1="22.919643"
-       y1="33.491837"
-       x2="23.746914"
-       y2="36.579254"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.9659258,0.258819,0.258819,0.9659258,39.560471,-4.4105697)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient11298"
-       cx="24.00321"
-       cy="34.70562"
-       fx="24.00321"
-       fy="34.70562"
-       r="12.133846"
-       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11310"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="translate(10.999931,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11418"
-       id="linearGradient11424"
-       x1="22.915459"
-       y1="34.796875"
-       x2="22.854631"
-       y2="29.835938"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter11462"
-       x="-0.078992675"
-       width="1.1579853"
-       y="-0.19133781"
-       height="1.3826756">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.448448"
-         id="feGaussianBlur11464" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-    <filter
-       id="filter3405"
-       height="2.5649745"
-       y="-0.78248727"
-       width="1.5575919"
-       x="-0.27879593"
-       inkscape:collect="always">
-      <feGaussianBlur
-         id="feGaussianBlur3407"
-         stdDeviation="1.5438116"
-         inkscape:collect="always" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11586"
-       id="linearGradient11592"
-       x1="39.704506"
-       y1="13.248698"
-       x2="54.781696"
-       y2="18.949747"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11669"
-       id="radialGradient11659"
-       cx="14"
-       cy="19.5"
-       fx="9.3258924"
-       fy="14.814685"
-       r="8"
-       gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11653"
-       id="radialGradient11667"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)"
-       cx="14"
-       cy="19.5"
-       fx="9.3258924"
-       fy="14.814685"
-       r="8" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="8"
-     inkscape:cx="34.093743"
-     inkscape:cy="29.192709"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path17968"
-       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="0.98821175"
-       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
-       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       id="path11288"
-       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
-       transform="matrix(0.9659258,-0.264782,0.258819,0.9881799,-6.825115,7.6473507)" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 13,31.694019 C 15.576229,36.323459 20.846351,38.909081 25.954556,37.540342 C 31.062759,36.171603 34.33401,31.297326 34.250368,26 C 32.872293,29.813956 29.916568,34.514228 25.463432,35.707442 C 21.010298,36.900659 16.100427,34.307964 13,31.694019 z"
-       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-11.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11300"
-       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
-       id="path11416"
-       sodipodi:cx="23.25"
-       sodipodi:cy="30.1875"
-       sodipodi:rx="6.8125"
-       sodipodi:ry="2.8125"
-       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
-       transform="matrix(0.9925109,-0.2659425,0.4601228,1.7172017,-13.102978,-15.495569)" />
-    <path
-       style="opacity:0.59722218;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 22,18.537724 C 22,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22,14.418548 22,18.537724 z"
-       id="path11647"
-       sodipodi:nodetypes="csssc" />
-    <rect
-       style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect11649"
-       width="5.1303458"
-       height="1.0018942"
-       x="6.2930641"
-       y="14.833013"
-       rx="0.51303452"
-       ry="0.50094712"
-       transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" />
-    <rect
-       style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect11651"
-       width="5.1303449"
-       height="1.0018942"
-       x="31.000992"
-       y="25.932768"
-       rx="0.51303446"
-       ry="0.50094712"
-       transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" />
-    <path
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 14.5,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z"
-       id="path11661" />
-    <path
-       style="opacity:0.59722218;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 22,22.656901 22,18.537724 C 22,14.418548 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z"
-       id="path11663"
-       sodipodi:nodetypes="csssc" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/dialog.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,609 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="dialog.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/dialog.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective89" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9283">
-      <stop
-         style="stop-color:white;stop-opacity:1;"
-         offset="0"
-         id="stop9285" />
-      <stop
-         style="stop-color:#c9daee;stop-opacity:1"
-         offset="1"
-         id="stop9287" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11418">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11420" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11422" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient11214"
-       x1="22.919643"
-       y1="33.491837"
-       x2="22.919643"
-       y2="36.402832"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.8636363,0,0,0.7777776,39.227274,9.2222251)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient11298"
-       cx="24.00321"
-       cy="34.70562"
-       fx="24.00321"
-       fy="34.70562"
-       r="12.133846"
-       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.9166666,0,0,0.9166666,-3.0416663,6.1250012)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="matrix(0.9166667,0,0,0.9166666,7.9583347,6.1250012)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11418"
-       id="linearGradient11424"
-       x1="22.915459"
-       y1="34.796875"
-       x2="22.854631"
-       y2="29.835938"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter11462"
-       x="-0.078992675"
-       width="1.1579853"
-       y="-0.19133781"
-       height="1.3826756">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.448448"
-         id="feGaussianBlur11464" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.9,0,0,0.9,-2.7500001,6.450001)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.9,0,0,0.9,39.749999,6.450001)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient7925"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient7927"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <linearGradient
-       id="linearGradient8904"
-       inkscape:collect="always">
-      <stop
-         id="stop8906"
-         offset="0"
-         style="stop-color:#729fcf;stop-opacity:1;" />
-      <stop
-         id="stop8908"
-         offset="1"
-         style="stop-color:#25486d;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9283"
-       id="linearGradient8508"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.6666666,0,0,0.6587574,15.166665,0.8540557)"
-       x1="30.5"
-       y1="1.7319652"
-       x2="30.5"
-       y2="22.781603" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8904"
-       id="linearGradient8511"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.6875001,0,0,0.6767003,14.531249,0.4849495)"
-       x1="29.466667"
-       y1="6.8962817"
-       x2="42.829762"
-       y2="37.801281" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="11.313708"
-     inkscape:cx="42.212021"
-     inkscape:cy="27.33968"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fce94f"
-     inkscape:window-width="1430"
-     inkscape:window-height="837"
-     inkscape:window-x="2"
-     inkscape:window-y="7"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8511);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 28.646485,1.5 C 26.351226,1.5 24.499999,3.6053736 24.499999,6.2157551 L 24.499999,14.378452 C 24.499999,16.988834 26.351226,19.471324 28.646485,19.471324 L 38.588405,19.471324 C 38.588405,19.471324 38.185679,21.246142 37.169849,22.500949 C 40.739034,22.500949 41.597375,20.059554 41.597375,19.461518 L 43.0625,19.471324 C 45.821256,19.471324 46.5,16.985061 46.5,14.378452 L 46.5,6.2157551 C 46.5,3.6053738 44.648774,1.5 42.353516,1.5 L 28.646485,1.5 z"
-       id="path8201"
-       sodipodi:nodetypes="cccccccccccc" />
-    <path
-       style="fill:url(#linearGradient8508);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 28.854165,2.5009492 C 27.043799,2.5009492 25.499999,4.1991556 25.499999,6.4329081 L 25.499999,14.379169 C 25.499999,16.612921 27.043799,18.498627 28.854165,18.498627 L 38.854706,18.498627 C 39.222454,18.499674 39.520313,18.606498 39.521372,18.969885 C 39.521372,18.969885 39.644477,20.147733 39.23261,20.89176 C 40.286203,20.514643 40.854165,18.434645 40.854165,18.434645 C 40.969505,18.353016 41.108134,18.309759 41.249998,18.311127 L 42.833331,18.311127 C 43.997822,18.311127 44.543633,17.937415 44.937499,17.28182 C 45.331364,16.626223 45.499999,15.591478 45.499999,14.379169 L 45.499999,6.4329081 C 45.499999,4.1991558 43.956197,2.5009492 42.145832,2.5009492 L 28.854165,2.5009492 z"
-       id="path8203"
-       sodipodi:nodetypes="ccccccccccscccc" />
-    <path
-       transform="matrix(1.8058936,0,0,2.1118921,-0.410926,17.914587)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.7040925,0,0,1.7040625,-1.6187858,8.7839416)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.58828396;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.5795214,0,0,1.5795214,-0.1480796,10.152022)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.5538448,0,0,1.5538449,0.1550622,10.434085)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 18.5,24.000001 C 18.5,27.035998 16.036004,29.499999 13.000001,29.499999 C 9.9640002,29.499999 7.5000003,27.035998 7.5000003,24.000001 C 7.5000003,20.964 9.9640002,18.5 13.000001,18.5 C 16.036004,18.5 18.5,20.964 18.5,24.000001 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.6039688,0,0,-1.6039689,-0.4367098,45.116428)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.62345362;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 17.500001,24.000001 C 17.500001,26.484 15.484002,28.5 13,28.5 C 10.516001,28.5 8.5000003,26.484 8.5000003,24.000001 C 8.5000003,21.516 10.516001,19.5 13,19.5 C 15.484002,19.5 17.500001,21.516 17.500001,24.000001 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(0.8744826,0,0,0.8193141,-2.4902353,7.8660638)"
-       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
-       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,33.230703 24,33.230703 C 19.928002,33.230704 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
-       id="path11288"
-       sodipodi:nodetypes="cscscscsccc" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 9,31 C 10.114314,34.996589 13.932744,38 18.5,38 C 23.067256,38 26.885687,34.996589 28,31 C 25.997881,33.58792 22.481559,36.086622 18.5,36.086622 C 14.518443,36.086624 11.00212,33.58792 9,31 z"
-       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.0998724,0.5796011,-0.5856851,1.5252629,3.1832579,-1.498334)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.0998724,0.5796014,-0.5856851,1.5252636,3.1832579,-0.669072)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.44422138;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-1.498334)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-0.6690642)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 19.499999,24.000001 C 19.499999,26.484 21.515997,28.5 23.999999,28.5 C 26.483998,28.5 28.499999,26.484 28.499999,24.000001 C 28.499999,21.516 26.483998,19.5 23.999999,19.5 C 21.515997,19.5 19.499999,21.516 19.499999,24.000001 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.9494392,0,0,1.2877393,4.0769204,13.069868)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(0.9747197,0,0,0.6878263,13.538459,18.695971)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 29.5,24.000001 C 29.5,27.035998 27.036004,29.499999 24.000002,29.499999 C 20.964001,29.499999 18.500001,27.035998 18.500001,24.000001 C 18.500001,20.964 20.964001,18.5 24.000002,18.5 C 27.036004,18.5 29.5,20.964 29.5,24.000001 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
-       id="path11416"
-       sodipodi:cx="23.25"
-       sodipodi:cy="30.1875"
-       sodipodi:rx="6.8125"
-       sodipodi:ry="2.8125"
-       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
-       transform="matrix(0.8520939,0,0,1.474258,-1.3111844,-12.857869)" />
-    <path
-       transform="matrix(1.9494392,0,0,1.2877393,-4.9230796,13.069868)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path7921"
-       style="opacity:1;fill:url(#linearGradient7925);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(0.9747197,0,0,0.6878263,4.5384591,18.695971)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path7923"
-       style="opacity:1;fill:url(#linearGradient7927);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/error.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,327 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="error.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/error.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective47" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient8757">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop8759" />
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="1"
-         id="stop8761" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient11214"
-       x1="23.151463"
-       y1="36.068001"
-       x2="23.151463"
-       y2="31.364563"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,-1,46.004066,64)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient11298"
-       cx="24.00321"
-       cy="44.452724"
-       fx="24.00321"
-       fy="44.452724"
-       r="12.133846"
-       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8757"
-       id="linearGradient8763"
-       x1="22"
-       y1="17.615276"
-       x2="22"
-       y2="20.974033"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="1"
-     inkscape:cx="50.073667"
-     inkscape:cy="41.753083"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     fill="#fce94f"
-     inkscape:window-width="1081"
-     inkscape:window-height="669"
-     inkscape:window-x="122"
-     inkscape:window-y="78"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="0.98821175"
-       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
-       style="opacity:0.37037036000000001;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       id="path11288"
-       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
-       transform="matrix(1,0,0,-1,-1.9959332,64)" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 11.004066,36.000001 C 12.294325,30.861529 16.715664,27.000001 22.004067,27.000001 C 27.292467,27.000001 31.713809,30.861529 33.004066,36.000001 C 30.685823,32.672675 26.614292,28.897559 22.004067,28.897559 C 17.393842,28.897556 13.32231,32.672675 11.004066,36.000001 z"
-       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.4298057,-1.6425985,-1.1582421,-1.5938167,-5.185395,36.479745)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       style="opacity:0.74537037;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 14.03125,18 L 14.03125,19 L 15.03125,19 L 15.03125,18 L 14.03125,18 z M 15.03125,19 L 15.03125,20 L 16.03125,20 L 16.03125,19 L 15.03125,19 z M 16.03125,20 L 16.03125,21 L 17.03125,21 L 17.03125,20 L 16.03125,20 z M 17.03125,20 L 18.03125,20 L 18.03125,19 L 17.03125,19 L 17.03125,20 z M 18.03125,19 L 19.03125,19 L 19.03125,18 L 18.03125,18 L 18.03125,19 z M 17.03125,21 L 17.03125,22 L 18.03125,22 L 18.03125,21 L 17.03125,21 z M 18.03125,22 L 18.03125,23 L 19.03125,23 L 19.03125,22 L 18.03125,22 z M 16.03125,21 L 15.03125,21 L 15.03125,22 L 16.03125,22 L 16.03125,21 z M 25.03125,18 L 25.03125,19 L 26.03125,19 L 26.03125,18 L 25.03125,18 z M 26.03125,19 L 26.03125,20 L 27.03125,20 L 27.03125,19 L 26.03125,19 z M 27.03125,20 L 27.03125,21 L 28.03125,21 L 28.03125,20 L 27.03125,20 z M 28.03125,20 L 29.03125,20 L 29.03125,19 L 28.03125,19 L 28.03125,20 z M 29.03125,19 L 30.03125,19 L 30.03125,18 L 29.03125,18 L 29.03125,19 z M 28.03125,21 L 28.03125,22 L 29.03125,22 L 29.03125,21 L 28.03125,21 z M 29.03125,22 L 29.03125,23 L 30.03125,23 L 30.03125,22 L 29.03125,22 z M 27.03125,21 L 26.03125,21 L 26.03125,22 L 27.03125,22 L 27.03125,21 z M 14.03125,22.03125 L 14.03125,23.03125 L 15.03125,23.03125 L 15.03125,22.03125 L 14.03125,22.03125 z M 25.03125,22.03125 L 25.03125,23.03125 L 26.03125,23.03125 L 26.03125,22.03125 L 25.03125,22.03125 z"
-       id="path8765"
-       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
-    <path
-       style="opacity:1;fill:url(#linearGradient8763);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       d="M 14.03125,17 L 14.03125,18 L 15.03125,18 L 15.03125,17 L 14.03125,17 z M 15.03125,18 L 15.03125,19 L 16.03125,19 L 16.03125,18 L 15.03125,18 z M 16.03125,19 L 16.03125,20 L 17.03125,20 L 17.03125,19 L 16.03125,19 z M 17.03125,19 L 18.03125,19 L 18.03125,18 L 17.03125,18 L 17.03125,19 z M 18.03125,18 L 19.03125,18 L 19.03125,17 L 18.03125,17 L 18.03125,18 z M 17.03125,20 L 17.03125,21 L 18.03125,21 L 18.03125,20 L 17.03125,20 z M 18.03125,21 L 18.03125,22 L 19.03125,22 L 19.03125,21 L 18.03125,21 z M 16.03125,20 L 15.03125,20 L 15.03125,21 L 16.03125,21 L 16.03125,20 z M 25.03125,17 L 25.03125,18 L 26.03125,18 L 26.03125,17 L 25.03125,17 z M 26.03125,18 L 26.03125,19 L 27.03125,19 L 27.03125,18 L 26.03125,18 z M 27.03125,19 L 27.03125,20 L 28.03125,20 L 28.03125,19 L 27.03125,19 z M 28.03125,19 L 29.03125,19 L 29.03125,18 L 28.03125,18 L 28.03125,19 z M 29.03125,18 L 30.03125,18 L 30.03125,17 L 29.03125,17 L 29.03125,18 z M 28.03125,20 L 28.03125,21 L 29.03125,21 L 29.03125,20 L 28.03125,20 z M 29.03125,21 L 29.03125,22 L 30.03125,22 L 30.03125,21 L 29.03125,21 z M 27.03125,20 L 26.03125,20 L 26.03125,21 L 27.03125,21 L 27.03125,20 z M 14.03125,21.03125 L 14.03125,22.03125 L 15.03125,22.03125 L 15.03125,21.03125 L 14.03125,21.03125 z M 25.03125,21.03125 L 25.03125,22.03125 L 26.03125,22.03125 L 26.03125,21.03125 L 25.03125,21.03125 z"
-       id="rect7941"
-       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.4298057,-1.6425985,1.1582421,-1.5938167,48.926576,36.479745)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path7888"
-       style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/info.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,569 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="info.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/info.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective82" />
-    <linearGradient
-       id="linearGradient11493"
-       inkscape:collect="always">
-      <stop
-         id="stop11495"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1" />
-      <stop
-         id="stop11497"
-         offset="1"
-         style="stop-color:#070808;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11418">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11420" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11422" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient11202"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient11214"
-       x1="22.919643"
-       y1="33.491837"
-       x2="22.919643"
-       y2="36.402832"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient11298"
-       cx="24.00321"
-       cy="34.70562"
-       fx="24.00321"
-       fy="34.70562"
-       r="12.133846"
-       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11310"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="translate(10.999931,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11418"
-       id="linearGradient11424"
-       x1="22.915459"
-       y1="34.796875"
-       x2="22.854631"
-       y2="29.835938"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter11462"
-       x="-0.078992675"
-       width="1.1579853"
-       y="-0.19133781"
-       height="1.3826756">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.448448"
-         id="feGaussianBlur11464" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="8"
-     inkscape:cx="41.138874"
-     inkscape:cy="20.946547"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path17968"
-       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="0.98821175"
-       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
-       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       id="path11288"
-       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
-       transform="translate(-2.0000685,1.885788e-7)" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z"
-       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11300"
-       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
-       id="path11416"
-       sodipodi:cx="23.25"
-       sodipodi:cy="30.1875"
-       sodipodi:rx="6.8125"
-       sodipodi:ry="2.8125"
-       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
-       transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/mail.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,976 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="mail.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/mail.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 24 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="48 : 24 : 1"
-       inkscape:persp3d-origin="24 : 16 : 1"
-       id="perspective126" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9188">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop9190" />
-      <stop
-         style="stop-color:#6f726d;stop-opacity:1"
-         offset="1"
-         id="stop9192" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9166">
-      <stop
-         style="stop-color:#3b73bb;stop-opacity:1;"
-         offset="0"
-         id="stop9168" />
-      <stop
-         style="stop-color:#3b73bb;stop-opacity:0;"
-         offset="1"
-         id="stop9170" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9158">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1;"
-         offset="0"
-         id="stop9160" />
-      <stop
-         style="stop-color:#bcd2e9;stop-opacity:1"
-         offset="1"
-         id="stop9162" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9056">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1;"
-         offset="0"
-         id="stop9058" />
-      <stop
-         style="stop-color:#729fcf;stop-opacity:0;"
-         offset="1"
-         id="stop9060" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient9040">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1"
-         offset="0"
-         id="stop9042" />
-      <stop
-         style="stop-color:#3465a4;stop-opacity:1"
-         offset="1"
-         id="stop9044" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11669"
-       inkscape:collect="always">
-      <stop
-         id="stop11671"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1" />
-      <stop
-         id="stop11673"
-         offset="1"
-         style="stop-color:#2e3436;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11653">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="0"
-         id="stop11655" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1"
-         offset="1"
-         id="stop11657" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11493"
-       inkscape:collect="always">
-      <stop
-         id="stop11495"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1" />
-      <stop
-         id="stop11497"
-         offset="1"
-         style="stop-color:#070808;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient11202"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11310"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="translate(10.999931,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11669"
-       id="radialGradient11659"
-       cx="14"
-       cy="19.5"
-       fx="9.3258924"
-       fy="14.814685"
-       r="8"
-       gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11653"
-       id="radialGradient11667"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)"
-       cx="14"
-       cy="19.5"
-       fx="9.3258924"
-       fy="14.814685"
-       r="8" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient8720"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient8722"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient8985"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient8993"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient8995"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient8997"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient9005"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-34.999933,2.0000002)"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient9018"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)"
-       x1="22.919643"
-       y1="33.491837"
-       x2="23.746914"
-       y2="36.579254" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient9036"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)"
-       cx="24.00321"
-       cy="34.70562"
-       fx="24.00321"
-       fy="34.70562"
-       r="12.133846" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9040"
-       id="linearGradient9046"
-       x1="24"
-       y1="37"
-       x2="44.533825"
-       y2="40.875"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9056"
-       id="linearGradient9062"
-       x1="34.5"
-       y1="61.35038"
-       x2="34.5"
-       y2="33.72963"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9158"
-       id="linearGradient9164"
-       x1="29"
-       y1="35.649048"
-       x2="29"
-       y2="32.334484"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-1,0)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9166"
-       id="linearGradient9172"
-       x1="29.125"
-       y1="36.5625"
-       x2="25"
-       y2="31.9375"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9188"
-       id="linearGradient9194"
-       x1="37.5"
-       y1="42.295494"
-       x2="37.5"
-       y2="40.792892"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9166"
-       id="linearGradient9246"
-       gradientUnits="userSpaceOnUse"
-       x1="29.78125"
-       y1="37.09375"
-       x2="23.984375"
-       y2="30.40625" />
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
-       r="8.9687502"
-       fy="12"
-       fx="12"
-       cy="12"
-       cx="12"
-       id="radialGradient3210"
-       xlink:href="#linearGradient3204"
-       inkscape:collect="always" />
-    <linearGradient
-       y2="18.288521"
-       x2="12.015625"
-       y1="10.420408"
-       x1="12.015625"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient3200"
-       xlink:href="#linearGradient4130"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="13.251127"
-       x2="12.750399"
-       y1="19.780256"
-       x1="12.726427"
-       id="linearGradient3197"
-       xlink:href="#linearGradient3191"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="19.148933"
-       x2="15.742911"
-       y1="8.850009"
-       x1="13.038205"
-       id="linearGradient3189"
-       xlink:href="#linearGradient3183"
-       inkscape:collect="always" />
-    <radialGradient
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
-       r="8.9687502"
-       fy="12"
-       fx="12"
-       cy="12"
-       cx="12"
-       id="radialGradient4152"
-       xlink:href="#linearGradient4146"
-       inkscape:collect="always" />
-    <linearGradient
-       gradientUnits="userSpaceOnUse"
-       y2="17.151861"
-       x2="12.015625"
-       y1="12.513933"
-       x1="12.015625"
-       id="linearGradient4144"
-       xlink:href="#linearGradient4138"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient4130"
-       inkscape:collect="always">
-      <stop
-         id="stop4132"
-         offset="0"
-         style="stop-color:#babdb6;stop-opacity:1;" />
-      <stop
-         id="stop4134"
-         offset="1"
-         style="stop-color:#babdb6;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4138"
-       inkscape:collect="always">
-      <stop
-         id="stop4140"
-         offset="0"
-         style="stop-color:#babdb6;stop-opacity:1;" />
-      <stop
-         id="stop4142"
-         offset="1"
-         style="stop-color:#babdb6;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient4146"
-       inkscape:collect="always">
-      <stop
-         id="stop4148"
-         offset="0"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         id="stop4150"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3183"
-       inkscape:collect="always">
-      <stop
-         id="stop3185"
-         offset="0"
-         style="stop-color:#888a85;stop-opacity:1;" />
-      <stop
-         id="stop3187"
-         offset="1"
-         style="stop-color:#555753;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3191"
-       inkscape:collect="always">
-      <stop
-         id="stop3193"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1;" />
-      <stop
-         id="stop3195"
-         offset="1"
-         style="stop-color:#888a85;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3204"
-       inkscape:collect="always">
-      <stop
-         id="stop3206"
-         offset="0"
-         style="stop-color:#888a85;stop-opacity:1;" />
-      <stop
-         id="stop3208"
-         offset="1"
-         style="stop-color:#888a85;stop-opacity:0;" />
-    </linearGradient>
-    <inkscape:perspective
-       id="perspective8002"
-       inkscape:persp3d-origin="12 : 8 : 1"
-       inkscape:vp_z="24 : 12 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 12 : 1"
-       sodipodi:type="inkscape:persp3d" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="1"
-     inkscape:cx="173.29133"
-     inkscape:cy="101.88242"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
-       d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z"
-       id="path11288"
-       sodipodi:nodetypes="cscscscsccc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z"
-       style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path17968"
-       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11300"
-       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path8714"
-       style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path8716"
-       style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path8718"
-       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <g
-       id="g8029"
-       inkscape:label="Layer 1"
-       transform="translate(24.000001,25)">
-      <rect
-         ry="1.5292913"
-         rx="1.4791573"
-         y="4.5005183"
-         x="2.5008683"
-         height="14.994927"
-         width="18.999125"
-         id="rect3198"
-         style="opacity:1;fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3189);stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <rect
-         ry="1.325834"
-         rx="1.3235176"
-         y="5.5"
-         x="3.5"
-         height="13"
-         width="17"
-         id="rect3202"
-         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-      <path
-         d="M 3.96875,5.53125 C 3.7197609,5.53125 3.53125,5.7077743 3.53125,6.03125 L 3.53125,17.96875 C 3.53125,18.292225 3.7197609,18.46875 3.96875,18.46875 L 20.03125,18.46875 C 20.280239,18.46875 20.46875,18.292227 20.46875,17.96875 L 20.46875,6.03125 C 20.46875,5.7077741 20.280239,5.53125 20.03125,5.53125 L 3.96875,5.53125 z"
-         inkscape:href="#rect3198"
-         id="path4119"
-         style="opacity:0.4;fill:url(#radialGradient3210);fill-opacity:1;stroke:url(#radialGradient4152);stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-         xlink:href="#rect3198"
-         inkscape:original="M 3.96875 4.5 C 3.1492968 4.5 2.5 5.1840228 2.5 6.03125 L 2.5 17.96875 C 2.5 18.815977 3.1492967 19.5 3.96875 19.5 L 20.03125 19.5 C 20.850703 19.5 21.5 18.815978 21.5 17.96875 L 21.5 6.03125 C 21.5 5.1840226 20.850703 4.5 20.03125 4.5 L 3.96875 4.5 z "
-         inkscape:radius="-1.0251163"
-         sodipodi:type="inkscape:offset" />
-      <path
-         sodipodi:nodetypes="cccccc"
-         id="path4113"
-         d="M 20.173644,19.500002 L 3.8263566,19.500002 C 3.0915545,19.500002 2.4999999,18.840678 2.4999999,18.021697 L 11.981112,10.500001 L 21.499999,18.021697 C 21.499999,18.840678 20.908445,19.500002 20.173644,19.500002 z"
-         style="fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3197);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" />
-      <path
-         transform="matrix(1.0093633,0,0,1,-3.4234557e-2,0)"
-         d="M 11.96875,11.71875 L 3.65625,18.3125 C 3.718416,18.374228 3.7395135,18.53125 3.8125,18.53125 L 20.1875,18.53125 C 20.260486,18.53125 20.281584,18.374227 20.34375,18.3125 L 11.96875,11.71875 z"
-         inkscape:href="#path4113"
-         id="path4117"
-         style="opacity:1;fill:url(#linearGradient4144);fill-opacity:1;stroke:#ffffff;stroke-width:0.9953509;stroke-miterlimit:4;stroke-opacity:1"
-         xlink:href="#path4113"
-         inkscape:original="M 11.96875 10.5 L 2.5 18.03125 C 2.5 18.850231 3.0776979 19.5 3.8125 19.5 L 20.1875 19.5 C 20.922301 19.5 21.500001 18.850232 21.5 18.03125 L 11.96875 10.5 z "
-         inkscape:radius="-0.96695226"
-         sodipodi:type="inkscape:offset" />
-      <path
-         sodipodi:nodetypes="ccczcc"
-         id="path4122"
-         d="M 20.145067,4.5000001 L 3.8242121,4.5000001 C 3.0905983,4.5000001 2.5000001,5.1593244 2.5000001,5.9783056 C 2.5000001,5.9783056 9.4173792,13.5 12.043511,13.5 C 14.708468,13.5 21.469279,5.9783056 21.469279,5.9783056 C 21.469279,5.1593244 20.878681,4.5000001 20.145067,4.5000001 z"
-         style="fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" />
-      <path
-         sodipodi:nodetypes="cccccz"
-         id="path4124"
-         d="M 12.087485,11.46875 C 10.301616,11.46875 3.34375,18.34375 3.34375,18.34375 C 3.4413342,18.582586 3.6045666,18.75 3.8125,18.75 L 20.1875,18.75 C 20.395433,18.75 20.558666,18.582586 20.65625,18.34375 C 20.65625,18.34375 13.912791,11.46875 12.087485,11.46875 z"
-         style="opacity:1;fill:url(#linearGradient3200);fill-opacity:1;stroke:#ffffff;stroke-width:1.03183317;stroke-miterlimit:4;stroke-opacity:1"
-         transform="matrix(0.9819495,0,0,-0.956515,0.2166063,23.434657)" />
-    </g>
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/question.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,655 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="question.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/question.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient8711">
-      <stop
-         style="stop-color:#a5c2e1;stop-opacity:1"
-         offset="0"
-         id="stop8713" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop8715" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11586">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11588" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11590" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11570">
-      <stop
-         style="stop-color:#0a387a;stop-opacity:1"
-         offset="0"
-         id="stop11572" />
-      <stop
-         style="stop-color:#368eec;stop-opacity:1"
-         offset="1"
-         id="stop11574" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11493"
-       inkscape:collect="always">
-      <stop
-         id="stop11495"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1" />
-      <stop
-         id="stop11497"
-         offset="1"
-         style="stop-color:#070808;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11418">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11420" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11422" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11292">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11294" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11296" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11208">
-      <stop
-         style="stop-color:#c32f00;stop-opacity:1"
-         offset="0"
-         id="stop11210" />
-      <stop
-         style="stop-color:#6c1300;stop-opacity:1"
-         offset="1"
-         id="stop11212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient11202"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11208"
-       id="linearGradient11214"
-       x1="22.919643"
-       y1="33.491837"
-       x2="22.919643"
-       y2="36.402832"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11292"
-       id="radialGradient11298"
-       cx="24.00321"
-       cy="34.70562"
-       fx="24.00321"
-       fy="34.70562"
-       r="12.133846"
-       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11310"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="translate(10.999931,1.885788e-7)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11418"
-       id="linearGradient11424"
-       x1="22.915459"
-       y1="34.796875"
-       x2="22.854631"
-       y2="29.835938"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       id="filter11462"
-       x="-0.078992675"
-       width="1.1579853"
-       y="-0.19133781"
-       height="1.3826756">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.448448"
-         id="feGaussianBlur11464" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.0000685,1.885788e-7)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11570"
-       id="linearGradient11576"
-       x1="48.140072"
-       y1="17.348257"
-       x2="36.310215"
-       y2="9.2333107"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-2)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11586"
-       id="linearGradient11592"
-       x1="43.267006"
-       y1="14"
-       x2="54.781696"
-       y2="18.949747"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11570"
-       id="linearGradient8706"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(0,-2)"
-       x1="46.202572"
-       y1="17.035757"
-       x2="37.247715"
-       y2="14.5" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11586"
-       id="linearGradient8708"
-       gradientUnits="userSpaceOnUse"
-       x1="43.267006"
-       y1="14"
-       x2="54.781696"
-       y2="18.949747"
-       gradientTransform="translate(0,-2)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8711"
-       id="linearGradient8717"
-       x1="47.873451"
-       y1="13.986977"
-       x2="41.067547"
-       y2="12.484375"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="11.313709"
-     inkscape:cx="48.898255"
-     inkscape:cy="29.543471"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.4367989,0,0,1.5452869,-6.1538483,7.0838437)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path17968"
-       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="0.98821175"
-       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
-       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       id="path11288"
-       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
-       transform="translate(-2.0000685,1.885788e-7)" />
-    <path
-       sodipodi:nodetypes="cscsc"
-       id="path17974"
-       d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z"
-       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.436799,0,0,1.5452869,5.8461508,7.0838441)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,3.3076893,12.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11300"
-       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.4620795,0,0,1.0301913,15.30769,12.055896)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
-       id="path11416"
-       sodipodi:cx="23.25"
-       sodipodi:cy="30.1875"
-       sodipodi:rx="6.8125"
-       sodipodi:ry="2.8125"
-       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
-       transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" />
-    <path
-       style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8706);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L"
-       d="M 40.5625,1 C 38.874477,1 37.314933,1.4226492 36.09375,2.28125 C 34.872565,3.1398509 34,4.5416345 34,6.125 C 33.999998,7.9320376 35.500885,9 37.375,9 C 38.972866,9 40.03125,8.6239064 40.03125,6.9375 C 40.03125,5.8358747 41.03125,5.7736538 41.03125,7 C 41.031252,7.5731772 40.720035,7.6923202 40.46875,8.03125 C 39.556981,9.1888218 39.147246,9.72288 38.8125,10.21875 C 37.953228,11.557311 37,12.936936 37,14.46875 C 36.999998,17.077704 39.59375,16.96875 39.59375,16.96875 C 39.236295,17.077217 38.886105,17.297356 38.5625,17.5625 C 38.550686,17.570277 38.542964,17.585834 38.53125,17.59375 C 38.424354,17.683359 38.318146,17.772605 38.21875,17.875 C 37.480053,18.516861 37,19.445308 37,20.5 C 37,22.432 38.568,24 40.5,24 C 42.432,24 44.000001,22.432 44,20.5 C 44,18.95785 43.010761,17.653479 41.625,17.1875 C 41.444379,17.110901 41.249634,17.062378 41.0625,17 C 41.763982,16.748864 42.068061,15.931257 42.0625,15.1875 C 42.051002,14.139574 42.280169,13.716262 42.375,13.5 C 43.426067,11.600594 44.954699,11.097944 46.125,9.75 C 46.749619,8.8343856 47,7.7477245 47,6.75 C 47.000001,5.1014533 46.28805,3.5482598 45.09375,2.53125 C 43.89945,1.5142402 42.298617,1 40.5625,1 z"
-       id="path3346"
-       sodipodi:nodetypes="csssssccscsscsssccsccssc" />
-    <path
-       style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8717);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L"
-       d="M 40.5625 1.96875 C 39.03732 1.96875 37.680971 2.3732797 36.65625 3.09375 C 35.664894 3.7907611 34.96875 4.9000488 34.96875 6.125 C 34.968749 6.758422 35.192622 7.1443716 35.59375 7.46875 C 35.994878 7.7931284 36.623252 8.03125 37.375 8.03125 C 38.097392 8.03125 38.596706 7.9024002 38.78125 7.78125 C 38.965794 7.6600998 39.0625 7.5766139 39.0625 6.9375 C 39.0625 6.5144976 39.145775 6.1274407 39.375 5.78125 C 39.604225 5.4350593 40.027732 5.1249297 40.53125 5.125 C 41.034768 5.1250703 41.462039 5.4531849 41.6875 5.8125 C 41.912961 6.1718151 42 6.5608281 42 7 C 42.000002 7.4631574 41.827288 7.9211544 41.625 8.1875 C 41.422712 8.453846 41.293456 8.566387 41.25 8.625 C 40.340574 9.779598 39.934939 10.290878 39.625 10.75 C 38.753163 12.108134 37.96875 13.34166 37.96875 14.46875 C 37.968749 15.449931 38.315321 15.62655 38.71875 15.8125 C 39.583542 16.168963 40.115403 16.105798 40.96875 15.84375 C 41.047882 15.684154 41.095517 15.423765 41.09375 15.1875 C 41.08066 13.994488 41.418028 13.209423 41.46875 13.09375 C 41.488628 13.071983 41.509483 13.051128 41.53125 13.03125 C 42.136141 11.938138 42.896246 11.218183 43.59375 10.65625 C 44.265082 10.115402 44.835184 9.717613 45.3125 9.1875 C 45.803013 8.468469 46.03125 7.5845097 46.03125 6.75 C 46.031251 5.3823316 45.435469 4.1044628 44.46875 3.28125 C 43.478484 2.4379857 42.105973 1.96875 40.5625 1.96875 z M 40.5 18 C 39.12 18 37.999999 19.12 38 20.5 C 38 21.88 39.119998 23 40.5 23 C 41.88 23 43.000002 21.88 43 20.5 C 43 19.12 41.879998 17.999999 40.5 18 z "
-       id="path11582" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/dialogs/64/scalable/warning.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,558 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="warning.svg"
-   inkscape:export-filename="/home/hbons/Bureaublad/warning.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   sodipodi:modified="true">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient8730">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop8732" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop8734" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient8716">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop8718" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop8720" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient8706">
-      <stop
-         style="stop-color:#391f17;stop-opacity:1"
-         offset="0"
-         id="stop8708" />
-      <stop
-         style="stop-color:#841c0e;stop-opacity:1"
-         offset="1"
-         id="stop8710" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11493"
-       inkscape:collect="always">
-      <stop
-         id="stop11495"
-         offset="0"
-         style="stop-color:#555753;stop-opacity:1" />
-      <stop
-         id="stop11497"
-         offset="1"
-         style="stop-color:#070808;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11487"
-       inkscape:collect="always">
-      <stop
-         id="stop11489"
-         offset="0"
-         style="stop-color:#538ac5;stop-opacity:1" />
-      <stop
-         id="stop11491"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11474">
-      <stop
-         style="stop-color:#558bc5;stop-opacity:1"
-         offset="0"
-         id="stop11476" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop11478" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11333">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11335" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11337" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient11316"
-       inkscape:collect="always">
-      <stop
-         id="stop11318"
-         offset="0"
-         style="stop-color:#edd400;stop-opacity:1" />
-      <stop
-         id="stop11320"
-         offset="1"
-         style="stop-color:#f6c93b;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11304">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11306" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11259">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop11261" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop11263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11241">
-      <stop
-         style="stop-color:#4f381b;stop-opacity:0.97254902"
-         offset="0"
-         id="stop11243" />
-      <stop
-         style="stop-color:#a87b42;stop-opacity:0.96078432"
-         offset="1"
-         id="stop11245" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient11196">
-      <stop
-         style="stop-color:#555753;stop-opacity:1"
-         offset="0"
-         id="stop11198" />
-      <stop
-         style="stop-color:#000000;stop-opacity:1"
-         offset="1"
-         id="stop11200" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11241"
-       id="linearGradient10406"
-       gradientUnits="userSpaceOnUse"
-       x1="14.365882"
-       y1="19.515574"
-       x2="11.215483"
-       y2="8.2263536" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11493"
-       id="linearGradient11202"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11196"
-       id="linearGradient11206"
-       gradientUnits="userSpaceOnUse"
-       x1="9.7069349"
-       y1="8.5495605"
-       x2="9.9879932"
-       y2="10.59237" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11316"
-       id="radialGradient11271"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
-       cx="11.873854"
-       cy="12.147273"
-       fx="11.594166"
-       fy="8.8655272"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11310"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11304"
-       id="linearGradient11314"
-       gradientUnits="userSpaceOnUse"
-       x1="8.9530411"
-       y1="6.2636566"
-       x2="10.732871"
-       y2="9.6526775" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11259"
-       id="radialGradient11327"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
-       cx="11.736404"
-       cy="7.3689327"
-       fx="11.800528"
-       fy="1.1734189"
-       r="9.975256" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11339"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0833276,0,0,1.1666668,-3.9582687,-5.2500011)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11333"
-       id="linearGradient11343"
-       gradientUnits="userSpaceOnUse"
-       x1="14.6875"
-       y1="11.875"
-       x2="20.6875"
-       y2="22.5625"
-       gradientTransform="matrix(1.0833391,0,0,1.1666668,10.041531,-5.2500011)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11487"
-       id="linearGradient11480"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0999932,0,0,1.2,-4.2499165,-5.8999987)" />
-    <filter
-       inkscape:collect="always"
-       id="filter11503"
-       x="-0.11697236"
-       width="1.2339447"
-       y="-0.32830241"
-       height="1.6566048">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.64772565"
-         id="feGaussianBlur11505" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient11474"
-       id="linearGradient11507"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1.1000069,0,0,1.2,48.250086,-5.8999987)"
-       x1="14.728965"
-       y1="15.785595"
-       x2="16.957989"
-       y2="24.104429" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8716"
-       id="radialGradient8722"
-       cx="44.7687"
-       cy="4.7732658"
-       fx="44.7687"
-       fy="4.7732658"
-       r="9.0598059"
-       gradientTransform="matrix(1.7013896,0,0,1.0125342,-31.400301,2.4538538)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8730"
-       id="linearGradient8736"
-       x1="45.837402"
-       y1="21.754553"
-       x2="45.837402"
-       y2="19.126131"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient8706"
-       id="radialGradient8738"
-       cx="44.7687"
-       cy="21.608887"
-       fx="44.7687"
-       fy="21.608887"
-       r="9.0598059"
-       gradientTransform="matrix(1.3094421,0,0,0.7792777,-13.85332,2.5000315)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="2.8284271"
-     inkscape:cx="64.2628"
-     inkscape:cy="40.347011"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fce94f"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     width="48px"
-     height="48px"
-     inkscape:snap-bbox="true"
-     inkscape:snap-nodes="false"
-     objecttolerance="10"
-     gridtolerance="10"
-     showguides="true"
-     inkscape:guide-bbox="true">
-    <inkscape:grid
-       type="xygrid"
-       id="grid10393"
-       visible="true"
-       enabled="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
-       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
-       sodipodi:ry="2.3675451"
-       sodipodi:rx="6.6449099"
-       sodipodi:cy="10.457643"
-       sodipodi:cx="10.748654"
-       id="path17958"
-       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17960"
-       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11247"
-       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path11257"
-       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11329"
-       d="M 21.499929,17.500003 C 21.499929,21.364001 18.587949,24.500001 14.999965,24.500001 C 11.411983,24.500001 8.4999987,21.364001 8.4999987,17.500003 C 8.4999987,13.636 11.411983,10.5 14.999965,10.5 C 18.587949,10.5 21.499929,13.636 21.499929,17.500003 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
-       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
-       sodipodi:ry="9.975256"
-       sodipodi:rx="9.975256"
-       sodipodi:cy="10.983024"
-       sodipodi:cx="11.806158"
-       id="path17964"
-       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path17966"
-       d="M 20.499931,17.500002 C 20.499931,20.812 18.03595,23.5 14.999965,23.5 C 11.963984,23.5 9.499999,20.812 9.499999,17.500002 C 9.499999,14.188 11.963984,11.5 14.999965,11.5 C 18.03595,11.5 20.499931,14.188 20.499931,17.500002 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.9241248,0,0,1.5452869,-12.384324,4.083844)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path17968"
-       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5298496,-13.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11325"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5298496,-12.968448)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17976"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-13.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path11323"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       sodipodi:open="true"
-       sodipodi:end="5.6135639"
-       sodipodi:start="3.5782199"
-       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)"
-       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
-       sodipodi:ry="1.7410715"
-       sodipodi:rx="1.2276785"
-       sodipodi:cy="9.2232141"
-       sodipodi:cx="8.3258924"
-       id="path17978"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11482"
-       d="M 23.49993,17.500002 C 23.49993,20.812 25.963942,23.5 28.999965,23.5 C 32.035984,23.5 34.499999,20.812 34.499999,17.500002 C 34.499999,14.188 32.035984,11.5 28.999965,11.5 C 25.963942,11.5 23.49993,14.188 23.49993,17.500002 z"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       transform="matrix(2.9241927,0,0,1.5452869,-0.3849832,4.0838437)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11204"
-       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.9494053,0,0,1.0301913,-2.922785,9.0558958)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11300"
-       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       transform="matrix(1.9494735,0,0,1.0301913,9.0765518,9.0558958)"
-       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
-       sodipodi:ry="1.9413869"
-       sodipodi:rx="1.0259361"
-       sodipodi:cy="9.6526775"
-       sodipodi:cx="9.7069349"
-       id="path11312"
-       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
-       sodipodi:type="arc" />
-    <path
-       id="path11341"
-       d="M 35.5,17.500003 C 35.5,21.364001 32.587988,24.500001 28.999966,24.500001 C 25.411946,24.500001 22.49993,21.364001 22.49993,17.500003 C 22.49993,13.636 25.411946,10.5 28.999966,10.5 C 32.587988,10.5 35.5,13.636 35.5,17.500003 z"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path8714"
-       sodipodi:cx="44.7687"
-       sodipodi:cy="16.003418"
-       sodipodi:rx="9.0598059"
-       sodipodi:ry="5.3916893"
-       d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z"
-       transform="matrix(1.0485875,0,0,1.2982945,-25.443899,12.222851)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#radialGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path7934"
-       sodipodi:cx="44.7687"
-       sodipodi:cy="16.003418"
-       sodipodi:rx="9.0598059"
-       sodipodi:ry="5.3916893"
-       d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z"
-       transform="matrix(0.93821,0,0,1.1128238,-20.50244,15.191015)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8736);stroke-width:0.80703287999999984;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="path8728"
-       sodipodi:cx="44.7687"
-       sodipodi:cy="16.003418"
-       sodipodi:rx="9.0598059"
-       sodipodi:ry="5.3916893"
-       d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z"
-       transform="matrix(1.1037765,0,0,1.3910297,-27.91464,10.738771)" />
-  </g>
-</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/auth.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,850 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="auth.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/pidgin-mtn/pidgin/pixmaps/dialogs/64/auth.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9188">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop9190" />
+      <stop
+         style="stop-color:#6f726d;stop-opacity:1"
+         offset="1"
+         id="stop9192" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9166">
+      <stop
+         style="stop-color:#3b73bb;stop-opacity:1;"
+         offset="0"
+         id="stop9168" />
+      <stop
+         style="stop-color:#3b73bb;stop-opacity:0;"
+         offset="1"
+         id="stop9170" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9158">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop9160" />
+      <stop
+         style="stop-color:#bcd2e9;stop-opacity:1"
+         offset="1"
+         id="stop9162" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9056">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop9058" />
+      <stop
+         style="stop-color:#729fcf;stop-opacity:0;"
+         offset="1"
+         id="stop9060" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9040">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop9042" />
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1"
+         offset="1"
+         id="stop9044" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11669"
+       inkscape:collect="always">
+      <stop
+         id="stop11671"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         id="stop11673"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11653">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop11655" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop11657" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11493"
+       inkscape:collect="always">
+      <stop
+         id="stop11495"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop11497"
+         offset="1"
+         style="stop-color:#070808;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient11202"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11310"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="translate(10.999931,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11669"
+       id="radialGradient11659"
+       cx="14"
+       cy="19.5"
+       fx="9.3258924"
+       fy="14.814685"
+       r="8"
+       gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11653"
+       id="radialGradient11667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)"
+       cx="14"
+       cy="19.5"
+       fx="9.3258924"
+       fy="14.814685"
+       r="8" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient8720"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient8722"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient8985"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient8993"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient8995"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient8997"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient9005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-34.999933,2.0000002)"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient9018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)"
+       x1="22.919643"
+       y1="33.491837"
+       x2="23.746914"
+       y2="36.579254" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient9036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)"
+       cx="24.00321"
+       cy="34.70562"
+       fx="24.00321"
+       fy="34.70562"
+       r="12.133846" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9040"
+       id="linearGradient9046"
+       x1="24"
+       y1="37"
+       x2="44.533825"
+       y2="40.875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9056"
+       id="linearGradient9062"
+       x1="34.5"
+       y1="61.35038"
+       x2="34.5"
+       y2="33.72963"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9158"
+       id="linearGradient9164"
+       x1="29"
+       y1="35.649048"
+       x2="29"
+       y2="32.334484"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-1,0)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9166"
+       id="linearGradient9172"
+       x1="29.125"
+       y1="36.5625"
+       x2="25"
+       y2="31.9375"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9188"
+       id="linearGradient9194"
+       x1="37.5"
+       y1="42.295494"
+       x2="37.5"
+       y2="40.792892"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9166"
+       id="linearGradient9246"
+       gradientUnits="userSpaceOnUse"
+       x1="29.78125"
+       y1="37.09375"
+       x2="23.984375"
+       y2="30.40625" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="274.07651"
+     inkscape:cy="97.498181"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
+       d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z"
+       id="path11288"
+       sodipodi:nodetypes="cscscscsccc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z"
+       style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path17968"
+       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11300"
+       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       style="opacity:0.80000000000000004;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 22.1875,18.537724 C 22.1875,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22.53125,14.293548 22.1875,18.537724 z"
+       id="path11647"
+       sodipodi:nodetypes="csssc" />
+    <rect
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect11649"
+       width="5.1303458"
+       height="1.0018942"
+       x="6.2930641"
+       y="14.833013"
+       rx="0.51303452"
+       ry="0.50094712"
+       transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" />
+    <rect
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect11651"
+       width="5.1303449"
+       height="1.0018942"
+       x="31.000992"
+       y="25.932768"
+       rx="0.51303446"
+       ry="0.50094712"
+       transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" />
+    <path
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99999994000000003;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 14.5,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z"
+       id="path11661" />
+    <path
+       style="opacity:0.80000000000000004;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 21.849813,22.809207 21.78125,18.600224 C 21.711014,14.288526 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z"
+       id="path11663"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path8714"
+       style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path8716"
+       style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path8718"
+       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9046);stroke-width:0.99999994000000003;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect9038"
+       width="21.999998"
+       height="15"
+       x="23.499998"
+       y="29.5"
+       rx="1.331211"
+       ry="1.2101918" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0060635"
+       inkscape:original="M 25.71875 29.5 C 25.048304 29.5 24.5 30.048304 24.5 30.71875 L 24.5 43.28125 C 24.5 43.951696 25.048304 44.5 25.71875 44.5 L 43.28125 44.5 C 43.951696 44.5 44.5 43.951698 44.5 43.28125 L 44.5 30.71875 C 44.5 30.048304 43.951698 29.5 43.28125 29.5 L 25.71875 29.5 z "
+       style="opacity:1;fill:url(#linearGradient9062);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.94868326000000003;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path9052"
+       d="M 25.71875,30.5 C 25.596823,30.5 25.5,30.596823 25.5,30.71875 L 25.5,43.28125 C 25.5,43.403177 25.596823,43.5 25.71875,43.5 L 43.28125,43.5 C 43.403179,43.5 43.5,43.403181 43.5,43.28125 L 43.5,30.71875 C 43.5,30.596821 43.403181,30.5 43.28125,30.5 L 25.71875,30.5 z"
+       transform="matrix(1.1111112,0,0,1,-3.833336,0)" />
+    <rect
+       style="opacity:1;fill:url(#linearGradient9164);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9246);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect9064"
+       width="5"
+       height="6"
+       x="25.5"
+       y="31.5"
+       rx="0.53033006"
+       ry="0.53033006" />
+    <path
+       style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 28 34 C 27.448 34 27 34.447999 27 35 C 27 35.552 27.448001 35.999999 28 36 C 28.552 36 29 35.551999 29 35 C 29 34.448 28.552001 33.999999 28 34 z M 28 36 C 27.448 36 27 36.448 27 37 C 27 37 29 37 29 37 C 29 36.448 28.552001 36 28 36 z "
+       id="path9242" />
+    <path
+       style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed"
+       d="M 33.000002,33.459106 L 33.308145,33.459106 L 33.308145,33.96439 L 33.761924,33.96439 L 33.761924,33.459106 L 34.069179,33.459106 L 34.069179,34.784921 L 33.761924,34.784921 L 33.761924,34.222804 L 33.308145,34.222804 L 33.308145,34.784921 L 33.000002,34.784921 L 33.000002,33.459106 M 34.237014,33.790338 L 34.523845,33.790338 L 34.764499,34.465233 L 34.968743,33.790338 L 35.254686,33.790338 L 34.878165,34.879051 C 34.840276,34.989757 34.796171,35.067015 34.74585,35.110824 C 34.695529,35.155225 34.629223,35.177425 34.546934,35.177426 L 34.380874,35.177426 L 34.380874,34.968741 L 34.470564,34.968741 C 34.519109,34.968741 34.554333,34.960157 34.576238,34.942988 C 34.598734,34.92582 34.616199,34.895035 34.628631,34.850634 L 34.636624,34.823106 L 34.237014,33.790338 M 35.420746,33.403161 L 35.706688,33.403161 L 35.706688,34.784921 L 35.420746,34.784921 L 35.420746,33.403161 M 35.985527,33.403161 L 36.271469,33.403161 L 36.271469,34.155314 L 36.600925,33.790338 L 36.933045,33.790338 L 36.496139,34.24678 L 36.967677,34.784921 L 36.620461,34.784921 L 36.271469,34.370215 L 36.271469,34.784921 L 35.985527,34.784921 L 35.985527,33.403161 M 37.919635,34.284965 L 37.919635,34.375543 L 37.250956,34.375543 C 37.257468,34.450137 37.281444,34.506083 37.322886,34.543379 C 37.364918,34.580676 37.423231,34.599325 37.497826,34.599324 C 37.55821,34.599325 37.61978,34.589556 37.682534,34.57002 C 37.745878,34.549891 37.810704,34.519699 37.87701,34.479442 L 37.87701,34.724535 C 37.80952,34.752952 37.741734,34.774265 37.673654,34.788473 C 37.606163,34.803273 37.538674,34.810673 37.471185,34.810673 C 37.308973,34.810673 37.182874,34.765088 37.092888,34.673918 C 37.003494,34.582156 36.958797,34.453689 36.958797,34.288517 C 36.958797,34.126306 37.002902,33.998727 37.091112,33.90578 C 37.179322,33.812835 37.300685,33.766362 37.455201,33.766361 C 37.596099,33.766362 37.708582,33.813427 37.792648,33.907556 C 37.877305,34.001687 37.919634,34.12749 37.919635,34.284965 M 37.625701,34.179291 C 37.6257,34.118906 37.609715,34.070361 37.577747,34.033655 C 37.54637,33.996359 37.504929,33.977711 37.453425,33.97771 C 37.398367,33.977711 37.353374,33.995175 37.318445,34.030103 C 37.284108,34.064441 37.2625,34.11417 37.25362,34.179291 L 37.625701,34.179291 M 39.193057,33.972382 C 39.241601,33.972383 39.278306,33.960542 39.303171,33.936861 C 39.328627,33.913182 39.341355,33.878253 39.341356,33.832075 C 39.341355,33.786491 39.328627,33.751858 39.303171,33.728176 C 39.278306,33.703905 39.241601,33.691769 39.193057,33.691767 L 39.023445,33.691767 L 39.023445,33.972382 L 39.193057,33.972382 M 39.203713,34.552259 C 39.265874,34.55226 39.312347,34.537755 39.343132,34.508746 C 39.374508,34.479738 39.390196,34.435929 39.390197,34.377319 C 39.390196,34.319894 39.374508,34.276974 39.343132,34.248556 C 39.312347,34.219548 39.265874,34.205044 39.203713,34.205043 L 39.023445,34.205043 L 39.023445,34.552259 L 39.203713,34.552259 M 39.489655,34.075392 C 39.55596,34.096706 39.607169,34.136074 39.643283,34.193499 C 39.679395,34.250925 39.697451,34.321374 39.697452,34.404848 C 39.697451,34.532723 39.658378,34.628037 39.580234,34.69079 C 39.502679,34.753544 39.384572,34.784921 39.225913,34.784921 L 38.715302,34.784921 L 38.715302,33.459106 L 39.177072,33.459106 C 39.342835,33.459107 39.462718,33.486932 39.536721,33.54258 C 39.611313,33.598231 39.64861,33.687329 39.648611,33.809874 C 39.64861,33.874405 39.634994,33.929462 39.607762,33.975046 C 39.581121,34.02004 39.541752,34.053489 39.489655,34.075392 M 40.375012,33.993694 C 40.311666,33.993695 40.263417,34.019152 40.230265,34.070064 C 40.197111,34.120386 40.180535,34.193204 40.180535,34.288517 C 40.180535,34.383832 40.197111,34.456946 40.230265,34.507858 C 40.263417,34.55818 40.311666,34.58334 40.375012,34.58334 C 40.437765,34.58334 40.485422,34.55818 40.517983,34.507858 C 40.551135,34.456946 40.567712,34.383832 40.567712,34.288517 C 40.567712,34.193204 40.551135,34.120386 40.517983,34.070064 C 40.485422,34.019152 40.437765,33.993695 40.375012,33.993694 M 40.375012,33.766361 C 40.529527,33.766362 40.650001,33.812539 40.736436,33.904892 C 40.822869,33.997247 40.866086,34.125122 40.866087,34.288517 C 40.866086,34.451913 40.822869,34.579788 40.736436,34.672142 C 40.650001,34.764496 40.529527,34.810673 40.375012,34.810673 C 40.221088,34.810673 40.100317,34.764496 40.0127,34.672142 C 39.925673,34.579788 39.88216,34.451913 39.882161,34.288517 C 39.88216,34.125122 39.925673,33.997247 40.0127,33.904892 C 40.100317,33.812539 40.221088,33.766362 40.375012,33.766361 M 41.975225,34.179291 L 41.975225,34.784921 L 41.687506,34.784921 L 41.687506,34.68635 L 41.687506,34.321374 C 41.687505,34.235533 41.685729,34.176331 41.682178,34.14377 C 41.678625,34.11121 41.672705,34.087233 41.664418,34.07184 C 41.653169,34.051121 41.637776,34.035136 41.618241,34.023887 C 41.599295,34.012048 41.577687,34.006127 41.553415,34.006127 C 41.493621,34.006127 41.446556,34.03188 41.41222,34.083385 C 41.378475,34.134298 41.361602,34.205044 41.361603,34.295621 L 41.361603,34.784921 L 41.07566,34.784921 L 41.07566,33.790338 L 41.361603,33.790338 L 41.361603,33.935973 C 41.404819,33.877957 41.4507,33.835332 41.499246,33.808098 C 41.54779,33.780274 41.601367,33.766362 41.659977,33.766361 C 41.762987,33.766362 41.841133,33.801587 41.894415,33.872036 C 41.948287,33.942486 41.975224,34.044904 41.975225,34.179291 M 42.939615,33.821418 L 42.939615,34.06296 C 42.878637,34.034544 42.819435,34.013232 42.762011,33.999023 C 42.705177,33.984815 42.6516,33.977711 42.601279,33.97771 C 42.546813,33.977711 42.506261,33.985407 42.47962,34.000799 C 42.453571,34.0156 42.440547,34.038688 42.440547,34.070064 C 42.440547,34.095521 42.450315,34.115058 42.469852,34.128674 C 42.48998,34.142291 42.526093,34.152355 42.578191,34.158866 L 42.62792,34.166858 C 42.774739,34.18758 42.873309,34.22162 42.923631,34.268981 C 42.974543,34.316342 42.999999,34.39064 43,34.491874 C 42.999999,34.597845 42.964775,34.67747 42.894326,34.730751 C 42.823876,34.784033 42.718793,34.810673 42.579079,34.810673 C 42.519877,34.810673 42.458603,34.805345 42.395258,34.794689 C 42.332505,34.784625 42.267975,34.769232 42.20167,34.748512 L 42.20167,34.50697 C 42.258503,34.537755 42.316816,34.560844 42.37661,34.576236 C 42.436995,34.591628 42.497972,34.599325 42.559542,34.599324 C 42.615191,34.599325 42.657224,34.59074 42.685641,34.573572 C 42.714057,34.556404 42.728265,34.530947 42.728266,34.497202 C 42.728265,34.468786 42.718497,34.447769 42.698961,34.434153 C 42.679424,34.419945 42.640648,34.408992 42.582631,34.401296 L 42.532014,34.394192 C 42.40473,34.376432 42.315336,34.343575 42.263831,34.295621 C 42.212918,34.247669 42.187462,34.174851 42.187462,34.077168 C 42.187462,33.971791 42.220022,33.893645 42.285144,33.842731 C 42.350265,33.791819 42.450019,33.766362 42.584407,33.766361 C 42.637095,33.766362 42.692449,33.770802 42.750467,33.779681 C 42.808483,33.788563 42.871533,33.802475 42.939615,33.821418"
+       id="flowRoot9140" />
+    <path
+       style="opacity:1;fill:url(#linearGradient9194);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 31 40 L 31 43 L 32 43 L 32 40 L 31 40 z M 33 40 L 33 43 L 35 43 L 35 40 L 33 40 z M 36 40 L 36 43 L 36.9375 43 L 36.9375 40 L 36 40 z M 38 40 L 38 43 L 40 43 L 40 40 L 38 40 z M 41.28125 40 C 41.168464 40 41.0625 40.105962 41.0625 40.21875 L 41.0625 42.78125 C 41.0625 42.894036 41.168462 43 41.28125 43 L 41.78125 43 C 41.894036 43 42 42.894038 42 42.78125 L 42 40.21875 C 42 40.105964 41.894038 40 41.78125 40 L 41.28125 40 z M 43.0625 40 L 43.0625 43 L 44 43 L 44 40 L 43.0625 40 z "
+       id="rect9175" />
+    <path
+       style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed"
+       d="M 33,35.766614 L 33.543122,35.766614 C 33.704956,35.766616 33.829008,35.806602 33.915279,35.886573 C 34.001548,35.965918 34.044683,36.079265 34.044684,36.226615 C 34.044683,36.374597 34.001548,36.488574 33.915279,36.568546 C 33.829008,36.64789 33.704956,36.687561 33.543122,36.687561 L 33.327762,36.687561 L 33.327762,37.176843 L 33,37.176843 L 33,35.766614 M 33.327762,36.030147 L 33.327762,36.424028 L 33.508174,36.424028 C 33.571773,36.424029 33.62089,36.407027 33.655525,36.373022 C 33.690158,36.338389 33.707475,36.289587 33.707476,36.226615 C 33.707475,36.163646 33.690158,36.115158 33.655525,36.081153 C 33.62089,36.04715 33.571773,36.030148 33.508174,36.030147 L 33.327762,36.030147 M 34.260044,36.118936 L 34.564192,36.118936 L 34.564192,37.176843 L 34.260044,37.176843 L 34.260044,36.118936 M 34.260044,35.707107 L 34.564192,35.707107 L 34.564192,35.982918 L 34.260044,35.982918 L 34.260044,35.707107 M 35.508753,36.273843 L 35.508753,35.707107 L 35.814791,35.707107 L 35.814791,37.176843 L 35.508753,37.176843 L 35.508753,37.023824 C 35.466561,37.086166 35.420278,37.131819 35.369903,37.160786 C 35.319525,37.189752 35.260962,37.204235 35.194214,37.204235 C 35.077088,37.204235 34.980743,37.152599 34.905178,37.049327 C 34.830243,36.945426 34.792776,36.811928 34.792776,36.648834 C 34.792776,36.48574 34.830243,36.352558 34.905178,36.249285 C 34.980743,36.145384 35.077088,36.093433 35.194214,36.093432 C 35.260333,36.093433 35.318581,36.108231 35.368958,36.137827 C 35.419963,36.166794 35.466561,36.212133 35.508753,36.273843 M 35.307561,36.95865 C 35.37305,36.95865 35.422797,36.932202 35.456802,36.879307 C 35.491435,36.826412 35.508752,36.749587 35.508753,36.648834 C 35.508752,36.548081 35.491435,36.471257 35.456802,36.418361 C 35.422797,36.365467 35.37305,36.339019 35.307561,36.339018 C 35.243331,36.339019 35.193899,36.365467 35.159265,36.418361 C 35.125261,36.471257 35.108259,36.548081 35.108259,36.648834 C 35.108259,36.749587 35.125261,36.826412 35.159265,36.879307 C 35.193899,36.932202 35.243331,36.95865 35.307561,36.95865 M 36.759351,36.997376 C 36.71716,37.059088 36.670876,37.104427 36.6205,37.133394 C 36.570123,37.16236 36.511561,37.176843 36.444812,37.176843 C 36.328946,37.176843 36.232915,37.126152 36.156721,37.024769 C 36.081156,36.922757 36.043374,36.793037 36.043374,36.63561 C 36.043374,36.477554 36.081156,36.348149 36.156721,36.247396 C 36.232915,36.146014 36.328946,36.095322 36.444812,36.095322 C 36.511561,36.095322 36.570123,36.109806 36.6205,36.138771 C 36.670876,36.167739 36.71716,36.213392 36.759351,36.275732 L 36.759351,36.118936 L 37.065388,36.118936 L 37.065388,37.070108 C 37.065387,37.240129 37.0169,37.369848 36.919926,37.459267 C 36.82358,37.549315 36.68347,37.594339 36.499597,37.594339 C 36.440404,37.594339 36.382786,37.589301 36.326742,37.579226 C 36.271327,37.56915 36.215599,37.553722 36.159555,37.532943 L 36.159555,37.26941 C 36.21308,37.303414 36.265345,37.328602 36.316352,37.344975 C 36.367358,37.361977 36.418679,37.370478 36.470315,37.370478 C 36.569809,37.370478 36.642854,37.346234 36.689453,37.297747 C 36.736051,37.24926 36.75935,37.17338 36.759351,37.070108 L 36.759351,36.997376 M 36.55816,36.339018 C 36.495188,36.339019 36.446071,36.364837 36.410808,36.416472 C 36.376174,36.468108 36.358857,36.541155 36.358857,36.63561 C 36.358857,36.732585 36.375859,36.806261 36.409864,36.856637 C 36.443867,36.906384 36.493299,36.931257 36.55816,36.931257 C 36.621759,36.931257 36.671191,36.90544 36.706456,36.853803 C 36.741718,36.802168 36.75935,36.729437 36.759351,36.63561 C 36.75935,36.541155 36.741718,36.468108 36.706456,36.416472 C 36.671191,36.364837 36.621759,36.339019 36.55816,36.339018 M 37.36198,36.118936 L 37.666129,36.118936 L 37.666129,37.176843 L 37.36198,37.176843 L 37.36198,36.118936 M 37.36198,35.707107 L 37.666129,35.707107 L 37.666129,35.982918 L 37.36198,35.982918 L 37.36198,35.707107 M 38.919561,36.532653 L 38.919561,37.176843 L 38.613523,37.176843 L 38.613523,37.071997 L 38.613523,36.683783 C 38.613522,36.592476 38.611633,36.529505 38.607856,36.494871 C 38.604077,36.460237 38.597779,36.434734 38.588965,36.418361 C 38.577,36.396322 38.560627,36.37932 38.539847,36.367355 C 38.519696,36.354762 38.496712,36.348464 38.470894,36.348464 C 38.407293,36.348464 38.357232,36.375857 38.320709,36.43064 C 38.284816,36.484796 38.266869,36.560046 38.266869,36.65639 L 38.266869,37.176843 L 37.962721,37.176843 L 37.962721,36.118936 L 38.266869,36.118936 L 38.266869,36.273843 C 38.312838,36.212133 38.36164,36.166794 38.413276,36.137827 C 38.464912,36.108231 38.5219,36.093433 38.584242,36.093432 C 38.69381,36.093433 38.776931,36.130901 38.833606,36.205835 C 38.890908,36.280771 38.91956,36.38971 38.919561,36.532653"
+       id="flowRoot9198" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/cool.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,704 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="cool.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/cool.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       id="perspective105" />
+    <linearGradient
+       id="linearGradient11669"
+       inkscape:collect="always">
+      <stop
+         id="stop11671"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         id="stop11673"
+         offset="1"
+         style="stop-color:#3465a4;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11653">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop11655" />
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1"
+         offset="1"
+         id="stop11657" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11586">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11588" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11590" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11493"
+       inkscape:collect="always">
+      <stop
+         id="stop11495"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop11497"
+         offset="1"
+         style="stop-color:#070808;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11418">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11420" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11422" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11346"
+       inkscape:collect="always">
+      <stop
+         id="stop11348"
+         offset="0"
+         style="stop-color:#ef7700;stop-opacity:1" />
+      <stop
+         id="stop11350"
+         offset="1"
+         style="stop-color:#fea523;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11346"
+       id="linearGradient10424"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-2.0000002,0,0,2.0000001,48.499999,-0.4999991)"
+       x1="8.9999981"
+       y1="10.5625"
+       x2="8.9999981"
+       y2="12.4375" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient11202"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient11214"
+       x1="22.919643"
+       y1="33.491837"
+       x2="23.746914"
+       y2="36.579254"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9659258,0.258819,0.258819,0.9659258,39.560471,-4.4105697)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient11298"
+       cx="24.00321"
+       cy="34.70562"
+       fx="24.00321"
+       fy="34.70562"
+       r="12.133846"
+       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11310"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="translate(10.999931,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11418"
+       id="linearGradient11424"
+       x1="22.915459"
+       y1="34.796875"
+       x2="22.854631"
+       y2="29.835938"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter11462"
+       x="-0.078992675"
+       width="1.1579853"
+       y="-0.19133781"
+       height="1.3826756">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.448448"
+         id="feGaussianBlur11464" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+    <filter
+       id="filter3405"
+       height="2.5649745"
+       y="-0.78248727"
+       width="1.5575919"
+       x="-0.27879593"
+       inkscape:collect="always">
+      <feGaussianBlur
+         id="feGaussianBlur3407"
+         stdDeviation="1.5438116"
+         inkscape:collect="always" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11586"
+       id="linearGradient11592"
+       x1="39.704506"
+       y1="13.248698"
+       x2="54.781696"
+       y2="18.949747"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11669"
+       id="radialGradient11659"
+       cx="14"
+       cy="19.5"
+       fx="9.3258924"
+       fy="14.814685"
+       r="8"
+       gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11653"
+       id="radialGradient11667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)"
+       cx="14"
+       cy="19.5"
+       fx="9.3258924"
+       fy="14.814685"
+       r="8" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="8"
+     inkscape:cx="34.093743"
+     inkscape:cy="29.192709"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path17968"
+       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.98821175"
+       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
+       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       id="path11288"
+       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
+       transform="matrix(0.9659258,-0.264782,0.258819,0.9881799,-6.825115,7.6473507)" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 13,31.694019 C 15.576229,36.323459 20.846351,38.909081 25.954556,37.540342 C 31.062759,36.171603 34.33401,31.297326 34.250368,26 C 32.872293,29.813956 29.916568,34.514228 25.463432,35.707442 C 21.010298,36.900659 16.100427,34.307964 13,31.694019 z"
+       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-11.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11300"
+       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
+       id="path11416"
+       sodipodi:cx="23.25"
+       sodipodi:cy="30.1875"
+       sodipodi:rx="6.8125"
+       sodipodi:ry="2.8125"
+       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
+       transform="matrix(0.9925109,-0.2659425,0.4601228,1.7172017,-13.102978,-15.495569)" />
+    <path
+       style="opacity:0.59722218;fill:url(#radialGradient11659);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 22,18.537724 C 22,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22,14.418548 22,18.537724 z"
+       id="path11647"
+       sodipodi:nodetypes="csssc" />
+    <rect
+       style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect11649"
+       width="5.1303458"
+       height="1.0018942"
+       x="6.2930641"
+       y="14.833013"
+       rx="0.51303452"
+       ry="0.50094712"
+       transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" />
+    <rect
+       style="opacity:1;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect11651"
+       width="5.1303449"
+       height="1.0018942"
+       x="31.000992"
+       y="25.932768"
+       rx="0.51303446"
+       ry="0.50094712"
+       transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" />
+    <path
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 14.5,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z"
+       id="path11661" />
+    <path
+       style="opacity:0.59722218;fill:url(#radialGradient11667);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 22,22.656901 22,18.537724 C 22,14.418548 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z"
+       id="path11663"
+       sodipodi:nodetypes="csssc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/dialog.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,609 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="dialog.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/dialog.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       id="perspective89" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9283">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop9285" />
+      <stop
+         style="stop-color:#c9daee;stop-opacity:1"
+         offset="1"
+         id="stop9287" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11418">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11420" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11422" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient11214"
+       x1="22.919643"
+       y1="33.491837"
+       x2="22.919643"
+       y2="36.402832"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.8636363,0,0,0.7777776,39.227274,9.2222251)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient11298"
+       cx="24.00321"
+       cy="34.70562"
+       fx="24.00321"
+       fy="34.70562"
+       r="12.133846"
+       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9166666,0,0,0.9166666,-3.0416663,6.1250012)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="matrix(0.9166667,0,0,0.9166666,7.9583347,6.1250012)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11418"
+       id="linearGradient11424"
+       x1="22.915459"
+       y1="34.796875"
+       x2="22.854631"
+       y2="29.835938"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter11462"
+       x="-0.078992675"
+       width="1.1579853"
+       y="-0.19133781"
+       height="1.3826756">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.448448"
+         id="feGaussianBlur11464" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9,0,0,0.9,-2.7500001,6.450001)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9,0,0,0.9,39.749999,6.450001)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient7925"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient7927"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <linearGradient
+       id="linearGradient8904"
+       inkscape:collect="always">
+      <stop
+         id="stop8906"
+         offset="0"
+         style="stop-color:#729fcf;stop-opacity:1;" />
+      <stop
+         id="stop8908"
+         offset="1"
+         style="stop-color:#25486d;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9283"
+       id="linearGradient8508"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6666666,0,0,0.6587574,15.166665,0.8540557)"
+       x1="30.5"
+       y1="1.7319652"
+       x2="30.5"
+       y2="22.781603" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8904"
+       id="linearGradient8511"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6875001,0,0,0.6767003,14.531249,0.4849495)"
+       x1="29.466667"
+       y1="6.8962817"
+       x2="42.829762"
+       y2="37.801281" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.313708"
+     inkscape:cx="42.212021"
+     inkscape:cy="27.33968"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1430"
+     inkscape:window-height="837"
+     inkscape:window-x="2"
+     inkscape:window-y="7"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8511);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 28.646485,1.5 C 26.351226,1.5 24.499999,3.6053736 24.499999,6.2157551 L 24.499999,14.378452 C 24.499999,16.988834 26.351226,19.471324 28.646485,19.471324 L 38.588405,19.471324 C 38.588405,19.471324 38.185679,21.246142 37.169849,22.500949 C 40.739034,22.500949 41.597375,20.059554 41.597375,19.461518 L 43.0625,19.471324 C 45.821256,19.471324 46.5,16.985061 46.5,14.378452 L 46.5,6.2157551 C 46.5,3.6053738 44.648774,1.5 42.353516,1.5 L 28.646485,1.5 z"
+       id="path8201"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       style="fill:url(#linearGradient8508);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 28.854165,2.5009492 C 27.043799,2.5009492 25.499999,4.1991556 25.499999,6.4329081 L 25.499999,14.379169 C 25.499999,16.612921 27.043799,18.498627 28.854165,18.498627 L 38.854706,18.498627 C 39.222454,18.499674 39.520313,18.606498 39.521372,18.969885 C 39.521372,18.969885 39.644477,20.147733 39.23261,20.89176 C 40.286203,20.514643 40.854165,18.434645 40.854165,18.434645 C 40.969505,18.353016 41.108134,18.309759 41.249998,18.311127 L 42.833331,18.311127 C 43.997822,18.311127 44.543633,17.937415 44.937499,17.28182 C 45.331364,16.626223 45.499999,15.591478 45.499999,14.379169 L 45.499999,6.4329081 C 45.499999,4.1991558 43.956197,2.5009492 42.145832,2.5009492 L 28.854165,2.5009492 z"
+       id="path8203"
+       sodipodi:nodetypes="ccccccccccscccc" />
+    <path
+       transform="matrix(1.8058936,0,0,2.1118921,-0.410926,17.914587)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.7040925,0,0,1.7040625,-1.6187858,8.7839416)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.58828396;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.5795214,0,0,1.5795214,-0.1480796,10.152022)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.5538448,0,0,1.5538449,0.1550622,10.434085)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 18.5,24.000001 C 18.5,27.035998 16.036004,29.499999 13.000001,29.499999 C 9.9640002,29.499999 7.5000003,27.035998 7.5000003,24.000001 C 7.5000003,20.964 9.9640002,18.5 13.000001,18.5 C 16.036004,18.5 18.5,20.964 18.5,24.000001 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.6039688,0,0,-1.6039689,-0.4367098,45.116428)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.62345362;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 17.500001,24.000001 C 17.500001,26.484 15.484002,28.5 13,28.5 C 10.516001,28.5 8.5000003,26.484 8.5000003,24.000001 C 8.5000003,21.516 10.516001,19.5 13,19.5 C 15.484002,19.5 17.500001,21.516 17.500001,24.000001 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(0.8744826,0,0,0.8193141,-2.4902353,7.8660638)"
+       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
+       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,33.230703 24,33.230703 C 19.928002,33.230704 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
+       id="path11288"
+       sodipodi:nodetypes="cscscscsccc" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 9,31 C 10.114314,34.996589 13.932744,38 18.5,38 C 23.067256,38 26.885687,34.996589 28,31 C 25.997881,33.58792 22.481559,36.086622 18.5,36.086622 C 14.518443,36.086624 11.00212,33.58792 9,31 z"
+       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.0998724,0.5796011,-0.5856851,1.5252629,3.1832579,-1.498334)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.0998724,0.5796014,-0.5856851,1.5252636,3.1832579,-0.669072)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.44422138;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-1.498334)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-0.6690642)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 19.499999,24.000001 C 19.499999,26.484 21.515997,28.5 23.999999,28.5 C 26.483998,28.5 28.499999,26.484 28.499999,24.000001 C 28.499999,21.516 26.483998,19.5 23.999999,19.5 C 21.515997,19.5 19.499999,21.516 19.499999,24.000001 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.9494392,0,0,1.2877393,4.0769204,13.069868)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.9747197,0,0,0.6878263,13.538459,18.695971)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 29.5,24.000001 C 29.5,27.035998 27.036004,29.499999 24.000002,29.499999 C 20.964001,29.499999 18.500001,27.035998 18.500001,24.000001 C 18.500001,20.964 20.964001,18.5 24.000002,18.5 C 27.036004,18.5 29.5,20.964 29.5,24.000001 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
+       id="path11416"
+       sodipodi:cx="23.25"
+       sodipodi:cy="30.1875"
+       sodipodi:rx="6.8125"
+       sodipodi:ry="2.8125"
+       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
+       transform="matrix(0.8520939,0,0,1.474258,-1.3111844,-12.857869)" />
+    <path
+       transform="matrix(1.9494392,0,0,1.2877393,-4.9230796,13.069868)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path7921"
+       style="opacity:1;fill:url(#linearGradient7925);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.9747197,0,0,0.6878263,4.5384591,18.695971)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path7923"
+       style="opacity:1;fill:url(#linearGradient7927);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/error.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,327 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="error.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/error.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       id="perspective47" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8757">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop8759" />
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="1"
+         id="stop8761" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient11214"
+       x1="23.151463"
+       y1="36.068001"
+       x2="23.151463"
+       y2="31.364563"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,-1,46.004066,64)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient11298"
+       cx="24.00321"
+       cy="44.452724"
+       fx="24.00321"
+       fy="44.452724"
+       r="12.133846"
+       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8757"
+       id="linearGradient8763"
+       x1="22"
+       y1="17.615276"
+       x2="22"
+       y2="20.974033"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="50.073667"
+     inkscape:cy="41.753083"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fill="#fce94f"
+     inkscape:window-width="1081"
+     inkscape:window-height="669"
+     inkscape:window-x="122"
+     inkscape:window-y="78"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.98821175"
+       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
+       style="opacity:0.37037036000000001;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       id="path11288"
+       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
+       transform="matrix(1,0,0,-1,-1.9959332,64)" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 11.004066,36.000001 C 12.294325,30.861529 16.715664,27.000001 22.004067,27.000001 C 27.292467,27.000001 31.713809,30.861529 33.004066,36.000001 C 30.685823,32.672675 26.614292,28.897559 22.004067,28.897559 C 17.393842,28.897556 13.32231,32.672675 11.004066,36.000001 z"
+       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.4298057,-1.6425985,-1.1582421,-1.5938167,-5.185395,36.479745)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       style="opacity:0.74537037;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 14.03125,18 L 14.03125,19 L 15.03125,19 L 15.03125,18 L 14.03125,18 z M 15.03125,19 L 15.03125,20 L 16.03125,20 L 16.03125,19 L 15.03125,19 z M 16.03125,20 L 16.03125,21 L 17.03125,21 L 17.03125,20 L 16.03125,20 z M 17.03125,20 L 18.03125,20 L 18.03125,19 L 17.03125,19 L 17.03125,20 z M 18.03125,19 L 19.03125,19 L 19.03125,18 L 18.03125,18 L 18.03125,19 z M 17.03125,21 L 17.03125,22 L 18.03125,22 L 18.03125,21 L 17.03125,21 z M 18.03125,22 L 18.03125,23 L 19.03125,23 L 19.03125,22 L 18.03125,22 z M 16.03125,21 L 15.03125,21 L 15.03125,22 L 16.03125,22 L 16.03125,21 z M 25.03125,18 L 25.03125,19 L 26.03125,19 L 26.03125,18 L 25.03125,18 z M 26.03125,19 L 26.03125,20 L 27.03125,20 L 27.03125,19 L 26.03125,19 z M 27.03125,20 L 27.03125,21 L 28.03125,21 L 28.03125,20 L 27.03125,20 z M 28.03125,20 L 29.03125,20 L 29.03125,19 L 28.03125,19 L 28.03125,20 z M 29.03125,19 L 30.03125,19 L 30.03125,18 L 29.03125,18 L 29.03125,19 z M 28.03125,21 L 28.03125,22 L 29.03125,22 L 29.03125,21 L 28.03125,21 z M 29.03125,22 L 29.03125,23 L 30.03125,23 L 30.03125,22 L 29.03125,22 z M 27.03125,21 L 26.03125,21 L 26.03125,22 L 27.03125,22 L 27.03125,21 z M 14.03125,22.03125 L 14.03125,23.03125 L 15.03125,23.03125 L 15.03125,22.03125 L 14.03125,22.03125 z M 25.03125,22.03125 L 25.03125,23.03125 L 26.03125,23.03125 L 26.03125,22.03125 L 25.03125,22.03125 z"
+       id="path8765"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+    <path
+       style="opacity:1;fill:url(#linearGradient8763);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 14.03125,17 L 14.03125,18 L 15.03125,18 L 15.03125,17 L 14.03125,17 z M 15.03125,18 L 15.03125,19 L 16.03125,19 L 16.03125,18 L 15.03125,18 z M 16.03125,19 L 16.03125,20 L 17.03125,20 L 17.03125,19 L 16.03125,19 z M 17.03125,19 L 18.03125,19 L 18.03125,18 L 17.03125,18 L 17.03125,19 z M 18.03125,18 L 19.03125,18 L 19.03125,17 L 18.03125,17 L 18.03125,18 z M 17.03125,20 L 17.03125,21 L 18.03125,21 L 18.03125,20 L 17.03125,20 z M 18.03125,21 L 18.03125,22 L 19.03125,22 L 19.03125,21 L 18.03125,21 z M 16.03125,20 L 15.03125,20 L 15.03125,21 L 16.03125,21 L 16.03125,20 z M 25.03125,17 L 25.03125,18 L 26.03125,18 L 26.03125,17 L 25.03125,17 z M 26.03125,18 L 26.03125,19 L 27.03125,19 L 27.03125,18 L 26.03125,18 z M 27.03125,19 L 27.03125,20 L 28.03125,20 L 28.03125,19 L 27.03125,19 z M 28.03125,19 L 29.03125,19 L 29.03125,18 L 28.03125,18 L 28.03125,19 z M 29.03125,18 L 30.03125,18 L 30.03125,17 L 29.03125,17 L 29.03125,18 z M 28.03125,20 L 28.03125,21 L 29.03125,21 L 29.03125,20 L 28.03125,20 z M 29.03125,21 L 29.03125,22 L 30.03125,22 L 30.03125,21 L 29.03125,21 z M 27.03125,20 L 26.03125,20 L 26.03125,21 L 27.03125,21 L 27.03125,20 z M 14.03125,21.03125 L 14.03125,22.03125 L 15.03125,22.03125 L 15.03125,21.03125 L 14.03125,21.03125 z M 25.03125,21.03125 L 25.03125,22.03125 L 26.03125,22.03125 L 26.03125,21.03125 L 25.03125,21.03125 z"
+       id="rect7941"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.4298057,-1.6425985,1.1582421,-1.5938167,48.926576,36.479745)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path7888"
+       style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/info.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,569 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="info.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/info.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       id="perspective82" />
+    <linearGradient
+       id="linearGradient11493"
+       inkscape:collect="always">
+      <stop
+         id="stop11495"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop11497"
+         offset="1"
+         style="stop-color:#070808;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11418">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11420" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11422" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient11202"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient11214"
+       x1="22.919643"
+       y1="33.491837"
+       x2="22.919643"
+       y2="36.402832"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient11298"
+       cx="24.00321"
+       cy="34.70562"
+       fx="24.00321"
+       fy="34.70562"
+       r="12.133846"
+       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11310"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="translate(10.999931,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11418"
+       id="linearGradient11424"
+       x1="22.915459"
+       y1="34.796875"
+       x2="22.854631"
+       y2="29.835938"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter11462"
+       x="-0.078992675"
+       width="1.1579853"
+       y="-0.19133781"
+       height="1.3826756">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.448448"
+         id="feGaussianBlur11464" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="8"
+     inkscape:cx="41.138874"
+     inkscape:cy="20.946547"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path17968"
+       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.98821175"
+       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
+       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       id="path11288"
+       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
+       transform="translate(-2.0000685,1.885788e-7)" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z"
+       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11300"
+       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
+       id="path11416"
+       sodipodi:cx="23.25"
+       sodipodi:cy="30.1875"
+       sodipodi:rx="6.8125"
+       sodipodi:ry="2.8125"
+       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
+       transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/mail.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,976 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="mail.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/mail.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 24 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="48 : 24 : 1"
+       inkscape:persp3d-origin="24 : 16 : 1"
+       id="perspective126" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9188">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop9190" />
+      <stop
+         style="stop-color:#6f726d;stop-opacity:1"
+         offset="1"
+         id="stop9192" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9166">
+      <stop
+         style="stop-color:#3b73bb;stop-opacity:1;"
+         offset="0"
+         id="stop9168" />
+      <stop
+         style="stop-color:#3b73bb;stop-opacity:0;"
+         offset="1"
+         id="stop9170" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9158">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop9160" />
+      <stop
+         style="stop-color:#bcd2e9;stop-opacity:1"
+         offset="1"
+         id="stop9162" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9056">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop9058" />
+      <stop
+         style="stop-color:#729fcf;stop-opacity:0;"
+         offset="1"
+         id="stop9060" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9040">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1"
+         offset="0"
+         id="stop9042" />
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1"
+         offset="1"
+         id="stop9044" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11669"
+       inkscape:collect="always">
+      <stop
+         id="stop11671"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         id="stop11673"
+         offset="1"
+         style="stop-color:#2e3436;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11653">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop11655" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1"
+         offset="1"
+         id="stop11657" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11493"
+       inkscape:collect="always">
+      <stop
+         id="stop11495"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop11497"
+         offset="1"
+         style="stop-color:#070808;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient11202"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11310"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="translate(10.999931,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11669"
+       id="radialGradient11659"
+       cx="14"
+       cy="19.5"
+       fx="9.3258924"
+       fy="14.814685"
+       r="8"
+       gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11653"
+       id="radialGradient11667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)"
+       cx="14"
+       cy="19.5"
+       fx="9.3258924"
+       fy="14.814685"
+       r="8" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient8720"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient8722"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient8985"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient8993"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient8995"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient8997"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient9005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-34.999933,2.0000002)"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient9018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)"
+       x1="22.919643"
+       y1="33.491837"
+       x2="23.746914"
+       y2="36.579254" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient9036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)"
+       cx="24.00321"
+       cy="34.70562"
+       fx="24.00321"
+       fy="34.70562"
+       r="12.133846" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9040"
+       id="linearGradient9046"
+       x1="24"
+       y1="37"
+       x2="44.533825"
+       y2="40.875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9056"
+       id="linearGradient9062"
+       x1="34.5"
+       y1="61.35038"
+       x2="34.5"
+       y2="33.72963"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9158"
+       id="linearGradient9164"
+       x1="29"
+       y1="35.649048"
+       x2="29"
+       y2="32.334484"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-1,0)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9166"
+       id="linearGradient9172"
+       x1="29.125"
+       y1="36.5625"
+       x2="25"
+       y2="31.9375"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9188"
+       id="linearGradient9194"
+       x1="37.5"
+       y1="42.295494"
+       x2="37.5"
+       y2="40.792892"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9166"
+       id="linearGradient9246"
+       gradientUnits="userSpaceOnUse"
+       x1="29.78125"
+       y1="37.09375"
+       x2="23.984375"
+       y2="30.40625" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient3210"
+       xlink:href="#linearGradient3204"
+       inkscape:collect="always" />
+    <linearGradient
+       y2="18.288521"
+       x2="12.015625"
+       y1="10.420408"
+       x1="12.015625"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3200"
+       xlink:href="#linearGradient4130"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="13.251127"
+       x2="12.750399"
+       y1="19.780256"
+       x1="12.726427"
+       id="linearGradient3197"
+       xlink:href="#linearGradient3191"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="19.148933"
+       x2="15.742911"
+       y1="8.850009"
+       x1="13.038205"
+       id="linearGradient3189"
+       xlink:href="#linearGradient3183"
+       inkscape:collect="always" />
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)"
+       r="8.9687502"
+       fy="12"
+       fx="12"
+       cy="12"
+       cx="12"
+       id="radialGradient4152"
+       xlink:href="#linearGradient4146"
+       inkscape:collect="always" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="17.151861"
+       x2="12.015625"
+       y1="12.513933"
+       x1="12.015625"
+       id="linearGradient4144"
+       xlink:href="#linearGradient4138"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient4130"
+       inkscape:collect="always">
+      <stop
+         id="stop4132"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4134"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4138"
+       inkscape:collect="always">
+      <stop
+         id="stop4140"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1;" />
+      <stop
+         id="stop4142"
+         offset="1"
+         style="stop-color:#babdb6;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4146"
+       inkscape:collect="always">
+      <stop
+         id="stop4148"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop4150"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3183"
+       inkscape:collect="always">
+      <stop
+         id="stop3185"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3187"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3191"
+       inkscape:collect="always">
+      <stop
+         id="stop3193"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1;" />
+      <stop
+         id="stop3195"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3204"
+       inkscape:collect="always">
+      <stop
+         id="stop3206"
+         offset="0"
+         style="stop-color:#888a85;stop-opacity:1;" />
+      <stop
+         id="stop3208"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       id="perspective8002"
+       inkscape:persp3d-origin="12 : 8 : 1"
+       inkscape:vp_z="24 : 12 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 12 : 1"
+       sodipodi:type="inkscape:persp3d" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="173.29133"
+     inkscape:cy="101.88242"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new"
+       d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z"
+       id="path11288"
+       sodipodi:nodetypes="cscscscsccc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z"
+       style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path17968"
+       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11300"
+       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path8714"
+       style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path8716"
+       style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path8718"
+       style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <g
+       id="g8029"
+       inkscape:label="Layer 1"
+       transform="translate(24.000001,25)">
+      <rect
+         ry="1.5292913"
+         rx="1.4791573"
+         y="4.5005183"
+         x="2.5008683"
+         height="14.994927"
+         width="18.999125"
+         id="rect3198"
+         style="opacity:1;fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3189);stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      <rect
+         ry="1.325834"
+         rx="1.3235176"
+         y="5.5"
+         x="3.5"
+         height="13"
+         width="17"
+         id="rect3202"
+         style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+      <path
+         d="M 3.96875,5.53125 C 3.7197609,5.53125 3.53125,5.7077743 3.53125,6.03125 L 3.53125,17.96875 C 3.53125,18.292225 3.7197609,18.46875 3.96875,18.46875 L 20.03125,18.46875 C 20.280239,18.46875 20.46875,18.292227 20.46875,17.96875 L 20.46875,6.03125 C 20.46875,5.7077741 20.280239,5.53125 20.03125,5.53125 L 3.96875,5.53125 z"
+         inkscape:href="#rect3198"
+         id="path4119"
+         style="opacity:0.4;fill:url(#radialGradient3210);fill-opacity:1;stroke:url(#radialGradient4152);stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         xlink:href="#rect3198"
+         inkscape:original="M 3.96875 4.5 C 3.1492968 4.5 2.5 5.1840228 2.5 6.03125 L 2.5 17.96875 C 2.5 18.815977 3.1492967 19.5 3.96875 19.5 L 20.03125 19.5 C 20.850703 19.5 21.5 18.815978 21.5 17.96875 L 21.5 6.03125 C 21.5 5.1840226 20.850703 4.5 20.03125 4.5 L 3.96875 4.5 z "
+         inkscape:radius="-1.0251163"
+         sodipodi:type="inkscape:offset" />
+      <path
+         sodipodi:nodetypes="cccccc"
+         id="path4113"
+         d="M 20.173644,19.500002 L 3.8263566,19.500002 C 3.0915545,19.500002 2.4999999,18.840678 2.4999999,18.021697 L 11.981112,10.500001 L 21.499999,18.021697 C 21.499999,18.840678 20.908445,19.500002 20.173644,19.500002 z"
+         style="fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3197);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" />
+      <path
+         transform="matrix(1.0093633,0,0,1,-3.4234557e-2,0)"
+         d="M 11.96875,11.71875 L 3.65625,18.3125 C 3.718416,18.374228 3.7395135,18.53125 3.8125,18.53125 L 20.1875,18.53125 C 20.260486,18.53125 20.281584,18.374227 20.34375,18.3125 L 11.96875,11.71875 z"
+         inkscape:href="#path4113"
+         id="path4117"
+         style="opacity:1;fill:url(#linearGradient4144);fill-opacity:1;stroke:#ffffff;stroke-width:0.9953509;stroke-miterlimit:4;stroke-opacity:1"
+         xlink:href="#path4113"
+         inkscape:original="M 11.96875 10.5 L 2.5 18.03125 C 2.5 18.850231 3.0776979 19.5 3.8125 19.5 L 20.1875 19.5 C 20.922301 19.5 21.500001 18.850232 21.5 18.03125 L 11.96875 10.5 z "
+         inkscape:radius="-0.96695226"
+         sodipodi:type="inkscape:offset" />
+      <path
+         sodipodi:nodetypes="ccczcc"
+         id="path4122"
+         d="M 20.145067,4.5000001 L 3.8242121,4.5000001 C 3.0905983,4.5000001 2.5000001,5.1593244 2.5000001,5.9783056 C 2.5000001,5.9783056 9.4173792,13.5 12.043511,13.5 C 14.708468,13.5 21.469279,5.9783056 21.469279,5.9783056 C 21.469279,5.1593244 20.878681,4.5000001 20.145067,4.5000001 z"
+         style="fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cccccz"
+         id="path4124"
+         d="M 12.087485,11.46875 C 10.301616,11.46875 3.34375,18.34375 3.34375,18.34375 C 3.4413342,18.582586 3.6045666,18.75 3.8125,18.75 L 20.1875,18.75 C 20.395433,18.75 20.558666,18.582586 20.65625,18.34375 C 20.65625,18.34375 13.912791,11.46875 12.087485,11.46875 z"
+         style="opacity:1;fill:url(#linearGradient3200);fill-opacity:1;stroke:#ffffff;stroke-width:1.03183317;stroke-miterlimit:4;stroke-opacity:1"
+         transform="matrix(0.9819495,0,0,-0.956515,0.2166063,23.434657)" />
+    </g>
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/question.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,655 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="question.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/question.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8711">
+      <stop
+         style="stop-color:#a5c2e1;stop-opacity:1"
+         offset="0"
+         id="stop8713" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop8715" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11586">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11588" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11590" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11570">
+      <stop
+         style="stop-color:#0a387a;stop-opacity:1"
+         offset="0"
+         id="stop11572" />
+      <stop
+         style="stop-color:#368eec;stop-opacity:1"
+         offset="1"
+         id="stop11574" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11493"
+       inkscape:collect="always">
+      <stop
+         id="stop11495"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop11497"
+         offset="1"
+         style="stop-color:#070808;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11418">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11420" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11422" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11292">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11294" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11296" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11208">
+      <stop
+         style="stop-color:#c32f00;stop-opacity:1"
+         offset="0"
+         id="stop11210" />
+      <stop
+         style="stop-color:#6c1300;stop-opacity:1"
+         offset="1"
+         id="stop11212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient11202"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11208"
+       id="linearGradient11214"
+       x1="22.919643"
+       y1="33.491837"
+       x2="22.919643"
+       y2="36.402832"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11292"
+       id="radialGradient11298"
+       cx="24.00321"
+       cy="34.70562"
+       fx="24.00321"
+       fy="34.70562"
+       r="12.133846"
+       gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11310"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="translate(10.999931,1.885788e-7)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11418"
+       id="linearGradient11424"
+       x1="22.915459"
+       y1="34.796875"
+       x2="22.854631"
+       y2="29.835938"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       id="filter11462"
+       x="-0.078992675"
+       width="1.1579853"
+       y="-0.19133781"
+       height="1.3826756">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.448448"
+         id="feGaussianBlur11464" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.0000685,1.885788e-7)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11570"
+       id="linearGradient11576"
+       x1="48.140072"
+       y1="17.348257"
+       x2="36.310215"
+       y2="9.2333107"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-2)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11586"
+       id="linearGradient11592"
+       x1="43.267006"
+       y1="14"
+       x2="54.781696"
+       y2="18.949747"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11570"
+       id="linearGradient8706"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-2)"
+       x1="46.202572"
+       y1="17.035757"
+       x2="37.247715"
+       y2="14.5" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11586"
+       id="linearGradient8708"
+       gradientUnits="userSpaceOnUse"
+       x1="43.267006"
+       y1="14"
+       x2="54.781696"
+       y2="18.949747"
+       gradientTransform="translate(0,-2)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8711"
+       id="linearGradient8717"
+       x1="47.873451"
+       y1="13.986977"
+       x2="41.067547"
+       y2="12.484375"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.313709"
+     inkscape:cx="48.898255"
+     inkscape:cy="29.543471"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.4367989,0,0,1.5452869,-6.1538483,7.0838437)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path17968"
+       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.98821175"
+       inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z "
+       style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       id="path11288"
+       d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z"
+       transform="translate(-2.0000685,1.885788e-7)" />
+    <path
+       sodipodi:nodetypes="cscsc"
+       id="path17974"
+       d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z"
+       style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.436799,0,0,1.5452869,5.8461508,7.0838441)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,3.3076893,12.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11300"
+       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.4620795,0,0,1.0301913,15.30769,12.055896)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient11424);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter11462);enable-background:accumulate"
+       id="path11416"
+       sodipodi:cx="23.25"
+       sodipodi:cy="30.1875"
+       sodipodi:rx="6.8125"
+       sodipodi:ry="2.8125"
+       d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z"
+       transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" />
+    <path
+       style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8706);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L"
+       d="M 40.5625,1 C 38.874477,1 37.314933,1.4226492 36.09375,2.28125 C 34.872565,3.1398509 34,4.5416345 34,6.125 C 33.999998,7.9320376 35.500885,9 37.375,9 C 38.972866,9 40.03125,8.6239064 40.03125,6.9375 C 40.03125,5.8358747 41.03125,5.7736538 41.03125,7 C 41.031252,7.5731772 40.720035,7.6923202 40.46875,8.03125 C 39.556981,9.1888218 39.147246,9.72288 38.8125,10.21875 C 37.953228,11.557311 37,12.936936 37,14.46875 C 36.999998,17.077704 39.59375,16.96875 39.59375,16.96875 C 39.236295,17.077217 38.886105,17.297356 38.5625,17.5625 C 38.550686,17.570277 38.542964,17.585834 38.53125,17.59375 C 38.424354,17.683359 38.318146,17.772605 38.21875,17.875 C 37.480053,18.516861 37,19.445308 37,20.5 C 37,22.432 38.568,24 40.5,24 C 42.432,24 44.000001,22.432 44,20.5 C 44,18.95785 43.010761,17.653479 41.625,17.1875 C 41.444379,17.110901 41.249634,17.062378 41.0625,17 C 41.763982,16.748864 42.068061,15.931257 42.0625,15.1875 C 42.051002,14.139574 42.280169,13.716262 42.375,13.5 C 43.426067,11.600594 44.954699,11.097944 46.125,9.75 C 46.749619,8.8343856 47,7.7477245 47,6.75 C 47.000001,5.1014533 46.28805,3.5482598 45.09375,2.53125 C 43.89945,1.5142402 42.298617,1 40.5625,1 z"
+       id="path3346"
+       sodipodi:nodetypes="csssssccscsscsssccsccssc" />
+    <path
+       style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8717);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L"
+       d="M 40.5625 1.96875 C 39.03732 1.96875 37.680971 2.3732797 36.65625 3.09375 C 35.664894 3.7907611 34.96875 4.9000488 34.96875 6.125 C 34.968749 6.758422 35.192622 7.1443716 35.59375 7.46875 C 35.994878 7.7931284 36.623252 8.03125 37.375 8.03125 C 38.097392 8.03125 38.596706 7.9024002 38.78125 7.78125 C 38.965794 7.6600998 39.0625 7.5766139 39.0625 6.9375 C 39.0625 6.5144976 39.145775 6.1274407 39.375 5.78125 C 39.604225 5.4350593 40.027732 5.1249297 40.53125 5.125 C 41.034768 5.1250703 41.462039 5.4531849 41.6875 5.8125 C 41.912961 6.1718151 42 6.5608281 42 7 C 42.000002 7.4631574 41.827288 7.9211544 41.625 8.1875 C 41.422712 8.453846 41.293456 8.566387 41.25 8.625 C 40.340574 9.779598 39.934939 10.290878 39.625 10.75 C 38.753163 12.108134 37.96875 13.34166 37.96875 14.46875 C 37.968749 15.449931 38.315321 15.62655 38.71875 15.8125 C 39.583542 16.168963 40.115403 16.105798 40.96875 15.84375 C 41.047882 15.684154 41.095517 15.423765 41.09375 15.1875 C 41.08066 13.994488 41.418028 13.209423 41.46875 13.09375 C 41.488628 13.071983 41.509483 13.051128 41.53125 13.03125 C 42.136141 11.938138 42.896246 11.218183 43.59375 10.65625 C 44.265082 10.115402 44.835184 9.717613 45.3125 9.1875 C 45.803013 8.468469 46.03125 7.5845097 46.03125 6.75 C 46.031251 5.3823316 45.435469 4.1044628 44.46875 3.28125 C 43.478484 2.4379857 42.105973 1.96875 40.5625 1.96875 z M 40.5 18 C 39.12 18 37.999999 19.12 38 20.5 C 38 21.88 39.119998 23 40.5 23 C 41.88 23 43.000002 21.88 43 20.5 C 43 19.12 41.879998 17.999999 40.5 18 z "
+       id="path11582" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/dialogs/scalable/warning.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,558 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="warning.svg"
+   inkscape:export-filename="/home/hbons/Bureaublad/warning.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8730">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8732" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8734" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8716">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop8718" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop8720" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8706">
+      <stop
+         style="stop-color:#391f17;stop-opacity:1"
+         offset="0"
+         id="stop8708" />
+      <stop
+         style="stop-color:#841c0e;stop-opacity:1"
+         offset="1"
+         id="stop8710" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11493"
+       inkscape:collect="always">
+      <stop
+         id="stop11495"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop11497"
+         offset="1"
+         style="stop-color:#070808;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11487"
+       inkscape:collect="always">
+      <stop
+         id="stop11489"
+         offset="0"
+         style="stop-color:#538ac5;stop-opacity:1" />
+      <stop
+         id="stop11491"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11474">
+      <stop
+         style="stop-color:#558bc5;stop-opacity:1"
+         offset="0"
+         id="stop11476" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop11478" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11333">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11335" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11337" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11316"
+       inkscape:collect="always">
+      <stop
+         id="stop11318"
+         offset="0"
+         style="stop-color:#edd400;stop-opacity:1" />
+      <stop
+         id="stop11320"
+         offset="1"
+         style="stop-color:#f6c93b;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11304">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11306" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop11261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop11263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11241">
+      <stop
+         style="stop-color:#4f381b;stop-opacity:0.97254902"
+         offset="0"
+         id="stop11243" />
+      <stop
+         style="stop-color:#a87b42;stop-opacity:0.96078432"
+         offset="1"
+         id="stop11245" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient11196">
+      <stop
+         style="stop-color:#555753;stop-opacity:1"
+         offset="0"
+         id="stop11198" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1"
+         offset="1"
+         id="stop11200" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11241"
+       id="linearGradient10406"
+       gradientUnits="userSpaceOnUse"
+       x1="14.365882"
+       y1="19.515574"
+       x2="11.215483"
+       y2="8.2263536" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11493"
+       id="linearGradient11202"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11196"
+       id="linearGradient11206"
+       gradientUnits="userSpaceOnUse"
+       x1="9.7069349"
+       y1="8.5495605"
+       x2="9.9879932"
+       y2="10.59237" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11316"
+       id="radialGradient11271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)"
+       cx="11.873854"
+       cy="12.147273"
+       fx="11.594166"
+       fy="8.8655272"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11310"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11304"
+       id="linearGradient11314"
+       gradientUnits="userSpaceOnUse"
+       x1="8.9530411"
+       y1="6.2636566"
+       x2="10.732871"
+       y2="9.6526775" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11259"
+       id="radialGradient11327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)"
+       cx="11.736404"
+       cy="7.3689327"
+       fx="11.800528"
+       fy="1.1734189"
+       r="9.975256" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11339"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0833276,0,0,1.1666668,-3.9582687,-5.2500011)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11333"
+       id="linearGradient11343"
+       gradientUnits="userSpaceOnUse"
+       x1="14.6875"
+       y1="11.875"
+       x2="20.6875"
+       y2="22.5625"
+       gradientTransform="matrix(1.0833391,0,0,1.1666668,10.041531,-5.2500011)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11487"
+       id="linearGradient11480"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0999932,0,0,1.2,-4.2499165,-5.8999987)" />
+    <filter
+       inkscape:collect="always"
+       id="filter11503"
+       x="-0.11697236"
+       width="1.2339447"
+       y="-0.32830241"
+       height="1.6566048">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.64772565"
+         id="feGaussianBlur11505" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11474"
+       id="linearGradient11507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.1000069,0,0,1.2,48.250086,-5.8999987)"
+       x1="14.728965"
+       y1="15.785595"
+       x2="16.957989"
+       y2="24.104429" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8716"
+       id="radialGradient8722"
+       cx="44.7687"
+       cy="4.7732658"
+       fx="44.7687"
+       fy="4.7732658"
+       r="9.0598059"
+       gradientTransform="matrix(1.7013896,0,0,1.0125342,-31.400301,2.4538538)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8730"
+       id="linearGradient8736"
+       x1="45.837402"
+       y1="21.754553"
+       x2="45.837402"
+       y2="19.126131"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8706"
+       id="radialGradient8738"
+       cx="44.7687"
+       cy="21.608887"
+       fx="44.7687"
+       fy="21.608887"
+       r="9.0598059"
+       gradientTransform="matrix(1.3094421,0,0,0.7792777,-13.85332,2.5000315)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.8284271"
+     inkscape:cx="64.2628"
+     inkscape:cy="40.347011"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fce94f"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     width="48px"
+     height="48px"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid10393"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)"
+       d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z"
+       sodipodi:ry="2.3675451"
+       sodipodi:rx="6.6449099"
+       sodipodi:cy="10.457643"
+       sodipodi:cx="10.748654"
+       id="path17958"
+       style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17960"
+       style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11247"
+       style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path11257"
+       style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11329"
+       d="M 21.499929,17.500003 C 21.499929,21.364001 18.587949,24.500001 14.999965,24.500001 C 11.411983,24.500001 8.4999987,21.364001 8.4999987,17.500003 C 8.4999987,13.636 11.411983,10.5 14.999965,10.5 C 18.587949,10.5 21.499929,13.636 21.499929,17.500003 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)"
+       d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z"
+       sodipodi:ry="9.975256"
+       sodipodi:rx="9.975256"
+       sodipodi:cy="10.983024"
+       sodipodi:cx="11.806158"
+       id="path17964"
+       style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path17966"
+       d="M 20.499931,17.500002 C 20.499931,20.812 18.03595,23.5 14.999965,23.5 C 11.963984,23.5 9.499999,20.812 9.499999,17.500002 C 9.499999,14.188 11.963984,11.5 14.999965,11.5 C 18.03595,11.5 20.499931,14.188 20.499931,17.500002 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.9241248,0,0,1.5452869,-12.384324,4.083844)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path17968"
+       style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5298496,-13.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11325"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5298496,-12.968448)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17976"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-13.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path11323"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:open="true"
+       sodipodi:end="5.6135639"
+       sodipodi:start="3.5782199"
+       transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)"
+       d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499"
+       sodipodi:ry="1.7410715"
+       sodipodi:rx="1.2276785"
+       sodipodi:cy="9.2232141"
+       sodipodi:cx="8.3258924"
+       id="path17978"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11482"
+       d="M 23.49993,17.500002 C 23.49993,20.812 25.963942,23.5 28.999965,23.5 C 32.035984,23.5 34.499999,20.812 34.499999,17.500002 C 34.499999,14.188 32.035984,11.5 28.999965,11.5 C 25.963942,11.5 23.49993,14.188 23.49993,17.500002 z"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       transform="matrix(2.9241927,0,0,1.5452869,-0.3849832,4.0838437)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11204"
+       style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.9494053,0,0,1.0301913,-2.922785,9.0558958)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11300"
+       style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       transform="matrix(1.9494735,0,0,1.0301913,9.0765518,9.0558958)"
+       d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z"
+       sodipodi:ry="1.9413869"
+       sodipodi:rx="1.0259361"
+       sodipodi:cy="9.6526775"
+       sodipodi:cx="9.7069349"
+       id="path11312"
+       style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
+       sodipodi:type="arc" />
+    <path
+       id="path11341"
+       d="M 35.5,17.500003 C 35.5,21.364001 32.587988,24.500001 28.999966,24.500001 C 25.411946,24.500001 22.49993,21.364001 22.49993,17.500003 C 22.49993,13.636 25.411946,10.5 28.999966,10.5 C 32.587988,10.5 35.5,13.636 35.5,17.500003 z"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8714"
+       sodipodi:cx="44.7687"
+       sodipodi:cy="16.003418"
+       sodipodi:rx="9.0598059"
+       sodipodi:ry="5.3916893"
+       d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z"
+       transform="matrix(1.0485875,0,0,1.2982945,-25.443899,12.222851)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#radialGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path7934"
+       sodipodi:cx="44.7687"
+       sodipodi:cy="16.003418"
+       sodipodi:rx="9.0598059"
+       sodipodi:ry="5.3916893"
+       d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z"
+       transform="matrix(0.93821,0,0,1.1128238,-20.50244,15.191015)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8736);stroke-width:0.80703287999999984;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8728"
+       sodipodi:cx="44.7687"
+       sodipodi:cy="16.003418"
+       sodipodi:rx="9.0598059"
+       sodipodi:ry="5.3916893"
+       d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z"
+       transform="matrix(1.1037765,0,0,1.3910297,-27.91464,10.738771)" />
+  </g>
+</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/aol-client.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg1307"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/emblems/16/scalable"
-   sodipodi:docname="aol-client.svg"
-   inkscape:export-filename="/home/hbons/Desktop/aol-client.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs1309" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="33.645576"
-     inkscape:cx="10.549484"
-     inkscape:cy="6.7812522"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     fill="#204a87"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:grid-points="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="841"
-     inkscape:window-x="6"
-     inkscape:window-y="0" />
-  <metadata
-     id="metadata1312">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       style="fill:#204a87;fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 2 1 L 2 15 L 14 8 L 2 1 z M 6 4 C 8.1805207 4 10 5.7762679 10 8 C 10 10.223732 8.1805205 12 6 12 C 3.8194795 11.999999 2.0312501 10.223732 2.03125 8 C 2.03125 5.7762679 3.8194791 4.0000001 6 4 z M 6 5.125 C 4.3921597 5.125 3.1249999 6.4360487 3.125 8 C 3.125 9.5639514 4.3921593 10.84375 6 10.84375 C 7.6078403 10.84375 8.875 9.5639514 8.875 8 C 8.875 6.4360487 7.6078401 5.1249999 6 5.125 z "
-       id="rect2229" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/birthday.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,622 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg8140"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docname="birthday.svg"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs8142">
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4232"
-       id="linearGradient3007"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.7499999,14.982194,1.1250003)"
-       x1="7.5089025"
-       y1="2.218369"
-       x2="7.5089025"
-       y2="4.8258252" />
-    <linearGradient
-       id="linearGradient4380"
-       inkscape:collect="always">
-      <stop
-         id="stop4382"
-         offset="0"
-         style="stop-color:#fcaf3e;stop-opacity:1;" />
-      <stop
-         id="stop4384"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4380"
-       id="linearGradient3005"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.7499999,-2.9821948,0.3750003)"
-       x1="15.491097"
-       y1="4.2733984"
-       x2="15.491097"
-       y2="2.7707961" />
-    <linearGradient
-       id="linearGradient4142"
-       inkscape:collect="always">
-      <stop
-         id="stop4144"
-         offset="0"
-         style="stop-color:#5c3566;stop-opacity:1;" />
-      <stop
-         id="stop4146"
-         offset="1"
-         style="stop-color:#9253a2;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4142"
-       id="linearGradient3029"
-       gradientUnits="userSpaceOnUse"
-       x1="15.5"
-       y1="10.635184"
-       x2="15.5"
-       y2="7.1438446"
-       gradientTransform="matrix(1,0,0,0.8000001,-2.9821944,0.2999994)" />
-    <linearGradient
-       id="linearGradient4150"
-       inkscape:collect="always">
-      <stop
-         id="stop4152"
-         offset="0"
-         style="stop-color:#3c7704;stop-opacity:1" />
-      <stop
-         id="stop4154"
-         offset="1"
-         style="stop-color:#59b106;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4150"
-       id="linearGradient3034"
-       gradientUnits="userSpaceOnUse"
-       x1="7.5"
-       y1="9.4861355"
-       x2="7.5"
-       y2="7.0554562"
-       gradientTransform="matrix(1,0,0,0.8000001,-3,0.2999994)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4232"
-       id="linearGradient3048"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.7499999,-3.0178049,0.3750005)"
-       x1="7.5089025"
-       y1="2.218369"
-       x2="7.5089025"
-       y2="4.8258252" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4374">
-      <stop
-         style="stop-color:#fcaf3e;stop-opacity:1;"
-         offset="0"
-         id="stop4376" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1"
-         offset="1"
-         id="stop4378" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4374"
-       id="linearGradient3046"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.463041,0,0,1.1368063,-10.850902,0.678176)"
-       x1="6.3242626"
-       y1="2.3645318"
-       x2="6.3242626"
-       y2="1.6300712" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4232">
-      <stop
-         style="stop-color:#f57900;stop-opacity:1;"
-         offset="0"
-         id="stop4234" />
-      <stop
-         style="stop-color:#b25800;stop-opacity:1"
-         offset="1"
-         id="stop4236" />
-    </linearGradient>
-    <linearGradient
-       y2="4.8258252"
-       x2="7.5089025"
-       y1="2.218369"
-       x1="7.5089025"
-       gradientTransform="matrix(1,0,0,0.7499999,1.0000002,-0.6249996)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient4308"
-       xlink:href="#linearGradient4232"
-       inkscape:collect="always" />
-    <linearGradient
-       id="linearGradient4368"
-       inkscape:collect="always">
-      <stop
-         id="stop4370"
-         offset="0"
-         style="stop-color:#fcaf3e;stop-opacity:1;" />
-      <stop
-         id="stop4372"
-         offset="1"
-         style="stop-color:#ffffff;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       y2="1.6300712"
-       x2="6.3242626"
-       y1="2.3645318"
-       x1="6.3242626"
-       gradientTransform="matrix(2.463041,0,0,1.1368063,-6.8330964,-0.3218242)"
-       gradientUnits="userSpaceOnUse"
-       id="linearGradient4306"
-       xlink:href="#linearGradient4368"
-       inkscape:collect="always" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3425">
-      <stop
-         style="stop-color:#204a87;stop-opacity:1;"
-         offset="0"
-         id="stop3427" />
-      <stop
-         style="stop-color:#2e69c2;stop-opacity:1"
-         offset="1"
-         id="stop3429" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3425"
-       id="linearGradient3431"
-       x1="11.5"
-       y1="9.961833"
-       x2="11.241222"
-       y2="6.6366434"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="translate(-2.9999997,-2.0000001)" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4388">
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:1;"
-         offset="0"
-         id="stop4390" />
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:0;"
-         offset="1"
-         id="stop4392" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4388"
-       id="linearGradient4394"
-       x1="2.9999998"
-       y1="11.5"
-       x2="21"
-       y2="11.5"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4158">
-      <stop
-         style="stop-color:#9a9c98;stop-opacity:1"
-         offset="0"
-         id="stop4160" />
-      <stop
-         style="stop-color:#666763;stop-opacity:1"
-         offset="1"
-         id="stop4162" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4158"
-       id="linearGradient4164"
-       x1="16.274719"
-       y1="9.7764273"
-       x2="17.448"
-       y2="13.753902"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.7894737,0,0,0.6666667,-1.4736843,1.8333322)" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4048">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop4050" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop4052" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4048"
-       id="linearGradient4054"
-       x1="-10.516191"
-       y1="10.124428"
-       x2="36.795452"
-       y2="19.026175"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3941">
-      <stop
-         style="stop-color:#af6d02;stop-opacity:1"
-         offset="0"
-         id="stop3943" />
-      <stop
-         style="stop-color:#5f3b00;stop-opacity:1"
-         offset="1"
-         id="stop3945" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3941"
-       id="linearGradient3947"
-       x1="15.917198"
-       y1="16.659033"
-       x2="16.463091"
-       y2="20.489477"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4003">
-      <stop
-         style="stop-color:#c17d11;stop-opacity:1"
-         offset="0"
-         id="stop4005" />
-      <stop
-         style="stop-color:#e9b96e;stop-opacity:1"
-         offset="1"
-         id="stop4007" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4003"
-       id="linearGradient4009"
-       x1="16.815628"
-       y1="16.941942"
-       x2="10.718681"
-       y2="16.941942"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" />
-    <filter
-       inkscape:collect="always"
-       id="filter4540"
-       x="-0.087152615"
-       width="1.1743052"
-       y="-0.21174857"
-       height="1.4234971">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="0.37221428"
-         id="feGaussianBlur4542" />
-    </filter>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.197802"
-     inkscape:cx="8"
-     inkscape:cy="8"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="641"
-     inkscape:window-height="669"
-     inkscape:window-x="0"
-     inkscape:window-y="22">
-    <inkscape:grid
-       type="xygrid"
-       id="grid8150" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata8145">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.47499999999999998;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4540);enable-background:accumulate"
-       id="path4466"
-       sodipodi:cx="12.03125"
-       sodipodi:cy="4.265625"
-       sodipodi:rx="5.125"
-       sodipodi:ry="2.109375"
-       d="M 17.15625,4.265625 A 5.125,2.109375 0 1 1 6.90625,4.265625 A 5.125,2.109375 0 1 1 17.15625,4.265625 z"
-       transform="matrix(1.3658536,0,0,1.1656218,-8.4329267,-2.4721054)" />
-    <path
-       style="fill:url(#linearGradient4009);fill-opacity:1;stroke:url(#linearGradient3947);stroke-width:1.00000072000000007;stroke-miterlimit:4;stroke-opacity:1"
-       d="m 0.50000029,9.8437508 0,3.5562497 C 0.50000029,14.5592 3.8600006,15.5 8.0000002,15.5 12.14,15.5 15.5,14.559199 15.5,13.4 l 0,-3.5562497 z"
-       id="path3936"
-       sodipodi:nodetypes="ccsccc" />
-    <rect
-       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect4624"
-       width="2"
-       height="3"
-       x="3"
-       y="11" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0054175"
-       inkscape:original="M 2.5 11.5 L 2.5 18.5 C 2.5 20.155999 6.7560004 21.5 12 21.5 C 17.243999 21.5 21.5 20.155998 21.5 18.5 L 21.5 11.5 L 2.5 11.5 z "
-       style="fill:none;stroke:url(#linearGradient4054);stroke-width:1.44648218000000006;stroke-miterlimit:4;stroke-opacity:1"
-       id="path3983"
-       d="m 3.5,12.5 0,6 c 0,-0.016662 0.0034472,0.121066 0.34375,0.375 0.3403028,0.253934 0.9602178,0.531845 1.75,0.78125 C 7.1733144,20.15506 9.4638941,20.5 12,20.5 c 2.536106,0 4.826685,-0.34494 6.40625,-0.84375 0.789782,-0.249405 1.409697,-0.527316 1.75,-0.78125 C 20.496553,18.621066 20.5,18.483337 20.5,18.5 l 0,-6 z"
-       transform="matrix(0.7647058,0,0,0.6249999,-1.1764702,1.6875019)" />
-    <rect
-       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect4056"
-       width="1"
-       height="3"
-       x="6"
-       y="11"
-       rx="0.5"
-       ry="0.5" />
-    <rect
-       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect4078"
-       width="1"
-       height="3"
-       x="3"
-       y="10"
-       rx="0.5"
-       ry="0.5" />
-    <rect
-       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect4131"
-       width="1"
-       height="3"
-       x="12"
-       y="10"
-       rx="0.5"
-       ry="0.5" />
-    <rect
-       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect2655"
-       width="2"
-       height="3"
-       x="10"
-       y="11" />
-    <rect
-       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect2664"
-       width="2"
-       height="2"
-       x="13"
-       y="11" />
-    <rect
-       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect2646"
-       width="2"
-       height="3"
-       x="7"
-       y="12" />
-    <rect
-       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect4140"
-       width="1"
-       height="3"
-       x="8"
-       y="10"
-       rx="0.5"
-       ry="0.5" />
-    <path
-       style="fill:#eeeeec;fill-opacity:1;stroke:url(#linearGradient4164);stroke-width:1.00000059999999991;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 15.500001,9.5000002 C 15.500001,10.604 12.139999,11.5 8,11.5 3.8600003,11.5 0.5000003,10.604 0.5000003,9.5000004 0.5000003,8.3960006 3.8600004,7.5000001 8,7.5000001 c 4.140001,0 7.500001,0.89600032 7.500001,2.0000001 z"
-       id="path1307" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0051613"
-       inkscape:original="M 12 8.5 C 6.7560004 8.5 2.5000001 9.844 2.5 11.5 C 2.5 13.155999 6.7560004 14.5 12 14.5 C 17.243999 14.5 21.5 13.155999 21.5 11.5 C 21.5 9.844 17.244 8.5000008 12 8.5 z "
-       xlink:href="#path4198"
-       style="fill:url(#linearGradient4394);fill-opacity:1;stroke:#ffffff;stroke-width:1.61721622999999992;stroke-miterlimit:4;stroke-opacity:1"
-       id="path4200"
-       d="M 12,9.5 C 9.4638721,9.5 7.1733501,9.8449289 5.59375,10.34375 4.80395,10.593161 4.1840886,10.87104 3.84375,11.125 3.5034114,11.37896 3.5,11.516552 3.5,11.5 c 0,-0.016553 0.0034113,0.12104 0.34375,0.375 0.3403387,0.25396 0.9601999,0.531839 1.75,0.78125 C 7.1733501,13.155071 9.4638722,13.5 12,13.5 c 2.536128,0 4.82665,-0.344929 6.40625,-0.84375 0.7898,-0.249411 1.409661,-0.52729 1.75,-0.78125 C 20.496589,11.62104 20.5,11.483447 20.5,11.5 c 0,0.016552 -0.003411,-0.12104 -0.34375,-0.375 -0.340339,-0.25396 -0.9602,-0.53184 -1.75,-0.78125 C 16.82665,9.844929 14.536128,9.5000004 12,9.5 z"
-       transform="matrix(0.7647058,0,0,0.4999999,-1.1764702,3.7500016)" />
-    <rect
-       style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3431);stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3304"
-       width="2"
-       height="4.999999"
-       x="7.5"
-       y="4.500001"
-       rx="1"
-       ry="1" />
-    <rect
-       style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3308"
-       width="1"
-       height="1"
-       x="8"
-       y="6" />
-    <rect
-       style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3330"
-       width="1"
-       height="1"
-       x="8"
-       y="8" />
-    <rect
-       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3608"
-       width="1"
-       height="1"
-       x="7"
-       y="6" />
-    <rect
-       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3617"
-       width="1"
-       height="1"
-       x="7"
-       y="8" />
-    <rect
-       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3626"
-       width="1"
-       height="1"
-       x="9"
-       y="8" />
-    <rect
-       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3635"
-       width="1"
-       height="1"
-       x="9"
-       y="6" />
-    <path
-       style="fill:url(#linearGradient4306);fill-opacity:1;stroke:url(#linearGradient4308);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1"
-       d="m 8.9999763,3.4999993 c -0.827986,0 -1.499975,-0.6719998 -1.499975,-1.4999993 0,-0.82799966 0.671989,-1.4999994 1.4999755,-1.4999994 0.5378079,0 0.8279864,2.9999986 0,2.9999987 z"
-       id="path4284"
-       sodipodi:nodetypes="csss" />
-    <path
-       style="fill:url(#linearGradient3046);fill-opacity:1;stroke:url(#linearGradient3048);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 4.9821711,4.4999994 C 4.1541851,4.4999994 3.4821961,3.8279997 3.4821961,3.0000001 C 3.4821961,2.1720004 4.1541851,1.5000007 4.9821711,1.5000007 C 5.5199791,1.5000007 5.8101571,4.4999993 4.9821711,4.4999994 L 4.9821711,4.4999994 z"
-       id="path2289"
-       sodipodi:nodetypes="csss" />
-    <rect
-       style="fill:#6ec31b;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3034);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3469"
-       width="2"
-       height="4"
-       x="3.5"
-       y="5.5"
-       rx="1"
-       ry="1" />
-    <rect
-       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3471"
-       width="1"
-       height="1"
-       x="4"
-       y="5.9999995" />
-    <rect
-       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3473"
-       width="1"
-       height="1"
-       x="4"
-       y="7.9999995" />
-    <rect
-       style="fill:#ad7fa8;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3029);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3533"
-       width="2"
-       height="4"
-       x="11.517806"
-       y="5.5"
-       rx="1"
-       ry="1" />
-    <rect
-       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3535"
-       width="1"
-       height="1"
-       x="12.017806"
-       y="5.9999995" />
-    <rect
-       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3537"
-       width="1"
-       height="1"
-       x="12.017806"
-       y="7.9999995" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3559"
-       width="1"
-       height="1"
-       x="3"
-       y="6" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3581"
-       width="1"
-       height="1"
-       x="3"
-       y="8" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3590"
-       width="1"
-       height="1"
-       x="5"
-       y="8" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3599"
-       width="1"
-       height="1"
-       x="5"
-       y="6" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3644"
-       width="1"
-       height="1"
-       x="11.017806"
-       y="6" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3653"
-       width="1"
-       height="1"
-       x="13.017806"
-       y="6" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3662"
-       width="1"
-       height="1"
-       x="13.017806"
-       y="8" />
-    <rect
-       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
-       id="rect3671"
-       width="1"
-       height="1"
-       x="11.017806"
-       y="8" />
-    <path
-       style="fill:url(#linearGradient3005);fill-opacity:1;stroke:url(#linearGradient3007);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.999976,4.4999993 C 12.17199,4.4999993 11.500001,3.8279995 11.500001,3 C 11.500001,2.1720003 12.17199,1.5000006 12.999977,1.5000006 C 13.537784,1.5000006 13.827963,4.4999992 12.999977,4.4999993 L 12.999976,4.4999993 z"
-       id="path4348"
-       sodipodi:nodetypes="csss" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/blocked.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,139 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg4220"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/toolbars/16/scalable"
-   sodipodi:docname="blocked.svg"
-   inkscape:export-filename="/home/hbons/Desktop/block.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4222">
-    <linearGradient
-       id="linearGradient2241"
-       inkscape:collect="always">
-      <stop
-         id="stop2243"
-         offset="0"
-         style="stop-color:#eeeeec;stop-opacity:1;" />
-      <stop
-         id="stop2245"
-         offset="1"
-         style="stop-color:#eeeeec;stop-opacity:0;" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2241"
-       id="linearGradient2826"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.002185,0,0,0.866653,-24.02518,-2.399763)"
-       x1="19.003813"
-       y1="9.3585329"
-       x2="15.520383"
-       y2="14.406374" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="25.498579"
-     inkscape:cx="19.947241"
-     inkscape:cy="9.0174755"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:object-points="false"
-     inkscape:grid-points="true"
-     inkscape:window-width="1440"
-     inkscape:window-height="849"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     showguides="true"
-     inkscape:guide-bbox="true" />
-  <metadata
-     id="metadata4225">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <rect
-       style="fill:#c17d11;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999875;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect1324"
-       width="11.000001"
-       height="14.999996"
-       x="-13.5"
-       y="0.49999937"
-       ry="0"
-       transform="scale(-1,1)" />
-    <rect
-       style="opacity:0.3;fill:url(#linearGradient2826);fill-opacity:1;stroke:white;stroke-width:0.99999827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2211"
-       width="9.0000048"
-       height="12.999996"
-       x="-12.500007"
-       y="1.4999992"
-       ry="0"
-       transform="scale(-1,1)" />
-    <path
-       sodipodi:type="arc"
-       style="fill:#fecb81;fill-opacity:1;stroke:none;stroke-width:2.03035927;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2215"
-       sodipodi:cx="17.607706"
-       sodipodi:cy="10.679387"
-       sodipodi:rx="0.80383009"
-       sodipodi:ry="0.80383009"
-       d="M 18.411536 10.679387 A 0.80383009 0.80383009 0 1 1  16.803876,10.679387 A 0.80383009 0.80383009 0 1 1  18.411536 10.679387 z"
-       transform="matrix(-1.244046,0,0,1.245728,26.90479,-6.302258)" />
-    <rect
-       style="opacity:1;fill:#ce9f52;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2878"
-       width="15.000005"
-       height="2.0000005"
-       x="0.49999997"
-       y="9.5" />
-    <rect
-       style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2880"
-       width="2.0000017"
-       height="3.9999959"
-       x="1.5"
-       y="8.500001"
-       rx="0.90201104"
-       ry="0.90201104" />
-    <rect
-       style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2884"
-       width="2.0000017"
-       height="3.9999959"
-       x="12.499999"
-       y="8.500001"
-       rx="0.90201104"
-       ry="0.90201104" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/bot.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,191 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
-   sodipodi:docname="bot.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/bot.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2434">
-      <stop
-         style="stop-color:#3465a4;stop-opacity:1;"
-         offset="0"
-         id="stop2436" />
-      <stop
-         style="stop-color:#3465a4;stop-opacity:0;"
-         offset="1"
-         id="stop2438" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2381">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop2383" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop2385" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2381"
-       id="radialGradient2387"
-       cx="8"
-       cy="6.3252358"
-       fx="8"
-       fy="6.3252358"
-       r="5.5"
-       gradientTransform="matrix(1,0,0,0.727273,-2.499086e-17,2.590909)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2434"
-       id="linearGradient2440"
-       x1="8.0002842"
-       y1="7.9528065"
-       x2="8.0002842"
-       y2="3.994154"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.000231,0,0,1.003358,-2.099138e-3,-2.699002e-2)" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="24.007726"
-     inkscape:cx="15.409556"
-     inkscape:cy="3.028583"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     showgrid="true"
-     fill="#3465a4"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21">
-    <sodipodi:guide
-       orientation="vertical"
-       position="-845.97209"
-       id="guide1317" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8.0273697,2.4999816 C 11.768865,2.4999816 13.504889,4.6239578 13.504889,6.0188482 L 13.504889,10.982138 C 13.504889,12.377028 12.554059,13.49999 11.372982,13.49999 L 4.6301353,13.49999 C 3.4490585,13.49999 2.4982278,12.377028 2.4982278,10.982138 L 2.4982278,6.0188482 C 2.4982278,4.6239578 4.3150401,2.4999816 8.0273697,2.4999816 z "
-       id="rect2337"
-       sodipodi:nodetypes="cccccccz" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0049763"
-       inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z "
-       xlink:href="#rect2337"
-       style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2364"
-       inkscape:href="#rect2337"
-       d="M 8.03125,3.5 C 4.6641987,3.5 3.46875,5.5073994 3.46875,6.03125 L 3.46875,10.96875 C 3.46875,11.900898 4.0706163,12.5 4.625,12.5 L 11.4375,12.5 C 11.991885,12.5 12.5625,11.915908 12.5625,10.96875 L 12.5625,6.03125 C 12.5625,5.478244 11.430731,3.5 8.03125,3.5 z " />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0049763"
-       inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z "
-       xlink:href="#rect2337"
-       style="opacity:0.5;fill:url(#radialGradient2387);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2379"
-       inkscape:href="#rect2337"
-       d="M 8.03125,4.5 C 4.6641988,4.5 3.46875,6.5073996 3.46875,7.03125 L 3.46875,11.96875 C 3.46875,12.900898 4.0706163,13.5 4.625,13.5 L 11.4375,13.5 C 11.991885,13.5 12.5625,12.915908 12.5625,11.96875 L 12.5625,7.03125 C 12.5625,6.478244 11.430731,4.5000001 8.03125,4.5 z "
-       transform="matrix(0.909091,0,0,0.875,0.727273,0.187503)" />
-    <rect
-       style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2343"
-       width="4"
-       height="1"
-       x="6"
-       y="11"
-       rx="0"
-       ry="1" />
-    <rect
-       style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2397"
-       width="1.9817986"
-       height="4.9895701"
-       x="0.50910079"
-       y="6.5103664"
-       ry="0.9731853"
-       rx="0.97318554" />
-    <rect
-       style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999923;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2399"
-       width="1.9878451"
-       height="4.9889064"
-       x="13.510628"
-       y="6.5102949"
-       ry="0.97318453"
-       rx="0.97318554" />
-    <rect
-       style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2407"
-       width="1"
-       height="1"
-       x="5"
-       y="10"
-       rx="0"
-       ry="1" />
-    <rect
-       style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2409"
-       width="1"
-       height="1"
-       x="10"
-       y="10"
-       rx="0"
-       ry="1" />
-    <rect
-       style="opacity:1;fill:url(#linearGradient2440);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2424"
-       width="6.9998379"
-       height="2.997915"
-       x="4.5001144"
-       y="5.501677"
-       ry="0.99999988"
-       rx="0.99999964" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/external.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,153 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg7380"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="external.svg"
-   inkscape:export-filename="/home/hbons/Desktop/external.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs7382">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient25546">
-      <stop
-         style="stop-color:white;stop-opacity:1;"
-         offset="0"
-         id="stop25548" />
-      <stop
-         style="stop-color:white;stop-opacity:0;"
-         offset="1"
-         id="stop25550" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient25546"
-       id="radialGradient25554"
-       cx="7.8836637"
-       cy="1.5104795"
-       fx="7.8836637"
-       fy="1.5104795"
-       r="8.4883642"
-       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient25546"
-       id="radialGradient25568"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
-       cx="7.8836741"
-       cy="0.14505707"
-       fx="7.8836741"
-       fy="0.14505707"
-       r="8.4883642" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient25546"
-       id="radialGradient25572"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
-       cx="7.8836637"
-       cy="1.5104795"
-       fx="7.8836637"
-       fy="1.5104795"
-       r="8.4883642" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.197802"
-     inkscape:cx="15.928713"
-     inkscape:cy="7.0990099"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     width="24px"
-     height="24px"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="872"
-     inkscape:window-height="626"
-     inkscape:window-x="6"
-     inkscape:window-y="94" />
-  <metadata
-     id="metadata7385">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1.0481478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path7388"
-       sodipodi:cx="7.8836637"
-       sodipodi:cy="7.8460393"
-       sodipodi:rx="7.8836637"
-       sodipodi:ry="7.838614"
-       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
-       transform="matrix(0.951334,0,0,0.956802,0.5,0.492896)" />
-    <path
-       style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 10.90625,2 C 9.7428141,2 8.7812499,2.8959991 8.78125,4 C 8.78125,5.1040008 9.7428141,5.9999999 10.90625,6 C 12.069686,6 13,5.1040007 13,4 C 13,2.8959992 12.069686,2 10.90625,2 z M 4,3 C 2.8960002,3 2,3.8959993 2,5 C 2,5.4301796 2.1436219,5.8299355 2.375,6.15625 C 1.573931,6.5477359 0.99999996,7.6683 1,9 C 1,10.656 1.8960002,12 3,12 C 4.1039998,12 5.0000002,10.655999 5,9 C 5,8.2118079 4.7692756,7.5043072 4.4375,6.96875 C 5.3340078,6.771061 6.0000002,5.9556507 6,5 C 6,3.8959992 5.1039998,3 4,3 z M 11.5,6 C 9.568,6 8.0000001,7.1200004 8,8.5 C 8,9.5086172 8.8261102,10.38618 10.03125,10.78125 C 10.116966,12.025862 10.730396,13 11.5,13 C 12.269604,13 12.883034,12.025862 12.96875,10.78125 C 14.17389,10.38618 15,9.5086171 15,8.5 C 15,7.1200006 13.432,6 11.5,6 z "
-       id="path8277" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#radialGradient25554);fill-opacity:1;stroke:#eeeeec;stroke-width:1.20940173;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path8275"
-       sodipodi:cx="7.8836637"
-       sodipodi:cy="7.8460393"
-       sodipodi:rx="7.8836637"
-       sodipodi:ry="7.838614"
-       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
-       transform="matrix(0.824489,0,0,0.829228,1.5,1.493846)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.2544643;fill:url(#radialGradient25568);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path25566"
-       sodipodi:cx="7.8836637"
-       sodipodi:cy="7.8460393"
-       sodipodi:rx="7.8836637"
-       sodipodi:ry="7.838614"
-       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
-       transform="matrix(0.443956,0,0,0.829228,4.5,1.493846)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.25892855;fill:url(#radialGradient25572);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path25570"
-       sodipodi:cx="7.8836637"
-       sodipodi:cy="7.8460393"
-       sodipodi:rx="7.8836637"
-       sodipodi:ry="7.838614"
-       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
-       transform="matrix(0,0.443956,-0.829228,0,14.50615,4.5)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/female.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,113 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg1307"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh"
-   sodipodi:docname="female.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   version="1.0"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs1309">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2206">
-      <stop
-         style="stop-color:#c372cf;stop-opacity:1;"
-         offset="0"
-         id="stop2208" />
-      <stop
-         style="stop-color:#c372cf;stop-opacity:0;"
-         offset="1"
-         id="stop2210" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2206"
-       id="linearGradient2212"
-       x1="8.7527227"
-       y1="8.5870285"
-       x2="8.7527227"
-       y2="-0.61677557"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="44.395605"
-     inkscape:cx="15.206295"
-     inkscape:cy="6.2089057"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     fill="#729fcf"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21"
-     showguides="true"
-     inkscape:guide-bbox="true" />
-  <metadata
-     id="metadata1312">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1305"
-       sodipodi:cx="5.0230198"
-       sodipodi:cy="5.3570547"
-       sodipodi:rx="3.3111386"
-       sodipodi:ry="2.6917078"
-       d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417"
-       sodipodi:start="1.5049493"
-       sodipodi:end="1.5091025"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1307"
-       sodipodi:cx="2.8944306"
-       sodipodi:cy="2.8680694"
-       sodipodi:rx="1.4303218"
-       sodipodi:ry="1.4190594"
-       d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291"
-       sodipodi:start="1.5049493"
-       sodipodi:end="1.5091025"
-       sodipodi:open="true" />
-    <path
-       style="opacity:1;fill:url(#linearGradient2212);fill-opacity:1.0;stroke:#c7349f;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 8.03125 1.5 C 6.0362037 1.7252787 4.4999999 3.4448511 4.5 5.5 C 4.5 7.3629757 5.7751975 8.9308504 7.5 9.375 L 7.5 10.5 L 5.5 10.5 L 5.5 12.5 L 7.5 12.5 L 7.5 14.5 L 9.5 14.5 L 9.5 12.5 L 11.5 12.5 L 11.5 10.5 L 9.5 10.5 L 9.5 9.375 C 11.224803 8.9308505 12.5 7.3629757 12.5 5.5 C 12.5 3.2920288 10.707789 1.5 8.5 1.5 C 8.3965099 1.5 8.2890204 1.4922668 8.1875 1.5 C 8.1391192 1.5036853 8.0791311 1.4945933 8.03125 1.5 z M 8.34375 3.5 C 8.3943599 3.4961452 8.4484081 3.5 8.5 3.5 C 9.6006259 3.4999999 10.5 4.3993736 10.5 5.5 C 10.5 6.6006265 9.6006264 7.5 8.5 7.5 C 7.3993732 7.5000001 6.5 6.6006264 6.5 5.5 C 6.5 4.4509656 7.3146811 3.5783814 8.34375 3.5 z "
-       id="path1313" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/free-for-chat.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,192 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable"
-   sodipodi:docname="free-for-chat.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/toolbars/16/emote-select.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3104">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3106" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3108" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3104"
-       id="radialGradient3114"
-       cx="8.0159302"
-       cy="14.49998"
-       fx="8.0159302"
-       fy="14.49998"
-       r="9.975256"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="36.388908"
-     inkscape:cx="15.503334"
-     inkscape:cy="8.5115617"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#2e3436"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="47"
-     showguides="true"
-     inkscape:guide-bbox="true" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(1.203929,0,0,0.844757,-4.940617,5.165834)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#f57900;stroke-width:1.33385623;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1307"
-       sodipodi:cx="11.806158"
-       sodipodi:cy="10.983024"
-       sodipodi:rx="9.975256"
-       sodipodi:ry="9.975256"
-       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
-       transform="matrix(0.751566,0,0,0.751566,-0.873654,-0.255014)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.79545456;fill:url(#radialGradient3114);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3102"
-       sodipodi:cx="11.806158"
-       sodipodi:cy="10.983024"
-       sodipodi:rx="9.975256"
-       sodipodi:ry="9.975256"
-       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
-       transform="matrix(0.601488,0,0,0.601488,0.898734,1.393846)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.7;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.53516853;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2184"
-       sodipodi:cx="11.806158"
-       sodipodi:cy="10.983024"
-       sodipodi:rx="9.975256"
-       sodipodi:ry="9.975256"
-       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
-       transform="matrix(0.651393,0,0,0.651393,0.308855,0.845039)" />
-    <path
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 11.991472,9 C 11.581026,10.712824 9.995676,12.047691 7.997585,12 C 5.999494,11.952309 4.4416249,10.740305 4.0311784,9.0274809 C 4.7686393,10.13659 6.5310171,10.513632 7.997585,10.513632 C 9.464152,10.513633 11.254011,10.109109 11.991472,9 z "
-       id="path2186"
-       sodipodi:nodetypes="czcsc"
-       transform="matrix(1,0,0,1.332783,0,-2.995046)" />
-    <rect
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2243"
-       width="1"
-       height="3"
-       x="6"
-       y="5"
-       ry="0.5" />
-    <rect
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2246"
-       width="1"
-       height="3"
-       x="9"
-       y="5"
-       ry="0.5"
-       rx="0.5" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#f57900;stroke-width:0.92844784;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5203"
-       sodipodi:cx="0.90686977"
-       sodipodi:cy="4.6503878"
-       sodipodi:rx="2.2534339"
-       sodipodi:ry="2.3908384"
-       d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1  -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1  3.1603037 4.6503878 z"
-       transform="matrix(1.109418,0,0,1.045658,11.9939,-1.862717)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.7;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1.54741251;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path6090"
-       sodipodi:cx="0.90686977"
-       sodipodi:cy="4.6503878"
-       sodipodi:rx="2.2534339"
-       sodipodi:ry="2.3908384"
-       d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1  -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1  3.1603037 4.6503878 z"
-       transform="matrix(0.665651,0,0,0.627395,12.39634,8.236986e-2)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/game.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,146 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable"
-   sodipodi:docname="game.svg"
-   inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/emblems/game.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2264">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop2266" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop2268" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2264"
-       id="linearGradient2270"
-       x1="8"
-       y1="3.5630622"
-       x2="8"
-       y2="11.671161"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="39.000665"
-     inkscape:cx="14.206455"
-     inkscape:cy="7.7355854"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     showgrid="true"
-     fill="#eeeeec"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="47">
-    <sodipodi:guide
-       orientation="vertical"
-       position="-845.97209"
-       id="guide1317" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       style="fill:#444643;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 3.9835017,1.4980972 L 11.999829,1.4980972 C 13.394769,1.4980972 14.517772,2.6210999 14.517772,4.0160406 L 14.517772,11.982734 C 14.517772,13.377675 13.394769,14.500678 11.999829,14.500678 L 3.9835017,14.500678 C 2.588561,14.500678 1.4655583,13.377675 1.4655583,11.982734 L 1.4655583,4.0160406 C 1.4655583,2.6210999 2.588561,1.4980972 3.9835017,1.4980972 z "
-       id="path2254" />
-    <path
-       style="fill:#f13d3d;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 4.0064655,1.4999056 L 11.99231,1.4999056 C 13.381945,1.4999056 14.500677,2.6226961 14.500677,4.0173732 L 14.500677,11.982561 C 14.500677,13.377238 13.381945,14.500029 11.99231,14.500029 L 4.0064655,14.500029 C 2.6168293,14.500029 1.4980971,13.377238 1.4980971,11.982561 L 1.4980971,4.0173732 C 1.4980971,2.6226961 2.6168293,1.4999056 4.0064655,1.4999056 z "
-       id="rect2233" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0076212"
-       inkscape:original="M 4 1.5 C 2.6103638 1.5 1.5 2.636573 1.5 4.03125 L 1.5 11.96875 C 1.5 13.363427 2.6103639 14.5 4 14.5 L 12 14.5 C 13.389635 14.5 14.5 13.363427 14.5 11.96875 L 14.5 4.03125 C 14.5 2.6365729 13.389635 1.5 12 1.5 L 4 1.5 z "
-       xlink:href="#rect2233"
-       style="fill:url(#linearGradient2270);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1;opacity:0.3"
-       id="path2252"
-       inkscape:href="#rect2233"
-       d="M 3.96875,2.5 C 3.1210101,2.5 2.46875,3.1684612 2.46875,4.03125 L 2.46875,11.96875 C 2.46875,12.831539 3.1210101,13.5 3.96875,13.5 L 12,13.5 C 12.847739,13.5 13.53125,12.81649 13.53125,11.96875 L 13.53125,4.03125 C 13.53125,3.1835106 12.847739,2.5 12,2.5 L 3.96875,2.5 z " />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2235"
-       sodipodi:cx="5.0328703"
-       sodipodi:cy="5.3124371"
-       sodipodi:rx="0.68011761"
-       sodipodi:ry="0.77727729"
-       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
-       transform="matrix(2.205501,0,0,1.929813,-5.600001,-4.75201)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2272"
-       sodipodi:cx="5.0328703"
-       sodipodi:cy="5.3124371"
-       sodipodi:rx="0.68011761"
-       sodipodi:ry="0.77727729"
-       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
-       transform="matrix(2.205501,0,0,1.929813,-5.6,0.24799)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2274"
-       sodipodi:cx="5.0328703"
-       sodipodi:cy="5.3124371"
-       sodipodi:rx="0.68011761"
-       sodipodi:ry="0.77727729"
-       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
-       transform="matrix(2.205501,0,0,1.929813,-0.600001,0.24799)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2276"
-       sodipodi:cx="5.0328703"
-       sodipodi:cy="5.3124371"
-       sodipodi:rx="0.68011761"
-       sodipodi:ry="0.77727729"
-       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
-       transform="matrix(2.205501,0,0,1.929813,-0.6,-4.75201)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/male.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,113 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg1307"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh"
-   sodipodi:docname="male.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   version="1.0"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs1309">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2248">
-      <stop
-         style="stop-color:#729fcf;stop-opacity:1;"
-         offset="0"
-         id="stop2250" />
-      <stop
-         style="stop-color:#729fcf;stop-opacity:0"
-         offset="1"
-         id="stop2252" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2248"
-       id="linearGradient2254"
-       x1="8.4317303"
-       y1="8.3947935"
-       x2="7.0192189"
-       y2="2.5513308"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="25.498579"
-     inkscape:cx="15.206295"
-     inkscape:cy="6.2089057"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     fill="#729fcf"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21"
-     showguides="true"
-     inkscape:guide-bbox="true" />
-  <metadata
-     id="metadata1312">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1305"
-       sodipodi:cx="5.0230198"
-       sodipodi:cy="5.3570547"
-       sodipodi:rx="3.3111386"
-       sodipodi:ry="2.6917078"
-       d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417"
-       sodipodi:start="1.5049493"
-       sodipodi:end="1.5091025"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1307"
-       sodipodi:cx="2.8944306"
-       sodipodi:cy="2.8680694"
-       sodipodi:rx="1.4303218"
-       sodipodi:ry="1.4190594"
-       d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291"
-       sodipodi:start="1.5049493"
-       sodipodi:end="1.5091025"
-       sodipodi:open="true" />
-    <path
-       style="opacity:1;fill:url(#linearGradient2254);fill-opacity:1.0;stroke:#3465a4;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 9.5625001,2.5052306 L 10.8125,3.730362 L 8.5312501,6.0235566 C 7.9356185,5.6694146 7.2416791,5.4581114 6.5000001,5.4581114 C 4.2922116,5.4581114 2.5,7.2595228 2.5000001,9.4790554 C 2.5000001,11.698588 4.2922117,13.5 6.5000001,13.5 C 8.7077886,13.5 10.5,11.698588 10.5,9.4790554 C 10.5,8.7334313 10.289768,8.0359696 9.9375001,7.4371697 L 12.21875,5.1439751 L 13.5,6.4005201 L 13.5,2.5052306 L 9.5625001,2.5052306 z M 6.4062501,7.5314106 C 6.4402689,7.529683 6.4655548,7.5314106 6.5000001,7.5314106 C 7.6022508,7.5314105 8.5000001,8.4387958 8.5000001,9.5418826 C 8.4999997,10.644969 7.6022508,11.552355 6.5000001,11.552355 C 5.3977495,11.552355 4.5000001,10.644969 4.5000001,9.5418826 C 4.5000001,8.4732675 5.3516684,7.5849654 6.4062501,7.5314106 z "
-       id="path1313" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/mobile.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,264 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
-   sodipodi:docname="mobile.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/mobile.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3335">
-      <stop
-         style="stop-color:#204a87;stop-opacity:1;"
-         offset="0"
-         id="stop3337" />
-      <stop
-         style="stop-color:#204a87;stop-opacity:0;"
-         offset="1"
-         id="stop3339" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3300">
-      <stop
-         style="stop-color:#204a87;stop-opacity:1;"
-         offset="0"
-         id="stop3302" />
-      <stop
-         style="stop-color:#204a87;stop-opacity:0;"
-         offset="1"
-         id="stop3304" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3300"
-       id="linearGradient3315"
-       gradientUnits="userSpaceOnUse"
-       x1="-0.0061673229"
-       y1="11.454797"
-       x2="5.6395993"
-       y2="11.454797"
-       gradientTransform="matrix(0.580679,0,0,0.709346,1.207372,-1.624473)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3335"
-       id="linearGradient3341"
-       x1="-27.615904"
-       y1="21.696934"
-       x2="-19.2363"
-       y2="18.633484"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3300"
-       id="linearGradient3353"
-       x1="-28.160521"
-       y1="22.551313"
-       x2="-18.170761"
-       y2="17.799398"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="36.388908"
-     inkscape:cx="12.47515"
-     inkscape:cy="8.110346"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#888a85"
-     inkscape:window-width="1268"
-     inkscape:window-height="972"
-     inkscape:window-x="6"
-     inkscape:window-y="21"
-     inkscape:grid-points="true" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <rect
-       style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect1331"
-       width="7.9919939"
-       height="12.993911"
-       x="7.5040998"
-       y="1.504545" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0228416"
-       inkscape:original="M 7.5 1.5 L 7.5 14.5 L 15.5 14.5 L 15.5 1.5 L 7.5 1.5 z "
-       xlink:href="#rect1331"
-       style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99199408px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="path2206"
-       inkscape:href="#rect1331"
-       d="M 8.53125,2.53125 L 8.53125,13.46875 L 14.46875,13.46875 L 14.46875,2.53125 L 8.53125,2.53125 z "
-       transform="matrix(1.010173,0,0,1.005973,-0.115518,-4.844059e-2)" />
-    <rect
-       style="fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2208"
-       width="3.9807076"
-       height="3.0005636"
-       x="9.5027981"
-       y="3.499944" />
-    <path
-       style="opacity:0.38150288;color:#000000;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-       d="M 9,3 L 9,6 C 9.6849325,5.8078592 10.39969,5.560911 11.098766,5.2718451 C 12.171483,4.8282801 13.137384,4.3213781 14,3.7572819 L 14,3 L 9,3 z "
-       id="path2220" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2233"
-       width="1"
-       height="1"
-       x="9"
-       y="8" />
-    <path
-       sodipodi:type="spiral"
-       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:7.08695936px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="path3252"
-       sodipodi:cx="-11"
-       sodipodi:cy="17"
-       sodipodi:expansion="1"
-       sodipodi:revolution="1.1139722"
-       sodipodi:radius="17.723295"
-       sodipodi:argument="-9.424778"
-       sodipodi:t0="0.70807511"
-       d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734"
-       transform="matrix(0.120201,5.654854e-2,-4.742318e-2,0.143331,9.572983,5.110321)" />
-    <path
-       sodipodi:type="spiral"
-       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:3.73703289px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="path3254"
-       sodipodi:cx="-11"
-       sodipodi:cy="17"
-       sodipodi:expansion="1"
-       sodipodi:revolution="1.1157676"
-       sodipodi:radius="17.751867"
-       sodipodi:argument="-9.424778"
-       sodipodi:t0="0.69832003"
-       d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947"
-       transform="matrix(0.219568,0.111334,-8.662678e-2,0.282195,10.94256,3.73758)" />
-    <path
-       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000131px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       d="M 4.5539611,12.498317 C 2.0020373,11.459655 0.92343648,7.5201545 1.7880505,4.3367901 C 2.2231942,2.7346624 3.0921081,1.3783732 4.1882245,0.50356567"
-       id="path3256"
-       sodipodi:nodetypes="csc" />
-    <rect
-       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect3355"
-       width="1"
-       height="1"
-       x="7"
-       y="1" />
-    <rect
-       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect1340"
-       width="1"
-       height="1"
-       x="15"
-       y="1" />
-    <rect
-       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect1342"
-       width="1"
-       height="1"
-       x="15"
-       y="14" />
-    <rect
-       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect1344"
-       width="1"
-       height="1"
-       x="7"
-       y="14" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2220"
-       width="1"
-       height="1"
-       x="11"
-       y="8" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2222"
-       width="1"
-       height="1"
-       x="13"
-       y="8" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2224"
-       width="1"
-       height="1"
-       x="13"
-       y="10" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2226"
-       width="1"
-       height="1"
-       x="11"
-       y="10" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2228"
-       width="1"
-       height="1"
-       x="9"
-       y="10" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2230"
-       width="1"
-       height="1"
-       x="9"
-       y="12" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2232"
-       width="1"
-       height="1"
-       x="11"
-       y="12" />
-    <rect
-       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="rect2234"
-       width="1"
-       height="1"
-       x="13"
-       y="12" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/music.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,189 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:modified="true"
-   version="1.0"
-   sodipodi:docname="music.svg"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3185">
-      <stop
-         style="stop-color:#4e9a06;stop-opacity:1;"
-         offset="0"
-         id="stop3187" />
-      <stop
-         style="stop-color:#4e9a06;stop-opacity:0"
-         offset="1"
-         id="stop3189" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3177">
-      <stop
-         style="stop-color:#4e9a06;stop-opacity:1;"
-         offset="0"
-         id="stop3179" />
-      <stop
-         style="stop-color:#4e9a06;stop-opacity:0;"
-         offset="1"
-         id="stop3181" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3153">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3155" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3157" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3153"
-       id="linearGradient3159"
-       x1="2.5409546"
-       y1="10.048674"
-       x2="10.378205"
-       y2="15.928688"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3177"
-       id="radialGradient3183"
-       cx="5.2116022"
-       cy="8.4051199"
-       fx="5.2116022"
-       fy="8.4051199"
-       r="2.9404981"
-       gradientTransform="matrix(2.6050387,0,0,2.2888674,-8.415579,-10.767812)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3185"
-       id="radialGradient3191"
-       cx="5.1978397"
-       cy="8.4135866"
-       fx="5.1978397"
-       fy="8.4135866"
-       r="3.1428281"
-       gradientTransform="matrix(2.8202152,0,0,2.4999643,-9.461187,-12.455954)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     gridtolerance="10000"
-     guidetolerance="10"
-     objecttolerance="10"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.4"
-     inkscape:cx="19.784002"
-     inkscape:cy="11.848"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     width="16px"
-     height="16px"
-     showgrid="true"
-     inkscape:window-width="1440"
-     inkscape:window-height="847"
-     inkscape:window-x="0"
-     inkscape:window-y="22" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#222728;stroke-width:1.14297926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2160"
-       sodipodi:cx="6.4712896"
-       sodipodi:cy="14.484771"
-       sodipodi:rx="3.5986683"
-       sodipodi:ry="2.1781414"
-       d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1  2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1  10.069958 14.484771 z"
-       transform="matrix(0.8336417,0,0,0.918214,4.1052631,-0.8001194)" />
-    <rect
-       style="opacity:1;fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect3143"
-       width="1"
-       height="12"
-       x="12"
-       y="1"
-       rx="0.18940361"
-       ry="0.20662212" />
-    <path
-       style="fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.006464,3.0203051 L 11.981638,1 C 13.945163,1 17.837365,1.1548232 14.996311,7.9684328 C 15.596089,2.2547574 13.743811,3.0203051 12.006464,3.0203051 z "
-       id="rect3146"
-       sodipodi:nodetypes="cccc" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#555753;fill-opacity:1;stroke:url(#linearGradient3159);stroke-width:1.97969818;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3151"
-       sodipodi:cx="6.4712896"
-       sodipodi:cy="14.484771"
-       sodipodi:rx="3.5986683"
-       sodipodi:ry="2.1781414"
-       d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1  2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1  10.069958 14.484771 z"
-       transform="matrix(0.5557611,0,0,0.4591071,5.903509,5.8499391)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3191);stroke-width:0.98568761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3173"
-       sodipodi:cx="8.0970039"
-       sodipodi:cy="11.122857"
-       sodipodi:rx="4.3089318"
-       sodipodi:ry="3.5513175"
-       d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672"
-       transform="matrix(1.0443424,0,0,0.9855497,-0.4560443,3.7870959e-2)"
-       sodipodi:start="2.8475788"
-       sodipodi:end="4.9442449"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3183);stroke-width:0.58102763;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3175"
-       sodipodi:cx="8.0970039"
-       sodipodi:cy="11.122857"
-       sodipodi:rx="4.3089318"
-       sodipodi:ry="3.5513175"
-       d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672"
-       transform="matrix(1.6981233,0,0,1.7443645,-5.9310642,-8.697544)"
-       sodipodi:start="2.8475788"
-       sodipodi:end="4.9442449"
-       sodipodi:open="true" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/not-authorized.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
-   sodipodi:docname="not-authorized.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/voice.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3300">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop3302" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop3304" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3300"
-       id="linearGradient3306"
-       x1="8.6152382"
-       y1="-9.8347273"
-       x2="8.6152382"
-       y2="12.348849"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="39.000665"
-     inkscape:cx="13.905353"
-     inkscape:cy="8.018215"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#eeeeec"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <rect
-       style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2200"
-       width="0"
-       height="1"
-       x="13"
-       y="4" />
-    <path
-       style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z "
-       id="path3298" />
-    <path
-       style="opacity:1;fill:url(#linearGradient3306);fill-opacity:1.0;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z "
-       id="path3278" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/qq-member.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,198 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems/scalable"
-   sodipodi:docname="qq-member.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/qq-member.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="31.678384"
-     inkscape:cx="14.657198"
-     inkscape:cy="9.1928113"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     fill="#f57900"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2344"
-       sodipodi:cx="3.4614794"
-       sodipodi:cy="19.897507"
-       sodipodi:rx="3.8204477"
-       sodipodi:ry="1.8461224"
-       d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1  -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1  7.2819271 19.897507 z"
-       transform="matrix(0.76425,0,0,0.77926,8.868813,-1.507098)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2340"
-       sodipodi:cx="3.4614794"
-       sodipodi:cy="19.897507"
-       sodipodi:rx="3.8204477"
-       sodipodi:ry="1.8461224"
-       d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1  -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1  7.2819271 19.897507 z"
-       transform="matrix(0.76425,0,0,0.77926,1.868813,-1.507098)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.17369032;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2346"
-       sodipodi:cx="11.230577"
-       sodipodi:cy="16.820635"
-       sodipodi:rx="7.0768023"
-       sodipodi:ry="5.7434916"
-       d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1  4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1  18.30738 16.820635 z"
-       transform="matrix(0.284233,0,0,0.349298,-0.692104,3.624594)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.14814281;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2348"
-       sodipodi:cx="11.230577"
-       sodipodi:cy="16.820635"
-       sodipodi:rx="7.0768023"
-       sodipodi:ry="5.7434916"
-       d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1  4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1  18.30738 16.820635 z"
-       transform="matrix(0.287243,0,0,0.35127,10.30629,3.574208)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:1.28010798;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2322"
-       sodipodi:cx="11.230577"
-       sodipodi:cy="16.820635"
-       sodipodi:rx="7.0768023"
-       sodipodi:ry="5.7434916"
-       d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1  4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1  18.30738 16.820635 z"
-       transform="matrix(0.778937,0,0,0.783435,-0.759922,-2.17753)" />
-    <path
-       style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.499168,11.000754 C 12.499168,12.928874 10.484543,14.493723 8.0022374,14.493723 C 5.5199315,14.493723 3.5053065,12.928874 3.5053065,11.000754 C 3.5053065,9.0726373 5.5199315,7.5077885 8.0022374,7.5077885 C 10.484543,7.5077885 12.499168,9.0726373 12.499168,11.000754 z "
-       id="path2324" />
-    <path
-       style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000131;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 13.500455,9.0793411 C 13.500455,10.097614 11.053157,11.154467 7.858743,11.154467 C 7.0601403,11.154467 5.0724919,10.737992 2.9392977,12.494449 C 2.3961235,11.997703 1.7730984,11.677973 1.4999988,11.245381 C 2.656505,10.082571 2.1807148,9.5555594 2.1807148,9.0464228 C 2.1807148,8.0281496 4.5192556,7.4998051 7.7136673,7.4998051 C 10.908078,7.4998051 13.500455,8.0610678 13.500455,9.0793411 z "
-       id="path2338"
-       sodipodi:nodetypes="csccscc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0198945"
-       inkscape:original="M 7.71875 7.5 C 4.5243383 7.5 2.1875 8.0129766 2.1875 9.03125 C 2.1875 9.5403866 2.6565062 10.08719 1.5 11.25 C 1.7730996 11.682592 2.3943258 12.003254 2.9375 12.5 C 5.0706942 10.743543 7.0451471 11.15625 7.84375 11.15625 C 11.038164 11.15625 13.5 10.112023 13.5 9.09375 C 13.5 8.0754767 10.913161 7.5000001 7.71875 7.5 z "
-       xlink:href="#path2338"
-       style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2352"
-       inkscape:href="#path2338"
-       d="M 7.78125,7.78125 C 6.2056615,7.78125 4.8491705,7.9136549 4,8.15625 C 3.5754148,8.2775475 3.3004488,8.4430178 3.1875,8.53125 C 3.0745512,8.6194822 3.15625,8.5391895 3.15625,8.46875 C 3.15625,8.4575392 3.2894467,8.8656831 3.25,9.5 C 3.2272601,9.865665 2.8516835,10.300044 2.625,10.71875 C 2.7056245,10.790412 2.8603146,10.942134 3,11.0625 C 3.979307,10.38765 4.9560069,9.9645065 5.78125,9.84375 C 6.8285986,9.6904932 7.7226625,9.8125 7.9375,9.8125 C 9.4513866,9.8125 10.781471,9.5551666 11.65625,9.1875 C 12.09364,9.0036667 12.403103,8.7753999 12.5625,8.625 C 12.632635,8.5588241 12.610828,8.6154264 12.625,8.59375 C 12.474022,8.487747 12.139821,8.3148445 11.6875,8.1875 C 10.75734,7.925627 9.3503426,7.7812501 7.78125,7.78125 z " />
-    <path
-       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 7.1687017,0.50474152 L 8.7175626,0.50474152 C 10.884158,0.50474152 12.725973,2.4197619 13.271888,4.5023703 C 13.832643,6.6415931 13.596752,8.5000002 9.5621605,8.5000002 L 6.4045417,8.5000002 C 2.3634134,8.5000002 2.1742771,6.6415931 2.7350333,4.5023703 C 3.2579631,2.5074515 5.0021064,0.50474152 7.1687017,0.50474152 z "
-       id="rect2317"
-       sodipodi:nodetypes="ccsccsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0200312"
-       inkscape:original="M 7.15625 0.5 C 4.9896547 0.5 3.2729298 2.5050811 2.75 4.5 C 2.1892438 6.6392228 2.3651219 8.5000002 6.40625 8.5 L 9.5625 8.5 C 13.597092 8.5 13.842005 6.6392227 13.28125 4.5 C 12.735335 2.4173916 10.885345 0.49999997 8.71875 0.5 L 7.15625 0.5 z "
-       xlink:href="#rect2317"
-       style="opacity:0.1;fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2355"
-       inkscape:href="#rect2317"
-       d="M 7.15625,1.53125 C 6.3973765,1.53125 5.6771094,1.8616365 5.0625,2.46875 C 4.4478906,3.0758635 3.9933517,3.9351753 3.78125,4.75 C 3.5273221,5.7255068 3.5403429,6.426123 3.75,6.75 C 3.9596571,7.073877 4.5574314,7.4687499 6.40625,7.46875 L 9.5625,7.46875 C 11.407817,7.46875 12.033042,7.0791701 12.25,6.75 C 12.466958,6.4208299 12.471262,5.7200702 12.21875,4.75 C 11.777347,3.0542739 10.264213,1.53125 8.71875,1.53125 L 7.15625,1.53125 z " />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2326"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(0.812514,0,0,0.804137,1.499999,1.216166)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2328"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(0.812514,0,0,0.804137,5.499999,1.216166)" />
-    <path
-       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.49879,7.4976412 C 12.49879,8.5974947 10.483202,9.4901278 7.9997082,9.4901278 C 5.5162155,9.4901278 3.5006267,8.5974947 3.5006267,7.4976412 C 3.5006267,6.3977886 5.5162155,5.5051544 7.9997082,5.5051544 C 10.483202,5.5051544 12.49879,6.3977886 12.49879,7.4976412 z "
-       id="path2320" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2330"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(0.406257,0,0,0.201034,7.250001,2.804042)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2332"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(0.406257,0,0,0.201034,4.25,2.804042)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.19318183;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.99083459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2336"
-       sodipodi:cx="13.296353"
-       sodipodi:cy="10.923561"
-       sodipodi:rx="8.2214088"
-       sodipodi:ry="1.7085644"
-       d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1  5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1  21.517762 10.923561 z"
-       transform="matrix(0.427975,0,0,0.589538,2.309499,1.065602)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/secure.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16px"
-   height="16px"
-   id="svg4220"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/scalable"
-   sodipodi:docname="secure.svg"
-   inkscape:export-filename="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/secure.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4222">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5170">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop5172" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop5174" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5160">
-      <stop
-         style="stop-color:#c4a000;stop-opacity:1;"
-         offset="0"
-         id="stop5162" />
-      <stop
-         style="stop-color:#c4a000;stop-opacity:0;"
-         offset="1"
-         id="stop5164" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5127">
-      <stop
-         style="stop-color:white;stop-opacity:1;"
-         offset="0"
-         id="stop5129" />
-      <stop
-         style="stop-color:white;stop-opacity:0;"
-         offset="1"
-         id="stop5131" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5127"
-       id="linearGradient5133"
-       x1="-8.5730524"
-       y1="8.1949167"
-       x2="-8.5730524"
-       y2="14.091002"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5160"
-       id="linearGradient5166"
-       x1="-5.2575259"
-       y1="14.311456"
-       x2="-10.187596"
-       y2="11.560035"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5170"
-       id="linearGradient5176"
-       x1="-7.5400991"
-       y1="0.79740471"
-       x2="-7.5400991"
-       y2="4.7783289"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="22.197802"
-     inkscape:cx="8.5405941"
-     inkscape:cy="8.0965274"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="872"
-     inkscape:window-height="625"
-     inkscape:window-x="47"
-     inkscape:window-y="150" />
-  <metadata
-     id="metadata4225">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <rect
-       style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#c4a000;stroke-width:0.52907252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect4238"
-       width="5.7297029"
-       height="6.3509903"
-       x="-6"
-       y="6"
-       transform="matrix(2.268879,0,0,1.574557,15.11327,-3.947338)"
-       rx="0.44198585"
-       ry="0.60082906" />
-    <rect
-       style="opacity:1;fill:url(#linearGradient5166);fill-opacity:1.0;stroke:url(#linearGradient5133);stroke-width:0.50402278;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect5125"
-       width="5.6391087"
-       height="2.9732673"
-       x="-11"
-       y="10.458911"
-       transform="matrix(1.950662,0,0,2.017983,23.95729,-12.6059)" />
-    <rect
-       style="opacity:0.56331877;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect5156"
-       width="5.1252475"
-       height="2.6569307"
-       x="-14"
-       y="6"
-       transform="matrix(2.34135,0,0,0.752748,34.7789,1.48351)" />
-    <path
-       transform="translate(15,0)"
-       style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,7.5 L -9.5,7.5 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,7.5 L -2.5,7.5 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z "
-       id="path5168"
-       sodipodi:nodetypes="ccccccccccccc" />
-    <path
-       transform="translate(15,0)"
-       style="fill:url(#linearGradient5176);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,6.4638614 C -11.5,7.8729886 -9.5,7.6557806 -9.5,6.5089109 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,6.5539604 C -4.5450495,7.8163699 -2.5,7.594009 -2.5,6.5539604 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z "
-       id="rect5149"
-       sodipodi:nodetypes="ccccccccccccc" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/unavailable.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,125 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
-   sodipodi:docname="unavailable.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/external.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2259">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop2261" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop2263" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2259"
-       id="linearGradient2265"
-       x1="8.046875"
-       y1="6.5309725"
-       x2="8.046875"
-       y2="11.646569"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="36.388907"
-     inkscape:cx="11.666301"
-     inkscape:cy="7.6639631"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fcaf3e"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <rect
-       style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2200"
-       width="0"
-       height="1"
-       x="13"
-       y="4" />
-    <path
-       style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8.0118188,2.0086319 L 15.132139,14.503373 L 0.87261571,14.491555 L 8.0118188,2.0086319 z "
-       id="rect2203"
-       sodipodi:nodetypes="cccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0233446"
-       inkscape:original="M 8 2 L 0.875 14.5 L 15.125 14.5 L 8 2 z "
-       xlink:href="#rect2203"
-       style="fill:url(#linearGradient2265);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.5"
-       id="path2249"
-       inkscape:href="#rect2203"
-       d="M 8,5.21875 L 3.59375,13.4375 L 12.4375,13.46875 L 8,5.21875 z " />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2245"
-       sodipodi:cx="7.9910712"
-       sodipodi:cy="11.647322"
-       sodipodi:rx="0.55803573"
-       sodipodi:ry="0.625"
-       d="M 8.549107 11.647322 A 0.55803573 0.625 0 1 1  7.4330355,11.647322 A 0.55803573 0.625 0 1 1  8.549107 11.647322 z"
-       transform="matrix(1.791998,0,0,1.6,-6.319984,-6.635714)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2247"
-       sodipodi:cx="8.046875"
-       sodipodi:cy="7.8526788"
-       sodipodi:rx="0.81473213"
-       sodipodi:ry="2.3214285"
-       d="M 8.8616071 7.8526788 A 0.81473213 2.3214285 0 1 1  7.2321429,7.8526788 A 0.81473213 2.3214285 0 1 1  8.8616071 7.8526788 z"
-       transform="matrix(1.227398,0,0,0.861538,-1.876721,1.23462)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/video.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,199 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
-   sodipodi:docname="video.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/video.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="51.461686"
-     inkscape:cx="12.06418"
-     inkscape:cy="5.7904142"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#fcaf3e"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <rect
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2200"
-       width="1"
-       height="14"
-       x="13"
-       y="1" />
-    <rect
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2202"
-       width="1"
-       height="14"
-       x="3"
-       y="1" />
-    <rect
-       style="opacity:1;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2204"
-       width="9"
-       height="14"
-       x="4"
-       y="1" />
-    <rect
-       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2206"
-       width="4.0010238"
-       height="3.0023892"
-       x="6.4994845"
-       y="1.4988047" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2212"
-       width="1"
-       height="1"
-       x="4"
-       y="2" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2214"
-       width="1"
-       height="1"
-       x="4"
-       y="4" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2216"
-       width="1"
-       height="1"
-       x="4"
-       y="6" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2218"
-       width="1"
-       height="1"
-       x="4"
-       y="8" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2220"
-       width="1"
-       height="1"
-       x="4"
-       y="10" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2222"
-       width="1"
-       height="1"
-       x="4"
-       y="12" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2224"
-       width="1"
-       height="1"
-       x="4"
-       y="14" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2226"
-       width="1"
-       height="1"
-       x="12"
-       y="2" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2228"
-       width="1"
-       height="1"
-       x="12"
-       y="4" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2230"
-       width="1"
-       height="1"
-       x="12"
-       y="6" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2232"
-       width="1"
-       height="1"
-       x="12"
-       y="8" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2234"
-       width="1"
-       height="1"
-       x="12"
-       y="10" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2236"
-       width="1"
-       height="1"
-       x="12"
-       y="12" />
-    <rect
-       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2238"
-       width="1"
-       height="1"
-       x="12"
-       y="14" />
-    <rect
-       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2247"
-       width="4.0006118"
-       height="3.009582"
-       x="6.4999485"
-       y="6.5" />
-    <rect
-       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2249"
-       width="4.0006118"
-       height="3.0014915"
-       x="6.499949"
-       y="11.498656" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/emblems/16/scalable/voice.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,163 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="16"
-   height="16"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
-   sodipodi:docname="voice.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/unavailable.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3300"
-       id="linearGradient3353"
-       x1="-25.208164"
-       y1="22.436846"
-       x2="-16.394892"
-       y2="18.959713"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3335">
-      <stop
-         style="stop-color:#204a87;stop-opacity:1;"
-         offset="0"
-         id="stop3337" />
-      <stop
-         style="stop-color:#204a87;stop-opacity:0;"
-         offset="1"
-         id="stop3339" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3335"
-       id="linearGradient3341"
-       x1="-25.494905"
-       y1="21.102697"
-       x2="-19.2363"
-       y2="18.633484"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3300">
-      <stop
-         style="stop-color:#204a87;stop-opacity:1;"
-         offset="0"
-         id="stop3302" />
-      <stop
-         style="stop-color:#204a87;stop-opacity:0;"
-         offset="1"
-         id="stop3304" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3300"
-       id="linearGradient3315"
-       gradientUnits="userSpaceOnUse"
-       x1="0.62497759"
-       y1="11.454797"
-       x2="5.6395993"
-       y2="11.454797"
-       gradientTransform="matrix(-0.759076,0,0,0.886801,13.87483,-2.157027)" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="18.194454"
-     inkscape:cx="13.592043"
-     inkscape:cy="6.9257794"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#729fcf"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <rect
-       style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect2200"
-       width="0"
-       height="1"
-       x="13"
-       y="4" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.64040256;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2267"
-       sodipodi:cx="3.3114488"
-       sodipodi:cy="8.5114546"
-       sodipodi:rx="1.0305338"
-       sodipodi:ry="0.89312935"
-       d="M 4.3419826 8.5114546 A 1.0305338 0.89312935 0 1 1  2.280915,8.5114546 A 1.0305338 0.89312935 0 1 1  4.3419826 8.5114546 z"
-       transform="matrix(1.453916,0,0,1.677081,-1.816259,-6.276549)" />
-    <path
-       sodipodi:type="spiral"
-       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:3.82398129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="path3252"
-       sodipodi:cx="-11"
-       sodipodi:cy="17"
-       sodipodi:expansion="1"
-       sodipodi:revolution="1.1139722"
-       sodipodi:radius="17.723295"
-       sodipodi:argument="-9.424778"
-       sodipodi:t0="0.70807511"
-       d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734"
-       transform="matrix(-0.236541,9.86989e-2,9.332284e-2,0.250166,-0.538748,5.57923)" />
-    <path
-       sodipodi:type="spiral"
-       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:2.61211109px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       id="path3254"
-       sodipodi:cx="-11"
-       sodipodi:cy="17"
-       sodipodi:expansion="1"
-       sodipodi:revolution="1.1157676"
-       sodipodi:radius="17.751867"
-       sodipodi:argument="-9.424778"
-       sodipodi:t0="0.69832003"
-       d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947"
-       transform="matrix(-0.326904,0.153056,0.128975,0.387943,-0.598939,4.203466)" />
-    <path
-       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-       d="M 9.5000758,15.498835 C 12.836002,14.200334 14.245965,9.2752932 13.115727,5.2955524 C 12.546899,3.2926232 11.411038,1.5970337 9.9781738,0.50337707"
-       id="path3256"
-       sodipodi:nodetypes="csc" />
-  </g>
-</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/aol-client.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16px"
+   height="16px"
+   id="svg1307"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/emblems/16/scalable"
+   sodipodi:docname="aol-client.svg"
+   inkscape:export-filename="/home/hbons/Desktop/aol-client.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs1309" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="33.645576"
+     inkscape:cx="10.549484"
+     inkscape:cy="6.7812522"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     fill="#204a87"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:grid-points="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="841"
+     inkscape:window-x="6"
+     inkscape:window-y="0" />
+  <metadata
+     id="metadata1312">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       style="fill:#204a87;fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 2 1 L 2 15 L 14 8 L 2 1 z M 6 4 C 8.1805207 4 10 5.7762679 10 8 C 10 10.223732 8.1805205 12 6 12 C 3.8194795 11.999999 2.0312501 10.223732 2.03125 8 C 2.03125 5.7762679 3.8194791 4.0000001 6 4 z M 6 5.125 C 4.3921597 5.125 3.1249999 6.4360487 3.125 8 C 3.125 9.5639514 4.3921593 10.84375 6 10.84375 C 7.6078403 10.84375 8.875 9.5639514 8.875 8 C 8.875 6.4360487 7.6078401 5.1249999 6 5.125 z "
+       id="rect2229" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/birthday.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,622 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16px"
+   height="16px"
+   id="svg8140"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docname="birthday.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs8142">
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4232"
+       id="linearGradient3007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7499999,14.982194,1.1250003)"
+       x1="7.5089025"
+       y1="2.218369"
+       x2="7.5089025"
+       y2="4.8258252" />
+    <linearGradient
+       id="linearGradient4380"
+       inkscape:collect="always">
+      <stop
+         id="stop4382"
+         offset="0"
+         style="stop-color:#fcaf3e;stop-opacity:1;" />
+      <stop
+         id="stop4384"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4380"
+       id="linearGradient3005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7499999,-2.9821948,0.3750003)"
+       x1="15.491097"
+       y1="4.2733984"
+       x2="15.491097"
+       y2="2.7707961" />
+    <linearGradient
+       id="linearGradient4142"
+       inkscape:collect="always">
+      <stop
+         id="stop4144"
+         offset="0"
+         style="stop-color:#5c3566;stop-opacity:1;" />
+      <stop
+         id="stop4146"
+         offset="1"
+         style="stop-color:#9253a2;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4142"
+       id="linearGradient3029"
+       gradientUnits="userSpaceOnUse"
+       x1="15.5"
+       y1="10.635184"
+       x2="15.5"
+       y2="7.1438446"
+       gradientTransform="matrix(1,0,0,0.8000001,-2.9821944,0.2999994)" />
+    <linearGradient
+       id="linearGradient4150"
+       inkscape:collect="always">
+      <stop
+         id="stop4152"
+         offset="0"
+         style="stop-color:#3c7704;stop-opacity:1" />
+      <stop
+         id="stop4154"
+         offset="1"
+         style="stop-color:#59b106;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4150"
+       id="linearGradient3034"
+       gradientUnits="userSpaceOnUse"
+       x1="7.5"
+       y1="9.4861355"
+       x2="7.5"
+       y2="7.0554562"
+       gradientTransform="matrix(1,0,0,0.8000001,-3,0.2999994)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4232"
+       id="linearGradient3048"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.7499999,-3.0178049,0.3750005)"
+       x1="7.5089025"
+       y1="2.218369"
+       x2="7.5089025"
+       y2="4.8258252" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4374">
+      <stop
+         style="stop-color:#fcaf3e;stop-opacity:1;"
+         offset="0"
+         id="stop4376" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop4378" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4374"
+       id="linearGradient3046"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.463041,0,0,1.1368063,-10.850902,0.678176)"
+       x1="6.3242626"
+       y1="2.3645318"
+       x2="6.3242626"
+       y2="1.6300712" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4232">
+      <stop
+         style="stop-color:#f57900;stop-opacity:1;"
+         offset="0"
+         id="stop4234" />
+      <stop
+         style="stop-color:#b25800;stop-opacity:1"
+         offset="1"
+         id="stop4236" />
+    </linearGradient>
+    <linearGradient
+       y2="4.8258252"
+       x2="7.5089025"
+       y1="2.218369"
+       x1="7.5089025"
+       gradientTransform="matrix(1,0,0,0.7499999,1.0000002,-0.6249996)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4308"
+       xlink:href="#linearGradient4232"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient4368"
+       inkscape:collect="always">
+      <stop
+         id="stop4370"
+         offset="0"
+         style="stop-color:#fcaf3e;stop-opacity:1;" />
+      <stop
+         id="stop4372"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       y2="1.6300712"
+       x2="6.3242626"
+       y1="2.3645318"
+       x1="6.3242626"
+       gradientTransform="matrix(2.463041,0,0,1.1368063,-6.8330964,-0.3218242)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4306"
+       xlink:href="#linearGradient4368"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3425">
+      <stop
+         style="stop-color:#204a87;stop-opacity:1;"
+         offset="0"
+         id="stop3427" />
+      <stop
+         style="stop-color:#2e69c2;stop-opacity:1"
+         offset="1"
+         id="stop3429" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3425"
+       id="linearGradient3431"
+       x1="11.5"
+       y1="9.961833"
+       x2="11.241222"
+       y2="6.6366434"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-2.9999997,-2.0000001)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4388">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop4390" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop4392" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4388"
+       id="linearGradient4394"
+       x1="2.9999998"
+       y1="11.5"
+       x2="21"
+       y2="11.5"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4158">
+      <stop
+         style="stop-color:#9a9c98;stop-opacity:1"
+         offset="0"
+         id="stop4160" />
+      <stop
+         style="stop-color:#666763;stop-opacity:1"
+         offset="1"
+         id="stop4162" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4158"
+       id="linearGradient4164"
+       x1="16.274719"
+       y1="9.7764273"
+       x2="17.448"
+       y2="13.753902"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7894737,0,0,0.6666667,-1.4736843,1.8333322)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4048">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4050" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4052" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4048"
+       id="linearGradient4054"
+       x1="-10.516191"
+       y1="10.124428"
+       x2="36.795452"
+       y2="19.026175"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3941">
+      <stop
+         style="stop-color:#af6d02;stop-opacity:1"
+         offset="0"
+         id="stop3943" />
+      <stop
+         style="stop-color:#5f3b00;stop-opacity:1"
+         offset="1"
+         id="stop3945" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3941"
+       id="linearGradient3947"
+       x1="15.917198"
+       y1="16.659033"
+       x2="16.463091"
+       y2="20.489477"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4003">
+      <stop
+         style="stop-color:#c17d11;stop-opacity:1"
+         offset="0"
+         id="stop4005" />
+      <stop
+         style="stop-color:#e9b96e;stop-opacity:1"
+         offset="1"
+         id="stop4007" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4003"
+       id="linearGradient4009"
+       x1="16.815628"
+       y1="16.941942"
+       x2="10.718681"
+       y2="16.941942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7894737,0,0,0.7,-1.473684,0.4500012)" />
+    <filter
+       inkscape:collect="always"
+       id="filter4540"
+       x="-0.087152615"
+       width="1.1743052"
+       y="-0.21174857"
+       height="1.4234971">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.37221428"
+         id="feGaussianBlur4542" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.197802"
+     inkscape:cx="8"
+     inkscape:cy="8"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="641"
+     inkscape:window-height="669"
+     inkscape:window-x="0"
+     inkscape:window-y="22">
+    <inkscape:grid
+       type="xygrid"
+       id="grid8150" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata8145">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.47499999999999998;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4540);enable-background:accumulate"
+       id="path4466"
+       sodipodi:cx="12.03125"
+       sodipodi:cy="4.265625"
+       sodipodi:rx="5.125"
+       sodipodi:ry="2.109375"
+       d="M 17.15625,4.265625 A 5.125,2.109375 0 1 1 6.90625,4.265625 A 5.125,2.109375 0 1 1 17.15625,4.265625 z"
+       transform="matrix(1.3658536,0,0,1.1656218,-8.4329267,-2.4721054)" />
+    <path
+       style="fill:url(#linearGradient4009);fill-opacity:1;stroke:url(#linearGradient3947);stroke-width:1.00000072000000007;stroke-miterlimit:4;stroke-opacity:1"
+       d="m 0.50000029,9.8437508 0,3.5562497 C 0.50000029,14.5592 3.8600006,15.5 8.0000002,15.5 12.14,15.5 15.5,14.559199 15.5,13.4 l 0,-3.5562497 z"
+       id="path3936"
+       sodipodi:nodetypes="ccsccc" />
+    <rect
+       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4624"
+       width="2"
+       height="3"
+       x="3"
+       y="11" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0054175"
+       inkscape:original="M 2.5 11.5 L 2.5 18.5 C 2.5 20.155999 6.7560004 21.5 12 21.5 C 17.243999 21.5 21.5 20.155998 21.5 18.5 L 21.5 11.5 L 2.5 11.5 z "
+       style="fill:none;stroke:url(#linearGradient4054);stroke-width:1.44648218000000006;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3983"
+       d="m 3.5,12.5 0,6 c 0,-0.016662 0.0034472,0.121066 0.34375,0.375 0.3403028,0.253934 0.9602178,0.531845 1.75,0.78125 C 7.1733144,20.15506 9.4638941,20.5 12,20.5 c 2.536106,0 4.826685,-0.34494 6.40625,-0.84375 0.789782,-0.249405 1.409697,-0.527316 1.75,-0.78125 C 20.496553,18.621066 20.5,18.483337 20.5,18.5 l 0,-6 z"
+       transform="matrix(0.7647058,0,0,0.6249999,-1.1764702,1.6875019)" />
+    <rect
+       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4056"
+       width="1"
+       height="3"
+       x="6"
+       y="11"
+       rx="0.5"
+       ry="0.5" />
+    <rect
+       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4078"
+       width="1"
+       height="3"
+       x="3"
+       y="10"
+       rx="0.5"
+       ry="0.5" />
+    <rect
+       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4131"
+       width="1"
+       height="3"
+       x="12"
+       y="10"
+       rx="0.5"
+       ry="0.5" />
+    <rect
+       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect2655"
+       width="2"
+       height="3"
+       x="10"
+       y="11" />
+    <rect
+       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect2664"
+       width="2"
+       height="2"
+       x="13"
+       y="11" />
+    <rect
+       style="opacity:0.26499999000000002;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect2646"
+       width="2"
+       height="3"
+       x="7"
+       y="12" />
+    <rect
+       style="opacity:0.83499995000000005;color:#000000;fill:#8f5902;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4140"
+       width="1"
+       height="3"
+       x="8"
+       y="10"
+       rx="0.5"
+       ry="0.5" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:url(#linearGradient4164);stroke-width:1.00000059999999991;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.500001,9.5000002 C 15.500001,10.604 12.139999,11.5 8,11.5 3.8600003,11.5 0.5000003,10.604 0.5000003,9.5000004 0.5000003,8.3960006 3.8600004,7.5000001 8,7.5000001 c 4.140001,0 7.500001,0.89600032 7.500001,2.0000001 z"
+       id="path1307" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0051613"
+       inkscape:original="M 12 8.5 C 6.7560004 8.5 2.5000001 9.844 2.5 11.5 C 2.5 13.155999 6.7560004 14.5 12 14.5 C 17.243999 14.5 21.5 13.155999 21.5 11.5 C 21.5 9.844 17.244 8.5000008 12 8.5 z "
+       xlink:href="#path4198"
+       style="fill:url(#linearGradient4394);fill-opacity:1;stroke:#ffffff;stroke-width:1.61721622999999992;stroke-miterlimit:4;stroke-opacity:1"
+       id="path4200"
+       d="M 12,9.5 C 9.4638721,9.5 7.1733501,9.8449289 5.59375,10.34375 4.80395,10.593161 4.1840886,10.87104 3.84375,11.125 3.5034114,11.37896 3.5,11.516552 3.5,11.5 c 0,-0.016553 0.0034113,0.12104 0.34375,0.375 0.3403387,0.25396 0.9601999,0.531839 1.75,0.78125 C 7.1733501,13.155071 9.4638722,13.5 12,13.5 c 2.536128,0 4.82665,-0.344929 6.40625,-0.84375 0.7898,-0.249411 1.409661,-0.52729 1.75,-0.78125 C 20.496589,11.62104 20.5,11.483447 20.5,11.5 c 0,0.016552 -0.003411,-0.12104 -0.34375,-0.375 -0.340339,-0.25396 -0.9602,-0.53184 -1.75,-0.78125 C 16.82665,9.844929 14.536128,9.5000004 12,9.5 z"
+       transform="matrix(0.7647058,0,0,0.4999999,-1.1764702,3.7500016)" />
+    <rect
+       style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3431);stroke-width:1.00000011999999994;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3304"
+       width="2"
+       height="4.999999"
+       x="7.5"
+       y="4.500001"
+       rx="1"
+       ry="1" />
+    <rect
+       style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3308"
+       width="1"
+       height="1"
+       x="8"
+       y="6" />
+    <rect
+       style="opacity:0.55500033999999998;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3330"
+       width="1"
+       height="1"
+       x="8"
+       y="8" />
+    <rect
+       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3608"
+       width="1"
+       height="1"
+       x="7"
+       y="6" />
+    <rect
+       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3617"
+       width="1"
+       height="1"
+       x="7"
+       y="8" />
+    <rect
+       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3626"
+       width="1"
+       height="1"
+       x="9"
+       y="8" />
+    <rect
+       style="opacity:0.31000000999999999;color:#000000;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3635"
+       width="1"
+       height="1"
+       x="9"
+       y="6" />
+    <path
+       style="fill:url(#linearGradient4306);fill-opacity:1;stroke:url(#linearGradient4308);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1"
+       d="m 8.9999763,3.4999993 c -0.827986,0 -1.499975,-0.6719998 -1.499975,-1.4999993 0,-0.82799966 0.671989,-1.4999994 1.4999755,-1.4999994 0.5378079,0 0.8279864,2.9999986 0,2.9999987 z"
+       id="path4284"
+       sodipodi:nodetypes="csss" />
+    <path
+       style="fill:url(#linearGradient3046);fill-opacity:1;stroke:url(#linearGradient3048);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4.9821711,4.4999994 C 4.1541851,4.4999994 3.4821961,3.8279997 3.4821961,3.0000001 C 3.4821961,2.1720004 4.1541851,1.5000007 4.9821711,1.5000007 C 5.5199791,1.5000007 5.8101571,4.4999993 4.9821711,4.4999994 L 4.9821711,4.4999994 z"
+       id="path2289"
+       sodipodi:nodetypes="csss" />
+    <rect
+       style="fill:#6ec31b;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3034);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3469"
+       width="2"
+       height="4"
+       x="3.5"
+       y="5.5"
+       rx="1"
+       ry="1" />
+    <rect
+       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3471"
+       width="1"
+       height="1"
+       x="4"
+       y="5.9999995" />
+    <rect
+       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3473"
+       width="1"
+       height="1"
+       x="4"
+       y="7.9999995" />
+    <rect
+       style="fill:#ad7fa8;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3029);stroke-width:1.00000024000000010;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3533"
+       width="2"
+       height="4"
+       x="11.517806"
+       y="5.5"
+       rx="1"
+       ry="1" />
+    <rect
+       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3535"
+       width="1"
+       height="1"
+       x="12.017806"
+       y="5.9999995" />
+    <rect
+       style="opacity:0.55500033999999998;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3537"
+       width="1"
+       height="1"
+       x="12.017806"
+       y="7.9999995" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3559"
+       width="1"
+       height="1"
+       x="3"
+       y="6" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3581"
+       width="1"
+       height="1"
+       x="3"
+       y="8" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3590"
+       width="1"
+       height="1"
+       x="5"
+       y="8" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3599"
+       width="1"
+       height="1"
+       x="5"
+       y="6" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3644"
+       width="1"
+       height="1"
+       x="11.017806"
+       y="6" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3653"
+       width="1"
+       height="1"
+       x="13.017806"
+       y="6" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3662"
+       width="1"
+       height="1"
+       x="13.017806"
+       y="8" />
+    <rect
+       style="opacity:0.31000000999999999;fill:#c6d7ed;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect3671"
+       width="1"
+       height="1"
+       x="11.017806"
+       y="8" />
+    <path
+       style="fill:url(#linearGradient3005);fill-opacity:1;stroke:url(#linearGradient3007);stroke-width:1.00000119000000010;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.999976,4.4999993 C 12.17199,4.4999993 11.500001,3.8279995 11.500001,3 C 11.500001,2.1720003 12.17199,1.5000006 12.999977,1.5000006 C 13.537784,1.5000006 13.827963,4.4999992 12.999977,4.4999993 L 12.999976,4.4999993 z"
+       id="path4348"
+       sodipodi:nodetypes="csss" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/blocked.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,139 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16px"
+   height="16px"
+   id="svg4220"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/toolbars/16/scalable"
+   sodipodi:docname="blocked.svg"
+   inkscape:export-filename="/home/hbons/Desktop/block.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4222">
+    <linearGradient
+       id="linearGradient2241"
+       inkscape:collect="always">
+      <stop
+         id="stop2243"
+         offset="0"
+         style="stop-color:#eeeeec;stop-opacity:1;" />
+      <stop
+         id="stop2245"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2241"
+       id="linearGradient2826"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.002185,0,0,0.866653,-24.02518,-2.399763)"
+       x1="19.003813"
+       y1="9.3585329"
+       x2="15.520383"
+       y2="14.406374" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="25.498579"
+     inkscape:cx="19.947241"
+     inkscape:cy="9.0174755"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:object-points="false"
+     inkscape:grid-points="true"
+     inkscape:window-width="1440"
+     inkscape:window-height="849"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata4225">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <rect
+       style="fill:#c17d11;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999875;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect1324"
+       width="11.000001"
+       height="14.999996"
+       x="-13.5"
+       y="0.49999937"
+       ry="0"
+       transform="scale(-1,1)" />
+    <rect
+       style="opacity:0.3;fill:url(#linearGradient2826);fill-opacity:1;stroke:white;stroke-width:0.99999827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2211"
+       width="9.0000048"
+       height="12.999996"
+       x="-12.500007"
+       y="1.4999992"
+       ry="0"
+       transform="scale(-1,1)" />
+    <path
+       sodipodi:type="arc"
+       style="fill:#fecb81;fill-opacity:1;stroke:none;stroke-width:2.03035927;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2215"
+       sodipodi:cx="17.607706"
+       sodipodi:cy="10.679387"
+       sodipodi:rx="0.80383009"
+       sodipodi:ry="0.80383009"
+       d="M 18.411536 10.679387 A 0.80383009 0.80383009 0 1 1  16.803876,10.679387 A 0.80383009 0.80383009 0 1 1  18.411536 10.679387 z"
+       transform="matrix(-1.244046,0,0,1.245728,26.90479,-6.302258)" />
+    <rect
+       style="opacity:1;fill:#ce9f52;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2878"
+       width="15.000005"
+       height="2.0000005"
+       x="0.49999997"
+       y="9.5" />
+    <rect
+       style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2880"
+       width="2.0000017"
+       height="3.9999959"
+       x="1.5"
+       y="8.500001"
+       rx="0.90201104"
+       ry="0.90201104" />
+    <rect
+       style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999934;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2884"
+       width="2.0000017"
+       height="3.9999959"
+       x="12.499999"
+       y="8.500001"
+       rx="0.90201104"
+       ry="0.90201104" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/bot.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,191 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
+   sodipodi:docname="bot.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/bot.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2434">
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1;"
+         offset="0"
+         id="stop2436" />
+      <stop
+         style="stop-color:#3465a4;stop-opacity:0;"
+         offset="1"
+         id="stop2438" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2381">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop2383" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop2385" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2381"
+       id="radialGradient2387"
+       cx="8"
+       cy="6.3252358"
+       fx="8"
+       fy="6.3252358"
+       r="5.5"
+       gradientTransform="matrix(1,0,0,0.727273,-2.499086e-17,2.590909)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2434"
+       id="linearGradient2440"
+       x1="8.0002842"
+       y1="7.9528065"
+       x2="8.0002842"
+       y2="3.994154"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.000231,0,0,1.003358,-2.099138e-3,-2.699002e-2)" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="24.007726"
+     inkscape:cx="15.409556"
+     inkscape:cy="3.028583"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     showgrid="true"
+     fill="#3465a4"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21">
+    <sodipodi:guide
+       orientation="vertical"
+       position="-845.97209"
+       id="guide1317" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.0273697,2.4999816 C 11.768865,2.4999816 13.504889,4.6239578 13.504889,6.0188482 L 13.504889,10.982138 C 13.504889,12.377028 12.554059,13.49999 11.372982,13.49999 L 4.6301353,13.49999 C 3.4490585,13.49999 2.4982278,12.377028 2.4982278,10.982138 L 2.4982278,6.0188482 C 2.4982278,4.6239578 4.3150401,2.4999816 8.0273697,2.4999816 z "
+       id="rect2337"
+       sodipodi:nodetypes="cccccccz" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0049763"
+       inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z "
+       xlink:href="#rect2337"
+       style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2364"
+       inkscape:href="#rect2337"
+       d="M 8.03125,3.5 C 4.6641987,3.5 3.46875,5.5073994 3.46875,6.03125 L 3.46875,10.96875 C 3.46875,11.900898 4.0706163,12.5 4.625,12.5 L 11.4375,12.5 C 11.991885,12.5 12.5625,11.915908 12.5625,10.96875 L 12.5625,6.03125 C 12.5625,5.478244 11.430731,3.5 8.03125,3.5 z " />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0049763"
+       inkscape:original="M 8.03125 2.5 C 4.3189204 2.5 2.5 4.6363594 2.5 6.03125 L 2.5 10.96875 C 2.5 12.36364 3.443923 13.5 4.625 13.5 L 11.375 13.5 C 12.556077 13.5 13.5 12.36364 13.5 10.96875 L 13.5 6.03125 C 13.5 4.6363596 11.772746 2.5 8.03125 2.5 z "
+       xlink:href="#rect2337"
+       style="opacity:0.5;fill:url(#radialGradient2387);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2379"
+       inkscape:href="#rect2337"
+       d="M 8.03125,4.5 C 4.6641988,4.5 3.46875,6.5073996 3.46875,7.03125 L 3.46875,11.96875 C 3.46875,12.900898 4.0706163,13.5 4.625,13.5 L 11.4375,13.5 C 11.991885,13.5 12.5625,12.915908 12.5625,11.96875 L 12.5625,7.03125 C 12.5625,6.478244 11.430731,4.5000001 8.03125,4.5 z "
+       transform="matrix(0.909091,0,0,0.875,0.727273,0.187503)" />
+    <rect
+       style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2343"
+       width="4"
+       height="1"
+       x="6"
+       y="11"
+       rx="0"
+       ry="1" />
+    <rect
+       style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2397"
+       width="1.9817986"
+       height="4.9895701"
+       x="0.50910079"
+       y="6.5103664"
+       ry="0.9731853"
+       rx="0.97318554" />
+    <rect
+       style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.99999923;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2399"
+       width="1.9878451"
+       height="4.9889064"
+       x="13.510628"
+       y="6.5102949"
+       ry="0.97318453"
+       rx="0.97318554" />
+    <rect
+       style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2407"
+       width="1"
+       height="1"
+       x="5"
+       y="10"
+       rx="0"
+       ry="1" />
+    <rect
+       style="opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2409"
+       width="1"
+       height="1"
+       x="10"
+       y="10"
+       rx="0"
+       ry="1" />
+    <rect
+       style="opacity:1;fill:url(#linearGradient2440);fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2424"
+       width="6.9998379"
+       height="2.997915"
+       x="4.5001144"
+       y="5.501677"
+       ry="0.99999988"
+       rx="0.99999964" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/external.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,153 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16px"
+   height="16px"
+   id="svg7380"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="external.svg"
+   inkscape:export-filename="/home/hbons/Desktop/external.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs7382">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient25546">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop25548" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop25550" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient25546"
+       id="radialGradient25554"
+       cx="7.8836637"
+       cy="1.5104795"
+       fx="7.8836637"
+       fy="1.5104795"
+       r="8.4883642"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient25546"
+       id="radialGradient25568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       cx="7.8836741"
+       cy="0.14505707"
+       fx="7.8836741"
+       fy="0.14505707"
+       r="8.4883642" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient25546"
+       id="radialGradient25572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.994693,0,4.16407e-2)"
+       cx="7.8836637"
+       cy="1.5104795"
+       fx="7.8836637"
+       fy="1.5104795"
+       r="8.4883642" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.197802"
+     inkscape:cx="15.928713"
+     inkscape:cy="7.0990099"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     width="24px"
+     height="24px"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="872"
+     inkscape:window-height="626"
+     inkscape:window-x="6"
+     inkscape:window-y="94" />
+  <metadata
+     id="metadata7385">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1.0481478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path7388"
+       sodipodi:cx="7.8836637"
+       sodipodi:cy="7.8460393"
+       sodipodi:rx="7.8836637"
+       sodipodi:ry="7.838614"
+       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
+       transform="matrix(0.951334,0,0,0.956802,0.5,0.492896)" />
+    <path
+       style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 10.90625,2 C 9.7428141,2 8.7812499,2.8959991 8.78125,4 C 8.78125,5.1040008 9.7428141,5.9999999 10.90625,6 C 12.069686,6 13,5.1040007 13,4 C 13,2.8959992 12.069686,2 10.90625,2 z M 4,3 C 2.8960002,3 2,3.8959993 2,5 C 2,5.4301796 2.1436219,5.8299355 2.375,6.15625 C 1.573931,6.5477359 0.99999996,7.6683 1,9 C 1,10.656 1.8960002,12 3,12 C 4.1039998,12 5.0000002,10.655999 5,9 C 5,8.2118079 4.7692756,7.5043072 4.4375,6.96875 C 5.3340078,6.771061 6.0000002,5.9556507 6,5 C 6,3.8959992 5.1039998,3 4,3 z M 11.5,6 C 9.568,6 8.0000001,7.1200004 8,8.5 C 8,9.5086172 8.8261102,10.38618 10.03125,10.78125 C 10.116966,12.025862 10.730396,13 11.5,13 C 12.269604,13 12.883034,12.025862 12.96875,10.78125 C 14.17389,10.38618 15,9.5086171 15,8.5 C 15,7.1200006 13.432,6 11.5,6 z "
+       id="path8277" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#radialGradient25554);fill-opacity:1;stroke:#eeeeec;stroke-width:1.20940173;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path8275"
+       sodipodi:cx="7.8836637"
+       sodipodi:cy="7.8460393"
+       sodipodi:rx="7.8836637"
+       sodipodi:ry="7.838614"
+       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
+       transform="matrix(0.824489,0,0,0.829228,1.5,1.493846)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.2544643;fill:url(#radialGradient25568);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path25566"
+       sodipodi:cx="7.8836637"
+       sodipodi:cy="7.8460393"
+       sodipodi:rx="7.8836637"
+       sodipodi:ry="7.838614"
+       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
+       transform="matrix(0.443956,0,0,0.829228,4.5,1.493846)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.25892855;fill:url(#radialGradient25572);fill-opacity:1;stroke:#eeeeec;stroke-width:1.64813614;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path25570"
+       sodipodi:cx="7.8836637"
+       sodipodi:cy="7.8460393"
+       sodipodi:rx="7.8836637"
+       sodipodi:ry="7.838614"
+       d="M 15.767327 7.8460393 A 7.8836637 7.838614 0 1 1  0,7.8460393 A 7.8836637 7.838614 0 1 1  15.767327 7.8460393 z"
+       transform="matrix(0,0.443956,-0.829228,0,14.50615,4.5)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/female.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg1307"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh"
+   sodipodi:docname="female.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs1309">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2206">
+      <stop
+         style="stop-color:#c372cf;stop-opacity:1;"
+         offset="0"
+         id="stop2208" />
+      <stop
+         style="stop-color:#c372cf;stop-opacity:0;"
+         offset="1"
+         id="stop2210" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2206"
+       id="linearGradient2212"
+       x1="8.7527227"
+       y1="8.5870285"
+       x2="8.7527227"
+       y2="-0.61677557"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="44.395605"
+     inkscape:cx="15.206295"
+     inkscape:cy="6.2089057"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     fill="#729fcf"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata1312">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1305"
+       sodipodi:cx="5.0230198"
+       sodipodi:cy="5.3570547"
+       sodipodi:rx="3.3111386"
+       sodipodi:ry="2.6917078"
+       d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417"
+       sodipodi:start="1.5049493"
+       sodipodi:end="1.5091025"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1307"
+       sodipodi:cx="2.8944306"
+       sodipodi:cy="2.8680694"
+       sodipodi:rx="1.4303218"
+       sodipodi:ry="1.4190594"
+       d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291"
+       sodipodi:start="1.5049493"
+       sodipodi:end="1.5091025"
+       sodipodi:open="true" />
+    <path
+       style="opacity:1;fill:url(#linearGradient2212);fill-opacity:1.0;stroke:#c7349f;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 8.03125 1.5 C 6.0362037 1.7252787 4.4999999 3.4448511 4.5 5.5 C 4.5 7.3629757 5.7751975 8.9308504 7.5 9.375 L 7.5 10.5 L 5.5 10.5 L 5.5 12.5 L 7.5 12.5 L 7.5 14.5 L 9.5 14.5 L 9.5 12.5 L 11.5 12.5 L 11.5 10.5 L 9.5 10.5 L 9.5 9.375 C 11.224803 8.9308505 12.5 7.3629757 12.5 5.5 C 12.5 3.2920288 10.707789 1.5 8.5 1.5 C 8.3965099 1.5 8.2890204 1.4922668 8.1875 1.5 C 8.1391192 1.5036853 8.0791311 1.4945933 8.03125 1.5 z M 8.34375 3.5 C 8.3943599 3.4961452 8.4484081 3.5 8.5 3.5 C 9.6006259 3.4999999 10.5 4.3993736 10.5 5.5 C 10.5 6.6006265 9.6006264 7.5 8.5 7.5 C 7.3993732 7.5000001 6.5 6.6006264 6.5 5.5 C 6.5 4.4509656 7.3146811 3.5783814 8.34375 3.5 z "
+       id="path1313" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/free-for-chat.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable"
+   sodipodi:docname="free-for-chat.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/toolbars/16/emote-select.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3104">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3106" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3108" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3104"
+       id="radialGradient3114"
+       cx="8.0159302"
+       cy="14.49998"
+       fx="8.0159302"
+       fy="14.49998"
+       r="9.975256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.9327,0.932656,-0.947494,-0.947449,33.02126,11.96667)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="36.388908"
+     inkscape:cx="15.503334"
+     inkscape:cy="8.5115617"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#2e3436"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="47"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(1.203929,0,0,0.844757,-4.940617,5.165834)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#f57900;stroke-width:1.33385623;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1307"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
+       transform="matrix(0.751566,0,0,0.751566,-0.873654,-0.255014)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.79545456;fill:url(#radialGradient3114);fill-opacity:1;stroke:none;stroke-width:1.05274069;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3102"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
+       transform="matrix(0.601488,0,0,0.601488,0.898734,1.393846)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.7;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.53516853;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2184"
+       sodipodi:cx="11.806158"
+       sodipodi:cy="10.983024"
+       sodipodi:rx="9.975256"
+       sodipodi:ry="9.975256"
+       d="M 21.781414 10.983024 A 9.975256 9.975256 0 1 1  1.8309021,10.983024 A 9.975256 9.975256 0 1 1  21.781414 10.983024 z"
+       transform="matrix(0.651393,0,0,0.651393,0.308855,0.845039)" />
+    <path
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 11.991472,9 C 11.581026,10.712824 9.995676,12.047691 7.997585,12 C 5.999494,11.952309 4.4416249,10.740305 4.0311784,9.0274809 C 4.7686393,10.13659 6.5310171,10.513632 7.997585,10.513632 C 9.464152,10.513633 11.254011,10.109109 11.991472,9 z "
+       id="path2186"
+       sodipodi:nodetypes="czcsc"
+       transform="matrix(1,0,0,1.332783,0,-2.995046)" />
+    <rect
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2243"
+       width="1"
+       height="3"
+       x="6"
+       y="5"
+       ry="0.5" />
+    <rect
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2246"
+       width="1"
+       height="3"
+       x="9"
+       y="5"
+       ry="0.5"
+       rx="0.5" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#f57900;stroke-width:0.92844784;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path5203"
+       sodipodi:cx="0.90686977"
+       sodipodi:cy="4.6503878"
+       sodipodi:rx="2.2534339"
+       sodipodi:ry="2.3908384"
+       d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1  -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1  3.1603037 4.6503878 z"
+       transform="matrix(1.109418,0,0,1.045658,11.9939,-1.862717)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.7;fill:none;fill-opacity:1;stroke:#eeeeec;stroke-width:1.54741251;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path6090"
+       sodipodi:cx="0.90686977"
+       sodipodi:cy="4.6503878"
+       sodipodi:rx="2.2534339"
+       sodipodi:ry="2.3908384"
+       d="M 3.1603037 4.6503878 A 2.2534339 2.3908384 0 1 1  -1.3465642,4.6503878 A 2.2534339 2.3908384 0 1 1  3.1603037 4.6503878 z"
+       transform="matrix(0.665651,0,0,0.627395,12.39634,8.236986e-2)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/game.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/GUI/Tango/Gaim Refresh/emblems/scalable"
+   sodipodi:docname="game.svg"
+   inkscape:export-filename="/home/hbons/GUI/Tango/Gaim Refresh/emblems/game.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2264">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop2266" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop2268" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2264"
+       id="linearGradient2270"
+       x1="8"
+       y1="3.5630622"
+       x2="8"
+       y2="11.671161"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="39.000665"
+     inkscape:cx="14.206455"
+     inkscape:cy="7.7355854"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     showgrid="true"
+     fill="#eeeeec"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="47">
+    <sodipodi:guide
+       orientation="vertical"
+       position="-845.97209"
+       id="guide1317" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="fill:#444643;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 3.9835017,1.4980972 L 11.999829,1.4980972 C 13.394769,1.4980972 14.517772,2.6210999 14.517772,4.0160406 L 14.517772,11.982734 C 14.517772,13.377675 13.394769,14.500678 11.999829,14.500678 L 3.9835017,14.500678 C 2.588561,14.500678 1.4655583,13.377675 1.4655583,11.982734 L 1.4655583,4.0160406 C 1.4655583,2.6210999 2.588561,1.4980972 3.9835017,1.4980972 z "
+       id="path2254" />
+    <path
+       style="fill:#f13d3d;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4.0064655,1.4999056 L 11.99231,1.4999056 C 13.381945,1.4999056 14.500677,2.6226961 14.500677,4.0173732 L 14.500677,11.982561 C 14.500677,13.377238 13.381945,14.500029 11.99231,14.500029 L 4.0064655,14.500029 C 2.6168293,14.500029 1.4980971,13.377238 1.4980971,11.982561 L 1.4980971,4.0173732 C 1.4980971,2.6226961 2.6168293,1.4999056 4.0064655,1.4999056 z "
+       id="rect2233" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0076212"
+       inkscape:original="M 4 1.5 C 2.6103638 1.5 1.5 2.636573 1.5 4.03125 L 1.5 11.96875 C 1.5 13.363427 2.6103639 14.5 4 14.5 L 12 14.5 C 13.389635 14.5 14.5 13.363427 14.5 11.96875 L 14.5 4.03125 C 14.5 2.6365729 13.389635 1.5 12 1.5 L 4 1.5 z "
+       xlink:href="#rect2233"
+       style="fill:url(#linearGradient2270);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1;opacity:0.3"
+       id="path2252"
+       inkscape:href="#rect2233"
+       d="M 3.96875,2.5 C 3.1210101,2.5 2.46875,3.1684612 2.46875,4.03125 L 2.46875,11.96875 C 2.46875,12.831539 3.1210101,13.5 3.96875,13.5 L 12,13.5 C 12.847739,13.5 13.53125,12.81649 13.53125,11.96875 L 13.53125,4.03125 C 13.53125,3.1835106 12.847739,2.5 12,2.5 L 3.96875,2.5 z " />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2235"
+       sodipodi:cx="5.0328703"
+       sodipodi:cy="5.3124371"
+       sodipodi:rx="0.68011761"
+       sodipodi:ry="0.77727729"
+       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
+       transform="matrix(2.205501,0,0,1.929813,-5.600001,-4.75201)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2272"
+       sodipodi:cx="5.0328703"
+       sodipodi:cy="5.3124371"
+       sodipodi:rx="0.68011761"
+       sodipodi:ry="0.77727729"
+       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
+       transform="matrix(2.205501,0,0,1.929813,-5.6,0.24799)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2274"
+       sodipodi:cx="5.0328703"
+       sodipodi:cy="5.3124371"
+       sodipodi:rx="0.68011761"
+       sodipodi:ry="0.77727729"
+       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
+       transform="matrix(2.205501,0,0,1.929813,-0.600001,0.24799)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2276"
+       sodipodi:cx="5.0328703"
+       sodipodi:cy="5.3124371"
+       sodipodi:rx="0.68011761"
+       sodipodi:ry="0.77727729"
+       d="M 5.7129879 5.3124371 A 0.68011761 0.77727729 0 1 1  4.3527527,5.3124371 A 0.68011761 0.77727729 0 1 1  5.7129879 5.3124371 z"
+       transform="matrix(2.205501,0,0,1.929813,-0.6,-4.75201)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/male.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,113 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg1307"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh"
+   sodipodi:docname="male.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/female.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs1309">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2248">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop2250" />
+      <stop
+         style="stop-color:#729fcf;stop-opacity:0"
+         offset="1"
+         id="stop2252" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2248"
+       id="linearGradient2254"
+       x1="8.4317303"
+       y1="8.3947935"
+       x2="7.0192189"
+       y2="2.5513308"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="25.498579"
+     inkscape:cx="15.206295"
+     inkscape:cy="6.2089057"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     fill="#729fcf"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <metadata
+     id="metadata1312">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1305"
+       sodipodi:cx="5.0230198"
+       sodipodi:cy="5.3570547"
+       sodipodi:rx="3.3111386"
+       sodipodi:ry="2.6917078"
+       d="M 5.2408909,8.0429293 A 3.3111386,2.6917078 0 0 1 5.227167,8.0436417"
+       sodipodi:start="1.5049493"
+       sodipodi:end="1.5091025"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.59659095;fill:#ad7fa8;fill-opacity:1;stroke:#ad7fa8;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1307"
+       sodipodi:cx="2.8944306"
+       sodipodi:cy="2.8680694"
+       sodipodi:rx="1.4303218"
+       sodipodi:ry="1.4190594"
+       d="M 2.988545,4.2840535 A 1.4303218,1.4190594 0 0 1 2.9826167,4.2844291"
+       sodipodi:start="1.5049493"
+       sodipodi:end="1.5091025"
+       sodipodi:open="true" />
+    <path
+       style="opacity:1;fill:url(#linearGradient2254);fill-opacity:1.0;stroke:#3465a4;stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 9.5625001,2.5052306 L 10.8125,3.730362 L 8.5312501,6.0235566 C 7.9356185,5.6694146 7.2416791,5.4581114 6.5000001,5.4581114 C 4.2922116,5.4581114 2.5,7.2595228 2.5000001,9.4790554 C 2.5000001,11.698588 4.2922117,13.5 6.5000001,13.5 C 8.7077886,13.5 10.5,11.698588 10.5,9.4790554 C 10.5,8.7334313 10.289768,8.0359696 9.9375001,7.4371697 L 12.21875,5.1439751 L 13.5,6.4005201 L 13.5,2.5052306 L 9.5625001,2.5052306 z M 6.4062501,7.5314106 C 6.4402689,7.529683 6.4655548,7.5314106 6.5000001,7.5314106 C 7.6022508,7.5314105 8.5000001,8.4387958 8.5000001,9.5418826 C 8.4999997,10.644969 7.6022508,11.552355 6.5000001,11.552355 C 5.3977495,11.552355 4.5000001,10.644969 4.5000001,9.5418826 C 4.5000001,8.4732675 5.3516684,7.5849654 6.4062501,7.5314106 z "
+       id="path1313" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/mobile.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,264 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
+   sodipodi:docname="mobile.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/mobile.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3335">
+      <stop
+         style="stop-color:#204a87;stop-opacity:1;"
+         offset="0"
+         id="stop3337" />
+      <stop
+         style="stop-color:#204a87;stop-opacity:0;"
+         offset="1"
+         id="stop3339" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3300">
+      <stop
+         style="stop-color:#204a87;stop-opacity:1;"
+         offset="0"
+         id="stop3302" />
+      <stop
+         style="stop-color:#204a87;stop-opacity:0;"
+         offset="1"
+         id="stop3304" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3300"
+       id="linearGradient3315"
+       gradientUnits="userSpaceOnUse"
+       x1="-0.0061673229"
+       y1="11.454797"
+       x2="5.6395993"
+       y2="11.454797"
+       gradientTransform="matrix(0.580679,0,0,0.709346,1.207372,-1.624473)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3335"
+       id="linearGradient3341"
+       x1="-27.615904"
+       y1="21.696934"
+       x2="-19.2363"
+       y2="18.633484"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3300"
+       id="linearGradient3353"
+       x1="-28.160521"
+       y1="22.551313"
+       x2="-18.170761"
+       y2="17.799398"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="36.388908"
+     inkscape:cx="12.47515"
+     inkscape:cy="8.110346"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#888a85"
+     inkscape:window-width="1268"
+     inkscape:window-height="972"
+     inkscape:window-x="6"
+     inkscape:window-y="21"
+     inkscape:grid-points="true" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000036;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect1331"
+       width="7.9919939"
+       height="12.993911"
+       x="7.5040998"
+       y="1.504545" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0228416"
+       inkscape:original="M 7.5 1.5 L 7.5 14.5 L 15.5 14.5 L 15.5 1.5 L 7.5 1.5 z "
+       xlink:href="#rect1331"
+       style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99199408px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2206"
+       inkscape:href="#rect1331"
+       d="M 8.53125,2.53125 L 8.53125,13.46875 L 14.46875,13.46875 L 14.46875,2.53125 L 8.53125,2.53125 z "
+       transform="matrix(1.010173,0,0,1.005973,-0.115518,-4.844059e-2)" />
+    <rect
+       style="fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:0.99999928px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2208"
+       width="3.9807076"
+       height="3.0005636"
+       x="9.5027981"
+       y="3.499944" />
+    <path
+       style="opacity:0.38150288;color:#000000;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       d="M 9,3 L 9,6 C 9.6849325,5.8078592 10.39969,5.560911 11.098766,5.2718451 C 12.171483,4.8282801 13.137384,4.3213781 14,3.7572819 L 14,3 L 9,3 z "
+       id="path2220" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2233"
+       width="1"
+       height="1"
+       x="9"
+       y="8" />
+    <path
+       sodipodi:type="spiral"
+       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:7.08695936px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3252"
+       sodipodi:cx="-11"
+       sodipodi:cy="17"
+       sodipodi:expansion="1"
+       sodipodi:revolution="1.1139722"
+       sodipodi:radius="17.723295"
+       sodipodi:argument="-9.424778"
+       sodipodi:t0="0.70807511"
+       d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734"
+       transform="matrix(0.120201,5.654854e-2,-4.742318e-2,0.143331,9.572983,5.110321)" />
+    <path
+       sodipodi:type="spiral"
+       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:3.73703289px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3254"
+       sodipodi:cx="-11"
+       sodipodi:cy="17"
+       sodipodi:expansion="1"
+       sodipodi:revolution="1.1157676"
+       sodipodi:radius="17.751867"
+       sodipodi:argument="-9.424778"
+       sodipodi:t0="0.69832003"
+       d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947"
+       transform="matrix(0.219568,0.111334,-8.662678e-2,0.282195,10.94256,3.73758)" />
+    <path
+       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000131px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 4.5539611,12.498317 C 2.0020373,11.459655 0.92343648,7.5201545 1.7880505,4.3367901 C 2.2231942,2.7346624 3.0921081,1.3783732 4.1882245,0.50356567"
+       id="path3256"
+       sodipodi:nodetypes="csc" />
+    <rect
+       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect3355"
+       width="1"
+       height="1"
+       x="7"
+       y="1" />
+    <rect
+       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect1340"
+       width="1"
+       height="1"
+       x="15"
+       y="1" />
+    <rect
+       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect1342"
+       width="1"
+       height="1"
+       x="15"
+       y="14" />
+    <rect
+       style="opacity:0.5;fill:#eeeeec;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect1344"
+       width="1"
+       height="1"
+       x="7"
+       y="14" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2220"
+       width="1"
+       height="1"
+       x="11"
+       y="8" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2222"
+       width="1"
+       height="1"
+       x="13"
+       y="8" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2224"
+       width="1"
+       height="1"
+       x="13"
+       y="10" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2226"
+       width="1"
+       height="1"
+       x="11"
+       y="10" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2228"
+       width="1"
+       height="1"
+       x="9"
+       y="10" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2230"
+       width="1"
+       height="1"
+       x="9"
+       y="12" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2232"
+       width="1"
+       height="1"
+       x="11"
+       y="12" />
+    <rect
+       style="opacity:0.84393065;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="rect2234"
+       width="1"
+       height="1"
+       x="13"
+       y="12" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/music.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,189 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:modified="true"
+   version="1.0"
+   sodipodi:docname="music.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3185">
+      <stop
+         style="stop-color:#4e9a06;stop-opacity:1;"
+         offset="0"
+         id="stop3187" />
+      <stop
+         style="stop-color:#4e9a06;stop-opacity:0"
+         offset="1"
+         id="stop3189" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3177">
+      <stop
+         style="stop-color:#4e9a06;stop-opacity:1;"
+         offset="0"
+         id="stop3179" />
+      <stop
+         style="stop-color:#4e9a06;stop-opacity:0;"
+         offset="1"
+         id="stop3181" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3153">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3155" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3157" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3153"
+       id="linearGradient3159"
+       x1="2.5409546"
+       y1="10.048674"
+       x2="10.378205"
+       y2="15.928688"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3177"
+       id="radialGradient3183"
+       cx="5.2116022"
+       cy="8.4051199"
+       fx="5.2116022"
+       fy="8.4051199"
+       r="2.9404981"
+       gradientTransform="matrix(2.6050387,0,0,2.2888674,-8.415579,-10.767812)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3185"
+       id="radialGradient3191"
+       cx="5.1978397"
+       cy="8.4135866"
+       fx="5.1978397"
+       fy="8.4135866"
+       r="3.1428281"
+       gradientTransform="matrix(2.8202152,0,0,2.4999643,-9.461187,-12.455954)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     gridtolerance="10000"
+     guidetolerance="10"
+     objecttolerance="10"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.4"
+     inkscape:cx="19.784002"
+     inkscape:cy="11.848"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     width="16px"
+     height="16px"
+     showgrid="true"
+     inkscape:window-width="1440"
+     inkscape:window-height="847"
+     inkscape:window-x="0"
+     inkscape:window-y="22" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#222728;stroke-width:1.14297926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2160"
+       sodipodi:cx="6.4712896"
+       sodipodi:cy="14.484771"
+       sodipodi:rx="3.5986683"
+       sodipodi:ry="2.1781414"
+       d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1  2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1  10.069958 14.484771 z"
+       transform="matrix(0.8336417,0,0,0.918214,4.1052631,-0.8001194)" />
+    <rect
+       style="opacity:1;fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3143"
+       width="1"
+       height="12"
+       x="12"
+       y="1"
+       rx="0.18940361"
+       ry="0.20662212" />
+    <path
+       style="fill:#222728;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.006464,3.0203051 L 11.981638,1 C 13.945163,1 17.837365,1.1548232 14.996311,7.9684328 C 15.596089,2.2547574 13.743811,3.0203051 12.006464,3.0203051 z "
+       id="rect3146"
+       sodipodi:nodetypes="cccc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#555753;fill-opacity:1;stroke:url(#linearGradient3159);stroke-width:1.97969818;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3151"
+       sodipodi:cx="6.4712896"
+       sodipodi:cy="14.484771"
+       sodipodi:rx="3.5986683"
+       sodipodi:ry="2.1781414"
+       d="M 10.069958 14.484771 A 3.5986683 2.1781414 0 1 1  2.8726213,14.484771 A 3.5986683 2.1781414 0 1 1  10.069958 14.484771 z"
+       transform="matrix(0.5557611,0,0,0.4591071,5.903509,5.8499391)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3191);stroke-width:0.98568761;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3173"
+       sodipodi:cx="8.0970039"
+       sodipodi:cy="11.122857"
+       sodipodi:rx="4.3089318"
+       sodipodi:ry="3.5513175"
+       d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672"
+       transform="matrix(1.0443424,0,0,0.9855497,-0.4560443,3.7870959e-2)"
+       sodipodi:start="2.8475788"
+       sodipodi:end="4.9442449"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;stroke:url(#radialGradient3183);stroke-width:0.58102763;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3175"
+       sodipodi:cx="8.0970039"
+       sodipodi:cy="11.122857"
+       sodipodi:rx="4.3089318"
+       sodipodi:ry="3.5513175"
+       d="M 3.9729753,12.152015 A 4.3089318,3.5513175 0 0 1 9.0871283,7.6665672"
+       transform="matrix(1.6981233,0,0,1.7443645,-5.9310642,-8.697544)"
+       sodipodi:start="2.8475788"
+       sodipodi:end="4.9442449"
+       sodipodi:open="true" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/not-authorized.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
+   sodipodi:docname="not-authorized.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/voice.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3300">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3302" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop3304" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3300"
+       id="linearGradient3306"
+       x1="8.6152382"
+       y1="-9.8347273"
+       x2="8.6152382"
+       y2="12.348849"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="39.000665"
+     inkscape:cx="13.905353"
+     inkscape:cy="8.018215"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#eeeeec"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2200"
+       width="0"
+       height="1"
+       x="13"
+       y="4" />
+    <path
+       style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z "
+       id="path3298" />
+    <path
+       style="opacity:1;fill:url(#linearGradient3306);fill-opacity:1.0;fill-rule:evenodd;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 7.4375 0.5 C 3.5645752 0.79220137 0.49999998 4.0537353 0.5 8 C 0.5 12.138223 3.8611989 15.5 8 15.5 C 12.138801 15.5 15.5 12.138223 15.5 8 C 15.5 3.8617774 12.138801 0.49999998 8 0.5 C 7.8706625 0.49999998 7.7527358 0.49351902 7.625 0.5 C 7.563128 0.50313923 7.498975 0.49536188 7.4375 0.5 z M 7.59375 2.5 C 7.6388078 2.4965991 7.6733994 2.502301 7.71875 2.5 C 7.812377 2.4952496 7.905199 2.5 8 2.5 C 8.9717099 2.5 9.8946048 2.7438747 10.6875 3.1875 L 3.1875 10.6875 C 2.7438131 9.8947148 2.5 8.9715754 2.5 8 C 2.5000001 5.1074903 4.7551106 2.7142577 7.59375 2.5 z M 12.8125 5.3125 C 13.256187 6.1052852 13.5 7.0284247 13.5 8 C 13.5 11.03321 11.033631 13.5 8 13.5 C 7.0282899 13.5 6.1053952 13.256125 5.3125 12.8125 L 12.8125 5.3125 z "
+       id="path3278" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/qq-member.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,198 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems/scalable"
+   sodipodi:docname="qq-member.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/qq-member.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="31.678384"
+     inkscape:cx="14.657198"
+     inkscape:cy="9.1928113"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     fill="#f57900"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2344"
+       sodipodi:cx="3.4614794"
+       sodipodi:cy="19.897507"
+       sodipodi:rx="3.8204477"
+       sodipodi:ry="1.8461224"
+       d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1  -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1  7.2819271 19.897507 z"
+       transform="matrix(0.76425,0,0,0.77926,8.868813,-1.507098)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.46078622;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2340"
+       sodipodi:cx="3.4614794"
+       sodipodi:cy="19.897507"
+       sodipodi:rx="3.8204477"
+       sodipodi:ry="1.8461224"
+       d="M 7.2819271 19.897507 A 3.8204477 1.8461224 0 1 1  -0.35896826,19.897507 A 3.8204477 1.8461224 0 1 1  7.2819271 19.897507 z"
+       transform="matrix(0.76425,0,0,0.77926,1.868813,-1.507098)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.17369032;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2346"
+       sodipodi:cx="11.230577"
+       sodipodi:cy="16.820635"
+       sodipodi:rx="7.0768023"
+       sodipodi:ry="5.7434916"
+       d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1  4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1  18.30738 16.820635 z"
+       transform="matrix(0.284233,0,0,0.349298,-0.692104,3.624594)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:3.14814281;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2348"
+       sodipodi:cx="11.230577"
+       sodipodi:cy="16.820635"
+       sodipodi:rx="7.0768023"
+       sodipodi:ry="5.7434916"
+       d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1  4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1  18.30738 16.820635 z"
+       transform="matrix(0.287243,0,0,0.35127,10.30629,3.574208)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:1.28010798;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2322"
+       sodipodi:cx="11.230577"
+       sodipodi:cy="16.820635"
+       sodipodi:rx="7.0768023"
+       sodipodi:ry="5.7434916"
+       d="M 18.30738 16.820635 A 7.0768023 5.7434916 0 1 1  4.1537752,16.820635 A 7.0768023 5.7434916 0 1 1  18.30738 16.820635 z"
+       transform="matrix(0.778937,0,0,0.783435,-0.759922,-2.17753)" />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.499168,11.000754 C 12.499168,12.928874 10.484543,14.493723 8.0022374,14.493723 C 5.5199315,14.493723 3.5053065,12.928874 3.5053065,11.000754 C 3.5053065,9.0726373 5.5199315,7.5077885 8.0022374,7.5077885 C 10.484543,7.5077885 12.499168,9.0726373 12.499168,11.000754 z "
+       id="path2324" />
+    <path
+       style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000131;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 13.500455,9.0793411 C 13.500455,10.097614 11.053157,11.154467 7.858743,11.154467 C 7.0601403,11.154467 5.0724919,10.737992 2.9392977,12.494449 C 2.3961235,11.997703 1.7730984,11.677973 1.4999988,11.245381 C 2.656505,10.082571 2.1807148,9.5555594 2.1807148,9.0464228 C 2.1807148,8.0281496 4.5192556,7.4998051 7.7136673,7.4998051 C 10.908078,7.4998051 13.500455,8.0610678 13.500455,9.0793411 z "
+       id="path2338"
+       sodipodi:nodetypes="csccscc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0198945"
+       inkscape:original="M 7.71875 7.5 C 4.5243383 7.5 2.1875 8.0129766 2.1875 9.03125 C 2.1875 9.5403866 2.6565062 10.08719 1.5 11.25 C 1.7730996 11.682592 2.3943258 12.003254 2.9375 12.5 C 5.0706942 10.743543 7.0451471 11.15625 7.84375 11.15625 C 11.038164 11.15625 13.5 10.112023 13.5 9.09375 C 13.5 8.0754767 10.913161 7.5000001 7.71875 7.5 z "
+       xlink:href="#path2338"
+       style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2352"
+       inkscape:href="#path2338"
+       d="M 7.78125,7.78125 C 6.2056615,7.78125 4.8491705,7.9136549 4,8.15625 C 3.5754148,8.2775475 3.3004488,8.4430178 3.1875,8.53125 C 3.0745512,8.6194822 3.15625,8.5391895 3.15625,8.46875 C 3.15625,8.4575392 3.2894467,8.8656831 3.25,9.5 C 3.2272601,9.865665 2.8516835,10.300044 2.625,10.71875 C 2.7056245,10.790412 2.8603146,10.942134 3,11.0625 C 3.979307,10.38765 4.9560069,9.9645065 5.78125,9.84375 C 6.8285986,9.6904932 7.7226625,9.8125 7.9375,9.8125 C 9.4513866,9.8125 10.781471,9.5551666 11.65625,9.1875 C 12.09364,9.0036667 12.403103,8.7753999 12.5625,8.625 C 12.632635,8.5588241 12.610828,8.6154264 12.625,8.59375 C 12.474022,8.487747 12.139821,8.3148445 11.6875,8.1875 C 10.75734,7.925627 9.3503426,7.7812501 7.78125,7.78125 z " />
+    <path
+       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 7.1687017,0.50474152 L 8.7175626,0.50474152 C 10.884158,0.50474152 12.725973,2.4197619 13.271888,4.5023703 C 13.832643,6.6415931 13.596752,8.5000002 9.5621605,8.5000002 L 6.4045417,8.5000002 C 2.3634134,8.5000002 2.1742771,6.6415931 2.7350333,4.5023703 C 3.2579631,2.5074515 5.0021064,0.50474152 7.1687017,0.50474152 z "
+       id="rect2317"
+       sodipodi:nodetypes="ccsccsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0200312"
+       inkscape:original="M 7.15625 0.5 C 4.9896547 0.5 3.2729298 2.5050811 2.75 4.5 C 2.1892438 6.6392228 2.3651219 8.5000002 6.40625 8.5 L 9.5625 8.5 C 13.597092 8.5 13.842005 6.6392227 13.28125 4.5 C 12.735335 2.4173916 10.885345 0.49999997 8.71875 0.5 L 7.15625 0.5 z "
+       xlink:href="#rect2317"
+       style="opacity:0.1;fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2355"
+       inkscape:href="#rect2317"
+       d="M 7.15625,1.53125 C 6.3973765,1.53125 5.6771094,1.8616365 5.0625,2.46875 C 4.4478906,3.0758635 3.9933517,3.9351753 3.78125,4.75 C 3.5273221,5.7255068 3.5403429,6.426123 3.75,6.75 C 3.9596571,7.073877 4.5574314,7.4687499 6.40625,7.46875 L 9.5625,7.46875 C 11.407817,7.46875 12.033042,7.0791701 12.25,6.75 C 12.466958,6.4208299 12.471262,5.7200702 12.21875,4.75 C 11.777347,3.0542739 10.264213,1.53125 8.71875,1.53125 L 7.15625,1.53125 z " />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2326"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(0.812514,0,0,0.804137,1.499999,1.216166)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2328"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(0.812514,0,0,0.804137,5.499999,1.216166)" />
+    <path
+       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.49879,7.4976412 C 12.49879,8.5974947 10.483202,9.4901278 7.9997082,9.4901278 C 5.5162155,9.4901278 3.5006267,8.5974947 3.5006267,7.4976412 C 3.5006267,6.3977886 5.5162155,5.5051544 7.9997082,5.5051544 C 10.483202,5.5051544 12.49879,6.3977886 12.49879,7.4976412 z "
+       id="path2320" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2330"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(0.406257,0,0,0.201034,7.250001,2.804042)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2332"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(0.406257,0,0,0.201034,4.25,2.804042)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.19318183;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.99083459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2336"
+       sodipodi:cx="13.296353"
+       sodipodi:cy="10.923561"
+       sodipodi:rx="8.2214088"
+       sodipodi:ry="1.7085644"
+       d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1  5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1  21.517762 10.923561 z"
+       transform="matrix(0.427975,0,0,0.589538,2.309499,1.065602)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/secure.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16px"
+   height="16px"
+   id="svg4220"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/scalable"
+   sodipodi:docname="secure.svg"
+   inkscape:export-filename="/home/hbons/code/pidgin-mtn/pidgin/pixmaps/emblems/16/secure.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4222">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5170">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop5172" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop5174" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5160">
+      <stop
+         style="stop-color:#c4a000;stop-opacity:1;"
+         offset="0"
+         id="stop5162" />
+      <stop
+         style="stop-color:#c4a000;stop-opacity:0;"
+         offset="1"
+         id="stop5164" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5127">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop5129" />
+      <stop
+         style="stop-color:white;stop-opacity:0;"
+         offset="1"
+         id="stop5131" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5127"
+       id="linearGradient5133"
+       x1="-8.5730524"
+       y1="8.1949167"
+       x2="-8.5730524"
+       y2="14.091002"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5160"
+       id="linearGradient5166"
+       x1="-5.2575259"
+       y1="14.311456"
+       x2="-10.187596"
+       y2="11.560035"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5170"
+       id="linearGradient5176"
+       x1="-7.5400991"
+       y1="0.79740471"
+       x2="-7.5400991"
+       y2="4.7783289"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.197802"
+     inkscape:cx="8.5405941"
+     inkscape:cy="8.0965274"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="872"
+     inkscape:window-height="625"
+     inkscape:window-x="47"
+     inkscape:window-y="150" />
+  <metadata
+     id="metadata4225">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <rect
+       style="opacity:1;fill:#fce94f;fill-opacity:1;stroke:#c4a000;stroke-width:0.52907252;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect4238"
+       width="5.7297029"
+       height="6.3509903"
+       x="-6"
+       y="6"
+       transform="matrix(2.268879,0,0,1.574557,15.11327,-3.947338)"
+       rx="0.44198585"
+       ry="0.60082906" />
+    <rect
+       style="opacity:1;fill:url(#linearGradient5166);fill-opacity:1.0;stroke:url(#linearGradient5133);stroke-width:0.50402278;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5125"
+       width="5.6391087"
+       height="2.9732673"
+       x="-11"
+       y="10.458911"
+       transform="matrix(1.950662,0,0,2.017983,23.95729,-12.6059)" />
+    <rect
+       style="opacity:0.56331877;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5156"
+       width="5.1252475"
+       height="2.6569307"
+       x="-14"
+       y="6"
+       transform="matrix(2.34135,0,0,0.752748,34.7789,1.48351)" />
+    <path
+       transform="translate(15,0)"
+       style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,7.5 L -9.5,7.5 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,7.5 L -2.5,7.5 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z "
+       id="path5168"
+       sodipodi:nodetypes="ccccccccccccc" />
+    <path
+       transform="translate(15,0)"
+       style="fill:url(#linearGradient5176);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M -9.4188119,0.5 C -10.500938,0.5 -11.5,1.4812151 -11.5,2.4460396 L -11.5,6.4638614 C -11.5,7.8729886 -9.5,7.6557806 -9.5,6.5089109 L -9.4549505,4.0089109 C -9.4549505,2.4726571 -9.4588865,2.5 -8.1034653,2.5 L -5.9866337,2.5 C -4.4993176,2.5 -4.5,2.5177763 -4.5,4.0539604 L -4.5,6.5539604 C -4.5450495,7.8163699 -2.5,7.594009 -2.5,6.5539604 L -2.5,2.4910891 C -2.5,1.6080661 -3.5388679,0.54504951 -4.4460396,0.54504951 L -9.4188119,0.5 z "
+       id="rect5149"
+       sodipodi:nodetypes="ccccccccccccc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/unavailable.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
+   sodipodi:docname="unavailable.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/external.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2259">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop2261" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop2263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2259"
+       id="linearGradient2265"
+       x1="8.046875"
+       y1="6.5309725"
+       x2="8.046875"
+       y2="11.646569"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="36.388907"
+     inkscape:cx="11.666301"
+     inkscape:cy="7.6639631"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fcaf3e"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2200"
+       width="0"
+       height="1"
+       x="13"
+       y="4" />
+    <path
+       style="fill:#fcaf3e;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.0118188,2.0086319 L 15.132139,14.503373 L 0.87261571,14.491555 L 8.0118188,2.0086319 z "
+       id="rect2203"
+       sodipodi:nodetypes="cccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0233446"
+       inkscape:original="M 8 2 L 0.875 14.5 L 15.125 14.5 L 8 2 z "
+       xlink:href="#rect2203"
+       style="fill:url(#linearGradient2265);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.5"
+       id="path2249"
+       inkscape:href="#rect2203"
+       d="M 8,5.21875 L 3.59375,13.4375 L 12.4375,13.46875 L 8,5.21875 z " />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2245"
+       sodipodi:cx="7.9910712"
+       sodipodi:cy="11.647322"
+       sodipodi:rx="0.55803573"
+       sodipodi:ry="0.625"
+       d="M 8.549107 11.647322 A 0.55803573 0.625 0 1 1  7.4330355,11.647322 A 0.55803573 0.625 0 1 1  8.549107 11.647322 z"
+       transform="matrix(1.791998,0,0,1.6,-6.319984,-6.635714)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2247"
+       sodipodi:cx="8.046875"
+       sodipodi:cy="7.8526788"
+       sodipodi:rx="0.81473213"
+       sodipodi:ry="2.3214285"
+       d="M 8.8616071 7.8526788 A 0.81473213 2.3214285 0 1 1  7.2321429,7.8526788 A 0.81473213 2.3214285 0 1 1  8.8616071 7.8526788 z"
+       transform="matrix(1.227398,0,0,0.861538,-1.876721,1.23462)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/video.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,199 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
+   sodipodi:docname="video.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/video.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="51.461686"
+     inkscape:cx="12.06418"
+     inkscape:cy="5.7904142"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#fcaf3e"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2200"
+       width="1"
+       height="14"
+       x="13"
+       y="1" />
+    <rect
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2202"
+       width="1"
+       height="14"
+       x="3"
+       y="1" />
+    <rect
+       style="opacity:1;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2204"
+       width="9"
+       height="14"
+       x="4"
+       y="1" />
+    <rect
+       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2206"
+       width="4.0010238"
+       height="3.0023892"
+       x="6.4994845"
+       y="1.4988047" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2212"
+       width="1"
+       height="1"
+       x="4"
+       y="2" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2214"
+       width="1"
+       height="1"
+       x="4"
+       y="4" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2216"
+       width="1"
+       height="1"
+       x="4"
+       y="6" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2218"
+       width="1"
+       height="1"
+       x="4"
+       y="8" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2220"
+       width="1"
+       height="1"
+       x="4"
+       y="10" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2222"
+       width="1"
+       height="1"
+       x="4"
+       y="12" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2224"
+       width="1"
+       height="1"
+       x="4"
+       y="14" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2226"
+       width="1"
+       height="1"
+       x="12"
+       y="2" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2228"
+       width="1"
+       height="1"
+       x="12"
+       y="4" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2230"
+       width="1"
+       height="1"
+       x="12"
+       y="6" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2232"
+       width="1"
+       height="1"
+       x="12"
+       y="8" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2234"
+       width="1"
+       height="1"
+       x="12"
+       y="10" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2236"
+       width="1"
+       height="1"
+       x="12"
+       y="12" />
+    <rect
+       style="opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2238"
+       width="1"
+       height="1"
+       x="12"
+       y="14" />
+    <rect
+       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2247"
+       width="4.0006118"
+       height="3.009582"
+       x="6.4999485"
+       y="6.5" />
+    <rect
+       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2249"
+       width="4.0006118"
+       height="3.0014915"
+       x="6.499949"
+       y="11.498656" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/emblems/scalable/voice.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,163 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/emblems"
+   sodipodi:docname="voice.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/emblems/unavailable.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3300"
+       id="linearGradient3353"
+       x1="-25.208164"
+       y1="22.436846"
+       x2="-16.394892"
+       y2="18.959713"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3335">
+      <stop
+         style="stop-color:#204a87;stop-opacity:1;"
+         offset="0"
+         id="stop3337" />
+      <stop
+         style="stop-color:#204a87;stop-opacity:0;"
+         offset="1"
+         id="stop3339" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3335"
+       id="linearGradient3341"
+       x1="-25.494905"
+       y1="21.102697"
+       x2="-19.2363"
+       y2="18.633484"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3300">
+      <stop
+         style="stop-color:#204a87;stop-opacity:1;"
+         offset="0"
+         id="stop3302" />
+      <stop
+         style="stop-color:#204a87;stop-opacity:0;"
+         offset="1"
+         id="stop3304" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3300"
+       id="linearGradient3315"
+       gradientUnits="userSpaceOnUse"
+       x1="0.62497759"
+       y1="11.454797"
+       x2="5.6395993"
+       y2="11.454797"
+       gradientTransform="matrix(-0.759076,0,0,0.886801,13.87483,-2.157027)" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="18.194454"
+     inkscape:cx="13.592043"
+     inkscape:cy="6.9257794"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#729fcf"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="opacity:1;fill:#5c3566;fill-opacity:1;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect2200"
+       width="0"
+       height="1"
+       x="13"
+       y="4" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.64040256;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2267"
+       sodipodi:cx="3.3114488"
+       sodipodi:cy="8.5114546"
+       sodipodi:rx="1.0305338"
+       sodipodi:ry="0.89312935"
+       d="M 4.3419826 8.5114546 A 1.0305338 0.89312935 0 1 1  2.280915,8.5114546 A 1.0305338 0.89312935 0 1 1  4.3419826 8.5114546 z"
+       transform="matrix(1.453916,0,0,1.677081,-1.816259,-6.276549)" />
+    <path
+       sodipodi:type="spiral"
+       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3353);stroke-width:3.82398129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3252"
+       sodipodi:cx="-11"
+       sodipodi:cy="17"
+       sodipodi:expansion="1"
+       sodipodi:revolution="1.1139722"
+       sodipodi:radius="17.723295"
+       sodipodi:argument="-9.424778"
+       sodipodi:t0="0.70807511"
+       d="M -14.027341,29.178804 C -22.234168,28.813068 -27.756867,20.82956 -27.038836,13.013154 C -26.789036,10.293863 -25.851755,7.6562253 -24.369854,5.3654734"
+       transform="matrix(-0.236541,9.86989e-2,9.332284e-2,0.250166,-0.538748,5.57923)" />
+    <path
+       sodipodi:type="spiral"
+       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3341);stroke-width:2.61211109px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3254"
+       sodipodi:cx="-11"
+       sodipodi:cy="17"
+       sodipodi:expansion="1"
+       sodipodi:revolution="1.1157676"
+       sodipodi:radius="17.751867"
+       sodipodi:argument="-9.424778"
+       sodipodi:t0="0.69832003"
+       d="M -13.258788,29.188958 C -21.390692,29.337435 -27.331334,21.779752 -27.099873,14.016463 C -27.00639,10.881001 -25.990716,7.8068052 -24.259099,5.1963947"
+       transform="matrix(-0.326904,0.153056,0.128975,0.387943,-0.598939,4.203466)" />
+    <path
+       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient3315);stroke-width:1.00000072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 9.5000758,15.498835 C 12.836002,14.200334 14.245965,9.2752932 13.115727,5.2955524 C 12.546899,3.2926232 11.411038,1.5970337 9.9781738,0.50337707"
+       id="path3256"
+       sodipodi:nodetypes="csc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/icons/hicolor/scalable/apps/pidgin.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,610 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48px"
+   height="48px"
+   id="svg4345"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/48/scalable"
+   sodipodi:docname="pidgin.svg"
+   inkscape:export-filename="/home/hbons/Desktop/pidgin48.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4347">
+    <linearGradient
+       id="linearGradient8744"
+       inkscape:collect="always">
+      <stop
+         id="stop8746"
+         offset="0"
+         style="stop-color:#7a1d90;stop-opacity:1" />
+      <stop
+         id="stop8748"
+         offset="1"
+         style="stop-color:#6b3678;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8732">
+      <stop
+         style="stop-color:#6b3678;stop-opacity:1;"
+         offset="0"
+         id="stop8734" />
+      <stop
+         style="stop-color:#6b3678;stop-opacity:0;"
+         offset="1"
+         id="stop8736" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8904">
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="0"
+         id="stop8906" />
+      <stop
+         style="stop-color:#25486d;stop-opacity:1"
+         offset="1"
+         id="stop8908" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8884">
+      <stop
+         style="stop-color:#9a5ba8;stop-opacity:1;"
+         offset="0"
+         id="stop8886" />
+      <stop
+         style="stop-color:#6b3e75;stop-opacity:1"
+         offset="1"
+         id="stop8888" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8876">
+      <stop
+         style="stop-color:#9a5ba8;stop-opacity:1;"
+         offset="0"
+         id="stop8878" />
+      <stop
+         style="stop-color:#744380;stop-opacity:1"
+         offset="1"
+         id="stop8880" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8868">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8870" />
+      <stop
+         style="stop-color:#a646b7;stop-opacity:1"
+         offset="1"
+         id="stop8872" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8860">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop8862" />
+      <stop
+         style="stop-color:#a949b9;stop-opacity:1"
+         offset="1"
+         id="stop8864" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8848">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop8850" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop8852" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8820"
+       inkscape:collect="always">
+      <stop
+         id="stop8822"
+         offset="0"
+         style="stop-color:#522400;stop-opacity:1" />
+      <stop
+         id="stop8824"
+         offset="1"
+         style="stop-color:#6e3100;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8808">
+      <stop
+         style="stop-color:#6e3100;stop-opacity:1;"
+         offset="0"
+         id="stop8810" />
+      <stop
+         style="stop-color:#6e3100;stop-opacity:0;"
+         offset="1"
+         id="stop8812" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient8686">
+      <stop
+         style="stop-color:#fdb751;stop-opacity:1"
+         offset="0"
+         id="stop8688" />
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1"
+         offset="1"
+         id="stop8690" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2834">
+      <stop
+         style="stop-color:#7e408d;stop-opacity:1"
+         offset="0"
+         id="stop2836" />
+      <stop
+         style="stop-color:#82508e;stop-opacity:0;"
+         offset="1"
+         id="stop2838" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2826">
+      <stop
+         style="stop-color:#3b1941;stop-opacity:1;"
+         offset="0"
+         id="stop2828" />
+      <stop
+         style="stop-color:#3b1941;stop-opacity:0;"
+         offset="1"
+         id="stop2830" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2816">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop2818" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop2820" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6537">
+      <stop
+         style="stop-color:white;stop-opacity:1;"
+         offset="0"
+         id="stop6539" />
+      <stop
+         style="stop-color:#d3e1f1;stop-opacity:1"
+         offset="1"
+         id="stop6541" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient6506">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.95477384"
+         offset="0"
+         id="stop6508" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop6510" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6506"
+       id="linearGradient6512"
+       x1="15.645709"
+       y1="40.668503"
+       x2="15.645709"
+       y2="47.022106"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2816"
+       id="radialGradient2824"
+       cx="14.930223"
+       cy="25.801632"
+       fx="14.930223"
+       fy="25.801632"
+       r="16.390338"
+       gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2826"
+       id="linearGradient2832"
+       x1="13.191773"
+       y1="41.606163"
+       x2="13.191773"
+       y2="49.067719"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2834"
+       id="linearGradient2840"
+       x1="11.373499"
+       y1="43.444576"
+       x2="11.373499"
+       y2="47.757988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8686"
+       id="linearGradient8692"
+       x1="18.5"
+       y1="29.911009"
+       x2="19.985121"
+       y2="29.853554"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)" />
+    <filter
+       inkscape:collect="always"
+       id="filter8730">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.27197245"
+         id="feGaussianBlur8732" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       id="filter8792"
+       x="-0.095301818"
+       width="1.1906036"
+       y="-0.27704017"
+       height="1.5540803">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.31022727"
+         id="feGaussianBlur8794" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8820"
+       id="linearGradient8814"
+       x1="18.339697"
+       y1="29.338558"
+       x2="18.031723"
+       y2="30.431053"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8808"
+       id="linearGradient8818"
+       gradientUnits="userSpaceOnUse"
+       x1="17.969458"
+       y1="29.494703"
+       x2="18.143806"
+       y2="30.188351" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8848"
+       id="linearGradient8854"
+       x1="10.48653"
+       y1="25.21174"
+       x2="9.7512932"
+       y2="23.675837"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8848"
+       id="linearGradient8858"
+       gradientUnits="userSpaceOnUse"
+       x1="10.498732"
+       y1="24.936121"
+       x2="9.6415968"
+       y2="23.675837" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8860"
+       id="linearGradient8866"
+       x1="13.061977"
+       y1="10.027351"
+       x2="16.545418"
+       y2="12.891665"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.50247,0,0,1,-6.5946403,-2.139701)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8868"
+       id="linearGradient8874"
+       x1="12.409452"
+       y1="10.602999"
+       x2="16.140554"
+       y2="13.895189"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.236264,0,0,0.549587,-5.4828863,3.775206)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8876"
+       id="linearGradient8882"
+       x1="10.46875"
+       y1="25.3125"
+       x2="9.53125"
+       y2="19.6875"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8884"
+       id="linearGradient8890"
+       x1="23.881994"
+       y1="24.343237"
+       x2="24.973602"
+       y2="19.216713"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8904"
+       id="linearGradient8910"
+       x1="26.125"
+       y1="1.8037834"
+       x2="41.875"
+       y2="33.678783"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8744"
+       id="linearGradient8738"
+       x1="4.0852318"
+       y1="39.097038"
+       x2="4.0852318"
+       y2="44.321774"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8732"
+       id="linearGradient8742"
+       gradientUnits="userSpaceOnUse"
+       x1="4.0852318"
+       y1="40.416641"
+       x2="4.0852318"
+       y2="43.352409"
+       gradientTransform="matrix(-1,0,0,1,37.022732,0)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6537"
+       id="linearGradient7977"
+       gradientUnits="userSpaceOnUse"
+       x1="30.5"
+       y1="4.8871226"
+       x2="30.5"
+       y2="22.781603" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.828427"
+     inkscape:cx="63.722923"
+     inkscape:cy="33.120105"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1434"
+     inkscape:window-height="840"
+     inkscape:window-x="-2"
+     inkscape:window-y="0"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:grid-points="true"
+     inkscape:snap-bbox="true"
+     inkscape:snap-nodes="false"
+     objecttolerance="10"
+     gridtolerance="10">
+    <inkscape:grid
+       type="xygrid"
+       id="grid7914"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata4350">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8910);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.192693,27.5 20.53125,27.5 L 34.530203,27.5 C 34.530203,27.5 34.406442,30.680041 32.92887,32.534344 C 38.120414,32.534344 39.353553,27.485509 39.353553,27.485509 L 41.5,27.5 C 45.512737,27.5 46.5,24.38319 46.5,20.53125 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z"
+       id="rect5498"
+       sodipodi:nodetypes="cccccccccccc" />
+    <path
+       style="fill:url(#linearGradient7977);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.53125,2.5 C 17.815701,2.5 15.5,5.0778932 15.5,8.46875 L 15.5,20.53125 C 15.5,23.922107 17.815701,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082875,26.501589 35.529661,26.948375 35.53125,27.5 C 35.53125,27.5 35.367799,30.212738 34.75,31.34218 C 36.852551,31.34218 38.53125,26.6875 38.53125,26.6875 C 38.704261,26.563588 38.912203,26.497922 39.125,26.5 L 41.5,26.5 C 43.246736,26.5 44.065452,25.932701 44.65625,24.9375 C 45.247048,23.942299 45.5,22.371547 45.5,20.53125 L 45.5,8.46875 C 45.5,5.0778935 43.184299,2.5 40.46875,2.5 L 20.53125,2.5 z"
+       id="path6535"
+       sodipodi:nodetypes="ccccccccccscccc" />
+    <rect
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect8734"
+       width="7"
+       height="1.8602936"
+       x="15.642976"
+       y="26.409245"
+       rx="0.81387848"
+       ry="0.93014681" />
+    <path
+       style="fill:url(#linearGradient8866);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 10.968089,7.6821669 C 13.825874,5.8764931 18.683474,9.095739 19.201853,10.751964 L 15.25649,10.751964 C 15.19399,8.408214 10.968089,7.6821669 10.968089,7.6821669 z"
+       id="rect5189"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:url(#linearGradient8874);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.9209727,9.9271812 C 10.543462,8.0699992 15.5336,9.5097671 15.5336,10.860297 L 11.743475,11.411821 C 12.958815,9.7987339 8.9209727,9.9271812 8.9209727,9.9271812 z"
+       id="path5192"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:1;fill:url(#linearGradient2840);fill-opacity:1;stroke:url(#linearGradient2832);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 16.447354,10.481822 C 9.8233516,10.481822 3.9308558,15.93012 4.5098537,22.712688 C 5.7768579,37.554787 1.9403503,35.543378 1.5,42.316391 C 1.5,44.375904 2.4854201,45.355587 4.5920502,45.355587 C 5.7795388,45.355587 30.807389,45.5 33.498388,45.5 C 35.612515,45.5 35.447354,43.46472 35.447354,43.46472 C 35.447354,40.830782 29.045256,38.620654 27.260807,36.687231 C 25.432389,34.709838 27.447354,27.653648 27.447354,27.653648 C 28.08866,26.141912 28.447354,24.466812 28.447354,22.712688 C 28.447354,15.894164 23.071356,10.481822 16.447354,10.481822 z"
+       id="path5176"
+       sodipodi:nodetypes="cscccszcsc" />
+    <path
+       style="opacity:0.55000000000000004;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16.25,11.5 C 10.237704,11.5 5.0276636,16.611038 5.4999997,22.834065 C 6.0644244,30.27036 5.8175038,32.821583 4.0236672,37.541192 C 1.1437418,42.286379 3.1235207,44.533069 5.4658637,44.533069 C 7.4024447,44.533069 25.520621,44.503627 31.346594,44.503627 C 32.513801,44.503627 34.5,45.001748 34.5,43.554478 C 34.5,43.335354 34.300249,42.923343 33.75,42.411881 C 33.199751,41.90042 32.37676,41.351214 31.46875,40.806069 C 30.56074,40.260924 29.59071,39.709456 28.71875,39.169376 C 27.84679,38.629297 27.074154,38.125147 26.53125,37.409159 C 25.921245,36.604678 25.641306,35.658991 25.586842,34.629869 C 25.532378,33.600747 25.670221,32.49665 25.787061,31.449126 C 26.020741,29.354077 26.53125,27.527239 26.53125,27.527239 C 26.54624,27.4637 26.567163,27.401673 26.59375,27.341953 C 27.181231,25.957097 27.5,24.414481 27.5,22.802446 C 27.5,16.531779 22.272436,11.5 16.25,11.5 z"
+       id="path5241"
+       sodipodi:nodetypes="cscccssssssscssc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0174263"
+       inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z "
+       style="opacity:1;fill:url(#linearGradient8882);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8838"
+       d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z"
+       transform="translate(1.09375,-0.96875)" />
+    <path
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.09375,22.321339 C 15.09375,24.52934 12.987869,26.03125 11.567428,26.03125 C 9.6208995,26.03125 8.0411075,24.239249 8.0411075,22.031249 C 8.0411075,20.112462 9.1240375,18.03125 11.070566,18.03125 C 13.017097,18.03125 15.09375,20.576941 15.09375,22.321339 z"
+       id="path5157"
+       sodipodi:nodetypes="csssc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path5162"
+       sodipodi:cx="10.169642"
+       sodipodi:cy="24.3125"
+       sodipodi:rx="1.2410715"
+       sodipodi:ry="1.2946428"
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.237779,0,0,1.544828,-1.0301916,-15.38768)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient8854);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path5164"
+       sodipodi:cx="10.169642"
+       sodipodi:cy="24.3125"
+       sodipodi:rx="1.2410715"
+       sodipodi:ry="1.2946428"
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.4028775,0,0,0.772414,7.4966298,3.2519345)" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="1.0250763"
+       inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z "
+       style="opacity:1;fill:url(#linearGradient8890);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path8846"
+       d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z"
+       transform="translate(1.0348213,-0.9657729)" />
+    <path
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 28.07086,18.984912 C 26.766398,17.552385 24.644242,17.934034 23.811326,18.848719 C 22.669923,20.102179 22.802261,22.282108 24.106725,23.714636 C 25.240323,24.959524 27.104889,25.612445 28.246292,24.358987 C 29.387696,23.105527 29.101434,20.116659 28.07086,18.984912 z"
+       id="path5169"
+       sodipodi:nodetypes="csssc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path5171"
+       sodipodi:cx="10.169642"
+       sodipodi:cy="24.3125"
+       sodipodi:rx="1.2410715"
+       sodipodi:ry="1.2946428"
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(1.208632,0,0,1.598777,13.243467,-16.766194)" />
+    <path
+       transform="matrix(0.9902622,0,0,1.0468412,0.6803699,-1.6322179)"
+       style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8730)"
+       d="M 19.0625,25.21875 C 18.601377,25.21875 18.273569,25.504007 18.09375,25.71875 C 17.913931,25.933493 17.816385,26.151947 17.6875,26.375 C 17.42973,26.821106 17.161718,27.281061 16.8125,27.625 C 16.463282,27.968939 15.753081,28.431077 15.090677,28.457564 C 13.768981,28.152971 12.567412,27.574567 11.44337,27.388802 C 11.190855,27.626888 11.124903,28.002654 11.28125,28.3125 C 12.447615,30.480389 13.704893,31.652553 16.158709,32.98462 C 17.36658,33.640319 19.551532,34.28873 20.662703,34.736506 C 22.03071,33.835346 25.543472,30.338576 25.75,28.125 C 25.844084,27.808258 25.729503,27.466527 25.463497,27.270522 C 24.478872,27.816677 23.360045,28.165794 22.250307,28.426314 C 21.786763,28.408951 21.509989,27.99255 21.21875,27.65625 C 20.927511,27.31995 20.680079,26.828945 20.4375,26.375 C 20.31621,26.148027 20.208768,25.937142 20.03125,25.71875 C 19.853732,25.500358 19.525474,25.21875 19.0625,25.21875 z"
+       id="path8696"
+       sodipodi:nodetypes="cssscccsccccsssc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="0.36336106"
+       inkscape:original="M 15.8125 27 C 15.361611 27 15 27.422198 15 27.9375 C 15 28.452801 15.361612 28.874999 15.8125 28.875 L 21.1875 28.875 C 21.638389 28.875 22 28.452801 22 27.9375 C 22 27.422199 21.638389 27 21.1875 27 L 15.8125 27 z "
+       style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8792)"
+       id="path8738"
+       d="M 15.8125,26.625 C 15.134785,26.625 14.625,27.252207 14.625,27.9375 C 14.625,28.622793 15.134785,29.249998 15.8125,29.25 L 21.1875,29.25 C 21.865216,29.25 22.375,28.622793 22.375,27.9375 C 22.375,27.252207 21.865216,26.625 21.1875,26.625 L 15.8125,26.625 z"
+       transform="translate(1.0492259,-0.5907729)" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect5215"
+       width="7"
+       height="1.8602936"
+       x="16.017977"
+       y="26.173933"
+       rx="0.81387848"
+       ry="0.93014681" />
+    <path
+       style="fill:url(#linearGradient8692);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.017976,27.284466 C 18.332186,30.947891 18.535242,25.034227 19.622035,25.034227 C 20.693875,25.034227 20.889384,30.946219 26.017976,27.230273 C 25.73271,30.311439 22.068246,33.065477 21.020058,34.065477 C 18.988153,32.971727 14.03875,31.7541 12.017976,27.284466 z"
+       id="rect5187"
+       sodipodi:nodetypes="czccc" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.61111109;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8806"
+       sodipodi:cx="18.097515"
+       sodipodi:cy="29.72571"
+       sodipodi:rx="0.28726214"
+       sodipodi:ry="0.6408155"
+       d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z"
+       transform="matrix(-1.0945752,0.9356227,0.6067766,1.5209514,23.290203,-33.120817)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.61111109;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path8816"
+       sodipodi:cx="18.097515"
+       sodipodi:cy="29.72571"
+       sodipodi:rx="0.28726214"
+       sodipodi:ry="0.6408155"
+       d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z"
+       transform="matrix(1.0945741,0.9356227,-0.606776,1.5209514,16.745752,-33.098342)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient8858);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path8856"
+       sodipodi:cx="10.169642"
+       sodipodi:cy="24.3125"
+       sodipodi:rx="1.2410715"
+       sodipodi:ry="1.2946428"
+       d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z"
+       transform="matrix(0.4028775,0,0,0.772414,21.437701,3.254912)" />
+    <path
+       style="opacity:0.61111108999999997;fill:url(#linearGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 3.375,44.9375 C 1.75,44.5625 1.125,41.0625 4.1875,35.75 C 5.3980639,40.757973 11,44.375 11,44.375 L 3.375,44.9375 z"
+       id="rect7959"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="opacity:0.61111108999999997;fill:url(#linearGradient8742);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 33.647731,44.9375 C 35.272732,44.5625 36.772732,42.5625 28.772731,38.5625 C 29.124668,42.695473 26.022731,44.375 26.022731,44.375 L 33.647731,44.9375 z"
+       id="path8740"
+       sodipodi:nodetypes="cccc" />
+  </g>
+</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/aim.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,188 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="aim.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/aim.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2263">
-      <stop
-         style="stop-color:#edc100;stop-opacity:1;"
-         offset="0"
-         id="stop2265" />
-      <stop
-         style="stop-color:#edc100;stop-opacity:0;"
-         offset="1"
-         id="stop2267" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2255">
-      <stop
-         style="stop-color:#edc100;stop-opacity:1;"
-         offset="0"
-         id="stop2257" />
-      <stop
-         style="stop-color:#edc100;stop-opacity:0;"
-         offset="1"
-         id="stop2259" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient4330"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2255"
-       id="linearGradient2261"
-       x1="12.514956"
-       y1="18.690643"
-       x2="12.514956"
-       y2="3.9849093"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.943689,0,0,1.932352,0.678089,2.050925)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2263"
-       id="linearGradient2269"
-       x1="10.555883"
-       y1="8.0642843"
-       x2="10.555883"
-       y2="1.4995424"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="12.865422"
-     inkscape:cx="46.678288"
-     inkscape:cy="27.286544"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#edd400"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 23.921379,18.772128 C 20.531101,16.831234 19.828661,25.427448 17.466079,29.485095 C 15.153694,33.456532 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.506226,26.642559 L 38.998349,19.157061 C 31.992149,20.83538 27.747274,20.962407 23.921379,18.772128 z "
-       id="path1324"
-       sodipodi:nodetypes="czccccccccs" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1326"
-       sodipodi:cx="10.555883"
-       sodipodi:cy="4.0385542"
-       sodipodi:rx="5.074944"
-       sodipodi:ry="5.074944"
-       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
-       transform="matrix(1.37826,0,0,1.377401,12.95457,3.935583)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.25;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.310805,0,0,2.323084,-11.5867,18.20601)" />
-    <path
-       style="opacity:1;fill:url(#linearGradient2261);fill-opacity:1;stroke:#b49500;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 23.921379,18.772128 C 20.531101,16.831234 21.460943,23.017888 19.098361,27.075535 C 16.785976,31.046972 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.661681,26.564831 L 38.687438,18.690695 C 31.681238,20.369014 27.747274,20.962407 23.921379,18.772128 z "
-       id="path4275"
-       sodipodi:nodetypes="czccccccccs" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.97533494"
-       inkscape:original="M 22.84375 18.40625 C 20.718205 18.345643 21.161009 23.512059 19.09375 27.0625 C 16.781366 31.033937 7.5 36.03125 7.5 36.03125 L 12.25 45.5 L 23.84375 34.75 C 23.84375 34.75 31.646181 39.794206 34.03125 45.3125 L 40.3125 39.25 C 40.312501 39.25 37.019382 32.72974 29.6875 28.21875 L 40.65625 26.5625 L 38.6875 18.6875 C 31.681299 20.365819 27.732145 20.971529 23.90625 18.78125 C 23.482465 18.538638 23.147399 18.414908 22.84375 18.40625 z "
-       xlink:href="#path4275"
-       style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4304"
-       inkscape:href="#path4275"
-       d="M 22.53125,19.15625 C 22.35655,19.185124 22.015713,19.423413 21.625,20.09375 C 21.234287,20.764087 20.848022,21.75407 20.46875,22.875 C 19.710206,25.11686 19.002281,27.842341 17.84375,29.84375 C 16.485288,32.190546 13.833524,33.858876 11.53125,35.0625 C 9.7758989,35.980194 8.9024732,36.291093 8.25,36.53125 L 12,44.09375 L 22.8125,34 C 23.141077,33.70262 23.62883,33.664114 24,33.90625 C 24,33.90625 26.045443,35.241847 28.375,37.28125 C 30.391732,39.046791 32.509362,41.396107 33.9375,43.96875 L 38.875,39.1875 C 38.425182,38.341062 35.513684,33.014709 28.875,28.90625 C 28.511738,28.695573 28.324082,28.276051 28.409163,27.864827 C 28.494244,27.453602 28.832963,27.142985 29.25,27.09375 L 39.1875,25.65625 L 38.03125,19.96875 C 31.456326,21.456721 26.979371,21.554763 23.03125,19.28125 C 22.754401,19.121827 22.666044,19.133971 22.53125,19.15625 z " />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#linearGradient2269);fill-opacity:1;stroke:#b49500;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4302"
-       sodipodi:cx="10.555883"
-       sodipodi:cy="4.0385542"
-       sodipodi:rx="5.074944"
-       sodipodi:ry="5.074944"
-       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
-       transform="matrix(1.37826,0,0,1.377401,13.96243,3.935583)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.5;fill:#fce94f;fill-opacity:1;stroke:#ffffff;stroke-width:0.84666103;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4273"
-       sodipodi:cx="10.555883"
-       sodipodi:cy="4.0385542"
-       sodipodi:rx="5.074944"
-       sodipodi:ry="5.074944"
-       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
-       transform="matrix(1.181111,0,0,1.181111,16.03826,4.728084)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/bonjour.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,207 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable"
-   sodipodi:docname="bonjour.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/bonjour.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2314">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2316" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2318" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.934099,4.045903e-17,-5.060684e-9,-0.395926,20.78896,14.59809)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2314"
-       id="linearGradient2320"
-       x1="11.237947"
-       y1="2.7057509"
-       x2="11.237947"
-       y2="10.98068"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2314"
-       id="linearGradient2324"
-       gradientUnits="userSpaceOnUse"
-       x1="11.237947"
-       y1="2.6204424"
-       x2="11.237947"
-       y2="10.810062" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2314"
-       id="linearGradient2328"
-       gradientUnits="userSpaceOnUse"
-       x1="11.237947"
-       y1="2.876368"
-       x2="11.237947"
-       y2="10.89537" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="12.003863"
-     inkscape:cx="41.170813"
-     inkscape:cy="23.799748"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#f57900"
-     inkscape:window-width="1268"
-     inkscape:window-height="972"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.611787,0,0,2.323081,-14.82185,18.20605)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1341"
-       sodipodi:cx="11.237947"
-       sodipodi:cy="7.9095716"
-       sodipodi:rx="3.0935922"
-       sodipodi:ry="3.0935922"
-       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
-       transform="matrix(1.290432,0,0,1.297381,-3.009737,-2.680289)" />
-    <path
-       style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#7d7f7a;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 35.46875,4.5366208 C 31.635379,4.6522391 27.705058,6.4906706 25.53125,9.7866208 C 26.103022,9.4743488 35.303923,4.6093611 38.34375,12.599121 C 39.472527,11.34018 43.22049,11.040461 45.5,12.224121 C 44.713989,6.8257933 40.179035,4.3945539 35.46875,4.5366208 z M 17.46875,4.5678708 C 18.127573,6.5529792 17.95859,8.1732436 17.53125,9.1616208 C 21.771815,8.0014671 29.858933,21.430311 30.5,22.505371 C 25.376692,11.592709 20.897066,5.8681195 17.46875,4.5678708 z M 5.34375,7.5678708 C -3.2027906,14.070713 3.9432311,26.177264 13.4375,26.536621 C 12.842607,26.198616 3.4390694,20.691845 9.4375,13.724121 C 7.6531589,13.401091 5.4098365,10.216725 5.34375,7.5678708 z M 21.46875,14.599121 C 14.518079,24.752705 11.892887,31.742633 12.65625,35.567871 C 14.072321,33.976734 15.618903,33.346912 16.75,33.255371 C 13.282151,29.863924 20.985214,15.493469 21.46875,14.599121 z M 37.40625,21.630371 C 36.029184,26.189083 21.006896,27.252123 18.78125,27.380371 C 31.047662,28.025568 38.491655,26.618231 41.5,23.942871 C 39.411924,23.554843 38.044876,22.56197 37.40625,21.630371 z M 33.125,28.599121 C 33.123038,29.265224 33.537967,40.230123 24.458146,38.651097 C 25.058081,40.306995 23.321409,43.5863 21.031089,44.953234 C 30.971079,48.901331 37.527529,36.737136 33.125,28.599121 z "
-       id="rect2206"
-       sodipodi:nodetypes="ccccccccccccccccccccccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.97818917"
-       inkscape:original="M 35.46875 4.53125 C 31.635379 4.6468685 27.705058 6.4852998 25.53125 9.78125 C 26.103022 9.4689777 35.303923 4.6039901 38.34375 12.59375 C 39.472527 11.334809 43.22049 11.03509 45.5 12.21875 C 44.713989 6.8204222 40.179035 4.3891831 35.46875 4.53125 z M 17.46875 4.5625 C 18.127573 6.5476086 17.95859 8.1678728 17.53125 9.15625 C 21.771815 7.996096 29.858933 21.42494 30.5 22.5 C 25.376692 11.587338 20.897066 5.8627487 17.46875 4.5625 z M 5.34375 7.5625 C -3.2027906 14.065342 3.9432311 26.171893 13.4375 26.53125 C 12.842607 26.193245 3.4390694 20.686474 9.4375 13.71875 C 7.6531589 13.39572 5.4098365 10.211354 5.34375 7.5625 z M 21.46875 14.59375 C 14.518079 24.747334 11.892887 31.737262 12.65625 35.5625 C 14.072321 33.971363 15.618903 33.341541 16.75 33.25 C 13.282151 29.858553 20.985214 15.488098 21.46875 14.59375 z M 37.40625 21.625 C 36.029184 26.183712 21.006896 27.246752 18.78125 27.375 C 31.047662 28.020197 38.491655 26.61286 41.5 23.9375 C 39.411924 23.549472 38.044876 22.556599 37.40625 21.625 z M 33.125 28.59375 C 33.123038 29.259853 33.548571 40.235276 24.46875 38.65625 C 25.068686 40.312149 23.32157 43.601816 21.03125 44.96875 C 30.971239 48.916845 37.527529 36.731765 33.125 28.59375 z "
-       xlink:href="#rect2206"
-       style="opacity:0.4;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2265"
-       d="M 35.5,6.4375 C 33.368939,6.5017749 31.254587,7.2183109 29.4375,8.375 C 29.955273,8.2616185 30.342793,8.0837857 30.90625,8.03125 C 32.406836,7.8913382 34.078294,8.0394993 35.59375,8.8125 C 36.831972,9.4440897 37.86888,10.628822 38.6875,12.1875 C 39.489624,11.770011 40.411361,11.500994 41.4375,11.4375 C 42.258666,11.386689 43.10461,11.462473 43.9375,11.625 C 43.379009,10.119471 42.589365,8.8531272 41.40625,8.03125 C 39.790488,6.908825 37.677617,6.3718209 35.5,6.4375 z M 18.78125,7.53125 C 18.821476,8.1885616 18.763233,8.7406401 18.65625,9.28125 C 19.760339,9.4560073 20.842148,9.9390765 21.875,10.78125 C 22.166416,11.018866 22.428639,11.416981 22.71875,11.6875 C 22.66814,11.618108 22.612837,11.505519 22.5625,11.4375 C 21.155108,9.5357202 19.912201,8.3834952 18.78125,7.53125 z M 4.78125,10.5 C 2.1367338,13.32142 1.9732812,16.73063 3.5,19.84375 C 4.6796069,22.249077 6.8918614,24.272293 9.5,25.4375 C 9.0508422,24.984485 8.5946267,24.68144 8.1875,24.125 C 7.2714393,22.872975 6.524154,21.350596 6.46875,19.59375 C 6.4232564,18.151162 7.0064835,16.584718 8.0625,15.03125 C 7.2533732,14.545104 6.5354947,13.881423 5.9375,13 C 5.4271977,12.247833 5.0629652,11.390597 4.78125,10.5 z M 37.5625,24 C 36.85358,24.922553 35.872279,25.684009 34.625,26.25 C 33.981881,26.541835 33.133881,26.670217 32.40625,26.90625 C 35.442669,26.486299 37.633021,25.855821 39.1875,25.0625 C 38.533201,24.753288 38.014785,24.406514 37.5625,24 z M 15.59375,27.6875 C 15.447519,28.018151 15.191854,28.433804 15.0625,28.75 C 14.093097,31.119641 13.782747,32.928132 13.6875,34.4375 C 14.296929,34.034852 14.855783,33.77311 15.4375,33.59375 C 14.976511,32.494336 14.815677,31.243494 15,29.84375 C 15.08934,29.165305 15.417606,28.406637 15.59375,27.6875 z M 33.3125,33.78125 C 33.133192,34.418356 33.085183,34.999527 32.78125,35.65625 C 32.13654,37.049308 31.160565,38.398872 29.65625,39.3125 C 28.414521,40.06665 26.766693,40.371954 24.875,40.25 C 24.843897,41.165669 24.622124,42.10692 24.15625,43.03125 C 23.766181,43.805178 23.234663,44.527693 22.625,45.1875 C 26.385249,45.969725 29.45049,44.399 31.40625,41.59375 C 32.935546,39.400201 33.59997,36.546168 33.3125,33.78125 z "
-       inkscape:href="#rect2206" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77265418;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2216"
-       sodipodi:cx="11.237947"
-       sodipodi:cy="7.9095716"
-       sodipodi:rx="3.0935922"
-       sodipodi:ry="3.0935922"
-       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
-       transform="matrix(-0.645216,1.118132,-1.123564,-0.649031,58.6294,10.13592)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2222"
-       sodipodi:cx="11.237947"
-       sodipodi:cy="7.9095716"
-       sodipodi:rx="3.0935922"
-       sodipodi:ry="3.0935922"
-       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
-       transform="matrix(-0.645216,-1.117547,1.123565,-0.64869,15.8724,57.25531)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#linearGradient2320);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2228"
-       sodipodi:cx="11.237947"
-       sodipodi:cy="7.9095716"
-       sodipodi:rx="3.0935922"
-       sodipodi:ry="3.0935922"
-       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
-       transform="matrix(0.971301,0,0,0.976532,0.576636,-0.142509)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#linearGradient2324);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2322"
-       sodipodi:cx="11.237947"
-       sodipodi:cy="7.9095716"
-       sodipodi:rx="3.0935922"
-       sodipodi:ry="3.0935922"
-       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
-       transform="matrix(0.971301,0,0,0.976532,31.58938,9.755058)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#linearGradient2328);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2326"
-       sodipodi:cx="11.237947"
-       sodipodi:cy="7.9095716"
-       sodipodi:rx="3.0935922"
-       sodipodi:ry="3.0935922"
-       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
-       transform="matrix(0.971301,0,0,0.976532,6.579761,31.79704)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/gadu-gadu.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,215 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48px"
-   height="48px"
-   id="svg1307"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable"
-   sodipodi:docname="gadu-gadu.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/gadu-gadu.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs1309">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2447">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2449" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2451" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2233">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop2235" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop2237" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2233"
-       id="linearGradient2279"
-       gradientUnits="userSpaceOnUse"
-       x1="24.450865"
-       y1="5.1375499"
-       x2="24.450865"
-       y2="31.487988" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2447"
-       id="linearGradient2453"
-       x1="24.5"
-       y1="0.33943355"
-       x2="24.5"
-       y2="19.724688"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="15.004828"
-     inkscape:cx="40.53287"
-     inkscape:cy="23.900599"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     fill="#ef2929"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="972"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata1312">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.160314,0,0,2.745459,-9.969125,9.788968)" />
-    <path
-       style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 22.5,4.5130623 L 22.5,8.6366327 C 19.782905,9.0005399 17.277282,10.079925 15.21875,11.698071 L 12.0625,8.5116761 L 9.5,11.073287 L 12.6875,14.259683 C 11.068793,16.317502 9.9577835,18.791017 9.59375,21.50717 L 5.5,21.50717 L 5.5,25.505784 L 9.59375,25.505784 C 9.9535644,28.234089 11.062591,30.718808 12.6875,32.78451 L 9.5,35.970906 L 12.0625,38.501278 L 15.21875,35.346123 C 17.277282,36.964269 19.782905,38.043654 22.5,38.407561 L 22.5,42.499891 L 26.5,42.499891 L 26.5,38.407561 C 29.229107,38.042044 31.717452,36.944842 33.78125,35.314883 L 36.96875,38.501278 L 39.5,35.970906 L 36.3125,32.78451 C 37.936789,30.719597 39.014761,28.232873 39.375,25.505784 L 43.5,25.505784 L 43.5,21.50717 L 39.375,21.50717 C 39.010966,18.791018 37.931208,16.317502 36.3125,14.259683 L 39.5,11.073287 L 36.96875,8.5116761 L 33.78125,11.698071 L 33.75,11.698071 C 31.691468,10.079924 29.217095,9.0005401 26.5,8.6366327 L 26.5,4.5130623 L 22.5,4.5130623 z M 23.8125,11.354441 C 24.033452,11.344807 24.274977,11.354441 24.5,11.354441 C 31.700731,11.354441 36.65625,16.339482 36.65625,23.537717 C 36.656248,30.735953 31.700731,35.689753 24.5,35.689753 C 17.29927,35.689754 12.502002,30.735951 12.502002,23.537717 C 12.502002,16.564428 16.962974,11.653081 23.8125,11.354441 z "
-       id="path2394"
-       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccssssc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1"
-       inkscape:original="M 22.5 4.5 L 22.5 8.625 C 19.782905 8.988907 17.277282 10.069354 15.21875 11.6875 L 12.0625 8.5 L 9.5 11.0625 L 12.6875 14.25 C 11.068793 16.307819 9.9577835 18.783847 9.59375 21.5 L 5.5 21.5 L 5.5 25.5 L 9.59375 25.5 C 9.9535644 28.228306 11.062591 30.715548 12.6875 32.78125 L 9.5 35.96875 L 12.0625 38.5 L 15.21875 35.34375 C 17.277282 36.961896 19.782905 38.042343 22.5 38.40625 L 22.5 42.5 L 26.5 42.5 L 26.5 38.40625 C 29.229107 38.040732 31.717452 36.942459 33.78125 35.3125 L 36.96875 38.5 L 39.5 35.96875 L 36.3125 32.78125 C 37.936789 30.716335 39.014761 28.227089 39.375 25.5 L 43.5 25.5 L 43.5 21.5 L 39.375 21.5 C 39.010966 18.783848 37.931208 16.307819 36.3125 14.25 L 39.5 11.0625 L 36.96875 8.5 L 33.78125 11.6875 L 33.75 11.6875 C 31.691468 10.069353 29.217095 8.9889074 26.5 8.625 L 26.5 4.5 L 22.5 4.5 z M 23.8125 11.34375 C 24.033452 11.334116 24.274977 11.34375 24.5 11.34375 C 31.700731 11.34375 36.65625 16.333015 36.65625 23.53125 C 36.656248 30.729485 31.700731 35.6875 24.5 35.6875 C 17.29927 35.6875 12.5 30.729484 12.5 23.53125 C 12.5 16.55796 16.962974 11.64239 23.8125 11.34375 z "
-       xlink:href="#path2394"
-       style="opacity:0.2;fill:url(#linearGradient2453);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2445"
-       inkscape:href="#path2394"
-       d="M 23.5,5.5 L 23.5,8.625 C 23.503929,9.1319208 23.127956,9.5616039 22.625,9.625 C 20.085855,9.9650737 17.762357,10.960594 15.84375,12.46875 C 15.44664,12.797268 14.864902,12.77021 14.5,12.40625 L 12.0625,9.9375 L 10.9375,11.0625 L 13.40625,13.53125 C 13.77021,13.896152 13.797268,14.47789 13.46875,14.875 C 11.953567,16.801212 10.932828,19.095048 10.59375,21.625 C 10.530354,22.127956 10.100671,22.503929 9.59375,22.5 L 6.5,22.5 L 6.5,24.5 L 9.59375,24.5 C 10.100671,24.496071 10.530354,24.872044 10.59375,25.375 C 10.929039,27.917339 11.948302,30.223346 13.46875,32.15625 C 13.797268,32.55336 13.77021,33.135098 13.40625,33.5 L 10.9375,35.96875 L 12.03125,37.09375 L 14.5,34.625 C 14.864902,34.26104 15.44664,34.233982 15.84375,34.5625 C 17.762357,36.070656 20.085855,37.066176 22.625,37.40625 C 23.127956,37.469646 23.503929,37.899329 23.5,38.40625 L 23.5,41.5 L 25.5,41.5 L 25.5,38.40625 C 25.496071,37.899329 25.872044,37.469646 26.375,37.40625 C 28.92215,37.065102 31.227806,36.054308 33.15625,34.53125 C 33.55336,34.202732 34.135098,34.22979 34.5,34.59375 L 36.96875,37.0625 L 38.0625,35.96875 L 35.59375,33.5 C 35.22979,33.135098 35.202732,32.55336 35.53125,32.15625 C 37.047015,30.229299 38.038333,27.923642 38.375,25.375 C 38.438396,24.872044 38.868079,24.496071 39.375,24.5 L 42.5,24.5 L 42.5,22.5 L 39.375,22.5 C 38.868079,22.503929 38.438396,22.127956 38.375,21.625 C 38.034921,19.087581 37.042567,16.796296 35.53125,14.875 C 35.202732,14.47789 35.22979,13.896152 35.59375,13.53125 L 38.09375,11.03125 L 36.96875,9.9375 L 34.5,12.40625 C 34.307701,12.592396 34.048815,12.693699 33.78125,12.6875 L 33.75,12.6875 C 33.522871,12.68767 33.302449,12.610522 33.125,12.46875 C 31.202527,10.957555 28.913145,9.9649402 26.375,9.625 C 25.872044,9.5616039 25.496071,9.1319208 25.5,8.625 L 25.5,5.5 L 23.5,5.5 z M 23.78125,10.34375 C 24.062872,10.331471 24.303519,10.34375 24.5,10.34375 C 32.162653,10.34375 37.65625,15.874058 37.65625,23.53125 C 37.656248,31.188442 32.15976,36.6875 24.5,36.6875 C 20.67012,36.6875 17.391923,35.341265 15.09375,33 C 12.795577,30.658735 11.5,27.35261 11.5,23.53125 C 11.5,16.131287 16.473536,10.662367 23.78125,10.34375 z " />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.08146787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2198"
-       sodipodi:cx="24.450865"
-       sodipodi:cy="23.959385"
-       sodipodi:rx="14.03053"
-       sodipodi:ry="14.03053"
-       d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1  10.420335,23.959385 A 14.03053 14.03053 0 1 1  38.481395 23.959385 z"
-       transform="matrix(0.924879,0,0,0.924459,1.889957,1.34006)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:url(#linearGradient2279);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12198293;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2277"
-       sodipodi:cx="24.450865"
-       sodipodi:cy="23.959385"
-       sodipodi:rx="14.03053"
-       sodipodi:ry="14.03053"
-       d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1  10.420335,23.959385 A 14.03053 14.03053 0 1 1  38.481395 23.959385 z"
-       transform="matrix(0.890914,0,0,0.891279,2.716374,2.14037)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2200"
-       sodipodi:cx="10.54341"
-       sodipodi:cy="-2.7068274"
-       sodipodi:rx="2.4204714"
-       sodipodi:ry="1.7230475"
-       d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1  8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1  12.963882 -2.7068274 z"
-       transform="matrix(0.827565,0,0,0.87352,11.27774,22.85935)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2202"
-       sodipodi:cx="10.54341"
-       sodipodi:cy="-2.7068274"
-       sodipodi:rx="2.4204714"
-       sodipodi:ry="1.7230475"
-       d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1  8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1  12.963882 -2.7068274 z"
-       transform="matrix(0.827567,0,0,0.87352,20.27772,22.86958)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:4.5851903;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2204"
-       sodipodi:cx="24.450865"
-       sodipodi:cy="23.959385"
-       sodipodi:rx="14.03053"
-       sodipodi:ry="14.03053"
-       d="M 36.657066,30.877796 A 14.03053,14.03053 0 0 1 11.928959,30.288496"
-       transform="matrix(0.453563,0,0,0.419476,13.51464,14.26249)"
-       sodipodi:start="0.51564596"
-       sodipodi:end="2.6736"
-       sodipodi:open="true" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.75245398;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2465"
-       sodipodi:cx="26.658085"
-       sodipodi:cy="20.675463"
-       sodipodi:rx="9.863492"
-       sodipodi:ry="8.2640066"
-       d="M 36.521577 20.675463 A 9.863492 8.2640066 0 1 1  16.794593,20.675463 A 9.863492 8.2640066 0 1 1  36.521577 20.675463 z"
-       transform="matrix(1.216989,0,0,1.451287,-7.948546,-6.503855)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/google-talk.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,261 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   id="svg2417"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   width="48"
-   height="48"
-   version="1.0"
-   sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable"
-   sodipodi:docname="google-talk.svg"
-   inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/google-talk.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <metadata
-     id="metadata2422">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title>Google Talk Icon</dc:title>
-        <dc:date>2006-12-03</dc:date>
-        <dc:creator>
-          <cc:Agent>
-            <dc:title>Vinicius Scopel Depizzol</dc:title>
-          </cc:Agent>
-        </dc:creator>
-        <dc:source>vdepizzol@gmail.com</dc:source>
-        <dc:subject>
-          <rdf:Bag>
-            <rdf:li>Google Talk</rdf:li>
-            <rdf:li>GTalk</rdf:li>
-            <rdf:li>VOIP</rdf:li>
-            <rdf:li>Protocol</rdf:li>
-          </rdf:Bag>
-        </dc:subject>
-        <cc:license
-           rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
-      </cc:Work>
-      <cc:License
-         rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
-        <cc:permits
-           rdf:resource="http://web.resource.org/cc/Reproduction" />
-        <cc:permits
-           rdf:resource="http://web.resource.org/cc/Distribution" />
-        <cc:requires
-           rdf:resource="http://web.resource.org/cc/Notice" />
-        <cc:requires
-           rdf:resource="http://web.resource.org/cc/Attribution" />
-        <cc:permits
-           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
-        <cc:requires
-           rdf:resource="http://web.resource.org/cc/ShareAlike" />
-      </cc:License>
-    </rdf:RDF>
-  </metadata>
-  <defs
-     id="defs2420">
-    <linearGradient
-       id="linearGradient3299">
-      <stop
-         style="stop-color:#000000;stop-opacity:0.11764706;"
-         offset="0"
-         id="stop3301" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="1"
-         id="stop3303" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3299"
-       id="radialGradient3305"
-       cx="15.993708"
-       cy="26.722889"
-       fx="15.993708"
-       fy="26.722889"
-       r="15.912521"
-       gradientTransform="matrix(1,0,0,0.295918,-3.769888e-16,18.8151)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       id="linearGradient3527">
-      <stop
-         style="stop-color:#90ba1f;stop-opacity:1;"
-         offset="0"
-         id="stop3529" />
-      <stop
-         style="stop-color:#638205;stop-opacity:1;"
-         offset="1"
-         id="stop3531" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3518">
-      <stop
-         style="stop-color:#e7d000;stop-opacity:1;"
-         offset="0"
-         id="stop3520" />
-      <stop
-         style="stop-color:#c4a000;stop-opacity:1;"
-         offset="1"
-         id="stop3522" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3486">
-      <stop
-         style="stop-color:#ef2929;stop-opacity:1;"
-         offset="0"
-         id="stop3488" />
-      <stop
-         style="stop-color:#cc0000;stop-opacity:1;"
-         offset="1"
-         id="stop3490" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3510">
-      <stop
-         style="stop-color:#3465a4;stop-opacity:1;"
-         offset="0"
-         id="stop3512" />
-      <stop
-         style="stop-color:#204a87;stop-opacity:1;"
-         offset="1"
-         id="stop3514" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3286">
-      <stop
-         style="stop-color:#d1d1d1;stop-opacity:1;"
-         offset="0"
-         id="stop3288" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="1"
-         id="stop3290" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3527"
-       id="linearGradient4249"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.465389,0,0,2.513895,-105.5963,47.11115)"
-       x1="55.483334"
-       y1="-14.40625"
-       x2="55.483334"
-       y2="-7.9999866" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3518"
-       id="linearGradient4252"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.901968,0,0,2.518653,-127.7063,47.25387)"
-       x1="53.162479"
-       y1="-14.322747"
-       x2="53.162479"
-       y2="-9.9868765" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3486"
-       id="linearGradient4255"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.48585,0,0,2.48585,-103.0483,47.16833)"
-       x1="49.45462"
-       y1="-12.934268"
-       x2="49.45462"
-       y2="-8.0529032" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3510"
-       id="linearGradient4258"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.48585,0,0,2.48585,-100.3774,47.19573)"
-       x1="45.5"
-       y1="-14"
-       x2="45.5"
-       y2="-8.1156492" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3286"
-       id="linearGradient4262"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.99378,0,0,2.99378,9.552849e-2,-0.965622)"
-       x1="8"
-       y1="15"
-       x2="8"
-       y2="0.9916327" />
-  </defs>
-  <sodipodi:namedview
-     inkscape:window-height="714"
-     inkscape:window-width="1014"
-     inkscape:pageshadow="2"
-     inkscape:pageopacity="0"
-     borderopacity="1"
-     bordercolor="#666666"
-     pagecolor="#ffffff"
-     id="base"
-     showgrid="false"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:zoom="1"
-     inkscape:cx="27.558407"
-     inkscape:cy="20.353863"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:current-layer="svg2417"
-     showborder="false"
-     inkscape:showpageshadow="false" />
-  <path
-     sodipodi:type="arc"
-     style="opacity:1;fill:url(#radialGradient3305);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
-     id="path2424"
-     sodipodi:cx="15.993708"
-     sodipodi:cy="26.722889"
-     sodipodi:rx="15.912521"
-     sodipodi:ry="4.7088075"
-     d="M 31.906229,26.722889 A 15.912521,4.7088075 0 1 1 31.906148,26.707864"
-     sodipodi:start="0"
-     sodipodi:end="6.2799944"
-     sodipodi:open="true"
-     transform="matrix(1.45896,0,0,1.538545,0.742037,-1.869655)" />
-  <path
-     id="path3264"
-     d="M 21.80045,3.5250496 C 10.471905,4.3704822 1.592428,11.452408 1.592428,19.990844 C 1.592428,26.29506 6.3896918,31.807945 13.473996,34.585527 C 13.301077,37.113716 12.611393,40.274075 10.57377,42.444203 C 16.402876,42.263357 20.689781,39.28536 23.484452,36.456639 C 23.677129,36.460226 23.851935,36.456639 24.045787,36.456639 C 36.451938,36.456639 46.499142,29.098509 46.499142,19.990844 L 46.499142,19.897289 C 46.459634,10.808172 36.426737,3.5250496 24.045787,3.5250496 C 23.270404,3.5250496 22.555687,3.4686875 21.80045,3.5250496 z "
-     style="fill:url(#linearGradient4262);fill-opacity:1;fill-rule:nonzero;stroke:#797979;stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
-     inkscape:export-xdpi="90"
-     inkscape:export-ydpi="90" />
-  <path
-     sodipodi:nodetypes="ccccccccccccccccc"
-     id="path3552"
-     d="M 14.063569,10.992619 L 10.975162,10.992619 L 10.975162,15.008301 L 9,15.008301 L 9,18.010155 L 10.975162,18.010155 L 10.975162,24.823081 C 10.975162,28.316382 16.413217,26.749332 16.906897,25.946127 L 16.765885,23.742745 C 16.14428,24.364355 14.063569,24.882059 14.063569,24.09267 L 14.063569,18.010155 L 16.089796,18.010155 L 16.089796,15.008301 L 14.063569,15.008301 L 14.063569,11.090553 L 14.063569,11.090553 L 14.063569,10.992619 z "
-     style="fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-  <path
-     style="fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
-     d="M 20.513467,15.031036 C 20.138171,15.089956 19.656414,15.165467 19.228078,15.318859 C 17.702481,15.865192 16.671718,16.778263 16.671718,16.778263 L 17.928902,19.157272 C 19.392632,18.022338 22.111019,16.595753 21.828421,20.24551 C 16.134551,19.714196 14.746648,23.348506 16.160515,25.369297 C 17.612211,27.444158 20.173876,27.641863 21.329645,26.185476 C 21.514145,25.952987 21.740964,25.678231 21.873764,25.369297 C 22.016347,25.75349 22.226874,26.072865 22.417883,26.321505 C 22.574471,26.517581 23.312178,27.152657 24.004897,27.137684 C 24.806193,27.120365 25.583813,26.58185 26,25.958759 C 25.645136,26.22137 24.252362,25.650216 24.231613,24.779835 L 24.231613,18.29575 C 24.142462,16.667478 22.425687,14.730825 20.513467,15.031036 z M 21.193616,23.328851 C 21.034551,24.122851 19.396586,24.681233 18.790423,24.326402 C 17.894487,23.801947 19.229645,22.393776 20.377437,22.376643 C 21.417389,22.361119 21.33274,22.634384 21.193616,23.328851 z "
-     id="path3554"
-     sodipodi:nodetypes="cscccsscsscccccsss" />
-  <path
-     id="path3558"
-     d="M 29,11 L 26.098032,11 L 26.098032,27.104637 L 29,27.104637 L 29,11 z "
-     style="fill:url(#linearGradient4252);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-  <path
-     sodipodi:nodetypes="ccccccccccccc"
-     id="path3560"
-     d="M 30,10.895363 L 30,19.851112 L 30,27 L 32.963722,27 L 32.963722,22.924045 L 36.561805,27.064163 L 38.705904,25.193137 L 34.676855,20.715264 L 38.705904,16.23739 L 36.754295,14.238037 L 32.968278,18.187047 C 32.968278,18.187047 32.963722,10.895363 32.963722,10.895363 L 30,10.895363 z "
-     style="fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-  <path
-     style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
-     d="M 21.84375,4.03125 C 16.273135,4.4469767 11.295199,6.3799921 7.75,9.25 C 4.204801,12.120008 2.09375,15.904106 2.09375,20 C 2.093752,26.050562 6.709849,31.401486 13.65625,34.125 C 13.889662,34.247612 13.966606,34.430582 13.96875,34.625 C 13.8154,36.867085 13.233839,39.586592 11.6875,41.78125 C 16.756159,41.27394 20.580438,38.669315 23.125,36.09375 C 23.324492,35.928053 23.831229,35.96875 24.03125,35.96875 C 30.135475,35.96875 35.660367,34.1562 39.625,31.25 C 43.589633,28.3438 46,24.369973 46,20 L 46,19.90625 C 45.981043,15.545078 43.55655,11.604324 39.59375,8.71875 C 35.63095,5.8331761 30.123683,4.03125 24.03125,4.03125 C 23.381564,4.0312499 22.681539,3.982177 21.84375,4.03125 z M 24.03125,5.03125 C 29.927599,5.03125 35.264412,6.757119 39.03125,9.5 C 42.798088,12.242881 44.982638,15.911852 45,19.90625 L 45,20 C 45,24.002253 42.800008,27.674883 39.03125,30.4375 C 35.262492,33.200117 29.937773,34.96875 24.03125,34.96875 C 23.079654,34.946683 22.695929,35.117383 22.40625,35.40625 C 20.316957,37.520999 17.387178,39.593629 13.59375,40.46875 C 14.470139,38.520138 14.848653,36.443413 14.96875,34.6875 C 15.010593,33.903846 14.715478,33.607465 14.03125,33.1875 C 7.360656,30.572123 3.093751,25.543254 3.09375,20 C 3.09375,16.250753 5.042528,12.754344 8.40625,10.03125 C 11.769972,7.3081563 16.52295,5.4329977 21.90625,5.03125 C 22.667268,4.9737265 23.342191,5.0312499 24.03125,5.03125 z "
-     id="path6054"
-     sodipodi:nodetypes="csscccccsccssccsccscscccsscs" />
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/icq.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,440 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="icq.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/icq.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2256">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2258" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2260" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2248">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2250" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2252" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2240">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2242" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2244" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2232">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2234" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2236" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2224">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2226" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2228" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2216">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2218" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2220" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2208">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2210" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2212" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2361">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2363" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2365" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2321">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2323" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2325" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2321"
-       id="linearGradient2327"
-       x1="11.787398"
-       y1="11.115861"
-       x2="12.185872"
-       y2="12.839791"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2361"
-       id="linearGradient2367"
-       x1="14.592834"
-       y1="24.232048"
-       x2="14.592834"
-       y2="31.007147"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2208"
-       id="linearGradient2214"
-       x1="28.089931"
-       y1="3.8865747"
-       x2="28.089931"
-       y2="15.058928"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2216"
-       id="linearGradient2222"
-       x1="36.696918"
-       y1="10.99979"
-       x2="36.696918"
-       y2="20.717306"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2224"
-       id="linearGradient2230"
-       x1="36.701996"
-       y1="20.379145"
-       x2="36.701996"
-       y2="29.063459"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2232"
-       id="linearGradient2238"
-       x1="17.892992"
-       y1="6.7056818"
-       x2="17.892992"
-       y2="16.46983"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2240"
-       id="linearGradient2246"
-       x1="12.732279"
-       y1="14.645196"
-       x2="12.732279"
-       y2="23.238768"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2248"
-       id="linearGradient2254"
-       x1="21.683891"
-       y1="24.981401"
-       x2="21.683891"
-       y2="36.415653"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2256"
-       id="linearGradient2262"
-       x1="30.265167"
-       y1="27.26486"
-       x2="30.265167"
-       y2="35.256603"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="14.778489"
-     inkscape:cx="38.03465"
-     inkscape:cy="24.512139"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#ef2929"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.009823,0,0,2.74546,-8.351546,7.855242)" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 26.367384,35.737238 C 24.85713,31.115741 25.395878,30.363552 27.387814,29.222534 C 29.379747,28.081519 30.462949,28.167777 33.584537,31.603121 C 35.536982,34.958339 35.504926,38.607457 33.513001,39.748468 C 31.521063,40.889489 28.319827,39.092453 26.367384,35.737238 z "
-       id="path2226"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.95876986"
-       inkscape:original="M 28.75 28.625 C 28.319559 28.723691 27.872983 28.933496 27.375 29.21875 C 25.383064 30.359768 24.864746 31.128501 26.375 35.75 C 28.327443 39.105215 31.508063 40.891023 33.5 39.75 C 35.491925 38.608989 35.546194 34.948968 33.59375 31.59375 C 31.252559 29.017242 30.041322 28.328926 28.75 28.625 z "
-       xlink:href="#path2226"
-       style="opacity:0.4;fill:url(#linearGradient2262);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2242"
-       inkscape:href="#path2226"
-       d="M 28.96875,26.5 C 28.686015,26.564825 28.303156,26.736844 27.84375,27 C 27.368858,27.272027 27.042376,27.491026 26.84375,27.6875 C 26.645124,27.883974 26.558141,28.035355 26.5,28.3125 C 26.386493,28.853563 26.554045,30.085975 27.25,32.25 C 28.145595,33.765674 29.317595,34.913452 30.40625,35.53125 C 31.510083,36.157661 32.416733,36.195758 33.03125,35.84375 C 33.64681,35.491146 34.046689,34.69972 34.0625,33.4375 C 34.077874,32.210233 33.659976,30.628765 32.8125,29.125 C 31.711537,27.921881 30.874722,27.139693 30.28125,26.78125 C 29.672583,26.41363 29.393014,26.402725 28.96875,26.5 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 33.709491,31.278338 C 29.169302,28.745112 29.065713,27.592023 29.859889,24.733701 C 30.654065,21.875391 31.593198,20.926512 36.586936,20.922121 C 40.576342,21.952999 43.16957,25.109445 42.375396,27.967758 C 41.581221,30.826078 37.6989,32.309217 33.709491,31.278338 z "
-       id="path2216"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.98264426"
-       inkscape:original="M 36.59375 20.9375 C 31.600012 20.941891 30.669177 21.860439 29.875 24.71875 C 29.080824 27.577072 29.17856 28.748025 33.71875 31.28125 C 37.708159 32.312129 41.580824 30.82707 42.375 27.96875 C 43.169174 25.110437 40.583155 21.968378 36.59375 20.9375 z "
-       xlink:href="#path2216"
-       style="opacity:0.4;fill:url(#linearGradient2230);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2238"
-       inkscape:href="#path2216"
-       d="M 36.4375,18.8125 C 34.127551,18.828525 32.839067,19.094363 32.1875,19.5 C 31.517812,19.916918 31.190595,20.545455 30.8125,21.90625 C 30.427461,23.292046 30.362754,23.987827 30.6875,24.625 C 31.003678,25.245362 31.967431,26.095761 34.0625,27.28125 C 35.838582,27.720407 37.581667,27.600958 38.90625,27.09375 C 40.254639,26.577426 41.138951,25.730758 41.4375,24.65625 C 41.735829,23.582532 41.424738,22.405518 40.53125,21.3125 C 39.654391,20.239825 38.199379,19.288753 36.4375,18.8125 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 36.67848,22.648043 C 32.052133,24.231706 31.299156,23.66677 30.15694,21.57801 C 29.014732,19.489253 29.101081,18.3534 32.540028,15.08008 C 35.898764,13.032731 39.551708,13.066339 40.693916,15.155093 C 41.836132,17.243854 40.037215,20.600694 36.67848,22.648043 z "
-       id="path2224"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 15.680976,33.623016 C 11.05302,35.149988 10.299782,34.605272 9.1571703,32.591284 C 8.0145636,30.577295 8.100941,29.482102 11.541085,26.325956 C 14.900987,24.351896 18.555202,24.3843 19.697807,26.398287 C 20.840426,28.412273 19.040877,31.648952 15.680976,33.623016 z "
-       id="path2228"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0000435"
-       inkscape:original="M 16.4375 24.875 C 14.961133 24.861908 13.211201 25.32547 11.53125 26.3125 C 8.091106 29.468646 8.0136433 30.579759 9.15625 32.59375 C 10.298862 34.607738 11.059544 35.151972 15.6875 33.625 C 19.047401 31.650936 20.830119 28.420236 19.6875 26.40625 C 19.116197 25.399256 17.913867 24.888092 16.4375 24.875 z "
-       xlink:href="#path2228"
-       style="opacity:0.35;fill:url(#linearGradient2367);fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2244"
-       inkscape:href="#path2228"
-       d="M 16.4375,25.5625 C 15.225911,25.551756 13.660678,25.986763 12.15625,26.84375 C 10.550146,28.330129 9.7557904,29.328548 9.5625,29.90625 C 9.3649665,30.496634 9.5025865,30.849414 10.03125,31.78125 C 10.302942,32.260138 10.523169,32.613015 10.71875,32.8125 C 10.914331,33.011985 11.040068,33.097389 11.3125,33.15625 C 11.836378,33.269438 13.116625,33.081343 15.21875,32.40625 C 16.739932,31.503646 17.889523,30.32189 18.5,29.21875 C 19.115832,28.105933 19.160409,27.206976 18.8125,26.59375 C 18.466678,25.984194 17.687878,25.573588 16.4375,25.5625 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"
-       transform="translate(-3.261295e-4,1.945628e-4)" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 15.781196,31.980797 C 18.406839,27.241987 19.600601,27.133027 22.558995,27.959412 C 25.517377,28.785792 26.498997,29.764879 26.5,34.97494 C 25.429993,39.137961 22.160569,41.845948 19.202184,41.019566 C 16.24379,40.193181 14.711189,36.143816 15.781196,31.980797 z "
-       id="path2218"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0089091"
-       inkscape:original="M 20.625 27.5625 C 18.918105 27.466646 17.750483 28.414643 15.78125 31.96875 C 14.711243 36.131769 16.229105 40.204865 19.1875 41.03125 C 22.145885 41.857632 25.429993 39.13177 26.5 34.96875 C 26.498997 29.758689 25.520883 28.79513 22.5625 27.96875 C 21.822902 27.762154 21.193965 27.594451 20.625 27.5625 z "
-       xlink:href="#path2218"
-       style="opacity:0.4;fill:url(#linearGradient2254);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2240"
-       inkscape:href="#path2218"
-       d="M 20.5625,25.5 C 19.907811,25.463235 19.561004,25.566238 18.96875,26.09375 C 18.39939,26.600871 17.659523,27.663233 16.75,29.28125 C 16.300255,31.130934 16.385773,32.955321 16.90625,34.34375 C 17.438569,35.763767 18.360161,36.690332 19.46875,37 C 20.577929,37.309833 21.771436,36.972415 22.90625,36.03125 C 24.020697,35.106976 25.004678,33.595596 25.5,31.75 C 25.485662,29.33285 25.202556,27.963789 24.78125,27.28125 C 24.348724,26.580535 23.69033,26.268606 22.28125,25.875 C 21.548137,25.670215 20.975703,25.523204 20.5625,25.5 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 22.589636,12.085809 C 24.174724,16.906782 23.609284,17.691436 21.518638,18.881701 C 19.427991,20.071964 18.291112,19.981984 15.014841,16.398361 C 12.965643,12.898328 12.999283,9.0917088 15.089923,7.9014452 C 17.180566,6.7111801 20.540438,8.5857754 22.589636,12.085809 z "
-       id="path2222"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.96927398"
-       inkscape:original="M 16.84375 7.5625 C 16.202747 7.4994497 15.616411 7.6086837 15.09375 7.90625 C 13.00311 9.0965136 12.950802 12.906217 15 16.40625 C 18.276271 19.989873 19.440602 20.065263 21.53125 18.875 C 23.621896 17.684735 24.178838 16.914723 22.59375 12.09375 C 21.056852 9.4687248 18.76676 7.7516509 16.84375 7.5625 z "
-       xlink:href="#path2222"
-       style="opacity:0.4;fill:url(#linearGradient2238);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2232"
-       inkscape:href="#path2222"
-       d="M 16.75,5.46875 C 16.27484,5.4220124 15.902933,5.4936816 15.5625,5.6875 C 14.90056,6.0643619 14.484412,6.9299953 14.46875,8.25 C 14.453381,9.5453187 14.903286,11.163341 15.8125,12.75 C 17.344427,14.407623 18.369904,15.229192 19,15.4375 C 19.647022,15.651404 20.092056,15.52125 21.0625,14.96875 C 21.562192,14.684261 21.911138,14.459507 22.125,14.25 C 22.338862,14.040493 22.436992,13.887548 22.5,13.59375 C 22.621375,13.027792 22.42463,11.70151 21.71875,9.5 C 20.300551,7.1027674 18.170695,5.6084922 16.75,5.46875 z "
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90"
-       transform="translate(0,6.766591e-2)" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000072;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 15.110245,15.90519 C 19.82436,18.526878 19.931835,19.720374 19.106984,22.678924 C 18.282136,25.637465 17.306916,26.619664 12.121668,26.624562 C 7.9793465,25.557832 5.2869063,22.290944 6.1117518,19.332403 C 6.9366004,16.373851 10.967924,14.838461 15.110245,15.90519 z "
-       id="path2220"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0062078"
-       inkscape:original="M 12.0625 15.5625 C 9.1424837 15.682984 6.7436363 17.124836 6.125 19.34375 C 5.3001545 22.302291 7.9826786 25.558271 12.125 26.625 C 17.310248 26.620102 18.268903 25.64604 19.09375 22.6875 C 19.918601 19.72895 19.839115 18.527938 15.125 15.90625 C 14.08942 15.639568 13.035839 15.522339 12.0625 15.5625 z "
-       xlink:href="#path2220"
-       style="opacity:0.4;fill:url(#linearGradient2246);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2234"
-       inkscape:href="#path2220"
-       d="M 12.09375,13.5 C 9.4814409,13.607788 7.5619569,14.883144 7.09375,16.5625 C 6.7827532,17.677978 7.1032888,18.873814 8.03125,20 C 8.9425567,21.105974 10.44513,22.068869 12.28125,22.5625 C 14.685442,22.546282 16.040043,22.264255 16.71875,21.84375 C 17.415725,21.411927 17.731987,20.753401 18.125,19.34375 C 18.525721,17.906458 18.614647,17.219888 18.28125,16.5625 C 17.956369,15.921903 16.929755,15.04136 14.75,13.8125 C 13.845755,13.591694 12.918322,13.465977 12.09375,13.5 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0066811"
-       inkscape:original="M 37.4375 13.5625 C 35.961646 13.548922 34.210618 14.070075 32.53125 15.09375 C 29.092303 18.36707 29.014042 19.473742 30.15625 21.5625 C 31.298466 23.65126 32.061155 24.239913 36.6875 22.65625 C 40.046235 20.608901 41.829716 17.245011 40.6875 15.15625 C 40.116396 14.111873 38.913354 13.576078 37.4375 13.5625 z "
-       xlink:href="#path2224"
-       style="opacity:0.4;fill:url(#linearGradient2222);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2236"
-       inkscape:href="#path2224"
-       d="M 37.4375,11.5 C 36.209007,11.488698 34.640843,11.934525 33.125,12.84375 C 31.572994,14.343465 30.790495,15.387459 30.59375,16 C 30.38941,16.636186 30.501711,17.062882 31.03125,18.03125 C 31.303727,18.529526 31.551384,18.882242 31.75,19.09375 C 31.948616,19.305258 32.078397,19.376294 32.34375,19.4375 C 32.849897,19.554247 34.121629,19.37131 36.1875,18.6875 C 37.705568,17.753005 38.884734,16.530737 39.5,15.375 C 40.120629,14.209188 40.168638,13.213767 39.8125,12.5625 C 39.457388,11.913107 38.674773,11.511383 37.4375,11.5 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 33.125387,15.014401 C 30.26869,19.896731 28.973236,20.010902 25.764644,19.165247 C 22.556047,18.319592 21.492567,17.31342 21.500039,11.950433 C 22.667874,7.6634206 26.219761,4.8704358 29.428357,5.7160909 C 32.636953,6.5617466 34.293217,10.72739 33.125387,15.014401 z "
-       id="path2192"
-       sodipodi:nodetypes="cscsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.99950546"
-       inkscape:original="M 27 5.71875 C 24.592663 6.34847 22.375877 8.7222409 21.5 11.9375 C 21.492528 17.300487 22.541402 18.310595 25.75 19.15625 C 28.958592 20.001905 30.268305 19.88233 33.125 15 C 34.29283 10.712989 32.646097 6.5644059 29.4375 5.71875 C 28.635351 5.5073362 27.802446 5.5088433 27 5.71875 z "
-       xlink:href="#path2192"
-       style="opacity:0.4;fill:url(#linearGradient2214);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2230"
-       inkscape:href="#path2192"
-       d="M 27.25,3.625 C 25.314633,4.1312603 23.314958,6.1607857 22.5,9.03125 C 22.510826,11.522864 22.789343,12.909624 23.25,13.625 C 23.722547,14.358839 24.464582,14.720327 26,15.125 C 27.560661,15.536327 28.366368,15.654754 29.125,15.28125 C 29.867191,14.91584 30.838854,13.842149 32.1875,11.5625 C 32.678344,9.6587072 32.56307,7.7926235 32,6.375 C 31.424078,4.9250185 30.443053,3.9559128 29.1875,3.625 C 28.551361,3.4573398 27.889759,3.4576495 27.25,3.625 z "
-       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:0.21428883;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1317"
-       sodipodi:cx="12.075002"
-       sodipodi:cy="12.360133"
-       sodipodi:rx="1.1966218"
-       sodipodi:ry="1.4141895"
-       d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1  10.87838,12.360133 A 1.1966218 1.4141895 0 1 1  13.271623 12.360133 z"
-       transform="matrix(4.891864,1.290148,-1.13072,4.153499,-20.5947,-43.34178)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.4;fill:url(#linearGradient2327);fill-opacity:1;stroke:#ffffff;stroke-width:0.25782824;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2319"
-       sodipodi:cx="12.075002"
-       sodipodi:cy="12.360133"
-       sodipodi:rx="1.1966218"
-       sodipodi:ry="1.4141895"
-       d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1  10.87838,12.360133 A 1.1966218 1.4141895 0 1 1  13.271623 12.360133 z"
-       transform="matrix(4.068634,1.071527,-0.940435,3.449674,-13.02699,-32.06442)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/irc.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,238 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48px"
-   height="48px"
-   id="svg4345"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="irc.svg"
-   inkscape:export-filename="/home/hbons/Desktop/pidgin.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4347">
-    <linearGradient
-       id="linearGradient2804">
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="0"
-         id="stop2806" />
-      <stop
-         id="stop2812"
-         offset="0.5"
-         style="stop-color:black;stop-opacity:1;" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop2808" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2804"
-       id="linearGradient1516"
-       gradientUnits="userSpaceOnUse"
-       x1="21.875"
-       y1="48.000977"
-       x2="21.875"
-       y2="40" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2781"
-       id="radialGradient1514"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
-       cx="1"
-       cy="44"
-       fx="1"
-       fy="44"
-       r="5" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2781">
-      <stop
-         style="stop-color:black;stop-opacity:1;"
-         offset="0"
-         id="stop2783" />
-      <stop
-         style="stop-color:black;stop-opacity:0;"
-         offset="1"
-         id="stop2785" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2781"
-       id="radialGradient1512"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
-       cx="1"
-       cy="44"
-       fx="1"
-       fy="44"
-       r="5" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient5235">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop5237" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop5239" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3816">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop3818" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="1"
-         id="stop3820" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3816"
-       id="radialGradient4179"
-       gradientUnits="userSpaceOnUse"
-       cx="31.112698"
-       cy="19.008621"
-       fx="31.112698"
-       fy="19.008621"
-       r="8.6620579" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5235"
-       id="radialGradient5241"
-       cx="23.234518"
-       cy="40.688972"
-       fx="23.234518"
-       fy="40.688972"
-       r="16.956987"
-       gradientTransform="matrix(1,0,0,0.133183,0,35.2699)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="13.062462"
-     inkscape:cx="40.814762"
-     inkscape:cy="25.717712"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="1274"
-     inkscape:window-height="966"
-     inkscape:window-x="3"
-     inkscape:window-y="25" />
-  <metadata
-     id="metadata4350">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <g
-       id="g1504"
-       style="opacity:0.12663754"
-       transform="matrix(0.851064,0,0,0.999995,3.148928,-3.9998)">
-      <rect
-         transform="scale(-1,-1)"
-         y="-48"
-         x="-11"
-         height="8"
-         width="10"
-         id="rect1506"
-         style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
-      <rect
-         y="40"
-         x="38"
-         height="8"
-         width="10"
-         id="rect1508"
-         style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
-      <rect
-         y="40"
-         x="11"
-         height="8"
-         width="27"
-         id="rect1510"
-         style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
-    </g>
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4340"
-       sodipodi:cx="23.234518"
-       sodipodi:cy="40.688972"
-       sodipodi:rx="16.956987"
-       sodipodi:ry="2.2583797"
-       d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1  6.2775307,40.688972 A 16.956987 2.2583797 0 1 1  40.191505 40.688972 z"
-       transform="matrix(1.208941,0,0,1.980928,3.410841,15.87176)" />
-    <path
-       style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
-       id="path4334"
-       transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)"
-       sodipodi:nodetypes="cccccccccccccccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.94924349"
-       inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z "
-       style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4336"
-       d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
-       transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" />
-    <path
-       transform="matrix(2.539812,0,0,0.410815,-52.0204,75.74948)"
-       sodipodi:type="arc"
-       style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-       id="path4306"
-       sodipodi:cx="31.112698"
-       sodipodi:cy="19.008621"
-       sodipodi:rx="8.6620579"
-       sodipodi:ry="8.6620579"
-       d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1  22.45064,19.008621 A 8.6620579 8.6620579 0 1 1  39.774755 19.008621 z" />
-    <path
-       style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
-       id="rect1326"
-       transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)"
-       sodipodi:nodetypes="cccccccccccccccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.94924349"
-       inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z "
-       style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path5034"
-       d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
-       transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/jabber.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,246 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48px"
-   height="48px"
-   id="svg3302"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   sodipodi:docbase="/home/hbons/Desktop"
-   sodipodi:docname="jabber.svg"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape"
-   inkscape:export-filename="/home/hbons/Desktop/xmpp.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90">
-  <defs
-     id="defs3304">
-    <linearGradient
-       id="linearGradient2222"
-       inkscape:collect="always">
-      <stop
-         id="stop2224"
-         offset="0"
-         style="stop-color:#429538;stop-opacity:1" />
-      <stop
-         id="stop2226"
-         offset="1"
-         style="stop-color:#033e6f;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient2214"
-       inkscape:collect="always">
-      <stop
-         id="stop2216"
-         offset="0"
-         style="stop-color:#033e6f;stop-opacity:1" />
-      <stop
-         id="stop2218"
-         offset="1"
-         style="stop-color:#14a9de;stop-opacity:1" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3417">
-      <stop
-         style="stop-color:#df5219;stop-opacity:1"
-         offset="0"
-         id="stop3419" />
-      <stop
-         style="stop-color:#034072;stop-opacity:1"
-         offset="1"
-         id="stop3421" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3334">
-      <stop
-         style="stop-color:#034072;stop-opacity:1"
-         offset="0"
-         id="stop3336" />
-      <stop
-         style="stop-color:#109cd3;stop-opacity:1"
-         offset="1"
-         id="stop3338" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2214"
-       id="linearGradient3340"
-       x1="5.0133924"
-       y1="12.455358"
-       x2="15.638392"
-       y2="30.098215"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3334"
-       id="linearGradient3392"
-       gradientUnits="userSpaceOnUse"
-       x1="5.0133924"
-       y1="12.455358"
-       x2="15.638392"
-       y2="30.098215" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3417"
-       id="linearGradient3423"
-       x1="31.736355"
-       y1="20.841261"
-       x2="35.292381"
-       y2="22.255474"
-       gradientUnits="userSpaceOnUse" />
-    <filter
-       inkscape:collect="always"
-       x="-0.49491513"
-       width="1.9898303"
-       y="-1.0582332"
-       height="3.1164664"
-       id="filter3871">
-      <feGaussianBlur
-         inkscape:collect="always"
-         stdDeviation="5.4785069"
-         id="feGaussianBlur3873" />
-    </filter>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2222"
-       id="linearGradient2206"
-       gradientUnits="userSpaceOnUse"
-       x1="18.734463"
-       y1="21.519651"
-       x2="15.642859"
-       y2="23.876795" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="4.9497475"
-     inkscape:cx="81.961371"
-     inkscape:cy="4.928944"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     inkscape:window-width="1434"
-     inkscape:window-height="823"
-     inkscape:window-x="3"
-     inkscape:window-y="43" />
-  <metadata
-     id="metadata3307">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.2967033;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3871)"
-       id="path3425"
-       sodipodi:cx="22.273863"
-       sodipodi:cy="36.736797"
-       sodipodi:rx="13.283506"
-       sodipodi:ry="6.2124381"
-       d="M 35.557369 36.736797 A 13.283506 6.2124381 0 1 1  8.9903564,36.736797 A 13.283506 6.2124381 0 1 1  35.557369 36.736797 z"
-       transform="matrix(1.0990312,0,0,0.3942904,-0.4161261,25.323157)" />
-    <path
-       style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z "
-       id="path3380"
-       sodipodi:nodetypes="cccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.56227452"
-       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
-       style="fill:url(#linearGradient3392);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       id="path3382"
-       d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z "
-       transform="matrix(-1,0,0,1,47.020178,0)" />
-    <path
-       style="fill:#abbb25;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 38.234464,10.821428 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 38.448749,16.396079 38.234464,10.821428 z "
-       id="path3384"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:none;fill-opacity:1;stroke:url(#linearGradient3423);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z "
-       id="path3388"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#df5219;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 38.941571,10.619397 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 39.155856,16.194048 38.941571,10.619397 z "
-       id="path3386"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#e96d1f;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 34.3385,11.986693 L 30.221025,13 C 30.292453,15.428571 29.399596,30.892857 13.613881,39.428571 C 31.551001,34.930668 35.951771,13.823779 34.3385,11.986693 z "
-       id="path2228"
-       sodipodi:nodetypes="cccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0305283"
-       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
-       style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       id="path3390"
-       d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z "
-       transform="matrix(-1,0,0,1,47.020178,0)" />
-    <path
-       style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z "
-       id="rect3321"
-       sodipodi:nodetypes="cccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.56227452"
-       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
-       style="fill:url(#linearGradient3340);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       id="path3332"
-       d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z " />
-    <path
-       style="fill:#08aec5;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8.7857143,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 8.5714286,16.396079 8.7857143,10.821428 z "
-       id="rect3326"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#429538;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 8.1796228,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 7.7633066,17.103186 8.1796228,10.821428 z "
-       id="path3342"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:#a0ce67;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 12.811096,11.986693 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 15.598595,34.930668 11.197825,13.823779 12.811096,11.986693 z "
-       id="path2220"
-       sodipodi:nodetypes="cccc" />
-    <path
-       style="fill:none;fill-opacity:1;stroke:url(#linearGradient2206);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z "
-       id="path3352"
-       sodipodi:nodetypes="cccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0305283"
-       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
-       style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       id="path3366"
-       d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z " />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/meanwhile.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="meanwhile.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/meanwhile.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2195">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2197" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2199" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2230">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2232" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2234" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient4330"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2230"
-       id="linearGradient2236"
-       x1="10.177145"
-       y1="-1.3535745"
-       x2="10.177145"
-       y2="8.1371298"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2195"
-       id="radialGradient2211"
-       cx="30.5625"
-       cy="23.172834"
-       fx="30.5625"
-       fy="23.172834"
-       r="23.5"
-       gradientTransform="matrix(1.330958,-1.200379e-32,1.144509e-32,1.269011,-10.11491,-9.053927)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="16.976026"
-     inkscape:cx="38.972041"
-     inkscape:cy="25.781032"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#f57900"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.3;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.583369,0,0,3.000545,-14.70523,9.779617)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.67679459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4302"
-       sodipodi:cx="10.555883"
-       sodipodi:cy="4.0385542"
-       sodipodi:rx="5.074944"
-       sodipodi:ry="5.074944"
-       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
-       transform="matrix(1.477556,0,0,1.477551,8.403577,4.033323)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#linearGradient2236);fill-opacity:1;stroke:#ffffff;stroke-width:0.78084576;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4273"
-       sodipodi:cx="10.555883"
-       sodipodi:cy="4.0385542"
-       sodipodi:rx="5.074944"
-       sodipodi:ry="5.074944"
-       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
-       transform="matrix(1.280662,0,0,1.280662,10.48149,4.827989)" />
-    <path
-       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000119;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 34.49131,8.6205284 C 34.49131,13.938683 32.849731,20.518688 23.898198,20.518688 C 15.00451,20.518688 13.526711,13.679495 13.526711,8.6600767 L 5.4949228,9.8762415 C 5.4949228,23.237275 17.664236,26.553794 17.664236,26.553794 C 17.664236,26.553794 9.1712538,34.298165 9.1712538,44.405547 L 19.237281,44.498262 C 19.237281,44.498262 21.456328,35.564348 25.010569,35.564348 C 28.652494,35.564348 30.6887,44.471546 30.6887,44.471546 L 40.362294,44.503507 C 40.362294,33.010164 30.381957,26.578174 30.381957,26.578174 C 30.381957,26.578174 42.614757,23.170121 42.614757,9.5035195 L 34.49131,8.6205284 z "
-       id="rect2213"
-       sodipodi:nodetypes="czccccczccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.9525249"
-       inkscape:original="M 34.5 8.625 C 34.5 13.943155 32.857783 20.53125 23.90625 20.53125 C 15.012563 20.53125 13.53125 13.675668 13.53125 8.65625 L 5.5 9.875 C 5.5000002 23.236033 17.65625 26.5625 17.65625 26.5625 C 17.65625 26.562499 9.15625 34.298868 9.15625 44.40625 L 19.25 44.5 C 19.249999 44.500002 21.445759 35.5625 25 35.5625 C 28.641925 35.562502 30.6875 44.46875 30.6875 44.46875 L 40.375 44.5 C 40.375001 33.006658 30.375 26.59375 30.375 26.59375 C 30.375001 26.593749 42.625 23.166602 42.625 9.5 L 34.5 8.625 z "
-       xlink:href="#rect2213"
-       style="opacity:0.6;fill:url(#radialGradient2211);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2220"
-       inkscape:href="#rect2213"
-       d="M 45.40625,11.75 C 45.26383,14.467634 44.656918,17.754917 42.6875,20.65625 C 40.459732,23.938183 36.552927,26.5 30.5,26.5 C 24.488156,26.5 20.637234,23.994802 18.4375,20.75 C 16.4845,17.869153 15.883719,14.581533 15.75,11.84375 L 7.5625,13.15625 C 7.8022289,20.855399 11.189172,25.378007 14.65625,28.03125 C 18.250337,30.781689 21.8125,31.5 21.8125,31.5 C 22.153479,31.568346 22.430121,31.817069 22.53422,32.148884 C 22.638319,32.4807 22.553332,32.842875 22.3125,33.09375 C 22.3125,33.09375 12.834342,43.464627 12.34375,55.4375 L 23.625,55.5625 C 23.775583,54.968024 24.284703,52.850143 25.46875,50.125 C 26.139238,48.581838 26.957479,47.047605 27.96875,45.8125 C 28.980021,44.577395 30.249533,43.59375 31.8125,43.59375 C 33.392834,43.59375 34.682884,44.544922 35.6875,45.78125 C 36.692116,47.017578 37.481015,48.583576 38.125,50.125 C 39.262583,52.847886 39.73782,54.93884 39.875,55.53125 L 50.59375,55.5625 C 49.991815,42.90975 37.8125,33.21875 37.8125,33.21875 C 37.516383,32.984647 37.386427,32.597781 37.481159,32.232384 C 37.575892,31.866987 37.877442,31.591993 38.25,31.53125 C 38.25,31.53125 42.11079,30.902899 45.96875,28.21875 C 49.692789,25.627775 53.310428,21.149688 53.5625,13.28125 L 45.40625,11.75 z " />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/msn.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="msn.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/msn.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3816">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop3818" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="1"
-         id="stop3820" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2228">
-      <stop
-         style="stop-color:#f56600;stop-opacity:1;"
-         offset="0"
-         id="stop2230" />
-      <stop
-         style="stop-color:#f56600;stop-opacity:0;"
-         offset="1"
-         id="stop2232" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2219">
-      <stop
-         style="stop-color:#3465a4;stop-opacity:1;"
-         offset="0"
-         id="stop2221" />
-      <stop
-         style="stop-color:#3465a4;stop-opacity:0;"
-         offset="1"
-         id="stop2223" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3816"
-       id="radialGradient1358"
-       gradientUnits="userSpaceOnUse"
-       cx="31.112698"
-       cy="19.008621"
-       fx="31.112698"
-       fy="19.008621"
-       r="8.6620579"
-       gradientTransform="matrix(1.904859,0,0,0.57723,-32.76529,27.09015)" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2219"
-       id="linearGradient1360"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.427299,0,0,1.408267,0.332861,3.39912)"
-       x1="10.329217"
-       y1="14.96656"
-       x2="16.580788"
-       y2="20.092552" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2228"
-       id="linearGradient1362"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.489007,0,0,1.428565,1.731241,3.002037)"
-       x1="20.998175"
-       y1="11.741063"
-       x2="18.544895"
-       y2="23.366545" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="14.778489"
-     inkscape:cx="32.469518"
-     inkscape:cy="22.977647"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#edd400"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       style="opacity:0.4;color:#000000;fill:url(#radialGradient1358);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-       d="M 43.00001,38.062496 C 43.00001,40.822496 35.608012,43.062496 26.500013,43.062496 C 17.392013,43.062496 10.000014,40.822496 10.000014,38.062496 C 10.000014,35.302496 17.392013,33.062496 26.500013,33.062496 C 35.608012,33.062496 43.00001,35.302496 43.00001,38.062496 z "
-       id="path4318" />
-    <path
-       style="fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 34.662639,20.335823 C 39.495137,21.781376 40.098879,38.560591 34.609432,38.560591 C 29.18649,38.560591 17.111515,15.085731 34.662639,20.335823 z "
-       id="rect2194" />
-    <path
-       style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 29.5,20.59375 C 28.488762,20.699063 27.850577,20.9863 27.40625,21.40625 C 26.961923,21.8262 26.695785,22.399576 26.5625,23.15625 C 26.295929,24.669599 26.724448,26.888006 27.625,29.09375 C 28.525552,31.299494 29.853318,33.518217 31.21875,35.125 C 32.584182,36.731783 34.047656,37.59375 34.625,37.59375 C 35.065414,37.59375 35.396266,37.452251 35.75,37.125 C 36.103734,36.797749 36.436723,36.267837 36.71875,35.5625 C 37.282805,34.151825 37.566795,32.092358 37.53125,30 C 37.495705,27.907642 37.16426,25.762788 36.5625,24.125 C 35.96074,22.487212 35.097603,21.497403 34.375,21.28125 C 32.261511,20.64904 30.658881,20.473061 29.5,20.59375 z "
-       id="path2259" />
-    <path
-       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 24.98559,40.707419 C 20.31754,40.707419 7.959768,29.343494 17.418553,22.824249 C 26.869109,16.310672 29.725145,40.707419 24.98559,40.707419 z "
-       id="rect2201" />
-    <path
-       style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999911;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 20.429472,22.564494 C 19.813992,22.53919 18.946491,22.754031 17.792299,23.48193 C 15.396153,24.993077 14.598274,26.486625 14.509287,28.117394 C 14.420299,29.74816 15.197952,31.630592 16.500622,33.380577 C 17.803294,35.130559 19.637587,36.743254 21.398232,37.871181 C 23.158877,38.999109 24.734359,39.505165 25.355011,39.505165 C 25.714095,39.505165 25.973542,38.578409 26.134382,37.774606 C 26.456061,36.166999 26.487926,33.806821 26.080561,31.449134 C 25.673198,29.091442 24.821426,26.682961 23.766308,25.027083 C 22.711189,23.371206 21.583796,22.611947 20.429472,22.564494 z "
-       id="path2254" />
-    <path
-       style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 38.290982,9.1309894 C 35.842841,9.5672523 32.283411,12.929344 29.603482,16.28724 C 27.08796,19.439138 25.478582,22.11333 25.259732,22.47474 L 28.572232,30.03724 C 34.665525,29.832673 38.559865,27.128092 38.853482,26.91224 C 39.014293,26.551466 40.549044,23.055678 41.478482,19.03724 C 41.967713,16.922043 42.260097,14.730906 42.072232,12.97474 C 41.884367,11.218574 41.30548,10.015388 40.103482,9.3809894 C 39.532517,9.0796416 38.992058,9.0060564 38.290982,9.1309894 z "
-       id="path2245" />
-    <path
-       style="fill:url(#linearGradient1360);fill-opacity:1;stroke:#204a87;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 2.9244668,13.205506 C 5.4909473,8.9616426 31.868508,26.916697 20.798169,29.292473 C 9.7422309,31.665159 0.38413836,17.406122 2.9244668,13.205506 z "
-       id="rect2197" />
-    <path
-       style="opacity:0.2;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999905;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 4.0077208,17.150417 C 4.6613048,18.933996 5.9435775,21.021975 7.6235197,22.895457 C 10.983405,26.64242 15.833733,29.401717 20.89796,28.310863 C 21.928379,28.088904 22.232928,27.802155 22.334374,27.651594 C 22.435813,27.501039 22.52111,27.289844 22.334374,26.709786 C 21.960899,25.54967 20.384396,23.482994 18.173725,21.529832 C 15.963059,19.576669 13.153701,17.6285 10.545878,16.161517 C 7.9380537,14.694536 5.1976761,13.680027 3.975949,13.563989 C 3.3254548,13.502207 3.3541371,15.366838 4.0077208,17.150417 z "
-       id="path2249" />
-    <path
-       style="fill:url(#linearGradient1362);fill-opacity:1;stroke:#ce5d00;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 23.497613,20.84222 C 23.497613,20.84222 33.747199,3.7130144 39.940221,6.9816102 C 46.183621,10.276795 39.032218,26.044415 39.032218,26.044415 C 39.032218,26.044415 34.34592,29.558038 27.298467,29.558038 L 23.497613,20.84222 z "
-       id="rect1317" />
-    <path
-       style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 37.65625,7.5937494 C 35.207156,8.0301823 31.648755,11.392008 28.96875,14.75 C 26.453156,17.901987 24.843855,20.576081 24.625,20.9375 L 27.9375,28.5 C 34.029365,28.295478 37.922857,25.592475 38.21875,25.375 C 38.379566,25.014217 39.91427,21.518622 40.84375,17.5 C 41.333003,15.384706 41.625396,13.193957 41.4375,11.4375 C 41.249604,9.6810425 40.671312,8.4784456 39.46875,7.8437494 C 38.897466,7.5422332 38.357596,7.4687683 37.65625,7.5937494 z "
-       id="path1328" />
-    <path
-       style="fill:#75507b;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 25.75715,25.780775 C 27.420525,29.605605 28.313593,33.06003 27.750608,33.491546 C 27.187623,33.923061 25.380722,31.169067 23.717348,27.344236 C 22.053974,23.519407 21.160905,20.064982 21.72389,19.633467 C 22.286875,19.201951 24.093776,21.955945 25.75715,25.780775 z "
-       id="path2192" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/novell.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,167 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/scalable"
-   sodipodi:docname="novell.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/groupwise.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2190">
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:1;"
-         offset="0"
-         id="stop2192" />
-      <stop
-         style="stop-color:#d3d7cf;stop-opacity:0;"
-         offset="1"
-         id="stop2194" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2238">
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:1;"
-         offset="0"
-         id="stop2240" />
-      <stop
-         style="stop-color:#eeeeec;stop-opacity:0;"
-         offset="1"
-         id="stop2242" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2238"
-       id="linearGradient2244"
-       x1="11.76915"
-       y1="3.4633243"
-       x2="11.76915"
-       y2="11.990735"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.888889,0,0,1.818182,2.77778,1.26862)" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2190"
-       id="radialGradient2196"
-       cx="4.3022962"
-       cy="7.5011024"
-       fx="4.3022962"
-       fy="7.5011024"
-       r="8.5"
-       gradientTransform="matrix(-2.567716,2.567716,-2.581797,-2.581795,54.64024,19.71367)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="12.865422"
-     inkscape:cx="44.509337"
-     inkscape:cy="25.527163"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#00ffff"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(2.934577,0,0,2.111893,-7.042754,16.91046)" />
-    <rect
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect1326"
-       width="33.012436"
-       height="35.008015"
-       x="7.4937739"
-       y="5.4919853"
-       ry="4.0986137"
-       rx="4.0986137" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.99578816"
-       inkscape:original="M 11.59375 5.5 C 9.323118 5.5 7.5 7.323118 7.5 9.59375 L 7.5 36.40625 C 7.5 38.676882 9.3231175 40.5 11.59375 40.5 L 36.40625 40.5 C 38.676882 40.5 40.5 38.676882 40.5 36.40625 L 40.5 9.59375 C 40.5 7.323118 38.676882 5.5 36.40625 5.5 L 11.59375 5.5 z "
-       xlink:href="#rect1326"
-       style="opacity:1;fill:url(#radialGradient2196);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2201"
-       inkscape:href="#rect1326"
-       d="M 9.5,5.5 C 8.9264847,5.5 8.5,5.9264831 8.5,6.5 L 8.5,37.5 C 8.5,38.073517 8.9264835,38.499999 9.5,38.5 L 38.5,38.5 C 39.073514,38.5 39.5,38.073514 39.5,37.5 L 39.5,6.5 C 39.5,5.9264836 39.073514,5.5 38.5,5.5 L 9.5,5.5 z " />
-    <path
-       style="fill:#cc0000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 16,13.995893 L 16,32.182309 L 19.840233,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z "
-       id="rect1317"
-       sodipodi:nodetypes="ccccccccccc" />
-    <path
-       style="fill:url(#linearGradient2244);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 16,13.995893 L 16,32.182309 L 19.840234,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z "
-       id="path2228"
-       sodipodi:nodetypes="ccccccccccc" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/qq.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,291 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable"
-   sodipodi:docname="qq.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/qq.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2234">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2236" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2238" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2226">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2228" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2230" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2226"
-       id="linearGradient2232"
-       x1="13.296353"
-       y1="9.8980713"
-       x2="13.296353"
-       y2="11.762599"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2234"
-       id="linearGradient2240"
-       x1="23.995228"
-       y1="3.6292775"
-       x2="23.995228"
-       y2="15.460559"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="13.788818"
-     inkscape:cx="40.171151"
-     inkscape:cy="24.9552"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     fill="#f57900"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(2.884895,0,0,2.493965,-7.834213,14.7186)"
-       inkscape:export-xdpi="90"
-       inkscape:export-ydpi="90" />
-    <path
-       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 42.428297,39.500007 C 42.428297,41.665624 39.100419,43.423228 34.999998,43.423228 C 30.899577,43.423228 27.571699,41.665624 27.571699,39.500007 C 27.571699,37.334387 30.899577,35.576783 34.999998,35.576783 C 39.100419,35.576783 42.428297,37.334387 42.428297,39.500007 z "
-       id="path2344" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.1975733"
-       inkscape:original="M 35 35.5625 C 30.899579 35.5625 27.5625 37.334379 27.5625 39.5 C 27.5625 41.665617 30.899581 43.437499 35 43.4375 C 39.100421 43.4375 42.437502 41.665616 42.4375 39.5 C 42.4375 37.33438 39.100423 35.562501 35 35.5625 z "
-       xlink:href="#path2344"
-       style="opacity:0.2;fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2213"
-       inkscape:href="#path2344"
-       d="M 35,36.75 C 33.122288,36.75 31.437541,37.185098 30.3125,37.78125 C 29.187459,38.377402 28.75,39.032317 28.75,39.5 C 28.75,39.96768 29.187459,40.622598 30.3125,41.21875 C 31.437541,41.814902 33.12229,42.25 35,42.25 C 36.877711,42.25 38.562459,41.814902 39.6875,41.21875 C 40.812541,40.622598 41.25,39.967679 41.25,39.5 C 41.25,39.032317 40.812541,38.377402 39.6875,37.78125 C 38.562459,37.185098 36.877713,36.75 35,36.75 z " />
-    <path
-       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 20.428294,39.500007 C 20.428294,41.665624 17.100417,43.423228 12.999998,43.423228 C 8.8995795,43.423228 5.5717033,41.665624 5.5717033,39.500007 C 5.5717033,37.334387 8.8995795,35.576783 12.999998,35.576783 C 17.100417,35.576783 20.428294,37.334387 20.428294,39.500007 z "
-       id="path2340" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.1365247"
-       inkscape:original="M 13 35.5625 C 8.8995815 35.5625 5.5624999 37.334379 5.5625 39.5 C 5.5625 41.665617 8.8995814 43.437499 13 43.4375 C 17.100419 43.4375 20.437501 41.665616 20.4375 39.5 C 20.4375 37.33438 17.100419 35.562501 13 35.5625 z "
-       xlink:href="#path2340"
-       style="fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
-       id="path2216"
-       inkscape:href="#path2340"
-       d="M 13,36.6875 C 11.113496,36.6875 9.417597,37.116607 8.28125,37.71875 C 7.144903,38.320893 6.6875,39.00096 6.6875,39.5 C 6.6875,39.999037 7.1449028,40.679107 8.28125,41.28125 C 9.4175972,41.883393 11.113496,42.3125 13,42.3125 C 14.886503,42.3125 16.582403,41.883393 17.71875,41.28125 C 18.855097,40.679107 19.3125,39.999036 19.3125,39.5 C 19.3125,39.00096 18.855097,38.320893 17.71875,37.71875 C 16.582403,37.116607 14.886504,36.6875 13,36.6875 z " />
-    <path
-       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 16.512817,28.000001 C 16.512817,31.046362 13.819074,33.518772 10.499997,33.518772 C 7.1809214,33.518772 4.4871784,31.046362 4.4871784,28.000001 C 4.4871784,24.953638 7.1809214,22.481229 10.499997,22.481229 C 13.819074,22.481229 16.512817,24.953638 16.512817,28.000001 z "
-       id="path2346" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.99468362"
-       inkscape:original="M 10.5 22.46875 C 7.1809244 22.46875 4.5000001 24.953636 4.5 28 C 4.5 31.046361 7.1809243 33.53125 10.5 33.53125 C 13.819077 33.53125 16.5 31.04636 16.5 28 C 16.5 24.953637 13.819077 22.468749 10.5 22.46875 z "
-       xlink:href="#path2346"
-       style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
-       id="path2207"
-       inkscape:href="#path2346"
-       d="M 10.5,23.46875 C 7.677383,23.46875 5.5000001,25.537211 5.5,28 C 5.5,30.462786 7.6773835,32.53125 10.5,32.53125 C 13.322618,32.53125 15.5,30.462785 15.5,28 C 15.5,25.537212 13.322618,23.468749 10.5,23.46875 z " />
-    <path
-       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 43.529524,27.990624 C 43.529524,31.032236 40.925766,33.500791 37.717565,33.500791 C 34.509364,33.500791 31.905607,31.032236 31.905607,27.990624 C 31.905607,24.94901 34.509364,22.480455 37.717565,22.480455 C 40.925766,22.480455 43.529524,24.94901 43.529524,27.990624 z "
-       id="path2348" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0194331"
-       inkscape:original="M 37.71875 22.46875 C 34.510549 22.46875 31.90625 24.958387 31.90625 28 C 31.90625 31.041612 34.51055 33.500001 37.71875 33.5 C 40.926951 33.5 43.531248 31.041613 43.53125 28 C 43.53125 24.958386 40.926952 22.46875 37.71875 22.46875 z "
-       xlink:href="#path2348"
-       style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
-       id="path2210"
-       inkscape:href="#path2348"
-       d="M 37.71875,23.5 C 35.037951,23.5 32.9375,25.540295 32.9375,28 C 32.9375,30.459704 35.031333,32.468751 37.71875,32.46875 C 40.406169,32.46875 42.499998,30.459706 42.5,28 C 42.5,25.540294 40.39955,23.5 37.71875,23.5 z " />
-    <path
-       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 39.499823,30.499795 C 39.499823,37.123448 32.555881,42.499166 23.999954,42.499166 C 15.444028,42.499166 8.500088,37.123448 8.500088,30.499795 C 8.500088,23.876141 15.444028,18.500423 23.999954,18.500423 C 32.555881,18.500423 39.499823,23.876141 39.499823,30.499795 z "
-       id="path2322" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0023749"
-       inkscape:original="M 24 18.5 C 15.444074 18.5 8.5000003 23.876345 8.5 30.5 C 8.5 37.123653 15.444074 42.500001 24 42.5 C 32.555927 42.5 39.499998 37.123652 39.5 30.5 C 39.5 23.876346 32.555927 18.5 24 18.5 z "
-       xlink:href="#path2322"
-       style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
-       id="path2204"
-       inkscape:href="#path2322"
-       d="M 24,19.5 C 19.931993,19.5 16.266755,20.79143 13.65625,22.8125 C 11.045745,24.83357 9.5000001,27.538461 9.5,30.5 C 9.5,33.461538 11.045745,36.16643 13.65625,38.1875 C 16.266755,40.20857 19.931994,41.5 24,41.5 C 28.068007,41.5 31.733245,40.20857 34.34375,38.1875 C 36.954255,36.16643 38.499999,33.461538 38.5,30.5 C 38.5,27.538461 36.954255,24.83357 34.34375,22.8125 C 31.733245,20.79143 28.068007,19.5 24,19.5 z " />
-    <path
-       style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:0.99999964;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 35.499727,31.513502 C 35.499727,36.473648 30.347846,40.499275 23.999994,40.499275 C 17.652141,40.499275 12.500261,36.473648 12.500261,31.513502 C 12.500261,26.553353 17.652141,22.527728 23.999994,22.527728 C 30.347846,22.527728 35.499727,26.553353 35.499727,31.513502 z "
-       id="path2324" />
-    <path
-       style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 39.500074,23.567769 C 39.500074,26.23172 32.974173,28.996603 24.456043,28.996603 C 22.326509,28.996603 16.736214,27.907042 11.047899,32.502199 C 9.5994849,31.202637 8.2282338,30.682189 7.4999943,29.550469 C 10.583901,26.508381 9.3151719,24.813625 9.3151719,23.481649 C 9.3151719,20.817694 15.551058,19.435466 24.069189,19.435466 C 32.587316,19.435466 39.500074,20.903814 39.500074,23.567769 z "
-       id="path2338"
-       sodipodi:nodetypes="csccscc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0198945"
-       inkscape:original="M 24.0625 19.4375 C 15.544369 19.4375 9.3124997 20.804795 9.3125 23.46875 C 9.3125 24.800726 10.583907 26.520413 7.5 29.5625 C 8.2282395 30.69422 9.6140857 31.20044 11.0625 32.5 C 16.750815 27.904843 22.339216 29 24.46875 29 C 32.98688 29 39.500002 26.226452 39.5 23.5625 C 39.5 20.898545 32.580627 19.437499 24.0625 19.4375 z "
-       xlink:href="#path2338"
-       style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2352"
-       inkscape:href="#path2338"
-       d="M 23.78125,20.625 C 19.513931,20.625 15.847844,21.000067 13.34375,21.71875 C 12.091703,22.078092 11.128194,22.525914 10.5625,22.96875 C 9.9968057,23.411586 9.84375,23.757615 9.84375,24.15625 C 9.84375,24.61981 10.180025,25.486492 10.09375,26.75 C 10.020891,27.817027 9.4211808,29.129125 8.28125,30.59375 C 8.8275971,31.260718 9.8376614,32.075363 10.96875,33.09375 C 13.726867,30.866878 16.436481,29.770299 18.71875,29.4375 C 21.226032,29.07189 23.299616,29.375 24.1875,29.375 C 28.393452,29.375 32.111073,28.617129 34.6875,27.53125 C 35.975713,26.988311 36.964234,26.376877 37.59375,25.78125 C 38.223266,25.185623 38.4375,24.662279 38.4375,24.28125 C 38.4375,23.923108 38.262431,23.559823 37.625,23.09375 C 36.987569,22.627677 35.940994,22.158273 34.59375,21.78125 C 31.899262,21.027204 28.043658,20.625 23.78125,20.625 z " />
-    <path
-       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 21.960325,3.5010229 L 25.764207,3.5010229 C 31.085197,3.5010229 35.608549,8.5308564 36.949275,14.000863 C 38.32645,19.619567 37.747111,24.500705 27.838472,24.500705 L 20.083608,24.500705 C 10.158913,24.500705 9.6944095,19.619567 11.071582,14.000863 C 12.355856,8.7611743 16.639337,3.5010229 21.960325,3.5010229 z "
-       id="rect2317"
-       sodipodi:nodetypes="ccsccsc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0200312"
-       inkscape:original="M 21.96875 3.5 C 16.647762 3.5 12.346774 8.7603112 11.0625 14 C 9.6853275 19.618704 10.169054 24.499999 20.09375 24.5 L 27.84375 24.5 C 37.752389 24.5 38.314674 19.618704 36.9375 14 C 35.596774 8.5299934 31.070989 3.5000001 25.75 3.5 L 21.96875 3.5 z "
-       xlink:href="#rect2317"
-       style="opacity:0.2;fill:url(#linearGradient2240);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1"
-       id="path2355"
-       inkscape:href="#rect2317"
-       d="M 22.3125,5.625 C 20.004556,5.625 17.866452,6.7459198 16.125,8.5625 C 14.383548,10.37908 13.095153,12.874863 12.5,15.3125 C 11.838105,18.0235 11.722466,20.352475 12.65625,21.875 C 13.590034,23.397525 15.704379,24.53125 20.46875,24.53125 L 28.15625,24.53125 C 32.912367,24.53125 35.073893,23.40303 36.03125,21.875 C 36.988607,20.34697 36.879156,18.0174 36.21875,15.3125 C 34.977402,10.228171 30.73919,5.6249999 26.09375,5.625 L 22.3125,5.625 z " />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2326"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(2.437541,0,0,2.010344,6.500003,5.040414)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2328"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(2.336368,0,0,1.926902,14.93582,5.121749)" />
-    <path
-       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 34.506346,21.499996 C 34.506346,24.245838 29.795953,26.474343 23.99207,26.474343 C 18.188191,26.474343 13.477796,24.245838 13.477796,21.499996 C 13.477796,18.754158 18.188191,16.52565 23.99207,16.52565 C 29.795953,16.52565 34.506346,18.754158 34.506346,21.499996 z "
-       id="path2320" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2330"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(1.218772,0,0,0.603105,19.74999,11.41212)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2332"
-       sodipodi:cx="5.5383673"
-       sodipodi:cy="3.4618888"
-       sodipodi:rx="1.2307483"
-       sodipodi:ry="2.4871371"
-       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
-       transform="matrix(1.21877,0,0,0.603105,14.75,11.41212)" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.2;fill:url(#linearGradient2232);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.60585797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2336"
-       sodipodi:cx="13.296353"
-       sodipodi:cy="10.923561"
-       sodipodi:rx="8.2214088"
-       sodipodi:ry="1.7085644"
-       d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1  5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1  21.517762 10.923561 z"
-       transform="matrix(1.167356,0,0,2.333756,8.467761,-4.004284)" />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/silc.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,153 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="silc.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/silc.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2193">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2195" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2197" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2222">
-      <stop
-         style="stop-color:#8ae234;stop-opacity:1;"
-         offset="0"
-         id="stop2224" />
-      <stop
-         style="stop-color:#8ae234;stop-opacity:0;"
-         offset="1"
-         id="stop2226" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2222"
-       id="linearGradient1318"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(2.08567,0,0,1.999113,-1.709138,-1.492105)"
-       x1="14.315197"
-       y1="11.002394"
-       x2="13.638538"
-       y2="-28.749279" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2193"
-       id="linearGradient2203"
-       x1="20.834801"
-       y1="17.936523"
-       x2="26.154163"
-       y2="21.007658"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="13.788817"
-     inkscape:cx="35.001851"
-     inkscape:cy="20.952874"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#9db029"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.461296,0,0,2.111892,-13.20427,14.91459)" />
-    <path
-       style="opacity:1;fill:url(#linearGradient1318);fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999911;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 20.489949,11.011929 C 20.489949,11.915899 20.607326,27.829773 20.511631,29.556634 C 20.511631,29.556634 7.9604471,29.494161 7.7415566,29.494161 C 5.406724,29.494161 3.5050383,31.205765 3.5050383,33.545004 C 3.5050383,35.87227 5.406724,37.500189 7.7415566,37.500189 L 21.797683,37.500189 C 26.78121,37.500189 28.663439,35.244533 28.663439,32.002624 C 28.663439,31.098653 28.395875,13.209261 28.505671,11.511706 C 28.505671,11.511706 40.472455,11.511706 41.202093,11.511706 C 43.536926,11.511706 45.50004,9.6968193 45.50004,7.3652154 C 45.50004,5.7067176 43.536923,3.5056793 41.202093,3.5056793 L 26.642947,3.5056793 C 23.379817,3.5056793 20.489949,5.5738454 20.489949,11.011929 z "
-       id="rect3167"
-       sodipodi:nodetypes="ccssscscssscs" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0564219"
-       inkscape:original="M 26.65625 3.5 C 23.393121 3.4999999 20.5 5.5619164 20.5 11 C 20.500001 11.90397 20.595695 27.835639 20.5 29.5625 C 20.5 29.562499 7.9688905 29.5 7.75 29.5 C 5.4151674 29.499999 3.5 31.192011 3.5 33.53125 C 3.5 35.858514 5.4151674 37.5 7.75 37.5 L 21.8125 37.5 C 26.796026 37.499998 28.65625 35.241909 28.65625 32 C 28.65625 31.096028 28.390204 13.197555 28.5 11.5 C 28.5 11.5 40.457862 11.5 41.1875 11.5 C 43.522335 11.5 45.5 9.7066039 45.5 7.375 C 45.500002 5.7165023 43.52233 3.5 41.1875 3.5 L 26.65625 3.5 z "
-       xlink:href="#rect3167"
-       style="opacity:0.5;fill:url(#linearGradient2203);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path1316"
-       inkscape:href="#rect3167"
-       d="M 26.65625,4.53125 C 25.249537,4.53125 24.032886,4.9412683 23.125,5.90625 C 22.217114,6.8712317 21.5625,8.4647612 21.5625,11 C 21.5625,11.415298 21.581781,15.655374 21.59375,19.96875 C 21.605719,24.282126 21.621325,28.562355 21.5625,29.625 C 21.532315,30.188634 21.064428,30.628998 20.5,30.625 C 20.5,30.625 17.347604,30.609375 14.1875,30.59375 C 11.027396,30.578125 7.758935,30.5625 7.75,30.5625 C 5.9336242,30.562499 4.5625,31.79623 4.5625,33.5625 C 4.5625,35.313821 5.8995405,36.4375 7.75,36.4375 L 21.78125,36.4375 C 24.114194,36.4375 25.537737,35.928156 26.375,35.1875 C 27.212263,34.446844 27.59375,33.417796 27.59375,32 C 27.59375,31.65099 27.521563,26.864091 27.46875,22.0625 C 27.442343,19.661704 27.415771,17.24736 27.40625,15.3125 C 27.396729,13.37764 27.400585,12.008829 27.4375,11.4375 C 27.467685,10.873866 27.935572,10.433502 28.5,10.4375 C 28.5,10.4375 40.457735,10.4375 41.1875,10.4375 C 42.9733,10.4375 44.4375,9.0816356 44.4375,7.34375 C 44.4375,6.9328186 44.123387,6.1347887 43.5,5.53125 C 42.876613,4.9277113 42.021185,4.53125 41.1875,4.53125 L 26.65625,4.53125 z " />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/simple.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg2"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="simple.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/sip.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs4">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2227">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2229" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2231" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-1.017285,3.152773e-16,-5.511361e-9,-0.35721,21.6831,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2227"
-       id="linearGradient2233"
-       x1="25.0156"
-       y1="8.8961887"
-       x2="25.0156"
-       y2="21.733829"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="13.788817"
-     inkscape:cx="34.924917"
-     inkscape:cy="22.006439"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     fill="#eeeeec"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata7">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1">
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.4;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.376861,0,0,1.900703,-12.73565,10.62313)" />
-    <path
-       style="fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1"
-       d="M 2.4375,10.5 L 2.4375,22.5 L 13.75,22.5 L 13.75,26.5 L 2.4375,26.5 L 2.4375,30.5 L 17.5,30.5 L 17.5,18.5 L 6.21875,18.5 L 6.21875,14.5 L 17.5,14.5 L 17.5,10.5 L 2.4375,10.5 z M 21.46875,10.5 L 21.46875,30.5 L 25.5,30.5 L 25.5,10.5 L 21.46875,10.5 z M 29.5,10.5 L 29.5,30.5 L 33.5,30.5 L 33.5,22.5 L 45.5,22.5 L 45.5,10.5 L 29.5,10.5 z M 33.5,14.5 L 41.5,14.5 L 41.5,18.5625 L 33.5,18.5625 L 33.5,14.5 z "
-       id="rect2212" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0424688"
-       inkscape:original="M 2.4375 10.5 L 2.4375 22.5 L 13.75 22.5 L 13.75 26.5 L 2.4375 26.5 L 2.4375 30.5 L 17.5 30.5 L 17.5 18.5 L 6.21875 18.5 L 6.21875 14.5 L 17.5 14.5 L 17.5 10.5 L 2.4375 10.5 z M 21.46875 10.5 L 21.46875 30.5 L 25.5 30.5 L 25.5 10.5 L 21.46875 10.5 z M 29.5 10.5 L 29.5 30.5 L 33.5 30.5 L 33.5 22.5 L 45.5 22.5 L 45.5 10.5 L 29.5 10.5 z M 33.5 14.5 L 41.5 14.5 L 41.5 18.5625 L 33.5 18.5625 L 33.5 14.5 z "
-       xlink:href="#rect2212"
-       style="fill:url(#linearGradient2233);fill-opacity:1.0;stroke:#ffffff;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1;opacity:0.35"
-       id="path1352"
-       inkscape:href="#rect2212"
-       d="M 3.46875,11.53125 L 3.46875,21.46875 L 13.75,21.46875 C 14.316987,21.474875 14.775125,21.933013 14.78125,22.5 L 14.78125,26.5 C 14.775125,27.066987 14.316987,27.525125 13.75,27.53125 L 3.46875,27.53125 L 3.46875,29.46875 L 16.46875,29.46875 L 16.46875,19.53125 L 6.21875,19.53125 C 5.6517628,19.525125 5.1936251,19.066987 5.1875,18.5 L 5.1875,14.5 C 5.1936251,13.933013 5.6517628,13.474875 6.21875,13.46875 L 16.46875,13.46875 L 16.46875,11.53125 L 3.46875,11.53125 z M 22.5,11.53125 L 22.5,29.46875 L 24.46875,29.46875 L 24.46875,11.53125 L 22.5,11.53125 z M 30.53125,11.53125 L 30.53125,29.46875 L 32.46875,29.46875 L 32.46875,22.5 C 32.474875,21.933013 32.933013,21.474875 33.5,21.46875 L 44.46875,21.46875 L 44.46875,11.53125 L 30.53125,11.53125 z M 33.3125,13.46875 C 33.374873,13.463118 33.437627,13.463118 33.5,13.46875 L 41.5,13.46875 C 42.066987,13.474875 42.525125,13.933013 42.53125,14.5 L 42.53125,18.5625 C 42.525125,19.129487 42.066987,19.587625 41.5,19.59375 L 33.5,19.59375 C 32.933013,19.587625 32.474875,19.129487 32.46875,18.5625 L 32.46875,14.5 C 32.464991,13.997926 32.819624,13.564486 33.3125,13.46875 z " />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/yahoo.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,174 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg1307"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="yahoo.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/yahoo.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs1309">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2211">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2213" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2215" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient4123">
-      <stop
-         style="stop-color:#ff0000;stop-opacity:1;"
-         offset="0"
-         id="stop4125" />
-      <stop
-         style="stop-color:#ff0000;stop-opacity:0;"
-         offset="1"
-         id="stop4127" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient4123"
-       id="linearGradient2206"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.871443,0,0,1.871443,1.990827,1.339082)"
-       x1="9.7634506"
-       y1="11.499014"
-       x2="9.7634506"
-       y2="0.12942761" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2211"
-       id="linearGradient2217"
-       x1="36.249207"
-       y1="7.6495404"
-       x2="36.249207"
-       y2="23.063982"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="11.098901"
-     inkscape:cx="49.54817"
-     inkscape:cy="29.700698"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     fill="#a40000"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata1312">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <rect
-       style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect3203"
-       width="0"
-       height="2.5118096"
-       x="6"
-       y="6.4881902" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.163562,0,0,2.111892,-10.02562,12.91459)" />
-    <path
-       style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 36.593752,13.5 L 36.750002,24.71875 L 44.125002,13.5 L 36.593752,13.5 z M 33.406252,30.34375 C 32.052922,30.519922 31.000003,31.724054 31.000002,33.15625 C 31.000002,34.70982 32.231505,35.96875 33.750002,35.96875 C 35.268499,35.96875 36.500002,34.70982 36.500002,33.15625 C 36.500002,31.60268 35.268499,30.343751 33.750002,30.34375 C 33.631369,30.34375 33.520941,30.32882 33.406252,30.34375 z "
-       id="path4110" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-1.0402364"
-       inkscape:original="M 36.59375 13.5 L 36.75 24.71875 L 44.125 13.5 L 36.59375 13.5 z M 33.40625 30.34375 C 32.052918 30.519922 31.000001 31.724054 31 33.15625 C 31 34.70982 32.231503 35.96875 33.75 35.96875 C 35.268495 35.96875 36.5 34.70982 36.5 33.15625 C 36.499998 31.60268 35.268497 30.343751 33.75 30.34375 C 33.631365 30.34375 33.520939 30.32882 33.40625 30.34375 z "
-       xlink:href="#path4110"
-       style="opacity:0.35;fill:url(#linearGradient2217);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2209"
-       inkscape:href="#path4110"
-       d="M 37.625,15.0625 L 37.71875,21.875 L 42.1875,15.0625 L 37.625,15.0625 z M 33.53125,31.90625 C 32.711111,32.013013 32.031251,32.765143 32.03125,33.6875 C 32.031249,34.691344 32.806451,35.46875 33.75,35.46875 C 34.693551,35.46875 35.46875,34.691346 35.46875,33.6875 C 35.468751,32.683656 34.69355,31.906251 33.75,31.90625 C 33.544091,31.90625 33.473148,31.913814 33.53125,31.90625 z " />
-    <path
-       style="opacity:1;fill:url(#linearGradient2206);fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 2.6545432,11.532816 L 4.353345,15.445312 L 7.741467,15.555398 L 17.47685,25.310159 L 17.4318,31.506326 L 12.428056,31.384739 L 11.665952,34.499424 L 27.339128,34.54589 L 26.551973,31.519888 L 21.572919,31.603085 L 21.572919,25.191498 L 28.209096,17.523843 L 31.468823,17.433744 L 32.573193,13.532585 L 23.168883,13.473142 L 21.694773,17.410562 L 23.776066,17.4644 L 19.977012,20.889333 L 13.198929,15.445312 L 17.758833,15.445312 L 20.124034,11.577865 L 2.6545432,11.532816 z "
-       id="rect3219"
-       sodipodi:nodetypes="cccccccccccccccccccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.98856229"
-       inkscape:original="M 2.65625 11.53125 L 4.34375 15.4375 L 7.75 15.5625 L 17.46875 25.3125 L 17.4375 31.5 L 12.4375 31.375 L 11.65625 34.5 L 27.34375 34.53125 L 26.5625 31.53125 L 21.5625 31.59375 L 21.5625 25.1875 L 28.21875 17.53125 L 31.46875 17.4375 L 32.5625 13.53125 L 23.15625 13.46875 L 21.6875 17.40625 L 23.78125 17.46875 L 19.96875 20.875 L 13.1875 15.4375 L 17.75 15.4375 L 20.125 11.5625 L 2.65625 11.53125 z "
-       xlink:href="#rect3219"
-       style="opacity:0.35;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path2204"
-       inkscape:href="#rect3219"
-       d="M 4.15625,13.0625 L 5,15 L 7.78125,15.09375 C 8.0317447,15.110809 8.266366,15.222533 8.4375,15.40625 L 18.15625,25.15625 C 18.347286,25.335037 18.45966,25.58226 18.46875,25.84375 L 18.4375,32.03125 C 18.44087,32.30297 18.33225,32.564099 18.137167,32.75327 C 17.942084,32.942442 17.677738,33.042977 17.40625,33.03125 L 13.21875,32.9375 L 12.9375,34.03125 L 26.0625,34.0625 L 25.78125,33.0625 L 21.5625,33.125 C 21.296354,33.12807 21.040212,33.0237 20.852006,32.835494 C 20.6638,32.647288 20.55943,32.391146 20.5625,32.125 L 20.5625,25.71875 C 20.562717,25.476777 20.651667,25.243286 20.8125,25.0625 L 27.46875,17.40625 C 27.649517,17.19593 27.910308,17.071204 28.1875,17.0625 L 30.71875,17 L 31.28125,15.0625 L 23.84375,15 L 23.125,16.96875 L 23.8125,17 C 24.228223,17.002399 24.598033,17.264612 24.737859,17.656122 C 24.877684,18.047632 24.757648,18.48479 24.4375,18.75 L 20.625,22.15625 C 20.263408,22.479557 19.720674,22.492795 19.34375,22.1875 L 12.5625,16.75 C 12.215365,16.491727 12.076498,16.037735 12.219751,15.629463 C 12.363005,15.221191 12.755094,14.953499 13.1875,14.96875 L 17.1875,14.96875 L 18.34375,13.09375 L 4.15625,13.0625 z " />
-  </g>
-</svg>
--- a/pidgin/pixmaps/protocols/48/scalable/zephyr.svg	Sat Jul 25 05:14:27 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
-   xmlns:dc="http://purl.org/dc/elements/1.1/"
-   xmlns:cc="http://creativecommons.org/ns#"
-   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-   xmlns:svg="http://www.w3.org/2000/svg"
-   xmlns="http://www.w3.org/2000/svg"
-   xmlns:xlink="http://www.w3.org/1999/xlink"
-   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-   width="48"
-   height="48"
-   id="svg1307"
-   sodipodi:version="0.32"
-   inkscape:version="0.46"
-   version="1.0"
-   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
-   sodipodi:docname="zephyr.svg"
-   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/zephyr.png"
-   inkscape:export-xdpi="90"
-   inkscape:export-ydpi="90"
-   inkscape:output_extension="org.inkscape.output.svg.inkscape">
-  <defs
-     id="defs1309">
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2236">
-      <stop
-         style="stop-color:#ffffff;stop-opacity:1;"
-         offset="0"
-         id="stop2238" />
-      <stop
-         style="stop-color:#ffffff;stop-opacity:0;"
-         offset="1"
-         id="stop2240" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient3150">
-      <stop
-         style="stop-color:#2e3436;stop-opacity:1;"
-         offset="0"
-         id="stop3152" />
-      <stop
-         style="stop-color:#2e3436;stop-opacity:0;"
-         offset="1"
-         id="stop3154" />
-    </linearGradient>
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3150"
-       id="radialGradient3156"
-       cx="10.748654"
-       cy="10.457643"
-       fx="10.748654"
-       fy="10.457643"
-       r="6.6449099"
-       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
-       gradientUnits="userSpaceOnUse" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2236"
-       id="radialGradient2244"
-       cx="25"
-       cy="15.052035"
-       fx="25"
-       fy="15.052035"
-       r="13.03125"
-       gradientTransform="matrix(1.918832,-3.053611e-32,3.873765e-32,2.434201,-22.9708,-29.40113)"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="12.749289"
-     inkscape:cx="42.013094"
-     inkscape:cy="29.955991"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     inkscape:grid-bbox="true"
-     inkscape:document-units="px"
-     fill="#3465a4"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     inkscape:window-width="1268"
-     inkscape:window-height="971"
-     inkscape:window-x="6"
-     inkscape:window-y="21" />
-  <metadata
-     id="metadata1312">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer">
-    <rect
-       style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="rect3203"
-       width="0"
-       height="5.2291808"
-       x="12.491029"
-       y="11.343686" />
-    <path
-       sodipodi:type="arc"
-       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path3140"
-       sodipodi:cx="10.748654"
-       sodipodi:cy="10.457643"
-       sodipodi:rx="6.6449099"
-       sodipodi:ry="2.3675451"
-       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
-       transform="matrix(3.23556,0,0,2.111892,-10.27791,16.9144)" />
-    <path
-       style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="M 11.5,6.4993337 L 11.5,14.499492 L 32.553687,14.499492 L 32.553687,18.499569 L 38.479829,18.499569 L 38.479829,7.5185793 L 38.479829,6.4993337 L 11.5,6.4993337 z M 19.552827,20.546173 L 19.552827,26.499725 L 30.471849,26.499725 L 30.471849,20.546173 L 19.552827,20.546173 z M 11.5,28.499765 L 11.5,40.5 L 38.485458,40.5 L 38.485458,32.499843 L 17.510207,32.499843 L 17.510207,28.499765 L 11.5,28.499765 z "
-       id="rect4229"
-       sodipodi:nodetypes="cccccccccccccccccccc" />
-    <path
-       sodipodi:type="inkscape:offset"
-       inkscape:radius="-0.9828251"
-       inkscape:original="M 11.5 6.5 L 11.5 14.5 L 32.5625 14.5 L 32.5625 18.5 L 38.46875 18.5 L 38.46875 7.53125 L 38.46875 6.5 L 11.5 6.5 z M 19.5625 20.53125 L 19.5625 26.5 L 30.46875 26.5 L 30.46875 20.53125 L 19.5625 20.53125 z M 11.5 28.5 L 11.5 40.5 L 38.5 40.5 L 38.5 32.5 L 17.5 32.5 L 17.5 28.5 L 11.5 28.5 z "
-       xlink:href="#rect4229"
-       style="opacity:0.3;fill:url(#radialGradient2244);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       id="path4266"
-       inkscape:href="#rect4229"
-       d="M 12.46875,4.46875 L 12.46875,10.53125 L 32.5625,10.53125 C 33.09434,10.538865 33.523635,10.96816 33.53125,11.5 L 33.53125,14.53125 L 37.5,14.53125 L 37.5,4.53125 L 37.5,4.46875 L 12.46875,4.46875 z M 20.53125,18.5 L 20.53125,22.53125 L 29.5,22.53125 L 29.5,18.5 L 20.53125,18.5 z M 12.46875,26.46875 L 12.46875,36.53125 L 37.53125,36.53125 L 37.53125,30.46875 L 17.5,30.46875 C 16.96816,30.461135 16.538865,30.03184 16.53125,29.5 L 16.53125,26.46875 L 12.46875,26.46875 z " />
-  </g>
-</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/aim.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,188 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="aim.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/aim.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2263">
+      <stop
+         style="stop-color:#edc100;stop-opacity:1;"
+         offset="0"
+         id="stop2265" />
+      <stop
+         style="stop-color:#edc100;stop-opacity:0;"
+         offset="1"
+         id="stop2267" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2255">
+      <stop
+         style="stop-color:#edc100;stop-opacity:1;"
+         offset="0"
+         id="stop2257" />
+      <stop
+         style="stop-color:#edc100;stop-opacity:0;"
+         offset="1"
+         id="stop2259" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient4330"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2255"
+       id="linearGradient2261"
+       x1="12.514956"
+       y1="18.690643"
+       x2="12.514956"
+       y2="3.9849093"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.943689,0,0,1.932352,0.678089,2.050925)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2263"
+       id="linearGradient2269"
+       x1="10.555883"
+       y1="8.0642843"
+       x2="10.555883"
+       y2="1.4995424"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="12.865422"
+     inkscape:cx="46.678288"
+     inkscape:cy="27.286544"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#edd400"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 23.921379,18.772128 C 20.531101,16.831234 19.828661,25.427448 17.466079,29.485095 C 15.153694,33.456532 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.506226,26.642559 L 38.998349,19.157061 C 31.992149,20.83538 27.747274,20.962407 23.921379,18.772128 z "
+       id="path1324"
+       sodipodi:nodetypes="czccccccccs" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1326"
+       sodipodi:cx="10.555883"
+       sodipodi:cy="4.0385542"
+       sodipodi:rx="5.074944"
+       sodipodi:ry="5.074944"
+       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
+       transform="matrix(1.37826,0,0,1.377401,12.95457,3.935583)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.25;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.310805,0,0,2.323084,-11.5867,18.20601)" />
+    <path
+       style="opacity:1;fill:url(#linearGradient2261);fill-opacity:1;stroke:#b49500;stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 23.921379,18.772128 C 20.531101,16.831234 21.460943,23.017888 19.098361,27.075535 C 16.785976,31.046972 7.4937606,36.040098 7.4937606,36.040098 L 12.246433,45.509102 L 23.851631,34.738731 C 23.851631,34.738731 31.648476,39.799175 34.033545,45.317469 L 40.310948,39.242775 C 40.310948,39.242775 37.012166,32.72261 29.680284,28.21162 L 40.661681,26.564831 L 38.687438,18.690695 C 31.681238,20.369014 27.747274,20.962407 23.921379,18.772128 z "
+       id="path4275"
+       sodipodi:nodetypes="czccccccccs" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.97533494"
+       inkscape:original="M 22.84375 18.40625 C 20.718205 18.345643 21.161009 23.512059 19.09375 27.0625 C 16.781366 31.033937 7.5 36.03125 7.5 36.03125 L 12.25 45.5 L 23.84375 34.75 C 23.84375 34.75 31.646181 39.794206 34.03125 45.3125 L 40.3125 39.25 C 40.312501 39.25 37.019382 32.72974 29.6875 28.21875 L 40.65625 26.5625 L 38.6875 18.6875 C 31.681299 20.365819 27.732145 20.971529 23.90625 18.78125 C 23.482465 18.538638 23.147399 18.414908 22.84375 18.40625 z "
+       xlink:href="#path4275"
+       style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4304"
+       inkscape:href="#path4275"
+       d="M 22.53125,19.15625 C 22.35655,19.185124 22.015713,19.423413 21.625,20.09375 C 21.234287,20.764087 20.848022,21.75407 20.46875,22.875 C 19.710206,25.11686 19.002281,27.842341 17.84375,29.84375 C 16.485288,32.190546 13.833524,33.858876 11.53125,35.0625 C 9.7758989,35.980194 8.9024732,36.291093 8.25,36.53125 L 12,44.09375 L 22.8125,34 C 23.141077,33.70262 23.62883,33.664114 24,33.90625 C 24,33.90625 26.045443,35.241847 28.375,37.28125 C 30.391732,39.046791 32.509362,41.396107 33.9375,43.96875 L 38.875,39.1875 C 38.425182,38.341062 35.513684,33.014709 28.875,28.90625 C 28.511738,28.695573 28.324082,28.276051 28.409163,27.864827 C 28.494244,27.453602 28.832963,27.142985 29.25,27.09375 L 39.1875,25.65625 L 38.03125,19.96875 C 31.456326,21.456721 26.979371,21.554763 23.03125,19.28125 C 22.754401,19.121827 22.666044,19.133971 22.53125,19.15625 z " />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient2269);fill-opacity:1;stroke:#b49500;stroke-width:0.72577804;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4302"
+       sodipodi:cx="10.555883"
+       sodipodi:cy="4.0385542"
+       sodipodi:rx="5.074944"
+       sodipodi:ry="5.074944"
+       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
+       transform="matrix(1.37826,0,0,1.377401,13.96243,3.935583)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.5;fill:#fce94f;fill-opacity:1;stroke:#ffffff;stroke-width:0.84666103;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4273"
+       sodipodi:cx="10.555883"
+       sodipodi:cy="4.0385542"
+       sodipodi:rx="5.074944"
+       sodipodi:ry="5.074944"
+       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
+       transform="matrix(1.181111,0,0,1.181111,16.03826,4.728084)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/bonjour.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,207 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable"
+   sodipodi:docname="bonjour.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/bonjour.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2314">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2316" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2318" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.934099,4.045903e-17,-5.060684e-9,-0.395926,20.78896,14.59809)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2314"
+       id="linearGradient2320"
+       x1="11.237947"
+       y1="2.7057509"
+       x2="11.237947"
+       y2="10.98068"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2314"
+       id="linearGradient2324"
+       gradientUnits="userSpaceOnUse"
+       x1="11.237947"
+       y1="2.6204424"
+       x2="11.237947"
+       y2="10.810062" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2314"
+       id="linearGradient2328"
+       gradientUnits="userSpaceOnUse"
+       x1="11.237947"
+       y1="2.876368"
+       x2="11.237947"
+       y2="10.89537" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="12.003863"
+     inkscape:cx="41.170813"
+     inkscape:cy="23.799748"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#f57900"
+     inkscape:window-width="1268"
+     inkscape:window-height="972"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.611787,0,0,2.323081,-14.82185,18.20605)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1341"
+       sodipodi:cx="11.237947"
+       sodipodi:cy="7.9095716"
+       sodipodi:rx="3.0935922"
+       sodipodi:ry="3.0935922"
+       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
+       transform="matrix(1.290432,0,0,1.297381,-3.009737,-2.680289)" />
+    <path
+       style="fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#7d7f7a;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 35.46875,4.5366208 C 31.635379,4.6522391 27.705058,6.4906706 25.53125,9.7866208 C 26.103022,9.4743488 35.303923,4.6093611 38.34375,12.599121 C 39.472527,11.34018 43.22049,11.040461 45.5,12.224121 C 44.713989,6.8257933 40.179035,4.3945539 35.46875,4.5366208 z M 17.46875,4.5678708 C 18.127573,6.5529792 17.95859,8.1732436 17.53125,9.1616208 C 21.771815,8.0014671 29.858933,21.430311 30.5,22.505371 C 25.376692,11.592709 20.897066,5.8681195 17.46875,4.5678708 z M 5.34375,7.5678708 C -3.2027906,14.070713 3.9432311,26.177264 13.4375,26.536621 C 12.842607,26.198616 3.4390694,20.691845 9.4375,13.724121 C 7.6531589,13.401091 5.4098365,10.216725 5.34375,7.5678708 z M 21.46875,14.599121 C 14.518079,24.752705 11.892887,31.742633 12.65625,35.567871 C 14.072321,33.976734 15.618903,33.346912 16.75,33.255371 C 13.282151,29.863924 20.985214,15.493469 21.46875,14.599121 z M 37.40625,21.630371 C 36.029184,26.189083 21.006896,27.252123 18.78125,27.380371 C 31.047662,28.025568 38.491655,26.618231 41.5,23.942871 C 39.411924,23.554843 38.044876,22.56197 37.40625,21.630371 z M 33.125,28.599121 C 33.123038,29.265224 33.537967,40.230123 24.458146,38.651097 C 25.058081,40.306995 23.321409,43.5863 21.031089,44.953234 C 30.971079,48.901331 37.527529,36.737136 33.125,28.599121 z "
+       id="rect2206"
+       sodipodi:nodetypes="ccccccccccccccccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.97818917"
+       inkscape:original="M 35.46875 4.53125 C 31.635379 4.6468685 27.705058 6.4852998 25.53125 9.78125 C 26.103022 9.4689777 35.303923 4.6039901 38.34375 12.59375 C 39.472527 11.334809 43.22049 11.03509 45.5 12.21875 C 44.713989 6.8204222 40.179035 4.3891831 35.46875 4.53125 z M 17.46875 4.5625 C 18.127573 6.5476086 17.95859 8.1678728 17.53125 9.15625 C 21.771815 7.996096 29.858933 21.42494 30.5 22.5 C 25.376692 11.587338 20.897066 5.8627487 17.46875 4.5625 z M 5.34375 7.5625 C -3.2027906 14.065342 3.9432311 26.171893 13.4375 26.53125 C 12.842607 26.193245 3.4390694 20.686474 9.4375 13.71875 C 7.6531589 13.39572 5.4098365 10.211354 5.34375 7.5625 z M 21.46875 14.59375 C 14.518079 24.747334 11.892887 31.737262 12.65625 35.5625 C 14.072321 33.971363 15.618903 33.341541 16.75 33.25 C 13.282151 29.858553 20.985214 15.488098 21.46875 14.59375 z M 37.40625 21.625 C 36.029184 26.183712 21.006896 27.246752 18.78125 27.375 C 31.047662 28.020197 38.491655 26.61286 41.5 23.9375 C 39.411924 23.549472 38.044876 22.556599 37.40625 21.625 z M 33.125 28.59375 C 33.123038 29.259853 33.548571 40.235276 24.46875 38.65625 C 25.068686 40.312149 23.32157 43.601816 21.03125 44.96875 C 30.971239 48.916845 37.527529 36.731765 33.125 28.59375 z "
+       xlink:href="#rect2206"
+       style="opacity:0.4;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2265"
+       d="M 35.5,6.4375 C 33.368939,6.5017749 31.254587,7.2183109 29.4375,8.375 C 29.955273,8.2616185 30.342793,8.0837857 30.90625,8.03125 C 32.406836,7.8913382 34.078294,8.0394993 35.59375,8.8125 C 36.831972,9.4440897 37.86888,10.628822 38.6875,12.1875 C 39.489624,11.770011 40.411361,11.500994 41.4375,11.4375 C 42.258666,11.386689 43.10461,11.462473 43.9375,11.625 C 43.379009,10.119471 42.589365,8.8531272 41.40625,8.03125 C 39.790488,6.908825 37.677617,6.3718209 35.5,6.4375 z M 18.78125,7.53125 C 18.821476,8.1885616 18.763233,8.7406401 18.65625,9.28125 C 19.760339,9.4560073 20.842148,9.9390765 21.875,10.78125 C 22.166416,11.018866 22.428639,11.416981 22.71875,11.6875 C 22.66814,11.618108 22.612837,11.505519 22.5625,11.4375 C 21.155108,9.5357202 19.912201,8.3834952 18.78125,7.53125 z M 4.78125,10.5 C 2.1367338,13.32142 1.9732812,16.73063 3.5,19.84375 C 4.6796069,22.249077 6.8918614,24.272293 9.5,25.4375 C 9.0508422,24.984485 8.5946267,24.68144 8.1875,24.125 C 7.2714393,22.872975 6.524154,21.350596 6.46875,19.59375 C 6.4232564,18.151162 7.0064835,16.584718 8.0625,15.03125 C 7.2533732,14.545104 6.5354947,13.881423 5.9375,13 C 5.4271977,12.247833 5.0629652,11.390597 4.78125,10.5 z M 37.5625,24 C 36.85358,24.922553 35.872279,25.684009 34.625,26.25 C 33.981881,26.541835 33.133881,26.670217 32.40625,26.90625 C 35.442669,26.486299 37.633021,25.855821 39.1875,25.0625 C 38.533201,24.753288 38.014785,24.406514 37.5625,24 z M 15.59375,27.6875 C 15.447519,28.018151 15.191854,28.433804 15.0625,28.75 C 14.093097,31.119641 13.782747,32.928132 13.6875,34.4375 C 14.296929,34.034852 14.855783,33.77311 15.4375,33.59375 C 14.976511,32.494336 14.815677,31.243494 15,29.84375 C 15.08934,29.165305 15.417606,28.406637 15.59375,27.6875 z M 33.3125,33.78125 C 33.133192,34.418356 33.085183,34.999527 32.78125,35.65625 C 32.13654,37.049308 31.160565,38.398872 29.65625,39.3125 C 28.414521,40.06665 26.766693,40.371954 24.875,40.25 C 24.843897,41.165669 24.622124,42.10692 24.15625,43.03125 C 23.766181,43.805178 23.234663,44.527693 22.625,45.1875 C 26.385249,45.969725 29.45049,44.399 31.40625,41.59375 C 32.935546,39.400201 33.59997,36.546168 33.3125,33.78125 z "
+       inkscape:href="#rect2206" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77265418;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2216"
+       sodipodi:cx="11.237947"
+       sodipodi:cy="7.9095716"
+       sodipodi:rx="3.0935922"
+       sodipodi:ry="3.0935922"
+       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
+       transform="matrix(-0.645216,1.118132,-1.123564,-0.649031,58.6294,10.13592)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:0.77285618;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2222"
+       sodipodi:cx="11.237947"
+       sodipodi:cy="7.9095716"
+       sodipodi:rx="3.0935922"
+       sodipodi:ry="3.0935922"
+       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
+       transform="matrix(-0.645216,-1.117547,1.123565,-0.64869,15.8724,57.25531)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#linearGradient2320);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2228"
+       sodipodi:cx="11.237947"
+       sodipodi:cy="7.9095716"
+       sodipodi:rx="3.0935922"
+       sodipodi:ry="3.0935922"
+       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
+       transform="matrix(0.971301,0,0,0.976532,0.576636,-0.142509)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#linearGradient2324);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2322"
+       sodipodi:cx="11.237947"
+       sodipodi:cy="7.9095716"
+       sodipodi:rx="3.0935922"
+       sodipodi:ry="3.0935922"
+       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
+       transform="matrix(0.971301,0,0,0.976532,31.58938,9.755058)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#linearGradient2328);fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.02678573;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2326"
+       sodipodi:cx="11.237947"
+       sodipodi:cy="7.9095716"
+       sodipodi:rx="3.0935922"
+       sodipodi:ry="3.0935922"
+       d="M 14.33154 7.9095716 A 3.0935922 3.0935922 0 1 1  8.1443553,7.9095716 A 3.0935922 3.0935922 0 1 1  14.33154 7.9095716 z"
+       transform="matrix(0.971301,0,0,0.976532,6.579761,31.79704)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/gadu-gadu.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,215 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48px"
+   height="48px"
+   id="svg1307"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable"
+   sodipodi:docname="gadu-gadu.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/gadu-gadu.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs1309">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2447">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2449" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2451" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2233">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop2235" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop2237" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2233"
+       id="linearGradient2279"
+       gradientUnits="userSpaceOnUse"
+       x1="24.450865"
+       y1="5.1375499"
+       x2="24.450865"
+       y2="31.487988" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2447"
+       id="linearGradient2453"
+       x1="24.5"
+       y1="0.33943355"
+       x2="24.5"
+       y2="19.724688"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="15.004828"
+     inkscape:cx="40.53287"
+     inkscape:cy="23.900599"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     fill="#ef2929"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="972"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata1312">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.160314,0,0,2.745459,-9.969125,9.788968)" />
+    <path
+       style="opacity:1;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 22.5,4.5130623 L 22.5,8.6366327 C 19.782905,9.0005399 17.277282,10.079925 15.21875,11.698071 L 12.0625,8.5116761 L 9.5,11.073287 L 12.6875,14.259683 C 11.068793,16.317502 9.9577835,18.791017 9.59375,21.50717 L 5.5,21.50717 L 5.5,25.505784 L 9.59375,25.505784 C 9.9535644,28.234089 11.062591,30.718808 12.6875,32.78451 L 9.5,35.970906 L 12.0625,38.501278 L 15.21875,35.346123 C 17.277282,36.964269 19.782905,38.043654 22.5,38.407561 L 22.5,42.499891 L 26.5,42.499891 L 26.5,38.407561 C 29.229107,38.042044 31.717452,36.944842 33.78125,35.314883 L 36.96875,38.501278 L 39.5,35.970906 L 36.3125,32.78451 C 37.936789,30.719597 39.014761,28.232873 39.375,25.505784 L 43.5,25.505784 L 43.5,21.50717 L 39.375,21.50717 C 39.010966,18.791018 37.931208,16.317502 36.3125,14.259683 L 39.5,11.073287 L 36.96875,8.5116761 L 33.78125,11.698071 L 33.75,11.698071 C 31.691468,10.079924 29.217095,9.0005401 26.5,8.6366327 L 26.5,4.5130623 L 22.5,4.5130623 z M 23.8125,11.354441 C 24.033452,11.344807 24.274977,11.354441 24.5,11.354441 C 31.700731,11.354441 36.65625,16.339482 36.65625,23.537717 C 36.656248,30.735953 31.700731,35.689753 24.5,35.689753 C 17.29927,35.689754 12.502002,30.735951 12.502002,23.537717 C 12.502002,16.564428 16.962974,11.653081 23.8125,11.354441 z "
+       id="path2394"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccssssc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1"
+       inkscape:original="M 22.5 4.5 L 22.5 8.625 C 19.782905 8.988907 17.277282 10.069354 15.21875 11.6875 L 12.0625 8.5 L 9.5 11.0625 L 12.6875 14.25 C 11.068793 16.307819 9.9577835 18.783847 9.59375 21.5 L 5.5 21.5 L 5.5 25.5 L 9.59375 25.5 C 9.9535644 28.228306 11.062591 30.715548 12.6875 32.78125 L 9.5 35.96875 L 12.0625 38.5 L 15.21875 35.34375 C 17.277282 36.961896 19.782905 38.042343 22.5 38.40625 L 22.5 42.5 L 26.5 42.5 L 26.5 38.40625 C 29.229107 38.040732 31.717452 36.942459 33.78125 35.3125 L 36.96875 38.5 L 39.5 35.96875 L 36.3125 32.78125 C 37.936789 30.716335 39.014761 28.227089 39.375 25.5 L 43.5 25.5 L 43.5 21.5 L 39.375 21.5 C 39.010966 18.783848 37.931208 16.307819 36.3125 14.25 L 39.5 11.0625 L 36.96875 8.5 L 33.78125 11.6875 L 33.75 11.6875 C 31.691468 10.069353 29.217095 8.9889074 26.5 8.625 L 26.5 4.5 L 22.5 4.5 z M 23.8125 11.34375 C 24.033452 11.334116 24.274977 11.34375 24.5 11.34375 C 31.700731 11.34375 36.65625 16.333015 36.65625 23.53125 C 36.656248 30.729485 31.700731 35.6875 24.5 35.6875 C 17.29927 35.6875 12.5 30.729484 12.5 23.53125 C 12.5 16.55796 16.962974 11.64239 23.8125 11.34375 z "
+       xlink:href="#path2394"
+       style="opacity:0.2;fill:url(#linearGradient2453);fill-opacity:1.0;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2445"
+       inkscape:href="#path2394"
+       d="M 23.5,5.5 L 23.5,8.625 C 23.503929,9.1319208 23.127956,9.5616039 22.625,9.625 C 20.085855,9.9650737 17.762357,10.960594 15.84375,12.46875 C 15.44664,12.797268 14.864902,12.77021 14.5,12.40625 L 12.0625,9.9375 L 10.9375,11.0625 L 13.40625,13.53125 C 13.77021,13.896152 13.797268,14.47789 13.46875,14.875 C 11.953567,16.801212 10.932828,19.095048 10.59375,21.625 C 10.530354,22.127956 10.100671,22.503929 9.59375,22.5 L 6.5,22.5 L 6.5,24.5 L 9.59375,24.5 C 10.100671,24.496071 10.530354,24.872044 10.59375,25.375 C 10.929039,27.917339 11.948302,30.223346 13.46875,32.15625 C 13.797268,32.55336 13.77021,33.135098 13.40625,33.5 L 10.9375,35.96875 L 12.03125,37.09375 L 14.5,34.625 C 14.864902,34.26104 15.44664,34.233982 15.84375,34.5625 C 17.762357,36.070656 20.085855,37.066176 22.625,37.40625 C 23.127956,37.469646 23.503929,37.899329 23.5,38.40625 L 23.5,41.5 L 25.5,41.5 L 25.5,38.40625 C 25.496071,37.899329 25.872044,37.469646 26.375,37.40625 C 28.92215,37.065102 31.227806,36.054308 33.15625,34.53125 C 33.55336,34.202732 34.135098,34.22979 34.5,34.59375 L 36.96875,37.0625 L 38.0625,35.96875 L 35.59375,33.5 C 35.22979,33.135098 35.202732,32.55336 35.53125,32.15625 C 37.047015,30.229299 38.038333,27.923642 38.375,25.375 C 38.438396,24.872044 38.868079,24.496071 39.375,24.5 L 42.5,24.5 L 42.5,22.5 L 39.375,22.5 C 38.868079,22.503929 38.438396,22.127956 38.375,21.625 C 38.034921,19.087581 37.042567,16.796296 35.53125,14.875 C 35.202732,14.47789 35.22979,13.896152 35.59375,13.53125 L 38.09375,11.03125 L 36.96875,9.9375 L 34.5,12.40625 C 34.307701,12.592396 34.048815,12.693699 33.78125,12.6875 L 33.75,12.6875 C 33.522871,12.68767 33.302449,12.610522 33.125,12.46875 C 31.202527,10.957555 28.913145,9.9649402 26.375,9.625 C 25.872044,9.5616039 25.496071,9.1319208 25.5,8.625 L 25.5,5.5 L 23.5,5.5 z M 23.78125,10.34375 C 24.062872,10.331471 24.303519,10.34375 24.5,10.34375 C 32.162653,10.34375 37.65625,15.874058 37.65625,23.53125 C 37.656248,31.188442 32.15976,36.6875 24.5,36.6875 C 20.67012,36.6875 17.391923,35.341265 15.09375,33 C 12.795577,30.658735 11.5,27.35261 11.5,23.53125 C 11.5,16.131287 16.473536,10.662367 23.78125,10.34375 z " />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:#a40000;stroke-width:1.08146787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2198"
+       sodipodi:cx="24.450865"
+       sodipodi:cy="23.959385"
+       sodipodi:rx="14.03053"
+       sodipodi:ry="14.03053"
+       d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1  10.420335,23.959385 A 14.03053 14.03053 0 1 1  38.481395 23.959385 z"
+       transform="matrix(0.924879,0,0,0.924459,1.889957,1.34006)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:url(#linearGradient2279);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.12198293;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2277"
+       sodipodi:cx="24.450865"
+       sodipodi:cy="23.959385"
+       sodipodi:rx="14.03053"
+       sodipodi:ry="14.03053"
+       d="M 38.481395 23.959385 A 14.03053 14.03053 0 1 1  10.420335,23.959385 A 14.03053 14.03053 0 1 1  38.481395 23.959385 z"
+       transform="matrix(0.890914,0,0,0.891279,2.716374,2.14037)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2200"
+       sodipodi:cx="10.54341"
+       sodipodi:cy="-2.7068274"
+       sodipodi:rx="2.4204714"
+       sodipodi:ry="1.7230475"
+       d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1  8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1  12.963882 -2.7068274 z"
+       transform="matrix(0.827565,0,0,0.87352,11.27774,22.85935)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2202"
+       sodipodi:cx="10.54341"
+       sodipodi:cy="-2.7068274"
+       sodipodi:rx="2.4204714"
+       sodipodi:ry="1.7230475"
+       d="M 12.963882 -2.7068274 A 2.4204714 1.7230475 0 1 1  8.1229389,-2.7068274 A 2.4204714 1.7230475 0 1 1  12.963882 -2.7068274 z"
+       transform="matrix(0.827567,0,0,0.87352,20.27772,22.86958)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:4.5851903;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2204"
+       sodipodi:cx="24.450865"
+       sodipodi:cy="23.959385"
+       sodipodi:rx="14.03053"
+       sodipodi:ry="14.03053"
+       d="M 36.657066,30.877796 A 14.03053,14.03053 0 0 1 11.928959,30.288496"
+       transform="matrix(0.453563,0,0,0.419476,13.51464,14.26249)"
+       sodipodi:start="0.51564596"
+       sodipodi:end="2.6736"
+       sodipodi:open="true" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.75245398;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2465"
+       sodipodi:cx="26.658085"
+       sodipodi:cy="20.675463"
+       sodipodi:rx="9.863492"
+       sodipodi:ry="8.2640066"
+       d="M 36.521577 20.675463 A 9.863492 8.2640066 0 1 1  16.794593,20.675463 A 9.863492 8.2640066 0 1 1  36.521577 20.675463 z"
+       transform="matrix(1.216989,0,0,1.451287,-7.948546,-6.503855)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/google-talk.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2417"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   width="48"
+   height="48"
+   version="1.0"
+   sodipodi:docbase="/home/vinicius/tango-icon-theme-code/protocols/scalable"
+   sodipodi:docname="google-talk.svg"
+   inkscape:export-filename="/home/vinicius/tango-icon-theme-code/protocols/48x48/google-talk.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <metadata
+     id="metadata2422">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>Google Talk Icon</dc:title>
+        <dc:date>2006-12-03</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Vinicius Scopel Depizzol</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source>vdepizzol@gmail.com</dc:source>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Google Talk</rdf:li>
+            <rdf:li>GTalk</rdf:li>
+            <rdf:li>VOIP</rdf:li>
+            <rdf:li>Protocol</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution" />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs2420">
+    <linearGradient
+       id="linearGradient3299">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.11764706;"
+         offset="0"
+         id="stop3301" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop3303" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3299"
+       id="radialGradient3305"
+       cx="15.993708"
+       cy="26.722889"
+       fx="15.993708"
+       fy="26.722889"
+       r="15.912521"
+       gradientTransform="matrix(1,0,0,0.295918,-3.769888e-16,18.8151)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3527">
+      <stop
+         style="stop-color:#90ba1f;stop-opacity:1;"
+         offset="0"
+         id="stop3529" />
+      <stop
+         style="stop-color:#638205;stop-opacity:1;"
+         offset="1"
+         id="stop3531" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3518">
+      <stop
+         style="stop-color:#e7d000;stop-opacity:1;"
+         offset="0"
+         id="stop3520" />
+      <stop
+         style="stop-color:#c4a000;stop-opacity:1;"
+         offset="1"
+         id="stop3522" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3486">
+      <stop
+         style="stop-color:#ef2929;stop-opacity:1;"
+         offset="0"
+         id="stop3488" />
+      <stop
+         style="stop-color:#cc0000;stop-opacity:1;"
+         offset="1"
+         id="stop3490" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3510">
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1;"
+         offset="0"
+         id="stop3512" />
+      <stop
+         style="stop-color:#204a87;stop-opacity:1;"
+         offset="1"
+         id="stop3514" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3286">
+      <stop
+         style="stop-color:#d1d1d1;stop-opacity:1;"
+         offset="0"
+         id="stop3288" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop3290" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3527"
+       id="linearGradient4249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.465389,0,0,2.513895,-105.5963,47.11115)"
+       x1="55.483334"
+       y1="-14.40625"
+       x2="55.483334"
+       y2="-7.9999866" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3518"
+       id="linearGradient4252"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.901968,0,0,2.518653,-127.7063,47.25387)"
+       x1="53.162479"
+       y1="-14.322747"
+       x2="53.162479"
+       y2="-9.9868765" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3486"
+       id="linearGradient4255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.48585,0,0,2.48585,-103.0483,47.16833)"
+       x1="49.45462"
+       y1="-12.934268"
+       x2="49.45462"
+       y2="-8.0529032" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3510"
+       id="linearGradient4258"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.48585,0,0,2.48585,-100.3774,47.19573)"
+       x1="45.5"
+       y1="-14"
+       x2="45.5"
+       y2="-8.1156492" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3286"
+       id="linearGradient4262"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.99378,0,0,2.99378,9.552849e-2,-0.965622)"
+       x1="8"
+       y1="15"
+       x2="8"
+       y2="0.9916327" />
+  </defs>
+  <sodipodi:namedview
+     inkscape:window-height="714"
+     inkscape:window-width="1014"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     borderopacity="1"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     showgrid="false"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:zoom="1"
+     inkscape:cx="27.558407"
+     inkscape:cy="20.353863"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:current-layer="svg2417"
+     showborder="false"
+     inkscape:showpageshadow="false" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:url(#radialGradient3305);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path2424"
+     sodipodi:cx="15.993708"
+     sodipodi:cy="26.722889"
+     sodipodi:rx="15.912521"
+     sodipodi:ry="4.7088075"
+     d="M 31.906229,26.722889 A 15.912521,4.7088075 0 1 1 31.906148,26.707864"
+     sodipodi:start="0"
+     sodipodi:end="6.2799944"
+     sodipodi:open="true"
+     transform="matrix(1.45896,0,0,1.538545,0.742037,-1.869655)" />
+  <path
+     id="path3264"
+     d="M 21.80045,3.5250496 C 10.471905,4.3704822 1.592428,11.452408 1.592428,19.990844 C 1.592428,26.29506 6.3896918,31.807945 13.473996,34.585527 C 13.301077,37.113716 12.611393,40.274075 10.57377,42.444203 C 16.402876,42.263357 20.689781,39.28536 23.484452,36.456639 C 23.677129,36.460226 23.851935,36.456639 24.045787,36.456639 C 36.451938,36.456639 46.499142,29.098509 46.499142,19.990844 L 46.499142,19.897289 C 46.459634,10.808172 36.426737,3.5250496 24.045787,3.5250496 C 23.270404,3.5250496 22.555687,3.4686875 21.80045,3.5250496 z "
+     style="fill:url(#linearGradient4262);fill-opacity:1;fill-rule:nonzero;stroke:#797979;stroke-width:0.99999946;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     inkscape:export-xdpi="90"
+     inkscape:export-ydpi="90" />
+  <path
+     sodipodi:nodetypes="ccccccccccccccccc"
+     id="path3552"
+     d="M 14.063569,10.992619 L 10.975162,10.992619 L 10.975162,15.008301 L 9,15.008301 L 9,18.010155 L 10.975162,18.010155 L 10.975162,24.823081 C 10.975162,28.316382 16.413217,26.749332 16.906897,25.946127 L 16.765885,23.742745 C 16.14428,24.364355 14.063569,24.882059 14.063569,24.09267 L 14.063569,18.010155 L 16.089796,18.010155 L 16.089796,15.008301 L 14.063569,15.008301 L 14.063569,11.090553 L 14.063569,11.090553 L 14.063569,10.992619 z "
+     style="fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+  <path
+     style="fill:url(#linearGradient4255);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="M 20.513467,15.031036 C 20.138171,15.089956 19.656414,15.165467 19.228078,15.318859 C 17.702481,15.865192 16.671718,16.778263 16.671718,16.778263 L 17.928902,19.157272 C 19.392632,18.022338 22.111019,16.595753 21.828421,20.24551 C 16.134551,19.714196 14.746648,23.348506 16.160515,25.369297 C 17.612211,27.444158 20.173876,27.641863 21.329645,26.185476 C 21.514145,25.952987 21.740964,25.678231 21.873764,25.369297 C 22.016347,25.75349 22.226874,26.072865 22.417883,26.321505 C 22.574471,26.517581 23.312178,27.152657 24.004897,27.137684 C 24.806193,27.120365 25.583813,26.58185 26,25.958759 C 25.645136,26.22137 24.252362,25.650216 24.231613,24.779835 L 24.231613,18.29575 C 24.142462,16.667478 22.425687,14.730825 20.513467,15.031036 z M 21.193616,23.328851 C 21.034551,24.122851 19.396586,24.681233 18.790423,24.326402 C 17.894487,23.801947 19.229645,22.393776 20.377437,22.376643 C 21.417389,22.361119 21.33274,22.634384 21.193616,23.328851 z "
+     id="path3554"
+     sodipodi:nodetypes="cscccsscsscccccsss" />
+  <path
+     id="path3558"
+     d="M 29,11 L 26.098032,11 L 26.098032,27.104637 L 29,27.104637 L 29,11 z "
+     style="fill:url(#linearGradient4252);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+  <path
+     sodipodi:nodetypes="ccccccccccccc"
+     id="path3560"
+     d="M 30,10.895363 L 30,19.851112 L 30,27 L 32.963722,27 L 32.963722,22.924045 L 36.561805,27.064163 L 38.705904,25.193137 L 34.676855,20.715264 L 38.705904,16.23739 L 36.754295,14.238037 L 32.968278,18.187047 C 32.968278,18.187047 32.963722,10.895363 32.963722,10.895363 L 30,10.895363 z "
+     style="fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+  <path
+     style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+     d="M 21.84375,4.03125 C 16.273135,4.4469767 11.295199,6.3799921 7.75,9.25 C 4.204801,12.120008 2.09375,15.904106 2.09375,20 C 2.093752,26.050562 6.709849,31.401486 13.65625,34.125 C 13.889662,34.247612 13.966606,34.430582 13.96875,34.625 C 13.8154,36.867085 13.233839,39.586592 11.6875,41.78125 C 16.756159,41.27394 20.580438,38.669315 23.125,36.09375 C 23.324492,35.928053 23.831229,35.96875 24.03125,35.96875 C 30.135475,35.96875 35.660367,34.1562 39.625,31.25 C 43.589633,28.3438 46,24.369973 46,20 L 46,19.90625 C 45.981043,15.545078 43.55655,11.604324 39.59375,8.71875 C 35.63095,5.8331761 30.123683,4.03125 24.03125,4.03125 C 23.381564,4.0312499 22.681539,3.982177 21.84375,4.03125 z M 24.03125,5.03125 C 29.927599,5.03125 35.264412,6.757119 39.03125,9.5 C 42.798088,12.242881 44.982638,15.911852 45,19.90625 L 45,20 C 45,24.002253 42.800008,27.674883 39.03125,30.4375 C 35.262492,33.200117 29.937773,34.96875 24.03125,34.96875 C 23.079654,34.946683 22.695929,35.117383 22.40625,35.40625 C 20.316957,37.520999 17.387178,39.593629 13.59375,40.46875 C 14.470139,38.520138 14.848653,36.443413 14.96875,34.6875 C 15.010593,33.903846 14.715478,33.607465 14.03125,33.1875 C 7.360656,30.572123 3.093751,25.543254 3.09375,20 C 3.09375,16.250753 5.042528,12.754344 8.40625,10.03125 C 11.769972,7.3081563 16.52295,5.4329977 21.90625,5.03125 C 22.667268,4.9737265 23.342191,5.0312499 24.03125,5.03125 z "
+     id="path6054"
+     sodipodi:nodetypes="csscccccsccssccsccscscccsscs" />
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/icq.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,440 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="icq.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/icq.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2256">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2258" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2260" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2248">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2250" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2252" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2240">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2242" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2244" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2232">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2234" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2236" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2224">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2226" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2228" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2216">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2218" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2220" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2208">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2210" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2212" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2361">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2363" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2365" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2321">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2323" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2325" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2321"
+       id="linearGradient2327"
+       x1="11.787398"
+       y1="11.115861"
+       x2="12.185872"
+       y2="12.839791"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2361"
+       id="linearGradient2367"
+       x1="14.592834"
+       y1="24.232048"
+       x2="14.592834"
+       y2="31.007147"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2208"
+       id="linearGradient2214"
+       x1="28.089931"
+       y1="3.8865747"
+       x2="28.089931"
+       y2="15.058928"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2216"
+       id="linearGradient2222"
+       x1="36.696918"
+       y1="10.99979"
+       x2="36.696918"
+       y2="20.717306"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2224"
+       id="linearGradient2230"
+       x1="36.701996"
+       y1="20.379145"
+       x2="36.701996"
+       y2="29.063459"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2232"
+       id="linearGradient2238"
+       x1="17.892992"
+       y1="6.7056818"
+       x2="17.892992"
+       y2="16.46983"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2240"
+       id="linearGradient2246"
+       x1="12.732279"
+       y1="14.645196"
+       x2="12.732279"
+       y2="23.238768"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2248"
+       id="linearGradient2254"
+       x1="21.683891"
+       y1="24.981401"
+       x2="21.683891"
+       y2="36.415653"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2256"
+       id="linearGradient2262"
+       x1="30.265167"
+       y1="27.26486"
+       x2="30.265167"
+       y2="35.256603"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="14.778489"
+     inkscape:cx="38.03465"
+     inkscape:cy="24.512139"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#ef2929"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.009823,0,0,2.74546,-8.351546,7.855242)" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 26.367384,35.737238 C 24.85713,31.115741 25.395878,30.363552 27.387814,29.222534 C 29.379747,28.081519 30.462949,28.167777 33.584537,31.603121 C 35.536982,34.958339 35.504926,38.607457 33.513001,39.748468 C 31.521063,40.889489 28.319827,39.092453 26.367384,35.737238 z "
+       id="path2226"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.95876986"
+       inkscape:original="M 28.75 28.625 C 28.319559 28.723691 27.872983 28.933496 27.375 29.21875 C 25.383064 30.359768 24.864746 31.128501 26.375 35.75 C 28.327443 39.105215 31.508063 40.891023 33.5 39.75 C 35.491925 38.608989 35.546194 34.948968 33.59375 31.59375 C 31.252559 29.017242 30.041322 28.328926 28.75 28.625 z "
+       xlink:href="#path2226"
+       style="opacity:0.4;fill:url(#linearGradient2262);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2242"
+       inkscape:href="#path2226"
+       d="M 28.96875,26.5 C 28.686015,26.564825 28.303156,26.736844 27.84375,27 C 27.368858,27.272027 27.042376,27.491026 26.84375,27.6875 C 26.645124,27.883974 26.558141,28.035355 26.5,28.3125 C 26.386493,28.853563 26.554045,30.085975 27.25,32.25 C 28.145595,33.765674 29.317595,34.913452 30.40625,35.53125 C 31.510083,36.157661 32.416733,36.195758 33.03125,35.84375 C 33.64681,35.491146 34.046689,34.69972 34.0625,33.4375 C 34.077874,32.210233 33.659976,30.628765 32.8125,29.125 C 31.711537,27.921881 30.874722,27.139693 30.28125,26.78125 C 29.672583,26.41363 29.393014,26.402725 28.96875,26.5 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 33.709491,31.278338 C 29.169302,28.745112 29.065713,27.592023 29.859889,24.733701 C 30.654065,21.875391 31.593198,20.926512 36.586936,20.922121 C 40.576342,21.952999 43.16957,25.109445 42.375396,27.967758 C 41.581221,30.826078 37.6989,32.309217 33.709491,31.278338 z "
+       id="path2216"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.98264426"
+       inkscape:original="M 36.59375 20.9375 C 31.600012 20.941891 30.669177 21.860439 29.875 24.71875 C 29.080824 27.577072 29.17856 28.748025 33.71875 31.28125 C 37.708159 32.312129 41.580824 30.82707 42.375 27.96875 C 43.169174 25.110437 40.583155 21.968378 36.59375 20.9375 z "
+       xlink:href="#path2216"
+       style="opacity:0.4;fill:url(#linearGradient2230);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2238"
+       inkscape:href="#path2216"
+       d="M 36.4375,18.8125 C 34.127551,18.828525 32.839067,19.094363 32.1875,19.5 C 31.517812,19.916918 31.190595,20.545455 30.8125,21.90625 C 30.427461,23.292046 30.362754,23.987827 30.6875,24.625 C 31.003678,25.245362 31.967431,26.095761 34.0625,27.28125 C 35.838582,27.720407 37.581667,27.600958 38.90625,27.09375 C 40.254639,26.577426 41.138951,25.730758 41.4375,24.65625 C 41.735829,23.582532 41.424738,22.405518 40.53125,21.3125 C 39.654391,20.239825 38.199379,19.288753 36.4375,18.8125 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 36.67848,22.648043 C 32.052133,24.231706 31.299156,23.66677 30.15694,21.57801 C 29.014732,19.489253 29.101081,18.3534 32.540028,15.08008 C 35.898764,13.032731 39.551708,13.066339 40.693916,15.155093 C 41.836132,17.243854 40.037215,20.600694 36.67848,22.648043 z "
+       id="path2224"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:1.00000167;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.680976,33.623016 C 11.05302,35.149988 10.299782,34.605272 9.1571703,32.591284 C 8.0145636,30.577295 8.100941,29.482102 11.541085,26.325956 C 14.900987,24.351896 18.555202,24.3843 19.697807,26.398287 C 20.840426,28.412273 19.040877,31.648952 15.680976,33.623016 z "
+       id="path2228"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0000435"
+       inkscape:original="M 16.4375 24.875 C 14.961133 24.861908 13.211201 25.32547 11.53125 26.3125 C 8.091106 29.468646 8.0136433 30.579759 9.15625 32.59375 C 10.298862 34.607738 11.059544 35.151972 15.6875 33.625 C 19.047401 31.650936 20.830119 28.420236 19.6875 26.40625 C 19.116197 25.399256 17.913867 24.888092 16.4375 24.875 z "
+       xlink:href="#path2228"
+       style="opacity:0.35;fill:url(#linearGradient2367);fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2244"
+       inkscape:href="#path2228"
+       d="M 16.4375,25.5625 C 15.225911,25.551756 13.660678,25.986763 12.15625,26.84375 C 10.550146,28.330129 9.7557904,29.328548 9.5625,29.90625 C 9.3649665,30.496634 9.5025865,30.849414 10.03125,31.78125 C 10.302942,32.260138 10.523169,32.613015 10.71875,32.8125 C 10.914331,33.011985 11.040068,33.097389 11.3125,33.15625 C 11.836378,33.269438 13.116625,33.081343 15.21875,32.40625 C 16.739932,31.503646 17.889523,30.32189 18.5,29.21875 C 19.115832,28.105933 19.160409,27.206976 18.8125,26.59375 C 18.466678,25.984194 17.687878,25.573588 16.4375,25.5625 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90"
+       transform="translate(-3.261295e-4,1.945628e-4)" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.781196,31.980797 C 18.406839,27.241987 19.600601,27.133027 22.558995,27.959412 C 25.517377,28.785792 26.498997,29.764879 26.5,34.97494 C 25.429993,39.137961 22.160569,41.845948 19.202184,41.019566 C 16.24379,40.193181 14.711189,36.143816 15.781196,31.980797 z "
+       id="path2218"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0089091"
+       inkscape:original="M 20.625 27.5625 C 18.918105 27.466646 17.750483 28.414643 15.78125 31.96875 C 14.711243 36.131769 16.229105 40.204865 19.1875 41.03125 C 22.145885 41.857632 25.429993 39.13177 26.5 34.96875 C 26.498997 29.758689 25.520883 28.79513 22.5625 27.96875 C 21.822902 27.762154 21.193965 27.594451 20.625 27.5625 z "
+       xlink:href="#path2218"
+       style="opacity:0.4;fill:url(#linearGradient2254);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2240"
+       inkscape:href="#path2218"
+       d="M 20.5625,25.5 C 19.907811,25.463235 19.561004,25.566238 18.96875,26.09375 C 18.39939,26.600871 17.659523,27.663233 16.75,29.28125 C 16.300255,31.130934 16.385773,32.955321 16.90625,34.34375 C 17.438569,35.763767 18.360161,36.690332 19.46875,37 C 20.577929,37.309833 21.771436,36.972415 22.90625,36.03125 C 24.020697,35.106976 25.004678,33.595596 25.5,31.75 C 25.485662,29.33285 25.202556,27.963789 24.78125,27.28125 C 24.348724,26.580535 23.69033,26.268606 22.28125,25.875 C 21.548137,25.670215 20.975703,25.523204 20.5625,25.5 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 22.589636,12.085809 C 24.174724,16.906782 23.609284,17.691436 21.518638,18.881701 C 19.427991,20.071964 18.291112,19.981984 15.014841,16.398361 C 12.965643,12.898328 12.999283,9.0917088 15.089923,7.9014452 C 17.180566,6.7111801 20.540438,8.5857754 22.589636,12.085809 z "
+       id="path2222"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.96927398"
+       inkscape:original="M 16.84375 7.5625 C 16.202747 7.4994497 15.616411 7.6086837 15.09375 7.90625 C 13.00311 9.0965136 12.950802 12.906217 15 16.40625 C 18.276271 19.989873 19.440602 20.065263 21.53125 18.875 C 23.621896 17.684735 24.178838 16.914723 22.59375 12.09375 C 21.056852 9.4687248 18.76676 7.7516509 16.84375 7.5625 z "
+       xlink:href="#path2222"
+       style="opacity:0.4;fill:url(#linearGradient2238);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2232"
+       inkscape:href="#path2222"
+       d="M 16.75,5.46875 C 16.27484,5.4220124 15.902933,5.4936816 15.5625,5.6875 C 14.90056,6.0643619 14.484412,6.9299953 14.46875,8.25 C 14.453381,9.5453187 14.903286,11.163341 15.8125,12.75 C 17.344427,14.407623 18.369904,15.229192 19,15.4375 C 19.647022,15.651404 20.092056,15.52125 21.0625,14.96875 C 21.562192,14.684261 21.911138,14.459507 22.125,14.25 C 22.338862,14.040493 22.436992,13.887548 22.5,13.59375 C 22.621375,13.027792 22.42463,11.70151 21.71875,9.5 C 20.300551,7.1027674 18.170695,5.6084922 16.75,5.46875 z "
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90"
+       transform="translate(0,6.766591e-2)" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000072;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 15.110245,15.90519 C 19.82436,18.526878 19.931835,19.720374 19.106984,22.678924 C 18.282136,25.637465 17.306916,26.619664 12.121668,26.624562 C 7.9793465,25.557832 5.2869063,22.290944 6.1117518,19.332403 C 6.9366004,16.373851 10.967924,14.838461 15.110245,15.90519 z "
+       id="path2220"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0062078"
+       inkscape:original="M 12.0625 15.5625 C 9.1424837 15.682984 6.7436363 17.124836 6.125 19.34375 C 5.3001545 22.302291 7.9826786 25.558271 12.125 26.625 C 17.310248 26.620102 18.268903 25.64604 19.09375 22.6875 C 19.918601 19.72895 19.839115 18.527938 15.125 15.90625 C 14.08942 15.639568 13.035839 15.522339 12.0625 15.5625 z "
+       xlink:href="#path2220"
+       style="opacity:0.4;fill:url(#linearGradient2246);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2234"
+       inkscape:href="#path2220"
+       d="M 12.09375,13.5 C 9.4814409,13.607788 7.5619569,14.883144 7.09375,16.5625 C 6.7827532,17.677978 7.1032888,18.873814 8.03125,20 C 8.9425567,21.105974 10.44513,22.068869 12.28125,22.5625 C 14.685442,22.546282 16.040043,22.264255 16.71875,21.84375 C 17.415725,21.411927 17.731987,20.753401 18.125,19.34375 C 18.525721,17.906458 18.614647,17.219888 18.28125,16.5625 C 17.956369,15.921903 16.929755,15.04136 14.75,13.8125 C 13.845755,13.591694 12.918322,13.465977 12.09375,13.5 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0066811"
+       inkscape:original="M 37.4375 13.5625 C 35.961646 13.548922 34.210618 14.070075 32.53125 15.09375 C 29.092303 18.36707 29.014042 19.473742 30.15625 21.5625 C 31.298466 23.65126 32.061155 24.239913 36.6875 22.65625 C 40.046235 20.608901 41.829716 17.245011 40.6875 15.15625 C 40.116396 14.111873 38.913354 13.576078 37.4375 13.5625 z "
+       xlink:href="#path2224"
+       style="opacity:0.4;fill:url(#linearGradient2222);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2236"
+       inkscape:href="#path2224"
+       d="M 37.4375,11.5 C 36.209007,11.488698 34.640843,11.934525 33.125,12.84375 C 31.572994,14.343465 30.790495,15.387459 30.59375,16 C 30.38941,16.636186 30.501711,17.062882 31.03125,18.03125 C 31.303727,18.529526 31.551384,18.882242 31.75,19.09375 C 31.948616,19.305258 32.078397,19.376294 32.34375,19.4375 C 32.849897,19.554247 34.121629,19.37131 36.1875,18.6875 C 37.705568,17.753005 38.884734,16.530737 39.5,15.375 C 40.120629,14.209188 40.168638,13.213767 39.8125,12.5625 C 39.457388,11.913107 38.674773,11.511383 37.4375,11.5 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 33.125387,15.014401 C 30.26869,19.896731 28.973236,20.010902 25.764644,19.165247 C 22.556047,18.319592 21.492567,17.31342 21.500039,11.950433 C 22.667874,7.6634206 26.219761,4.8704358 29.428357,5.7160909 C 32.636953,6.5617466 34.293217,10.72739 33.125387,15.014401 z "
+       id="path2192"
+       sodipodi:nodetypes="cscsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99950546"
+       inkscape:original="M 27 5.71875 C 24.592663 6.34847 22.375877 8.7222409 21.5 11.9375 C 21.492528 17.300487 22.541402 18.310595 25.75 19.15625 C 28.958592 20.001905 30.268305 19.88233 33.125 15 C 34.29283 10.712989 32.646097 6.5644059 29.4375 5.71875 C 28.635351 5.5073362 27.802446 5.5088433 27 5.71875 z "
+       xlink:href="#path2192"
+       style="opacity:0.4;fill:url(#linearGradient2214);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2230"
+       inkscape:href="#path2192"
+       d="M 27.25,3.625 C 25.314633,4.1312603 23.314958,6.1607857 22.5,9.03125 C 22.510826,11.522864 22.789343,12.909624 23.25,13.625 C 23.722547,14.358839 24.464582,14.720327 26,15.125 C 27.560661,15.536327 28.366368,15.654754 29.125,15.28125 C 29.867191,14.91584 30.838854,13.842149 32.1875,11.5625 C 32.678344,9.6587072 32.56307,7.7926235 32,6.375 C 31.424078,4.9250185 30.443053,3.9559128 29.1875,3.625 C 28.551361,3.4573398 27.889759,3.4576495 27.25,3.625 z "
+       inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/path2232.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:0.21428883;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1317"
+       sodipodi:cx="12.075002"
+       sodipodi:cy="12.360133"
+       sodipodi:rx="1.1966218"
+       sodipodi:ry="1.4141895"
+       d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1  10.87838,12.360133 A 1.1966218 1.4141895 0 1 1  13.271623 12.360133 z"
+       transform="matrix(4.891864,1.290148,-1.13072,4.153499,-20.5947,-43.34178)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.4;fill:url(#linearGradient2327);fill-opacity:1;stroke:#ffffff;stroke-width:0.25782824;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2319"
+       sodipodi:cx="12.075002"
+       sodipodi:cy="12.360133"
+       sodipodi:rx="1.1966218"
+       sodipodi:ry="1.4141895"
+       d="M 13.271623 12.360133 A 1.1966218 1.4141895 0 1 1  10.87838,12.360133 A 1.1966218 1.4141895 0 1 1  13.271623 12.360133 z"
+       transform="matrix(4.068634,1.071527,-0.940435,3.449674,-13.02699,-32.06442)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/irc.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,238 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48px"
+   height="48px"
+   id="svg4345"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="irc.svg"
+   inkscape:export-filename="/home/hbons/Desktop/pidgin.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4347">
+    <linearGradient
+       id="linearGradient2804">
+      <stop
+         style="stop-color:black;stop-opacity:0;"
+         offset="0"
+         id="stop2806" />
+      <stop
+         id="stop2812"
+         offset="0.5"
+         style="stop-color:black;stop-opacity:1;" />
+      <stop
+         style="stop-color:black;stop-opacity:0;"
+         offset="1"
+         id="stop2808" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2804"
+       id="linearGradient1516"
+       gradientUnits="userSpaceOnUse"
+       x1="21.875"
+       y1="48.000977"
+       x2="21.875"
+       y2="40" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2781"
+       id="radialGradient1514"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2,0,0,0.8,36,8.8)"
+       cx="1"
+       cy="44"
+       fx="1"
+       fy="44"
+       r="5" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2781">
+      <stop
+         style="stop-color:black;stop-opacity:1;"
+         offset="0"
+         id="stop2783" />
+      <stop
+         style="stop-color:black;stop-opacity:0;"
+         offset="1"
+         id="stop2785" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2781"
+       id="radialGradient1512"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2,0,0,0.8,-13,-79.2)"
+       cx="1"
+       cy="44"
+       fx="1"
+       fy="44"
+       r="5" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient5235">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop5237" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop5239" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3816">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3818" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop3820" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient4179"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5235"
+       id="radialGradient5241"
+       cx="23.234518"
+       cy="40.688972"
+       fx="23.234518"
+       fy="40.688972"
+       r="16.956987"
+       gradientTransform="matrix(1,0,0,0.133183,0,35.2699)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="13.062462"
+     inkscape:cx="40.814762"
+     inkscape:cy="25.717712"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1274"
+     inkscape:window-height="966"
+     inkscape:window-x="3"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata4350">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <g
+       id="g1504"
+       style="opacity:0.12663754"
+       transform="matrix(0.851064,0,0,0.999995,3.148928,-3.9998)">
+      <rect
+         transform="scale(-1,-1)"
+         y="-48"
+         x="-11"
+         height="8"
+         width="10"
+         id="rect1506"
+         style="opacity:1;color:black;fill:url(#radialGradient1512);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+      <rect
+         y="40"
+         x="38"
+         height="8"
+         width="10"
+         id="rect1508"
+         style="opacity:1;color:black;fill:url(#radialGradient1514);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+      <rect
+         y="40"
+         x="11"
+         height="8"
+         width="27"
+         id="rect1510"
+         style="opacity:1;color:black;fill:url(#linearGradient1516);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+    </g>
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.52838428;fill:url(#radialGradient5241);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4340"
+       sodipodi:cx="23.234518"
+       sodipodi:cy="40.688972"
+       sodipodi:rx="16.956987"
+       sodipodi:ry="2.2583797"
+       d="M 40.191505 40.688972 A 16.956987 2.2583797 0 1 1  6.2775307,40.688972 A 16.956987 2.2583797 0 1 1  40.191505 40.688972 z"
+       transform="matrix(1.208941,0,0,1.980928,3.410841,15.87176)" />
+    <path
+       style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
+       id="path4334"
+       transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)"
+       sodipodi:nodetypes="cccccccccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.94924349"
+       inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z "
+       style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4336"
+       d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
+       transform="matrix(-1.045455,0,0,1.048433,44.0682,0.636752)" />
+    <path
+       transform="matrix(2.539812,0,0,0.410815,-52.0204,75.74948)"
+       sodipodi:type="arc"
+       style="opacity:1;color:black;fill:url(#radialGradient4179);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path4306"
+       sodipodi:cx="31.112698"
+       sodipodi:cy="19.008621"
+       sodipodi:rx="8.6620579"
+       sodipodi:ry="8.6620579"
+       d="M 39.774755 19.008621 A 8.6620579 8.6620579 0 1 1  22.45064,19.008621 A 8.6620579 8.6620579 0 1 1  39.774755 19.008621 z" />
+    <path
+       style="opacity:1;fill:#efefef;fill-opacity:1;stroke:#787878;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 2.875,7.5 C 2.1210885,7.5 1.5,8.1265217 1.5,8.90625 L 1.5,15.71875 L 1.5,18.46875 L 1.5,26.189031 C 1.5,26.968759 2.1210885,27.595282 2.875,27.595281 L 5.5,27.595281 L 5.5,30.532781 L 9.2020155,27.56625 L 22.125,27.595281 C 22.878911,27.595281 23.5,26.968758 23.5,26.189031 L 23.5,18.46875 L 23.5,15.71875 L 23.5,8.90625 C 23.5,8.1265221 22.878912,7.5000001 22.125,7.5 L 16.15625,7.5 L 8.375,7.5 L 2.875,7.5 z "
+       id="rect1326"
+       transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)"
+       sodipodi:nodetypes="cccccccccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.94924349"
+       inkscape:original="M 2.875 7.5 C 2.1210885 7.5 1.5 8.1265217 1.5 8.90625 L 1.5 15.71875 L 1.5 18.46875 L 1.5 26.1875 C 1.5 26.967227 2.1210885 27.593751 2.875 27.59375 L 5.5 27.59375 L 5.5 30.53125 L 9.1875 27.5625 L 22.125 27.59375 C 22.878911 27.593749 23.5 26.967227 23.5 26.1875 L 23.5 18.46875 L 23.5 15.71875 L 23.5 8.90625 C 23.5 8.1265221 22.878912 7.5000001 22.125 7.5 L 16.15625 7.5 L 8.375 7.5 L 2.875 7.5 z "
+       style="opacity:1;fill:none;fill-opacity:1;stroke:white;stroke-width:0.95516169;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path5034"
+       d="M 2.875,8.4375 C 2.6469872,8.4375 2.4375,8.6305983 2.4375,8.90625 L 2.4375,15.71875 L 2.4375,18.46875 L 2.4375,26.1875 C 2.4375,26.46315 2.6469898,26.65625 2.875,26.65625 L 5.5,26.65625 C 6.0150993,26.662634 6.4311157,27.078651 6.4375,27.59375 L 6.4375,28.5625 L 8.59375,26.8125 C 8.7649594,26.685027 8.9741324,26.618972 9.1875,26.625 L 22.125,26.65625 C 22.353012,26.65625 22.5625,26.463149 22.5625,26.1875 L 22.5625,18.46875 L 22.5625,15.71875 L 22.5625,8.90625 C 22.5625,8.6305986 22.353013,8.4375 22.125,8.4375 L 16.15625,8.4375 L 8.375,8.4375 L 2.875,8.4375 z "
+       transform="matrix(1.045455,0,0,1.048433,3.931818,8.785079)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/jabber.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,246 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48px"
+   height="48px"
+   id="svg3302"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docbase="/home/hbons/Desktop"
+   sodipodi:docname="jabber.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/hbons/Desktop/xmpp.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs3304">
+    <linearGradient
+       id="linearGradient2222"
+       inkscape:collect="always">
+      <stop
+         id="stop2224"
+         offset="0"
+         style="stop-color:#429538;stop-opacity:1" />
+      <stop
+         id="stop2226"
+         offset="1"
+         style="stop-color:#033e6f;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2214"
+       inkscape:collect="always">
+      <stop
+         id="stop2216"
+         offset="0"
+         style="stop-color:#033e6f;stop-opacity:1" />
+      <stop
+         id="stop2218"
+         offset="1"
+         style="stop-color:#14a9de;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3417">
+      <stop
+         style="stop-color:#df5219;stop-opacity:1"
+         offset="0"
+         id="stop3419" />
+      <stop
+         style="stop-color:#034072;stop-opacity:1"
+         offset="1"
+         id="stop3421" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3334">
+      <stop
+         style="stop-color:#034072;stop-opacity:1"
+         offset="0"
+         id="stop3336" />
+      <stop
+         style="stop-color:#109cd3;stop-opacity:1"
+         offset="1"
+         id="stop3338" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2214"
+       id="linearGradient3340"
+       x1="5.0133924"
+       y1="12.455358"
+       x2="15.638392"
+       y2="30.098215"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3334"
+       id="linearGradient3392"
+       gradientUnits="userSpaceOnUse"
+       x1="5.0133924"
+       y1="12.455358"
+       x2="15.638392"
+       y2="30.098215" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3417"
+       id="linearGradient3423"
+       x1="31.736355"
+       y1="20.841261"
+       x2="35.292381"
+       y2="22.255474"
+       gradientUnits="userSpaceOnUse" />
+    <filter
+       inkscape:collect="always"
+       x="-0.49491513"
+       width="1.9898303"
+       y="-1.0582332"
+       height="3.1164664"
+       id="filter3871">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.4785069"
+         id="feGaussianBlur3873" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2222"
+       id="linearGradient2206"
+       gradientUnits="userSpaceOnUse"
+       x1="18.734463"
+       y1="21.519651"
+       x2="15.642859"
+       y2="23.876795" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="4.9497475"
+     inkscape:cx="81.961371"
+     inkscape:cy="4.928944"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1434"
+     inkscape:window-height="823"
+     inkscape:window-x="3"
+     inkscape:window-y="43" />
+  <metadata
+     id="metadata3307">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.2967033;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3871)"
+       id="path3425"
+       sodipodi:cx="22.273863"
+       sodipodi:cy="36.736797"
+       sodipodi:rx="13.283506"
+       sodipodi:ry="6.2124381"
+       d="M 35.557369 36.736797 A 13.283506 6.2124381 0 1 1  8.9903564,36.736797 A 13.283506 6.2124381 0 1 1  35.557369 36.736797 z"
+       transform="matrix(1.0990312,0,0,0.3942904,-0.4161261,25.323157)" />
+    <path
+       style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z "
+       id="path3380"
+       sodipodi:nodetypes="cccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.56227452"
+       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
+       style="fill:url(#linearGradient3392);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3382"
+       d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z "
+       transform="matrix(-1,0,0,1,47.020178,0)" />
+    <path
+       style="fill:#abbb25;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 38.234464,10.821428 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 38.448749,16.396079 38.234464,10.821428 z "
+       id="path3384"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:url(#linearGradient3423);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 45.5,8.3964466 L 29.479739,12.639268 C 30.641414,18.245615 24.910285,36.130347 9.305892,40.357143 C 28.352732,40.357143 45.5,20.878719 45.5,8.3964466 z "
+       id="path3388"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#df5219;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 38.941571,10.619397 L 30.091607,13 C 30.163035,15.428571 29.270178,30.892857 13.484463,39.428571 C 30.635869,37.073525 39.155856,16.194048 38.941571,10.619397 z "
+       id="path3386"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#e96d1f;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 34.3385,11.986693 L 30.221025,13 C 30.292453,15.428571 29.399596,30.892857 13.613881,39.428571 C 31.551001,34.930668 35.951771,13.823779 34.3385,11.986693 z "
+       id="path2228"
+       sodipodi:nodetypes="cccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0305283"
+       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
+       style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3390"
+       d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z "
+       transform="matrix(-1,0,0,1,47.020178,0)" />
+    <path
+       style="fill:#da6812;fill-opacity:1;stroke:#a24900;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z "
+       id="rect3321"
+       sodipodi:nodetypes="cccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.56227452"
+       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
+       style="fill:url(#linearGradient3340);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3332"
+       d="M 2.15625,9.15625 C 2.4797298,15.042119 6.5569158,22.567467 12.875,28.65625 C 18.524354,34.100573 25.907207,38.35807 33.78125,39.46875 C 27.844419,36.773348 23.584667,32.10141 20.84375,27.28125 C 19.19604,24.383597 18.100702,21.459043 17.46875,18.875 C 16.896533,16.535213 16.729528,14.546192 16.9375,13.03125 L 2.15625,9.15625 z " />
+    <path
+       style="fill:#08aec5;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.7857143,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 8.5714286,16.396079 8.7857143,10.821428 z "
+       id="rect3326"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#429538;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 8.1796228,10.821428 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 16.384309,37.073525 7.7633066,17.103186 8.1796228,10.821428 z "
+       id="path3342"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:#a0ce67;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 12.811096,11.986693 L 16.928571,13 C 16.857143,15.428571 17.75,30.892857 33.535715,39.428571 C 15.598595,34.930668 11.197825,13.823779 12.811096,11.986693 z "
+       id="path2220"
+       sodipodi:nodetypes="cccc" />
+    <path
+       style="fill:none;fill-opacity:1;stroke:url(#linearGradient2206);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 1.5201775,8.3964466 L 17.540439,12.639268 C 16.378764,18.245615 22.109893,36.130347 37.714286,40.357143 C 18.667446,40.357143 1.5201775,20.878719 1.5201775,8.3964466 z "
+       id="path3352"
+       sodipodi:nodetypes="cccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0305283"
+       inkscape:original="M 1.53125 8.40625 C 1.53125 20.888522 18.671909 40.34375 37.71875 40.34375 C 22.114357 36.116954 16.369574 18.231347 17.53125 12.625 L 1.53125 8.40625 z "
+       style="opacity:0.4;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       id="path3366"
+       d="M 2.78125,9.8125 C 3.3466531,15.418621 7.1614784,22.50518 13.1875,28.3125 C 18.090567,33.03762 24.31812,36.855835 31,38.46875 C 26.325029,35.650434 22.791678,31.640043 20.4375,27.5 C 18.767353,24.562889 17.642711,21.596789 17,18.96875 C 16.46674,16.788257 16.328823,14.953857 16.46875,13.40625 L 2.78125,9.8125 z " />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/meanwhile.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,174 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="meanwhile.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/meanwhile.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2195">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2197" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2199" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2230">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2232" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2234" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient4330"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2230"
+       id="linearGradient2236"
+       x1="10.177145"
+       y1="-1.3535745"
+       x2="10.177145"
+       y2="8.1371298"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2195"
+       id="radialGradient2211"
+       cx="30.5625"
+       cy="23.172834"
+       fx="30.5625"
+       fy="23.172834"
+       r="23.5"
+       gradientTransform="matrix(1.330958,-1.200379e-32,1.144509e-32,1.269011,-10.11491,-9.053927)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="16.976026"
+     inkscape:cx="38.972041"
+     inkscape:cy="25.781032"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#f57900"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.3;fill:url(#radialGradient4330);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.583369,0,0,3.000545,-14.70523,9.779617)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.67679459;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4302"
+       sodipodi:cx="10.555883"
+       sodipodi:cy="4.0385542"
+       sodipodi:rx="5.074944"
+       sodipodi:ry="5.074944"
+       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
+       transform="matrix(1.477556,0,0,1.477551,8.403577,4.033323)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#linearGradient2236);fill-opacity:1;stroke:#ffffff;stroke-width:0.78084576;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4273"
+       sodipodi:cx="10.555883"
+       sodipodi:cy="4.0385542"
+       sodipodi:rx="5.074944"
+       sodipodi:ry="5.074944"
+       d="M 15.630827 4.0385542 A 5.074944 5.074944 0 1 1  5.4809394,4.0385542 A 5.074944 5.074944 0 1 1  15.630827 4.0385542 z"
+       transform="matrix(1.280662,0,0,1.280662,10.48149,4.827989)" />
+    <path
+       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.00000119;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 34.49131,8.6205284 C 34.49131,13.938683 32.849731,20.518688 23.898198,20.518688 C 15.00451,20.518688 13.526711,13.679495 13.526711,8.6600767 L 5.4949228,9.8762415 C 5.4949228,23.237275 17.664236,26.553794 17.664236,26.553794 C 17.664236,26.553794 9.1712538,34.298165 9.1712538,44.405547 L 19.237281,44.498262 C 19.237281,44.498262 21.456328,35.564348 25.010569,35.564348 C 28.652494,35.564348 30.6887,44.471546 30.6887,44.471546 L 40.362294,44.503507 C 40.362294,33.010164 30.381957,26.578174 30.381957,26.578174 C 30.381957,26.578174 42.614757,23.170121 42.614757,9.5035195 L 34.49131,8.6205284 z "
+       id="rect2213"
+       sodipodi:nodetypes="czccccczccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.9525249"
+       inkscape:original="M 34.5 8.625 C 34.5 13.943155 32.857783 20.53125 23.90625 20.53125 C 15.012563 20.53125 13.53125 13.675668 13.53125 8.65625 L 5.5 9.875 C 5.5000002 23.236033 17.65625 26.5625 17.65625 26.5625 C 17.65625 26.562499 9.15625 34.298868 9.15625 44.40625 L 19.25 44.5 C 19.249999 44.500002 21.445759 35.5625 25 35.5625 C 28.641925 35.562502 30.6875 44.46875 30.6875 44.46875 L 40.375 44.5 C 40.375001 33.006658 30.375 26.59375 30.375 26.59375 C 30.375001 26.593749 42.625 23.166602 42.625 9.5 L 34.5 8.625 z "
+       xlink:href="#rect2213"
+       style="opacity:0.6;fill:url(#radialGradient2211);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2220"
+       inkscape:href="#rect2213"
+       d="M 45.40625,11.75 C 45.26383,14.467634 44.656918,17.754917 42.6875,20.65625 C 40.459732,23.938183 36.552927,26.5 30.5,26.5 C 24.488156,26.5 20.637234,23.994802 18.4375,20.75 C 16.4845,17.869153 15.883719,14.581533 15.75,11.84375 L 7.5625,13.15625 C 7.8022289,20.855399 11.189172,25.378007 14.65625,28.03125 C 18.250337,30.781689 21.8125,31.5 21.8125,31.5 C 22.153479,31.568346 22.430121,31.817069 22.53422,32.148884 C 22.638319,32.4807 22.553332,32.842875 22.3125,33.09375 C 22.3125,33.09375 12.834342,43.464627 12.34375,55.4375 L 23.625,55.5625 C 23.775583,54.968024 24.284703,52.850143 25.46875,50.125 C 26.139238,48.581838 26.957479,47.047605 27.96875,45.8125 C 28.980021,44.577395 30.249533,43.59375 31.8125,43.59375 C 33.392834,43.59375 34.682884,44.544922 35.6875,45.78125 C 36.692116,47.017578 37.481015,48.583576 38.125,50.125 C 39.262583,52.847886 39.73782,54.93884 39.875,55.53125 L 50.59375,55.5625 C 49.991815,42.90975 37.8125,33.21875 37.8125,33.21875 C 37.516383,32.984647 37.386427,32.597781 37.481159,32.232384 C 37.575892,31.866987 37.877442,31.591993 38.25,31.53125 C 38.25,31.53125 42.11079,30.902899 45.96875,28.21875 C 49.692789,25.627775 53.310428,21.149688 53.5625,13.28125 L 45.40625,11.75 z " />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/msn.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,174 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="msn.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/msn.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3816">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop3818" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop3820" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2228">
+      <stop
+         style="stop-color:#f56600;stop-opacity:1;"
+         offset="0"
+         id="stop2230" />
+      <stop
+         style="stop-color:#f56600;stop-opacity:0;"
+         offset="1"
+         id="stop2232" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2219">
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1;"
+         offset="0"
+         id="stop2221" />
+      <stop
+         style="stop-color:#3465a4;stop-opacity:0;"
+         offset="1"
+         id="stop2223" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3816"
+       id="radialGradient1358"
+       gradientUnits="userSpaceOnUse"
+       cx="31.112698"
+       cy="19.008621"
+       fx="31.112698"
+       fy="19.008621"
+       r="8.6620579"
+       gradientTransform="matrix(1.904859,0,0,0.57723,-32.76529,27.09015)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2219"
+       id="linearGradient1360"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.427299,0,0,1.408267,0.332861,3.39912)"
+       x1="10.329217"
+       y1="14.96656"
+       x2="16.580788"
+       y2="20.092552" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2228"
+       id="linearGradient1362"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.489007,0,0,1.428565,1.731241,3.002037)"
+       x1="20.998175"
+       y1="11.741063"
+       x2="18.544895"
+       y2="23.366545" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="14.778489"
+     inkscape:cx="32.469518"
+     inkscape:cy="22.977647"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#edd400"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       style="opacity:0.4;color:#000000;fill:url(#radialGradient1358);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       d="M 43.00001,38.062496 C 43.00001,40.822496 35.608012,43.062496 26.500013,43.062496 C 17.392013,43.062496 10.000014,40.822496 10.000014,38.062496 C 10.000014,35.302496 17.392013,33.062496 26.500013,33.062496 C 35.608012,33.062496 43.00001,35.302496 43.00001,38.062496 z "
+       id="path4318" />
+    <path
+       style="fill:#edd400;fill-opacity:1;stroke:#c4a000;stroke-width:1.00000083;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 34.662639,20.335823 C 39.495137,21.781376 40.098879,38.560591 34.609432,38.560591 C 29.18649,38.560591 17.111515,15.085731 34.662639,20.335823 z "
+       id="rect2194" />
+    <path
+       style="opacity:0.5;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000024;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 29.5,20.59375 C 28.488762,20.699063 27.850577,20.9863 27.40625,21.40625 C 26.961923,21.8262 26.695785,22.399576 26.5625,23.15625 C 26.295929,24.669599 26.724448,26.888006 27.625,29.09375 C 28.525552,31.299494 29.853318,33.518217 31.21875,35.125 C 32.584182,36.731783 34.047656,37.59375 34.625,37.59375 C 35.065414,37.59375 35.396266,37.452251 35.75,37.125 C 36.103734,36.797749 36.436723,36.267837 36.71875,35.5625 C 37.282805,34.151825 37.566795,32.092358 37.53125,30 C 37.495705,27.907642 37.16426,25.762788 36.5625,24.125 C 35.96074,22.487212 35.097603,21.497403 34.375,21.28125 C 32.261511,20.64904 30.658881,20.473061 29.5,20.59375 z "
+       id="path2259" />
+    <path
+       style="fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 24.98559,40.707419 C 20.31754,40.707419 7.959768,29.343494 17.418553,22.824249 C 26.869109,16.310672 29.725145,40.707419 24.98559,40.707419 z "
+       id="rect2201" />
+    <path
+       style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999911;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.429472,22.564494 C 19.813992,22.53919 18.946491,22.754031 17.792299,23.48193 C 15.396153,24.993077 14.598274,26.486625 14.509287,28.117394 C 14.420299,29.74816 15.197952,31.630592 16.500622,33.380577 C 17.803294,35.130559 19.637587,36.743254 21.398232,37.871181 C 23.158877,38.999109 24.734359,39.505165 25.355011,39.505165 C 25.714095,39.505165 25.973542,38.578409 26.134382,37.774606 C 26.456061,36.166999 26.487926,33.806821 26.080561,31.449134 C 25.673198,29.091442 24.821426,26.682961 23.766308,25.027083 C 22.711189,23.371206 21.583796,22.611947 20.429472,22.564494 z "
+       id="path2254" />
+    <path
+       style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 38.290982,9.1309894 C 35.842841,9.5672523 32.283411,12.929344 29.603482,16.28724 C 27.08796,19.439138 25.478582,22.11333 25.259732,22.47474 L 28.572232,30.03724 C 34.665525,29.832673 38.559865,27.128092 38.853482,26.91224 C 39.014293,26.551466 40.549044,23.055678 41.478482,19.03724 C 41.967713,16.922043 42.260097,14.730906 42.072232,12.97474 C 41.884367,11.218574 41.30548,10.015388 40.103482,9.3809894 C 39.532517,9.0796416 38.992058,9.0060564 38.290982,9.1309894 z "
+       id="path2245" />
+    <path
+       style="fill:url(#linearGradient1360);fill-opacity:1;stroke:#204a87;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 2.9244668,13.205506 C 5.4909473,8.9616426 31.868508,26.916697 20.798169,29.292473 C 9.7422309,31.665159 0.38413836,17.406122 2.9244668,13.205506 z "
+       id="rect2197" />
+    <path
+       style="opacity:0.2;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999905;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 4.0077208,17.150417 C 4.6613048,18.933996 5.9435775,21.021975 7.6235197,22.895457 C 10.983405,26.64242 15.833733,29.401717 20.89796,28.310863 C 21.928379,28.088904 22.232928,27.802155 22.334374,27.651594 C 22.435813,27.501039 22.52111,27.289844 22.334374,26.709786 C 21.960899,25.54967 20.384396,23.482994 18.173725,21.529832 C 15.963059,19.576669 13.153701,17.6285 10.545878,16.161517 C 7.9380537,14.694536 5.1976761,13.680027 3.975949,13.563989 C 3.3254548,13.502207 3.3541371,15.366838 4.0077208,17.150417 z "
+       id="path2249" />
+    <path
+       style="fill:url(#linearGradient1362);fill-opacity:1;stroke:#ce5d00;stroke-width:1.00000048;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 23.497613,20.84222 C 23.497613,20.84222 33.747199,3.7130144 39.940221,6.9816102 C 46.183621,10.276795 39.032218,26.044415 39.032218,26.044415 C 39.032218,26.044415 34.34592,29.558038 27.298467,29.558038 L 23.497613,20.84222 z "
+       id="rect1317" />
+    <path
+       style="opacity:0.25;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.0000006;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 37.65625,7.5937494 C 35.207156,8.0301823 31.648755,11.392008 28.96875,14.75 C 26.453156,17.901987 24.843855,20.576081 24.625,20.9375 L 27.9375,28.5 C 34.029365,28.295478 37.922857,25.592475 38.21875,25.375 C 38.379566,25.014217 39.91427,21.518622 40.84375,17.5 C 41.333003,15.384706 41.625396,13.193957 41.4375,11.4375 C 41.249604,9.6810425 40.671312,8.4784456 39.46875,7.8437494 C 38.897466,7.5422332 38.357596,7.4687683 37.65625,7.5937494 z "
+       id="path1328" />
+    <path
+       style="fill:#75507b;fill-opacity:1;stroke:#5c3566;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 25.75715,25.780775 C 27.420525,29.605605 28.313593,33.06003 27.750608,33.491546 C 27.187623,33.923061 25.380722,31.169067 23.717348,27.344236 C 22.053974,23.519407 21.160905,20.064982 21.72389,19.633467 C 22.286875,19.201951 24.093776,21.955945 25.75715,25.780775 z "
+       id="path2192" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/novell.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,167 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/scalable"
+   sodipodi:docname="novell.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/groupwise.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2190">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1;"
+         offset="0"
+         id="stop2192" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:0;"
+         offset="1"
+         id="stop2194" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2238">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop2240" />
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:0;"
+         offset="1"
+         id="stop2242" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2238"
+       id="linearGradient2244"
+       x1="11.76915"
+       y1="3.4633243"
+       x2="11.76915"
+       y2="11.990735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.888889,0,0,1.818182,2.77778,1.26862)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2190"
+       id="radialGradient2196"
+       cx="4.3022962"
+       cy="7.5011024"
+       fx="4.3022962"
+       fy="7.5011024"
+       r="8.5"
+       gradientTransform="matrix(-2.567716,2.567716,-2.581797,-2.581795,54.64024,19.71367)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="12.865422"
+     inkscape:cx="44.509337"
+     inkscape:cy="25.527163"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#00ffff"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.5;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(2.934577,0,0,2.111893,-7.042754,16.91046)" />
+    <rect
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:0.9999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect1326"
+       width="33.012436"
+       height="35.008015"
+       x="7.4937739"
+       y="5.4919853"
+       ry="4.0986137"
+       rx="4.0986137" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99578816"
+       inkscape:original="M 11.59375 5.5 C 9.323118 5.5 7.5 7.323118 7.5 9.59375 L 7.5 36.40625 C 7.5 38.676882 9.3231175 40.5 11.59375 40.5 L 36.40625 40.5 C 38.676882 40.5 40.5 38.676882 40.5 36.40625 L 40.5 9.59375 C 40.5 7.323118 38.676882 5.5 36.40625 5.5 L 11.59375 5.5 z "
+       xlink:href="#rect1326"
+       style="opacity:1;fill:url(#radialGradient2196);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2201"
+       inkscape:href="#rect1326"
+       d="M 9.5,5.5 C 8.9264847,5.5 8.5,5.9264831 8.5,6.5 L 8.5,37.5 C 8.5,38.073517 8.9264835,38.499999 9.5,38.5 L 38.5,38.5 C 39.073514,38.5 39.5,38.073514 39.5,37.5 L 39.5,6.5 C 39.5,5.9264836 39.073514,5.5 38.5,5.5 L 9.5,5.5 z " />
+    <path
+       style="fill:#cc0000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16,13.995893 L 16,32.182309 L 19.840233,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z "
+       id="rect1317"
+       sodipodi:nodetypes="ccccccccccc" />
+    <path
+       style="fill:url(#linearGradient2244);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16,13.995893 L 16,32.182309 L 19.840234,32.182309 L 19.746482,21.644702 L 29.000001,30.275655 L 33,33.995893 L 33,15.840234 L 29.223673,15.840234 L 29.223673,26.287561 L 18.124999,15.900655 L 16,13.995893 z "
+       id="path2228"
+       sodipodi:nodetypes="ccccccccccc" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/qq.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,291 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48/scalable"
+   sodipodi:docname="qq.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/qq.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2234">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2236" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2238" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2226">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2228" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2230" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2226"
+       id="linearGradient2232"
+       x1="13.296353"
+       y1="9.8980713"
+       x2="13.296353"
+       y2="11.762599"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2234"
+       id="linearGradient2240"
+       x1="23.995228"
+       y1="3.6292775"
+       x2="23.995228"
+       y2="15.460559"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="13.788818"
+     inkscape:cx="40.171151"
+     inkscape:cy="24.9552"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     fill="#f57900"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(2.884895,0,0,2.493965,-7.834213,14.7186)"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90" />
+    <path
+       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 42.428297,39.500007 C 42.428297,41.665624 39.100419,43.423228 34.999998,43.423228 C 30.899577,43.423228 27.571699,41.665624 27.571699,39.500007 C 27.571699,37.334387 30.899577,35.576783 34.999998,35.576783 C 39.100419,35.576783 42.428297,37.334387 42.428297,39.500007 z "
+       id="path2344" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.1975733"
+       inkscape:original="M 35 35.5625 C 30.899579 35.5625 27.5625 37.334379 27.5625 39.5 C 27.5625 41.665617 30.899581 43.437499 35 43.4375 C 39.100421 43.4375 42.437502 41.665616 42.4375 39.5 C 42.4375 37.33438 39.100423 35.562501 35 35.5625 z "
+       xlink:href="#path2344"
+       style="opacity:0.2;fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731504;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2213"
+       inkscape:href="#path2344"
+       d="M 35,36.75 C 33.122288,36.75 31.437541,37.185098 30.3125,37.78125 C 29.187459,38.377402 28.75,39.032317 28.75,39.5 C 28.75,39.96768 29.187459,40.622598 30.3125,41.21875 C 31.437541,41.814902 33.12229,42.25 35,42.25 C 36.877711,42.25 38.562459,41.814902 39.6875,41.21875 C 40.812541,40.622598 41.25,39.967679 41.25,39.5 C 41.25,39.032317 40.812541,38.377402 39.6875,37.78125 C 38.562459,37.185098 36.877713,36.75 35,36.75 z " />
+    <path
+       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 20.428294,39.500007 C 20.428294,41.665624 17.100417,43.423228 12.999998,43.423228 C 8.8995795,43.423228 5.5717033,41.665624 5.5717033,39.500007 C 5.5717033,37.334387 8.8995795,35.576783 12.999998,35.576783 C 17.100417,35.576783 20.428294,37.334387 20.428294,39.500007 z "
+       id="path2340" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.1365247"
+       inkscape:original="M 13 35.5625 C 8.8995815 35.5625 5.5624999 37.334379 5.5625 39.5 C 5.5625 41.665617 8.8995814 43.437499 13 43.4375 C 17.100419 43.4375 20.437501 41.665616 20.4375 39.5 C 20.4375 37.33438 17.100419 35.562501 13 35.5625 z "
+       xlink:href="#path2340"
+       style="fill:#f57900;fill-opacity:1;stroke:#ffffff;stroke-width:1.12731493;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
+       id="path2216"
+       inkscape:href="#path2340"
+       d="M 13,36.6875 C 11.113496,36.6875 9.417597,37.116607 8.28125,37.71875 C 7.144903,38.320893 6.6875,39.00096 6.6875,39.5 C 6.6875,39.999037 7.1449028,40.679107 8.28125,41.28125 C 9.4175972,41.883393 11.113496,42.3125 13,42.3125 C 14.886503,42.3125 16.582403,41.883393 17.71875,41.28125 C 18.855097,40.679107 19.3125,39.999036 19.3125,39.5 C 19.3125,39.00096 18.855097,38.320893 17.71875,37.71875 C 16.582403,37.116607 14.886504,36.6875 13,36.6875 z " />
+    <path
+       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 16.512817,28.000001 C 16.512817,31.046362 13.819074,33.518772 10.499997,33.518772 C 7.1809214,33.518772 4.4871784,31.046362 4.4871784,28.000001 C 4.4871784,24.953638 7.1809214,22.481229 10.499997,22.481229 C 13.819074,22.481229 16.512817,24.953638 16.512817,28.000001 z "
+       id="path2346" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.99468362"
+       inkscape:original="M 10.5 22.46875 C 7.1809244 22.46875 4.5000001 24.953636 4.5 28 C 4.5 31.046361 7.1809243 33.53125 10.5 33.53125 C 13.819077 33.53125 16.5 31.04636 16.5 28 C 16.5 24.953637 13.819077 22.468749 10.5 22.46875 z "
+       xlink:href="#path2346"
+       style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.9999994;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
+       id="path2207"
+       inkscape:href="#path2346"
+       d="M 10.5,23.46875 C 7.677383,23.46875 5.5000001,25.537211 5.5,28 C 5.5,30.462786 7.6773835,32.53125 10.5,32.53125 C 13.322618,32.53125 15.5,30.462785 15.5,28 C 15.5,25.537212 13.322618,23.468749 10.5,23.46875 z " />
+    <path
+       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 43.529524,27.990624 C 43.529524,31.032236 40.925766,33.500791 37.717565,33.500791 C 34.509364,33.500791 31.905607,31.032236 31.905607,27.990624 C 31.905607,24.94901 34.509364,22.480455 37.717565,22.480455 C 40.925766,22.480455 43.529524,24.94901 43.529524,27.990624 z "
+       id="path2348" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0194331"
+       inkscape:original="M 37.71875 22.46875 C 34.510549 22.46875 31.90625 24.958387 31.90625 28 C 31.90625 31.041612 34.51055 33.500001 37.71875 33.5 C 40.926951 33.5 43.531248 31.041613 43.53125 28 C 43.53125 24.958386 40.926952 22.46875 37.71875 22.46875 z "
+       xlink:href="#path2348"
+       style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
+       id="path2210"
+       inkscape:href="#path2348"
+       d="M 37.71875,23.5 C 35.037951,23.5 32.9375,25.540295 32.9375,28 C 32.9375,30.459704 35.031333,32.468751 37.71875,32.46875 C 40.406169,32.46875 42.499998,30.459706 42.5,28 C 42.5,25.540294 40.39955,23.5 37.71875,23.5 z " />
+    <path
+       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 39.499823,30.499795 C 39.499823,37.123448 32.555881,42.499166 23.999954,42.499166 C 15.444028,42.499166 8.500088,37.123448 8.500088,30.499795 C 8.500088,23.876141 15.444028,18.500423 23.999954,18.500423 C 32.555881,18.500423 39.499823,23.876141 39.499823,30.499795 z "
+       id="path2322" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0023749"
+       inkscape:original="M 24 18.5 C 15.444074 18.5 8.5000003 23.876345 8.5 30.5 C 8.5 37.123653 15.444074 42.500001 24 42.5 C 32.555927 42.5 39.499998 37.123652 39.5 30.5 C 39.5 23.876346 32.555927 18.5 24 18.5 z "
+       xlink:href="#path2322"
+       style="fill:#555753;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999851;stroke-miterlimit:4;stroke-opacity:1;opacity:0.2"
+       id="path2204"
+       inkscape:href="#path2322"
+       d="M 24,19.5 C 19.931993,19.5 16.266755,20.79143 13.65625,22.8125 C 11.045745,24.83357 9.5000001,27.538461 9.5,30.5 C 9.5,33.461538 11.045745,36.16643 13.65625,38.1875 C 16.266755,40.20857 19.931994,41.5 24,41.5 C 28.068007,41.5 31.733245,40.20857 34.34375,38.1875 C 36.954255,36.16643 38.499999,33.461538 38.5,30.5 C 38.5,27.538461 36.954255,24.83357 34.34375,22.8125 C 31.733245,20.79143 28.068007,19.5 24,19.5 z " />
+    <path
+       style="fill:#eeeeec;fill-opacity:1;stroke:#babdb6;stroke-width:0.99999964;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 35.499727,31.513502 C 35.499727,36.473648 30.347846,40.499275 23.999994,40.499275 C 17.652141,40.499275 12.500261,36.473648 12.500261,31.513502 C 12.500261,26.553353 17.652141,22.527728 23.999994,22.527728 C 30.347846,22.527728 35.499727,26.553353 35.499727,31.513502 z "
+       id="path2324" />
+    <path
+       style="fill:#ef2929;fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 39.500074,23.567769 C 39.500074,26.23172 32.974173,28.996603 24.456043,28.996603 C 22.326509,28.996603 16.736214,27.907042 11.047899,32.502199 C 9.5994849,31.202637 8.2282338,30.682189 7.4999943,29.550469 C 10.583901,26.508381 9.3151719,24.813625 9.3151719,23.481649 C 9.3151719,20.817694 15.551058,19.435466 24.069189,19.435466 C 32.587316,19.435466 39.500074,20.903814 39.500074,23.567769 z "
+       id="path2338"
+       sodipodi:nodetypes="csccscc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0198945"
+       inkscape:original="M 24.0625 19.4375 C 15.544369 19.4375 9.3124997 20.804795 9.3125 23.46875 C 9.3125 24.800726 10.583907 26.520413 7.5 29.5625 C 8.2282395 30.69422 9.6140857 31.20044 11.0625 32.5 C 16.750815 27.904843 22.339216 29 24.46875 29 C 32.98688 29 39.500002 26.226452 39.5 23.5625 C 39.5 20.898545 32.580627 19.437499 24.0625 19.4375 z "
+       xlink:href="#path2338"
+       style="opacity:0.2;fill:#ef2929;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000036;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2352"
+       inkscape:href="#path2338"
+       d="M 23.78125,20.625 C 19.513931,20.625 15.847844,21.000067 13.34375,21.71875 C 12.091703,22.078092 11.128194,22.525914 10.5625,22.96875 C 9.9968057,23.411586 9.84375,23.757615 9.84375,24.15625 C 9.84375,24.61981 10.180025,25.486492 10.09375,26.75 C 10.020891,27.817027 9.4211808,29.129125 8.28125,30.59375 C 8.8275971,31.260718 9.8376614,32.075363 10.96875,33.09375 C 13.726867,30.866878 16.436481,29.770299 18.71875,29.4375 C 21.226032,29.07189 23.299616,29.375 24.1875,29.375 C 28.393452,29.375 32.111073,28.617129 34.6875,27.53125 C 35.975713,26.988311 36.964234,26.376877 37.59375,25.78125 C 38.223266,25.185623 38.4375,24.662279 38.4375,24.28125 C 38.4375,23.923108 38.262431,23.559823 37.625,23.09375 C 36.987569,22.627677 35.940994,22.158273 34.59375,21.78125 C 31.899262,21.027204 28.043658,20.625 23.78125,20.625 z " />
+    <path
+       style="fill:#555753;fill-opacity:1;stroke:#2e3436;stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 21.960325,3.5010229 L 25.764207,3.5010229 C 31.085197,3.5010229 35.608549,8.5308564 36.949275,14.000863 C 38.32645,19.619567 37.747111,24.500705 27.838472,24.500705 L 20.083608,24.500705 C 10.158913,24.500705 9.6944095,19.619567 11.071582,14.000863 C 12.355856,8.7611743 16.639337,3.5010229 21.960325,3.5010229 z "
+       id="rect2317"
+       sodipodi:nodetypes="ccsccsc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0200312"
+       inkscape:original="M 21.96875 3.5 C 16.647762 3.5 12.346774 8.7603112 11.0625 14 C 9.6853275 19.618704 10.169054 24.499999 20.09375 24.5 L 27.84375 24.5 C 37.752389 24.5 38.314674 19.618704 36.9375 14 C 35.596774 8.5299934 31.070989 3.5000001 25.75 3.5 L 21.96875 3.5 z "
+       xlink:href="#rect2317"
+       style="opacity:0.2;fill:url(#linearGradient2240);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.9999997;stroke-miterlimit:4;stroke-opacity:1"
+       id="path2355"
+       inkscape:href="#rect2317"
+       d="M 22.3125,5.625 C 20.004556,5.625 17.866452,6.7459198 16.125,8.5625 C 14.383548,10.37908 13.095153,12.874863 12.5,15.3125 C 11.838105,18.0235 11.722466,20.352475 12.65625,21.875 C 13.590034,23.397525 15.704379,24.53125 20.46875,24.53125 L 28.15625,24.53125 C 32.912367,24.53125 35.073893,23.40303 36.03125,21.875 C 36.988607,20.34697 36.879156,18.0174 36.21875,15.3125 C 34.977402,10.228171 30.73919,5.6249999 26.09375,5.625 L 22.3125,5.625 z " />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2326"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(2.437541,0,0,2.010344,6.500003,5.040414)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2328"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(2.336368,0,0,1.926902,14.93582,5.121749)" />
+    <path
+       style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999952;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 34.506346,21.499996 C 34.506346,24.245838 29.795953,26.474343 23.99207,26.474343 C 18.188191,26.474343 13.477796,24.245838 13.477796,21.499996 C 13.477796,18.754158 18.188191,16.52565 23.99207,16.52565 C 29.795953,16.52565 34.506346,18.754158 34.506346,21.499996 z "
+       id="path2320" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2330"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(1.218772,0,0,0.603105,19.74999,11.41212)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2332"
+       sodipodi:cx="5.5383673"
+       sodipodi:cy="3.4618888"
+       sodipodi:rx="1.2307483"
+       sodipodi:ry="2.4871371"
+       d="M 6.7691156 3.4618888 A 1.2307483 2.4871371 0 1 1  4.307619,3.4618888 A 1.2307483 2.4871371 0 1 1  6.7691156 3.4618888 z"
+       transform="matrix(1.21877,0,0,0.603105,14.75,11.41212)" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.2;fill:url(#linearGradient2232);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.60585797;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2336"
+       sodipodi:cx="13.296353"
+       sodipodi:cy="10.923561"
+       sodipodi:rx="8.2214088"
+       sodipodi:ry="1.7085644"
+       d="M 21.517762 10.923561 A 8.2214088 1.7085644 0 1 1  5.0749445,10.923561 A 8.2214088 1.7085644 0 1 1  21.517762 10.923561 z"
+       transform="matrix(1.167356,0,0,2.333756,8.467761,-4.004284)" />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/silc.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,153 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="silc.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/silc.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2193">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2195" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2197" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2222">
+      <stop
+         style="stop-color:#8ae234;stop-opacity:1;"
+         offset="0"
+         id="stop2224" />
+      <stop
+         style="stop-color:#8ae234;stop-opacity:0;"
+         offset="1"
+         id="stop2226" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2222"
+       id="linearGradient1318"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.08567,0,0,1.999113,-1.709138,-1.492105)"
+       x1="14.315197"
+       y1="11.002394"
+       x2="13.638538"
+       y2="-28.749279" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2193"
+       id="linearGradient2203"
+       x1="20.834801"
+       y1="17.936523"
+       x2="26.154163"
+       y2="21.007658"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="13.788817"
+     inkscape:cx="35.001851"
+     inkscape:cy="20.952874"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#9db029"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.35;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.461296,0,0,2.111892,-13.20427,14.91459)" />
+    <path
+       style="opacity:1;fill:url(#linearGradient1318);fill-opacity:1;stroke:#4e9a06;stroke-width:0.99999911;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 20.489949,11.011929 C 20.489949,11.915899 20.607326,27.829773 20.511631,29.556634 C 20.511631,29.556634 7.9604471,29.494161 7.7415566,29.494161 C 5.406724,29.494161 3.5050383,31.205765 3.5050383,33.545004 C 3.5050383,35.87227 5.406724,37.500189 7.7415566,37.500189 L 21.797683,37.500189 C 26.78121,37.500189 28.663439,35.244533 28.663439,32.002624 C 28.663439,31.098653 28.395875,13.209261 28.505671,11.511706 C 28.505671,11.511706 40.472455,11.511706 41.202093,11.511706 C 43.536926,11.511706 45.50004,9.6968193 45.50004,7.3652154 C 45.50004,5.7067176 43.536923,3.5056793 41.202093,3.5056793 L 26.642947,3.5056793 C 23.379817,3.5056793 20.489949,5.5738454 20.489949,11.011929 z "
+       id="rect3167"
+       sodipodi:nodetypes="ccssscscssscs" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0564219"
+       inkscape:original="M 26.65625 3.5 C 23.393121 3.4999999 20.5 5.5619164 20.5 11 C 20.500001 11.90397 20.595695 27.835639 20.5 29.5625 C 20.5 29.562499 7.9688905 29.5 7.75 29.5 C 5.4151674 29.499999 3.5 31.192011 3.5 33.53125 C 3.5 35.858514 5.4151674 37.5 7.75 37.5 L 21.8125 37.5 C 26.796026 37.499998 28.65625 35.241909 28.65625 32 C 28.65625 31.096028 28.390204 13.197555 28.5 11.5 C 28.5 11.5 40.457862 11.5 41.1875 11.5 C 43.522335 11.5 45.5 9.7066039 45.5 7.375 C 45.500002 5.7165023 43.52233 3.5 41.1875 3.5 L 26.65625 3.5 z "
+       xlink:href="#rect3167"
+       style="opacity:0.5;fill:url(#linearGradient2203);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.99999964;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1316"
+       inkscape:href="#rect3167"
+       d="M 26.65625,4.53125 C 25.249537,4.53125 24.032886,4.9412683 23.125,5.90625 C 22.217114,6.8712317 21.5625,8.4647612 21.5625,11 C 21.5625,11.415298 21.581781,15.655374 21.59375,19.96875 C 21.605719,24.282126 21.621325,28.562355 21.5625,29.625 C 21.532315,30.188634 21.064428,30.628998 20.5,30.625 C 20.5,30.625 17.347604,30.609375 14.1875,30.59375 C 11.027396,30.578125 7.758935,30.5625 7.75,30.5625 C 5.9336242,30.562499 4.5625,31.79623 4.5625,33.5625 C 4.5625,35.313821 5.8995405,36.4375 7.75,36.4375 L 21.78125,36.4375 C 24.114194,36.4375 25.537737,35.928156 26.375,35.1875 C 27.212263,34.446844 27.59375,33.417796 27.59375,32 C 27.59375,31.65099 27.521563,26.864091 27.46875,22.0625 C 27.442343,19.661704 27.415771,17.24736 27.40625,15.3125 C 27.396729,13.37764 27.400585,12.008829 27.4375,11.4375 C 27.467685,10.873866 27.935572,10.433502 28.5,10.4375 C 28.5,10.4375 40.457735,10.4375 41.1875,10.4375 C 42.9733,10.4375 44.4375,9.0816356 44.4375,7.34375 C 44.4375,6.9328186 44.123387,6.1347887 43.5,5.53125 C 42.876613,4.9277113 42.021185,4.53125 41.1875,4.53125 L 26.65625,4.53125 z " />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/simple.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="simple.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/sip.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs4">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2227">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2229" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2231" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-1.017285,3.152773e-16,-5.511361e-9,-0.35721,21.6831,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2227"
+       id="linearGradient2233"
+       x1="25.0156"
+       y1="8.8961887"
+       x2="25.0156"
+       y2="21.733829"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="13.788817"
+     inkscape:cx="34.924917"
+     inkscape:cy="22.006439"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     fill="#eeeeec"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.4;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.376861,0,0,1.900703,-12.73565,10.62313)" />
+    <path
+       style="fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1"
+       d="M 2.4375,10.5 L 2.4375,22.5 L 13.75,22.5 L 13.75,26.5 L 2.4375,26.5 L 2.4375,30.5 L 17.5,30.5 L 17.5,18.5 L 6.21875,18.5 L 6.21875,14.5 L 17.5,14.5 L 17.5,10.5 L 2.4375,10.5 z M 21.46875,10.5 L 21.46875,30.5 L 25.5,30.5 L 25.5,10.5 L 21.46875,10.5 z M 29.5,10.5 L 29.5,30.5 L 33.5,30.5 L 33.5,22.5 L 45.5,22.5 L 45.5,10.5 L 29.5,10.5 z M 33.5,14.5 L 41.5,14.5 L 41.5,18.5625 L 33.5,18.5625 L 33.5,14.5 z "
+       id="rect2212" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0424688"
+       inkscape:original="M 2.4375 10.5 L 2.4375 22.5 L 13.75 22.5 L 13.75 26.5 L 2.4375 26.5 L 2.4375 30.5 L 17.5 30.5 L 17.5 18.5 L 6.21875 18.5 L 6.21875 14.5 L 17.5 14.5 L 17.5 10.5 L 2.4375 10.5 z M 21.46875 10.5 L 21.46875 30.5 L 25.5 30.5 L 25.5 10.5 L 21.46875 10.5 z M 29.5 10.5 L 29.5 30.5 L 33.5 30.5 L 33.5 22.5 L 45.5 22.5 L 45.5 10.5 L 29.5 10.5 z M 33.5 14.5 L 41.5 14.5 L 41.5 18.5625 L 33.5 18.5625 L 33.5 14.5 z "
+       xlink:href="#rect2212"
+       style="fill:url(#linearGradient2233);fill-opacity:1.0;stroke:#ffffff;stroke-width:1.00000095;stroke-miterlimit:4;stroke-opacity:1;opacity:0.35"
+       id="path1352"
+       inkscape:href="#rect2212"
+       d="M 3.46875,11.53125 L 3.46875,21.46875 L 13.75,21.46875 C 14.316987,21.474875 14.775125,21.933013 14.78125,22.5 L 14.78125,26.5 C 14.775125,27.066987 14.316987,27.525125 13.75,27.53125 L 3.46875,27.53125 L 3.46875,29.46875 L 16.46875,29.46875 L 16.46875,19.53125 L 6.21875,19.53125 C 5.6517628,19.525125 5.1936251,19.066987 5.1875,18.5 L 5.1875,14.5 C 5.1936251,13.933013 5.6517628,13.474875 6.21875,13.46875 L 16.46875,13.46875 L 16.46875,11.53125 L 3.46875,11.53125 z M 22.5,11.53125 L 22.5,29.46875 L 24.46875,29.46875 L 24.46875,11.53125 L 22.5,11.53125 z M 30.53125,11.53125 L 30.53125,29.46875 L 32.46875,29.46875 L 32.46875,22.5 C 32.474875,21.933013 32.933013,21.474875 33.5,21.46875 L 44.46875,21.46875 L 44.46875,11.53125 L 30.53125,11.53125 z M 33.3125,13.46875 C 33.374873,13.463118 33.437627,13.463118 33.5,13.46875 L 41.5,13.46875 C 42.066987,13.474875 42.525125,13.933013 42.53125,14.5 L 42.53125,18.5625 C 42.525125,19.129487 42.066987,19.587625 41.5,19.59375 L 33.5,19.59375 C 32.933013,19.587625 32.474875,19.129487 32.46875,18.5625 L 32.46875,14.5 C 32.464991,13.997926 32.819624,13.564486 33.3125,13.46875 z " />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/yahoo.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,174 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg1307"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="yahoo.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/yahoo.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs1309">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2211">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2213" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2215" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4123">
+      <stop
+         style="stop-color:#ff0000;stop-opacity:1;"
+         offset="0"
+         id="stop4125" />
+      <stop
+         style="stop-color:#ff0000;stop-opacity:0;"
+         offset="1"
+         id="stop4127" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4123"
+       id="linearGradient2206"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.871443,0,0,1.871443,1.990827,1.339082)"
+       x1="9.7634506"
+       y1="11.499014"
+       x2="9.7634506"
+       y2="0.12942761" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2211"
+       id="linearGradient2217"
+       x1="36.249207"
+       y1="7.6495404"
+       x2="36.249207"
+       y2="23.063982"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.098901"
+     inkscape:cx="49.54817"
+     inkscape:cy="29.700698"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     fill="#a40000"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata1312">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <rect
+       style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3203"
+       width="0"
+       height="2.5118096"
+       x="6"
+       y="6.4881902" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.163562,0,0,2.111892,-10.02562,12.91459)" />
+    <path
+       style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#a40000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 36.593752,13.5 L 36.750002,24.71875 L 44.125002,13.5 L 36.593752,13.5 z M 33.406252,30.34375 C 32.052922,30.519922 31.000003,31.724054 31.000002,33.15625 C 31.000002,34.70982 32.231505,35.96875 33.750002,35.96875 C 35.268499,35.96875 36.500002,34.70982 36.500002,33.15625 C 36.500002,31.60268 35.268499,30.343751 33.750002,30.34375 C 33.631369,30.34375 33.520941,30.32882 33.406252,30.34375 z "
+       id="path4110" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-1.0402364"
+       inkscape:original="M 36.59375 13.5 L 36.75 24.71875 L 44.125 13.5 L 36.59375 13.5 z M 33.40625 30.34375 C 32.052918 30.519922 31.000001 31.724054 31 33.15625 C 31 34.70982 32.231503 35.96875 33.75 35.96875 C 35.268495 35.96875 36.5 34.70982 36.5 33.15625 C 36.499998 31.60268 35.268497 30.343751 33.75 30.34375 C 33.631365 30.34375 33.520939 30.32882 33.40625 30.34375 z "
+       xlink:href="#path4110"
+       style="opacity:0.35;fill:url(#linearGradient2217);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2209"
+       inkscape:href="#path4110"
+       d="M 37.625,15.0625 L 37.71875,21.875 L 42.1875,15.0625 L 37.625,15.0625 z M 33.53125,31.90625 C 32.711111,32.013013 32.031251,32.765143 32.03125,33.6875 C 32.031249,34.691344 32.806451,35.46875 33.75,35.46875 C 34.693551,35.46875 35.46875,34.691346 35.46875,33.6875 C 35.468751,32.683656 34.69355,31.906251 33.75,31.90625 C 33.544091,31.90625 33.473148,31.913814 33.53125,31.90625 z " />
+    <path
+       style="opacity:1;fill:url(#linearGradient2206);fill-opacity:1;stroke:#a40000;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 2.6545432,11.532816 L 4.353345,15.445312 L 7.741467,15.555398 L 17.47685,25.310159 L 17.4318,31.506326 L 12.428056,31.384739 L 11.665952,34.499424 L 27.339128,34.54589 L 26.551973,31.519888 L 21.572919,31.603085 L 21.572919,25.191498 L 28.209096,17.523843 L 31.468823,17.433744 L 32.573193,13.532585 L 23.168883,13.473142 L 21.694773,17.410562 L 23.776066,17.4644 L 19.977012,20.889333 L 13.198929,15.445312 L 17.758833,15.445312 L 20.124034,11.577865 L 2.6545432,11.532816 z "
+       id="rect3219"
+       sodipodi:nodetypes="cccccccccccccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.98856229"
+       inkscape:original="M 2.65625 11.53125 L 4.34375 15.4375 L 7.75 15.5625 L 17.46875 25.3125 L 17.4375 31.5 L 12.4375 31.375 L 11.65625 34.5 L 27.34375 34.53125 L 26.5625 31.53125 L 21.5625 31.59375 L 21.5625 25.1875 L 28.21875 17.53125 L 31.46875 17.4375 L 32.5625 13.53125 L 23.15625 13.46875 L 21.6875 17.40625 L 23.78125 17.46875 L 19.96875 20.875 L 13.1875 15.4375 L 17.75 15.4375 L 20.125 11.5625 L 2.65625 11.53125 z "
+       xlink:href="#rect3219"
+       style="opacity:0.35;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path2204"
+       inkscape:href="#rect3219"
+       d="M 4.15625,13.0625 L 5,15 L 7.78125,15.09375 C 8.0317447,15.110809 8.266366,15.222533 8.4375,15.40625 L 18.15625,25.15625 C 18.347286,25.335037 18.45966,25.58226 18.46875,25.84375 L 18.4375,32.03125 C 18.44087,32.30297 18.33225,32.564099 18.137167,32.75327 C 17.942084,32.942442 17.677738,33.042977 17.40625,33.03125 L 13.21875,32.9375 L 12.9375,34.03125 L 26.0625,34.0625 L 25.78125,33.0625 L 21.5625,33.125 C 21.296354,33.12807 21.040212,33.0237 20.852006,32.835494 C 20.6638,32.647288 20.55943,32.391146 20.5625,32.125 L 20.5625,25.71875 C 20.562717,25.476777 20.651667,25.243286 20.8125,25.0625 L 27.46875,17.40625 C 27.649517,17.19593 27.910308,17.071204 28.1875,17.0625 L 30.71875,17 L 31.28125,15.0625 L 23.84375,15 L 23.125,16.96875 L 23.8125,17 C 24.228223,17.002399 24.598033,17.264612 24.737859,17.656122 C 24.877684,18.047632 24.757648,18.48479 24.4375,18.75 L 20.625,22.15625 C 20.263408,22.479557 19.720674,22.492795 19.34375,22.1875 L 12.5625,16.75 C 12.215365,16.491727 12.076498,16.037735 12.219751,15.629463 C 12.363005,15.221191 12.755094,14.953499 13.1875,14.96875 L 17.1875,14.96875 L 18.34375,13.09375 L 4.15625,13.0625 z " />
+  </g>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pidgin/pixmaps/protocols/scalable/zephyr.svg	Sun Jul 26 22:18:59 2009 +0900
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   id="svg1307"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   version="1.0"
+   sodipodi:docbase="/home/hbons/Desktop/Gaim Refresh/protocols/48"
+   sodipodi:docname="zephyr.svg"
+   inkscape:export-filename="/home/hbons/Desktop/Gaim Refresh/protocols/48/zephyr.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <defs
+     id="defs1309">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2236">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2238" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2240" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3150">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop3152" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop3154" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3150"
+       id="radialGradient3156"
+       cx="10.748654"
+       cy="10.457643"
+       fx="10.748654"
+       fy="10.457643"
+       r="6.6449099"
+       gradientTransform="matrix(-0.842757,5.698892e-16,-4.565819e-9,-0.35721,19.80716,14.19321)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2236"
+       id="radialGradient2244"
+       cx="25"
+       cy="15.052035"
+       fx="25"
+       fy="15.052035"
+       r="13.03125"
+       gradientTransform="matrix(1.918832,-3.053611e-32,3.873765e-32,2.434201,-22.9708,-29.40113)"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="12.749289"
+     inkscape:cx="42.013094"
+     inkscape:cy="29.955991"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     fill="#3465a4"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:window-width="1268"
+     inkscape:window-height="971"
+     inkscape:window-x="6"
+     inkscape:window-y="21" />
+  <metadata
+     id="metadata1312">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <rect
+       style="opacity:0;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect3203"
+       width="0"
+       height="5.2291808"
+       x="12.491029"
+       y="11.343686" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:0.6;fill:url(#radialGradient3156);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path3140"
+       sodipodi:cx="10.748654"
+       sodipodi:cy="10.457643"
+       sodipodi:rx="6.6449099"
+       sodipodi:ry="2.3675451"
+       d="M 17.393564 10.457643 A 6.6449099 2.3675451 0 1 1  4.1037445,10.457643 A 6.6449099 2.3675451 0 1 1  17.393564 10.457643 z"
+       transform="matrix(3.23556,0,0,2.111892,-10.27791,16.9144)" />
+    <path
+       style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 11.5,6.4993337 L 11.5,14.499492 L 32.553687,14.499492 L 32.553687,18.499569 L 38.479829,18.499569 L 38.479829,7.5185793 L 38.479829,6.4993337 L 11.5,6.4993337 z M 19.552827,20.546173 L 19.552827,26.499725 L 30.471849,26.499725 L 30.471849,20.546173 L 19.552827,20.546173 z M 11.5,28.499765 L 11.5,40.5 L 38.485458,40.5 L 38.485458,32.499843 L 17.510207,32.499843 L 17.510207,28.499765 L 11.5,28.499765 z "
+       id="rect4229"
+       sodipodi:nodetypes="cccccccccccccccccccc" />
+    <path
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="-0.9828251"
+       inkscape:original="M 11.5 6.5 L 11.5 14.5 L 32.5625 14.5 L 32.5625 18.5 L 38.46875 18.5 L 38.46875 7.53125 L 38.46875 6.5 L 11.5 6.5 z M 19.5625 20.53125 L 19.5625 26.5 L 30.46875 26.5 L 30.46875 20.53125 L 19.5625 20.53125 z M 11.5 28.5 L 11.5 40.5 L 38.5 40.5 L 38.5 32.5 L 17.5 32.5 L 17.5 28.5 L 11.5 28.5 z "
+       xlink:href="#rect4229"
+       style="opacity:0.3;fill:url(#radialGradient2244);fill-opacity:1;stroke:#ffffff;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path4266"
+       inkscape:href="#rect4229"
+       d="M 12.46875,4.46875 L 12.46875,10.53125 L 32.5625,10.53125 C 33.09434,10.538865 33.523635,10.96816 33.53125,11.5 L 33.53125,14.53125 L 37.5,14.53125 L 37.5,4.53125 L 37.5,4.46875 L 12.46875,4.46875 z M 20.53125,18.5 L 20.53125,22.53125 L 29.5,22.53125 L 29.5,18.5 L 20.53125,18.5 z M 12.46875,26.46875 L 12.46875,36.53125 L 37.53125,36.53125 L 37.53125,30.46875 L 17.5,30.46875 C 16.96816,30.461135 16.538865,30.03184 16.53125,29.5 L 16.53125,26.46875 L 12.46875,26.46875 z " />
+  </g>
+</svg>
--- a/po/ChangeLog	Sat Jul 25 05:14:27 2009 +0000
+++ b/po/ChangeLog	Sun Jul 26 22:18:59 2009 +0900
@@ -2,19 +2,23 @@
 
 version 2.6.0
 	* Armenian translation added (David Avsharyan)
+	* Bengali translation updated (Samia Niamatullah)
 	* Catalan translation updated (Josep Puigdemont)
+	* Chinese (Simplified) translation updated under new translator (Aron Xu)
+	* Czech translation updated (David Vachulka)
+	* Dutch translation updated (Daniël Heres)
 	* Finnish translation updated (Timo Jyrinki)
 	* French translation updated (Éric Boumaour)
 	* Galician translation updated (Frco. Javier Rial Rodríguez)
 	* German translation updated (Jochen Kemnade and Björn Voigt)
 	* Greek translation updated (Bouklis Panos)
+	* Khmer translation added (Khoem Sokhem)
 	* Lao translation updated (Anousak Souphavah)
 	* Norwegian Nynorsk translation updated (Yngve Spjeld Landro)
 	* Portuguese (Brazilian) translation updated (Rodrigo Luiz
 	  Marques Flores)
 	* Punjabi translation updated (Amanpreet Singh Alam)
 	* Russian translation updated (Антон Самохвалов)
-	* Simplified Chinese translation updated under new translator (Aron Xu)
 	* Slovenian translation updated (Martin Srebotnjak)
 	* Swahili translation added (Paul Msegeya)
 	* Swedish translation updated (Peter Hjalmarsson)
--- a/po/bn.po	Sat Jul 25 05:14:27 2009 +0000
+++ b/po/bn.po	Sun Jul 26 22:18:59 2009 +0900
@@ -4,31 +4,37 @@
 # Samia Nimatullah <mailsamia2001@yahoo.com>, 2005.
 # Tisa Nafisa <tisa_nafisa@yahoo.com>, 2007.
 # Jamil Ahmed <jamil@bengalinux.org>, 2007.
-# Israt Jahan <israt@ankur.org.bd>, 2008.
+# Israt Jahan <israt@ankur.org.bd>, 2008-2009.
+# Samia Niamatullah <samia@ankur.org.bd>, 2009.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: Pidgin 2.5.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-06 15:04-0700\n"
-"PO-Revision-Date: 2008-11-13 17:07+0600\n"
-"Last-Translator: Israt Jahan <israt@ankur.org.bd>\n"
-"Language-Team: Bengali <core@bengalinux.org>\n"
+"POT-Creation-Date: 2009-07-22 14:13-0700\n"
+"PO-Revision-Date: 2009-07-21 18:20+0700\n"
+"Last-Translator: Samia <samia@ankur.org.bd>\n"
+"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Poedit-Language: Bengali\n"
+"X-Poedit-Country: BANGLADESH\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,213,212,-1\n"
 
 #. Translators may want to transliterate the name.
 #. It is not to be translated.
 msgid "Finch"
-msgstr "Finch"
+msgstr "Finch "
 
 #, c-format
 msgid "%s. Try `%s -h' for more information.\n"
-msgstr "%s। আরও তথ্য জানাতে `%s -h' দ্বারা চেষ্টা করুন।\n"
-
-#, fuzzy, c-format
+msgstr "%s। আরও তথ্য জানতে `%s -h' দিয়ে চেষ্টা করুন।\n"
+
+# Not sure if [OPTION] is a variable or not
+#, c-format
 msgid ""
 "%s\n"
 "Usage: %s [OPTION]...\n"
@@ -40,13 +46,13 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s\n"
-"ব্যবহার: %s [অপশন]...\n"
-"\n"
-"  -c, --config=DIR    পছন্দসই ফাইলের জন্য DIR ব্যবহার করুন\n"
-"  -d, --debug         stdout এ ডিবাগিং বার্তা মুদ্রণ করুন\n"
-"  -h, --help          এই সহায়িকা প্রদর্শন করুন এবং ত্যাগ করুন\n"
-"  -n, --nologin       স্বয়ংক্রিয়ভাবে লগইন করবেন না\n"
-"  -v, --version       বর্তমান সংস্করণ প্রদর্শন করুন এবং ত্যাগ করুন\n"
+"ব্যবহার: %s [OPTION]...\n"
+"\n"
+"  -c, --config=DIR    কনফিগারেশন ফাইলের জন্য DIR ব্যবহার করুন\n"
+"  -d, --debug         stderr এ ডিবাগিং বার্তা প্রিন্ট করুন\n"
+"  -h, --help          এই সহায়িকা প্রদর্শন করে প্রস্থান করুন\n"
+"  -n, --nologin       স্বয়ংক্রিয়ভাবে লগইন করা হবে না\n"
+"  -v, --version       বর্তমান সংস্করণ প্রদর্শন করে প্রস্থান করুন\n"
 
 # tithi
 #, c-format
@@ -55,55 +61,54 @@
 "investigate and complete the migration by hand. Please report this error at "
 "http://developer.pidgin.im"
 msgstr ""
-"%2s থেকে %3s এ আপনার বিন্যাসনসমূহ পরিবর্তন করতে %1s ত্রুটির সম্মুখীন হয়েছে। অনুগ্রহ "
-"করে তদন্ত করুন এবং নিজের হাতে পরিবর্তন শেষ করুন। অনুগ্রহ করে http://developer."
-"pidgin.im এ এই ত্রুটিটির প্রতিবেদন পাঠান"
+"আপনার সেটিং %2$s থেকে %3$s তে স্থানান্তর করতে %1$s ত্রুটির সম্মুখীন হয়েছে। অনুগ্রহ "
+"করে তদন্ত করুন এবং নিজ হাতে স্থানান্তর শেষ করুন। অনুগ্রহ করে এই ত্রুটিটির রিপোর্ট "
+"http://developer.pidgin.im এ পাঠান।"
 
 msgid "Error"
 msgstr "ত্রুটি"
 
 msgid "Account was not added"
-msgstr "একাউন্ট যুক্ত করা হয়নি"
+msgstr "একাউন্ট যোগ করা যায়নি"
 
 # তিথি
 msgid "Username of an account must be non-empty."
 msgstr "একটি একাউন্টের ব্যবহারকারীর নাম ফাঁকা থাকতে পারবে না।"
 
 msgid "New mail notifications"
-msgstr "নতুন মেইলের প্রজ্ঞাপণ"
+msgstr "নতুন মেইলের ঘোষণা"
 
 msgid "Remember password"
-msgstr "গুপ্তসংকেত স্মরণ রাখুন"
+msgstr "পাসওয়ার্ড মনে রাখা হবে"
 
 # তিথি
 msgid "There are no protocol plugins installed."
-msgstr "এখানে কোনো প্রটোকল প্লাগইন সংস্থাপিত করা নেই।"
-
-# তিথি
+msgstr "এখানে কোনো প্রোটোকল প্লাগইন ইনস্টল করা নেই।"
+
 msgid "(You probably forgot to 'make install'.)"
-msgstr "(আপনি সম্ভবত 'সংস্থাপন করতে' ভুলে গেছেন।)"
+msgstr "(আপনি সম্ভবত 'make install' করতে ভুলে গেছেন।)"
 
 msgid "Modify Account"
-msgstr "একাউন্ট পরিবর্তন করুন"
+msgstr "একাউন্ট পরিবর্তন"
 
 msgid "New Account"
 msgstr "নতুন একাউন্ট"
 
 msgid "Protocol:"
-msgstr "প্রটোকল:"
+msgstr "প্রোটোকল:"
 
 msgid "Username:"
 msgstr "ব্যবহারকারীর নাম:"
 
 msgid "Password:"
-msgstr "গুপ্তসংকেত:"
+msgstr "পাসওয়ার্ড:"
 
 msgid "Alias:"
 msgstr "উপনাম:"
 
 #. Register checkbox
 msgid "Create this account on the server"
-msgstr "সার্ভারে এই একাউন্টটি তৈরী করুন।"
+msgstr "সার্ভারে এই একাউন্টটি তৈরী করা হবে।"
 
 #. Cancel button
 #. Cancel
@@ -117,24 +122,24 @@
 
 #, c-format
 msgid "Are you sure you want to delete %s?"
-msgstr "আপনি কি নিশ্চিত আপনি %s মুছে ফেলতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে %s মুছে ফেলতে চান?"
 
 msgid "Delete Account"
 msgstr "একাউন্ট মুছে ফেলুন"
 
 #. Delete button
 msgid "Delete"
-msgstr "মুছুন"
+msgstr "অপসারণ"
 
 msgid "Accounts"
 msgstr "একাউন্টসমূহ"
 
 msgid "You can enable/disable accounts from the following list."
-msgstr "আপনি নিম্নোক্ত তালিকা হতে একাউন্টসমূহকে সক্রিয়/নিষ্ক্রিয় করতে পারেন।"
+msgstr "আপনি নিম্নোক্ত তালিকা থেকে যেকোন একাউন্ট সক্রিয়/নিষ্ক্রিয় করতে পারেন।"
 
 #. Add button
 msgid "Add"
-msgstr "যুক্ত"
+msgstr "যোগ"
 
 #. Modify button
 msgid "Modify"
@@ -142,24 +147,24 @@
 
 #, c-format
 msgid "%s%s%s%s has made %s his or her buddy%s%s"
-msgstr "%1s%2s%3s%4s, %5s-কে তার বন্ধু করেছেন%6s%7s"
+msgstr "%1$s%2$s%3$s%4$s, %5$s কে তার বন্ধু করেছেন%6$s%7$s"
 
 msgid "Add buddy to your list?"
-msgstr "আপনার তালিকায় বন্ধু যোগ করতে চান কি?"
+msgstr "আপনার তালিকায় বন্ধু যোগ করতে চান?"
 
 #, c-format
 msgid "%s%s%s%s wants to add %s to his or her buddy list%s%s"
-msgstr "%1s%2s%3s%4s তার বন্ধু তালিকা %s6%7s তে %5s কে যুক্ত করতে চায়"
+msgstr "%1$s%2$s%3$s%4$s তার বন্ধু তালিকা তে %5$s কে যোগ করতে চায় %6$s%7$s"
 
 msgid "Authorize buddy?"
-msgstr "বন্ধুকে কি প্রাধিকার দিতে চান?"
+msgstr "বন্ধুকে অনুমোদন দিতে চান?"
 
 # তিথি
 msgid "Authorize"
-msgstr "অনুমোদিত"
+msgstr "অনুমোদন"
 
 msgid "Deny"
-msgstr "প্রত্যাখ্যান করুন"
+msgstr "প্রত্যাখ্যান"
 
 #, c-format
 msgid ""
@@ -171,7 +176,7 @@
 
 #, c-format
 msgid "Account: %s (%s)"
-msgstr "একাউন্ট: %1s (%2s)"
+msgstr "একাউন্ট: %1$s (%2$s)"
 
 #, c-format
 msgid ""
@@ -182,14 +187,14 @@
 "শেষ দেখা: %s আগে"
 
 msgid "Default"
-msgstr "পূর্বনির্ধারিত"
+msgstr "ডিফল্ট"
 
 msgid "You must provide a username for the buddy."
 msgstr "আপনাকে অবশ্যই  বন্ধুর জন্য একটি নাম দিতে হবে।"
 
 # tithi
 msgid "You must provide a group."
-msgstr "আপনাকে অবশ্যই একটি গ্রুপ প্রদান করতে হবে।"
+msgstr "আপনাকে অবশ্যই একটি দল উল্লেখ করতে হবে।"
 
 msgid "You must select an account."
 msgstr "আপনাকে অবশ্যই একটি একাউন্ট নির্বাচন করতে হবে।"
@@ -199,7 +204,7 @@
 msgstr "নির্বাচিত একাউন্টটি অনলাইনে নেই।"
 
 msgid "Error adding buddy"
-msgstr "বন্ধুকে যুক্ত করতে ত্রুটি"
+msgstr "বন্ধু যোগ করতে ত্রুটি"
 
 msgid "Username"
 msgstr "ব্যবহারকারীর নাম"
@@ -208,16 +213,16 @@
 msgstr "উপনাম (ঐচ্ছিক)"
 
 msgid "Add in group"
-msgstr "গ্রুপে যোগ দিন"
+msgstr "দলে যোগ"
 
 msgid "Account"
 msgstr "একাউন্ট"
 
 msgid "Add Buddy"
-msgstr "বন্ধু যোগ করুন"
+msgstr "বন্ধু যোগ"
 
 msgid "Please enter buddy information."
-msgstr "অনুগ্রহ করে বন্ধুর তথ্য প্রবেশ করান।"
+msgstr "অনুগ্রহ করে বন্ধুর তথ্য দিন।"
 
 msgid "Chats"
 msgstr "আড্ডা"
@@ -230,108 +235,110 @@
 msgstr "উপনাম"
 
 msgid "Group"
-msgstr "গ্রুপ"
+msgstr "দল"
 
 msgid "Auto-join"
-msgstr "স্বয়ং-যোগদান"
+msgstr "স্বয়ংক্রিয় যোগদান"
 
 msgid "Add Chat"
-msgstr "আড্ডায় যোগ দিন"
+msgstr "আড্ডা যোগ"
 
 # tihi
 msgid "You can edit more information from the context menu later."
-msgstr "আপনি পরবর্তীতে প্রসঙ্গ তালিকা হতে আরও তথ্য সম্পাদনা করতে পারেন।"
+msgstr "আপনি পরবর্তীতে প্রাসঙ্গিক-মেনু থেকে আরও তথ্য সম্পাদনা করতে পারেন।"
 
 msgid "Error adding group"
-msgstr "গ্রুপ যুক্ত করতে ত্রুটি"
+msgstr "দল যোগ করতে ত্রুটি"
 
 msgid "You must give a name for the group to add."
-msgstr "আপনাকে অবশ্যই  গ্রুপটি যোগ করার জন্য একটি নাম দিতে হবে।"
+msgstr "আপনাকে অবশ্যই  দলটি যোগ করার জন্য একটি নাম দিতে হবে।"
 
 msgid "Add Group"
-msgstr "গ্রুপ যুক্ত করুন"
+msgstr "দল যোগ"
 
 msgid "Enter the name of the group"
-msgstr "গ্রুপের নাম প্রবেশ করান"
+msgstr "দলের নাম দিন"
 
 msgid "Edit Chat"
-msgstr "আড্ডা সম্পাদনা করা"
+msgstr "আড্ডা সম্পাদনা"
 
 # tihi
 msgid "Please Update the necessary fields."
 msgstr "অনুগ্রহ করে প্রয়োজনীয় ক্ষেত্রগুলো হালনাগাদ করুন।"
 
 msgid "Edit"
-msgstr "সম্পাদন"
+msgstr "সম্পাদনা"
 
 msgid "Edit Settings"
-msgstr "বিন্যাসনসমূহ সম্পাদন করুন"
+msgstr "সেটিং সম্পাদনা"
 
 msgid "Information"
 msgstr "তথ্য"
 
 msgid "Retrieving..."
-msgstr "উদ্ধার করছে..."
+msgstr "খুঁজে আনা হচ্ছে..."
 
 msgid "Get Info"
-msgstr "তথ্য গ্রহণ করুন"
+msgstr "তথ্য সংগ্রহ"
 
 msgid "Add Buddy Pounce"
-msgstr "বন্ধু পাউন্স যুক্ত করুন"
+msgstr "বন্ধু পাউন্স যোগ"
 
 msgid "Send File"
-msgstr "ফাইল পাঠান"
-
+msgstr "ফাইল প্রেরণ"
+
+# Samia: Complete
 msgid "Blocked"
-msgstr "আবদ্ধ"
+msgstr "ব্লক করা"
 
 msgid "Show when offline"
-msgstr "অফলাইনে থাকলে প্রদর্শন করুন"
+msgstr "অফলাইন হলে প্রদর্শন করা হবে"
 
 #, c-format
 msgid "Please enter the new name for %s"
-msgstr "অনুগ্রহ করে %s এর জন্য নতুন নাম প্রবেশ করান"
+msgstr "অনুগ্রহ করে %s এর জন্য নতুন নাম দিন"
 
 msgid "Rename"
-msgstr "পুনঃ নামকরণ করুন"
+msgstr "নামান্তর"
 
 msgid "Set Alias"
-msgstr "উপনাম নির্ধারন করুন"
+msgstr "উপনাম নির্ধারণ"
 
 # tithi
 msgid "Enter empty string to reset the name."
-msgstr "নামটি পুনঃনির্ধারণ করতে খালি স্ট্রিং প্রবেশ করান।"
-
-# tithi
+msgstr "নামটি পুনঃনির্ধারণ করতে ফাঁকা স্ট্রিং দিন।"
+
+# ***
 msgid "Removing this contact will also remove all the buddies in the contact"
-msgstr "এই যোগাযোগটি অপসারণ করার কারণে যোগাযোগের সকল বন্ধুও অপসারিত হবে।"
+msgstr "এই পরিচিতি অপসারণ করার কারণে পরিচিতির সব বন্ধুও অপসারিত হবে।"
 
 # tihi
 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?"
-msgstr "আপনি কি নিশ্চিত আপনি %s অপসারণ করতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে %s অপসারণ করতে চান?"
 
 #. XXX: anything to do with the returned ui-handle?
 msgid "Confirm Remove"
-msgstr "অপসারণ নিশ্চিত করুন"
+msgstr "অপসারণ নিশ্চিতকরণ "
 
 msgid "Remove"
 msgstr "অপসারণ"
 
 #. Buddy List
 msgid "Buddy List"
-msgstr "Buddy List"
+msgstr "বন্ধু তালিকা"
 
 msgid "Place tagged"
-msgstr "স্থান চিহ্নিত করা হয়েছে"
-
-# tithi
+msgstr "স্থান ট্যাগ করা হয়েছে"
+
+# ***
 msgid "Toggle Tag"
-msgstr "টোগল ট্যাগ"
-
+msgstr "ট্যাগ টগল করুন"
+
+# ***
 msgid "View Log"
 msgstr "লগ প্রদর্শন"
 
@@ -342,7 +349,7 @@
 #. Never know what those translations might end up like...
 #. Idle stuff
 msgid "Idle"
-msgstr "অলস"
+msgstr "নিষ্ক্রিয়"
 
 msgid "On Mobile"
 msgstr "মোবাইলে"
@@ -357,20 +364,20 @@
 msgstr "প্লাগইন"
 
 msgid "Block/Unblock"
-msgstr "ব্লক/ব্লক সরান"
+msgstr "ব্লক/আনব্লক"
 
 msgid "Block"
 msgstr "ব্লক"
 
 msgid "Unblock"
-msgstr "ব্লক সরান"
+msgstr "আনব্লক"
 
 msgid ""
 "Please enter the username or alias of the person you would like to Block/"
 "Unblock."
 msgstr ""
-"অনুগ্রহ করে আপনি যে ব্যাক্তিকে ব্লক/ব্লকমুক্ত করতে চান তার ব্যবহারকারী-নাম বা ডাকনাম "
-"প্রবেশ করান।"
+"অনুগ্রহ করে আপনি যে ব্যাক্তিকে ব্লক/আনব্লক করতে চান তার ব্যবহারকারী নাম বা উপনাম "
+"দিন।"
 
 #. Not multiline
 #. Not masked?
@@ -379,21 +386,21 @@
 msgstr "ঠিক আছে"
 
 msgid "New Instant Message"
-msgstr "নতুন তাৎক্ষণিক বার্তা"
+msgstr "নতুন বার্তা"
 
 msgid "Please enter the username or alias of the person you would like to IM."
 msgstr ""
-"অনুগ্রহ করে আপনি যে ব্যাক্তিকে তাৎক্ষণিক বার্তা পাঠাতে চান তার ব্যবহারকারী-নাম বা "
-"ডাকনাম প্রবেশ করান।"
+"অনুগ্রহ করে আপনি যে ব্যাক্তিকে তাৎক্ষণিক বার্তা পাঠাতে চান তার ব্যবহারকারী নাম বা "
+"উপনাম দিন।"
 
 msgid "Channel"
 msgstr "চ্যানেল"
 
 msgid "Join a Chat"
-msgstr "আড্ডায় যোগ দিন"
+msgstr "আড্ডায় যোগদান"
 
 msgid "Please enter the name of the chat you want to join."
-msgstr "অনুগ্রহ করে আপনি যে আড্ডায় যোগ দিতে চান তার নাম প্রবেশ করান।"
+msgstr "অনুগ্রহ করে আপনি যে আড্ডায় যোগ দিতে চান তার নাম দিন।"
 
 msgid "Join"
 msgstr "যোগ দিন"
@@ -402,40 +409,39 @@
 "Please enter the username or alias of the person whose log you would like to "
 "view."
 msgstr ""
-"অনুগ্রহ করে আপনি যে ব্যাক্তির লগ দেখতে চান তার ব্যবহারকারী-নাম বা ডাকনাম প্রবেশ "
-"করান।"
+"অনুগ্রহ করে আপনি যে ব্যাক্তির কথোপকথন দেখতে চান তার ব্যবহারকারী নাম বা উপনাম দিন।"
 
 #. Create the "Options" frame.
 msgid "Options"
-msgstr "পছন্দসমূহ"
+msgstr "অপশন"
 
 msgid "Send IM..."
-msgstr "তাৎক্ষনিক বার্তা প্রেরণ..."
+msgstr "IM প্রেরণ..."
 
 msgid "Block/Unblock..."
-msgstr "ব্লক করুন/ব্লক সরান..."
+msgstr "ব্লক/আনব্লক"
 
 msgid "Join Chat..."
-msgstr "আড্ডায় যোগ দিন..."
+msgstr "আড্ডায় যোগ..."
 
 msgid "View Log..."
 msgstr "লগ প্রদর্শন..."
 
 msgid "View All Logs"
-msgstr "সব লগ প্রদর্শন করুন"
+msgstr "লগ প্রদর্শন"
 
 # tithi
 msgid "Show"
-msgstr "প্রদর্শন করুন"
+msgstr "প্রদর্শন"
 
 msgid "Empty groups"
-msgstr "ফাঁকা গ্রুপগুলো"
+msgstr "ফাঁকা দল"
 
 msgid "Offline buddies"
-msgstr "অফলাইন বন্ধুরা"
+msgstr "অফলাইন বন্ধু"
 
 msgid "Sort"
-msgstr "সাজান"
+msgstr "সাজানো"
 
 msgid "By Status"
 msgstr "অবস্থা অনুসারে"
@@ -444,7 +450,7 @@
 msgstr "বর্ণানুক্রমিকভাবে"
 
 msgid "By Log Size"
-msgstr "লগের আকার অনুসারে"
+msgstr "লগের পরিমাণ অনুসারে"
 
 msgid "Buddy"
 msgstr "বন্ধু"
@@ -456,7 +462,7 @@
 msgstr "দলগতকরণ"
 
 msgid "Certificate Import"
-msgstr "প্রত্যয়নপত্র আমদানি করুন"
+msgstr "সার্টিফিকেট ইমপোর্ট"
 
 # তিথি
 msgid "Specify a hostname"
@@ -464,52 +470,53 @@
 
 # tithi
 msgid "Type the host name this certificate is for."
-msgstr "এই প্রত্যয়ণপত্রের হোস্ট নাম টাইপ করুন।"
-
-# tithi
+msgstr "এই সার্টিফিকেটের হোস্ট নাম টাইপ করুন।"
+
+# mark2
 #, c-format
 msgid ""
 "File %s could not be imported.\n"
 "Make sure that the file is readable and in PEM format.\n"
 msgstr ""
-"%s ফাইল আমদানি করা সম্ভব নয়।\n"
+"%s ফাইল ইমপোর্ট করা সম্ভব হয়নি।\n"
 "নিশ্চিত করুন যে ফাইলটি পঠনযোগ্য এবং PEM বিন্যাসের।\n"
 
 # tithi
 msgid "Certificate Import Error"
-msgstr "প্রত্যয়ণপত্র আমদানি করার ত্রুটি"
+msgstr "সার্টিফিকেট ইমপোর্ট করায় ত্রুটি"
 
 # tithi
 msgid "X.509 certificate import failed"
-msgstr "X.৫০৯ প্রত্যয়ণপত্র আমদানি করতে ব্যর্থ"
+msgstr "X.509 সার্টিফিকেট ইমপোর্ট করতে ব্যর্থ"
 
 msgid "Select a PEM certificate"
-msgstr "একটি PEM প্রত্যয়ণপত্র নির্বাচন করুন"
-
-# tithi
+msgstr "একটি PEM সার্টিফিকেট নির্বাচন করুন"
+
+# tithi
+# ***
 #, c-format
 msgid ""
 "Export to file %s failed.\n"
 "Check that you have write permission to the target path\n"
 msgstr ""
-"%s ফাইলে রপ্তানি করতে ব্যর্থ।\n"
-"পরীক্ষা করুন যে আপনার উদ্দিষ্ট পথে লিখন অনুমতি আছে\n"
+"%s ফাইলে এক্সপোর্ট করতে ব্যর্থ।\n"
+"পরীক্ষা করুন আপনার টার্গেট পাথে লেখার অনুমতি আছে কি না\n"
 
 # tithi
 msgid "Certificate Export Error"
-msgstr "প্রত্যয়ণপত্র রপ্তানি করার ত্রুটি"
+msgstr "সার্টিফিকেট এক্সপোর্ট করায় ত্রুটি"
 
 # tithi
 msgid "X.509 certificate export failed"
-msgstr "X.৫০৯ প্রত্যয়ণপত্র রপ্তানি করতে ব্যর্থ"
+msgstr "X.509 সার্টিফিকেট এক্সপোর্ট করতে ব্যর্থ"
 
 # tithi
 msgid "PEM X.509 Certificate Export"
-msgstr "PEM X.৫০৯ প্রত্যয়ণপত্র রপ্তানি করুন"
+msgstr "PEM X.509 সার্টিফিকেট এক্সপোর্ট"
 
 #, c-format
 msgid "Certificate for %s"
-msgstr "%s-এর প্রত্যয়ণপত্র"
+msgstr "%s-এর সার্টিফিকেট"
 
 # tithi
 #, c-format
@@ -521,25 +528,25 @@
 msgstr ""
 "সাধারণ নাম: %s\n"
 "\n"
-"SHA1 হস্তাঙ্গুলির-ছাপ:\n"
+"SHA1 ফিঙ্গারপ্রিন্ট:\n"
 "%s"
 
 # tithi
 msgid "SSL Host Certificate"
-msgstr "SSL হোস্ট প্রত্যয়ণপত্র"
+msgstr "SSL হোস্ট সার্টিফিকেট"
 
 # tithi
 #, c-format
 msgid "Really delete certificate for %s?"
-msgstr "%s এর জন্য প্রত্যায়নপত্র কি সত্যিই মুছে ফেলতে চান?"
+msgstr "%s এর জন্য সার্টিফিকেট কি সত্যিই মুছে ফেলতে চান?"
 
 # tithi
 msgid "Confirm certificate delete"
-msgstr "প্রত্যায়নপত্র মুছে ফেলা নিশ্চিত করুন"
+msgstr "সার্টিফিকেট মুছে ফেলা নিশ্চিত করুন"
 
 # tithi
 msgid "Certificate Manager"
-msgstr "প্রত্যায়নপত্র ব্যবস্থাপক"
+msgstr "সার্টিফিকেট ব্যবস্থাপক"
 
 #. Creating the user splits
 msgid "Hostname"
@@ -554,7 +561,7 @@
 
 #, c-format
 msgid "%s (%s)"
-msgstr "%1s (%2s)"
+msgstr "%1$s (%2$s)"
 
 #, c-format
 msgid "%s disconnected."
@@ -570,10 +577,10 @@
 "%s\n"
 "\n"
 "যতক্ষন পর্যন্ত না আপনি অ্যাকাউন্টটি ত্রুটিমুক্ত এবং পুনরায় সক্রিয় না করছেন ততক্ষন পর্যন্ত "
-"ফিঞ্চ পুনঃ সংযোগ করার চেষ্টা করবে না।"
+"Finch পুনরায় সংযোগ করার চেষ্টা করবে না।"
 
 msgid "Re-enable Account"
-msgstr "একাউন্ট পুনঃ সক্রিয় করুন"
+msgstr "একাউন্ট পুনরায় সক্রিয়করণ "
 
 # tithi
 msgid ""
@@ -581,36 +588,38 @@
 "automatically rejoined in the chat when the account reconnects."
 msgstr ""
 "এই একাউন্টটি বিচ্ছিন্ন হয়েছে এবং আপনি আর আড্ডায় নেই। একাউন্টটি পুনরায় সংযোজিত হলে "
-"আপনি স্বয়ংক্রিয় ভাবে পুনরায় আড্ডায় যুক্ত হবেন।"
-
+"আপনি স্বয়ংক্রিয় ভাবে আড্ডায় যুক্ত হবেন।"
+
+# ***
 msgid "No such command."
-msgstr "এমন কোনো নির্দেশ নেই।"
+msgstr "এমন কোনো কমান্ড নেই।"
 
 msgid "Syntax Error:  You typed the wrong number of arguments to that command."
-msgstr "বাক্যরীতি ত্রুটি:  আপনি ঐ নির্দেশে ভূল সংখ্যক যুক্তি টাইপ করেছেন।"
-
+msgstr "সিনট্যাক্স ত্রুটি:  আপনি ঐ কমান্ডে ভুল সংখ্যক আর্গুমেন্ট টাইপ করেছেন।"
+
+# ***
 msgid "Your command failed for an unknown reason."
-msgstr "একটি অজানা কারণে আপনার নির্দেশ ব্যর্থ হয়েছে।"
+msgstr "একটি অজানা কারণে আপনার কমান্ড ব্যর্থ হয়েছে।"
 
 msgid "That command only works in chats, not IMs."
-msgstr "ঐ নির্দেশ শুধুমাত্র আড্ডাতেই প্রযোজ্য, তাৎক্ষণিক বার্তায় নয়।"
+msgstr "ঐ কমান্ড শুধুমাত্র আড্ডাতেই প্রযোজ্য, তাৎক্ষণিক বার্তায় নয়।"
 
 msgid "That command only works in IMs, not chats."
-msgstr "ঐ নির্দেশটি শুধুমাত্র তাৎক্ষণিক বার্তাতেই প্রযোজ্য, আড্ডার ক্ষেত্রে নয়।"
+msgstr "ঐ কমান্ডটি শুধুমাত্র তাৎক্ষণিক বার্তাতেই প্রযোজ্য, আড্ডার ক্ষেত্রে নয়।"
 
 msgid "That command doesn't work on this protocol."
-msgstr "ঐ নির্দেশটি এই প্রোটোকলে কাজ করে না।"
+msgstr "ঐ কমান্ডটি এই প্রোটোকলে কাজ করে না।"
 
 msgid "Message was not sent, because you are not signed on."
-msgstr "বার্তা পাঠানো হয়নি, কারণ আপনি স্বাক্ষরিত নন।"
+msgstr "বার্তা পাঠানো যায়নি, কারণ আপনি লগইন নন।"
 
 #, c-format
 msgid "%s (%s -- %s)"
-msgstr "%1s (%2s -- %3s)"
+msgstr "%1$s (%2$s -- %3$s)"
 
 #, c-format
 msgid "%s [%s]"
-msgstr "%1s [%2s]"
+msgstr "%1$s [%2$s]"
 
 #, c-format
 msgid ""
@@ -624,35 +633,37 @@
 msgstr "আপনি এই  আড্ডা ত্যাগ করেছেন।"
 
 msgid "Logging started. Future messages in this conversation will be logged."
-msgstr "লগ করা শুরু হয়েছে। এই কথোপকথনের ভবিষৎ বার্তাসমূহ লগ করা হবে।"
+msgstr "কথোপকথন সংরক্ষণ করা শুরু হয়েছে। ভবিষ্যতে বার্তা লগ করা হবে।"
 
 msgid ""
 "Logging stopped. Future messages in this conversation will not be logged."
-msgstr "লগ করা বন্ধ করা হয়েছে। এই কথোপকথনের ভবিষৎ বার্তাসমূহ লগ করা হবে।"
-
+msgstr "কথোপকথন সংরক্ষণ বন্ধ করা হয়েছে। ভবিষ্যতে বার্তা লগ করা হবে না।"
+
+# ***
 msgid "Send To"
-msgstr "এখানে প্রেরণ করুন"
+msgstr "এখানে প্রেরণ"
 
 msgid "Conversation"
 msgstr "কথোপকথন"
 
 msgid "Clear Scrollback"
-msgstr "স্ক্রলবেক পরিস্কার করুন"
+msgstr "স্ক্রলব্যাক অপসারন"
 
 msgid "Show Timestamps"
-msgstr "সময়ছাপ প্রদর্শন করুন"
+msgstr "সময় প্রদর্শন"
 
 msgid "Add Buddy Pounce..."
-msgstr "বন্ধু পাউন্স যুক্ত করুন..."
+msgstr "বন্ধু পাউন্স যোগ..."
 
 msgid "Invite..."
 msgstr "আমন্ত্রণ..."
 
+# mark3
 msgid "Enable Logging"
-msgstr "লগকরণ সক্রিয় করুন"
+msgstr "লগ সক্রিয়করণ"
 
 msgid "Enable Sounds"
-msgstr "শব্দ সক্রিয় করুন"
+msgstr "শব্দ সক্রিয়করণ"
 
 msgid "<AUTO-REPLY> "
 msgstr "<AUTO-REPLY>"
@@ -664,73 +675,74 @@
 msgstr[1] "%d ব্যবহারকারীগণের তালিকা:\n"
 
 msgid "Supported debug options are:  version"
-msgstr "সমর্থিত ডিবাগ পছন্দসমূহ হল: সংস্করণ"
-
+msgstr "সমর্থিত ডিবাগ অপশন: সংস্করণ"
+
+# ***
 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;command&২gt;\" ব্যবহার "
+"যেকোনো সুনির্দিষ্ট কমান্ড সম্পর্কে সহায়তা নিতে \"/help &lt;command&gt;\" ব্যবহার "
 "করুন।\n"
-"এই ক্ষেত্রে নিম্নোক্ত নির্দেশসমূহ সহজলভ্য:\n"
+"এই ক্ষেত্রে নিম্নোক্ত কমান্ড বিদ্যমান:\n"
 
 # tithi
 #, c-format
 msgid ""
 "%s is not a valid message class. See '/help msgcolor' for valid message "
 "classes."
-msgstr "%s বার্তার বৈধ শ্রেণী নয়। বার্তাসমূহের বৈধ শ্রেণীর '/সহায়ক বার্তা-রং' দেখুন।"
+msgstr "%s বার্তার শ্রেণী কার্যকর নয়। বার্তার শ্রেণীর জন্য '/help msgcolor' দেখুন।"
 
 # tithi
 #, c-format
 msgid "%s is not a valid color. See '/help msgcolor' for valid colors."
-msgstr "%s বৈধ রং নয়। বৈধ রং এর জন্য '/সহায়ক বার্তা-রং' দেখুন।"
+msgstr "%s কার্যকর রং নয়। বৈধ রং এর জন্য '/help msgcolor' দেখুন।"
 
 msgid ""
 "say &lt;message&gt;:  Send a message normally as if you weren't using a "
 "command."
 msgstr ""
-"বলুন &lt;বার্তা&gt;:  একটি বার্তা সাধারণত এমন ভাবে পাঠান যেন আপনি নির্দেশ ব্যবহার "
-"করেন নি।"
+"say &lt;message&gt;:  একটি বার্তা সাধারণত এমন ভাবে পাঠান যেন আপনি কমান্ড "
+"ব্যবহার করেন নি।"
 
 msgid "me &lt;action&gt;:  Send an IRC style action to a buddy or chat."
-msgstr "আমি &lt;কার্য&gt;: কোনো বন্ধুকে বা আড্ডায় আইআরসি শৈলীর কার্য পাঠান।"
+msgstr "me &lt;action&gt;: কোনো বন্ধুকে বা আড্ডায় IRC এর মত প্রতিক্রিয়া পাঠান।"
 
 msgid ""
 "debug &lt;option&gt;:  Send various debug information to the current "
 "conversation."
-msgstr "ডিবাগ &lt;পছন্দ&gt;:  বর্তমান কথোপকথনে বিভিন্ন ডিবাগ তথ্য পাঠান।"
+msgstr "debug &lt;option&gt;:  বর্তমান কথোপকথনে বিভিন্ন ডিবাগ তথ্য পাঠানো হবে।"
 
 msgid "clear: Clears the conversation scrollback."
-msgstr "পরিস্কার: কথোপকথনের স্ক্রলবেক পরিস্কার করে।"
+msgstr "clear: কথোপকথনের স্ক্রলব্যাক অপসারন করে।"
 
 msgid "help &lt;command&gt;:  Help on a specific command."
-msgstr "সহায়তা &lt;নির্দেশ&gt;: একটি সুনির্দিষ্ট নির্দেশের সহায়িকা।"
+msgstr "help &lt;command&gt;: একটি নির্দিষ্ট কমান্ডের সহায়িকা।"
 
 # tithi
 msgid "users:  Show the list of users in the chat."
-msgstr "ব্যবহারকারীগণ: আড্ডায় ব্যবহারকারীদের তালিকা দেখান।"
+msgstr "users: আড্ডায় ব্যবহারকারীদের তালিকা দেখানো হবে।"
 
 msgid "plugins: Show the plugins window."
-msgstr "প্লাগইন: প্লাগইনের উইন্ডো দেখান।"
+msgstr "plugins: প্লাগইনের উইন্ডো দেখান।"
 
 msgid "buddylist: Show the buddylist."
-msgstr "বন্ধু-তালিকা: বন্ধু-তালিকা দেখান।"
+msgstr "buddylist: বন্ধু-তালিকা দেখান।"
 
 msgid "accounts: Show the accounts window."
-msgstr "অ্যাকাউন্ট: অ্যাকাউন্টের উইন্ডো দেখান।"
+msgstr "accounts: অ্যাকাউন্টের উইন্ডো দেখান।"
 
 msgid "debugwin: Show the debug window."
-msgstr "ত্রুটিমুক্তকরণ উইন্ডো: ডিবাগ উইন্ডো দেখান।"
+msgstr "debugwin: ডিবাগ উইন্ডো দেখান।"
 
 msgid "prefs: Show the preference window."
-msgstr "পছন্দ: পছন্দের উইন্ডো দেখান।"
+msgstr "prefs: পছন্দসমূহের উইন্ডো দেখান।"
 
 msgid "statuses: Show the savedstatuses window."
-msgstr "অবস্থাসমূহ: সংরক্ষিত-অবস্থাসমূহের উইন্ডো দেখান।"
+msgstr "statuses: savedstatuses উইন্ডোটি দেখান।"
 
 # fix me tithi
 msgid ""
@@ -740,14 +752,14 @@
 "background&gt;: black, red, green, blue, white, gray, darkgray, magenta, "
 "cyan, default<br><br>EXAMPLE:<br>    msgcolor send cyan default"
 msgstr ""
-"বার্তা-রং &1lt;শ্রেণী&2gt; &3lt;পুরোভূমি&4gt; &5lt;প্রেক্ষাপট&6gt;:  কথোপকথন "
-"উইন্ডোতে বিভিন্ন প্রকার বার্তার জন্য রং নির্ধারন করুন ।<br>    &7lt;শ্রেণী&8gt;: "
-"গ্রহণ করুন, প্রেরণ করুন, প্রনির্দেশন, কার্য, টাইমস্ট্যাম্প<br>    &9lt;পুরোভূমি/"
-"প্রেক্ষাপট&10gt;: কালো, লাল, সবুজ, নীল, সাদা, ধূসর, গাঢ় ধূসর, ম্যাজেন্ডা, সায়ান, "
-"পূর্বনির্ধারিত<br><br>উদাহরণ:<br>    বার্তা-রং পূর্বনির্ধারিতভাবে সায়ান প্রেরণ করে"
+"msgcolor &lt;class&gt; &lt;foreground&gt; &lt;background&gt;:  কথোপকথন "
+"উইন্ডোতে বিভিন্ন প্রকার বার্তার জন্য রং নির্ধারন করুন ।<br>   &lt;class&gt;: গ্রহন, "
+"প্রেরণ, হাইলাইট, কাজ, টাইমস্ট্যাম্প<br>    &lt;foreground/background&gt;: কালো, "
+"লাল, সবুজ, নীল, সাদা, ধূসর, কালচেধূসর, ম্যাজেন্টা, সায়ান, ডিফল্ট<br><br>উদাহরণ:"
+"<br>    msgcolor ডিফল্ট হিসেবে সায়ান প্রদান করে"
 
 msgid "Unable to open file."
-msgstr "ফাইল খুলতে সমর্থ নয়।"
+msgstr "ফাইল খুলতে ব্যর্থ।"
 
 msgid "Debug Window"
 msgstr "ডিবাগ উইন্ডো"
@@ -757,10 +769,10 @@
 #. * it doesn't make sense. The bug is likely in the packing in gntbox.c.
 #.
 msgid "Clear"
-msgstr "মুছে ফেলো"
+msgstr "মুছে ফেলুন"
 
 msgid "Filter:"
-msgstr "পরিশ্রুতক:"
+msgstr "পরিশোধক:"
 
 msgid "Pause"
 msgstr "বিরতি"
@@ -769,18 +781,18 @@
 #, c-format
 msgid "File Transfers - %d%% of %d file"
 msgid_plural "File Transfers - %d%% of %d files"
-msgstr[0] "ফাইল স্থানান্তর করে - %d ফাইলের %d%%"
-msgstr[1] "ফাইল স্থানান্তর করে - %d ফাইলসমূহের %d%%"
+msgstr[0] "ফাইল স্থানান্তর - %d টি ফাইলের %d%%"
+msgstr[1] "ফাইল স্থানান্তর - %d টি ফাইলের %d%%"
 
 #. Create the window.
 msgid "File Transfers"
-msgstr "ফাইল স্থানান্তর করে"
+msgstr "ফাইল স্থানান্তর"
 
 msgid "Progress"
 msgstr "অগ্রগতি"
 
 msgid "Filename"
-msgstr "ফাইল-নাম"
+msgstr "ফাইলের নাম"
 
 msgid "Size"
 msgstr "আকার"
@@ -796,20 +808,21 @@
 msgstr "অবস্থা"
 
 msgid "Close this window when all transfers finish"
-msgstr "সব স্থানান্তর শেষ হলে এই উইন্ডোটি বন্ধ করুন"
+msgstr "সব স্থানান্তর শেষ হলে এই উইন্ডোটি বন্ধ করে দেয়া হবে"
 
 msgid "Clear finished transfers"
-msgstr "সমাপ্তকৃত স্থানান্তরসমূহ পরিস্কার করুন"
+msgstr "সম্পন্ন স্থানান্তর সরিয়ে ফেলা হবে"
 
 msgid "Stop"
-msgstr "থামুন"
+msgstr "স্থগিত"
 
 msgid "Waiting for transfer to begin"
-msgstr "স্থানান্তর শুরু করার জন্য অপেক্ষা করছে"
+msgstr "স্থানান্তর শুরু করার জন্য অপেক্ষা করা হচ্ছে"
 
 msgid "Canceled"
 msgstr "বাতিল করা হয়েছে"
 
+# mark6
 msgid "Failed"
 msgstr "ব্যর্থ হয়েছে"
 
@@ -828,21 +841,21 @@
 
 #, c-format
 msgid "The file was saved as %s."
-msgstr "ফাইলটি %s হিসেবে সংরক্ষণ করা হয়েছিল।"
+msgstr "ফাইলটি %s হিসেবে সংরক্ষিত হয়েছে।"
 
 msgid "Sending"
-msgstr "পাঠাচ্ছে"
+msgstr "পাঠানো হচ্ছে"
 
 msgid "Receiving"
-msgstr "গ্রহণ করছে"
+msgstr "গ্রহণ করা হচ্ছে"
 
 #, c-format
 msgid "Conversation in %s on %s"
-msgstr "%1s এ %2s এর উপর কথোপকথন"
+msgstr "%1$s এ %2$s এর উপর কথোপকথন"
 
 #, c-format
 msgid "Conversation with %s on %s"
-msgstr "%2s এর উপর %1s-এর সঙ্গে কথোপকথন"
+msgstr "%2$s এর উপর %1$s-এর সঙ্গে কথোপকথন"
 
 msgid "%B %Y"
 msgstr "%B %Y"
@@ -851,31 +864,30 @@
 "System events will only be logged if the \"Log all status changes to system "
 "log\" preference is enabled."
 msgstr ""
-"\"সকল অবস্থার পরিবর্তনসমূহ সিস্টেমের লগে লগ করুন\" প্রাধিকার যদি সক্রিয় থাকে তবে "
-"শুধুমাত্র সিস্টেমের ইভেন্টগুলো লগ করা হবে।"
+"শুধুমাত্র  \"সব অবস্থার পরিবর্তন সিস্টেম লগে লেখা হবে\" অপশনটি সক্রিয় থাকলে "
+"সিস্টেমের ইভেন্টগুলো লগ করা হবে।"
 
 msgid ""
 "Instant messages will only be logged if the \"Log all instant messages\" "
 "preference is enabled."
 msgstr ""
-"\"সব তাৎক্ষণিক বার্তা লগ করুন\" প্রাধিকার যদি সক্রিয় থাকে তবে শুধুমাত্র তাৎক্ষণিক "
-"বার্তাগুলো লগ করা হবে।"
+"অপশনে \"সব তাৎক্ষণিক বার্তা লগ করা হবে\" সক্রিয় থাকলে তবেই তাৎক্ষণিক বার্তাগুলো লগ "
+"করা হবে।"
 
 msgid ""
 "Chats will only be logged if the \"Log all chats\" preference is enabled."
-msgstr ""
-"\"সব আড্ডা লগ করুন\" প্রাধিকার যদি সক্রিয় থাকে তবে শুধুমাত্র আড্ডাগুলো লগ করা হবে।"
+msgstr "অপশনে \"সব আড্ডা লগ করা হবে\" সক্রিয় থাকলে তবেই আড্ডাগুলো লগ করা হবে।"
 
 msgid "No logs were found"
 msgstr "কোনো লগ খুঁজে পাওয়া যায়নি।"
 
 msgid "Total log size:"
-msgstr "মোট লগ আকার:"
+msgstr "মোট কথোপকথনের পরিমাণ:"
 
 # fix me tithi
 #. Search box *********
 msgid "Scroll/Search: "
-msgstr "স্ক্রল করুন/খুঁজুন:"
+msgstr "স্ক্রল/অনুসন্ধান:"
 
 #, c-format
 msgid "Conversations in %s"
@@ -886,48 +898,47 @@
 msgstr "%s-এর সঙ্গে কথোপকথন"
 
 msgid "All Conversations"
-msgstr "সকল কথোপকথন"
-
+msgstr "সব কথোপকথন"
+
+# mark4
 msgid "System Log"
 msgstr "সিস্টেম লগ"
 
-#, fuzzy
 msgid "Calling ... "
-msgstr "গননা করা হচ্ছে..."
+msgstr "কল করা হচ্ছে..."
 
 msgid "Hangup"
-msgstr ""
+msgstr "কল শেষ করুন"
 
 #. Number of actions
 msgid "Accept"
-msgstr "গ্রহণ করুন"
+msgstr "গ্রহণ"
 
 msgid "Reject"
-msgstr "প্রত্যাখান করুন"
+msgstr "প্রত্যাখান"
 
 msgid "Call in progress."
-msgstr ""
+msgstr "কলের অগ্রগতি হচ্ছে"
 
 msgid "The call has been terminated."
-msgstr ""
+msgstr "কল সমাপ্ত করা হয়েছে।"
 
 #, c-format
 msgid "%s wishes to start an audio session with you."
-msgstr ""
+msgstr "আপনার সাথে %s একটি অডিও সেশন শুরু করতে চায়।"
 
 #, c-format
 msgid "%s is trying to start an unsupported media session type with you."
-msgstr ""
-
-#, fuzzy
+msgstr "আপনার সাথে %s একটি অসমর্থিত ধরণের মিডিয়া সেশন শুরু করার চেষ্টা করছে।"
+
 msgid "You have rejected the call."
-msgstr "আপনি চ্যানেল%s%s বিভক্ত করেছেন"
+msgstr "আপনি কলটি প্রত্যাখ্যান করেছেন।"
 
 msgid "call: Make an audio call."
-msgstr ""
+msgstr "call: একটি অডিও কল করুন।"
 
 msgid "Emails"
-msgstr "ই-মেইলসমূহ"
+msgstr "ইমেইল"
 
 msgid "You have mail!"
 msgstr "আপনার মেইল আছে!"
@@ -941,8 +952,8 @@
 #, c-format
 msgid "%s (%s) has %d new message."
 msgid_plural "%s (%s) has %d new messages."
-msgstr[0] "%1s (%2s) এর  %3dটি নতুন বার্তা আছে।"
-msgstr[1] "%1s (%2s)-এর  %3dগুলো নতুন বার্তা আছে।"
+msgstr[0] "%1$s (%2$s) এর  %3$d টি নতুন বার্তা আছে।"
+msgstr[1] "%1$s (%2$s) এর  %3$d টি নতুন বার্তা আছে।"
 
 msgid "New Mail"
 msgstr "নতুন মেইল"
@@ -955,13 +966,13 @@
 msgstr "বন্ধুর তথ্য"
 
 msgid "Continue"
-msgstr "অব্যাহত"
+msgstr "পরবর্তী"
 
 msgid "IM"
-msgstr "তাৎক্ষণিক বার্তা"
+msgstr "IM"
 
 msgid "Invite"
-msgstr "আমন্ত্রণ"
+msgstr "আমন্ত্রণ জানান"
 
 msgid "(none)"
 msgstr "(কোনটি না)"
@@ -971,14 +982,14 @@
 
 # tithi
 msgid "ERROR"
-msgstr "ত্রুটি"
+msgstr "ERROR"
 
 msgid "loading plugin failed"
 msgstr "প্লাগইন লোড করতে ব্যর্থ"
 
 # tithi
 msgid "unloading plugin failed"
-msgstr "প্লাগইন লোডহীন করতে ব্যর্থ।"
+msgstr "প্লাগইন আনলোড করতে ব্যর্থ।"
 
 # tithi
 #, c-format
@@ -990,47 +1001,47 @@
 "Website: %s\n"
 "Filename: %s\n"
 msgstr ""
-"নাম: %1s\n"
-"সংস্করণ: %2s\n"
-"বর্ণনা: %3s\n"
-"লেখক: %4s\n"
-"ওয়েবসাইট: %5s\n"
-"ফাইলের নাম: %6s\n"
+"নাম: %1$s\n"
+"সংস্করণ: %2$s\n"
+"বর্ণনা: %3$s\n"
+"লেখক: %4$s\n"
+"ওয়েবসাইট: %5$s\n"
+"ফাইলের নাম: %6$s\n"
 
 # tithi
 msgid "Plugin need to be loaded before you can configure it."
-msgstr "প্লাগইন বিন্যাস করার পূর্বে আপনার এটা  লোড করা প্রয়োজন।"
+msgstr "প্লাগইন কনফিগার করার পূর্বে আপনার এটি লোড করতে হবে।"
 
 # tithi
 msgid "No configuration options for this plugin."
-msgstr "এই প্লাগইনের জন্য কোনো বিন্যাসন পছন্দ নেই।"
+msgstr "এই প্লাগইনের জন্য কোনো কনফিগারেশন অপশন নেই।"
 
 msgid "Error loading plugin"
-msgstr "প্লাগইনটি লোডে ত্রুটি"
-
-# tithi
+msgstr "প্লাগইন লোড করতে ত্রুটি"
+
+# tithi
+# mark5
 msgid "The selected file is not a valid plugin."
-msgstr "নির্বাচিত ফাইলটি বৈধ প্লাগইন নয়।"
+msgstr "নির্বাচিত ফাইলটি কার্যকর প্লাগইন নয়।"
 
 # tithi
 msgid ""
 "Please open the debug window and try again to see the exact error message."
-msgstr ""
-"অনুগ্রহপূর্বক ত্রুটিমুক্তকরণ উইন্ডো খুলুন এবং সঠিক ত্রুটি বার্তাটি দেখতে পুনরায় চেষ্টা করুন।"
+msgstr "অনুগ্রহপূর্বক ডিবাগ উইন্ডো খুলুন এবং সঠিক ত্রুটি বার্তাটি পুনরায় দেখার চেষ্টা করুন।"
 
 msgid "Select plugin to install"
-msgstr "সংস্থাপনে জন্য প্লাগইন নির্বাচন করুন"
+msgstr "ইনস্টল করার জন্য প্লাগইন নির্বাচন করুন"
 
 # tithi
 msgid "You can (un)load plugins from the following list."
-msgstr "আপনি নিম্নোক্ত তালিকা হতে প্লাগইনগুলোকে লোড(মুক্ত) করতে পারেন।"
+msgstr "আপনি নিম্নোক্ত তালিকা থেকে প্লাগইনগুলোকে লোড/আনলোড করতে পারেন।"
 
 # tithi
 msgid "Install Plugin..."
-msgstr "প্লাগইন সংস্থাপন করুন..."
+msgstr "প্লাগইন ইনস্টল..."
 
 msgid "Configure Plugin"
-msgstr "প্লাগইন পছন্দসই বিন্যাস করুন"
+msgstr "প্লাগইন কনফিগারেশন "
 
 #. copy the preferences to tmp values...
 #. * I liked "take affect immediately" Oh well :-(
@@ -1038,19 +1049,19 @@
 #. Back to instant-apply! I win!  BU-HAHAHA!
 #. Create the window
 msgid "Preferences"
-msgstr "প্রাধিকারসমূহ"
+msgstr "পছন্দসমূহ"
 
 msgid "Please enter a buddy to pounce."
-msgstr "অনুগ্রহ করে পাউন্স করার জন্য একজন বন্ধু প্রবেশ করান।"
+msgstr "অনুগ্রহ করে পাউন্স করার জন্য একজন বন্ধুর নাম দিন।"
 
 msgid "New Buddy Pounce"
-msgstr "নতুন বন্ধু পাউন্স করুন"
+msgstr "নতুন বন্ধু পাউন্স"
 
 msgid "Edit Buddy Pounce"
-msgstr "বন্ধু পাউন্স সম্পাদন করুন"
+msgstr "বন্ধু পাউন্স সম্পাদনা"
 
 msgid "Pounce Who"
-msgstr "কাকে পাউন্স"
+msgstr "যাকে পাউন্স করা হবে"
 
 #. Account:
 msgid "Account:"
@@ -1064,28 +1075,28 @@
 msgstr "পাউন্স করুন যখন বন্ধু..."
 
 msgid "Signs on"
-msgstr "সাইন অন"
+msgstr "লগইন করে"
 
 msgid "Signs off"
-msgstr "সাইন অফ"
+msgstr "লগআউট করে"
 
 msgid "Goes away"
-msgstr "অনুপস্থিত"
+msgstr "অন্যত্র যায়"
 
 msgid "Returns from away"
-msgstr "দূর হতে ফিরে আসে"
+msgstr "অন্যত্র থেকে ফিরে আসে"
 
 msgid "Becomes idle"
-msgstr "অলস হয়ে যায়"
+msgstr "নিষ্ক্রিয় হয়"
 
 msgid "Is no longer idle"
-msgstr "আর অলস থাকবে না"
+msgstr "সষ্ক্রিয় হয়"
 
 msgid "Starts typing"
-msgstr "টাইপ শুরু করছে"
+msgstr "টাইপ শুরু করে"
 
 msgid "Pauses while typing"
-msgstr "টাইপ করার সময় বিরতি দিন"
+msgstr "টাইপ করার সময় থামে"
 
 msgid "Stops typing"
 msgstr "টাইপ বন্ধ করে"
@@ -1095,93 +1106,95 @@
 
 #. Create the "Action" frame.
 msgid "Action"
-msgstr "কার্য"
+msgstr "প্রতিক্রিয়া"
 
 msgid "Open an IM window"
-msgstr "তাৎক্ষনিক বার্তার উইন্ডো খুলুন"
+msgstr "IM উইন্ডো খোলা হবে"
 
 msgid "Pop up a notification"
-msgstr "একটি ঘোষণা পপআপ করুন"
+msgstr "একটি ঘোষণা পপআপ করা হবে"
 
 msgid "Send a message"
-msgstr "একটি বার্তা পাঠান"
+msgstr "একটি বার্তা পাঠানো হবে"
 
 msgid "Execute a command"
-msgstr "একটি নির্দেশ কার্যকর করুন"
+msgstr "একটি কমান্ড কার্যকর করা হবে"
 
 msgid "Play a sound"
-msgstr "শব্দ বাজান"
-
+msgstr "শব্দ বাজানো হবে"
+
+# mark7
 msgid "Pounce only when my status is not Available"
-msgstr "আমার অবস্থা সহজলভ্য না থাকলে শুধুমাত্র পাউন্স করুন"
+msgstr "শুধুমাত্র আমার অবস্থা অনুপস্থিত থাকলে পাউন্স করা হবে"
 
 # tithi
 msgid "Recurring"
-msgstr "পুনরাবৃত্তি"
+msgstr "পুনরাবৃত্ত"
 
 msgid "Cannot create pounce"
-msgstr "পাউন্স তৈরী করতে পারে না"
+msgstr "পাউন্স তৈরী করা সম্ভব হয়নি"
 
 msgid "You do not have any accounts."
 msgstr "আপনার কোনো একাউন্ট নেই।"
 
 # tithi
 msgid "You must create an account first before you can create a pounce."
-msgstr "আপনি একটি পাউন্স তৈরি করার পূর্বে আপনাকে অবশ্যই একটি একাউন্ট তৈরি করতে হবে।"
+msgstr "পাউন্স তৈরি করার পূর্বে আপনাকে অবশ্যই একটি একাউন্ট তৈরি করতে হবে।"
 
 #, c-format
 msgid "Are you sure you want to delete the pounce on %s for %s?"
-msgstr "আপনি কি নিশ্চিত আপনি %2s এর জন্য %1s এর পাউন্স মুছে ফেলতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে %2$s এর জন্য %1$s এর পাউন্স মুছে ফেলতে চান?"
 
 msgid "Buddy Pounces"
-msgstr "বন্ধু পাউন্স করে"
+msgstr "বন্ধু পাউন্স"
 
 #, c-format
 msgid "%s has started typing to you (%s)"
-msgstr "%1s আপনার কাছে টাইপ করা শুরু করেছে (%2s)"
+msgstr "%1$s আপনার কাছে টাইপ করা শুরু করেছে (%2$s)"
 
 #, c-format
 msgid "%s has paused while typing to you (%s)"
-msgstr "%1s আপনার কাছে টাইপ করার সময় বিরতি নিয়েছে (%2s)"
-
+msgstr "%1$s আপনার কাছে টাইপ করার সময় বিরতি নিচ্ছে (%2$s)"
+
+# mark8
 #, c-format
 msgid "%s has signed on (%s)"
-msgstr "%1s সাইন অন করেছে (%2s)"
+msgstr "%1$s লগইন করেছে (%2$s)"
 
 #, c-format
 msgid "%s has returned from being idle (%s)"
-msgstr "%1s অলস অবস্থা থেকে ফিরে এসেছে (%2s)"
+msgstr "%1$s নিষ্ক্রিয় অবস্থা থেকে ফিরে এসেছে (%2$s)"
 
 #, c-format
 msgid "%s has returned from being away (%s)"
-msgstr "%1s দূর হতে ফিরে এসেছে (%2s)"
+msgstr "%1$s অন্যত্র থেকে ফিরেছে (%2$s)"
 
 #, c-format
 msgid "%s has stopped typing to you (%s)"
-msgstr "%1s আপনার কাছে টাইপ করা বন্ধ করে দিয়েছে (%2s)"
+msgstr "%1$s আপনার কাছে টাইপ করা বন্ধ করেছে (%2$s)"
 
 #, c-format
 msgid "%s has signed off (%s)"
-msgstr "%1s অখলাইনে আছে (%2s)"
+msgstr "%1$s লগআউট করেছে (%2$s)"
 
 #, c-format
 msgid "%s has become idle (%s)"
-msgstr "%1s অলস আছে (%2s)"
+msgstr "%1$s নিষ্ক্রিয় হয়েছে (%2$s)"
 
 #, c-format
 msgid "%s has gone away. (%s)"
-msgstr "%1s এখন অনুপস্থিত। (%2s)"
+msgstr "%1$s অন্যত্র গিয়েছে। (%2$s)"
 
 #, c-format
 msgid "%s has sent you a message. (%s)"
-msgstr "%1s আপনাকে একটি বার্তা পাঠিয়েছে। (%2s)"
+msgstr "%1$s আপনাকে একটি বার্তা পাঠিয়েছে। (%2$s)"
 
 msgid "Unknown pounce event. Please report this!"
 msgstr "অজানা পাউন্স ইভেন্ট। অনুগ্রহ করে এটি রিপোর্ট করুন!"
 
 # tithi
 msgid "Based on keyboard use"
-msgstr "কী-বোর্ডের ব্যবহারের উপর নির্ভর করে"
+msgstr "কীবোর্ডের ব্যবহার অনুসারে"
 
 msgid "From last sent message"
 msgstr "সর্বশেষ পাঠানো বার্তা থেকে"
@@ -1190,34 +1203,34 @@
 msgstr "কখনো নয়"
 
 msgid "Show Idle Time"
-msgstr "অলস সময় প্রদর্শন করুন"
+msgstr "নিষ্ক্রিয় সময় প্রদর্শন করা হবে"
 
 msgid "Show Offline Buddies"
-msgstr "অফলাইন বন্ধুগণদের প্রদর্শন করুন"
+msgstr "অফলাইন বন্ধুদের প্রদর্শন করা হবে"
 
 msgid "Notify buddies when you are typing"
-msgstr "আপনার টাইপ করার সময় বন্ধুদের অবগত করুন"
+msgstr "আপনি টাইপ করলে বন্ধুদের তা অবগত করা হবে"
 
 msgid "Log format"
-msgstr "লগ বিন্যাস"
+msgstr "লগ প্রদর্শনের বিন্যাস"
 
 msgid "Log IMs"
-msgstr "তাৎক্ষণিক বার্তাগুলো লগ করুন"
+msgstr "IM সংরক্ষণ করা হবে"
 
 msgid "Log chats"
-msgstr "আড্ডাসমূহ লগ করুন"
+msgstr "কথোপকথন সংরক্ষণ করা হবে"
 
 msgid "Log status change events"
-msgstr "লগ অবস্থা ইভেন্ট পরিবর্তন করে"
+msgstr "অবস্থা পরিবর্তনের ঘটনা লগ করা হবে"
 
 msgid "Report Idle time"
-msgstr "অলস সময় রিপোর্ট করুন"
+msgstr "নিষ্ক্রিয় সময় রিপোর্ট করা হবে"
 
 msgid "Change status when idle"
-msgstr "অলস থাকলে অবস্থা পরিবর্তন করুন"
+msgstr "নিষ্ক্রিয় থাকলে অবস্থা পরিবর্তন করা হবে"
 
 msgid "Minutes before changing status"
-msgstr "অবস্থা পরিবর্তন করার পূর্বের মিনিট"
+msgstr "অবস্থা পরিবর্তনের মিনিটখানেক আগে"
 
 msgid "Change status to"
 msgstr "অবস্থা পরিবর্তন করুন"
@@ -1226,37 +1239,38 @@
 msgstr "কথোপকথন"
 
 msgid "Logging"
-msgstr "লগ করছে"
+msgstr "কথোপকথন সংরক্ষন"
 
 msgid "You must fill all the required fields."
-msgstr "আপনাকে অবশ্যই প্রয়োজনীয় ক্ষেত্রসমূহ পূরণ করতে হবে।"
+msgstr "আপনাকে সব আবশ্যকীয় ক্ষেত্র পূরণ করতে হবে।"
 
 msgid "The required fields are underlined."
-msgstr "প্রয়োজনীয় ক্ষেত্রসমূহকে নিম্নরেখাঙ্কিত করা হয়েছে।"
+msgstr "আবশ্যকীয় ক্ষেত্র নিম্নরেখাঙ্কিত করা রয়েছে।"
 
 # tithi
 msgid "Not implemented yet."
 msgstr "এখনও বাস্তবায়িত হয়নি।"
 
 msgid "Save File..."
-msgstr "ফাইল সংরক্ষণ করুন..."
+msgstr "ফাইল সংরক্ষণ..."
 
 msgid "Open File..."
 msgstr "ফাইল খুলুন..."
 
 msgid "Choose Location..."
-msgstr "স্থান পছন্দ করুন..."
-
-# tithi
+msgstr "অবস্থান নির্বাচন..."
+
+# tithi
+# samia: I am assuming these are chat rooms
 msgid "Hit 'Enter' to find more rooms of this category."
-msgstr "এই শ্রেণীবিভাগের আরও কিছু কক্ষ খুঁজে পেতে 'Enter' চাপুন।"
+msgstr "এই শ্রেণীর আরও কিছু আসর খুঁজে পেতে 'Enter' চাপুন।"
 
 msgid "Get"
-msgstr "গ্রহণ করুন"
+msgstr "সংগ্রহ"
 
 #. Create the window.
 msgid "Room List"
-msgstr "কক্ষের তালিকা"
+msgstr "আসরের তালিকা"
 
 msgid "Buddy logs in"
 msgstr "বন্ধু লগইন করে"
@@ -1265,28 +1279,28 @@
 msgstr "বন্ধু লগআউট করে"
 
 msgid "Message received"
-msgstr "বার্তা গ্রহণ করা হয়েছে"
+msgstr "বার্তা গৃহীত হয়"
 
 msgid "Message received begins conversation"
-msgstr "বার্তা গ্রহন করায় কথাবার্তা শুরু হয়েছে"
+msgstr "বার্তা গ্রহন করে কথোপকথন শুরু হয়"
 
 msgid "Message sent"
-msgstr "বার্তা পাঠানো হয়েছে"
+msgstr "বার্তা পাঠানো হয়"
 
 msgid "Person enters chat"
-msgstr "ব্যক্তি আড্ডায় প্রবেশ করেছে"
+msgstr "ব্যক্তি আড্ডায় প্রবেশ করে"
 
 msgid "Person leaves chat"
-msgstr "ব্যক্তি আড্ডা ত্যাগ করেছে"
+msgstr "ব্যক্তি আড্ডা ত্যাগ করে"
 
 msgid "You talk in chat"
-msgstr "আপনি আড্ডায় কথা বলছেন"
+msgstr "আপনি আড্ডায় কথা বলেন"
 
 msgid "Others talk in chat"
-msgstr "অন্যান্যরা আড্ডায় কথা বলছে"
+msgstr "অন্যান্যরা আড্ডায় কথা বলে"
 
 msgid "Someone says your username in chat"
-msgstr "কেউ একজন আড্ডায় আপনার ব্যবহারকারীর নাম বলছে"
+msgstr "কেউ আড্ডায় আপনার নাম উল্লেখ করে"
 
 # tithi
 msgid "GStreamer Failure"
@@ -1295,70 +1309,74 @@
 msgid "GStreamer failed to initialize."
 msgstr "GStreamer আরম্ভ হতে ব্যর্থ।"
 
-# tithi
+# tithi mark
 msgid "(default)"
-msgstr "(পূর্বনির্ধারিত)"
+msgstr "(ডিফল্ট)"
 
 msgid "Select Sound File ..."
-msgstr "সাউন্ড ফাইল নির্বাচন করুন..."
-
+msgstr "শব্দ ফাইল নির্বাচন..."
+
+# ***
 msgid "Sound Preferences"
-msgstr "সাউন্ডের অগ্রাধিকারসমুহ"
-
+msgstr "শব্দের পছন্দসমূহ"
+
+# ***
 msgid "Profiles"
-msgstr "ব্যাক্তিগত বিবরণীসমূহ"
+msgstr "বৃত্তান্ত"
 
 msgid "Automatic"
 msgstr "স্বয়ংক্রিয়"
 
 msgid "Console Beep"
-msgstr "কনসোল বীপ করছে"
-
+msgstr "কনসোল বীপ"
+
+# ***
 msgid "Command"
-msgstr "নির্দেশ"
+msgstr "কমান্ড"
 
 msgid "No Sound"
-msgstr "কোনো শব্দ নাই"
+msgstr "কোনো শব্দ নয়"
 
 msgid "Sound Method"
-msgstr "শব্দের প্রক্রিয়া"
+msgstr "শব্দের নিয়ম"
 
 msgid "Method: "
-msgstr "প্রক্রিয়া:"
-
+msgstr "প্রক্রিয়া:"
+
+# ***
 #, c-format
 msgid ""
 "Sound Command\n"
 "(%s for filename)"
 msgstr ""
-"শব্দের নির্দেশ \n"
+"শব্দের কমান্ড \n"
 "(ফাইলের নামের জন্য %s)"
 
 #. Sound options
 msgid "Sound Options"
-msgstr "শব্দের পছন্দসমূহ"
+msgstr "শব্দের অপশন"
 
 msgid "Sounds when conversation has focus"
-msgstr "কথোপকথন ফোকাস করলে শব্দ করে"
+msgstr "কথোপকথনে ফোকাস করলে যে শব্দ করে"
 
 msgid "Always"
-msgstr "সর্বদা"
+msgstr "সব সময়"
 
 msgid "Only when available"
-msgstr "শুধুমাত্র যখন সহজলভ্য"
+msgstr "শুধুমাত্র যখন উপস্থিত"
 
 msgid "Only when not available"
-msgstr "শুধুমাত্র যখন সহজলভ্য নয়"
+msgstr "শুধুমাত্র যখন অনুপস্থিত"
 
 msgid "Volume(0-100):"
 msgstr "ভলিউম(০-১০০):"
 
 #. Sound events
 msgid "Sound Events"
-msgstr "শব্দ ইভেন্টসমূহ"
+msgstr "শব্দ ঘটনাসমূহ"
 
 msgid "Event"
-msgstr "ইভেন্ট"
+msgstr "ঘটনা"
 
 msgid "File"
 msgstr "ফাইল"
@@ -1367,26 +1385,26 @@
 msgstr "পরীক্ষা"
 
 msgid "Reset"
-msgstr "পুনঃ বিন্যাস করুন"
+msgstr "রিসেট"
 
 msgid "Choose..."
-msgstr "পছন্দ করুন..."
+msgstr "বাছাই করুন..."
 
 #, c-format
 msgid "Are you sure you want to delete \"%s\""
-msgstr "আপনি কি  নিশ্চিত আপনি \"%s\" মুছে ফেলতে চান"
+msgstr "আপনি কি  নিশ্চিতভাবে \"%s\" মুছে ফেলতে চান"
 
 msgid "Delete Status"
-msgstr "অবস্থা মুছুন"
+msgstr "অবস্থা মুছে ফেলুন"
 
 msgid "Saved Statuses"
-msgstr "সংরক্ষিত অবস্থাসমূহ"
+msgstr "সংরক্ষিত অবস্থা"
 
 msgid "Title"
 msgstr "শিরোনাম"
 
 msgid "Type"
-msgstr "ধরন"
+msgstr "ধরণ"
 
 #. Statuses are almost all the same. Define a macro to reduce code repetition.
 #. PurpleStatusPrimitive
@@ -1401,23 +1419,24 @@
 
 #. Use
 msgid "Use"
-msgstr "ব্যবহার করুন"
-
+msgstr "ব্যবহার"
+
+# mark
 msgid "Invalid title"
-msgstr "অবৈধ শিরোনাম"
+msgstr "অকার্যকর শিরোনাম"
 
 # tithi
 msgid "Please enter a non-empty title for the status."
-msgstr "অনুগ্রহ করে অবস্থার জন্য খালি নয় এমন শিরোনাম প্রবেশ করান।"
+msgstr "অনুগ্রহ করে অবস্থার জন্য একটি শিরোনাম দিন।"
 
 msgid "Duplicate title"
-msgstr "অনুরুপ শিরোনাম"
+msgstr "পুনঃব্যবহৃত শিরোনাম"
 
 msgid "Please enter a different title for the status."
-msgstr "অনুগ্রহ করে অবস্থাটির জন্য একটি ভিন্ন শিরোনাম প্রবেশ করান।"
+msgstr "অনুগ্রহ করে অবস্থাটির জন্য একটি ভিন্ন শিরোনাম দিন।"
 
 msgid "Substatus"
-msgstr "উপঅবস্থা"
+msgstr "উপ-অবস্থা"
 
 msgid "Status:"
 msgstr "অবস্থা:"
@@ -1426,37 +1445,37 @@
 msgstr "বার্তা:"
 
 msgid "Edit Status"
-msgstr "অবস্থা সম্পাদন করুন"
+msgstr "অবস্থা সম্পাদনা"
 
 msgid "Use different status for following accounts"
-msgstr "নিম্নোক্ত একাউন্টসমুহের জন্য ভিন্ন অবস্থা ব্যবহার করুন"
+msgstr "নিম্নোক্ত একাউন্টসমুহের জন্য ভিন্ন অবস্থা ব্যবহার করা হবে"
 
 #. Save & Use
 msgid "Save & Use"
-msgstr "সংরক্ষণ এবং ব্যবহার করুন"
+msgstr "সংরক্ষণ & ব্যবহার"
 
 # tithi
 msgid "Certificates"
-msgstr "প্রত্যয়ন পত্র"
+msgstr "সার্টিফিকেট"
 
 msgid "Sounds"
-msgstr "শব্দসমূহ"
+msgstr "শব্দ"
 
 msgid "Statuses"
-msgstr "অবস্থাসমূহ"
+msgstr "অবস্থা"
 
 msgid "Error loading the plugin."
-msgstr "প্লাগইন লোড করার ত্রুটি।"
+msgstr "প্লাগইন লোড করায় ত্রুটি।"
 
 msgid "Couldn't find X display"
-msgstr "X প্রদর্শন খুঁজে পাবে না"
+msgstr "X ডিসপ্লে খুঁজে পাওয়া যায়নি"
 
 msgid "Couldn't find window"
-msgstr "উইন্ডো খুঁজে পাবে না"
+msgstr "উইন্ডো খুঁজে পাওয়া যায়নি"
 
 # tithi
 msgid "This plugin cannot be loaded because it was not built with X11 support."
-msgstr "এই প্লাগইনটি লোড করা যায় না কারণ এটি X11 সমর্থনে তৈরী হয়নি।"
+msgstr "এই প্লাগইনটি লোড করা সম্ভব নয় কারণ এটিতে X11 সাপোর্ট নেই।"
 
 # tithi
 msgid "GntClipboard"
@@ -1465,21 +1484,20 @@
 msgid "Clipboard plugin"
 msgstr "ক্লিপবোর্ড প্লাগইন"
 
-# tithi
 msgid ""
 "When the gnt clipboard contents change, the contents are made available to "
 "X, if possible."
 msgstr ""
-"যদি সম্ভব হয় , যখন gnt ক্লিপবোর্ডের বিষয়বস্তুসমূহ পরিবর্তন হয়, তখন X এ বিষয়বস্তুসমূহ "
-"সহজলভ্য করুন।"
+"যদি সম্ভব হয়, যখন gnt ক্লিপবোর্ডে ধারণকৃত মান পরিবর্তন হয় তখন তা X দ্বারা "
+"ব্যবহারোপযোগী করা হবে।"
 
 #, c-format
 msgid "%s just signed on"
-msgstr "%s অনলাইনে"
+msgstr "%s এইমাত্র লগইন করেছে"
 
 #, c-format
 msgid "%s just signed off"
-msgstr "%s অফলাইনে"
+msgstr "%s এইমাত্র লগআউট করেছে"
 
 #, c-format
 msgid "%s sent you a message"
@@ -1488,35 +1506,36 @@
 # tithi
 #, c-format
 msgid "%s said your nick in %s"
-msgstr "%1s আপনার ডাক নাম %2s এ বলছে"
+msgstr "%1$s আপনার ডাক নাম %2$s বলেছে"
 
 #, c-format
 msgid "%s sent a message in %s"
-msgstr "%1s %2s এ একটি বার্তা পাঠিয়েছে"
+msgstr "%1$s %2$s এ একটি বার্তা পাঠিয়েছে"
 
 msgid "Buddy signs on/off"
-msgstr "বন্ধু সাইন চালু/বন্ধ"
+msgstr "বন্ধু লগইন/লগআউট করে"
 
 msgid "You receive an IM"
-msgstr "আপনার একটি তাৎক্ষনিক বার্তা গ্রহণ করেছেন"
+msgstr "আপনি একটি IM গ্রহন করেন"
 
 msgid "Someone speaks in a chat"
-msgstr "কেউ একজন আড্ডায় কথা বলছে"
+msgstr "কেউ আড্ডায় কথা বলে"
 
 msgid "Someone says your name in a chat"
-msgstr "কেউ একজন আড্ডায় আপনার নাম ধরে ডাকছে"
+msgstr "কেউ আড্ডায় আপনার নাম উল্লেখ করে"
 
 # tithi
 msgid "Notify with a toaster when"
-msgstr "টোস্টার দ্বারা অবগতি করুন যখন"
+msgstr "টোস্টার দ্বারা অবগত করুন যখন"
 
 # tithi
 msgid "Beep too!"
-msgstr "শব্দও করবে!"
-
-# tithi
+msgstr "শব্দ সংকেতও দিবে!"
+
+# tithi
+# ***
 msgid "Set URGENT for the terminal window."
-msgstr "টারমিনাল উইন্ডোর জন্য জরুরী নির্ধারণ করুন।"
+msgstr "টারমিনাল উইন্ডোর জন্য URGENT নির্ধারণ করুন।"
 
 # tithi
 msgid "GntGf"
@@ -1528,34 +1547,34 @@
 
 #, c-format
 msgid "<b>Conversation with %s on %s:</b><br>"
-msgstr "<b>%2s এ %2s এর সাথে কথোপকথন:</b><br>"
+msgstr "<b>%2$s এ %1$s এর সাথে কথোপকথন:</b><br>"
 
 msgid "History Plugin Requires Logging"
-msgstr "ইতিহাস প্লাগইনের লগ করা প্রয়োজন"
-
+msgstr "ইতিহাস প্লাগইন ব্যবহারের জন্য কথোপকথন সংরক্ষণ করা প্রয়োজন"
+
+# ***
 msgid ""
 "Logging can be enabled from Tools -> Preferences -> Logging.\n"
 "\n"
 "Enabling logs for instant messages and/or chats will activate history for "
 "the same conversation type(s)."
 msgstr ""
-"টুলসমূহ -> অগ্রাধিকারসমূহ -> লগকরণ থেকে লগকরণ সক্রিয় করা যায়।\n"
-"\n"
-"তাৎক্ষণিক বার্তার জন্য কার্যবিবরণীসমূহ সক্রিয় করছে এবং/বা একই ধরনের কথাবার্তার জন্য "
-"আড্ডা ইতিহাস সক্রিয় করবে।"
+"টুল -> পছন্দসমূহ -> কথোপকথন সংরক্ষন থেকে কথোপকথন প্রদর্শন প্রক্রিয়া সক্রিয় করা যাবে।\n"
+"\n"
+"তাৎক্ষণিক বার্তা বা আড্ডার রেকর্ড শুরু করা হলে আড্ডা ইতিহাস সক্রিয় করা হবে।"
 
 msgid "GntHistory"
 msgstr "GntHistory"
 
 msgid "Shows recently logged conversations in new conversations."
-msgstr "নতুন কথোপকথনসমূহে সাম্প্রতিক লগকৃত কথোপকথনসমূহ প্রদর্শন করে।"
+msgstr "সম্প্রতি সংরক্ষিত কথোপকথন নতুন আড্ডায় প্রদর্শন করা হবে"
 
 msgid ""
 "When a new conversation is opened this plugin will insert the last "
 "conversation into the current conversation."
 msgstr ""
-"যখন একটি নতুন কথোপকথন খোলা হয় তখন এই প্লাগ-ইনটি নতুন কথোপকথনে সর্বশেষ কথোপকথন "
-"প্রবেশ করবে।"
+"নতুন কথোপকথন শুরু করার সময় এই প্লাগইনটি নতুন কথোপকথনের উইন্ডোতে সর্বশেষ কথোপকথন "
+"প্রবেশ করাবে।"
 
 msgid "Online"
 msgstr "অনলাইন"
@@ -1564,7 +1583,7 @@
 msgstr "অফলাইন "
 
 msgid "Online Buddies"
-msgstr "অফলাইন বন্ধু"
+msgstr "অনলাইন বন্ধু"
 
 msgid "Offline Buddies"
 msgstr "অফলাইন বন্ধু"
@@ -1577,7 +1596,7 @@
 msgstr "Meebo"
 
 msgid "No Grouping"
-msgstr "দলগত নয়"
+msgstr "দলভুক্ত নয়"
 
 # tithi
 msgid "Nested Subgroup"
@@ -1588,16 +1607,16 @@
 msgstr "নেস্টেড দলগতকরণ (পরীক্ষামূলক)"
 
 msgid "Provides alternate buddylist grouping options."
-msgstr "পর্যাক্রমিক বন্ধু-তালিকার দলগতকরণ পছন্দসমূহ প্রদান করে।"
+msgstr "বন্ধু-তালিকার বিকল্প দলগতকরণ অপশন প্রদান করে।"
 
 # tithi
 msgid "Lastlog"
-msgstr "সর্বশেষ-লগ"
+msgstr "Lastlog"
 
 # tithi
 #. Translator Note: The "backlog" is the conversation buffer/history.
 msgid "lastlog: Searches for a substring in the backlog."
-msgstr "সর্বশেষ-লগ: ব্যাকলগে উপস্ট্রিং খুঁজছে।"
+msgstr "lastlog: backlog এ সাবস্ট্রিং অনুসন্ধান করা হয়।"
 
 # tithi
 msgid "GntLastlog"
@@ -1605,82 +1624,84 @@
 
 # tithi
 msgid "Lastlog plugin."
-msgstr "সর্বশেষ-লগ প্লাগইন।"
+msgstr "Lastlog প্লাগইন।"
 
 #, c-format
 msgid ""
 "\n"
 "Fetching TinyURL..."
 msgstr ""
+"\n"
+"TinyURL  আনা হচ্ছে..."
 
 msgid "Only create TinyURL for urls of this length or greater"
-msgstr ""
+msgstr "শুধুমাত্র এইরকম অথবা এর চাইতে বড় দৈর্ঘ্যের URL এর জন্য TinyURL তৈরি করুন।"
 
 msgid "TinyURL (or other) address prefix"
-msgstr ""
-
-# tithi
-#, fuzzy
+msgstr "TinyURL (অথবা অন্যান্য) ঠিকানার উপসর্গ"
+
+# tithi
 msgid "TinyURL"
-msgstr "টিউন URL"
+msgstr "TinyURL"
 
 msgid "TinyURL plugin"
-msgstr ""
+msgstr "TinyURL প্লাগইন"
 
 msgid "When receiving a message with URL(s), TinyURL for easier copying"
 msgstr ""
+"URL সহ একটি বার্তা গ্রহন করার সময় সহজভাবে অনুলিপি করার জন্য TinyURL ব্যবহৃত হয়"
 
 msgid "accounts"
-msgstr "একাউন্টসমূহ"
+msgstr "একাউন্ট"
 
 msgid "Password is required to sign on."
-msgstr "যোগদানের জন্য গুপ্তসংকেত আবশ্যক।"
+msgstr "লগইনের জন্য পাসওয়ার্ড আবশ্যক।"
 
 #, c-format
 msgid "Enter password for %s (%s)"
-msgstr "%1s (%2s) এর জন্য গুপ্তসংকেত প্রবেশ করান"
+msgstr "%1$s (%2$s) এর জন্য পাসওয়ার্ড দিন"
 
 msgid "Enter Password"
-msgstr "গুপ্তসংকেত প্রবেশ করান"
+msgstr "পাসওয়ার্ড দিন"
 
 msgid "Save password"
-msgstr "গুপ্তসংকেত সংরক্ষণ করুন"
+msgstr "পাসওয়ার্ড সংরক্ষণ"
 
 #, c-format
 msgid "Missing protocol plugin for %s"
-msgstr "%s এর জন্য নিরুদ্দিষ্ট প্রটোকল প্লাগইন"
+msgstr "%s এর জন্য নিখোঁজ প্রোটোকল প্লাগইন"
 
 msgid "Connection Error"
-msgstr "সংযোগ ত্রুটি"
+msgstr "সংযোগে ত্রুটি"
 
 msgid "New passwords do not match."
-msgstr "নতুন গুপ্তসংকেতসমূহ মিলছে না।"
+msgstr "নতুন পাসওয়ার্ডগুলো মিলছে না।"
 
 msgid "Fill out all fields completely."
-msgstr "সব ক্ষেত্র সম্পূর্ণরুপে পূরণ করুন।"
+msgstr "সব ক্ষেত্র সম্পূর্ণভাবে পূরণ করুন।"
 
 msgid "Original password"
-msgstr "মূল গুপ্তসংকেত"
+msgstr "মূল পাসওয়ার্ড"
 
 msgid "New password"
-msgstr "নতুন গুপ্তসংকেত"
+msgstr "নতুন পাসওয়ার্ড"
 
 msgid "New password (again)"
-msgstr "নতুন গুপ্তসংকেত (আবার)"
+msgstr "নতুন পাসওয়ার্ড (আবার)"
 
 #, c-format
 msgid "Change password for %s"
-msgstr "%s এর জন্য গুপ্তসংকেত পরিবর্তন করুন"
+msgstr "%s এর জন্য পাসওয়ার্ড পরিবর্তন করুন"
 
 msgid "Please enter your current password and your new password."
-msgstr "অনুগ্রহ করে আপনার বর্তমান গুপ্তসংকেত এবং নতুন গুপ্তসংকেত প্রবেশ করান।"
+msgstr "অনুগ্রহ করে আপনার বর্তমান পাসওয়ার্ড এবং নতুন পাসওয়ার্ড দিন।"
 
 #, c-format
 msgid "Change user information for %s"
-msgstr "%s এর জন্য ব্যবহাকারীর তথ্য পরিবর্তন করুন"
+msgstr "%s এর জন্য ব্যবহাকারী তথ্য পরিবর্তন করুন"
 
 msgid "Set User Info"
-msgstr "ব্যবহারকারীর তথ্য নির্ধারণ করুন"
+msgstr "ব্যবহারকারীর তথ্য নির্ধারণ"
 
 msgid "Unknown"
 msgstr "অজানা"
@@ -1699,7 +1720,7 @@
 #. Make messages
 #, c-format
 msgid "%s has presented the following certificate for just-this-once use:"
-msgstr "শুধুমাত্র-এটি-একবার ব্যবহারের জন্য %s নিম্নলিখিত প্রত্যয়ন পত্র উপস্থাপন করেছে:"
+msgstr "শুধুমাত্র একবার ব্যবহারের জন্য %s নিম্নলিখিত সার্টিফিকেট উপস্থাপন করেছে:"
 
 # tithi
 #, c-format
@@ -1707,41 +1728,40 @@
 "Common name: %s %s\n"
 "Fingerprint (SHA1): %s"
 msgstr ""
-"সাধারণ নাম: %1s %2s\n"
-"ফিঙ্গারপ্রিন্ট (SHA1): %3s"
+"সাধারণ নাম: %1$s %2$s\n"
+"ফিঙ্গারপ্রিন্ট (SHA1): %3$s"
 
 # tithi
 #. TODO: Find what the handle ought to be
 msgid "Single-use Certificate Verification"
-msgstr "একক-ব্যবহারের প্রত্যয়ন পত্রের সত্যতা যাচাই"
+msgstr "একক-ব্যবহার সার্টিফিকেটের সত্যতা যাচাই"
 
 # tithi
 #. Scheme name
 #. Pool name
 msgid "Certificate Authorities"
-msgstr "প্রত্যয়ন পত্রের কর্তৃপক্ষ"
+msgstr "সার্টিফিকেটের কর্তৃপক্ষ"
 
 # tithi
 #. Scheme name
 #. Pool name
 msgid "SSL Peers Cache"
-msgstr "SSL পিয়ার্স ক্যাশে"
+msgstr "SSL পিয়ার্স ক্যাশ"
 
 #. Make messages
 #, c-format
 msgid "Accept certificate for %s?"
-msgstr "%s এর জন্য কি প্রত্যয়ন পত্র গ্রহণ করবেন?"
+msgstr "%s এর জন্য কি সার্টিফিকেট গ্রহণ করা হবে?"
 
 # tithi
 #. TODO: Find what the handle ought to be
 msgid "SSL Certificate Verification"
-msgstr "SSL প্রত্যয়ন পত্রের সত্যতা যাচাই"
+msgstr "SSL সার্টিফিকেটের সত্যতা যাচাই"
 
 # tithi
 msgid "_View Certificate..."
-msgstr "প্রত্যয়ন পত্র দেখুন...(_V)"
-
-# tithi
+msgstr "সার্টিফিকেট প্রদর্শন... (_V)"
+
 #. Prompt the user to authenticate the certificate
 #. vrq will be completed by user_auth
 #, c-format
@@ -1749,24 +1769,25 @@
 "The certificate presented by \"%s\" is self-signed. It cannot be "
 "automatically checked."
 msgstr ""
-"\"%s\" দ্বারা উপস্থাপিত প্রত্যয়ন পত্রটি স্ব-সাক্ষরিত। এটি স্বয়ংক্রিয়ভাবে পরীক্ষা করা "
+"\"%s\" দ্বারা উপস্থাপিত সার্টিফিকেটটি স্ব-স্বাক্ষরিত। এটি স্বয়ংক্রিয়ভাবে পরীক্ষা করা "
 "যাবে না।"
 
-# tithi
+#. FIXME 2.6.1
 #, c-format
 msgid "The certificate chain presented for %s is not valid."
-msgstr "%s এর জন্য উপস্থাপিত প্রত্যয়ন পত্রের শৃঙ্খল বৈধ নয়।"
+msgstr "%s এর জন্য উপস্থাপিত সার্টিফিকেট চেইন কার্যকর নয়।"
 
 #. TODO: Make this error either block the ensuing SSL
 #. connection error until the user dismisses this one, or
 #. stifle it.
 #. TODO: Probably wrong.
 #. TODO: Probably wrong
+#. TODO: Probably wrong.
 msgid "SSL Certificate Error"
-msgstr "SSL প্রত্যয়ন পত্রের ত্রুটি"
+msgstr "SSL সার্টিফিকেট ত্রুটি"
 
 msgid "Invalid certificate chain"
-msgstr "অবৈধ প্রত্যয়ন পত্রের শৃঙ্খল"
+msgstr "অকার্যকর সার্টিফিকেট চেইন"
 
 # tithi
 #. vrq will be completed by user_auth
@@ -1774,29 +1795,27 @@
 "You have no database of root certificates, so this certificate cannot be "
 "validated."
 msgstr ""
-"আপনার মূল প্রত্যয়ন পত্রের কোনো উপাত্তধার নেই, সুতরাং এই প্রত্যয়ন পত্রটি বৈধ করা যাবে "
-"না।"
+"আপনার মূল সার্টিফিকেটের কোনো ডাটাবেস নেই, সুতরাং এই সার্টিফিকেটটির কার্যকারিতা "
+"পরীক্ষা করা যাবে না।"
 
 # tithi
 #. vrq will be completed by user_auth
 msgid ""
 "The root certificate this one claims to be issued by is unknown to Pidgin."
-msgstr "মূল প্রত্যয়ন পত্রটি যার দ্বারা প্রদান করা হয়েছে তা পিজিনের কাছে অপরিচিত।"
-
-# tithi
+msgstr "মূল সার্টিফিকেটটি যার দ্বারা প্রদান করা হয়েছে তা পিজিনের কাছে অপরিচিত।"
+
 #, c-format
 msgid ""
 "The certificate chain presented by %s does not have a valid digital "
 "signature from the Certificate Authority from which it claims to have a "
 "signature."
 msgstr ""
-"%s দ্বারা উপস্থাপিত প্রত্যয়ন পত্র শৃঙ্খলের প্রত্যয়ন পত্রের কর্তৃপক্ষ হতে প্রাপ্ত বৈধ "
-"ডিজিটাল স্বাক্ষর নেই যা দ্বারা এটি দাবী করে যে এর স্বাক্ষর আছে।"
+"%s দ্বারা উপস্থাপিত সার্টিফিকেট চেইনটির তার নিজের দ্বারা দাবিকৃত কর্তৃপক্ষ থেকে কোন "
+"বৈধ ডিজিটাল স্বাক্ষর নেই।"
 
 msgid "Invalid certificate authority signature"
-msgstr "অবৈধ প্রত্যয়ন পত্র কতৃপক্ষের স্বাক্ষর"
-
-# tithi
+msgstr "অকার্যকর সার্টিফিকেট কতৃপক্ষের স্বাক্ষর"
+
 #. Prompt the user to authenticate the certificate
 #. TODO: Provide the user with more guidance about why he is
 #. being prompted
@@ -1806,9 +1825,9 @@
 "The certificate presented by \"%s\" claims to be from \"%s\" instead.  This "
 "could mean that you are not connecting to the service you believe you are."
 msgstr ""
-"প্রত্যয়ন পত্রটি দাবি করে যে এটি \"%2s\" এর পরিবর্তে \"%1s\" দ্বারা উপস্থাপিত "
-"হয়েছে।  এটি বোঝাতে পার যে আপনি এমন সেবার সাথে সংযুক্ত নন যাতে আপনি আছেন বলে "
-"বিশ্বাস করেন।"
+"সার্টিফিকেটটি দাবি করে যে এটি \"%1$s\" এর পরিবর্তে \"%2$s\" দ্বারা উপস্থাপিত "
+"হয়েছে। এর অর্থ হতে পার যে, আপনি যে সার্ভিসের সাথে সংযুক্ত বলে মনে করছেন আসলে তা "
+"নয়।"
 
 # tithi
 #. Make messages
@@ -1821,62 +1840,61 @@
 "Activation date: %s\n"
 "Expiration date: %s\n"
 msgstr ""
-"সাধারণ নাম: %s\n"
+"সাধারণ নাম: %1$s\n"
 " \n"
-"হস্তাঙ্গুলির ছাপ (SHA1): %s\n"
-"\n"
-"সক্রিয়করণ তারিখ: %s\n"
-"মেয়াদ উত্তীর্ণের তারিখ: %s\n"
+"ফিঙ্গারপ্রিন্ট (SHA1): %2$s\n"
+"\n"
+"সক্রিয়করণ তারিখ: %3$s\n"
+"মেয়াদ উত্তীর্ণের তারিখ: %4$s\n"
 
 #. TODO: Find what the handle ought to be
 msgid "Certificate Information"
-msgstr "প্রত্যদন পত্রের তথ্য"
+msgstr "সার্টিফিকেটের তথ্য"
 
 msgid "Registration Error"
 msgstr "নিবন্ধন ত্রুটি"
 
 msgid "Unregistration Error"
-msgstr "নিবন্ধনহীন ত্রুটি"
+msgstr "অনিবন্ধন ত্রুটি"
 
 #, c-format
 msgid "+++ %s signed on"
-msgstr "+++ %s এখন অনলাইন "
+msgstr "+++ %s লগইন করেছে"
 
 #, c-format
 msgid "+++ %s signed off"
-msgstr "+++ %s এখন অফলাইন"
+msgstr "+++ %s লগআউট করেছে"
 
 #. Unknown error
-#. Unknown error!
 msgid "Unknown error"
 msgstr "অজানা ত্রুটি"
 
 msgid "Unable to send message: The message is too large."
-msgstr "বার্তা পাঠাতে সমর্থ নয়: বার্তাটি খুবই বড়।"
+msgstr "বার্তা পাঠাতে ব্যর্থ: বার্তাটি খুবই বড়।"
 
 #, c-format
 msgid "Unable to send message to %s."
-msgstr "%s-এ বার্তাটি পাঠাতে সমর্থ নয়।"
+msgstr "%s-কে বার্তা পাঠানো যায়নি।"
 
 msgid "The message is too large."
 msgstr "বার্তাটি খুবই বড়।"
 
 msgid "Unable to send message."
-msgstr "বার্তা পাঠাতে সমর্থ নয়।"
+msgstr "বার্তা পাঠানো যায়নি।"
 
 msgid "Send Message"
-msgstr "বার্তা প্রেরণ করুন"
+msgstr "বার্তা পাঠান"
 
 msgid "_Send Message"
-msgstr "বার্তা প্রেরণ করুন (_S)"
+msgstr "বার্তা পাঠান (_S)"
 
 #, c-format
 msgid "%s entered the room."
-msgstr "%s এই কক্ষে প্রবেশ করেছে।"
+msgstr "%s  আসরে প্রবেশ করেছে।"
 
 #, c-format
 msgid "%s [<I>%s</I>] entered the room."
-msgstr "%1s [<I>%2s</I>] এই কক্ষে প্রবেশ করেছে।"
+msgstr "%1$s [<I>%2$s</I>] আসরে প্রবেশ করেছে।"
 
 #, c-format
 msgid "You are now known as %s"
@@ -1884,20 +1902,19 @@
 
 #, c-format
 msgid "%s is now known as %s"
-msgstr "%1s এখন %2s নামে পরিচিত"
+msgstr "%1$s এখন %2$s নামে পরিচিত"
 
 #, c-format
 msgid "%s left the room."
-msgstr "%s এই কক্ষে ত্যাগ করেছে।"
+msgstr "%s আসর ত্যাগ করেছে।"
 
 #, c-format
 msgid "%s left the room (%s)."
-msgstr "%1s (%2s) এই কক্ষে ত্যাগ করেছে।"
-
-# tithi
-#, fuzzy
+msgstr "%1$s (%2$s) আসর ত্যাগ করেছে।"
+
+# tithi
 msgid "Invite to chat"
-msgstr "অধিবেশনে আমন্ত্রন জানান"
+msgstr "আড্ডায় আমন্ত্রন জানান"
 
 #. Put our happy label in it.
 msgid ""
@@ -1905,7 +1922,7 @@
 "invite message."
 msgstr ""
 "একটি ঐচ্ছিক আমন্ত্রণ বার্তা সহ, অনুগ্রহ করে আপনি যে ব্যবহারকারীকে আমন্ত্রণ জানাতে চান "
-"তার নামটি প্রবেশ করান।"
+"তার নামটি দিন।"
 
 #, c-format
 msgid "Failed to get connection: %s"
@@ -1919,48 +1936,48 @@
 msgid "Failed to get serv name: %s"
 msgstr "সার্ভার নাম পেতে ব্যর্থ: %s"
 
-# tithi
 msgid "Purple's D-BUS server is not running for the reason listed below"
-msgstr "Purple-এর D-BUS সার্ভার নিচের তালিকাভুক্ত কারণের জন্য চলছে না"
+msgstr "Purple-এর D-BUS সার্ভার নিম্নল্লিখিত কারণে চলছে না"
 
 msgid "No name"
 msgstr "কোনো নাম নেই"
 
+# ***
 msgid "Unable to create new resolver process\n"
-msgstr "নতুন সমাধান পদ্ধতি তৈরী করতে অক্ষম\n"
+msgstr "নতুন রিসলভার প্রসেস তৈরী করতে ব্যর্থ\n"
 
 msgid "Unable to send request to resolver process\n"
-msgstr "সমাধানকারীর পদ্ধতিতে অনুরোধ পাঠাতে অক্ষম\n"
+msgstr "রিসলভার প্রসেসে অনুরোধ পাঠাতে ব্যর্থ\n"
 
 #, c-format
 msgid ""
 "Error resolving %s:\n"
 "%s"
 msgstr ""
-"%1s সমাধানে ত্রুটি: \n"
-"%2s"
+"%1$s নিরূপণে ত্রুটি: \n"
+"%2$s"
 
 #, c-format
 msgid "Error resolving %s: %d"
-msgstr "%1s সমাধানে ত্রুটি: %2d"
+msgstr "%1$s নিরূপণে ত্রুটি: %2$d"
 
 #, c-format
 msgid ""
 "Error reading from resolver process:\n"
 "%s"
 msgstr ""
-"সমাধানকারীর পদ্ধতি হতে পড়ায় ত্রুটি:\n"
+"রিসলভার প্রসেস থেকে পড়ায় ত্রুটি:\n"
 "%s"
 
 # tithi
 #, c-format
 msgid "Resolver process exited without answering our request"
-msgstr "সমাধানকারী পদ্ধতি আমাদের অনুরোধের উত্তর না দিয়ে প্রস্থান করেছে"
+msgstr "রিসলভার প্রসেস অনুরোধের উত্তর না দিয়ে প্রস্থান করেছে"
 
 # tithi
 #, c-format
 msgid "Thread creation failure: %s"
-msgstr "থ্রেড সৃষ্টি ব্যর্থ: %s"
+msgstr "থ্রেড তৈরি করতে ব্যর্থ: %s"
 
 msgid "Unknown reason"
 msgstr "অজানা কারণ"
@@ -1970,42 +1987,42 @@
 "Error reading %s: \n"
 "%s.\n"
 msgstr ""
-"%1s পড়ায় ত্রুটি: \n"
-"%2s।\n"
+"%1$s পড়ায় ত্রুটি: \n"
+"%2$s।\n"
 
 #, c-format
 msgid ""
 "Error writing %s: \n"
 "%s.\n"
 msgstr ""
-"%1s লেখায় ত্রুটি: \n"
-"%2s।\n"
+"%1$s লেখায় ত্রুটি: \n"
+"%2$s।\n"
 
 #, c-format
 msgid ""
 "Error accessing %s: \n"
 "%s.\n"
 msgstr ""
-"%s-এ প্রবেশে ত্রুটি: \n"
-"%s।\n"
-
-# tithi
+"%1$s-এ প্রবেশে ত্রুটি: \n"
+"%2$s।\n"
+
 msgid "Directory is not writable."
-msgstr "নির্দেশিকা লিখনযোগ্য নয়।"
+msgstr "ডিরেক্টরি লিখনযোগ্য নয়।"
 
 msgid "Cannot send a file of 0 bytes."
-msgstr "০ বাইটের কোনো ফাইল পাঠাতে পারে না।"
+msgstr "০ বাইটের কোনো ফাইল পাঠানো সম্ভব নয়।"
 
 msgid "Cannot send a directory."
-msgstr "নির্দেশিকা পাঠাতে পারে না।"
-
+msgstr "ডিরেক্টরি পাঠানো সম্ভব নয়।"
+
+# ***
 #, c-format
 msgid "%s is not a regular file. Cowardly refusing to overwrite it.\n"
-msgstr "%s নিয়মিত কোনো ফাইল নয়। কাপুরুষোচিত ভাবে উপরিলেখ করতে প্রত্যাখ্যান করছে।\n"
+msgstr "%s কোনো স্বাভাবিক ফাইল নয়। অতিসন্তর্পণে উপরিলেখন প্রত্যাখ্যান করা হয়েছে।\n"
 
 #, c-format
 msgid "%s wants to send you %s (%s)"
-msgstr "%1s আপনাকে %2s (%3s) পাঠাতে চায়"
+msgstr "%1$s আপনাকে %2$s (%3$s) পাঠাতে চায়"
 
 #, c-format
 msgid "%s wants to send you a file"
@@ -2013,7 +2030,7 @@
 
 #, c-format
 msgid "Accept file transfer request from %s?"
-msgstr "%s এর ফাইল স্থানান্তর করার অনুরোধ গ্রহন করবেন কি?"
+msgstr "%s এর ফাইল স্থানান্তরের অনুরোধ গ্রহন করা হবে কি?"
 
 #, c-format
 msgid ""
@@ -2021,13 +2038,13 @@
 "Remote host: %s\n"
 "Remote port: %d"
 msgstr ""
-"একটি ফাইল যেখান থেকে ডাউনলোড করার জন্য সহজলভ্য:\n"
+"নিম্নবর্তী স্থান থেকে একটি ফাইল ডাউনলোডযোগ্য:\n"
 "দূরবর্তী হোস্ট: %s\n"
 "দূরবর্তী পোর্ট: %d"
 
 #, c-format
 msgid "%s is offering to send file %s"
-msgstr "%1s %2s ফাইলটি পাঠানোর প্রস্তাব দিচ্ছে"
+msgstr "%1$s %2$s ফাইলটি পাঠানোর প্রস্তাব দিচ্ছে"
 
 #, c-format
 msgid "%s is not a valid filename.\n"
@@ -2035,18 +2052,22 @@
 
 #, c-format
 msgid "Offering to send %s to %s"
-msgstr "%2s এ %1s পাঠানোর প্রস্তাব দিচ্ছে"
+msgstr "%2$s এ %1$s পাঠানোর প্রস্তাব দিচ্ছে"
 
 #, c-format
 msgid "Starting transfer of %s from %s"
-msgstr "%2s হতে %1s-এর স্থানান্তর শুরু হচ্ছে"
+msgstr "%2$s থেকে %1$s-এর স্থানান্তর শুরু হচ্ছে"
+
+#, c-format
+msgid "Transfer of file <A HREF=\"file://%s\">%s</A> complete"
+msgstr "<A HREF=\"file://%s\">%s</A> ফাইলের স্থানান্তর সম্পন্ন"
 
 #, c-format
 msgid "Transfer of file %s complete"
-msgstr "%s ফাইলের স্থানান্তর সম্পূর্ণ"
+msgstr "%s ফাইলের স্থানান্তর সম্পন্ন"
 
 msgid "File transfer complete"
-msgstr "ফাইল স্থানান্তর সম্পূর্ণ"
+msgstr "ফাইল স্থানান্তর সম্পন্ন"
 
 #, c-format
 msgid "You canceled the transfer of %s"
@@ -2057,7 +2078,7 @@
 
 #, c-format
 msgid "%s canceled the transfer of %s"
-msgstr "%1s %2s-এর স্থানান্তর বাতিল করেছে"
+msgstr "%1$s %2$s-এর স্থানান্তর বাতিল করেছে"
 
 #, c-format
 msgid "%s canceled the file transfer"
@@ -2065,49 +2086,46 @@
 
 #, c-format
 msgid "File transfer to %s failed."
-msgstr "%s এ ফাইলের স্থানান্তর ব্যর্থ হয়েছে।"
+msgstr "%s এ ফাইল স্থানান্তর ব্যর্থ হয়েছে।"
 
 #, c-format
 msgid "File transfer from %s failed."
-msgstr "%s থেকে ফাইলের স্থানান্তর ব্যর্থ হয়েছে।"
+msgstr "%s থেকে ফাইল স্থানান্তর ব্যর্থ হয়েছে।"
 
 msgid "Run the command in a terminal"
-msgstr "নির্দেশটি টার্মিনালে চালান"
+msgstr "কমান্ডটি টার্মিনালে চালান"
 
 # tithi
 msgid "The command used to handle \"aim\" URLs, if enabled."
-msgstr "যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"aim\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে, ‌‌\"aim\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"gg\" URLs, if enabled."
-msgstr "যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"gg\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে,  \"gg\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"icq\" URLs, if enabled."
-msgstr "যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"icq\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে,  \"icq\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"irc\" URLs, if enabled."
-msgstr "যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"irc\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে,  \"irc\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"msnim\" URLs, if enabled."
-msgstr ""
-"যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"msnim\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে,  \"msnim\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"sip\" URLs, if enabled."
-msgstr "যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"sip\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে, \"sip\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"xmpp\" URLs, if enabled."
-msgstr ""
-"যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"xmpp\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে,  \"xmpp\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The command used to handle \"ymsgr\" URLs, if enabled."
-msgstr ""
-"যদি সক্রিয় থাকে, এই নির্দেশটি ‌‌\"ymsgr\" এর URL নিয়ন্ত্রণ করতে ব্যবহার করা হয়।"
+msgstr "যদি সক্রিয় থাকে, \"ymsgr\" এর URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ড।"
 
 # tithi
 msgid "The handler for \"aim\" URLs"
@@ -2145,208 +2163,208 @@
 msgid ""
 "True if the command specified in the \"command\" key should handle \"aim\" "
 "URLs."
-msgstr "সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"aim\" এর URL নিয়ন্ত্রণ করে।"
+msgstr "সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"aim\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"gg\" "
 "URLs."
-msgstr "সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"gg\" এর URL নিয়ন্ত্রণ করে।"
+msgstr "সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"gg\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"icq\" "
 "URLs."
-msgstr "সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"icq\" এর URL নিয়ন্ত্রণ করে।"
+msgstr "সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"icq\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"irc\" "
 "URLs."
-msgstr "সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"irc\" এর URL নিয়ন্ত্রণ করে।"
+msgstr "সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"irc\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"msnim\" "
 "URLs."
 msgstr ""
-"সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"msnim\" এর URL নিয়ন্ত্রণ করে।"
+"সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"msnim\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"sip\" "
 "URLs."
-msgstr "সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"sip\" এর URL নিয়ন্ত্রণ করে।"
+msgstr "সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"sip\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"xmpp\" "
 "URLs."
-msgstr "সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"xmpp\" এর URL নিয়ন্ত্রণ করে।"
+msgstr ""
+"সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"xmpp\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command specified in the \"command\" key should handle \"ymsgr\" "
 "URLs."
 msgstr ""
-"সত্য যদি \"নির্দেশ\" কী-তে উল্লেখিত নির্দেশটি \"ymsgr\" এর URL নিয়ন্ত্রণ করে।"
+"সত্য, যদি \"command\" কী-তে উল্লেখিত কমান্ডটি \"ymsgr\" এর URL নিয়ন্ত্রণ করে।"
 
 # tithi
 msgid ""
 "True if the command used to handle this type of URL should be run in a "
 "terminal."
-msgstr "সত্য হবে যদি এই ধরনের URL নিয়ন্ত্রণ করতে ব্যবহৃত নির্দেশটি টার্মিনালে চলে। "
+msgstr "সত্য, হবে যদি এই ধরনের URL নিয়ন্ত্রণ করতে ব্যবহৃত কমান্ডটি টার্মিনালে চলে। "
 
 # tithi
 msgid "Whether the specified command should handle \"aim\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"aim\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"aim\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"gg\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"gg\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"gg\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"icq\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"icq\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"icq\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"irc\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"irc\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"irc\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"msnim\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"msnim\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"msnim\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"sip\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"sip\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"sip\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"xmpp\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"xmpp\" এর URL নিয়ন্ত্রণ করবে কিনা"
+msgstr "উল্লেখিত কমান্ডটি \"xmpp\" এর URL নিয়ন্ত্রণ করবে কিনা"
 
 # tithi
 msgid "Whether the specified command should handle \"ymsgr\" URLs"
-msgstr "উল্লেখিত নির্দেশটি \"ymsgr\" এর URL নিয়ন্ত্রণ করবে কিনা"
-
+msgstr "উল্লেখিত কমান্ডটি \"ymsgr\" এর URL নিয়ন্ত্রণ করবে কিনা"
+
+# ***
 msgid "<b><font color=\"red\">The logger has no read function</font></b>"
-msgstr "<b><font color=\"red\">এই লগাকারীর পাঠ করার কোনো  ফাংশন নেই</font></b>"
+msgstr "<b><font color=\"red\">এই লগারের কোনো read ফাংশন নেই</font></b>"
 
 msgid "HTML"
-msgstr "এইচটিএমএল"
+msgstr "HTML"
 
 msgid "Plain text"
-msgstr "সরল পাঠ"
+msgstr "সরল টেক্সট"
 
 # tithi
 msgid "Old flat format"
-msgstr "পুরাতন সম্পূর্ণ বিন্যাস"
+msgstr "পুরাতন সরল বিন্যাস"
 
 msgid "Logging of this conversation failed."
-msgstr "এই কথোপকথোনে সংযুক্তকরণ ব্যর্থ।"
+msgstr "এই কথোপকথন লগ করতে ব্যর্থ।"
 
 msgid "XML"
-msgstr "এক্সএমএল"
-
+msgstr "XML"
+
+# ***
 #, c-format
 msgid ""
 "<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-"
 "REPLY&gt;:</b></font> %s<br/>\n"
 msgstr ""
-"<font color=\"#16569E\"><font size=\"2\">(%1s)</font> <b>%2s &3lt;স্বয়ংক্রিয়-"
-"উত্তর&4gt;:</b></font> %5s<br/>\n"
-
+"<font color=\"#16569E\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-"
+"REPLY&gt;:</b></font> %s<br/>\n"
+
+# ***
 #, c-format
 msgid ""
 "<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-"
 "REPLY&gt;:</b></font> %s<br/>\n"
 msgstr ""
-"<font color=\"#A82F2F\"><font size=\"2\">(%1s)</font> <b>%2s &3lt;স্বয়ংক্রিয়-"
-"উত্তর&4gt;:</b></font> %5s<br/>\n"
-
+"<font color=\"#A82F2F\"><font size=\"2\">(%s)</font> <b>%s &lt;AUTO-"
+"REPLY&gt;:</b></font> %s<br/>\n"
+
+# ***
 msgid "<font color=\"red\"><b>Unable to find log path!</b></font>"
-msgstr "<font color=\"red\"><b>লগ পথ খুঁজতে অক্ষম</b></font>"
+msgstr "<font color=\"red\"><b>লগ পাথ খুঁজে পাওয়া যায়নি!</b></font>"
 
 #, c-format
 msgid "<font color=\"red\"><b>Could not read file: %s</b></font>"
-msgstr "<font color=\"red\"><b>ফাইল পড়তে পারেনি: %s</b></font>"
+msgstr "<font color=\"red\"><b>ফাইল পড়া সম্ভব হয়নি: %s</b></font>"
 
 #, c-format
 msgid "(%s) %s <AUTO-REPLY>: %s\n"
-msgstr "(%1s) %2s <AUTO-REPLY>: %3s\n"
-
-# tithi
-#, fuzzy
+msgstr "(%s) %s <AUTO-REPLY>: %s\n"
+
+# tithi
 msgid "Error creating conference."
-msgstr "সংযোগ তৈরিতে ত্রুটি"
-
-# tithi
+msgstr "অধিবেশন তৈরিতে ত্রুটি"
+
 #, c-format
 msgid "You are using %s, but this plugin requires %s."
-msgstr "আপনি %1s ব্যবহার করছেন, কিন্তু এই প্লাগইনের %2s প্রয়োজন।"
-
-# tithi
+msgstr "আপনি %1$s ব্যবহার করছেন, কিন্তু এই প্লাগইনের %2$s প্রয়োজন।"
+
 msgid "This plugin has not defined an ID."
-msgstr "এই প্লাগইন একটি আইডি নির্ধারণ করেনি।"
-
-# tithi
+msgstr "এই প্লাগইন কোন ID নির্ধারণ করেনি।"
+
 #, c-format
 msgid "Plugin magic mismatch %d (need %d)"
-msgstr "প্লাগইন ম্যাজিক %1d এর সাথে মিলে না (%2d প্রয়োজন)"
-
-# tithi
+msgstr "প্লাগইন ম্যাজিকের সাথে অমিল %1$d (%2$d প্রয়োজন)"
+
 #, c-format
 msgid "ABI version mismatch %d.%d.x (need %d.%d.x)"
-msgstr "ABI সংস্করণ %1d এর সাথে মিলে না।%2d.x (%3d.%4d.x প্রয়োজন)"
+msgstr "ABI সংস্করণ এ অমিল %d.%d.x (%d.%d.x প্রয়োজন)"
 
 # tithi
 msgid ""
 "Plugin does not implement all required functions (list_icon, login and close)"
-msgstr ""
-"প্লাগইন সকল প্রয়োজনীয় ফাংশন বাস্তবায়ন করে না (লিস্ট-আইকন (_i), লগইন এবং বন্ধ করুন)"
+msgstr "প্লাগইন সব প্রয়োজনীয় ফাংশন বাস্তবায়ন করে না (list_icon, login and close)"
 
 #, c-format
 msgid ""
 "The required plugin %s was not found. Please install this plugin and try "
 "again."
 msgstr ""
-"প্রয়োজনীয় প্লাগইন %s খুঁজে পাওয়া যায়নি। অনুগ্রহ করে এই প্লাগইনটি সংস্থাপন করুন এবং "
+"প্রয়োজনীয় প্লাগইন %s খুঁজে পাওয়া যায়নি। অনুগ্রহ করে এই প্লাগইনটি ইনস্টল করুন এবং "
 "পুনরায় চেষ্টা করুন।"
 
 msgid "Unable to load the plugin"
-msgstr "প্লাগইনটি লোড করতে অক্ষম"
+msgstr "প্লাগইনটি লোড করতে ব্যর্থ"
 
 #, c-format
 msgid "The required plugin %s was unable to load."
-msgstr "প্রয়োজনীয় প্লাগইন %s লোড করতে অক্ষম।"
+msgstr "প্রয়োজনীয় প্লাগইন %s লোড হতে ব্যর্থ।"
 
 msgid "Unable to load your plugin."
-msgstr "আপনার প্লাগইনটি লোড করতে অক্ষম।"
+msgstr "আপনার প্লাগইনটি লোড করতে ব্যর্থ।"
 
 #, c-format
 msgid "%s requires %s, but it failed to unload."
-msgstr "%1s এর %2s প্রয়োজন, কিন্তু এটি লোডহীন করতে ব্যর্থ।"
-
+msgstr "%1$s এর %2$s প্রয়োজন, কিন্তু এটি আনলোড করতে ব্যর্থ হয়েছে।"
+
+# ***
 msgid "Autoaccept"
-msgstr "স্বয়ংক্রিয়-গ্রহণ"
+msgstr "স্বয়ংক্রিয়ভাবে গ্রহন"
 
 msgid "Auto-accept file transfer requests from selected users."
-msgstr "নির্বাচিত ব্যবহারকারীর কাছ থেকে স্বয়ং-গ্রহণ ফাইলের স্থানান্তর অনুরোধ করছে।"
+msgstr "নির্বাচিত ব্যবহারকারী থেকে ফাইল স্থানান্তরের অনুরোধ স্বয়ংক্রিয়ভাবে গৃহীত হবে।"
 
 #, c-format
 msgid "Autoaccepted file transfer of \"%s\" from \"%s\" completed."
-msgstr "\"%1s\" হতে \"%2s\" স্বয়ং-গৃহীত ফাইল স্থানান্তর সম্পূর্ণ হয়েছে।"
+msgstr "\"%2$s\" থেকে স্বয়ংক্রিয়ভাবে গৃহীত \"%1$s\" ফাইল স্থানান্তর সম্পন্ন।"
 
 msgid "Autoaccept complete"
-msgstr "স্বয়ং-গ্রহণ সম্পন্ন"
+msgstr "স্বয়ংক্রিয়ভাবে গ্রহন সম্পন্ন"
 
 #, c-format
 msgid "When a file-transfer request arrives from %s"
-msgstr "যখন %s থেকে ফাইল-স্থানান্তর অনুরোধ পৌছায়"
+msgstr "যখন %s থেকে ফাইল স্থানান্তরের অনুরোধ আসে"
 
 # tithi
 msgid "Set Autoaccept Setting"
-msgstr "স্বয়ং-গ্রহণ বিন্যাসন নির্ধারণ করুন"
+msgstr "স্বয়ংক্রিয়ভাবে গ্রহনের সেটিং নির্ধারণ"
 
 msgid "_Save"
 msgstr "সংরক্ষণ (_S)"
@@ -2356,48 +2374,47 @@
 
 # tithi
 msgid "Ask"
-msgstr "জিজ্ঞাসা করুন"
+msgstr "জিজ্ঞাসা করা হবে"
 
 msgid "Auto Accept"
-msgstr "স্বয়ং গ্রহণ করুন"
+msgstr "স্বয়ংক্রিয়ভাবে গৃহীত হবে"
 
 msgid "Auto Reject"
-msgstr "স্বয়ং প্রত্যাখ্যান করুন"
+msgstr "স্বয়ংক্রিয়ভাবে প্রত্যাখ্যাত হবে"
 
 msgid "Autoaccept File Transfers..."
-msgstr "স্বয়ংক্রিয়-গ্রহণ ফাইল স্থানান্তর করে..."
-
-# tithi
+msgstr "স্বয়ংক্রিয় ফাইল স্থানান্তর..."
+
 #. XXX: Is there a better way than this? There really should be.
 msgid ""
 "Path to save the files in\n"
 "(Please provide the full path)"
 msgstr ""
-"ফাইলটি সংরক্ষণ করার পথ\n"
-"(অনুগ্রহ করে সম্পূর্ণ পথ প্রদান করুন)"
+"ফাইল সংরক্ষণের ‍‍পাথ\n"
+"(অনুগ্রহ করে সম্পূর্ণ পাথ প্রদান করুন)"
 
 msgid "Automatically reject from users not in buddy list"
-msgstr "বন্ধু তালিকার বহির্ভুত ব্যবহারকারীগণ হতে স্বয়ংক্রিয় ভাবে বাতিল করুন"
+msgstr "বন্ধু তালিকার বহির্ভূত ব্যবহারকারী থেকে স্বয়ংক্রিয় ভাবে বাতিল করা হবে"
 
 # tithi
 msgid ""
 "Notify with a popup when an autoaccepted file transfer is complete\n"
 "(only when there's no conversation with the sender)"
 msgstr ""
-"একটি স্বয়ং-গৃহীত ফাইল স্থানান্তর সম্পূর্ণ হলে পপ-আপ দ্বারা অবগত করুন\n"
-"(শুধুমাত্র যখন প্রেরকের সঙ্গে কোনো কথোপকথন হয় না)"
+"স্বয়ংক্রিয়ভাবে ফাইল গ্রহন সম্পন্ন হলে একটি পপ-আপ দ্বারা অবগত করা হবে\n"
+"(শুধুমাত্র যখন প্রেরকের সঙ্গে কোনো কথোপকথন হয়নি)"
 
 msgid "Create a new directory for each user"
-msgstr "প্রত্যেক ব্যবহারকারীর জন্য একটি নির্দেশিকা তৈরী করুন"
+msgstr "প্রত্যেক ব্যবহারকারীর জন্য একটি নতুন ডিরেক্টরি তৈরী করা হবে"
 
 msgid "Notes"
 msgstr "নোট"
 
 msgid "Enter your notes below..."
-msgstr "আপনার নোটগুলো নীচে প্রবেশ করান..."
+msgstr "আপনার নোটগুলো নিচে লিখুন..."
 
 msgid "Edit Notes..."
-msgstr "নোট সম্পাদন করুন..."
+msgstr "নোট সম্পাদনা..."
 
 #. *< major version
 #. *< minor version
@@ -2414,13 +2431,13 @@
 #. *< name
 #. *< version
 msgid "Store notes on particular buddies."
-msgstr "নির্দিষ্ট বন্ধুদের কাছে নোট সলরক্ষণ করুন"
-
-# tithi
+msgstr "নির্দিষ্ট বন্ধু সম্পর্কে নোট সংরক্ষণ"
+
 #. *< summary
 msgid "Adds the option to store notes for buddies on your buddy list."
-msgstr "আপনার বন্ধু তালিকায় বন্ধুদের জন্য নোট সংরক্ষণ করতে পছন্দ যোগ করে।"
-
+msgstr "আপনার বন্ধু তালিকার বন্ধুদের সম্পর্কে নোট সংরক্ষণ করার অপশন যোগ করে।"
+
+# ***
 #. *< type
 #. *< ui_requirement
 #. *< flags
@@ -2430,13 +2447,13 @@
 msgid "Cipher Test"
 msgstr "সাইফার পরীক্ষা"
 
-# fix me tithi
+# ***
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Tests the ciphers that ship with libpurple."
-msgstr "লিবপার্পল সহ সিপ করে এমন সাইফারগুলো পরীক্ষা করে।"
+msgstr "libpurple সাথে প্রেরিত সাইফারগুলো পরীক্ষা করে।"
 
 #. *< type
 #. *< ui_requirement
@@ -2461,14 +2478,15 @@
 #. *< priority
 #. *< id
 msgid "File Control"
-msgstr "ফাইল নিয়ন্ত্রণ করুন"
-
+msgstr "ফাইল নিয়ন্ত্রণ"
+
+# ***
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Allows control by entering commands in a file."
-msgstr "ফাইলে নির্দেশসমূহ প্রবেশ করার মাধ্যমে নিয়ন্ত্রণ অনুমোদন করুন।"
+msgstr "ফাইলে কমান্ড লিখে নিয়ন্ত্রণ করতে সাহায্য করে।"
 
 msgid "Minutes"
 msgstr "মিনিট"
@@ -2476,31 +2494,32 @@
 #. This is a cultural reference.  Dy'er Mak'er is a song by Led Zeppelin.
 #. If that doesn't translate well into your language, drop the 's before translating.
 msgid "I'dle Mak'er"
-msgstr "অ'লস তৈরীকার'ক"
+msgstr "I'dle Mak'er"
 
 msgid "Set Account Idle Time"
-msgstr "একাউন্টের অলস সময় নির্ধারণ করুন"
+msgstr "একাউন্টের নিষ্ক্রিয় সময় নির্ধারণ"
 
 msgid "_Set"
 msgstr "নির্ধারণ (_S)"
 
 msgid "None of your accounts are idle."
-msgstr "আপনার কোনো একাউন্ট অলস নেই।"
+msgstr "আপনার কোনো একাউন্ট নিষ্ক্রিয় নয়।"
 
 msgid "Unset Account Idle Time"
-msgstr "একাউন্টের অলস সময় অপসারণ করুন"
-
+msgstr "একাউন্টের নিষ্ক্রিয় সময় অপসারণ"
+
+# ***
 msgid "_Unset"
-msgstr "অনির্ধারণ করুন (_U)"
+msgstr "আনসেট (_U)"
 
 msgid "Set Idle Time for All Accounts"
-msgstr "সব একাউন্টের জন্য অলস সময় নির্ধারণ করুন"
+msgstr "সব একাউন্টের জন্য নিষ্ক্রিয় সময় নির্ধারণ"
 
 msgid "Unset Idle Time for All Idled Accounts"
-msgstr "সব অলস একাউন্টের জন্য অলস সময় অপসারণ করুন"
+msgstr "সব নিষ্ক্রিয় একাউন্টের জন্য নিষ্ক্রিয় সময় অপসারণ"
 
 msgid "Allows you to hand-configure how long you've been idle"
-msgstr "আপনি কতক্ষণ অলস থাকবেন তা আপনাকে নিজ হাতে-বিন্যাস করতে অনুমোদন করে"
+msgstr "আপনি কতক্ষণ নিষ্ক্রিয় তা আপনি নিজেই কনফিগার করতে পারবেন"
 
 #. *< type
 #. *< ui_requirement
@@ -2515,15 +2534,16 @@
 #. *< version
 #. *  summary
 msgid "Test plugin IPC support, as a client."
-msgstr "ক্লায়েন্ট হিসেবে, প্লাগইনের IPC সমর্থন পরীক্ষা করুন।"
-
+msgstr "ক্লায়েন্ট হিসেবে, প্লাগইনের IPC সাপোর্ট পরীক্ষা করা হবে।"
+
+# ***
 #. *  description
 msgid ""
 "Test plugin IPC support, as a client. This locates the server plugin and "
 "calls the commands registered."
 msgstr ""
-"ক্লায়েন্ট হিসেবে, প্লাগইনের IPC সমর্থন পরীক্ষা করুন। এটি সার্ভার প্লাগইন চিহ্নিত করে "
-"এবং নিবন্ধিত নির্দেশগুলো পরীক্ষা করে।"
+"ক্লায়েন্ট হিসেবে, প্লাগইনের IPC সাপোর্ট পরীক্ষা করা হবে। এটি সার্ভার প্লাগইন চিহ্নিত "
+"করে এবং নিবন্ধিত কমান্ডগুলো চালায়।"
 
 #. *< type
 #. *< ui_requirement
@@ -2538,27 +2558,28 @@
 #. *< version
 #. *  summary
 msgid "Test plugin IPC support, as a server."
-msgstr "সার্ভার হিসেবে, প্লাগইনের IPC সমর্থন পরীক্ষা করুন।"
+msgstr "সার্ভার হিসেবে, প্লাগইনের IPC সাপোর্ট পরীক্ষা করা হবে।"
 
 #. *  description
 msgid "Test plugin IPC support, as a server. This registers the IPC commands."
 msgstr ""
-"সার্ভার হিসেবে, প্লাগইনের IPC সমর্থন পরীক্ষা করুন। এটি IPC নির্দেশগুলো নিবন্ধন করে।"
-
+"সার্ভার হিসেবে, প্লাগইনের IPC সাপোর্ট পরীক্ষা করা হবে। এটি IPC কমান্ডগুলো নিবন্ধন "
+"করে।"
+
+# ***
 msgid "Join/Part Hiding Configuration"
-msgstr "লুকানো বিন্যাসকরণ যুক্ত/বিভক্ত করুন"
+msgstr "লুকানো কনফিগারেশন যুক্ত/বিভক্ত করা হবে"
 
 # tithi
 msgid "Minimum Room Size"
-msgstr "নূন্যতম কক্ষের আকার"
+msgstr "আসরের নূন্যতম আকার"
 
 # tithi
 msgid "User Inactivity Timeout (in minutes)"
-msgstr "ব্যবহারকারীর নিষ্ক্রয়তার সময়সীমা উত্তীর্ণ (মিনিটে)"
-
-# tithi
+msgstr "ব্যবহারকারীর মিথস্ক্রিয়তার সময়সীমা উত্তীর্ণ (মিনিটে)"
+
 msgid "Apply hiding rules to buddies"
-msgstr "বন্ধুদের উপর লুকানোর নিয়ম প্রয়োগ করুন"
+msgstr "বন্ধুদের লুকানোর নিয়ম প্রয়োগ করুন"
 
 # tithi
 #. *< type
@@ -2575,16 +2596,16 @@
 #. *< version
 #. *  summary
 msgid "Hides extraneous join/part messages."
-msgstr "অসংশ্লিষ্ট যুক্ত/বিভক্ত বার্তাগুলো গোপন করে।"
-
-# tithi
+msgstr "যুক্ত/বিভক্ত এর অতিরিক্ত বার্তাগুলো লুকিয়ে রাখে।"
+
+# ***
 #. *  description
 msgid ""
 "This plugin hides join/part messages in large rooms, except for those users "
 "actively taking part in a conversation."
 msgstr ""
-"এই প্লাগইন যুক্ত/বিভক্ত বার্তাগুলোকে বৃহৎ কক্ষে লুকিয়ে রাখে, কথোপকথনে সক্রিয়ভাবে "
-"অংশগ্রহনকারী ঐসব ব্যবহারকারী ব্যতীত।"
+"এই প্লাগইন বড় আসরের যুক্ত/বিভক্ত বার্তাগুলোকে লুকিয়ে রাখে, শুধুমাত্র কথোপকথনে "
+"সক্রিয়ভাবে অংশগ্রহনকারী ব্যবহারকারী ব্যতীত।"
 
 #. This is used in the place of a timezone abbreviation if the
 #. * offset is way off.  The user should never really see it, but
@@ -2597,26 +2618,27 @@
 msgstr "ব্যবহারকারী অফলাইনে।"
 
 msgid "Auto-response sent:"
-msgstr "স্বয়ং-জবাব পাঠানো হয়েছে:"
+msgstr "স্বয়ংক্রিয় জবাব পাঠানো হয়েছে:"
 
 #, c-format
 msgid "%s has signed off."
-msgstr "%s অফলাইনে।"
+msgstr "%s লগআউট করেছে।"
 
 msgid "One or more messages may have been undeliverable."
-msgstr "এক বা একাধিক বার্তা পাঠানো যাচ্ছে না।"
+msgstr "এক বা একাধিক বার্তা পাঠানো সম্ভব হয়নি।"
 
 msgid "You were disconnected from the server."
-msgstr "আপনি সার্ভার থেকে বিচ্ছিন্ন ছিলেন।"
-
+msgstr "আপনি সার্ভার থেকে বিচ্ছিন্ন হয়ে গেছেন।"
+
+# mark9
 msgid ""
 "You are currently disconnected. Messages will not be received unless you are "
 "logged in."
 msgstr ""
-"আপনি বর্তমানে বিচ্ছিন্ন। আপনি লগ ইন না করা পর্যন্ত বার্তাসমূহ গ্রহণ করা হবে না।"
+"আপনার সংযোগ বর্তমানে বিচ্ছিন্ন। আপনি লগইন না করা পর্যন্ত বার্তা গ্রহণ করা যাবে না।"
 
 msgid "Message could not be sent because the maximum length was exceeded."
-msgstr "সর্বোচ্চ সীমা অতিক্রান্ত হওয়ায় বার্তা পাঠানো যাচ্ছে না।"
+msgstr "সর্বোচ্চ সীমা অতিক্রম করায় বার্তা পাঠানো সম্ভব হয়নি।"
 
 msgid "Message could not be sent."
 msgstr "বার্তা পাঠানো সম্ভব হয়নি।"
@@ -2625,19 +2647,19 @@
 #. translators who wanted to transliterate them.  Many translators
 #. choose to leave them alone.  Choose what's best for your language.
 msgid "Adium"
-msgstr "অডিয়াম"
+msgstr "Adium"
 
 #. The names of IM clients are marked for translation at the request of
 #. translators who wanted to transliterate them.  Many translators
 #. choose to leave them alone.  Choose what's best for your language.
 msgid "Fire"
-msgstr "আগুন"
+msgstr "Fire"
 
 #. The names of IM clients are marked for translation at the request of
 #. translators who wanted to transliterate them.  Many translators
 #. choose to leave them alone.  Choose what's best for your language.
 msgid "Messenger Plus!"
-msgstr "বার্তাবাহক প্লাস!"
+msgstr "Messenger Plus!"
 
 # tithi
 #. The names of IM clients are marked for translation at the request of
@@ -2650,13 +2672,13 @@
 #. translators who wanted to transliterate them.  Many translators
 #. choose to leave them alone.  Choose what's best for your language.
 msgid "MSN Messenger"
-msgstr "এমএসএন বার্তাবাহক"
+msgstr "MSN Messenger"
 
 #. The names of IM clients are marked for translation at the request of
 #. translators who wanted to transliterate them.  Many translators
 #. choose to leave them alone.  Choose what's best for your language.
 msgid "Trillian"
-msgstr "ট্রিলিয়ান"
+msgstr "Trillian"
 
 # tithi
 #. The names of IM clients are marked for translation at the request of
@@ -2665,20 +2687,22 @@
 msgid "aMSN"
 msgstr "aMSN"
 
+# ***
 #. Add general preferences.
 msgid "General Log Reading Configuration"
-msgstr "সাধারণ লগ পড়ার বিন্যাসন"
-
+msgstr "লগ পড়ার সাধারণ কনফিগারেশন"
+
+# ***
 msgid "Fast size calculations"
-msgstr "দ্রুত আকার গণনাসমূহ"
+msgstr "দ্রুত আকার পরিমাপ"
 
 # fix me- tithi
 msgid "Use name heuristics"
-msgstr "নাম হিউরিস্টিক ব্যবহার করুন"
+msgstr "নামের হিউরিস্টিক ব্যবহার করা হবে"
 
 #. Add Log Directory preferences.
 msgid "Log Directory"
-msgstr "লগ নির্দেশিকা"
+msgstr "লগ ডিরেক্টরি"
 
 #. *< type
 #. *< ui_requirement
@@ -2693,10 +2717,10 @@
 #. *< version
 #. * summary
 msgid "Includes other IM clients' logs in the log viewer."
-msgstr "লগ প্রদর্শকে অন্যান্য আইএম ক্লায়েন্টদের লগসমূহ অন্তর্ভুক্ত করে।"
-
+msgstr "লগ প্রদর্শকে অন্যান্য IM ক্লায়েন্টদের লগ অন্তর্ভুক্ত করে।"
+
+# ***
 #. * description
-#, fuzzy
 msgid ""
 "When viewing logs, this plugin will include logs from other IM clients. "
 "Currently, this includes Adium, MSN Messenger, aMSN, and Trillian.\n"
@@ -2704,25 +2728,26 @@
 "WARNING: This plugin is still alpha code and may crash frequently.  Use it "
 "at your own risk!"
 msgstr ""
-"যখন লগ প্রদর্শন‌ করে, তখন এই প্লাগইন অন্যান্য আইএম ক্লায়েন্টদের লগ অন্তর্ভুক্ত করবে। "
-"বর্তমানে, এটা অডিয়াম, এমএসএন ম্যাসেঞ্জার, এবং ট্রিলিয়ান অন্তর্ভুক্ত করে।\n"
-"\n"
-"সতর্কতা: এই প্লাগইনটি এখনও আলফা কোড এবং প্রায়সই নষ্ট হতে পারে।  আপনার নিজ "
-"দ্বায়িত্বে ব্যবহার করুন!"
-
+"লগ প্রদর্শন‌ করার সময় এই প্লাগইন অন্যান্য IM ক্লায়েন্টদের লগ অন্তর্ভুক্ত করবে। বর্তমানে, "
+"এটা Adium, MSN Messenger,aMSN এবং Trillian অন্তর্ভুক্ত করে।\n"
+"\n"
+"সতর্কবানী: এই প্লাগইনটি এখনও আলফা কোড এবং প্রায়ই ক্র্যাশ করতে পারে। নিজ দ্বায়িত্বে "
+"ব্যবহার করুন!"
+
+# ***
 msgid "Mono Plugin Loader"
-msgstr "মোনো প্লাগইন লোডকারী"
+msgstr "Mono প্লাগইন লোডার"
 
 # sam: mono?
 msgid "Loads .NET plugins with Mono."
-msgstr "মোনো এর সাথে .NET প্লাগইন লোড করে"
+msgstr "Mono এর সাথে .NET প্লাগইন লোড করে"
 
 # tithi
 msgid "Add new line in IMs"
-msgstr "আইএম এ নতুন লাইন যোগ করুন"
+msgstr "IM এ নতুন লাইন যোগ করা হবে"
 
 msgid "Add new line in Chats"
-msgstr "আড্ডায় নতুন লাইন যোগ করুন"
+msgstr "আড্ডায় নতুন লাইন যোগ করা হবে"
 
 #. *< magic
 #. *< major version
@@ -2739,32 +2764,27 @@
 #. *< name
 #. *< version
 msgid "Prepends a newline to displayed message."
-msgstr "প্রদর্শিত বার্তায় নতুন-লাইন যোগ করে।"
-
-# tithi
+msgstr "প্রদর্শিত বার্তার শুরুতে নতুন-লাইন যোগ করে।"
+
 #. *< summary
 msgid ""
 "Prepends a newline to messages so that the rest of the message appears below "
 "the username in the conversation window."
 msgstr ""
-"বার্তাসমূহে একটি নতুন লাইন যোগ করার ফলে কথোপকথন উইন্ডোর ব্যবহারকারীর নামের অধীনে "
-"অবশিষ্ট বার্তাসমূহ উপস্থিত হয়।"
-
-# tithi
+"কথোপকথন উইন্ডোর শুরুতে একটি নতুন লাইন যোগ করে যাতে অবশিষ্ট বার্তা ব্যবহারকারীর "
+"নামের নীচে থাকে।"
+
 msgid "Offline Message Emulation"
-msgstr "অফলাইন বার্তা অনুকরন করুন"
-
-# tithi
+msgstr "অফলাইন বার্তা অনুকরণ"
+
 msgid "Save messages sent to an offline user as pounce."
-msgstr "অফলাইন ব্যবহারকারীকে পাঠানো বার্তা পাউন্স হিসেবে সংরক্ষণ করুন।"
-
-# tithi
-#, fuzzy
+msgstr "অফলাইন ব্যবহারকারীকে পাঠানো বার্তা পাউন্স হিসেবে সংরক্ষিত হবে।"
+
 msgid ""
 "The rest of the messages will be saved as pounces. You can edit/delete the "
 "pounce from the `Buddy Pounce' dialog."
 msgstr ""
-"অবশিষ্ট বার্তাগুলো পাউন্স হিসেবে সংরক্ষিত হবে। আপনি 'বন্ধু পাউন্স' সংলাপ হতে পাউন্স "
+"অবশিষ্ট বার্তাগুলো পাউন্স হিসেবে সংরক্ষিত হবে। আপনি 'বন্ধু পাউন্স' ডায়ালগ থেকে পাউন্স "
 "সম্পাদনা/মুছে ফেলতে পারেন।"
 
 #, c-format
@@ -2772,15 +2792,15 @@
 "\"%s\" is currently offline. Do you want to save the rest of the messages in "
 "a pounce and automatically send them when \"%s\" logs back in?"
 msgstr ""
-"\"%s\" বর্তমানে অফলাইনে আছেন। আপনি কি অবশিষ্ট বার্তাগুলো পাউন্সে সংরক্ষণ করতে চান "
-"এবং \"%s\" যখন পুনরায় লগইন করে তখন তাদেরকে স্বয়ংক্রিয় ভাবে পাঠাতে চান?"
+"\"%s\" বর্তমানে অফলাইন। আপনি কি \"%s\" যখন পুনরায় লগইন করে তখন অবশিষ্ট বার্তাগুলো "
+"পাউন্সে সংরক্ষণ করে তাদেরকে স্বয়ংক্রিয় ভাবে পাঠাতে চান?"
 
 msgid "Offline Message"
 msgstr "অফলাইন বার্তা"
 
-# tithi
+# mark10
 msgid "You can edit/delete the pounce from the `Buddy Pounces' dialog"
-msgstr "আপনি 'বন্ধু পাউন্স' সংলাপ হতে পাউন্স সম্পাদনা/মুছে ফেলতে পারেন।"
+msgstr "আপনি 'বন্ধু পাউন্স' ডায়ালগ থেকে পাউন্স সম্পাদনা করতে বা মুছে ফেলতে পারেন।"
 
 msgid "Yes"
 msgstr "হ্যাঁ"
@@ -2790,16 +2810,16 @@
 
 # tithi
 msgid "Save offline messages in pounce"
-msgstr "অফলাইন বার্তা পাউন্সে সংরক্ষণ করুন"
-
-# tithi
+msgstr "অফলাইন বার্তা পাউন্সে সংরক্ষণ করা হবে"
+
 msgid "Do not ask. Always save in pounce."
-msgstr "জিজ্ঞাসা করবেন না। সবসময় পাউন্সে সংরক্ষণ করুন।"
-
-#, fuzzy
+msgstr "জিজ্ঞাসা করা হবে না। সবসময় পাউন্সে সংরক্ষণ করা হবে।"
+
+# বা একবার ব্যবহারযোগ্য পাসওয়ার্ড
 msgid "One Time Password"
-msgstr "গুপ্তসংকেত প্রবেশ করান"
-
+msgstr "এককালীন পাসওয়ার্ড"
+
+# Context?
 #. *< type
 #. *< ui_requirement
 #. *< flags
@@ -2807,13 +2827,13 @@
 #. *< priority
 #. *< id
 msgid "One Time Password Support"
-msgstr ""
+msgstr "এককালীন পাসওয়ার্ড সাপোর্ট"
 
 #. *< name
 #. *< version
 #. *  summary
 msgid "Enforce that passwords are used only once."
-msgstr ""
+msgstr "পাসওয়ার্ড যেনো মাত্র একবারই ব্যবহৃত হয় তা নিশ্চিত করা হবে।"
 
 #. *  description
 msgid ""
@@ -2821,7 +2841,11 @@
 "are only used in a single successful connection.\n"
 "Note: The account password must not be saved for this to work."
 msgstr ""
-
+"প্রতি একাউন্টের জন্য আপনি আলাদাভাবে নিশ্চিত করতে পারেন যে, অসংরক্ষিত পাসওয়ার্ড "
+"শুধুমাত্র একটি সফল সংযোগের জন্য ব্যবহৃত হবে।\n"
+"নোট: এটি কাজ করার জন্য একাউন্টের পাসওয়ার্ডটি সংরক্ষিত হওয়া জরুরি নয়।"
+
+# ***
 #. *< type
 #. *< ui_requirement
 #. *< flags
@@ -2829,45 +2853,46 @@
 #. *< priority
 #. *< id
 msgid "Perl Plugin Loader"
-msgstr "পার্ল প্লাগইন লোডকারী"
+msgstr "পার্ল প্লাগইন লোডার"
 
 #. *< name
 #. *< version
 #. *< summary
 msgid "Provides support for loading perl plugins."
-msgstr "পার্ল প্লাগইন লোড করার জন্য সমর্থন করে।"
+msgstr "পার্ল প্লাগইন লোড করার জন্য সাপোর্ট প্রদান করে।"
 
 # tithi
 msgid "Psychic Mode"
-msgstr "সাইকিক পরিমন্ডল"
+msgstr "সাইকিক মোড"
 
 # fix me tithi
 msgid "Psychic mode for incoming conversation"
-msgstr "আগত কথোপকথোনের জন্য সাইকিক পরিমন্ডল"
+msgstr "আগত কথোপকথনের জন্য সাইকিক মোড"
 
 msgid ""
 "Causes conversation windows to appear as other users begin to message you.  "
 "This works for AIM, ICQ, XMPP, Sametime, and Yahoo!"
 msgstr ""
-"অন্যান্য ব্যবহারকারীরা আপনাকে বার্তা পাঠাতে শুরু করার কারণে কথোপকথন উইন্ডোজ উপস্থিত "
-"হয়।  এটি AIM, ICQ, XMPP, Sametime, এবং Yahoo এর জন্য কাজ করে!"
+"অন্যান্য ব্যবহারকারীরা বার্তা পাঠাতে শুরু করলে কথোপকথনের উইন্ডো খুলতে শুরু করে। এটি "
+"AIM, ICQ, XMPP, Sametime, এবং Yahoo! এর জন্য কাজ করে।"
 
 # tithi
 msgid "You feel a disturbance in the force..."
-msgstr "আপনি গতিতে একটি অসুবিধা অনুভব করছেন..."
+msgstr "আপনি গতিতে একটি উত্তেজনা অনুভব করছেন..."
 
 msgid "Only enable for users on the buddy list"
-msgstr "শুধুমাত্র বন্ধু তালিকার ব্যবহারকারীর জন্য সক্রিয় করুন"
+msgstr "শুধুমাত্র বন্ধু তালিকার ব্যবহারকারীদের জন্য সক্রিয় করা হবে"
 
 msgid "Disable when away"
-msgstr "দূরে থাকার সময় নিষ্ক্রিয় করুন"
-
-# tithi
+msgstr "অন্যত্র থাকলে নিষ্ক্রিয় করা হবে"
+
+# mark11
 msgid "Display notification message in conversations"
-msgstr "কথোপকথনে বিজ্ঞপ্তি বার্তা প্রদর্শন করুন"
-
+msgstr "কথোপকথনে ঘোষণা প্রদর্শিত হবে"
+
+# ***
 msgid "Raise psychic conversations"
-msgstr "সাইকিক কথাবার্তা হচ্ছে"
+msgstr "সাইকিক কথাবার্তা উপাস্থাপন করা হবে"
 
 #. *< type
 #. *< ui_requirement
@@ -2876,14 +2901,14 @@
 #. *< priority
 #. *< id
 msgid "Signals Test"
-msgstr "সংকেতসমূহের পরীক্ষা"
+msgstr "সংকেত পরীক্ষা"
 
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Test to see that all signals are working properly."
-msgstr "সকল সংকেত সঠিকভাবে কাজ করছে কিনা তা দেখতে পরীক্ষা করুন।"
+msgstr "সব সংকেত সঠিকভাবে কাজ করছে কিনা তা পরীক্ষা করা হবে।"
 
 #. *< type
 #. *< ui_requirement
@@ -2892,19 +2917,19 @@
 #. *< priority
 #. *< id
 msgid "Simple Plugin"
-msgstr "সহজ প্লাগইন"
+msgstr "সরল প্লাগইন"
 
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Tests to see that most things are working."
-msgstr "অধিকাংশ জিনিস সঠিকভাবে কাজ করছে কিনা তা দেখতে পরীক্ষা করুন।"
+msgstr "অধিকাংশ জিনিস সঠিকভাবে কাজ করছে কিনা তা পরীক্ষা করে।"
 
 # tithi
 #. Scheme name
 msgid "X.509 Certificates"
-msgstr "X.৫০৯ প্রত্যয়ন পত্র"
+msgstr "X.509 সার্টিফিকেট"
 
 #. *< type
 #. *< ui_requirement
@@ -2920,7 +2945,7 @@
 #. *  summary
 #. *  description
 msgid "Provides SSL support through GNUTLS."
-msgstr "GNUTLS এর মাধ্যমে এসএসএল সমর্থন প্রদান করে।"
+msgstr "GNUTLS এর মাধ্যমে SSL সাপোর্ট প্রদান করে।"
 
 #. *< type
 #. *< ui_requirement
@@ -2936,7 +2961,7 @@
 #. *  summary
 #. *  description
 msgid "Provides SSL support through Mozilla NSS."
-msgstr "মজিলা NSS এর মাধ্যমে SSL সমর্থন প্রদান করে।"
+msgstr "Mozilla NSS এর মাধ্যমে SSL সাপোর্ট প্রদান করে।"
 
 #. *< type
 #. *< ui_requirement
@@ -2947,44 +2972,45 @@
 msgid "SSL"
 msgstr "SSL"
 
+# ***
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Provides a wrapper around SSL support libraries."
-msgstr "এসএসএল সমর্থন লাইব্রেরিসমূহের চারদিকে মোড়ক প্রদান করে।"
+msgstr "SSL সাপোর্ট লাইব্রেরীর চারদিকে র‌্যাপার প্রদান করে।"
 
 #, c-format
 msgid "%s is no longer away."
-msgstr "%s আর দূরে থাকবে না।"
+msgstr "%s আর অন্যত্র নন।"
 
 #, c-format
 msgid "%s has gone away."
-msgstr "%s দূরে চলে গেছে।"
+msgstr "%s অন্যত্র আছেন।"
 
 #, c-format
 msgid "%s has become idle."
-msgstr "%s এখন অলস।"
+msgstr "%s এখন নিষ্ক্রিয়।"
 
 #, c-format
 msgid "%s is no longer idle."
-msgstr "%s আর অলস থাকবে না।"
+msgstr "%s আর নিষ্ক্রিয় নন।"
 
 #, c-format
 msgid "%s has signed on."
-msgstr "%s এখন অনলাইন।"
+msgstr "%s লগইন করেছেন।"
 
 msgid "Notify When"
-msgstr "জানাবে যখন"
+msgstr "ঘোষণা দেয়া হবে যখন"
 
 msgid "Buddy Goes _Away"
-msgstr "বন্ধু অনুপস্থিত (_A)"
+msgstr "বন্ধু অন্যত্র যায় (_A)"
 
 msgid "Buddy Goes _Idle"
-msgstr "বন্ধু অলস (_I)"
+msgstr "বন্ধু নিষ্ক্রিয় হয় (_I)"
 
 msgid "Buddy _Signs On/Off"
-msgstr "বন্ধু সাইন অন/অফ (_S)"
+msgstr "বন্ধু লগইন/লগআউট করে (_S)"
 
 #. *< type
 #. *< ui_requirement
@@ -2993,8 +3019,9 @@
 #. *< priority
 #. *< id
 msgid "Buddy State Notification"
-msgstr "বন্ধুর অবস্থার প্রজ্ঞাপন"
-
+msgstr "বন্ধুর অবস্থা ঘোষণা"
+
+# mark12
 #. *< name
 #. *< version
 #. *  summary
@@ -3002,40 +3029,37 @@
 msgid ""
 "Notifies in a conversation window when a buddy goes or returns from away or "
 "idle."
-msgstr ""
-"যখন বন্ধু অনুপস্থিত বা অলস থাকে বা এইসব থেকে ফিরে আসে তখন কথোপকথন উইন্ডোতে "
-"প্রজ্ঞাপন পাঠায়।"
+msgstr "বন্ধুর অন্যত্র বা নিষ্ক্রিয়তার অবস্থান পরিবর্তন হলে, আড্ডার উইন্ডোতে জানান দেয়"
 
 msgid "Tcl Plugin Loader"
-msgstr "টিসিএল প্লাগইন লোডকারী"
+msgstr "Tcl প্লাগইন লোডার"
 
 msgid "Provides support for loading Tcl plugins"
-msgstr "টিসিএল প্লাগইন লোড করার জন্য সমর্থন প্রদান করে"
+msgstr "Tcl প্লাগইন লোড করার জন্য সমর্থন প্রদান করে"
 
 # tithi
 msgid ""
 "Unable to detect ActiveTCL installation. If you wish to use TCL plugins, "
 "install ActiveTCL from http://www.activestate.com\n"
 msgstr ""
-"সক্রিয় TCL সংস্থাপন শনাক্ত করতে অক্ষম। আপনি যদি TCL প্লাগইন ব্যবহার করতে চান, তবে "
-"http://www.activestate.com থেকে সক্রিয় TCL সংস্থাপন করুন\n"
-
-# tithi
-#, fuzzy
+"ActiveTCL ইনস্টলেশন শনাক্ত করতে ব্যর্থ। আপনি যদি TCL প্লাগইন ব্যবহার করতে চান, তবে "
+"http://www.activestate.com থেকে ActiveTCL ইনস্টল করুন\n"
+
+# tithi
 msgid ""
 "Unable to find Apple's \"Bonjour for Windows\" toolkit, see http://d.pidgin."
 "im/BonjourWindows for more information."
 msgstr ""
-"উইন্ডোজ টুলকিটের জন্য অ্যাপল বোনজুর খুঁজে পাওয়া যায়নি, আরও তথ্যের জন্য http://d."
-"pidgin.im/BonjourWindows এর FAQ দেখুন।"
-
-#, fuzzy
+"Apple এর \"Bonjour for Windows\" টুলকিটটি খুঁজে পাওয়া যায়নি, আরও তথ্যের জন্য  "
+"http://d.pidgin.im/BonjourWindows দেখুন।"
+
+# ***
 msgid "Unable to listen for incoming IM connections"
-msgstr "আগত আইএম সংযোগসূমহের জন্য শুনতে অক্ষম\n"
+msgstr "আগত IM সংযোগের জন্য লিসেন করতে ব্যর্থ"
 
 msgid ""
 "Unable to establish connection with the local mDNS server.  Is it running?"
-msgstr "স্থানীয় এমডিএনএস সার্ভারের সাথে সংযোগ স্থাপনে ব্যর্থ। এটা কি চলছে?"
+msgstr "স্থানীয় mDNS সার্ভারের সাথে সংযোগ স্থাপনে ব্যর্থ। এটা কি চালু আছে?"
 
 msgid "First name"
 msgstr "প্রথম নাম"
@@ -3044,10 +3068,10 @@
 msgstr "শেষ নাম"
 
 msgid "Email"
-msgstr "ই-মেইল"
+msgstr "ইমেইল"
 
 msgid "AIM Account"
-msgstr "এআইএম একাউন্ট"
+msgstr "AIM একাউন্ট"
 
 msgid "XMPP Account"
 msgstr "XMPP একাউন্ট"
@@ -3063,137 +3087,130 @@
 #. *  summary
 #. *  description
 msgid "Bonjour Protocol Plugin"
-msgstr "Bonjour প্রটোকল প্লাগইন"
-
+msgstr "Bonjour প্রোটোকল প্লাগইন"
+
+# ***
 msgid "Purple Person"
 msgstr "পার্পেল ব্যক্তি"
 
 #. Creating the options for the protocol
-#, fuzzy
 msgid "Local Port"
-msgstr "এলাকা"
+msgstr "স্থানীয় পোর্ট"
 
 msgid "Bonjour"
 msgstr "Bonjour"
 
 #, c-format
 msgid "%s has closed the conversation."
-msgstr "%s কথোপকথন বন্ধ করে দিয়েছে।"
-
+msgstr "%s কথোপকথন বন্ধ করেছে।"
+
+# mark13
 msgid "Unable to send the message, the conversation couldn't be started."
-msgstr "বার্তা পাঠাতে অক্ষম, কথোপকথন শুরু হতে পারে নি।"
-
-#, fuzzy, c-format
+msgstr "বার্তা পাঠাতে ব্যর্থ, কথোপকথন শুরু করা সম্ভব হয়নি।"
+
+#, c-format
 msgid "Unable to create socket: %s"
-msgstr ""
-"সকেট তৈরী করতে ব্যর্থ:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "সকেট তৈরী করতে ব্যর্থ: %s"
+
+#, c-format
 msgid "Unable to bind socket to port: %s"
-msgstr "পোর্টের সাথে সকেটকে সংযুক্ত করা যায়নি"
-
-#, fuzzy, c-format
+msgstr "পোর্টের সাথে সকেট সংযুক্ত করতে ব্যর্থ: %s"
+
+#, c-format
 msgid "Unable to listen on socket: %s"
-msgstr ""
-"সকেট তৈরী করতে ব্যর্থ:\n"
-"%s"
-
-# tithi
+msgstr "সকেটে লিসেন করতে ব্যর্থ: %s"
+
 msgid "Error communicating with local mDNSResponder."
 msgstr "স্থানীয় mDNSResponder এর সঙ্গে যোগাযোগে ত্রুটি।"
 
 msgid "Invalid proxy settings"
-msgstr "অবৈধ প্রক্সি বিন্যাসনসমূহ"
+msgstr "অকার্যকর প্রক্সি সেটিং"
 
 msgid ""
 "Either the host name or port number specified for your given proxy type is "
 "invalid."
-msgstr "আপনার প্রদত্ত প্রক্সির ধরনের জন্য উল্লেখিত হোস্ট নাম বা পোর্ট নম্বর অবৈধ।"
+msgstr "আপনার প্রক্সির ধরনের জন্য উল্লেখিত হোস্ট নাম বা পোর্ট নম্বরটি অকার্যকর।"
 
 msgid "Token Error"
 msgstr "টোকেন ত্রুটি"
 
 msgid "Unable to fetch the token.\n"
-msgstr "টোকেন আনতে অক্ষম।\n"
+msgstr "টোকেন আনতে ব্যর্থ।\n"
 
 msgid "Save Buddylist..."
-msgstr "বন্ধুর তালিকা সংরক্ষণ করুন..."
+msgstr "বন্ধুর তালিকা সংরক্ষণ করা হবে..."
 
 msgid "Your buddylist is empty, nothing was written to the file."
-msgstr "আপনার বন্ধু তালিকাটি ফাঁকা, ফাইলে কিছুই লেখা ছিল না।"
+msgstr "আপনার বন্ধু তালিকাটি ফাঁকা, ফাইলে কিছুই লেখা হয়নি।"
 
 msgid "Buddylist saved successfully!"
 msgstr "বন্ধু তালিকা সফলভাবে সংরক্ষিত হয়েছে!"
 
 #, c-format
 msgid "Couldn't write buddy list for %s to %s"
-msgstr "%1s এর জন্য %2s এ বন্ধুর তালিকা লিখতে পারেনি।"
+msgstr "%1$s এর জন্য %2$s এ বন্ধুর তালিকা লেখা সম্ভব হয়নি।"
 
 msgid "Couldn't load buddylist"
-msgstr "বন্ধু-তালিকা লোড করা যায়নি।"
+msgstr "বন্ধু তালিকা লোড করা যায়নি।"
 
 msgid "Load Buddylist..."
-msgstr "বন্ধুর-তালিকা লোড করুন..."
+msgstr "বন্ধু তালিকা লোড করা হবে..."
 
 msgid "Buddylist loaded successfully!"
-msgstr "বন্ধু-তালিকা সফলভাবে লোড করা হয়েছে।"
+msgstr "বন্ধু তালিকা সফলভাবে লোড করা হয়েছে!"
 
 msgid "Save buddylist..."
-msgstr "বন্ধু-তালিকা সংরক্ষণ করুন..."
+msgstr "বন্ধু তালিকা সংরক্ষণ করা হবে..."
 
 msgid "Load buddylist from file..."
-msgstr "ফাইল থেকে বন্ধু-তালিকা লোড করুন..."
-
-#, fuzzy
+msgstr "ফাইল থেকে বন্ধু তালিকা লোড করা হবে..."
+
 msgid "You must fill in all registration fields"
-msgstr "নিবন্ধন ক্ষেত্রে পূরণ করুন।"
-
-#, fuzzy
+msgstr "আপনাকে নিবন্ধনের সব ক্ষেত্র পূরণ করতে হবে"
+
 msgid "Passwords do not match"
-msgstr "গুপ্তসংকেত মিলে না।"
-
-#, fuzzy
+msgstr "পাসওয়ার্ডগুলো মিলছে না"
+
 msgid "Unable to register new account.  An unknown error occurred."
-msgstr "নতুন একাউন্ট নিবন্ধন করতে ব্যর্থ। ত্রুটি দেখা দিয়েছে।\n"
+msgstr "নতুন একাউন্ট নিবন্ধন করতে ব্যর্থ। একটি অজানা ত্রুটি দেখা দিয়েছে।"
 
 msgid "New Gadu-Gadu Account Registered"
-msgstr "নতুন গাদু-গাদু একাউন্ট নিবন্ধন করা হয়েছে"
+msgstr "নতুন Gadu-Gadu একাউন্ট নিবন্ধন করা হয়েছে"
 
 msgid "Registration completed successfully!"
 msgstr "নিবন্ধন সফলভাবে শেষ হয়েছে!"
 
 msgid "Password"
-msgstr "গুপ্তসংকেত"
+msgstr "পাসওয়ার্ড"
 
 msgid "Password (again)"
-msgstr "গুপ্তসংকেত (আবার)"
+msgstr "পাসওয়ার্ড (আবার)"
 
 msgid "Enter captcha text"
-msgstr ""
+msgstr "ক্যাপচাতে দেখানো পাঠ্য প্রবেশ করান  "
 
 # fix me tithi
-#, fuzzy
 msgid "Captcha"
-msgstr "Captcha চিত্র"
+msgstr "ক্যাপচা"
 
 msgid "Register New Gadu-Gadu Account"
-msgstr "নতুন গাদু-গাদু একাউন্ট নিবন্ধন করুন"
+msgstr "নতুন Gadu-Gadu একাউন্ট নিবন্ধন করুন"
 
 msgid "Please, fill in the following fields"
-msgstr "অনুগ্রহ করে, নিচের ক্ষেত্রসমূহে পূরণ করুন"
+msgstr "অনুগ্রহ করে, নিচের ক্ষেত্রগুলো পূরণ করুন"
 
 msgid "City"
 msgstr "শহর"
 
+# ***
 msgid "Year of birth"
-msgstr "জন্ম সন"
+msgstr "জন্ম সাল"
 
 msgid "Gender"
 msgstr "লিঙ্গ"
 
 msgid "Male or female"
-msgstr "পুরুষ অথবা মহিলা"
+msgstr "পুরুষ বা মহিলা"
 
 msgid "Male"
 msgstr "পুরুষ"
@@ -3205,45 +3222,43 @@
 msgstr "শুধুমাত্র অনলাইন"
 
 msgid "Find buddies"
-msgstr "বন্ধু খোঁজ করুন"
+msgstr "বন্ধু খোঁজ "
 
 msgid "Please, enter your search criteria below"
-msgstr "অনুগ্রহ করে, আপনার অনুসন্ধান শর্তাবলী নীচে প্রবেশ করান"
+msgstr "অনুগ্রহ করে, আপনার অনুসন্ধানের শর্তাবলী নিচে দিন"
 
 msgid "Fill in the fields."
-msgstr "ক্ষেত্রসমূহে পূরণ করুন।"
+msgstr "ক্ষেত্রগুলো পূরণ করুন।"
 
 msgid "Your current password is different from the one that you specified."
-msgstr "আপনার বর্তমান গুপ্তসংকেতটি আপনার উল্লেখিত একটি গুপ্তসংকেত থেকে পৃথক"
+msgstr "আপনার বর্তমান পাসওয়ার্ডটি আপনার উল্লেখিত পাসওয়ার্ড থেকে আলাদা।"
 
 msgid "Unable to change password. Error occurred.\n"
-msgstr "গুপ্তসংকেত পরিবর্তনে অক্ষম। ত্রুটি দেখা দিয়েছে।\n"
+msgstr "পাসওয়ার্ড পরিবর্তন সফল হয়নি। ত্রুটি হয়েছে।\n"
 
 msgid "Change password for the Gadu-Gadu account"
-msgstr "গাদু-গাদু একাউন্টের জন্য গুপ্তসংকেত পরিবর্তন করুন"
+msgstr "Gadu-Gadu একাউন্টের জন্য পাসওয়ার্ড পরিবর্তন"
 
 msgid "Password was changed successfully!"
-msgstr "গুপ্তসংকেত সফলভাবে পরিবর্তিত হয়েছিল!"
+msgstr "পাসওয়ার্ড সফলভাবে পরিবর্তিত হয়েছে!"
 
 msgid "Current password"
-msgstr "বর্তমান গুপ্তসংকেত"
+msgstr "বর্তমান পাসওয়ার্ড"
 
 msgid "Password (retype)"
-msgstr "গুপ্তসংকেত (পুনরায় টাইপ করুন)"
+msgstr "পাসওয়ার্ড (পুনরায় টাইপ করুন)"
 
 msgid "Enter current token"
-msgstr "বর্তমান টোকেন প্রবেশ করান"
+msgstr "বর্তমান টোকেন দিন"
 
 msgid "Current token"
 msgstr "বর্তমান টোকেন"
 
 msgid "Please, enter your current password and your new password for UIN: "
-msgstr ""
-"অনুগ্রহ করে, UIN-এর জন্য আপনার বর্তমান গুপ্তসংকেত এবং আপনার নতুন গুপ্তসংকেত প্রবেশ "
-"করান:"
+msgstr "অনুগ্রহ করে, UIN-এর জন্য আপনার বর্তমান পাসওয়ার্ড এবং নতুন পাসওয়ার্ড দিন:"
 
 msgid "Change Gadu-Gadu Password"
-msgstr "গাদু-গাদু গুপ্তসংকেত পরিবর্তন করুন"
+msgstr "Gadu-Gadu এর পাসওয়ার্ড পরিবর্তন করুন"
 
 #, c-format
 msgid "Select a chat for buddy: %s"
@@ -3252,15 +3267,16 @@
 msgid "Add to chat..."
 msgstr "আড্ডায় যোগ দিন..."
 
+# ***
 #. Global
 msgid "Available"
-msgstr "সহজলভ্য"
+msgstr "উপস্থিত"
 
 #. get_yahoo_status_from_purple_status() returns YAHOO_STATUS_CUSTOM for
 #. * the generic away state (YAHOO_STATUS_TYPE_AWAY) with no message
 #. Away stuff
 msgid "Away"
-msgstr "এখানে নেই"
+msgstr "অন্যত্র"
 
 msgid "UIN"
 msgstr "UIN"
@@ -3272,22 +3288,22 @@
 msgstr "জন্ম সাল"
 
 msgid "Unable to display the search results."
-msgstr "অনুসন্ধান ফলাফল প্রদর্শন করতে অক্ষম।"
+msgstr "অনুসন্ধান ফলাফল প্রদর্শন করতে ব্যর্থ।"
 
 msgid "Gadu-Gadu Public Directory"
-msgstr "গাদু-গাদু জনসাধারণ নির্দেশিকা"
+msgstr "Gadu-Gadu পাবলিক ডিরেক্টরি"
 
 msgid "Search results"
-msgstr "অনুসন্ধান ফলাফল"
+msgstr "অনুসন্ধানের ফলাফল"
 
 msgid "No matching users found"
-msgstr "কোনো সমন্বয়কারী ব্যবহারকারী পাওয়া যায়নি।"
+msgstr "একইরকম কোনো ব্যবহারকারী পাওয়া যায়নি।"
 
 msgid "There are no users matching your search criteria."
-msgstr "আপনার অনুসন্ধানের শর্তাবলী সাথে মেলে এমন কোনো ব্যবহারকারী নেই।"
+msgstr "অনুসন্ধানের শর্তানুযায়ী কোনো ব্যবহারকারী পাওয়া যায়নি।"
 
 msgid "Unable to read from socket"
-msgstr "সকেট থেকে পাঠ করতে ব্যর্থ"
+msgstr "সকেট থেকে পড়তে ব্যর্থ"
 
 msgid "Buddy list downloaded"
 msgstr "বন্ধু তালিকা ডাউনলোড করা হয়েছে"
@@ -3299,7 +3315,7 @@
 msgstr "বন্ধু তালিকা আপলোড করা হয়েছে"
 
 msgid "Your buddy list was stored on the server."
-msgstr "আপনার বন্ধু তালিকাটি সার্ভারে সংরক্ষণ করা হয়েছিল।"
+msgstr "আপনার বন্ধু তালিকাটি সার্ভারে সংরক্ষণ করা হয়েছে।"
 
 #. The session is now set up, ready to be connected. This emits the
 #. * signedOn signal, so clients can now do anything with msimprpl, and
@@ -3311,35 +3327,34 @@
 msgstr "সংযোগ ব্যর্থ হয়েছে"
 
 msgid "Add to chat"
-msgstr "আড্ডার যোগ দিন"
+msgstr "আড্ডায় যোগ দিন"
 
 msgid "Chat _name:"
 msgstr "আড্ডার নাম (_n):"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to resolve hostname '%s': %s"
-msgstr "সার্ভারের সাথে সংযোগ স্থাপনে অসমর্থ।"
+msgstr " '%1$s' হোস্টের নামটি নিরূপণ করতে ব্যর্থ: %2$s"
 
 #. 1. connect to server
 #. connect to the server
 msgid "Connecting"
-msgstr "সংযোগ করছে"
+msgstr "সংযুক্ত করা হচ্ছে"
 
 msgid "Chat error"
 msgstr "আড্ডা ত্রুটি"
 
 msgid "This chat name is already in use"
-msgstr "এই আড্ডা নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে"
-
-#, fuzzy
+msgstr "এই আড্ডার নামটি ইতিমধ্যে ব্যবহৃত হচ্ছে"
+
 msgid "Not connected to the server"
-msgstr "সার্ভারের সাথে সংযুক্ত নয়।"
+msgstr "সার্ভারের সাথে সংযুক্ত নয়"
 
 msgid "Find buddies..."
 msgstr "বন্ধু খুঁজুন..."
 
 msgid "Change password..."
-msgstr "গুপ্তসঙ্কেত পরিবর্তন করুন..."
+msgstr "পাসওয়ার্ড পরিবর্তন..."
 
 msgid "Upload buddylist to Server"
 msgstr "সার্ভারে বন্ধু তালিকা আপলোড করুন"
@@ -3348,7 +3363,7 @@
 msgstr "সার্ভার থেকে বন্ধু তালিকা ডাউনলোড করুন"
 
 msgid "Delete buddylist from Server"
-msgstr "সার্ভার থেকে বন্ধু তালিকা মুছে ফেলুন"
+msgstr "সার্ভার থেকে বন্ধু তালিকা অপসারণ করুন"
 
 msgid "Save buddylist to file..."
 msgstr "ফাইলে বন্ধুর তালিকা সংরক্ষণ করুন..."
@@ -3365,22 +3380,22 @@
 #. name
 #. version
 msgid "Gadu-Gadu Protocol Plugin"
-msgstr "Gadu-Gadu প্রটোকল প্লাগইন"
+msgstr "Gadu-Gadu প্রোটোকল প্লাগইন"
 
 #. summary
 msgid "Polish popular IM"
-msgstr "জনপ্রিয় আইএম পরিমার্জন করুন"
+msgstr "জনপ্রিয় পোলিশ IM"
 
 msgid "Gadu-Gadu User"
-msgstr "গাদু-গাদু ব্যবহারকারী"
-
-#, fuzzy
+msgstr "Gadu-Gadu ব্যবহারকারী"
+
 msgid "GG server"
-msgstr "সার্ভার পাচ্ছে"
-
+msgstr "GG সার্ভার"
+
+# ***
 #, c-format
 msgid "Unknown command: %s"
-msgstr "অজানা নির্দেশ: %s"
+msgstr "অজানা কমান্ড: %s"
 
 #, c-format
 msgid "current topic is: %s"
@@ -3390,17 +3405,16 @@
 msgstr "কোনো বিষয় নির্ধারণ করা হয়নি"
 
 msgid "File Transfer Failed"
-msgstr "ফাইল বিনিময় ব্যর্থ"
-
-#, fuzzy
+msgstr "ফাইল স্থানান্তর ব্যর্থ"
+
 msgid "Unable to open a listening port."
-msgstr "শোনার কোনো পোর্ট খুলতে পারছে না।"
+msgstr "লিসেনিংয়ের জন্য কোনো পোর্ট খোলা সম্ভব হয়নি"
 
 msgid "Error displaying MOTD"
-msgstr "MOTD দেখানোর সময় ত্রুটি দেখা দিয়েছে"
+msgstr "MOTD দেখানোর সময় ত্রুটি হয়েছে"
 
 msgid "No MOTD available"
-msgstr "কোনো MOTD সহজলভ্য নয়"
+msgstr "কোনো MOTD নেই"
 
 msgid "There is no MOTD associated with this connection."
 msgstr "এই সংযোগের সাথে সম্পর্কিত কোনো MOTD নেই।"
@@ -3416,43 +3430,39 @@
 #.
 #. TODO: what to do here - do we really have to disconnect?
 #. TODO: do we really want to disconnect on a failure to write?
-#, fuzzy, c-format
+#, c-format
 msgid "Lost connection with server: %s"
-msgstr ""
-"সার্ভারের সাথে সংযুক্ত হারিয়েছে:\n"
-"%s"
+msgstr "সার্ভারের সাথে সংযোগ বিচ্ছিন্ন হয়েছে: %s"
 
 msgid "View MOTD"
-msgstr "MOTD প্রদর্শন করুন"
+msgstr "MOTD প্রদর্শন"
 
 msgid "_Channel:"
 msgstr "চ্যানেল (_C):"
 
 msgid "_Password:"
-msgstr "গুপ্তসংকেত (_P):"
-
-# tithi
-#, fuzzy
+msgstr "পাসওয়ার্ড (_P):"
+
 msgid "IRC nick and server may not contain whitespace"
-msgstr "IRC এর ডাকনামসমূহ ফাঁকা স্থান ধারণ নাও করতে পারে"
+msgstr "IRC ডাকনাম এবং সার্ভারে ফাঁকা অক্ষর থাকতে পারবে না"
 
 msgid "SSL support unavailable"
-msgstr "এসএসএল সমর্থন অপ্রাপ্য"
+msgstr "SSL সাপোর্ট পাওয়া যায়না"
 
 msgid "Unable to connect"
-msgstr "সংযোগ করতে সমর্থ নয়"
+msgstr "সংযোগ করতে ব্যর্থ"
 
 #. this is a regular connect, error out
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to connect: %s"
-msgstr "%s এ সংযোগ দিতে ব্যর্থ হয়েছে"
-
-#, fuzzy, c-format
+msgstr "সংযুক্ত হতে ব্যর্থ: %s"
+
+#, c-format
 msgid "Server closed the connection"
-msgstr "সার্ভার সংযোগটি বন্ধ করে দিয়েছে।"
+msgstr "সার্ভার সংযোগটি বন্ধ করে দিয়েছে"
 
 msgid "Users"
-msgstr "ব্যবহারকারীরা"
+msgstr "ব্যবহারকারী"
 
 msgid "Topic"
 msgstr "বিষয়"
@@ -3466,12 +3476,12 @@
 #. *< name
 #. *< version
 msgid "IRC Protocol Plugin"
-msgstr "আইআরসি প্রটোকল প্লাগইন"
+msgstr "IRC প্রোটোকল প্লাগইন"
 
 # tithi
 #. *  summary
 msgid "The IRC Protocol Plugin that Sucks Less"
-msgstr "IRC প্রটোকল প্লাগইন যা কম সমস্য়া তৈরি করে"
+msgstr "IRC প্রোটোকল প্লাগইন যা কম সমস্যা তৈরি করে"
 
 #. host to connect to
 msgid "Server"
@@ -3481,12 +3491,12 @@
 msgid "Port"
 msgstr "পোর্ট"
 
+# ***
 msgid "Encodings"
-msgstr "সঙ্কেতায়নসমূহ"
-
-# tithi
+msgstr "এনকোডিং"
+
 msgid "Auto-detect incoming UTF-8"
-msgstr "আসন্ন UTF-8 স্বয়ং-শনাক্ত করে"
+msgstr "আসন্ন UTF-8 স্বয়ংক্রিয়ভাবে শনাক্ত করা হবে"
 
 msgid "Real name"
 msgstr "আসল নাম"
@@ -3496,22 +3506,22 @@
 #. prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option);
 #.
 msgid "Use SSL"
-msgstr "SSL ব্যবহার করুন"
-
+msgstr "SSL ব্যবহার করা হবে"
+
+# ***
 msgid "Bad mode"
-msgstr "খারাপ মেজাজ"
-
-# tithi
+msgstr "ত্রুটিযুক্ত মোড"
+
 #, c-format
 msgid "Ban on %s by %s, set %s ago"
-msgstr "%2s দ্বারা %1s এ বাধা, %3s আগে নির্ধারণ করুন"
+msgstr "%2$s দ্বারা %1$s কে নিষিদ্ধ করা হয়েছে, %3$s আগে নির্ধারিত "
 
 #, c-format
 msgid "Ban on %s"
-msgstr "%s এ বাধা দিচ্ছে"
+msgstr "%s কে নিষিদ্ধকরণ"
 
 msgid "End of ban list"
-msgstr "নিষিদ্ধ তালিকার শেষে"
+msgstr "নিষিদ্ধ তালিকা সমাপ্ত"
 
 #, c-format
 msgid "You are banned from %s."
@@ -3522,29 +3532,30 @@
 
 #, c-format
 msgid "Cannot ban %s: banlist is full"
-msgstr "%s নিষিদ্ধ করা যাচ্ছে না: নিষিদ্ধ তালিকা পূর্ণ"
+msgstr "%s কে নিষিদ্ধ করা যাচ্ছে না: নিষিদ্ধ তালিকা পরিপূর্ণ"
 
 msgid " <i>(ircop)</i>"
 msgstr "<i>(ircop)</i>"
 
+# ***
 msgid " <i>(identified)</i>"
-msgstr "<i>(শনাক্তকৃত)</i>"
+msgstr " <i>(শনাক্তকৃত)</i>"
 
 msgid "Nick"
 msgstr "ডাকনাম"
 
 # tithi
 msgid "Currently on"
-msgstr "বর্তমানে"
+msgstr "বর্তমানে চালু আছে"
 
 msgid "Idle for"
-msgstr "এর জন্য অলস"
+msgstr "যতক্ষন নিষ্ক্রিয়"
 
 msgid "Online since"
-msgstr "যখন থেকে অনলাইন "
+msgstr "যতক্ষন অনলাইনে"
 
 msgid "<b>Defining adjective:</b>"
-msgstr "<b>বিশেষন নির্ধারন করছে:</b>"
+msgstr "<b>বিশেষন নির্ধারন:</b>"
 
 # tithi
 msgid "Glorious"
@@ -3552,15 +3563,15 @@
 
 #, c-format
 msgid "%s has changed the topic to: %s"
-msgstr "%1s বিষয় পরিবর্তন করছে: %2s"
+msgstr "%1$s বিষয় পরিবর্তন করেছে, এখন বিষয়: %2$s"
 
 #, c-format
 msgid "%s has cleared the topic."
-msgstr "%s বিষয়টি পরিস্কার করেছে।"
+msgstr "%s বিষয়টি অপসারন করেছে।"
 
 #, c-format
 msgid "The topic for %s is: %s"
-msgstr "%1s এর জন্য বিষয় হলো: %2s"
+msgstr "%1$s এর জন্য বিষয় হলো: %2$s"
 
 #, c-format
 msgid "Unknown message '%s'"
@@ -3574,13 +3585,14 @@
 
 #, c-format
 msgid "Users on %s: %s"
-msgstr "%1s এর ব্যবহারকারী: %2s"
-
+msgstr "%1$s এর ব্যবহারকারী: %2$s"
+
+# ***
 msgid "Time Response"
 msgstr "সাড়া দেওয়ার সময়"
 
 msgid "The IRC server's local time is:"
-msgstr "আইআরসি সার্ভারের স্থানীয় সময় হলো:"
+msgstr "IRC সার্ভারের স্থানীয় সময়:"
 
 msgid "No such channel"
 msgstr "এমন কোনো চ্যানেল নেই"
@@ -3590,7 +3602,7 @@
 msgstr "এমন কোনো চ্যানেল নেই"
 
 msgid "User is not logged in"
-msgstr "ব্যবহারকারী লগইন অবস্থায় নেই"
+msgstr "ব্যবহারকারী লগইন করা নেই"
 
 msgid "No such nick or channel"
 msgstr "এমন কোনো ডাকনাম বা চ্যানেল নেই"
@@ -3600,78 +3612,78 @@
 
 #, c-format
 msgid "Joining %s requires an invitation."
-msgstr "%s এর অংশগ্রহনের জন্যে আমন্ত্রণ প্রয়োজন"
+msgstr "%s এর অংশগ্রহনের জন্যে আমন্ত্রণ প্রয়োজন।"
 
 msgid "Invitation only"
 msgstr "শুধুমাত্র আমন্ত্রণ"
 
+# Kick =  তিরস্কার
+# OR  পদাঘাত
 #, c-format
 msgid "You have been kicked by %s: (%s)"
-msgstr "%1s দ্বারা আপনাকে বের করে দেয়া হয়েছে: (%2s)"
+msgstr "%1$s আপনাকে তিরস্কার করেছেন: (%2$s)"
 
 #. Remove user from channel
 #, c-format
 msgid "Kicked by %s (%s)"
-msgstr "%1s (%2s) দ্বারা বহিষ্কৃত"
+msgstr "%1$s (%2$s) দ্বারা তিরস্কৃত"
 
 #, c-format
 msgid "mode (%s %s) by %s"
-msgstr "%s দ্বারা (%s %s) পরিমন্ডল"
+msgstr "%s দ্বারা (%s %s) মোড"
 
 msgid "Invalid nickname"
-msgstr "অবৈধ ডাকনাম"
+msgstr "অকার্যকর ডাকনাম"
 
 msgid ""
 "Your selected nickname was rejected by the server.  It probably contains "
 "invalid characters."
 msgstr ""
-"আপনার নির্বাচিত ডাকনামটি সার্ভার দ্বারা বাতিল করা হয়েছে। এটি সম্ভবত অবৈধ বর্ণচিহ্ন "
-"ধারণ করে।"
+"আপনার নির্বাচিত ডাকনামটি সার্ভার বাতিল করে দিয়েছে। সম্ভবত এতে অবৈধ বর্ণচিহ্ন ছিল।"
 
 msgid ""
 "Your selected account name was rejected by the server.  It probably contains "
 "invalid characters."
 msgstr ""
-"আপনার নির্বাচিত একাউন্ট নাম সার্ভার থেকে বাতিল করা হয়েছে। এটি সম্ভবত অবৈধ "
-"বর্ণচিহ্ন ধারণ করে।"
+"আপনার নির্বাচিত একাউন্ট নামটি সার্ভার বাতিল করে দিয়েছে। সম্ভবত এতে অবৈধ বর্ণচিহ্ন "
+"ছিল।"
 
 #. We only want to do the following dance if the connection
 #. has not been successfully completed.  If it has, just
 #. notify the user that their /nick command didn't go.
-#, fuzzy, c-format
+#, c-format
 msgid "The nickname \"%s\" is already being used."
-msgstr "এই আড্ডা নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে"
-
-#, fuzzy
+msgstr "\"%s\" ডাকনামটি ইতোমধ্যেই ব্যবহৃত হয়েছে।"
+
 msgid "Nickname in use"
-msgstr "ডাকনাম"
+msgstr "প্রচলিত ডাকনাম"
 
 msgid "Cannot change nick"
-msgstr "ডাকনাম পরিবর্তন করতে পারে না"
+msgstr "ডাকনাম পরিবর্তন করা সম্ভব নয়"
 
 msgid "Could not change nick"
-msgstr "ডাকনাম পরিবর্তন করতে পারেনি"
+msgstr "ডাকনাম পরিবর্তন করা সম্ভব হয়নি"
 
 #, c-format
 msgid "You have parted the channel%s%s"
 msgstr "আপনি চ্যানেল%s%s বিভক্ত করেছেন"
 
 msgid "Error: invalid PONG from server"
-msgstr "ত্রুটি: সার্ভার থেকে অবৈধ PONG"
+msgstr "ত্রুটি: সার্ভার থেকে অকার্যকর PONG"
 
 #, c-format
 msgid "PING reply -- Lag: %lu seconds"
-msgstr "PING উত্তর ‌‌-- পরে: %lu সেকেন্ড"
+msgstr "PING reply -- Lag: %lu seconds"
 
 #, c-format
 msgid "Cannot join %s: Registration is required."
-msgstr "%s যুক্ত করতে পারে না: নিবন্ধন আবশ্যক।"
+msgstr "%s এ যোগদান করা সম্ভব হয়নি: নিবন্ধন আবশ্যক।"
 
 msgid "Cannot join channel"
-msgstr "চ্যানেলে অংশগ্রহণ করতে পারে না"
+msgstr "চ্যানেলে অংশগ্রহণ করা সম্ভব হয়নি"
 
 msgid "Nick or channel is temporarily unavailable."
-msgstr "ডাকনাম বা চ্যানেল সাময়িকভাবে অপ্রাপ্য"
+msgstr "ডাকনাম বা চ্যানেল সাময়িকভাবে অনুপস্থিত"
 
 #, c-format
 msgid "Wallops from %s"
@@ -3679,215 +3691,207 @@
 
 # tithi
 msgid "action &lt;action to perform&gt;:  Perform an action."
-msgstr "কর্ম &1lt;&2gt সম্পন্ন করার কাজ;:  একটি কাজ সম্পন্ন করেন।"
+msgstr "action &lt;action to perform&gt;:  একটি ক্রিয়া সম্পাদন করুন।"
 
 msgid ""
 "away [message]:  Set an away message, or use no message to return from being "
 "away."
 msgstr ""
-"অনুপস্থিত [বার্তা]: একটি অনুপস্থিত বার্তা নির্ধারণ করুন, বা কোনো বার্তা ব্যবহার না করে "
-"অনুপস্থিত আবস্থা থেকে ফিরে আসুন।"
-
-# tithi
+"away [message]: একটি অন্যত্র অবস্থানের বার্তা নির্ধারণ করুন, বা কোনো বার্তা ব্যবহার "
+"না করে অন্যত্র অবস্থা থেকে ফিরে আসুন।"
+
 msgid "ctcp <nick> <msg>: sends ctcp msg to nick."
 msgstr "ctcp <nick> <msg>: ডাকনামকে ctcp বার্তা পাঠায়।"
 
 msgid "chanserv: Send a command to chanserv"
-msgstr "chanserv: chanserv এ নির্দেশ পাঠান"
+msgstr "chanserv: chanserv এ কমান্ড পাঠান"
 
 msgid ""
 "deop &lt;nick1&gt; [nick2] ...:  Remove channel operator status from "
 "someone. You must be a channel operator to do this."
 msgstr ""
-"deop &1lt;ডাকনাম১&2gt; [ডাকনাম২] ...: কারও কাছ থেকে চ্যনেল অপারেটর অবস্থা মুছে "
-"ফেলুন। এটি করতে আপনাকে অবশ্যই চ্যানেল পরিচালক হতে হবে।"
+"deop &lt;nick1&gt; [nick2] ...: কারও চ্যনেল অপারেটরের অবস্থা মুছে ফেলুন। এটি "
+"করতে আপনাকে অবশ্যই চ্যানেল অপারেটর হতে হবে।"
 
 msgid ""
 "devoice &lt;nick1&gt; [nick2] ...:  Remove channel voice status from "
 "someone, preventing them from speaking if the channel is moderated (+m). You "
 "must be a channel operator to do this."
 msgstr ""
-"devoice &1lt;ডাকনাম১&2gt; [ডাকনাম২] ...: চ্যানেলটি যদি পরিমিত (+m) হয় তবে "
-"কোনো একজনকে কথা বলা থেকে বিরত রেখে, চ্যানেলের স্বর অবস্থা অপসারণ করুন। এটা করতে "
-"আপনাকে অবশ্যই চ্যানেল অপারেটর হতে হবে।"
-
-# tithi
+"devoice &lt;nick1&gt; [nick2] ...: চ্যানেলটি যদি সমন্বিত হয় (+m) তবে "
+"ব্যবহারকারীকে কথা বলা থেকে বিরত রাখতে চ্যানেলের ভয়েস অবস্থা অপসারণ করুন। এটি "
+"করতে আপনাকে অবশ্যই চ্যানেল অপারেটর হতে হবে।"
+
 msgid ""
 "invite &lt;nick&gt; [room]:  Invite someone to join you in the specified "
 "channel, or the current channel."
 msgstr ""
-"আমন্ত্রন জানান &1lt;ডাকনাম&2gt; [রুম]:  আপনাকে সুনির্দিষ্ট চ্যানেলে বা বর্তমান "
-"চ্যানেলে যুক্ত করাতে কাউকে আমন্ত্রন জানান।"
+"invite &lt;nick&gt; [room]:  নির্বাচিত বা বর্তমান চ্যানেলে আপনার সাথে যুক্ত হতে "
+"কাউকে আমন্ত্রন জানান।"
 
 # tithi
 msgid ""
 "j &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]:  Enter one or more "
 "channels, optionally providing a channel key for each if needed."
 msgstr ""
-"j &1lt;রুম১&2gt;[,রুম২][,...] [কী১[,কী২][,...]]:  যদি প্রয়োজন হয় তবে প্রত্যেককে "
-"ঐচ্ছিকভাবে একটি চ্যানেল কী প্রদান করে এক বা একাধিক চ্যানেল প্রবেশ করান।"
+"j &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]:  এক বা একাধিক চ্যানেল দিন, "
+"প্রয়োজনে প্রত্যেককে একটি চ্যানেল কী প্রদান করুন।"
 
 # tithi
 msgid ""
 "join &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]:  Enter one or more "
 "channels, optionally providing a channel key for each if needed."
 msgstr ""
-"যোগদান করুন &1lt;রুম১&2gt;[,রুম২][,...] [কী১[,কী২][,...]]:  যদি প্রয়োজন হয় তবে "
-"প্রত্যেককে ঐচ্ছিকভাবে একটি চ্যানেল কী প্রদান করে এক বা একাধিক চ্যানেল প্রবেশ করান।"
+"join &lt;room1&gt;[,room2][,...] [key1[,key2][,...]]:  এক বা একাধিক চ্যানেল "
+"দিন, প্রয়োজনে প্রত্যেককে একটি চ্যানেল কী প্রদান করুন।"
 
 # tithi
 msgid ""
 "kick &lt;nick&gt; [message]:  Remove someone from a channel. You must be a "
 "channel operator to do this."
 msgstr ""
-"মুছে ফেলা &1lt;ডাকনাম&2gt; [বার্তা]:  একটি চ্যানেল থেকে কাউকে অপসারণ করুন। এটা "
-"করতে আপনাকে অবশ্যই চ্যানেলে অপারেটর হতে হবে।"
+"kick &lt;nick&gt; [message]:  একটি চ্যানেল থেকে কাউকে অপসারণ করুন। এটি করতে "
+"আপনাকে অবশ্যই চ্যানেলে অপারেটর হতে হবে।"
 
 msgid ""
 "list:  Display a list of chat rooms on the network. <i>Warning, some servers "
 "may disconnect you upon doing this.</i>"
 msgstr ""
-"তালিকা: নেটওয়ার্কে আড্ডা ঘরের তালিকা প্রদর্শন করুন। <i>Warning, some servers may "
-"disconnect you upon doing this</i>"
+"list: নেটওয়ার্কে আড্ডার আসরের তালিকা প্রদর্শন করা হবে। <i>সতর্কবানী: এটি করলে কিছু "
+"সার্ভার আপনাকে বিচ্ছিন্ন করে দিতে পারে।</i>   "
 
 # tithi
 msgid "me &lt;action to perform&gt;:  Perform an action."
-msgstr "আমাকে &1lt;সম্পাদনার কাজ&2gt;:  একটি কাজ সম্পাদন করুন।"
+msgstr "me &lt;action to perform&gt;: একটি ক্রিয়া সম্পাদন করুন।"
 
 # tithi
 msgid "memoserv: Send a command to memoserv"
-msgstr "স্মৃতি সার্ভার: স্মৃতি সার্ভারে একটি নির্দেশ পাঠান"
-
-# tithi
+msgstr "memoserv: memoservএ একটি কমান্ড পাঠানো হবে"
+
 msgid ""
 "mode &lt;+|-&gt;&lt;A-Za-z&gt; &lt;nick|channel&gt;:  Set or unset a channel "
 "or user mode."
 msgstr ""
-"অবস্থা &1lt;+|-&2gt;&3lt;A-Za-z&4gt; &5lt;ডাকনাম|চ্যানেল&6gt;:  একটি চ্যানেল বা "
-"ব্যবহারকারীর মোড নির্ধারন বা অনির্ধারণ করুন।"
-
-# tithi
+"mode &lt;+|-&gt;&lt;A-Za-z&gt; &lt;nick|channel&gt;:  একটি চ্যানেল বা "
+"ব্যবহারকারীর মোড নির্ধারন করুন বা সরিয়ে ফেলুন।"
+
 msgid ""
 "msg &lt;nick&gt; &lt;message&gt;:  Send a private message to a user (as "
 "opposed to a channel)."
 msgstr ""
-"বার্তা &1lt;ডাকনাম&2gt; &3lt;বার্তা&4gt;:  একজন ব্যবহারকারীকে একটি ব্যক্তিগত "
-"বার্তা পাঠান (একটি চ্যানেলের বিপরীতে)।"
+"msg &lt;nick&gt; &lt;message&gt;:  একজন ব্যবহারকারীকে (চ্যানেলে নয়) একটি "
+"ব্যক্তিগত বার্তা পাঠান ।"
 
 msgid "names [channel]:  List the users currently in a channel."
-msgstr "নামসমূহ [চ্যানেল১]: চ্যানেলে বর্তমান ব্যবহারকারীদের তালিকা করুন।"
+msgstr "names [channel]: চ্যানেলে বর্তমান ব্যবহারকারীদের তালিকা করুন।"
 
 msgid "nick &lt;new nickname&gt;:  Change your nickname."
-msgstr "ডাকনাম &1lt;নতুন ডাকনাম&2gt;: আপনার ডাকনাম পরিবর্তন করুন।"
+msgstr "nick &lt;new nickname&gt;: আপনার ডাকনাম পরিবর্তন করুন।"
 
 # tithi
 msgid "nickserv: Send a command to nickserv"
-msgstr "ডাকনাম-সার্ভার: ডাকনাম-সার্ভারে একটি নির্দেশ পাঠান"
+msgstr "nickserv: nickservএ একটি কমান্ড পাঠানো হবে"
 
 msgid "notice &lt;target&lt;:  Send a notice to a user or channel."
-msgstr "ঘোষণা &1lt;লক্ষ্য&2lt;: ব্যবহারকারীর কাছে বা চ্যানেলে একটি ঘোষণা পাঠান।"
-
-# tithi
+msgstr "notice &lt;target&lt;: ব্যবহারকারীরকে বা চ্যানেলে একটি ঘোষণা পাঠান।"
+
 msgid ""
 "op &lt;nick1&gt; [nick2] ...:  Grant channel operator status to someone. You "
 "must be a channel operator to do this."
 msgstr ""
-"অপারেটর &1lt;ডাকনাম১&2gt; [ডাকনাম২] ...:  চ্যানেল অপারেটরের অবস্থা কারো কাছে "
-"মেমে নিন। এটা করতে আপনাকে অবশ্যই একজন চ্যানেল অপারেটর হতে হবে।"
-
-# tithi
+"op &lt;nick1&gt; [nick2] ...:  কাউকে চ্যানেল অপারেটরের পদমর্যাদা দিন। এটি করতে "
+"আপনাকে অবশ্যই একজন চ্যানেল অপারেটর হতে হবে।"
+
 msgid ""
 "operwall &lt;message&gt;:  If you don't know what this is, you probably "
 "can't use it."
 msgstr ""
-"operwall &1lt;বার্তা&2gt;:  এটা কি তা যদি আপনি না জানেন, আপনি সম্ভবত এটা "
+"operwall &lt;message&gt;:  এটি কি তা যদি আপনি না জানেন, আপনি সম্ভবত এটি "
 "ব্যবহার করতে পারবেন না।"
 
 # tithi
 msgid "operserv: Send a command to operserv"
-msgstr "অপারেটর-সার্ভার: অপারেটর-সার্ভারে একটি নির্দেশ পাঠান"
+msgstr "operserv: operserv একটি কমান্ড পাঠানো হবে"
 
 # tithi
 msgid ""
 "part [room] [message]:  Leave the current channel, or a specified channel, "
 "with an optional message."
 msgstr ""
-"অংশ [রুম] [বার্তা]:  একটি ঐচ্ছিক বার্তার সহ, বর্তমান চ্যানেল, বা উল্লেখিত চ্যানেল "
-"ত্যাগ করুন।"
+"part [room] [message]:  একটি ঐচ্ছিক বার্তা সহ, বর্তমান চ্যানেল বা নির্বাচিত "
+"চ্যানেল ত্যাগ করুন।"
 
 # tithi
 msgid ""
 "ping [nick]:  Asks how much lag a user (or the server if no user specified) "
 "has."
 msgstr ""
-"পিঙ্গ [ডাকনাম]: একটি ব্যবহারকারী কত পেছনে আছে তা জিজ্ঞাসা (বা সার্ভার যদি কোনো "
-"ব্যবহারকারী উল্লেখিত না থাকে) করুন।"
-
-# tithi
+"ping [nick]: একটি ব্যবহারকারী (বা সার্ভার যদি কোনো ব্যবহারকারী উল্লেখিত না থাকে) "
+"কত পেছনে আছে তা জিজ্ঞাসা করুন।"
+
 msgid ""
 "query &lt;nick&gt; &lt;message&gt;:  Send a private message to a user (as "
 "opposed to a channel)."
 msgstr ""
-"জিজ্ঞাসা &1lt;ডাকনাম&2gt; &3lt;বার্তা&4gt;: একজন ব্যবহারকারীকে একটি ব্যক্তিগত "
-"বার্তা পাঠান (একটি চ্যানেলের বিপরীত হিসেবে)।"
+"query &lt;nick&gt; &lt;message&gt;: একজন ব্যবহারকারীকে (চ্যানেলে নয়) একটি "
+"ব্যক্তিগত বার্তা পাঠান।"
 
 msgid "quit [message]:  Disconnect from the server, with an optional message."
-msgstr "প্রস্থান করুন [বার্তা]: একটি ঐচ্ছিক বার্তাসহ, সার্ভারের থেকে বিচ্ছিন্ন করুন।"
+msgstr "quit [message]: একটি ঐচ্ছিক বার্তা সহ, সার্ভারের থেকে বিচ্ছিন্ন হোন।"
 
 msgid "quote [...]:  Send a raw command to the server."
-msgstr "উক্তি [...]: সার্ভারে একটি অরুপান্তরিত বার্তা পাঠান"
+msgstr "quote [...]: সার্ভারে একটি অশোধিত বার্তা পাঠান।"
 
 # tithi
 msgid ""
 "remove &lt;nick&gt; [message]:  Remove someone from a room. You must be a "
 "channel operator to do this."
 msgstr ""
-"অপসারণ করুন &1lt;ডাকনাম&2gt; [বার্তা]: একটি রুম থেকে কোনও একজন অপসারণ করুন। এটা "
-"করতে আপনাকে অবশ্যই একজন চ্যানেল অপারেটর হতে হবে।"
+"remove &lt;nick&gt; [message]: কাউকে আড্ডা থেকে অপসারণ করুন। এটি করতে আপনাকে "
+"অবশ্যই একজন চ্যানেল অপারেটর হতে হবে।"
 
 msgid "time: Displays the current local time at the IRC server."
-msgstr "সময়: আইআরসি সার্ভারে বর্তমান স্থানীয় সময় প্রদর্শন করে।"
+msgstr "time: IRC সার্ভারের বর্তমান স্থানীয় সময় প্রদর্শন করে।"
 
 msgid "topic [new topic]:  View or change the channel topic."
-msgstr "বিষয়বস্তু [নতুন বিষয়বস্তু]: চ্যানেলের বিষয়বস্তু প্রদর্শন বা পরিবর্তন করুন।"
+msgstr "topic [new topic]:  চ্যানেলের বিষয় প্রদর্শন বা পরিবর্তন করুন।"
 
 # tithi
 msgid "umode &lt;+|-&gt;&lt;A-Za-z&gt;:  Set or unset a user mode."
 msgstr ""
-"ব্যবহারকারী মোড &1lt;+|-&2gt;&3lt;A-Za-z&4gt;: ব্যবহারকারীr মোড নির্ধারণ বা "
-"অনির্ধারণ করুন।"
-
-# tithi
+"umode &lt;+|-&gt;&lt;A-Za-z&gt;: ব্যবহারকারী মোড নির্ধারণ করুন বা মুছে ফেলুন।"
+
 msgid "version [nick]: send CTCP VERSION request to a user"
-msgstr "সংস্করণ [ডাকনাম]: একজন ব্যবহারকারীকে CTCP সংস্করণ অনুরোধ পাঠান"
+msgstr "version [nick]: একজন ব্যবহারকারীকে CTCP VERSION অনুরোধ পাঠান।"
 
 # tithi
 msgid ""
 "voice &lt;nick1&gt; [nick2] ...:  Grant channel voice status to someone. You "
 "must be a channel operator to do this."
 msgstr ""
-"স্বর &1lt;ডাকনাম১&2gt; [ডাকনাম২] ...:  কোন একজনের কাছে চ্যানেলের স্বর অবস্থা "
-"মেনে নিন। এটা করতে আপনাকে অবশ্যই চ্যানেল অপারেটর হতে হবে।"
+"voice &lt;nick1&gt; [nick2] ...:  কাউকে চ্যানেলের ভয়েসের অনুমোদন দিন। এটি করতে "
+"আপনাকে অবশ্যই চ্যানেল অপারেটর হতে হবে।"
 
 # tithi
 msgid ""
 "wallops &lt;message&gt;:  If you don't know what this is, you probably can't "
 "use it."
 msgstr ""
-"wallops &1lt;বার্তা&2gt;:  আপনি যদি না জানেন এটা কি, আপনি সম্ভবত এটা ব্যবহার "
-"করতে পারবেন না।"
+"wallops &lt;message&gt;:  এটি কি তা না জানলে, আপনি সম্ভবত এটি ব্যবহার করতে "
+"পারবেন না।"
 
 # tithi
 msgid "whois [server] &lt;nick&gt;:  Get information on a user."
-msgstr "কে [সার্ভার] &1lt;ডাকনাম&2gt;: একজন ব্যবহারকারীর তথ্য গ্রহণ করুন।"
+msgstr "whois [server] &lt;nick&gt;: একজন ব্যবহারকারীর তথ্য সংগ্রহ করুন।"
 
 # tithi
 msgid "whowas &lt;nick&gt;: Get information on a user that has logged off."
-msgstr "কে ছিল&1lt;ডাকনাম&2gt;: বন্ধ রয়েছে এমন একজন ব্যবহারকারীর তথ্য গ্রহণ করুন।"
-
+msgstr "whowas &lt;nick&gt;: লগআউট করেছেন এমন একজন ব্যবহারকারীর তথ্য সংগ্রহ করুন।"
+
+# mark15
 #, c-format
 msgid "Reply time from %s: %lu seconds"
-msgstr "%1s হতে উত্তর দেয়ার সময়: %2lu সেকেন্ড"
+msgstr "%1$s থেকে উত্তর দেয়ার সময়: %2$lu সেকেন্ড"
 
 msgid "PONG"
 msgstr "PONG"
@@ -3902,86 +3906,74 @@
 msgstr "অজানা ত্রুটি"
 
 msgid "Ad-Hoc Command Failed"
-msgstr "এড-হক নির্দেশ ব্যর্থ"
+msgstr "Ad-Hoc কমান্ড ব্যর্থ"
 
 msgid "execute"
 msgstr "কার্যকর করুন"
 
-# tithi
-#, fuzzy
 msgid "Server requires TLS/SSL, but no TLS/SSL support was found."
 msgstr ""
-"সার্ভারের লগইন করার জন্য TSL/SSL আবশ্যক,  কোনো TLS/SSL সমর্থন খুঁজে পাওয়া যায়নি।"
-
-# tithi
-#, fuzzy
+"সার্ভারে লগইন করার জন্য TSL/SSL আবশ্যক,  কোনো TLS/SSL সাপোর্ট খুঁজে পাওয়া যায়নি।"
+
+# tithi
 msgid "You require encryption, but no TLS/SSL support was found."
-msgstr "আপনার এনক্রিপশন প্রয়োজন, কিন্তু কোনো TLS/SSL সমর্থন খুঁজে পাওয়া যায়নি।"
+msgstr "আপনার এনক্রিপশন প্রয়োজন, কিন্তু কোনো TLS/SSL সাপোর্ট খুঁজে পাওয়া যায়নি।"
 
 msgid "Server requires plaintext authentication over an unencrypted stream"
-msgstr "একটি এনক্রিপশনবিহীন স্ট্রীমে সার্ভারের সরল-পাঠ প্রমাণীকরণ প্রয়োজন"
+msgstr "একটি এনক্রিপশনবিহীন স্ট্রীমে সার্ভারের সরল-টেক্সট প্রমাণীকরণ প্রয়োজন"
 
 #, c-format
 msgid ""
 "%s requires plaintext authentication over an unencrypted connection.  Allow "
 "this and continue authentication?"
 msgstr ""
-"একটি এনক্রিপশনবিহীন সংযোগে %s এর সরল-পাঠ প্রমাণীকরণ প্রয়োজন। এটি অনুমোদন করুন এবং "
-"প্রমাণীকরণ কি অব্যাহত রাখতে চান?"
-
+"একটি এনক্রিপশনবিহীন সংযোগে %s এর সরল-টেক্সট প্রমাণীকরণ প্রয়োজন। এটি অনুমোদন করে "
+"প্রমাণীকরণ অব্যাহত রাখতে চান?"
+
+# ***
 msgid "Plaintext Authentication"
-msgstr "সরল-পাঠ প্রমাণীকরণ"
-
-# tithi
-#, fuzzy
+msgstr "সরল-টেক্সট প্রমাণীকরণ"
+
+# tithi
 msgid "SASL authentication failed"
-msgstr "প্রমাণীকরণ ব্যর্থ"
-
-#, fuzzy
+msgstr "SASL প্রমাণীকরণ ব্যর্থ"
+
 msgid "Invalid response from server"
-msgstr "সার্ভার থেকে অবৈধ সাড়া।"
+msgstr "সার্ভার থেকে অকার্যকর উত্তর"
 
 msgid "Server does not use any supported authentication method"
 msgstr "সার্ভার কোনো সমর্থিত প্রমাণীকরণ প্রক্রিয়া ব্যবহার করে না।"
 
 # tithi
 msgid "You require encryption, but it is not available on this server."
-msgstr "আপনার সঙ্কেতায়ন প্রয়োজন, কিন্তু এটি এই সার্ভারটিতে সহজলভ্য নয়।"
+msgstr "আপনার এনক্রিপশন প্রয়োজন, কিন্তু এটি এই সার্ভারটিতে নেই।"
 
 msgid "Invalid challenge from server"
-msgstr "সার্ভার থেকে অবৈধ চ্যালেঞ্জ"
-
-#, fuzzy, c-format
+msgstr "সার্ভার থেকে অকার্যকর চ্যালেঞ্জ"
+
+#, c-format
 msgid "SASL error: %s"
-msgstr "SASL ত্রুটি"
+msgstr "SASL ত্রুটি: %s"
 
 msgid "The BOSH connection manager terminated your session."
-msgstr ""
-
-#, fuzzy
+msgstr "আপনার সেশনটি BOSH সংযোগ ব্যবস্থাপক সমাপ্ত করেছে।"
+
 msgid "No session ID given"
-msgstr "কোনো কারন দর্শানো হয়নি"
-
-# tithi
-#, fuzzy
+msgstr "কোনো সেশন ID প্রদান করা হয়নি"
+
+# tithi
 msgid "Unsupported version of BOSH protocol"
-msgstr "অসমর্থিত সংস্করণ"
-
-#, fuzzy
+msgstr "BOSH প্রোটোকলের অসমর্থিত সংস্করণ"
+
 msgid "Unable to establish a connection with the server"
-msgstr ""
-"সার্ভারের সাথে সংযোগ স্থাপন করতে পারে না:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "সার্ভারের সাথে সংযোগ স্থাপনে ব্যর্থ"
+
+#, c-format
 msgid "Unable to establish a connection with the server: %s"
-msgstr ""
-"সার্ভারের সাথে সংযোগ স্থাপন করতে পারে না:\n"
-"%s"
-
-#, fuzzy
+msgstr "সার্ভারের সাথে সংযোগ স্থাপনে ব্যর্থ: %s"
+
 msgid "Unable to establish SSL connection"
-msgstr "সংযোগ প্রস্তুত করতে ব্যর্থ"
+msgstr "SSL সংযোগ স্থাপনে ব্যর্থ"
 
 msgid "Full Name"
 msgstr "পুরো নাম"
@@ -4002,13 +3994,13 @@
 msgstr "বর্ধিত ঠিকানা"
 
 msgid "Locality"
-msgstr "এলাকা"
+msgstr "জনপদ"
 
 msgid "Region"
 msgstr "এলাকা"
 
 msgid "Postal Code"
-msgstr "পোষ্টাল কোড"
+msgstr "পোস্টাল কোড"
 
 msgid "Country"
 msgstr "দেশ"
@@ -4022,7 +4014,7 @@
 msgstr "সংগঠনের নাম"
 
 msgid "Organization Unit"
-msgstr "সংগঠন একক"
+msgstr "সংগঠনের বিভাগ"
 
 msgid "Role"
 msgstr "ভূমিকা"
@@ -4031,42 +4023,38 @@
 msgstr "জন্মদিন"
 
 msgid "Description"
-msgstr "বিবরণ"
+msgstr "বর্ণনা"
 
 msgid "Edit XMPP vCard"
-msgstr "XMPP vCard সম্পাদনা করুন"
+msgstr "XMPP vCard সম্পাদনা"
 
 msgid ""
 "All items below are optional. Enter only the information with which you feel "
 "comfortable."
 msgstr ""
-"নিচের সব বিষয়গুলো ঐচ্ছিক। আপনি যে তথ্য প্রবেশ করাতে স্বাচ্ছন্দবোধ করেন শুধুমাত্র তা "
-"প্রবেশ করান।"
+"নিচের সব বিষয়গুলো ঐচ্ছিক। আপনি যেসব তথ্য দিতে স্বাচ্ছন্দ্য বোধ করেন তা লিখতে পারেন।"
 
 msgid "Client"
 msgstr "ক্লায়েন্ট"
 
-# tithi
 msgid "Operating System"
 msgstr "অপারেটিং সিস্টেম"
 
-#, fuzzy
 msgid "Local Time"
-msgstr "স্থানীয় ফাইল:"
+msgstr "স্থানীয় সময়"
 
 msgid "Priority"
 msgstr "অগ্রাধিকার"
 
 msgid "Resource"
-msgstr "সম্পদ"
+msgstr "রিসোর্স"
 
 #, c-format
 msgid "%s ago"
-msgstr ""
-
-#, fuzzy
+msgstr "%s আগে"
+
 msgid "Logged Off"
-msgstr "লগইন করেছে"
+msgstr "লগ আউট হয়েছে"
 
 msgid "Middle Name"
 msgstr "মধ্য নাম"
@@ -4075,7 +4063,7 @@
 msgstr "ঠিকানা"
 
 msgid "P.O. Box"
-msgstr "পি.ও. বক্স"
+msgstr "P.O. বাক্স"
 
 msgid "Photo"
 msgstr "ছবি"
@@ -4085,39 +4073,39 @@
 
 # tithi
 msgid "Un-hide From"
-msgstr "এর হতে উন্মোচিত"
+msgstr "এর থেকে উন্মোচিত"
 
 # tithi
 msgid "Temporarily Hide From"
-msgstr "এর হতে সাময়িকভাবে লুকান"
+msgstr "এর থেকে সাময়িকভাবে লুকানো"
 
 #. && NOT ME
 msgid "Cancel Presence Notification"
-msgstr "উপস্থিতির প্রজ্ঞাপন বাতিল করুন"
+msgstr "উপস্থিতির ঘোষণা বাতিল"
 
 # tithi
 msgid "(Re-)Request authorization"
-msgstr "(পুনরায়-)অনুরোধের প্রাপ্তাধিকার"
+msgstr "(পুনরায়) অনুমোদন অনুরোধ"
 
 # tithi
 #. if(NOT ME)
 #. shouldn't this just happen automatically when the buddy is
 #. removed?
 msgid "Unsubscribe"
-msgstr "অংশীদারী ত্যাগ করুন"
+msgstr "আনসাবস্ক্রাইব"
 
 msgid "Log In"
-msgstr "লগইন করুন"
+msgstr "লগইন"
 
 msgid "Log Out"
-msgstr "লগ আউট করুন"
+msgstr "লগ আউট"
 
 msgid "Chatty"
 msgstr "আড্ডাবাজ"
 
 # tithi
 msgid "Extended Away"
-msgstr "আরও বর্ধিত করুন"
+msgstr "অনেকক্ষন যাবত অন্যত্র"
 
 msgid "Do Not Disturb"
 msgstr "বিরক্ত করবেন না"
@@ -4130,56 +4118,55 @@
 msgstr "শেষ নাম"
 
 msgid "The following are the results of your search"
-msgstr "নিম্নোক্ত আপনার অনুসন্ধানের ফলাফল"
-
-# fix-me tithi
+msgstr "আপনার অনুসন্ধানের ফলাফল নিম্নরূপ"
+
 #. current comment from Jabber User Directory users.jabber.org
 msgid ""
 "Find a contact by entering the search criteria in the given fields. Note: "
 "Each field supports wild card searches (%)"
 msgstr ""
-"প্রদত্ত ক্ষেত্রে সন্ধান বৈশিষ্ট্য প্রবেশ করার মাধ্যমে একটি যোগাযোগ খুঁজুন। নোট: প্রত্যেক "
-"ক্ষেত্র ওয়াইল্ড কার্ড অনুসন্ধানসমূহ সমর্থন করে (%)"
+"অনুসন্ধানের ক্ষেত্রে মান প্রবেশ করে একটি পরিচিতি অনুসন্ধান করুন। নোট: প্রত্যেকটি ক্ষেত্র "
+"ওয়াইল্ড কার্ড অনুসন্ধান সমর্থন করে (%)"
 
 msgid "Directory Query Failed"
-msgstr "নির্দেশিকা জিজ্ঞাসা ব্যর্থ হয়েছে"
+msgstr "ডিরেক্টরি কোয়েরি ব্যর্থ"
 
 msgid "Could not query the directory server."
-msgstr "নির্দেশক সার্ভার সম্পর্কে প্রশ্ন করেনি"
+msgstr "নির্দেশক সার্ভার কোয়েরি করতে পারেনি"
 
 #. Try to translate the message (see static message
 #. list in jabber_user_dir_comments[])
 #, c-format
 msgid "Server Instructions: %s"
-msgstr "সার্ভার নিয়মাবলী: %s"
+msgstr "সার্ভার ইনস্ট্রাকশন: %s"
 
 msgid "Fill in one or more fields to search for any matching XMPP users."
-msgstr "যেকোনো সমন্বয়করণ XMPP ব্যবহারকারীর জন্য খুঁজতে এক বা একাধিক ক্ষেত্র পূরন করুন।"
+msgstr "যেকোনো XMPP ব্যবহারকারীর জন্য অনুসন্ধান করতে এক বা একাধিক ক্ষেত্র পূরন করুন।"
 
 msgid "Email Address"
-msgstr "ই-মেইল ঠিকানা"
+msgstr "ইমেইল ঠিকানা"
 
 msgid "Search for XMPP users"
-msgstr "XMPP ব্যবহারকারীর জন্য অনুসন্ধান করুন"
+msgstr "XMPP ব্যবহারকারী অনুসন্ধান"
 
 #. "Search"
 msgid "Search"
-msgstr "খুঁজুন"
+msgstr "অনুসন্ধান"
 
 msgid "Invalid Directory"
-msgstr "অবৈধ নির্দেশিকা"
+msgstr "অকার্যকর ডিরেক্টরি"
 
 msgid "Enter a User Directory"
-msgstr "একটি ব্যবহারকারীর নির্দেশিকা প্রবেশ করান"
+msgstr "একটি ব্যবহারকারী ডিরেক্টরি দিন"
 
 msgid "Select a user directory to search"
-msgstr "খোঁজার জন্য একটি ব্যবহারকারী নির্দেশিকা নির্বাচন করুন"
+msgstr "অনুসন্ধানের জন্য একটি ব্যবহারকারী ডিরেক্টরি নির্বাচন করুন"
 
 msgid "Search Directory"
-msgstr "অনুসন্ধান নির্দেশিকা"
+msgstr "অনুসন্ধান ডিরেক্টরি "
 
 msgid "_Room:"
-msgstr "কক্ষ: (_R)"
+msgstr "আসর (_R):"
 
 msgid "_Server:"
 msgstr "সার্ভার: (_S)"
@@ -4189,110 +4176,105 @@
 
 #, c-format
 msgid "%s is not a valid room name"
-msgstr "%s বৈধ কক্ষের নাম নয়"
+msgstr "%s কার্যকর আসরের নাম নয়"
 
 msgid "Invalid Room Name"
-msgstr "অবৈধ কক্ষের নাম"
+msgstr "অকার্যকর আসরের নাম"
 
 #, c-format
 msgid "%s is not a valid server name"
-msgstr "%s বৈধ সার্ভার নাম নয়"
+msgstr "%s কার্যকর সার্ভার নাম নয়"
 
 msgid "Invalid Server Name"
-msgstr "অবৈধ সার্ভার নাম"
+msgstr "অকার্যকর সার্ভার নাম"
 
 #, c-format
 msgid "%s is not a valid room handle"
-msgstr "%s বৈধ কক্ষ নিয়ন্ত্রণ নয়"
+msgstr "%s কোন কার্যকর আসর হ্যান্ডেল নয়"
 
 msgid "Invalid Room Handle"
-msgstr "অবৈধ কক্ষ নিয়ন্ত্রণ"
+msgstr "অকার্যকর আসর হ্যান্ডেল"
 
 msgid "Configuration error"
-msgstr "বিন্যাসন ত্রুটি"
+msgstr "কনফিগারেশন ত্রুটি"
 
 msgid "Unable to configure"
-msgstr "বিন্যাস করতে অক্ষম"
+msgstr "কনফিগার করতে ব্যর্থ"
 
 msgid "Room Configuration Error"
-msgstr "কক্ষ বিন্যাসন ত্রুটি"
+msgstr "আসর কনফিগারেশনে ত্রুটি"
 
 # tithi
 msgid "This room is not capable of being configured"
-msgstr "এই কক্ষটি বিন্যাসিত হতে সক্ষম নয়"
+msgstr "এই আসরটি কনফিগার করা সম্ভব নয়"
 
 msgid "Registration error"
-msgstr "নিবন্ধণ ত্রুটি"
+msgstr "নিবন্ধন ত্রুটি"
 
 # tithi
 msgid "Nick changing not supported in non-MUC chatrooms"
-msgstr "ডাকনাম পরিবর্তন MUC-বহিঃস্থ আড্ডারুমে সমর্থিত নয়"
+msgstr "MUC-বহিঃস্থ আড্ডার আসরে ডাকনাম পরিবর্তন সমর্থিত নয়"
 
 msgid "Error retrieving room list"
-msgstr "রুম তালিকা উদ্ধার করার ত্রুটি"
+msgstr "আসরের তালিকা উদ্ধার করায় ত্রুটি"
 
 msgid "Invalid Server"
-msgstr "অবৈধ সার্ভার"
+msgstr "অকার্যকর সার্ভার"
 
 msgid "Enter a Conference Server"
-msgstr "একটি কনফারেন্স সার্ভার প্রবেশ করান"
+msgstr "অধিবেশন সার্ভারের নাম দিন"
 
 msgid "Select a conference server to query"
-msgstr "অনুসন্ধানের জন্য একটি কনফারেন্স সার্ভার প্রবেশ করান"
+msgstr "খোঁজার জন্য একটি অধিবেশন সার্ভারের নাম দিন"
 
 msgid "Find Rooms"
-msgstr "কক্ষ খুঁজুন"
-
-#, fuzzy
+msgstr "আসর খুঁজুন"
+
 msgid "Affiliations:"
-msgstr "উপনাম:"
-
-#, fuzzy
+msgstr "অধিভুক্তি:"
+
 msgid "No users found"
-msgstr "কোনো সমন্বয়কারী ব্যবহারকারী পাওয়া যায়নি।"
-
-#, fuzzy
+msgstr "কোনো ব্যবহারকারী পাওয়া যায়নি"
+
 msgid "Roles:"
-msgstr "ভূমিকা"
-
-#, fuzzy
+msgstr "ভূমিকা:"
+
 msgid "Ping timed out"
-msgstr "পিঙ্গ সময়-উত্তীর্ণ হয়েছে"
+msgstr "পিং এর সময় উত্তীর্ণ হয়েছে"
 
 msgid ""
 "Unable to find alternative XMPP connection methods after failing to connect "
 "directly."
 msgstr ""
+"সরাসরি সংযোগ স্থাপনে ব্যর্থ হওয়ার পর বিকল্প XMPP সংযোগ প্রক্রিয়া খুঁজে পাওয়া যায়নি।"
 
 msgid "Invalid XMPP ID"
-msgstr "অবৈধ XMPP ID"
-
-# tithi
+msgstr "অকার্যকর XMPP ID"
+
 msgid "Invalid XMPP ID. Domain must be set."
-msgstr "অবৈধ XMPP ID। ডোমেইন অবশ্যই নির্ধারণ করতে হবে।"
-
-#, fuzzy
+msgstr "অকার্যকর XMPP ID। অবশ্যই ডোমেইন নির্ধারণ করতে হবে।"
+
+# tithi
 msgid "Malformed BOSH URL"
-msgstr "সার্ভারে সংযোগ দিতে ব্যর্থ হয়েছে।"
-
-# tithi
+msgstr "ত্রুটিপূর্ণ BOSH URL"
+
 #, c-format
 msgid "Registration of %s@%s successful"
-msgstr "%1s@%2s এর নিবন্ধন সফল"
+msgstr "%1$s@%2$s এর নিবন্ধন সফল"
 
 #, c-format
 msgid "Registration to %s successful"
-msgstr "%s এ নিবন্ধন সফল হয়েছে"
+msgstr "%s এ নিবন্ধন সফল"
 
 msgid "Registration Successful"
-msgstr "নিবন্ধন সফল হয়েছে"
+msgstr "নিবন্ধন সফল"
 
 msgid "Registration Failed"
 msgstr "নিবন্ধন ব্যর্থ হয়েছে"
 
 #, c-format
 msgid "Registration from %s successfully removed"
-msgstr "%s হতে নিবন্ধন সফলভাবে অপসারণ করা হয়েছে"
+msgstr "%s থেকে নিবন্ধন সফলভাবে অপসারণ করা হয়েছে"
 
 msgid "Unregistration Successful"
 msgstr "অনিবন্ধন সফল হয়েছে"
@@ -4301,10 +4283,10 @@
 msgstr "অনিবন্ধন ব্যর্থ হয়েছে"
 
 msgid "State"
-msgstr "রাজ্য"
+msgstr "অঙ্গরাজ্য"
 
 msgid "Postal code"
-msgstr "ডাক সংকেত"
+msgstr "পোস্টাল কোড"
 
 msgid "Phone"
 msgstr "ফোন"
@@ -4313,7 +4295,7 @@
 msgstr "তারিখ"
 
 msgid "Already Registered"
-msgstr "ইতোমধ্যে নিবন্ধিত"
+msgstr "ইতিমধ্যেই নিবন্ধিত"
 
 msgid "Unregister"
 msgstr "অনিবন্ধন"
@@ -4323,13 +4305,13 @@
 msgstr "আপনার একাউন্ট নিবন্ধন পরিবর্তন করতে অনুগ্রহ করে নিচের তথ্য পূরণ করুন।"
 
 msgid "Please fill out the information below to register your new account."
-msgstr "আপনার নতুন একাউন্ট নিবন্ধন পরিবর্তন করতে অনুগ্রহ করে নিচের তথ্য পূরণ করুন।"
+msgstr "আপনার নতুন একাউন্ট নিবন্ধন করতে অনুগ্রহ করে নিচের তথ্য পূরণ করুন।"
 
 msgid "Register New XMPP Account"
-msgstr "নতুন XMPP একাউন্ট নিবন্ধন করুন"
+msgstr "নতুন XMPP একাউন্ট নিবন্ধন"
 
 msgid "Register"
-msgstr "নিবন্ধন করুন"
+msgstr "নিবন্ধন"
 
 #, c-format
 msgid "Change Account Registration at %s"
@@ -4340,146 +4322,141 @@
 msgstr "%s এ নতুন একাউন্ট নিবন্ধন করুন"
 
 msgid "Change Registration"
-msgstr "নিবন্ধন পরিবর্তন করুন"
-
-#, fuzzy
-msgid "Malformed BOSH Connect Server"
-msgstr "সার্ভারে সংযোগ দিতে ব্যর্থ হয়েছে।"
+msgstr "নিবন্ধন পরিবর্তন"
 
 msgid "Error unregistering account"
-msgstr "একাউন্ট নিবন্ধনহীন করার ত্রুটি"
+msgstr "একাউন্ট অনিবন্ধনে ত্রুটি"
 
 # tithi
 msgid "Account successfully unregistered"
-msgstr "একাউন্ট সফলভাবে অনিবন্ধীত করা হয়েছে"
+msgstr "একাউন্ট সফলভাবে অনিবন্ধীত হয়েছে"
 
 msgid "Initializing Stream"
-msgstr "স্ট্রীম প্রস্তুত করছে"
+msgstr "স্ট্রীম আরম্ভ করা হচ্ছে"
 
 msgid "Initializing SSL/TLS"
-msgstr "SSL/TLS প্রস্তুত করছে"
+msgstr "SSL/TLS প্রস্তুত করা হচ্ছে"
 
 # tithi
 msgid "Authenticating"
-msgstr "প্রমাণীকরণ"
+msgstr "প্রমাণীকরণ করা হচ্ছে"
 
 # tithi
 msgid "Re-initializing Stream"
-msgstr "স্ট্রীম পুনরায় প্রস্তুত করছে"
+msgstr "স্ট্রীম পুনরায় প্রস্তুত করা হচ্ছে"
 
 msgid "Server doesn't support blocking"
-msgstr "সার্ভার আবদ্ধকরণ সমর্থন করে না"
-
-# tithi
+msgstr "সার্ভার ব্লক করা সমর্থন করে না"
+
 msgid "Not Authorized"
 msgstr "অনুমোদিত নয়"
 
 msgid "Mood"
-msgstr "অবস্থা"
+msgstr "মনমেজাজ"
 
 # tithi
 msgid "Now Listening"
-msgstr "এখন শুনছে"
+msgstr "এখন লিসেন করা হচ্ছে"
 
 msgid "Both"
 msgstr "উভয়"
 
 # tithi
 msgid "From (To pending)"
-msgstr "হতে (অমীমাংসিত)"
+msgstr "প্রেরক (প্রাপক অমীমাংসিত)"
 
 msgid "From"
-msgstr "হতে"
+msgstr "প্রেরক"
 
 msgid "To"
-msgstr "প্রতি"
+msgstr "প্রাপক"
 
 # tithi
 msgid "None (To pending)"
-msgstr "কোনটি নয় (অমীমাংসিত)"
+msgstr "কোনটি নয় (প্রাপক অমীমাংসিত)"
 
 msgid "None"
-msgstr "কোনটি না"
+msgstr "কোনটি নয়"
 
 msgid "Subscription"
-msgstr "শেয়ারকরণ"
+msgstr "সাবস্ক্রিপশন"
 
 msgid "Mood Text"
-msgstr "মোড পাঠ"
+msgstr "মনমেজাজের টেক্সট"
 
 msgid "Allow Buzz"
-msgstr "বাজ অনুমোদন করুন"
+msgstr "বাজ! অনুমোদন করা হবে"
 
 # tithi
 msgid "Tune Artist"
-msgstr "টিউন শিল্পী"
+msgstr "সুরের শিল্পী"
 
 msgid "Tune Title"
-msgstr "টিউন শিরোনাম"
+msgstr "সুরের শিরোনাম"
 
 # tithi
 msgid "Tune Album"
-msgstr "টিউন অ্যালবাম"
+msgstr "সুরের অ্যালবাম"
 
 # tithi
 msgid "Tune Genre"
-msgstr "টিউনের ধরন"
+msgstr "সুরের শাখা"
 
 msgid "Tune Comment"
-msgstr "টিউনের মন্তব্য"
+msgstr "সুরের মন্তব্য"
 
 # tithi
 msgid "Tune Track"
-msgstr "টিউন গতিপথ"
+msgstr "সুরের ট্র্যাক"
 
 # tithi
 msgid "Tune Time"
-msgstr "টিউন সময়"
+msgstr "সুরের সময়"
 
 # tithi
 msgid "Tune Year"
-msgstr "টিউন সন"
+msgstr "সুরের সন"
 
 # tithi
 msgid "Tune URL"
-msgstr "টিউন URL"
+msgstr "সুরের URL"
 
 msgid "Password Changed"
-msgstr "গুপ্তসংকেত পরিবর্তিত হয়েছে"
+msgstr "পাসওয়ার্ড পরিবর্তিত হয়েছে"
 
 msgid "Your password has been changed."
-msgstr "আপনার গুপ্তসংকেত পরিবর্তিত হয়েছে।"
+msgstr "আপনার পাসওয়ার্ড পরিবর্তিত হয়েছে।"
 
 msgid "Error changing password"
-msgstr "গুপ্তসংকেত পরিবর্তনে ত্রুটি"
+msgstr "পাসওয়ার্ড পরিবর্তনে ত্রুটি"
 
 msgid "Change XMPP Password"
-msgstr "XMPP গুপ্তসংকেত পরিবর্তন করুন"
+msgstr "XMPP পাসওয়ার্ড পরিবর্তন"
 
 msgid "Please enter your new password"
-msgstr "আপনার নতুন গুপ্তসংকেতটি প্রবেশ করান"
+msgstr "আপনার নতুন পাসওয়ার্ড দিন"
 
 msgid "Set User Info..."
-msgstr "ব্যবহারকারীর তথ্য নির্ধারণ করুন..."
+msgstr "ব্যবহারকারীর তথ্য নির্ধারণ..."
 
 #. if (js->protocol_options & CHANGE_PASSWORD) {
 msgid "Change Password..."
-msgstr "গুপ্তসংকেত পরিবর্তন করুন..."
+msgstr "পাসওয়ার্ড পরিবর্তন..."
 
 #. }
 msgid "Search for Users..."
-msgstr "ব্যবহারকারীর জন্য খুঁজুন..."
+msgstr "ব্যবহারকারীর অনুসন্ধান..."
 
 # tithi
 msgid "Bad Request"
-msgstr "খারাপ অনুরোধ"
+msgstr "ত্রুটিযুক্ত অনুরোধ"
 
 msgid "Conflict"
 msgstr "দ্বন্দ্ব"
 
 # tithi
 msgid "Feature Not Implemented"
-msgstr "বৈশিষ্ট্য এখনও বাস্তবায়িত হয়নি"
+msgstr "ফিচার এখনও বাস্তবায়িত হয়নি"
 
 msgid "Forbidden"
 msgstr "নিষিদ্ধ"
@@ -4492,11 +4469,11 @@
 
 # tithi
 msgid "Item Not Found"
-msgstr "বিষয়োপকরণ খুঁজে পাওয়া যায়নি"
+msgstr "আইটেম খুঁজে পাওয়া যায়নি"
 
 # tithi
 msgid "Malformed XMPP ID"
-msgstr "বিকৃত XMPP ID"
+msgstr "ত্রুটিযুক্ত XMPP ID"
 
 msgid "Not Acceptable"
 msgstr "গ্রহণযোগ্য নয়"
@@ -4506,10 +4483,10 @@
 
 # tithi
 msgid "Payment Required"
-msgstr "অর্থপ্রদান প্রয়োজন"
+msgstr "অর্থপ্রদান আবশ্যক"
 
 msgid "Recipient Unavailable"
-msgstr "প্রাপক অপ্রাপ্য"
+msgstr "প্রাপক উপস্থিত নেই"
 
 msgid "Registration Required"
 msgstr "নিবন্ধন প্রয়োজন"
@@ -4519,45 +4496,45 @@
 
 # tithi
 msgid "Remote Server Timeout"
-msgstr "দূরবর্তী সার্ভারের সময় উত্তীর্ণ হয়েছে"
+msgstr "দূরবর্তী সার্ভারের টাইমআউট হয়েছে"
 
 # tithi
 msgid "Server Overloaded"
-msgstr "সার্ভার অতিরিক্ত বোঝাইকৃত"
+msgstr "সার্ভার অতিরিক্ত লোড হয়েছে"
 
 msgid "Service Unavailable"
-msgstr "পরিসেবা অপ্রাপ্য"
+msgstr "সার্ভিস পাওয়া যায়নি"
 
 # tithi
 msgid "Subscription Required"
-msgstr "শেয়ারকরণ প্রয়োজন"
+msgstr "সাবস্ক্রিপশন প্রয়োজন"
 
 msgid "Unexpected Request"
 msgstr "অপ্রত্যাশিত অনুরোধ"
 
 # tithi
 msgid "Authorization Aborted"
-msgstr "প্রাপ্তাধিকার বাতিলকৃত"
+msgstr "অনুমোদন প্রদান বাতিল"
 
 # tithi
 msgid "Incorrect encoding in authorization"
-msgstr "প্রাপ্তাধিকারে ত্রুটিপূর্ণ সঙ্কেতায়ন"
+msgstr "অনুমোদনে ত্রুটিপূর্ণ এনকোডিং"
 
 # tithi
 msgid "Invalid authzid"
-msgstr "অবৈধ প্রাপ্তাধিকার"
+msgstr "অকার্যকর authzid"
 
 # tithi
 msgid "Invalid Authorization Mechanism"
-msgstr "অবৈধ প্রাপ্তাধিকার কৌশল"
+msgstr "অকার্যকর অনুমোদন কৌশল"
 
 # tithi
 msgid "Authorization mechanism too weak"
-msgstr "প্রাপ্তাধিকার কৌশল খুব দূর্বল"
+msgstr "অনুমোদন কৌশল খুব দুর্বল"
 
 # tithi
 msgid "Temporary Authentication Failure"
-msgstr "সাময়িক প্রমাণীকরণ ব্যর্থ"
+msgstr "সাময়িক প্রমাণীকরণ ব্যর্থতা"
 
 # tithi
 msgid "Authentication Failure"
@@ -4565,16 +4542,16 @@
 
 # tithi
 msgid "Bad Format"
-msgstr "খারাপ বিন্যাস"
+msgstr "ত্রুটিযুক্ত বিন্যাস"
 
 msgid "Bad Namespace Prefix"
-msgstr "খারাপ নাম-পরিসরের উপপদ"
+msgstr "ত্রুটিযুক্ত নেমস্পেস উপসর্গ"
 
 msgid "Resource Conflict"
-msgstr "সম্পদ দ্বন্দ্ব তৈরি করে"
+msgstr "রিসোর্স দ্বন্দ্ব"
 
 msgid "Connection Timeout"
-msgstr "সংযোগ সময় উত্তীর্ণ হয়েছে"
+msgstr "সংযোগ সময়কাল উত্তীর্ণ"
 
 # tithi
 msgid "Host Gone"
@@ -4584,23 +4561,20 @@
 msgstr "অজানা হোস্ট"
 
 msgid "Improper Addressing"
-msgstr "অনুপযুক্ত নির্দেশকরণ"
+msgstr "অশুদ্ধ ঠিকানা"
 
 msgid "Invalid ID"
-msgstr "অবৈধ আইডি"
-
-# tithi
+msgstr "অকার্যকর ID"
+
 msgid "Invalid Namespace"
-msgstr "অবৈধ নামপরিসর"
+msgstr "অকার্যকর নেমস্পেস"
 
 msgid "Invalid XML"
-msgstr "অবৈধ এক্সএমএল"
-
-# tithi
+msgstr "অকার্যকর XML"
+
 msgid "Non-matching Hosts"
-msgstr "সমন্বয়হীন হোস্ট"
-
-# tithi
+msgstr "হোস্টে একই রকম নয়"
+
 msgid "Policy Violation"
 msgstr "নীতিমালা লঙ্ঘন"
 
@@ -4608,54 +4582,50 @@
 msgstr "দূরবর্তী সংযোগ ব্যর্থ হয়েছে"
 
 msgid "Resource Constraint"
-msgstr "সম্পদের  সীমাবদ্ধতা"
-
-# tithi
+msgstr "রিসোর্স সীমাবদ্ধতা"
+
 msgid "Restricted XML"
-msgstr "নিয়ন্ত্রিত XML"
+msgstr "সীমিত XML"
 
 msgid "See Other Host"
-msgstr "অন্যান্য হোষ্ট দেখুন"
+msgstr "অন্যান্য হোস্ট দেখুন"
 
 msgid "System Shutdown"
-msgstr "সিস্টেম বন্ধ করুন"
-
-# tithi
+msgstr "সিস্টেম বন্ধ"
+
 msgid "Undefined Condition"
 msgstr "অনির্ধারিত শর্ত"
 
-# tithi
+# mark20
 msgid "Unsupported Encoding"
-msgstr "অসমর্থিত সঙ্কেতায়ন"
-
-# tithi
+msgstr "অসমর্থিত এনকোডিং"
+
 msgid "Unsupported Stanza Type"
-msgstr "অসমর্থিত স্ট্যানজা ধরন"
+msgstr "অসমর্থিত ধরণের স্তবক"
 
 # tithi
 msgid "Unsupported Version"
 msgstr "অসমর্থিত সংস্করণ"
 
-# tithi
 msgid "XML Not Well Formed"
-msgstr "XMLসঠিক ভাবে গঠিত নয়"
+msgstr "XML সঠিকভাবে গঠিত নয়"
 
 msgid "Stream Error"
 msgstr "স্ট্রীম ত্রুটি"
 
 #, c-format
 msgid "Unable to ban user %s"
-msgstr "%s ব্যবহারকারীকে নিষিদ্ধ করতে অক্ষম"
+msgstr "%s ব্যবহারকারীকে নিষিদ্ধ করতে ব্যর্থ"
 
 # tithi
 #, c-format
 msgid "Unknown affiliation: \"%s\""
-msgstr "অজানা সম্পর্ক: \"%s\""
+msgstr "অজানা অধিভুক্তি: \"%s\""
 
 # tithi
 #, c-format
 msgid "Unable to affiliate user %s as \"%s\""
-msgstr "%1s ব্যবহারকারীকে \"%2s\" হিসেবে সম্পর্কিত করতে অসমর্থ"
+msgstr "%1$s ব্যবহারকারীকে \"%2$s\" হিসেবে অধিভুক্ত করতে ব্যর্থ"
 
 #, c-format
 msgid "Unknown role: \"%s\""
@@ -4663,144 +4633,137 @@
 
 #, c-format
 msgid "Unable to set role \"%s\" for user: %s"
-msgstr "ব্যবহারকারীর জন্য \"%1s\" ভূমিকা নির্ধারণ করতে ব্যর্থ: %2s"
+msgstr "ব্যবহারকারীর জন্য \"%1$s\" ভূমিকা নির্ধারণ করতে ব্যর্থ: %2$s"
 
 #, c-format
 msgid "Unable to kick user %s"
-msgstr "%s ব্যবহারকারীকে বের করে দিতে অক্ষম"
+msgstr "%s ব্যবহারকারীকে তিরস্কার করতে ব্যর্থ"
 
 #, c-format
 msgid "Unable to ping user %s"
-msgstr "%s ব্যবহারকারীকে পিঙ্গ করতে অক্ষম"
-
-# tithi
-#, fuzzy, c-format
+msgstr "%s ব্যবহারকারীকে পিং করতে ব্যর্থ"
+
+#, c-format
 msgid "Unable to buzz, because there is nothing known about %s."
-msgstr "বাজ দিতে ব্যর্থ, কারণ %s ব্যবহারকারীর সম্পর্কে কোনো কিছু জানা নেই।"
-
-# tithi
-#, fuzzy, c-format
+msgstr "বাজ! করতে ব্যর্থ, কারণ %s  সম্পর্কে কোনো কিছু জানা নেই।"
+
+# tithi
+#, c-format
 msgid "Unable to buzz, because %s might be offline."
-msgstr "বাজ দিতে ব্যর্থ, কারণ %s ব্যবহারকারীরা সম্ভবত অফলাইনে।"
-
-# tithi
-#, fuzzy, c-format
+msgstr "বাজ! করতে ব্যর্থ, কারণ %s সম্ভবত অফলাইন।"
+
+# tithi
+#, c-format
 msgid ""
 "Unable to buzz, because %s does not support it or does not wish to receive "
 "buzzes now."
-msgstr "বাজ দিতে ব্যর্থ, কারণ %s ব্যবহারকারী এটি সমর্থন করে না।"
+msgstr "বাজ! করতে ব্যর্থ, কারণ %s এটি সমর্থন করেন না বা এখন তা গ্রহন করতে ইচ্ছুক নন।"
 
 # tithi
 #, c-format
 msgid "Buzzing %s..."
-msgstr "%s বাজ দিচ্ছে..."
+msgstr "%s কে বাজ! দেয়া হচ্ছে..."
 
 #. Yahoo only supports one attention command: the 'buzz'.
 #. This is index number YAHOO_BUZZ.
 msgid "Buzz"
-msgstr "বাজ"
+msgstr "বাজ!"
 
 #, c-format
 msgid "%s has buzzed you!"
-msgstr "%s আপনাকে বাজ দিয়েছে!"
-
-#, fuzzy, c-format
+msgstr "%s আপনাকে বাজ! দিয়েছেন!"
+
+#, c-format
 msgid "Unable to initiate media with %s: invalid JID"
-msgstr "%s এ ফাইল পাঠাতে সমর্থ ছিল না, অবৈধ JID"
-
-#, fuzzy, c-format
+msgstr "%s দ্বারা মিডিয়া শুরু করতে ব্যর্থ: অকার্যকর JID"
+
+#, c-format
 msgid "Unable to initiate media with %s: user is not online"
-msgstr "%s এ ফাইল পাঠাতে সমর্থ ছিল না, ব্যবহারকারী অনলাইনে নেই"
-
-#, fuzzy, c-format
+msgstr "%s দ্বারা মিডিয়া শুরু করতে ব্যর্থ: ব্যবহারকারী অনলাইনে নেই"
+
+#, c-format
 msgid "Unable to initiate media with %s: not subscribed to user presence"
-msgstr "%s এ ফাইল পাঠাতে সমর্থ ছিল না, ব্যবহারকারী উপস্থিতিতে সম্মত নয়"
-
-#, fuzzy
+msgstr "%s দ্বারা মিডিয়া শুরু করতে ব্যর্থ: ব্যবহারকারী উপস্থিতিতে সাবস্ক্রাইব করা নেই"
+
 msgid "Media Initiation Failed"
-msgstr "নিবন্ধন ব্যর্থ হয়েছে"
+msgstr "মিডিয়া আরম্ভ করা ব্যর্থ হয়েছে"
 
 # fix me tithi
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Please select the resource of %s with which you would like to start a media "
 "session."
 msgstr ""
-"অনুগ্রহ করে আপনি %s এর এমন একটি সম্পদ নির্বাচন করুন যাতে আপনি একটি ফাইল পাঠাতে চান"
+"অনুগ্রহ করে %s এর একটি রিসোর্স নির্বাচন করুন যার মাধ্যমে আপনি একটি মিডিয়া সেশন শুরু "
+"করতে চান।"
 
 msgid "Select a Resource"
-msgstr "একটি সম্পদ নির্বাচন করুন"
-
-# tithi
-#, fuzzy
+msgstr "একটি রিসোর্স নির্বাচন করুন"
+
+# tithi
 msgid "Initiate Media"
-msgstr "আড্ডা প্রস্তুত করুন (_C)"
+msgstr "মিডিয়া শুরু করুন"
 
 msgid "config:  Configure a chat room."
-msgstr "বিন্যাস: একটি আড্ডার কক্ষ পছন্দসই বিন্যাস করুন।"
+msgstr "config: একটি আড্ডার আসর কনফিগার করে।"
 
 msgid "configure:  Configure a chat room."
-msgstr "বিন্যাসন: একটি আড্ডার কক্ষ পছন্দসই বিন্যাস করুন।"
+msgstr "configure: একটি আড্ডার আসর কনফিগার করে।"
 
 msgid "part [room]:  Leave the room."
-msgstr "অংশ [কক্ষ]:  কক্ষ ত্যাগ করুন।"
+msgstr "part [room]:  আসর ত্যাগ করুন।"
 
 # tithi
 msgid "register:  Register with a chat room."
-msgstr "নিবন্ধন করুন: আড্ডা রুমের সাথে নিবন্ধন করুন।"
+msgstr "register: আড্ডার আসরে নিবন্ধিত হোন।"
 
 msgid "topic [new topic]:  View or change the topic."
-msgstr "বিষয়বস্তু [নতুন বিষয়বস্তু]:  বিষয়বস্তু প্রদর্শন অথবা পরিবর্তন করুন।"
+msgstr "topic [new topic]:  বিষয় প্রদর্শন অথবা পরিবর্তন করুন।"
 
 msgid "ban &lt;user&gt; [reason]:  Ban a user from the room."
-msgstr ""
-"নিষিদ্ধ &lt;ব্যবহারকারী&2gt; [কারণ]: একজন ব্যবহারকারীকে কক্ষ থেকে নিষিদ্ধ করুন।"
-
-# tithi
-#, fuzzy
+msgstr "ban &lt;user&gt; [reason]: একজন ব্যবহারকারীকে আসর থেকে নিষিদ্ধ করুন।"
+
+# tithi
 msgid ""
 "affiliate &lt;owner|admin|member|outcast|none&gt; [nick1] [nick2] ...: Get "
 "the users with an affiliation or set users' affiliation with the room."
 msgstr ""
-"সম্পর্ক &1lt;ব্যবহারকারী&2gt; &3lt;মালিক|প্রশাসন|সদস্য|বাইরের|কেউনা&4gt;:কক্ষের "
-"সঙ্গে একটি ব্যবহারকারীর সম্পর্ক নির্ধারণ করুন।"
-
-# tithi
-#, fuzzy
+"affiliate &lt;user&gt; &lt;owner|admin|member|outcast|none&gt;: অধিভুক্তি "
+"সহকারে ব্যবহারকারী গ্রহন করুন অথবা আসরের সঙ্গে ব্যবহারকারীর অধিভুক্তি নির্ধারণ করুন।"
+
+# tithi
 msgid ""
 "role &lt;moderator|participant|visitor|none&gt; [nick1] [nick2] ...: Get the "
 "users with an role or set users' role with the room."
 msgstr ""
-"ভূমিকা &1lt;ব্যবহারকারী&2gt; &3lt;সমন্বয়জ্ঞ|অংশগ্রহনকারী|পরিদর্শক|কেউনা&4gt;: কক্ষে "
-"ব্যবহারকারীর ভূমিকা নির্ধারণ করুন।"
+"role &lt;user&gt; &lt;moderator|participant|visitor|none&gt;: ভূমিকা সহকারে "
+"ব্যবহারকারী গ্রহন করুন অথবা আসরের সঙ্গে ব্যবহারকারীর ভূমিকা নির্ধারণ করুন।"
 
 msgid "invite &lt;user&gt; [message]:  Invite a user to the room."
-msgstr ""
-"আমন্ত্রণ &1lt;ব্যবহাকারী&2gt; [বার্তা]: একজন ব্যবহারকারীকে কক্ষে আমন্ত্রণ জানান"
+msgstr "invite &lt;user&gt; [message]: একজন ব্যবহারকারীকে আসরে আমন্ত্রণ জানান"
 
 msgid "join: &lt;room&gt; [password]:  Join a chat on this server."
-msgstr "যোগ দিন: &1lt;কক্ষ&2gt; [গুপ্তসঙ্কেত]:  এই সার্ভারের একটি আড্ডায় অংশ নিন।"
+msgstr "join: &lt;room&gt; [password]: এই সার্ভারের একটি আড্ডায় অংশ নিন।"
 
 msgid "kick &lt;user&gt; [reason]:  Kick a user from the room."
-msgstr ""
-"বের করে দিন &1lt;ব্যবহারকারী&2gt; [কারণ]:  কক্ষ থেকে একজন ব্যবহারকারীকে বের করে "
-"দিন।"
+msgstr "kick &lt;user&gt; [reason]:  আসর থেকে ব্যবহারকারীকে বের করে দিন।"
 
 # tithi
 msgid ""
 "msg &lt;user&gt; &lt;message&gt;:  Send a private message to another user."
 msgstr ""
-"বার্তা &1lt;ব্যবহারকারী&2gt; &3lt;বার্তা&4gt;: অন্যান্য ব্যবহারকারীকে একটি ব্যক্তিগত "
-"বার্তা পাঠান।"
+"msg &lt;user&gt; &lt;message&gt;: অন্যান্য ব্যবহারকারীকে একটি ব্যক্তিগত বার্তা "
+"পাঠান।"
 
 # tithi
 msgid "ping &lt;jid&gt;:\tPing a user/component/server."
 msgstr ""
-"ping &lt;jid&gt;:                    একজন ব্যবহারকারী/উপকরণ/সার্ভারকে পিঙ্গ করুন।"
+"ping &lt;jid&gt;:                    একজন ব্যবহারকারী/কম্পোনেন্ট/সার্ভারকে পিং "
+"করুন।"
 
 # tithi
 msgid "buzz: Buzz a user to get their attention"
-msgstr "বাজ: ব্যবহারকারীকে তার মনযোগ পেতে বাজ দিন"
+msgstr "buzz: ব্যবহারকারীর মনযোগ পেতে বাজ! ব্যবহার করুন"
 
 #. *< type
 #. *< ui_requirement
@@ -4813,7 +4776,7 @@
 #. *  summary
 #. *  description
 msgid "XMPP Protocol Plugin"
-msgstr "XMPP প্রটোকল প্লাগইন"
+msgstr "XMPP প্রোটোকল প্লাগইন"
 
 #. Translators: 'domain' is used here in the context of Internet domains, e.g. pidgin.im
 msgid "Domain"
@@ -4825,32 +4788,31 @@
 
 # tithi
 msgid "Force old (port 5223) SSL"
-msgstr "পুরাতন (পোর্ট ৫২২৩) SSL কে চাপ দিন"
+msgstr "পুরাতন (পোর্ট 5223) SSL প্রয়োগ বাধ্য করা হবে"
 
 # tithi
 msgid "Allow plaintext auth over unencrypted streams"
-msgstr "অসঙ্কেতায়িত স্ট্রীমে সরল-পাঠ অধিকার অনুমোদন করুন"
+msgstr "এনক্রিপ্ট না করা স্ট্রীমে সরল টেক্সট দ্বারা প্রমাণীকরণ অনুমোদন করা হবে"
 
 msgid "Connect port"
-msgstr "সংযোগ পোর্ট"
+msgstr "পোর্টে সংযোগ দিন"
 
 #. TODO: default to automatically try different ports. Make the user be
 #. * able to set the first port to try (like LastConnectedPort in Windows client).
 #. Account options
 msgid "Connect server"
-msgstr "সংযোগ সার্ভার"
+msgstr "সার্ভারে সংযোগ দিন"
 
 msgid "File transfer proxies"
-msgstr "ফাইল স্থানান্তরণ প্রক্সি"
+msgstr "ফাইল স্থানান্তরের প্রক্সি"
 
 msgid "BOSH URL"
-msgstr ""
-
-# tithi
+msgstr "BOSH URL"
+
 #. this should probably be part of global smiley theme settings later on,
 #. shared with MSN
 msgid "Show Custom Smileys"
-msgstr "স্বনির্বাচিত স্মাইলিগুলো প্রদর্শন করুন"
+msgstr "স্বনির্বাচিত স্মাইলি প্রদর্শন করা হবে"
 
 #, c-format
 msgid "%s has left the conversation."
@@ -4858,11 +4820,11 @@
 
 #, c-format
 msgid "Message from %s"
-msgstr "%s হতে বার্তা"
+msgstr "%s থেকে বার্তা"
 
 #, c-format
 msgid "%s has set the topic to: %s"
-msgstr "%1s বিষয়বস্তু নির্ধারণ করেছেন: %2s"
+msgstr "%1$s বিষয়বস্তু নির্ধারণ করেছেন: %2$s"
 
 #, c-format
 msgid "The topic is: %s"
@@ -4870,10 +4832,10 @@
 
 #, c-format
 msgid "Message delivery to %s failed: %s"
-msgstr "%1s এ বার্তা পাঠানো ব্যর্থ হয়েছে: %2s"
+msgstr "%1$s এ বার্তা পাঠানো ব্যর্থ হয়েছে: %2$s"
 
 msgid "XMPP Message Error"
-msgstr "XMPP বার্তা ত্রুটি"
+msgstr "XMPP বার্তায় ত্রুটি"
 
 # tithi
 #, c-format
@@ -4886,71 +4848,68 @@
 
 # tithi
 msgid "Unknown Error in presence"
-msgstr "বর্তমানে অজানা ত্রুটি"
+msgstr "উপস্থিতিতে অজানা ত্রুটি"
 
 #, c-format
 msgid "Error joining chat %s"
-msgstr "%s আড্ডায় অংশগ্রহনের ত্রুটি"
+msgstr "%s আড্ডায় অংশগ্রহনে ত্রুটি"
 
 #, c-format
 msgid "Error in chat %s"
 msgstr "%s আড্ডায় ত্রুটি"
 
 msgid "Create New Room"
-msgstr "নতুন কক্ষ তৈরী করুন"
+msgstr "নতুন আসর তৈরী"
 
 # tithi
 msgid ""
 "You are creating a new room.  Would you like to configure it, or accept the "
 "default settings?"
 msgstr ""
-"আপনি একটি নতুন কক্ষ তৈরি করছেন।  আপনি কি এটি বিন্যাস করতে আগ্রহী, বা পূর্বনির্ধারিত "
-"বিন্যাসনসমূহ গ্রহণ করবেন?"
+"আপনি একটি নতুন আসর তৈরি করতে যাচ্ছেন। আপনি কি এটি কনফিগার করতে আগ্রহী, নাকি "
+"পূর্বনির্ধারিত বিন্যাস গ্রহণ করবেন?"
 
 msgid "_Configure Room"
-msgstr "কক্ষ বিন্যাস করুন (_C)"
+msgstr "আসর কনফিগারেশন  (_C)"
 
 msgid "_Accept Defaults"
-msgstr "পূর্বনির্ধারিত গ্রহণ (_A)"
-
-#, fuzzy
+msgstr "পূর্বনির্ধারিত বিন্যাস গ্রহণ করা হবে (_A)"
+
 msgid "No reason"
-msgstr "কোনো কারন দর্শানো হয়নি"
-
-#, fuzzy, c-format
+msgstr "কোনো কারন নেই"
+
+# Kick =  তিরস্কার
+# OR  পদাঘাত
+#, c-format
 msgid "You have been kicked: (%s)"
-msgstr "%1s দ্বারা আপনাকে বের করে দেয়া হয়েছে: (%2s)"
-
-#, fuzzy, c-format
+msgstr "আপনাকে তিরস্কার করা হয়েছে: (%s)"
+
+#, c-format
 msgid "Kicked (%s)"
-msgstr "%1s (%2s) দ্বারা বহিষ্কৃত"
-
-#, fuzzy
+msgstr "(%s) তিরস্কৃত"
+
 msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "ফাইলটি খোলার সময়ে একটি ত্রুটি ঘটেছে।"
-
-#, fuzzy
+msgstr "ইন-ব্যান্ড বাইটস্ট্রিম বিনিময়ে ত্রুটি হয়েছে\n"
+
 msgid "Transfer was closed."
-msgstr "ফাইল বিনিময় ব্যর্থ"
-
-#, fuzzy
+msgstr "স্থানান্তর বন্ধ করে দেয়া হয়েছে।"
+
 msgid "Failed to open the file"
-msgstr "'%1s' ফাইলটি খুলতে ব্যর্থ: %2s"
+msgstr "ফাইলটি খুলতে ব্যর্থ"
 
 msgid "Failed to open in-band bytestream"
-msgstr ""
-
-# tithi
+msgstr "ইন-ব্যান্ড বাইটস্ট্রিম খুলতে ব্যর্থ"
+
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
-msgstr "%s এ ফাইল পাঠাতে অক্ষম, ব্যবহাকারীরা ফাইল স্থানান্তর সমর্থন করে না"
+msgstr "%s এ ফাইল পাঠাতে ব্যর্থ, ব্যবহাকারী ফাইল স্থানান্তর সমর্থন করে না"
 
 msgid "File Send Failed"
 msgstr "ফাইল পাঠানো ব্যর্থ হয়েছে"
 
 #, c-format
 msgid "Unable to send file to %s, invalid JID"
-msgstr "%s এ ফাইল পাঠাতে সমর্থ ছিল না, অবৈধ JID"
+msgstr "%s এ ফাইল পাঠাতে ব্যর্থ, অকার্যকর JID"
 
 #, c-format
 msgid "Unable to send file to %s, user is not online"
@@ -4958,66 +4917,65 @@
 
 #, c-format
 msgid "Unable to send file to %s, not subscribed to user presence"
-msgstr "%s এ ফাইল পাঠাতে সমর্থ ছিল না, ব্যবহারকারী উপস্থিতিতে সম্মত নয়"
+msgstr "%s এ ফাইল পাঠাতে ব্যর্থ, ব্যবহারকারী উপস্থিতিতে সাবস্ক্রাইব করা নেই"
 
 # fix me tithi
 #, c-format
 msgid "Please select the resource of %s to which you would like to send a file"
-msgstr ""
-"অনুগ্রহ করে আপনি %s এর এমন একটি সম্পদ নির্বাচন করুন যাতে আপনি একটি ফাইল পাঠাতে চান"
+msgstr "অনুগ্রহ করে %s এর একটি রিসোর্স নির্বাচন করুন যাতে আপনি ফাইল পাঠাতে চান"
 
 msgid "Edit User Mood"
-msgstr "ব্যবহাকারীরর মোড সম্পাদন করুন"
+msgstr "ব্যবহাকারীর মনমেজাজ সম্পাদন"
 
 # tithi
 msgid "Please select your mood from the list."
-msgstr "অনুগ্রহ করে তালিকা থেকে আপনার মোড নির্বাচন করুন।"
+msgstr "অনুগ্রহ করে তালিকা থেকে আপনার মনমেজাজ নির্বাচন করুন।"
 
 msgid "Set"
 msgstr "নির্ধারন করুন"
 
 msgid "Set Mood..."
-msgstr "মোড নির্ধারন করুন..."
+msgstr "মনমেজাজ নির্ধারন..."
 
 msgid "Set User Nickname"
-msgstr "ব্যবহারকারীর ডাকনাম নির্ধারন করুন"
+msgstr "ব্যবহারকারীর ডাকনাম নির্ধারন"
 
 msgid "Please specify a new nickname for you."
-msgstr "অনুগ্রহ করে আপনার জন্য নতুন ডাকনাম নির্দিষ্ট করুন।"
+msgstr "অনুগ্রহ করে আপনার জন্য নতুন ডাকনাম দিন।"
 
 # tithi
 msgid ""
 "This information is visible to all contacts on your contact list, so choose "
 "something appropriate."
 msgstr ""
-"এই তথ্যটি আপনার যোগাযোগ তালিকার সকল যোগাযোগে দৃশ্যমান, সুতরাং উপযুক্ত কিছু পছন্দ করুন।"
+"এই তথ্যটি আপনার পরিচিতি তালিকার সব বন্ধুর কাছে দৃশ্যমান, সুতরাং উপযুক্ত কিছু পছন্দ করুন।"
 
 msgid "Set Nickname..."
-msgstr "ডাকনাম নির্ধারণ করুন..."
+msgstr "ডাকনাম নির্ধারণ..."
 
 msgid "Actions"
-msgstr "কার্যসমূহ"
+msgstr "প্রতিক্রিয়া"
 
 msgid "Select an action"
-msgstr "একটি কার্য নির্বাচন করুন"
+msgstr "একটি প্রতিক্রিয়া নির্বাচন করুন"
 
 #. only notify the user about problems adding to the friends list
 #. * maybe we should do something else for other lists, but it probably
 #. * won't cause too many problems if we just ignore it
 #, c-format
 msgid "Unable to add \"%s\"."
-msgstr "\"%s\" যোগ করতে সমর্থ নয়।"
+msgstr "\"%s\" যোগ করতে ব্যর্থ।"
 
 msgid "Buddy Add error"
 msgstr "বন্ধু যোগ করতে ত্রুটি"
 
 msgid "The username specified does not exist."
-msgstr "উল্লেখিত ব্য়বহারকারীর নামটি বিদ্যমান নয়।"
+msgstr "উল্লেখিত ব্যবহারকারীর নামটি বিদ্যমান নয়।"
 
 # fix me tithi
 #, c-format
 msgid "Buddy list synchronization issue in %s (%s)"
-msgstr "%1s (%2s) এ বন্ধু তালিকার এককালবর্তীকরণ বিষয়"
+msgstr "%1$s (%2$s) এ বন্ধু তালিকার অভিন্নকরণ ইস্যু"
 
 # tithi
 #, c-format
@@ -5025,8 +4983,8 @@
 "%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 ""
-"স্থানীয় তালিকার %1s \"%2s\" শ্রেণীর ভেতরে কিন্তু সার্ভার তালিকায় নয়। আপনি কি এই "
-"বন্ধুটি যোগ করতে চান?"
+"%1$s স্থানীয় তালিকায় এবং \"%2$s\" দলে অন্তর্ভুক্ত কিন্তু সার্ভার তালিকায় নেই। আপনি "
+"কি এই বন্ধুটি যোগ করতে চান?"
 
 # msgstr ""
 # "স্থানীয় তালিকার %s গ্রুপ এ আছেন কিন্তু সার্ভার তালিকায় নেই।আপনি কি এই বন্ধুটিকে যোগ "
@@ -5036,8 +4994,7 @@
 "%s is on the local list but not on the server list. Do you want this buddy "
 "to be added?"
 msgstr ""
-"%s স্থানীয় তালিকায় আছে কিন্তু সার্ভার তালিকায় নেই। আপনি কি এই বন্ধুটিকে যোগ করতে "
-"চান?"
+"%s স্থানীয় তালিকায় আছে কিন্তু সার্ভার তালিকায় নেই। আপনি কি এই বন্ধুকে যোগ করতে চান?"
 
 #, c-format
 msgid "Unable to parse message"
@@ -5045,11 +5002,11 @@
 
 #, c-format
 msgid "Syntax Error (probably a client bug)"
-msgstr "বাক্যরীতি ত্রুটি (সম্ভবত ক্লায়েন্টের ভূল)"
+msgstr "সিনট্যাক্স ত্রুটি (সম্ভবত ক্লায়েন্ট বাগ)"
 
 #, c-format
 msgid "Invalid email address"
-msgstr "অবৈধ ই‌-মেইল ঠিকানা"
+msgstr "অকার্যকর ই‌মেইল ঠিকানা"
 
 #, c-format
 msgid "User does not exist"
@@ -5058,27 +5015,27 @@
 # tithi
 #, c-format
 msgid "Fully qualified domain name missing"
-msgstr "সম্পূর্ণভাবে যোগ্য ডোমেইন নাম নিরুদ্দিষ্ট"
+msgstr "সম্পূর্ণ কার্যকর ডোমেইন নাম নেই"
 
 #, c-format
 msgid "Already logged in"
-msgstr "ইতোমধ্যে লগইন করেছে"
+msgstr "ইতিমধ্যে লগইন আছে"
 
 #, c-format
 msgid "Invalid username"
-msgstr "অবৈধ ব্যবহারকারীর নাম"
+msgstr "অকার্যকর ব্যবহারকারীর নাম"
 
 #, c-format
 msgid "Invalid friendly name"
-msgstr "অবৈধ বন্ধুসুলভ নাম"
+msgstr "অকার্যকর বন্ধুসুলভ নাম"
 
 #, c-format
 msgid "List full"
-msgstr "তালিকা পূর্ণ"
+msgstr "তালিকা পরিপূর্ণ"
 
 #, c-format
 msgid "Already there"
-msgstr "ইতোমধ্যে সেখানে আছে"
+msgstr "ইতিমধ্যে সেখানে আছে"
 
 #, c-format
 msgid "Not on list"
@@ -5090,57 +5047,57 @@
 
 #, c-format
 msgid "Already in the mode"
-msgstr "ইতোমধ্যে পরিমন্ডলে আছে"
+msgstr "ইতিমধ্যে এই মোডে আছে"
 
 #, c-format
 msgid "Already in opposite list"
-msgstr "ইতোমধ্যে বিপরীত তালিকায় আছে"
+msgstr "ইতিমধ্যে বিপরীত তালিকায় আছে"
 
 #, c-format
 msgid "Too many groups"
-msgstr "অতিরিক্ত গ্রুপ"
+msgstr "অনেক বেশী দল"
 
 #, c-format
 msgid "Invalid group"
-msgstr "অবৈধ গ্রুপ"
+msgstr "অকার্যকর দল"
 
 #, c-format
 msgid "User not in group"
-msgstr "ব্যবহারকারী গ্রুপে নেই"
+msgstr "ব্যবহারকারী দলে নেই"
 
 #, c-format
 msgid "Group name too long"
-msgstr "গ্রুপ নামটি অত্যন্ত দীর্ঘ"
+msgstr "দলের নামটি অত্যন্ত দীর্ঘ"
 
 #, c-format
 msgid "Cannot remove group zero"
-msgstr "গ্রুপ জিরো মুছে ফেলতে পারে না"
+msgstr "শূণ্যস্থানীয় দল মুছে ফেলা যায় না"
 
 #, c-format
 msgid "Tried to add a user to a group that doesn't exist"
-msgstr "ব্যবহারকারীকে এমন একটি গ্রুপে যোগদানের চেষ্টা করা হয়েছে যা বিদ্যমান নেই"
+msgstr "ব্যবহারকারীকে এমন একটি দলে যোগদানের চেষ্টা করা হয়েছে যা বিদ্যমান নেই"
 
 #, c-format
 msgid "Switchboard failed"
-msgstr "সুইচবোর্ড ব্যর্থ"
+msgstr "সুইচবোর্ড ব্যর্থ হয়েছে"
 
 #, c-format
 msgid "Notify transfer failed"
-msgstr "প্রজ্ঞাপন স্থানান্তর ব্যর্থ"
+msgstr "স্থানান্তরের ঘোষণা ব্যর্থ হয়েছে"
 
 # tithi
 #, c-format
 msgid "Required fields missing"
-msgstr "প্রয়োজনীয় ক্ষেত্র নিরুদ্দিষ্ট"
+msgstr "প্রয়োজনীয় ক্ষেত্র নেই"
 
 # tithi
 #, c-format
 msgid "Too many hits to a FND"
-msgstr "একটি FND এ খুব বেশি আঘাত করা হয়েছে"
+msgstr "একটি FND খুব বেশি পরিদর্শিত হয়েছে"
 
 #, c-format
 msgid "Not logged in"
-msgstr "লগইন করা হয়নি"
+msgstr "লগইন করা নেই"
 
 #, c-format
 msgid "Service temporarily unavailable"
@@ -5148,11 +5105,11 @@
 
 #, c-format
 msgid "Database server error"
-msgstr "উপাত্তধার সার্ভারের ত্রুটি"
+msgstr "ডাটাবেস সার্ভারের ত্রুটি"
 
 #, c-format
 msgid "Command disabled"
-msgstr "নির্দেশ নিষ্ক্রিয়"
+msgstr "কমান্ড নিষ্ক্রিয়"
 
 #, c-format
 msgid "File operation error"
@@ -5161,12 +5118,12 @@
 # tithi
 #, c-format
 msgid "Memory allocation error"
-msgstr "মেমোরি বরাদ্দে ত্রুটি"
+msgstr "মেমরি বরাদ্দে ত্রুটি"
 
 # tithi
 #, c-format
 msgid "Wrong CHL value sent to server"
-msgstr "ভূল CHL মান সার্ভারে পাঠিয়েছিল"
+msgstr "সার্ভারে ভুল CHL মান পাঠানো হয়েছে"
 
 #, c-format
 msgid "Server busy"
@@ -5174,21 +5131,21 @@
 
 #, c-format
 msgid "Server unavailable"
-msgstr "সার্ভার অপ্রাপ্য "
+msgstr "সার্ভার বিদ্যমান নয়"
 
 # fix me tithi
 #, c-format
 msgid "Peer notification server down"
-msgstr "পিয়ার প্রজ্ঞাপন সার্ভার নিস্ক্রিয়"
+msgstr "পিয়ার ঘোষনা সার্ভার নিস্ক্রিয়"
 
 #, c-format
 msgid "Database connect error"
-msgstr "উপাত্তধার সংযোগে ত্রুটি"
+msgstr "ডাটাবেস সংযোগে ত্রুটি"
 
 # tithi
 #, c-format
 msgid "Server is going down (abandon ship)"
-msgstr "সার্ভার নিস্ক্রিয় হয়ে যাচ্ছে (ত্যাগ করুন)"
+msgstr "সার্ভার নিষ্ক্রিয় হয়ে যাচ্ছে (হাল ছাড়ে দিন)"
 
 # tithi
 #, c-format
@@ -5198,26 +5155,26 @@
 # tithi
 #, c-format
 msgid "CVR parameters are either unknown or not allowed"
-msgstr "CVR প্যারামিটারসমূহ হয় অজানা বা অনুমোদিত নয়"
+msgstr "CVR প্যারামিটার হয় অজানা অথবা অনুমোদিত নয়"
 
 #, c-format
 msgid "Unable to write"
-msgstr "লিখতে সমর্থ নয়"
+msgstr "লিখতে ব্যর্থ"
 
 # tithi
 #, c-format
 msgid "Session overload"
-msgstr "অধিবেশন অতিরিক্ত"
+msgstr "সেশন ওভারলোড"
 
 # tithi
 #, c-format
 msgid "User is too active"
-msgstr "ব্যবহারকারী অনেক বেশি সক্রিয়"
+msgstr "ব্যবহারকারী অতি সক্রিয়"
 
 # tithi
 #, c-format
 msgid "Too many sessions"
-msgstr "অনেক বেশি অধিবেশন"
+msgstr "অতিরিক্ত সংখ্যক সেশন"
 
 # tithi
 #, c-format
@@ -5227,17 +5184,17 @@
 # tithi
 #, c-format
 msgid "Bad friend file"
-msgstr "খারাপ বন্ধু ফাইল"
+msgstr "ত্রুটিযুক্ত বন্ধু ফাইল"
 
 # tithi
 #, c-format
 msgid "Not expected"
-msgstr "প্রত্যাশিত ছিল না"
+msgstr "প্রত্যাশিত নয়"
 
 # tithi
 #, c-format
 msgid "Friendly name changes too rapidly"
-msgstr "বন্ধুভাবাপন্ন নাম খুব দ্রুত পরিবর্তন হয়"
+msgstr "বন্ধুসুলভ নাম খুব দ্রুত পরিবর্তিত হয়"
 
 #, c-format
 msgid "Server too busy"
@@ -5251,7 +5208,7 @@
 # tithi
 #, c-format
 msgid "Not allowed when offline"
-msgstr "অফলাইনে অনুমোদিত নয়"
+msgstr "অফলাইন থাকলে অনুমোদিত নয়"
 
 # tithi
 #, c-format
@@ -5287,43 +5244,63 @@
 msgstr "MSN ত্রুটি: %s\n"
 
 msgid "Other Contacts"
-msgstr "অন্যান্য যোগাযোগসমূহ"
+msgstr "অন্যান্য পরিচিতি"
 
 msgid "Non-IM Contacts"
-msgstr "IM নয় এমন যোগাযোগসমূহ"
-
-# tithi
-#, fuzzy, c-format
+msgstr "IM এ নেই এমন পরিচিতি"
+
+#, 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>"
+
+#, c-format
+msgid "%s sent a wink, but it could not be saved"
+msgstr "%s একটি উইন্ক পাঠিয়েছে, কিন্তু তা সংরক্ষণ করা সম্ভব হয়নি"
+
+#, 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>"
+
+# tithi
+#, c-format
+msgid "%s sent a voice clip, but it could not be saved"
+msgstr "%s একটি কন্ঠের ক্লিপ পাঠিয়েছে, কিন্তু তা সংরক্ষণ করা সম্ভব হয়নি"
+
+# tithi
+#, c-format
 msgid "%s sent you a voice chat invite, which is not yet supported."
-msgstr "%s আপনাকে ওয়েবক্যাম আমন্ত্রন পাঠিয়েছেন, যা এখনও সমর্থিত নয়।"
+msgstr "আপনাকে %s একটি ভয়েস আড্ডার আমন্ত্রন পাঠিয়েছেন, যা এখনও সমর্থিত হয়নি।"
 
 # tithi
 msgid "Nudge"
-msgstr "একান্তে"
+msgstr "ধাক্কা"
 
 #, c-format
 msgid "%s has nudged you!"
-msgstr "%s আপনাকে একান্তে যোগ করেছেন!"
+msgstr "%s আপনাকে ধাক্কা দিয়েছেন!"
 
 # fix-me tithi
 #, c-format
 msgid "Nudging %s..."
-msgstr "%s মনোযোগ আকর্ষন করছে..."
+msgstr "%s কে ধাক্কা দেয়া হচ্ছে..."
 
 msgid "Email Address..."
-msgstr "ই-মেইল ঠিকানা..."
+msgstr "ইমেইল ঠিকানা..."
 
 # tithi
 msgid "Your new MSN friendly name is too long."
-msgstr "আপনার নতুন MSN বন্ধুভাবাপন্ন নাম খুব দীর্ঘ।"
+msgstr "আপনার নতুন MSN বন্ধুসুলভ নাম অতি দীর্ঘ।"
 
 # tithi
 msgid "Set your friendly name."
-msgstr "আপনার বন্ধুভাবাপন্ন নাম নির্ধারণ করুন।"
+msgstr "আপনার বন্ধুসুলভ নাম নির্ধারণ।"
 
 # tithi
 msgid "This is the name that other MSN buddies will see you as."
-msgstr "এটি এমন নাম যা দ্বারা অন্যান্য MSN বন্ধুরা আপনাকে দেখবে।"
+msgstr "অন্যান্য MSN বন্ধুরা আপনাকে এই নামে দেখবে"
 
 # tithi
 msgid "Set your home phone number."
@@ -5331,7 +5308,7 @@
 
 # tithi
 msgid "Set your work phone number."
-msgstr "আপনার কাজের ফোন নাম্বার দিন।"
+msgstr "আপনার কর্মস্থলের ফোন নাম্বার দিন।"
 
 # tithi
 msgid "Set your mobile phone number."
@@ -5339,39 +5316,39 @@
 
 # tithi
 msgid "Allow MSN Mobile pages?"
-msgstr "MSN মোবাইল পেজগুলো কি অনুমোদন করবেন?"
+msgstr "MSN মোবাইল পৃষ্ঠাগুলো কি অনুমোদন করা হবে?"
 
 # tithi
 msgid ""
 "Do you want to allow or disallow people on your buddy list to send you MSN "
 "Mobile pages to your cell phone or other mobile device?"
 msgstr ""
-"আপনি কি আপনার বন্ধু তালিকার জনগণকে আপনার সেল ফোন বা অন্যান্য মোবাইল ডিভাইসে MSN "
-"মোবাইল পৃষ্ঠাসমূহ পাঠাতে অনুমোদন দিতে চান বা চান না?"
+"আপনি কি তালিকার বন্ধুদেরকে আপনার মোবাইল ফোন বা অন্যান্য মোবাইল ডিভাইসে MSN "
+"মোবাইল পৃষ্ঠা পাঠাতে অনুমোদন দিতে ইচ্ছুক?"
 
 msgid "Allow"
-msgstr "অনুমোদন করুন"
+msgstr "অনুমোদন করা হবে"
 
 msgid "Disallow"
-msgstr "অনুমোদন করবিন না"
+msgstr "অনুমোদন করা হবে না"
 
 #, c-format
 msgid "Blocked Text for %s"
-msgstr "%s এর জন্য ব্লককৃত পাঠ"
+msgstr "%s এর জন্য ব্লককৃত টেক্সট"
 
 # tithi
 msgid "No text is blocked for this account."
-msgstr "এই একাউন্টটির জন্য কোনো পাঠ আবদ্ধ নয়।"
+msgstr "এই একাউন্টটির জন্য কোনো টেক্সট ব্লক করা নেই।"
 
 # tithi
 #, c-format
 msgid ""
 "MSN servers are currently blocking the following regular expressions:<br/>%s"
-msgstr "MSN সার্ভার বর্তমানে নিম্নলিখিত নিয়মিত রাশিসমূহ আবদ্ধ করছে:<br/>%s"
+msgstr "MSN সার্ভার বর্তমানে নিম্নলিখিত রেগুলার এক্সপ্রেশনগুলো ব্লক করছে:<br/>%s"
 
 # tithi
 msgid "This account does not have email enabled."
-msgstr "এই একাউন্টটি ই-মেইল সক্রিয় নেই।"
+msgstr "এই একাউন্টটির কোন ইমেইল সক্রিয় নেই।"
 
 msgid "Send a mobile message."
 msgstr "মোবাইল বার্তা পাঠান।"
@@ -5387,13 +5364,13 @@
 
 # tithi
 msgid "Has you"
-msgstr "আপনার কি"
+msgstr "আপনি কি তার বন্ধু"
 
 msgid "Home Phone Number"
 msgstr "বাসার ফোন নম্বর"
 
 msgid "Work Phone Number"
-msgstr "অফিসের ফোন নম্বর "
+msgstr "কর্মস্থলের ফোন নম্বর"
 
 msgid "Mobile Phone Number"
 msgstr "মোবাইল ফোন নম্বর"
@@ -5405,11 +5382,11 @@
 msgstr "ব্যস্ত"
 
 msgid "On the Phone"
-msgstr "ফোন এ কথা বলছি"
+msgstr "ফোনে কথা বলছি"
 
 # tithi
 msgid "Out to Lunch"
-msgstr "দুপুরে খাবার জন্য বাইরে"
+msgstr "দুপুরে খাওয়ার জন্য বাইরে"
 
 #. primitive
 #. ID
@@ -5430,45 +5407,71 @@
 msgstr "অফিসের শিরোনাম"
 
 msgid "Set Friendly Name..."
-msgstr "বন্ধুসুলভ নাম নির্ধারন করুন..."
+msgstr "বন্ধুসুলভ নাম নির্ধারণ..."
 
 msgid "Set Home Phone Number..."
-msgstr "বাসার ফোন নম্বর নির্ধারন করুন..."
+msgstr "বাসার ফোন নম্বর নির্ধারণ..."
 
 msgid "Set Work Phone Number..."
-msgstr "অফিসের ফোন নম্বর নির্ধারন করুন..."
+msgstr "কর্মস্থলের ফোন নম্বর নির্ধারণ..."
 
 msgid "Set Mobile Phone Number..."
-msgstr "মোবাইল ফোন নম্বর নির্ধারন করুন..."
+msgstr "মোবাইল ফোন নম্বর নির্ধারণ..."
 
 msgid "Enable/Disable Mobile Devices..."
-msgstr "মোবাইল ডিভাইসসমূহ সক্রিয়/নিষ্ক্রিয় করুন..."
+msgstr "মোবাইল ডিভাইস সক্রিয়/নিষ্ক্রিয়করণ..."
 
 # tithi
 msgid "Allow/Disallow Mobile Pages..."
-msgstr "মোবাইল পৃষ্ঠাগুলোকে অনুমোদন করুন/করবেন না..."
+msgstr "মোবাইল পৃষ্ঠা অনুমোদন..."
 
 # tithi
 msgid "View Blocked Text..."
-msgstr "ব্লককৃত পাঠ দেখান..."
+msgstr "ব্লক করা টেক্সট প্রদর্শন..."
 
 msgid "Open Hotmail Inbox"
 msgstr "হটমেইল ইনবক্স খুলুন"
 
 msgid "Send to Mobile"
-msgstr "মোবাইলে পাঠান"
+msgstr "মোবাইলে প্রেরণ"
 
 # tithi
 msgid "Initiate _Chat"
-msgstr "আড্ডা প্রস্তুত করুন (_C)"
+msgstr "আড্ডা শুরু করুন (_C)"
 
 msgid "SSL support is needed for MSN. Please install a supported SSL library."
 msgstr ""
-"MSN এর জন্য SSL সমর্থন প্রয়োজন। অনুগ্রহ করে একটি সমর্থিত SSL লাইব্রেরী সংস্থাপন করুন।"
+"MSN এর জন্য SSL সমর্থন প্রয়োজন। অনুগ্রহ করে একটি সমর্থিত SSL লাইব্রেরী ইনস্টল করুন।"
+
+# tithi
+#, c-format
+msgid ""
+"Unable to add the buddy %s because the username is invalid.  Usernames must "
+"be a valid email address."
+msgstr ""
+"বন্ধু %s কে যোগ করা সম্ভব হয়নি কারণ ব্যবহারকারীর নামটি অকার্যকর। ব্যবহারকারী নাম "
+"অবশ্যই একটি কার্যকর ইমেইল ঠিকানা হতে হবে।"
+
+msgid "Unable to Add"
+msgstr "যোগ করতে ব্যর্থ"
+
+# tithi
+msgid "Authorization Request Message:"
+msgstr "অনুমোদনের অনুরোধ:"
+
+# tithi
+msgid "Please authorize me!"
+msgstr "অনুগ্রহ করে আমাকে অনুমোদন দিন!"
+
+#. *
+#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
+#.
+msgid "_OK"
+msgstr "ঠিক আছে (_O)"
 
 # tithi
 msgid "Error retrieving profile"
-msgstr "বৃত্তান্ত উদ্ধারে ত্রুটি"
+msgstr "প্রোফাইল উদ্ধারে ত্রুটি"
 
 msgid "General"
 msgstr "সাধারন"
@@ -5486,7 +5489,7 @@
 msgstr "শখ এবং আগ্রহ"
 
 msgid "A Little About Me"
-msgstr "আমার সম্পর্কে অল্প কিছু"
+msgstr "আমার সম্পর্কে কিছু কথা"
 
 msgid "Social"
 msgstr "সামাজিক"
@@ -5495,16 +5498,16 @@
 msgstr "বৈবাহিক অবস্থা"
 
 msgid "Interests"
-msgstr "আগ্রহসমূহ"
+msgstr "আগ্রহ"
 
 msgid "Pets"
-msgstr "পোষা প্রাণীসমূহ"
+msgstr "পোষা প্রাণী"
 
 msgid "Hometown"
-msgstr "শহুরে-বাড়ি"
+msgstr "গ্রামের বাড়ি"
 
 msgid "Places Lived"
-msgstr "বসবাসরত অবস্থান"
+msgstr "যেসব যায়গায় থেকেছি"
 
 msgid "Fashion"
 msgstr "ফ্যাশন"
@@ -5520,14 +5523,14 @@
 msgstr "প্রিয় উক্তি"
 
 msgid "Contact Info"
-msgstr "যোগাযোগের তথ্য"
+msgstr "পরিচিতির তথ্য"
 
 msgid "Personal"
 msgstr "ব্যক্তিগত"
 
 # tithi
 msgid "Significant Other"
-msgstr "গুরুত্বপূর্ণ অন্যান্য"
+msgstr "গুরুত্বপূর্ণ মানুষ"
 
 msgid "Home Phone"
 msgstr "বাসার ফোন"
@@ -5545,10 +5548,10 @@
 msgstr "বাসার ফ্যাক্স"
 
 msgid "Personal Email"
-msgstr "ব্যক্তিগত ই-মেইল"
+msgstr "ব্যক্তিগত ইমেইল"
 
 msgid "Personal IM"
-msgstr "ব্যক্তিগত আইএম"
+msgstr "ব্যক্তিগত IM"
 
 # tithi
 msgid "Anniversary"
@@ -5556,11 +5559,11 @@
 
 #. Business
 msgid "Work"
-msgstr "অফিস"
+msgstr "কাজ"
 
 # tithi
 msgid "Job Title"
-msgstr "কাজের শিরোনাম"
+msgstr "পদমর্যাদা"
 
 msgid "Company"
 msgstr "কোম্পানী"
@@ -5572,63 +5575,61 @@
 msgstr "পেশা"
 
 msgid "Work Phone"
-msgstr "অফিস ফোন"
+msgstr "কর্মস্থলের ফোন"
 
 msgid "Work Phone 2"
-msgstr "অফিস ফোন ২"
+msgstr "কর্মস্থলের ফোন ২"
 
 msgid "Work Address"
-msgstr "অফিস ঠিকানা"
+msgstr "কর্মস্থলের ঠিকানা"
 
 msgid "Work Mobile"
-msgstr "অফিস মোবাইল"
+msgstr "কর্মস্থলের মোবাইল"
 
 msgid "Work Pager"
-msgstr "অফিস পেইজার"
+msgstr "কর্মস্থলের পেইজার"
 
 msgid "Work Fax"
-msgstr "অফিস ফ্যাক্স"
+msgstr "কর্মস্থলের ফ্যাক্স"
 
 msgid "Work Email"
-msgstr "অফিস ই-মেইল"
+msgstr "কর্মস্থলের ইমেইল"
 
 msgid "Work IM"
-msgstr "অফিস আইএম"
+msgstr "কর্মস্থলের IM"
 
 msgid "Start Date"
 msgstr "শুরুর তারিখ"
 
 msgid "Favorite Things"
-msgstr "প্রিয় জিনিসসমূহ"
+msgstr "প্রিয় জিনিস"
 
 msgid "Last Updated"
-msgstr "সর্বশেষ হালনাগাদকৃত"
+msgstr "সর্বশেষ হালনাগাদ করা"
 
 msgid "Homepage"
-msgstr "হোমপেজ"
+msgstr "হোমপেইজ"
 
 msgid "The user has not created a public profile."
-msgstr "ব্যবহারকারী কোনো জনসাধারণের প্রোফাইল তৈরী করেনি।"
-
-# tithi
+msgstr "ব্যবহারকারী কোনো পাবলিক প্রোফাইল তৈরী করেনি।"
+
 msgid ""
 "MSN reported not being able to find the user's profile. This either means "
 "that the user does not exist, or that the user exists but has not created a "
 "public profile."
 msgstr ""
-"MSN ব্যবহারকারীর বৃত্তান্ত খুঁজে পেতে সক্ষম না থাকায় প্রতিবেদন করেছিল।  এটি হয়ত "
-"বোঝায় যে ব্যবহারকারী বিদ্যমান নেই, বা ব্যবহারকারী রয়েছেন কিন্তু একটি পাবলিক "
-"বৃত্তান্ত তৈরি করেনি।"
+"MSN, ব্যবহারকারীর প্রোফাইল খুঁজে পায়নি। এর অর্থ এই যে, হয় এমন কোন ব্যবহারকারী নেই, "
+"অথবা ব্যবহারকারী তার প্রকাশ্য বৃত্তান্ত তৈরি করেনি।"
 
 # tithi
 msgid ""
 "Could not find any information in the user's profile. The user most likely "
 "does not exist."
 msgstr ""
-"ব্যবহারকারীর বৃত্তান্তে কোনো তথ্য খুঁজে পায়নি। ব্যবহারকারী সম্ভবত বিদ্যমান থাকবে না।"
+"ব্যবহারকারীর প্রোফাইলে কোনো তথ্য খুঁজে পাওয়া যায়নি। সম্ভবত এমন কোন ব্যবহারকারী নেই।"
 
 msgid "View web profile"
-msgstr "ওয়েব প্রোফাইল দেখুন"
+msgstr "ওয়েব প্রোফাইল প্রদর্শন"
 
 #. *< type
 #. *< ui_requirement
@@ -5640,48 +5641,49 @@
 #. *< version
 #. *< summary
 msgid "Windows Live Messenger Protocol Plugin"
-msgstr "উইন্ডোজের সরাসরি মেসেনজার প্রোটোকল প্লাগইন"
+msgstr "Windows Live Messenger প্রোটোকল প্লাগইন"
 
 # tithi
 msgid "Use HTTP Method"
-msgstr "HTTP পদ্ধতি ব্যবহার করুন"
+msgstr "HTTP পদ্ধতি ব্যবহার করা হবে"
 
 msgid "HTTP Method Server"
 msgstr "HTTP পদ্ধতির সার্ভার"
 
 # tithi
 msgid "Show custom smileys"
-msgstr "স্বনির্বাচিত স্মাইলীগুলো দেখান"
+msgstr "স্বনির্বাচিত স্মাইলি দেখানো হবে"
 
 # fix -me tithi
 msgid "nudge: nudge a user to get their attention"
-msgstr "নাজ: ব্যবহারকারীদের মনোযোগ পেতে তাদেরকে নাজ দিন"
+msgstr "nudge: ব্যবহারকারীদের মনোযোগ পেতে তাদেরকে ধাক্কা দিন"
 
 # tithi
 msgid "Windows Live ID authentication:Unable to connect"
-msgstr "উইন্ডোজ সরাসরি আইডি প্রমাণীকরণ:সংযোগ করতে অক্ষম"
+msgstr "Windows Live ID প্রমাণীকরণ:সংযোগ করতে ব্যর্থ"
 
 # tithi
 msgid "Windows Live ID authentication:Invalid response"
-msgstr "উইন্ডোজ সরাসরি  আইডি প্রমাণীকরণ:অবৈধ সাড়া"
+msgstr "Windows Live ID প্রমাণীকরণ: অকার্যকর উত্তর"
 
 #, c-format
 msgid "%s just sent you a Nudge!"
-msgstr "%s আপনার দৃষ্টি আকর্ষন করছে!"
-
-#, fuzzy, c-format
+msgstr "%s আপনাকে ধাক্কা দিয়েছে!"
+
+#, c-format
 msgid "Unknown error (%d): %s"
-msgstr "অজানা ত্রুটি (%d)"
+msgstr "অজানা ত্রুটি (%d): %s"
 
 msgid "Unable to add user"
-msgstr "ব্যবহারকারী যোগ করতে সমর্থ নয়"
-
+msgstr "ব্যবহারকারী যোগ করতে ব্যর্থ"
+
+#. Unknown error!
 #, c-format
 msgid "Unknown error (%d)"
 msgstr "অজানা ত্রুটি (%d)"
 
 msgid "The following users are missing from your addressbook"
-msgstr "আপনার ঠিকানা বই থেকে নিম্নোক্ত ব্যবহারকারীরা হারিয়ে গেছে"
+msgstr "আপনার ঠিকানা বইয়ে নিম্নোক্ত ব্যবহারকারীরা নেই"
 
 msgid "Mobile message was not sent because it was too long."
 msgstr "মোবাইল বার্তাটি অনেক বড় বিধায় পাঠানো হয়নি।"
@@ -5703,39 +5705,39 @@
 "After the maintenance has been completed, you will be able to successfully "
 "sign in."
 msgstr[0] ""
-"MSN সার্ভার রক্ষনাবেক্ষনের জন্য %d মিনিটে বন্ধ হয়ে যাবে। আপনি এই  সময় "
-"স্বয়ংক্রিয়ভাবে সাইন আউট হয়ে যাবেন।  অনুগ্রহ করে চলমান যেকোনো কথোপকথন শেষ করুন।\n"
-"\n"
-"রক্ষনাবেক্ষন সম্পূর্ন হবার পর, আপনি সফলভাবে সাইন ইন করতে পারবেন।"
+"MSN সার্ভার রক্ষনাবেক্ষনের জন্য %d মিনিটে বন্ধ হয়ে যাবে। আপনি এই সময় স্বয়ংক্রিয়ভাবে "
+"লগআউট হয়ে যাবেন। অনুগ্রহ করে চলমান কথোপকথন শেষ করুন।\n"
+"\n"
+"রক্ষনাবেক্ষন সম্পূর্ন হবার পর, আপনি সফলভাবে লগইন করতে পারবেন।"
 msgstr[1] ""
-"MSN সার্ভার রক্ষনাবেক্ষনের জন্য %d মিনিটে বন্ধ হয়ে যাবে। আপনি এই  সময় "
-"স্বয়ংক্রিয়ভাবে সাইন আউট হয়ে যাবেন।  অনুগ্রহ করে চলমান যেকোনো কথোপকথন শেষ করুন।\n"
-"\n"
-"রক্ষনাবেক্ষন সম্পূর্ন হবার পর, আপনি সফলভাবে সাইন ইন করতে পারবেন।"
+"MSN সার্ভার রক্ষনাবেক্ষনের জন্য %d মিনিটে বন্ধ হয়ে যাবে। আপনি এই সময় স্বয়ংক্রিয়ভাবে "
+"লগআউট হয়ে যাবেন। অনুগ্রহ করে চলমান কোনো কথোপকথন শেষ করুন।\n"
+"\n"
+"রক্ষনাবেক্ষন সম্পূর্ন হবার পর, আপনি সফলভাবে লগইন করতে পারবেন।"
 
 # tithi
 msgid ""
 "Message was not sent because the system is unavailable. This normally "
 "happens when the user is blocked or does not exist."
 msgstr ""
-"বার্তা পাঠানো হয়নি কারণ সিস্টেম সহজলভ্য  নয়। এইটি সাধারণত ঘটে যখন ব্যবহারকারী "
-"আবদ্ধ বা ব্যবহারকারী বিদ্যমান থাকে না।"
+"বার্তা পাঠানো হয়নি কারণ সিস্টেম কার্যকর নয়। এইটি সাধারণত ঘটে যখন ব্যবহারকারী ব্লক "
+"করা থাকে বা এরকম কোন ব্যবহারকারী না থাকে।"
 
 msgid "Message was not sent because messages are being sent too quickly."
 msgstr "বার্তা পাঠানো যায়নি কারণ বার্তাগুলো খুব তাড়াতাড়ি পাঠানো হচ্ছিল।"
 
 msgid "Message was not sent because an unknown encoding error occurred."
-msgstr "অজানা সঙ্কেতায়ন ত্রুটি সংঘটিত হওয়ার কারণে বার্তা পাঠানো যায়নি।"
+msgstr "অজানা এনকোডিং ত্রুটি সংঘটিত হওয়ায় বার্তা পাঠানো যায়নি।"
 
 msgid "Message was not sent because an unknown error occurred."
-msgstr "অজানা ত্রুটি সংঘটিত হওয়ার কারণে বার্তা পাঠানো যায়নি।"
+msgstr "অজানা ত্রুটি সংঘটিত হওয়ায় বার্তা পাঠানো যায়নি।"
 
 # tithi
 msgid "Writing error"
-msgstr "লিখন ত্রুটি"
+msgstr "লিখতে ত্রুটি"
 
 msgid "Reading error"
-msgstr "পাঠ ত্রুটি"
+msgstr "পড়তে ত্রুটি"
 
 # tithi
 #, c-format
@@ -5743,39 +5745,35 @@
 "Connection error from %s server:\n"
 "%s"
 msgstr ""
-"%1s সার্ভার হতে সংযোগের ত্রুটি:\n"
-"%2s"
-
-#, fuzzy
+"%1$s সার্ভার থেকে সংযোগের ত্রুটি:\n"
+"%2$s"
+
 msgid "Our protocol is not supported by the server"
-msgstr "আমাদের প্রটোকল সার্ভার সমর্থন করে না।"
-
-#, fuzzy
+msgstr "আমাদের প্রোটোকলটি সার্ভার সমর্থন করে না।"
+
 msgid "Error parsing HTTP"
-msgstr "HTTP পার্স করতে ত্রুটি।"
-
-#, fuzzy
+msgstr "HTTP পার্স করতে ত্রুটি"
+
 msgid "You have signed on from another location"
-msgstr "আপনি অন্য স্থান থেকে সাইন অন করেছেন।"
+msgstr "আপনি অন্য স্থান থেকে লগইন করেছেন"
 
 msgid "The MSN servers are temporarily unavailable. Please wait and try again."
 msgstr ""
-"সাময়িকভাবে এমএসএন সার্ভার পাওয়া যাচ্ছে না। অনুগ্রহ করে অপেক্ষা করুন এবং পুনরায় "
-"চেষ্টা করুন"
-
-# tithi
-#, fuzzy
+"MSN সার্ভার সাময়িকভাবে পাওয়া যাচ্ছে না। অনুগ্রহ করে অপেক্ষা করুন এবং পুনরায় চেষ্টা "
+"করুন।"
+
+# tithi
 msgid "The MSN servers are going down temporarily"
-msgstr "MSN সার্ভার সাময়িকভাবে নিস্ক্রিয় হচ্ছে।"
+msgstr "MSN সার্ভারগুলো সাময়িকভাবে নিষ্ক্রিয় করা হচ্ছে।"
 
 #, c-format
 msgid "Unable to authenticate: %s"
-msgstr "প্রমাণীকরণ করতে অক্ষম: %s"
+msgstr "প্রমাণীকরণ করতে ব্যর্থ: %s"
 
 msgid ""
 "Your MSN buddy list is temporarily unavailable. Please wait and try again."
 msgstr ""
-"সাময়িকভাবে আপনার এমএসএন বন্ধু-তালিকা পাওয়া যাচ্ছে না। অনুগ্রহ করে অপেক্ষা করুন এবং "
+"সাময়িকভাবে আপনার MSN বন্ধু-তালিকা পাওয়া যাচ্ছে না। অনুগ্রহ করে অপেক্ষা করুন এবং "
 "পুনরায় চেষ্টা করুন।"
 
 # tithi
@@ -5783,26 +5781,27 @@
 msgstr "হ্যান্ডসেকিং"
 
 msgid "Transferring"
-msgstr "স্থানান্তর করছে"
+msgstr "স্থানান্তর করা হচ্ছে"
 
 # tithi
 msgid "Starting authentication"
-msgstr "প্রমাণীকরণ শুরু করছে"
+msgstr "প্রমাণীকরণ শুরু হচ্ছে"
 
 # tithi
 msgid "Getting cookie"
-msgstr "কুকি গ্রহণ করছে"
+msgstr "কুকি গ্রহণ করা হচ্ছে"
 
 msgid "Sending cookie"
-msgstr "কুকি পাঠাচ্ছে"
+msgstr "কুকি পাঠানো হচ্ছে"
 
 msgid "Retrieving buddy list"
-msgstr "বন্ধু তালিকা উদ্ধার করছে"
-
-# tithi
-#, fuzzy, c-format
+msgstr "বন্ধু তালিকা উদ্ধার করা হচ্ছে"
+
+# tithi
+#, c-format
 msgid "%s requests to view your webcam, but this request is not yet supported."
-msgstr "%s আপনাকে ওয়েবক্যাম আমন্ত্রন পাঠিয়েছেন, যা এখনও সমর্থিত নয়।"
+msgstr ""
+"আপনার ওয়েবক্যাম প্রদর্শনের জন্য %s অনুরোধ করেছেন কিন্তু এই অনুরোধটি এখনও সমর্থিত হয়নি।"
 
 # tithi
 #, c-format
@@ -5813,50 +5812,50 @@
 msgstr "কম্পিউটার থেকে দূরে"
 
 msgid "On The Phone"
-msgstr "ফোন এ কথা বলছে"
+msgstr "ফোনে কথা বলছে"
 
 msgid "Out To Lunch"
-msgstr "লাঞ্চ এর জন্য বাইরে"
+msgstr "খাবারের জন্য বাইরে"
 
 msgid "Message may have not been sent because a timeout occurred:"
-msgstr "সময় শেষ হয়ে যাওযার কারণে বার্তা সম্ভবত পাঠানো হয়নি:"
+msgstr "সময়সীমা অতিক্রম করার কারণে বার্তা সম্ভবত পাঠানো হয়নি:"
 
 # tithi
 msgid "Message could not be sent, not allowed while invisible:"
-msgstr "বার্তা পাঠানো যাবে না, অদৃশ্য অবস্থায় অনুমোদিত নয়:"
+msgstr "অদৃশ্য অবস্থায় বার্তা পাঠানো অনুমোদিত নয়:"
 
 msgid "Message could not be sent because the user is offline:"
-msgstr "বার্তা পাঠানো যাচ্ছে না কারণ ব্যবহারকারী অফলাইনে:"
+msgstr "বার্তা পাঠানো যাচ্ছে না কারণ ব্যবহারকারী অফলাইন:"
 
 msgid "Message could not be sent because a connection error occurred:"
-msgstr "বার্তা পাঠানো যাচ্ছে না কারণ সংযোগে ত্রুটি সংঘটিত হয়েছে:"
+msgstr "বার্তা পাঠানো যাচ্ছে না কারণ সংযোগে ত্রুটি হয়েছে:"
 
 msgid "Message could not be sent because we are sending too quickly:"
-msgstr "বার্তা পাঠানো যাচ্ছে না কারন আমরা খুব তাড়াতাড়ি পাঠাচ্ছি:"
+msgstr "বার্তা পাঠানো যাচ্ছে না কারন খুব তাড়াতাড়ি পাঠানো হচ্ছে:"
 
 # tithi
 msgid ""
 "Message could not be sent because we were unable to establish a session with "
 "the server. This is likely a server problem, try again in a few minutes:"
 msgstr ""
-"বার্তা পাঠানো যাচ্ছে না কারণ আমরা সার্ভারের সাথে একটি অধিবেশন প্রতিষ্ঠিত করতে "
-"অক্ষম ছিলাম। এটি সম্ভবত সার্ভার সমস্যা, কয়েক মিনিটের মধ্যে পুনরায় একটি চেষ্টা করুন:"
+"বার্তা পাঠানো যাচ্ছে না কারণ সার্ভারের সাথে সেশন প্রতিষ্ঠা করা ব্যর্থ হয়েছে। এটি "
+"সম্ভবত সার্ভারের সমস্যা, কয়েক মিনিটের মধ্যে পুনরায় চেষ্টা করা হবে:"
 
 msgid ""
 "Message could not be sent because an error with the switchboard occurred:"
 msgstr "সুইচবোর্ডে ত্রুটি থাকার কারনে বার্তা পাঠানো যায়নি:"
 
 msgid "Message may have not been sent because an unknown error occurred:"
-msgstr "একটি অজানা ত্রুটির সংঘটিত হওয়ার কারণে বার্তা হয়ত পাঠানো যায়নি:"
+msgstr "একটি অজানা ত্রুটির সংঘটিত হওয়ার কারণে সম্ভবত বার্তা পাঠানো যায়নি:"
 
 msgid "Delete Buddy from Address Book?"
 msgstr "ঠিকানার বই থেকে কি বন্ধু মুছে ফেলতে চান?"
 
 msgid "Do you want to delete this buddy from your address book as well?"
-msgstr "আপনি কি এই বন্ধুটিকেও আপনার ঠিকানা বই থেকে মুছে ফেলতে চান?"
+msgstr "আপনি কি এই বন্ধুকে আপনার ঠিকানা বই থেকেও মুছে ফেলতে চান?"
 
 msgid "The username specified is invalid."
-msgstr "উল্লেখিত ব্য়বহারকারীর নামটি অবৈধ।"
+msgstr "উল্লেখিত ব্যবহারকারীর নামটি অকার্যকর।"
 
 # tithi
 msgid "This Hotmail account may not be active."
@@ -5881,26 +5880,26 @@
 
 #, c-format
 msgid "%s is not a valid group."
-msgstr "%s কোনো বৈধ গ্রুপ নয়।"
+msgstr "%s কোনো কার্যকর দল নয়।"
 
 msgid "Unknown error."
 msgstr "অজানা ত্রুটি।"
 
 #, c-format
 msgid "%s on %s (%s)"
-msgstr "%2s (%3s) এ %1s"
+msgstr "%2$s (%3$s) এ %1$s"
 
 #, c-format
 msgid "Unable to add user on %s (%s)"
-msgstr "%1s (%2s) এ ব্যবহারকারী যোগ করতে সমর্থ নয়"
+msgstr "%1$s (%2$s) এ ব্যবহারকারী যোগ করতে ব্যর্থ"
 
 #, c-format
 msgid "Unable to block user on %s (%s)"
-msgstr "%1s (%2s) এ ব্যবহারকারী আবদ্ধ করতে সমর্থ নয়"
+msgstr "%1$s (%2$s) এ ব্যবহারকারী ব্লক করতে ব্যর্থ"
 
 #, c-format
 msgid "Unable to permit user on %s (%s)"
-msgstr "%1s (%2s) ব্যবহারকারীকে অনুমতি প্রদান করতে সমর্থ নয়"
+msgstr "%1$s (%2$s) ব্যবহারকারীকে অনুমতি প্রদান করতে ব্যর্থ"
 
 #, c-format
 msgid "%s could not be added because your buddy list is full."
@@ -5914,10 +5913,10 @@
 msgstr "সাময়িকভাবে সেবা পাওয়া যাচ্ছে না।"
 
 msgid "Unable to rename group"
-msgstr "গ্রুপ পুনরায় নামকরণ করতে সমর্থ নয়"
+msgstr "দলের নামান্তর করতে ব্যর্থ"
 
 msgid "Unable to delete group"
-msgstr "গ্রুপ মুছে ফেলতে অক্ষম"
+msgstr "দল মুছে ফেলতে ব্যর্থ"
 
 #, c-format
 msgid "%s has added you to his or her buddy list."
@@ -5925,7 +5924,7 @@
 
 #, c-format
 msgid "%s has removed you from his or her buddy list."
-msgstr "%s আপনাকে তার বন্ধু তালিকা থেকে অপসারণ করেছে।"
+msgstr "%s আপনাকে তার বন্ধু তালিকা থেকে অপসারণ করেছেন।"
 
 # tithi
 #, c-format
@@ -5933,28 +5932,28 @@
 msgstr "এমন কোনো ব্যবহারকারী নেই: %s"
 
 msgid "User lookup"
-msgstr "ব্যবহারকারী দেখছে"
+msgstr "ব্যবহারকারী অনুসন্ধান"
 
 msgid "Reading challenge"
-msgstr "পড়তে সমস্যা হচ্ছে"
+msgstr "পড়ার চ্যালেঞ্জ"
 
 # fix me tithi
 msgid "Unexpected challenge length from server"
-msgstr "সার্ভারের অপ্রত্যাশিত চ্যালেঞ্জ সীমা"
+msgstr "অপ্রত্যাশিত দৈর্ঘ্যের সার্ভার চ্যালেঞ্জ "
 
 msgid "Logging in"
-msgstr "সংযুক্ত হচ্ছে"
+msgstr "লগইন হচ্ছে"
 
 msgid "MySpaceIM - No Username Set"
-msgstr "MySpaceIM - কোনো ব্যবহারকারীর নাম বিন্যাস করা হয়নি"
+msgstr "MySpaceIM - কোনো ব্যবহারকারীর নাম দেয়া হয়নি"
 
 # tithi
 msgid "You appear to have no MySpace username."
-msgstr "আপনি MySpace ব্যবহারকারীর-নাম ব্যতিত উপস্থিত হয়েছেন।"
+msgstr "সম্ভবত আপনার MySpace ব্যবহারকারীর-নাম নেই।"
 
 # tithi
 msgid "Would you like to set one now? (Note: THIS CANNOT BE CHANGED!)"
-msgstr "আপনি কি এখন একটি নির্ধারণ করতে আগ্রহী? (নোট: এটি পরিবর্তন করা যায় না!)"
+msgstr "আপনি কি এখন নির্ধারণ করতে আগ্রহী? (নোট: এটি পরিবর্তন করা যায় না!)"
 
 msgid "Lost connection with server"
 msgstr "সার্ভারের সাথে সংযোগ বিচ্ছিন্ন হয়েছে"
@@ -5963,7 +5962,7 @@
 #. khc: then use N_() in the array initializer and use _() when they are
 #. used
 msgid "New mail messages"
-msgstr "নতুন মেইল বার্তাসমূহ"
+msgstr "নতুন মেইল"
 
 # tithi
 msgid "New blog comments"
@@ -5986,7 +5985,7 @@
 msgstr "MySpace"
 
 msgid "IM Friends"
-msgstr "IM বন্ধুসমূহ"
+msgstr "IM বন্ধু"
 
 # tithi
 #, c-format
@@ -5997,95 +5996,94 @@
 "%d buddies were added or updated from the server (including buddies already "
 "on the server-side list)"
 msgstr[0] ""
-"সার্ভার থেকে  %d বন্ধু যোগ বা হালনাগাদ করা  হয়েছিল ( সার্ভার-পার্শ্বের তালিকায় "
-"বিদ্যমান বন্ধুরা সহ)"
+"সার্ভার থেকে  %d জন বন্ধু যোগ বা হালনাগাদ করা হয়েছে (সার্ভার-পার্শ্বের তালিকার "
+"বন্ধুরা সহ)"
 msgstr[1] ""
-"সার্ভার থেকে  %d বন্ধুসমূহ যোগ বা হালনাগাদ করা  হয়েছিল ( সার্ভার-পার্শ্বের তালিকায় "
-"বিদ্যমান বন্ধুরা সহ)"
+"সার্ভার থেকে %d জন বন্ধু যোগ বা হালনাগাদ করা  হয়েছে (সার্ভার-পার্শ্বের তালিকার "
+"বন্ধুরা সহ)"
 
 msgid "Add contacts from server"
-msgstr "সার্ভার থেকে যোগাযোগগুলো যোগ করুন"
+msgstr "সার্ভার থেকে পরিচিতিগুলো যোগ করুন"
 
 #, c-format
 msgid "Protocol error, code %d: %s"
-msgstr "প্রোটকল ত্রুটি, কোড %1d: %2s"
-
-# tithi
-#, fuzzy, c-format
+msgstr "প্রোটোকল ত্রুটি, কোড %1$d: %2$s"
+
+#, c-format
 msgid ""
 "%s Your password is %zu characters, which is longer than the maximum length "
 "of %d.  Please shorten your password at http://profileedit.myspace.com/index."
 "cfm?fuseaction=accountSettings.changePassword and try again."
 msgstr ""
-"%s আপনার গুপ্তসংকেত %d বর্ণচিহ্নের, MySpaceIM এর জন্য %d এর প্রত্যাশিত সর্বোচ্চ দৈর্ঘ্য "
-"অপেক্ষা বৃহত্তর। অনুগ্রহ করে আপনার গুপ্তসংকেত http://profileedit.myspace.com/index."
-"cfm?fuseaction=accountSettings। গুপ্তসংকেত সংক্ষিপ্ত করুন এবং পুনরায় চেষ্টা করুন।"
+"%s আপনার পাসওয়ার্ডটি %zu অক্ষরের, যা দৈর্ঘ্য %d এর সর্বোচ্চ দৈর্ঘ্যের চাইতে বড়। "
+"অনুগ্রহ করে আপনার পাসওয়ার্ড http://profileedit.myspace.com/index.cfm?"
+"fuseaction=accountSettings ঠিকানায় গিয়ে সংক্ষিপ্ত করুন এবং পুনরায় চেষ্টা করুন।"
 
 msgid "Incorrect username or password"
-msgstr "ভুল ব্যবহারকারীর নাম বা গুপ্তসংকেত"
+msgstr "ভুল ব্যবহারকারীর নাম বা পাসওয়ার্ড"
 
 # tithi
 msgid "MySpaceIM Error"
 msgstr "MySpaceIM ত্রুটি"
 
 msgid "Invalid input condition"
-msgstr "অবৈধ ইনপুট শর্ত"
+msgstr "অকার্যকর ইনপুট শর্ত"
 
 msgid "Failed to add buddy"
 msgstr "বন্ধু যোগ করতে ব্যর্থ"
 
 msgid "'addbuddy' command failed."
-msgstr "\"বন্ধু যোগ করুন\" নির্দেশটি ব্যর্থ হয়েছে।"
+msgstr "'addbuddy' কমান্ডটি ব্যর্থ হয়েছে।"
 
 msgid "persist command failed"
-msgstr "যুক্তির নির্দেশ ব্যর্থ হয়েছে"
+msgstr "persist কমান্ড ব্যর্থ হয়েছে"
 
 msgid "Failed to remove buddy"
-msgstr "বন্ধু অপসারণ করতে ব্যর্থ হয়েছে"
+msgstr "বন্ধু অপসারণ করতে ব্যর্থ"
 
 # tithi
 msgid "'delbuddy' command failed"
-msgstr "'বন্ধু মুছে ফেলুন' নির্দেশ ব্যর্থ হয়েছে"
+msgstr "'delbuddy' কমান্ড ব্যর্থ হয়েছে"
 
 msgid "blocklist command failed"
-msgstr "ব্লক-লিস্ট নির্দেশ ব্যর্থ হয়েছে"
+msgstr "blocklist কমান্ড ব্যর্থ হয়েছে"
 
 msgid "Missing Cipher"
-msgstr "হারিয়ে যাওয়া সাইফার"
+msgstr "সাইফার অনুপস্থিত"
 
 # tithi
 msgid "The RC4 cipher could not be found"
-msgstr "RC4 ছাইফারকে খুঁজে পাওয়া যায়নি"
-
-# tithi
+msgstr "RC4 সাইফার খুঁজে পাওয়া যায়নি"
+
+# mark25
 msgid ""
 "Upgrade to a libpurple with RC4 support (>= 2.0.1). MySpaceIM plugin will "
 "not be loaded."
 msgstr ""
-"RC4 সমর্থন (>= 2.0.1) সহ libpurpleএ উন্নততর করুন। MySpaceIM প্লাগইন লোড করা হবে "
-"না।"
+"RC4 সমর্থিত (>= 2.0.1) libpurpleএ আপগ্রেড করা হবে। MySpaceIM প্লাগইন লোড করা "
+"হবে না।"
 
 # tithi
 msgid "Add friends from MySpace.com"
 msgstr "MySpace.com থেকে বন্ধু যোগ করুন"
 
 msgid "Importing friends failed"
-msgstr "বন্ধুদের আনতে ব্যর্থ হয়েছে"
+msgstr "বন্ধুদের ইমপোর্ট করা ব্যর্থ হয়েছে"
 
 #. TODO: find out how
 msgid "Find people..."
-msgstr "জনগণ খুঁজুন..."
+msgstr "কোন ব্যক্তিকে‍ খুঁজুন..."
 
 msgid "Change IM name..."
-msgstr "IM নাম পরিবর্তন করুন..."
+msgstr "IM নাম পরিবর্তন..."
 
 # tithi
 msgid "myim URL handler"
-msgstr "myim URL নিয়ন্ত্রক"
+msgstr "myim URL হ্যান্ডলার"
 
 # tithi
 msgid "No suitable MySpaceIM account could be found to open this myim URL."
-msgstr "এই myim URL খুলতে কোনো উপযুক্ত MySpaceIM একাউন্ট খুঁজে পাওয়া যাবে না।"
+msgstr "এই myim URL খুলতে কোনো উপযুক্ত MySpaceIM একাউন্ট খুঁজে পাওয়া যায়নি।"
 
 # tithi
 msgid "Enable the proper MySpaceIM account and try again."
@@ -6093,23 +6091,23 @@
 
 # tithi
 msgid "Show display name in status text"
-msgstr "অবস্থা পাঠে প্রদর্শন নাম দেখান"
+msgstr "অবস্থা টেক্সটে নাম দেখান"
 
 # tithi
 msgid "Show headline in status text"
-msgstr "অবস্থা পাঠে শিরোনাম দেখান"
+msgstr "অবস্থা টেক্সটে শিরোনাম দেখান"
 
 # fix me tithi
 msgid "Send emoticons"
-msgstr "আবেগীয় প্রতীকগুলো পাঠান"
+msgstr "অনুভূতিচিহ্ন পাঠান"
 
 # tithi
 msgid "Screen resolution (dots per inch)"
-msgstr "পর্দার রিসোলিউশন (প্রতি ইঞ্চির ডট)"
+msgstr "পর্দার রেজল্যুশন (ইঞ্চি প্রতি ডট)"
 
 # fix me tithi
 msgid "Base font size (points)"
-msgstr "ভিত্তির ফন্ট আকার (বিন্দু)"
+msgstr "মূল ফন্টের আকার (পয়েন্টে)"
 
 msgid "User"
 msgstr "ব্যবহারকারী"
@@ -6122,7 +6120,7 @@
 
 # tithi
 msgid "Total Friends"
-msgstr "সব বন্ধু"
+msgstr "মোট বন্ধু"
 
 msgid "Client Version"
 msgstr "ক্লায়েন্ট সংস্করণ"
@@ -6132,13 +6130,16 @@
 "visit http://editprofile.myspace.com/index.cfm?fuseaction=profile.username "
 "to set your username."
 msgstr ""
+"ব্যবহারকারীর নাম নির্ধারণ করার সময় একটি ত্রুটি হয়েছে। আবার চেষ্টা করুন বা এই "
+"ঠিকানায় http://editprofile.myspace.com/index.cfm?fuseaction=profile.username "
+"গিয়ে ব্যবহারকারীর নাম নির্ধারণ করুন।"
 
 msgid "MySpaceIM - Username Available"
-msgstr "MySpaceIM -ব্যবহারকারীর নাম সহজলভ্য"
+msgstr "MySpaceIM - নামটি অব্যবহৃত"
 
 # tithi
 msgid "This username is available. Would you like to set it?"
-msgstr "এই ব্যবহারকারীর-নামটি সহজলভ্য। আপনি কি এটি নির্ধারন করতে আগ্রহী?"
+msgstr "এই নামটি অব্যবহৃত। আপনি কি এটি নির্ধারন করতে আগ্রহী?"
 
 # tithi
 msgid "ONCE SET, THIS CANNOT BE CHANGED!"
@@ -6146,13 +6147,13 @@
 
 # tithi
 msgid "MySpaceIM - Please Set a Username"
-msgstr "MySpaceIM- অনুগ্রহ করে একটি ব্যবহারকারীর নাম নির্ধারন করুন"
+msgstr "MySpaceIM- অনুগ্রহ করে একটি ব্যবহারকারীর নাম নির্ধারণ করুন"
 
 msgid "This username is unavailable."
-msgstr "এই ব্যহারকারীর নামটি অপ্রাপ্য।"
+msgstr "এই ব্যহারকারীর নামটি অনুপস্থিত।"
 
 msgid "Please try another username:"
-msgstr "অনুগ্রহ করে অন্য একটি ব্যবহারকারীর নাম চেষ্টা করুন:"
+msgstr "অনুগ্রহ করে অন্য একটি নাম চেষ্টা করুন:"
 
 #. Protocol won't log in now without a username set.. Disconnect
 msgid "No username set"
@@ -6160,7 +6161,7 @@
 
 # tithi
 msgid "Please enter a username to check its availability:"
-msgstr "অনুগ্রহ করে এর সহজলভ্যতা পরীক্ষা করতে একটি ব্যবহারকারীর নাম প্রবেশ করান:"
+msgstr "অনুগ্রহ করে একটি ব্যবহারকারীর নাম দিন যা অব্যবহৃত কিনা পরীক্ষা করার হবে:"
 
 # tithi
 #. TODO: icons for each zap
@@ -6170,77 +6171,77 @@
 #. * connotation, for example, "he was zapped by electricity when
 #. * he put a fork in the toaster."
 msgid "Zap"
-msgstr "আক্রমণ করুন"
+msgstr "ঝটকা"
 
 #, c-format
 msgid "%s has zapped you!"
-msgstr "%s আপনাকে আক্রমণ করেছে! "
+msgstr "%s আপনাকে ঝটকা! দিয়েছে! "
 
 # tithi
 #, c-format
 msgid "Zapping %s..."
-msgstr "%s আক্রমণ করছে ..."
+msgstr "%s কে ঝটকা! দেয়া হচ্ছে..."
 
 # tithi
 #. Whack means "to hit or strike someone with a sharp blow"
 msgid "Whack"
-msgstr "সজোরে আঘাত করুন"
+msgstr "ঘুষি"
 
 #, c-format
 msgid "%s has whacked you!"
-msgstr "%s আপনাকে আঘাত করেছে!"
+msgstr "%s আপনাকে ঘুষি দিয়েছে!"
 
 # tithi
 #, c-format
 msgid "Whacking %s..."
-msgstr "%s সজোরে আঘাত করছে..."
+msgstr "%s কে ঘুষি দেয়া হচ্ছে..."
 
 #. Torch means "to set on fire."  Don't worry, this doesn't
 #. * make a whole lot of sense in English, either.  Feel free
 #. * to translate it literally.
 msgid "Torch"
-msgstr "আলোকপাত করুন"
+msgstr "টর্চ"
 
 #, c-format
 msgid "%s has torched you!"
-msgstr "%s আপনার উপর আলোকপাত করেছে!"
+msgstr "%s আপনার টর্চ করেছে!"
 
 # tithi
 #, c-format
 msgid "Torching %s..."
-msgstr "%s আলোকপাত করছে..."
+msgstr "%s কে  টর্চ  করা হচ্ছে..."
 
 # fix me tithi
 #. Smooch means "to kiss someone, often enthusiastically"
 msgid "Smooch"
-msgstr "অন্তরঙ্গতা"
+msgstr "চুমু"
 
 #, c-format
 msgid "%s has smooched you!"
-msgstr "%s আপনার সাথে অন্তরঙ্গ হয়েছে!"
+msgstr "%s আপনাকে চুমু খেয়েছে!"
 
 # fix me tithi
 #, c-format
 msgid "Smooching %s..."
-msgstr "%s অন্তরঙ্গ করছে..."
+msgstr "%s কে চুমু দিচ্ছে..."
 
 # tithi
 #. A hug is a display of affection; wrapping your arms around someone
 msgid "Hug"
-msgstr "জড়িয়ে ধরুন"
+msgstr "আলিঙ্গন"
 
 #, c-format
 msgid "%s has hugged you!"
-msgstr "%s আপনাকে জড়িয়ে ধরেছে!"
+msgstr "%s আপনাকে আলিঙ্গন করেছে!"
 
 # tithi
 #, c-format
 msgid "Hugging %s..."
-msgstr "%s জড়িয়ে ধরছে..."
+msgstr "%s কে আলিঙ্গন করছে..."
 
 #. Slap means "to hit someone with an open/flat hand"
 msgid "Slap"
-msgstr "চড় মারুন"
+msgstr "চড়"
 
 #, c-format
 msgid "%s has slapped you!"
@@ -6249,20 +6250,20 @@
 # tithi
 #, c-format
 msgid "Slapping %s..."
-msgstr "%s চড় মারছে..."
+msgstr "%s কে চড় মারা হচ্ছে..."
 
 # fix me tithi
 #. Goose means "to pinch someone on their butt"
 msgid "Goose"
-msgstr "আঘাত করুন"
+msgstr "চিমটি"
 
 #, c-format
 msgid "%s has goosed you!"
-msgstr "%s আপনাকে আঘাত করেছে!"
+msgstr "%s আপনাকে চিমটি কেটেছে!"
 
 #, c-format
 msgid "Goosing %s..."
-msgstr "%s আঘাত করছে..."
+msgstr "%s কে চিমটি কাটছে..."
 
 # tithi
 #. A high-five is when two people's hands slap each other
@@ -6278,23 +6279,23 @@
 # tithi
 #, c-format
 msgid "High-fiving %s..."
-msgstr "%s হাই-ফাইভ করেছে..."
+msgstr "%s এর সাথে হাই-ফাইভ করছে..."
 
 # tithi
 #. We're not entirely sure what the MySpace people mean by
 #. * this... but we think it's the equivalent of "prank."  Or, for
 #. * someone to perform a mischievous trick or practical joke.
 msgid "Punk"
-msgstr "মজা"
+msgstr "পাংক"
 
 #, c-format
 msgid "%s has punk'd you!"
-msgstr "%s আপনার সাথে মজা করেছে!"
+msgstr "%s আপনাকে পাংক করেছে!"
 
 # tithi
 #, c-format
 msgid "Punking %s..."
-msgstr "%s মজা করছে..."
+msgstr "%s কে পাংক করা হচ্ছে..."
 
 # tithi
 #. Raspberry is a slang term for the vibrating sound made
@@ -6305,21 +6306,21 @@
 #. * connotation.  It is generally used in a playful tone
 #. * with friends.
 msgid "Raspberry"
-msgstr "অঙ্গভঙ্গি"
+msgstr "ভেংচি"
 
 # fix me tithi
 #, c-format
 msgid "%s has raspberried you!"
-msgstr "%s আপনাকে অঙ্গভঙ্গি দিয়েছে!"
+msgstr "%s আপনাকে ভেংচি কেটেছে!"
 
 # tithi
 #, c-format
 msgid "Raspberrying %s..."
-msgstr "%s অঙ্গভঙ্গি করছে..."
+msgstr "%s কে ভেংচি কাটছে..."
 
 # tithi
 msgid "Required parameters not passed in"
-msgstr "প্রয়োজনীয় মানসমূহ প্রবেশ করা হয়নি"
+msgstr "প্রয়োজনীয় প্যারামিটার দেয়া হয়নি"
 
 msgid "Unable to write to network"
 msgstr "নেটওয়ার্কে লিখতে ব্যর্থ"
@@ -6327,29 +6328,26 @@
 msgid "Unable to read from network"
 msgstr "নেটওয়ার্ক থেকে পড়তে ব্যর্থ"
 
-# tithi
 msgid "Error communicating with server"
 msgstr "সার্ভারের সাথে যোগাযোগের ত্রুটি"
 
-# tithi
 msgid "Conference not found"
-msgstr "অধিবেশন পাওয়া যাচ্ছে না"
-
-# tithi
+msgstr "অধিবেশন পাওয়া যায়নি"
+
 msgid "Conference does not exist"
-msgstr "অধিবেশন বিদ্যমান নয়"
+msgstr "এমন কোন অধিবেশন নেই"
 
 msgid "A folder with that name already exists"
-msgstr "ইতোমধ্যে ঐ নামের একটি ফোল্ডার বিদ্যমান"
+msgstr "ইতিমধ্যে ঐ নামের একটি ফোল্ডার বিদ্যমান"
 
 msgid "Not supported"
 msgstr "সমর্থিত নয়"
 
 msgid "Password has expired"
-msgstr "গুপ্তসঙ্কেতের মেয়াদ শেষ"
+msgstr "পাসওয়ার্ডের মেয়াদ শেষ"
 
 msgid "Incorrect password"
-msgstr "ভুল গুপ্তসঙ্কেতে"
+msgstr "ভুল পাসওয়ার্ড"
 
 msgid "User not found"
 msgstr "ব্যবহারকারী খুঁজে পাওয়া যায়নি"
@@ -6358,48 +6356,45 @@
 msgstr "একাউন্টটি নিষ্ক্রিয় করা হয়েছে"
 
 msgid "The server could not access the directory"
-msgstr "সার্ভার নির্দেশিকায় প্রবেশ করতে পারে না"
-
-# tithi
+msgstr "সার্ভার ডিরেক্টরিতে প্রবেশ করতে পারে না"
+
 msgid "Your system administrator has disabled this operation"
 msgstr "আপনার সিস্টেম প্রশাসক এই অপারেশনটি নিষ্ক্রিয় করেছে"
 
 # tithi
 msgid "The server is unavailable; try again later"
-msgstr "সার্ভার অপ্রাপ্য; পরবর্তীতে আবার চেষ্টা করুন"
+msgstr "সার্ভার বিদ্যমান নয়; পরবর্তীতে আবার চেষ্টা করুন"
 
 msgid "Cannot add a contact to the same folder twice"
-msgstr "একই ফোল্ডারে একটি যোগাযোগ দুইবার যোগ করা যাবে না"
+msgstr "একই ফোল্ডারে একটি পরিচিতি দুইবার যোগ করা যাবে না"
 
 msgid "Cannot add yourself"
 msgstr "আপনি নিজেকে যোগ করতে পারবেন না"
 
 # tithi
 msgid "Master archive is misconfigured"
-msgstr "মাস্টার আর্কাইভ ভূলভাবে-বিন্যাসিত"
+msgstr "মাস্টার আর্কাইভ ভুলভাবে-কনফিগার করা হয়েছে "
 
 # tithi
 msgid "Could not recognize the host of the username you entered"
-msgstr "আপনার প্রবেশকৃত ব্যবহারকারীর-নামের হোস্ট শনাক্ত করতে পারে না"
+msgstr "আপনার প্রবেশকৃত ব্যবহারকারীর নামের হোস্ট শনাক্ত করা যায়নি"
 
 msgid ""
 "Your account has been disabled because too many incorrect passwords were "
 "entered"
-msgstr ""
-"আপনার একাউন্টটি নিষ্ক্রিয় করা হয়েছে কারণ অনেকগুলো ভুল গুপ্তসংকেত প্রবেশ করা হয়েছিল"
+msgstr "আপনার একাউন্টটি নিষ্ক্রিয় করা হয়েছে কারণ অনেকবার ভুল পাসওয়ার্ড দেয়া হয়েছিল"
 
 msgid "You cannot add the same person twice to a conversation"
 msgstr "আপনি একটি কথোপকথনে একই ব্যক্তিকে দুইবার যোগ করতে পারেন না"
 
-# tithi
 msgid "You have reached your limit for the number of contacts allowed"
-msgstr "আপনি আপনার অনুমোদিত যোগাযোগ সংখ্যার সীমায় পৌঁছেছেন"
+msgstr "আপনি আপনার অনুমোদিত পরিচিতি সংখ্যার সীমায় পৌঁছেছেন"
 
 msgid "You have entered an incorrect username"
 msgstr "আপনি একটি ভুল ব্যবহারকারীর নাম প্রবেশ করেছেন"
 
 msgid "An error occurred while updating the directory"
-msgstr "নির্দেশিকাটি হালনাগাদ করার সময় একটি ত্রুটি দেখা দিয়েছে"
+msgstr "ডিরেক্টরিটি হালনাগাদ করার সময় একটি ত্রুটি দেখা দিয়েছে"
 
 # tithi
 msgid "Incompatible protocol version"
@@ -6413,7 +6408,7 @@
 "This evaluation version does not allow more than ten users to log in at one "
 "time"
 msgstr ""
-"এই মূল্যায়ন সংস্করণটি একই সময়ে দশজন ব্যবহারকারীর অধিক লগইন করতে অনুমোদন করে না"
+"এই মূল্যায়ন সংস্করণটি একই সময়ে দশজনের বেশী ব্যবহারকারীরকে লগইন করতে অনুমোদন করে না"
 
 msgid "The user is either offline or you are blocked"
 msgstr "এই ব্যবহারকারী হয় অফলাইনে বা আপনাকে ব্লক করে রেখেছে"
@@ -6422,9 +6417,9 @@
 msgid "Unknown error: 0x%X"
 msgstr "অজানা ত্রুটি: 0x%X"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to login: %s"
-msgstr "%s ব্যবহারকারীকে পিঙ্গ করতে অক্ষম"
+msgstr "লগইন করতে ব্যর্থ: %s"
 
 #, c-format
 msgid "Unable to send message. Could not get details for user (%s)."
@@ -6433,45 +6428,44 @@
 
 #, c-format
 msgid "Unable to add %s to your buddy list (%s)."
-msgstr "%s কে আপনার বন্ধুতালিকায় (%s) যোগ করতে সমর্থ নয়।"
+msgstr "%s কে আপনার বন্ধুতালিকায় (%s) যোগ করতে ব্যর্থ।"
 
 #. TODO: Improve this! message to who or for what conference?
 #, c-format
 msgid "Unable to send message (%s)."
-msgstr "বার্তা (%s) পাঠাতে সমর্থ নয়।"
+msgstr "বার্তা (%s) পাঠাতে ব্যর্থ।"
 
 #, c-format
 msgid "Unable to invite user (%s)."
-msgstr "ব্যবহারকারীকে (%s) আমন্ত্রন জানাতে সমর্থ নয়।"
+msgstr "ব্যবহারকারীকে (%s) আমন্ত্রন জানাতে ব্যর্থ।"
 
 #, c-format
 msgid "Unable to send message to %s. Could not create the conference (%s)."
-msgstr "%s এ বার্তা পাঠাতে সমর্থ নয়। অধিবেশন (%s) তৈরি করতে পারে না। "
+msgstr "%s কে বার্তা পাঠাতে ব্যর্থ। অধিবেশন (%s) তৈরি করা সম্ভব হয়নি।"
 
 #, c-format
 msgid "Unable to send message. Could not create the conference (%s)."
-msgstr "বার্তা পাঠাতে সমর্থ নয়। অধিবেশন (%s) তৈরি করতে পারে না। "
+msgstr "বার্তা পাঠাতে ব্যর্থ। অধিবেশন (%s) তৈরি করা সম্ভব হয়নি।"
 
 #, c-format
 msgid ""
 "Unable to move user %s to folder %s in the server side list. Error while "
 "creating folder (%s)."
 msgstr ""
-"ব্যবহারকারী %s কে সার্ভারের পার্শ্বের তালিকার %s ফোল্ডারে সরিয়ে নিতে সমর্থ নয়। "
-"ফোল্ডার (%s) তৈরীর সময় ত্রুটি দেখা দিয়েছে।"
+"ব্যবহারকারী %1s কে সার্ভার প্রান্তের তালিকার %s ফোল্ডারে সরিয়ে নিতে ব্যর্থ। ফোল্ডার "
+"(%s) তৈরীর সময় ত্রুটি দেখা দিয়েছে।"
 
 #, c-format
 msgid ""
 "Unable to add %s to your buddy list. Error creating folder in server side "
 "list (%s)."
 msgstr ""
-"আপনার বন্ধু তালিকায় %s কে যোগ করতে ব্যর্থ। সার্ভারের পার্শ্বের তালিকায় (%s) ফোল্ডার "
+"আপনার বন্ধু তালিকায় %s কে যোগ করতে ব্যর্থ। সার্ভার প্রান্তের তালিকায় (%s) ফোল্ডার "
 "তৈরীর সময় ত্রুটি দেখা দিয়েছে।"
 
-# tithi
 #, c-format
 msgid "Could not get details for user %s (%s)."
-msgstr "%1s (%2s) ব্যবহারকারীর জন্য বিস্তারিত বর্ণনা পাবে না।"
+msgstr "%1$s (%2$s) ব্যবহারকারীর প্রোফাইল পাওয়া যায়নি।"
 
 # msgstr "ব্যবহারকারী %s এর বিবরন পাওয়া যাচ্ছে না"
 #, c-format
@@ -6488,19 +6482,19 @@
 
 #, c-format
 msgid "Unable to remove %s from privacy list (%s)."
-msgstr "%s কে ব্যক্তিগত তালিকা (%s) থেকে মুছে ফেলতে সমর্থ হয়নি।"
+msgstr "%s কে ব্যক্তিগত তালিকা (%s) থেকে মুছে ফেলা সম্ভব হয়নি।"
 
 #, c-format
 msgid "Unable to change server side privacy settings (%s)."
-msgstr "সার্ভার পার্শ্বের ব্যাক্তিগত বিন্যাসনসমূহ (%s) পরিবর্তন করতে সমর্থ হয়নি।"
+msgstr "সার্ভার প্রান্তের গোপনতা সেটিং (%s) পরিবর্তন করা সম্ভব হয়নি।"
 
 #, c-format
 msgid "Unable to create conference (%s)."
-msgstr "অধিবেশন (%s) শুরু করতে সমর্থ হয়নি।"
+msgstr "অধিবেশন (%s) শুরু করা সম্ভব হয়নি।"
 
 # tithi
 msgid "Error communicating with server. Closing connection."
-msgstr "সার্ভারের সঙ্গে যোগাযোগে ত্রুটি। সংযোগ বন্ধ করছে।"
+msgstr "সার্ভারের সঙ্গে যোগাযোগে ত্রুটি। সংযোগ বন্ধ করা হচ্ছে।"
 
 msgid "Telephone Number"
 msgstr "টেলিফোন নম্বর"
@@ -6508,12 +6502,11 @@
 msgid "Personal Title"
 msgstr "ব্যক্তিগত শিরোনাম"
 
-# tithi
 msgid "Mailstop"
-msgstr "মেইল-বন্ধ"
+msgstr "মেইলস্টপ"
 
 msgid "User ID"
-msgstr "ব্যবহারকারী আইডি"
+msgstr "ব্যবহারকারী ID"
 
 #. tag = _("DN");
 #. value = nm_user_record_get_dn(user_record);
@@ -6522,7 +6515,7 @@
 #. }
 #.
 msgid "Full name"
-msgstr "সম্পূর্ন নাম"
+msgstr "পূর্ণ নাম"
 
 #, c-format
 msgid "GroupWise Conference %d"
@@ -6530,10 +6523,10 @@
 
 # tithi
 msgid "Authenticating..."
-msgstr "প্রমাণীকরণ..."
+msgstr "প্রমাণীকরণ করা হচ্ছে..."
 
 msgid "Waiting for response..."
-msgstr "উত্তরের জন্য অপেক্ষা করছে..."
+msgstr "উত্তরের জন্য অপেক্ষা করা হচ্ছে..."
 
 #, c-format
 msgid "%s has been invited to this conversation."
@@ -6549,9 +6542,9 @@
 "\n"
 "Sent: %s"
 msgstr ""
-"এর হতে আমন্ত্রণ: %1s \n"
-"\n"
-"প্রেরিত: %2s"
+"এর থেকে আমন্ত্রণ: %1$s \n"
+"\n"
+"প্রেরিত: %2$s"
 
 msgid "Would you like to join the conversation?"
 msgstr "আপনি কি কথোপকথনে অংশগ্রহন করতে ইচ্ছুক?"
@@ -6560,15 +6553,14 @@
 #, c-format
 msgid ""
 "%s appears to be offline and did not receive the message that you just sent."
-msgstr "%s অফলাইনে উপস্থিত এবং আপনার প্রেরিত বার্তাটি গ্রহণ করেনি।"
-
-#, fuzzy
+msgstr "%s অফলাইন এবং আপনার প্রেরিত বার্তাটি পায়নি।"
+
 msgid ""
 "Unable to connect to server. Please enter the address of the server to which "
 "you wish to connect."
 msgstr ""
-"সার্ভারে সংযোগ দিতে অসমর্থ। অনুগ্রহ করে আপনি যে সার্ভারে সংযোগ দিতে চান সেই "
-"ঠিকানা প্রবেশ করান।"
+"সার্ভারে সংযোগ দিতে ব্যর্থ। অনুগ্রহ করে আপনি যে সার্ভারে সংযোগ দিতে চান তার ঠিকানা "
+"দিন।"
 
 # tithi
 msgid "This conference has been closed. No more messages can be sent."
@@ -6586,7 +6578,7 @@
 #. *  summary
 #. *  description
 msgid "Novell GroupWise Messenger Protocol Plugin"
-msgstr "নোভেল GroupWise বার্তাবাহক প্রোটোকল প্লাগইন"
+msgstr "Novell GroupWise Messenger প্রোটোকল প্লাগইন"
 
 msgid "Server address"
 msgstr "সার্ভারের ঠিকানা"
@@ -6594,9 +6586,8 @@
 msgid "Server port"
 msgstr "সার্ভারের পোর্ট"
 
-#, fuzzy
 msgid "Received unexpected response from "
-msgstr "সার্ভার থেকে অপ্রত্যাশিত এইচটিটিপি সাড়া পেয়েছে।"
+msgstr "এটি থেকে অপ্রত্যাশিত উত্তর পাওয়া গেছে।"
 
 # tithi
 #. username connecting too frequently
@@ -6604,26 +6595,24 @@
 "You have been connecting and disconnecting too frequently. Wait ten minutes "
 "and try again. If you continue to try, you will need to wait even longer."
 msgstr ""
-"আপনি খুব ঘনঘন সংযোগ করছেন এবং সংযোগ বিচ্ছিন্ন করছেন। দশ মিনিট অপেক্ষা করুন এবং "
-"পুনরায় চেষ্টা করুন। আপনি যদি চেষ্টা অব্যাহত রাখতে চান, আপনাকে আরও বেশী অপেক্ষা "
-"করতে হবে।"
-
-#, fuzzy, c-format
+"আপনি খুব ঘনঘন সংযোগ স্থাপন এবং বিচ্ছিন্ন করছেন। দশ মিনিট অপেক্ষা করে পুনরায় চেষ্টা "
+"করুন। আপনি যদি চেষ্টা অব্যাহত রাখতে চান, আপনাকে আরও বেশী অপেক্ষা করতে হবে।"
+
+#, c-format
 msgid "Error requesting "
-msgstr "%s স্থিরকরণে ত্রুটি"
+msgstr "অনুরোধ করতে ত্রুটি"
 
 msgid "AOL does not allow your screen name to authenticate here"
-msgstr ""
+msgstr "AOL এখানে আপনার স্ক্রিন নামের প্রমাণীকরণ অনুমোদন করে না।"
 
 msgid "Could not join chat room"
-msgstr "আড্ডার রুমে যুক্ত হতে পারেনি"
+msgstr "আড্ডার আসরে যুক্ত হওয়া সম্ভব হয়নি"
 
 msgid "Invalid chat room name"
-msgstr "অবৈধ আড্ডার রুমের নাম"
-
-#, fuzzy
+msgstr "অকার্যকর আড্ডার আসরের নাম"
+
 msgid "Received invalid data on connection with server"
-msgstr "সার্ভারের সাথে সংযুক্ত অবস্থায় অবৈধ উপাত্ত গ্রহণ করেছে।"
+msgstr "সার্ভারের সাথে সংযোগের সময় অকার্যকর ডাটা গৃহীত হয়ে‌ছে"
 
 #. *< type
 #. *< ui_requirement
@@ -6636,7 +6625,7 @@
 #. *  summary
 #. *  description
 msgid "AIM Protocol Plugin"
-msgstr "এআইএম প্রোটোকল প্লাগইন"
+msgstr "AIM প্রোটোকল প্লাগইন"
 
 # tithi
 msgid "ICQ UIN..."
@@ -6653,14 +6642,14 @@
 #. *  summary
 #. *  description
 msgid "ICQ Protocol Plugin"
-msgstr "আইসিকিউ প্রোটোকল প্লাগইন"
+msgstr "ICQ প্রোটোকল প্লাগইন"
 
 # tithi
 msgid "Encoding"
-msgstr "সঙ্কেতায়ন"
+msgstr "এনকোডিং"
 
 msgid "The remote user has closed the connection."
-msgstr "দূরবর্তী ব্যবহারকারী যোগাযোগটি বন্ধ করে দিয়েছে।"
+msgstr "দূরবর্তী ব্যবহারকারী সংযোগটি বন্ধ করে দিয়েছে।"
 
 msgid "The remote user has declined your request."
 msgstr "দূরবর্তী ব্যবহারকারী আপনার অনুরোধ অস্বীকার করেছে।"
@@ -6668,15 +6657,14 @@
 # tithi
 #, c-format
 msgid "Lost connection with the remote user:<br>%s"
-msgstr "দূরবর্তী ব্যবহারকারীর সঙ্গে সংযোগ হারিয়েছে:<br>%s"
+msgstr "দূরবর্তী ব্যবহারকারীর সঙ্গে সংযোগ বিচ্ছিন্ন হয়েছে:<br>%s"
 
 # tithi
 msgid "Received invalid data on connection with remote user."
-msgstr "দূরবর্তী ব্যবহারকারীর সাথে সংযুক্ত অবস্থায় অবৈধ উপাত্ত গ্রহণ করেছে।"
-
-#, fuzzy
+msgstr "দূরবর্তী ব্যবহারকারীর সাথে সংযোগের সময় অকার্যকর ডাটা গৃহীত হয়ে‌ছে।"
+
 msgid "Unable to establish a connection with the remote user."
-msgstr "দূরবর্তী ব্য়বহারকারীর সাথে সংযোগ স্থাপন করতে পারেনি।"
+msgstr "দূরবর্তী ব্যবহারকারীর সাথে সংযোগ স্থাপন করা সম্ভব হয়নি।"
 
 msgid "Direct IM established"
 msgstr "সরাসরি IM স্থাপন করা হয়েছে"
@@ -6687,31 +6675,31 @@
 "%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 ""
-"%1s আপনাকে একটি %2s ফাইল পাঠাতে চেষ্টা করেছিল, কিন্তু আমরা সরাসরি IM এর ওপর "
-"শুধুমাত্র %3s পর্যন্ত ফাইল অনুমোদন করি।  বিকল্প হিসেবে ফাইল স্থানান্তর ব্যবহার করার "
-"চেষ্টা করুন।\n"
+"%1$s আপনাকে একটি %2$s ফাইল পাঠাতে চেষ্টা করেছিল, কিন্তু আমরা সরাসরি IM এ শুধুমাত্র "
+"%3$s পর্যন্ত ফাইল অনুমোদন করি। বিকল্প হিসেবে ফাইল স্থানান্তর ব্যবহার করার চেষ্টা "
+"করুন।\n"
 
 # tithi
 #, c-format
 msgid "File %s is %s, which is larger than the maximum size of %s."
-msgstr "ফাইল %1s হলো %2s, যা %3s এর সর্বোচ্চ আকার অপেক্ষা বৃহত্তর।"
+msgstr "ফাইল %1$s হলো %2$s, যা সর্বোচ্চ আকার %3$s থেকে বেশী।"
 
 msgid "Invalid error"
-msgstr "অবৈধ ত্রুটি"
+msgstr "অকার্যকর ত্রুটি"
 
 msgid "Invalid SNAC"
-msgstr "অবৈধ SNAC"
+msgstr "অকার্যকর SNAC"
 
 # tithi
 msgid "Rate to host"
-msgstr "হোস্টের হার"
+msgstr "হোস্টে পাঠানোর হার"
 
 # tithi
 msgid "Rate to client"
-msgstr "গ্রাহকের হার"
+msgstr "ক্লায়েন্টে পাঠানোর হার"
 
 msgid "Service unavailable"
-msgstr "সেবা অপ্রাপ্য"
+msgstr "সার্ভিস বিদ্যমান নয়"
 
 # tithi
 msgid "Service not defined"
@@ -6727,26 +6715,26 @@
 
 # tithi
 msgid "Not supported by client"
-msgstr "গ্রাহক দ্বারা সমর্থিত নয়"
+msgstr "ক্লায়েন্ট দ্বারা সমর্থিত নয়"
 
 # tithi
 msgid "Refused by client"
-msgstr "গ্রাহক দ্বারা অস্বীকৃত"
+msgstr "ক্লায়েন্ট দ্বারা প্রত্যাখ্যাত"
 
 # tithi
 msgid "Reply too big"
-msgstr "উত্তর অনেক বেশি বড়"
+msgstr "অতিরিক্ত বড় উত্তর"
 
 # tithi
 msgid "Responses lost"
-msgstr "সাড়াসমূহ হারিয়েছে"
+msgstr "প্রতিক্রিয়া হারিয়ে গেছে"
 
 msgid "Request denied"
-msgstr "অনুরোধ প্রত্যাখ্যান করা হয়েছে"
+msgstr "অনুরোধ প্রত্যাখ্যাত"
 
 # tithi
 msgid "Busted SNAC payload"
-msgstr "বাস্টেড SNAC পেলোড"
+msgstr "ব্যর্থ SNAC পেলোড"
 
 # tithi
 msgid "Insufficient rights"
@@ -6754,7 +6742,7 @@
 
 # tithi
 msgid "In local permit/deny"
-msgstr "স্থানীয় অনুমতি/অস্বীকার এ"
+msgstr "স্থানীয় অনুমতি/অস্বীকারে"
 
 # tithi
 msgid "Warning level too high (sender)"
@@ -6766,7 +6754,7 @@
 
 # tithi
 msgid "User temporarily unavailable"
-msgstr "ব্যবহারকারী সাময়িকভাবে অপ্রাপ্য"
+msgstr "ব্যবহারকারীকে সাময়িকভাবে পাওয়া যায়না"
 
 # tithi
 msgid "No match"
@@ -6774,18 +6762,17 @@
 
 # tithi
 msgid "List overflow"
-msgstr "তালিকা অতিরিক্ত"
+msgstr "লিস্ট ওভার‌ফ্লো"
 
 msgid "Request ambiguous"
 msgstr "অনুরোধ অস্পষ্ট"
 
 # tithi
 msgid "Queue full"
-msgstr "সারি পূর্ণ"
-
-# tithi
+msgstr "কিউ পরিপূর্ণ"
+
 msgid "Not while on AOL"
-msgstr "এই সময়ে AOL এ নেই"
+msgstr "AOL এ থাকা অবস্থায় নয়"
 
 # tithi
 msgid ""
@@ -6794,10 +6781,9 @@
 "encoding he is using, you can specify it in the advanced account options for "
 "your AIM/ICQ account.)"
 msgstr ""
-"(এই বার্তাটি গ্রহণে একটি ত্রুটি ছিল।  আপনি যে বন্ধুর সঙ্গে কথা বলছেন সে সম্ভবত "
-"প্রত্যাশার চেয়ে ভিন্ন একটি সঙ্কেতায়ন ব্যবহার করছে।  যদি আপনি জানেন যে সে কি "
-"সঙ্কেতায়ন ব্যবহার করছে, আপনি আপনার AIM/ICQ একাউন্টের জন্য এটা উন্নততর একাউন্ট "
-"পছন্দসমূহে উল্লেখ করতে পারেন।)"
+"(এই বার্তাটি গ্রহণে ত্রুটি হয়েছে। আপনি যে বন্ধুর সঙ্গে কথা বলছেন তিনি সম্ভবত ভিন্ন "
+"একটি এনকোডিং ব্যবহার করছেন। যদি আপনি জানেন তিনি কি এনকোডিং ব্যবহার করছেন, আপনি "
+"আপনার AIM/ICQ একাউন্টের উচ্চপর্যায়ের অপশনে তা উল্লেখ করতে পারেন।)"
 
 # tithi
 #, c-format
@@ -6805,8 +6791,8 @@
 "(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 এর ক্লায়েন্টটি ত্রুটিপূর্ণ।)"
 
 #. Label
 msgid "Buddy Icon"
@@ -6821,16 +6807,16 @@
 msgstr "AIM সরাসরি IM"
 
 msgid "Get File"
-msgstr "ফাইল গ্রহণ করুন"
+msgstr "ফাইল সংগ্রহ"
 
 msgid "Games"
 msgstr "খেলা"
 
 msgid "Add-Ins"
-msgstr "অন্তর্যোগসমূহ"
+msgstr "এ্যাড-ইন"
 
 msgid "Send Buddy List"
-msgstr "বন্ধু তালিকা পাঠান"
+msgstr "বন্ধু তালিকা প্রেরণ করা হবে"
 
 msgid "ICQ Direct Connect"
 msgstr "ICQ সরাসরি সংযোগ"
@@ -6842,13 +6828,12 @@
 msgid "ICQ RTF"
 msgstr "ICQ RTF"
 
-# tithi
 msgid "Nihilist"
 msgstr "নাস্তিবাদী"
 
 # tithi
 msgid "ICQ Server Relay"
-msgstr "ICQ সার্ভার সম্প্রচার"
+msgstr "ICQ সার্ভার রিলে"
 
 # tithi
 msgid "Old ICQ UTF8"
@@ -6856,7 +6841,7 @@
 
 # tithi
 msgid "Trillian Encryption"
-msgstr "ট্রিলিয়ন সঙ্কেতায়ন"
+msgstr "Trillian এনক্রিপশন"
 
 # tithi
 msgid "ICQ UTF8"
@@ -6866,13 +6851,13 @@
 msgstr "হিপটপ"
 
 msgid "Security Enabled"
-msgstr "নিরাপত্তা সক্রিয়কৃত"
+msgstr "নিরাপত্তা সক্রিয়"
 
 msgid "Video Chat"
 msgstr "ভিডিও আড্ডা"
 
 msgid "iChat AV"
-msgstr "আইআড্ডা AV"
+msgstr "iChat AV"
 
 # tithi
 msgid "Live Video"
@@ -6886,14 +6871,14 @@
 
 # tithi
 msgid "Free For Chat"
-msgstr "আড্ডার জন্য মুক্ত"
+msgstr "মোটেই ব্যস্ত নয়, আড্ডা দেয়া যায়"
 
 msgid "Not Available"
-msgstr "বিদ্যমান নেই "
+msgstr "অনুপস্থিত"
 
 # tithi
 msgid "Occupied"
-msgstr "অধিষ্টিত"
+msgstr "ব্যস্ত"
 
 # tithi
 msgid "Web Aware"
@@ -6903,7 +6888,7 @@
 msgstr "অদৃশ্য"
 
 msgid "IP Address"
-msgstr "আইপি ঠিকানা"
+msgstr "IP ঠিকানা"
 
 # tithi
 msgid "Warning Level"
@@ -6913,15 +6898,13 @@
 msgstr "বন্ধুর মন্তব্য"
 
 # fix me tithi
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to connect to authentication server: %s"
-msgstr ""
-"প্রমাণীকরণ সাথে সংযুক্ত করা যায়নি:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "প্রমাণীকরণ সার্ভারের সাথে সংযোগ স্থাপন করা সম্ভব হয়নি: %s"
+
+#, c-format
 msgid "Unable to connect to BOS server: %s"
-msgstr "সার্ভারের সাথে সংযোগ স্থাপনে অসমর্থ।"
+msgstr "BOS সার্ভারের সাথে সংযোগ স্থাপনে ব্যর্থ: %s"
 
 msgid "Username sent"
 msgstr "ব্যবহারকারীর-নাম পাঠানো হয়েছে"
@@ -6936,108 +6919,90 @@
 msgstr "সংযোগ চূড়ান্ত করা হচ্ছে"
 
 # tithi
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Unable to sign on as %s because the username is invalid.  Usernames must be "
 "a valid email address, or start with a letter and contain only letters, "
 "numbers and spaces, or contain only numbers."
 msgstr ""
-"লগইন করতে অক্ষম: ব্যবহারকারীর-নাম অবৈধ থাকার কারণে %s হিসেবে যুক্ত হতে পারেন না। "
-"ব্যবহারকারীর অবশ্যই একটি বৈধ ই-মেইল ঠিকানা থাকতে হবে, বা একটি বর্ণ দ্বারা শুরু হবে "
-"এবং শুধুমাত্র বর্ণ, সংখ্যা এবং স্পেস ধারণ করবে, বা শুধুমাত্র সংখ্যা ধারণ করবে।"
+"ব্যবহারকারীর নাম অকার্যকর থাকার কারণে %s হিসেবে লগইন করা সম্ভব হয়নি। "
+"ব্যবহারকারীর নাম অবশ্যই একটি কার্যকর ইমেইল ঠিকানা হতে হবে, বা একটি বর্ণ দ্বারা শুরু "
+"হলে, শুধুমাত্র বর্ণ, সংখ্যা এবং স্পেস দ্বারা গঠিত হবে, বা শুধুমাত্র সংখ্যা দ্বারা গঠিত "
+"হবে।"
 
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
-msgstr "আপনি সাময়িকভাবে বিচ্ছিন্ন থাকতে পারেন।  হালনাগাদের জন্য %s পরীক্ষা করুন."
+msgstr "আপনি সাময়িকভাবে বিচ্ছিন্ন হতে পারেন। হালানাগাদের জন্য %s পরীক্ষা করুন."
 
 msgid "Unable to get a valid AIM login hash."
-msgstr "একটি বৈধ AIM লগইন হ্যাশ পেতে ব্যর্থ।"
+msgstr "একটি কার্যকর AIM লগইন হ্যাশ পেতে ব্যর্থ।"
 
 msgid "Unable to get a valid login hash."
-msgstr "একটি বৈধ লগইন হ্যাশ পেতে ব্যর্থ।"
-
-# tithi
+msgstr "একটি কার্যকর লগইন হ্যাশ পেতে ব্যর্থ।"
+
 msgid "Received authorization"
-msgstr "গৃহীত অনুমোদন প্রাপ্ত"
+msgstr "অনুমোদন গৃহীত হয়েছে"
 
 #. Unregistered username
 #. uid is not exist
 #. the username does not exist
-#, fuzzy
 msgid "Username does not exist"
-msgstr "ব্যবহারকারী বিদ্যমান নয়"
+msgstr "ব্যবহারকারীর নাম বিদ্যমান নয়"
 
 # tithi
 #. Suspended account
-#, fuzzy
 msgid "Your account is currently suspended"
-msgstr "আপনার একাউন্টটি বর্তমানে স্থগিত।"
+msgstr "আপনার একাউন্টটি সাময়িকভাবে বরখাস্ত করা হয়েছে"
 
 # tithi
 #. service temporarily unavailable
 msgid "The AOL Instant Messenger service is temporarily unavailable."
-msgstr "AOL তাৎক্ষণিক বার্তাবাহক সার্ভিস সাময়িকভাবে অপ্রাপ্য।"
-
-# tithi
+msgstr "AOL তাৎক্ষণিক বার্তাবাহক সার্ভিস সাময়িকভাবে পাওয়া যায়না।"
+
+# tithi
+#. client too old
 #, c-format
 msgid "The client version you are using is too old. Please upgrade at %s"
-msgstr "আপনার ব্যবহৃত গ্রাহক সংস্করণ খুব পুরনো। অনুগ্রহ করে %s এ উন্নততর করুন"
+msgstr "আপনার ব্যবহৃত ক্লায়েন্ট সংস্করণটি খুব পুরনো। অনুগ্রহ করে %s এ হালনাহাদ করুন"
 
 # tithi
 #. IP address connecting too frequently
-#, fuzzy
 msgid ""
 "You have been connecting and disconnecting too frequently. Wait a minute and "
 "try again. If you continue to try, you will need to wait even longer."
 msgstr ""
-"আপনি খুব ঘনঘন সংযোগ করছেন এবং সংযোগ বিচ্ছিন্ন করছেন। দশ মিনিট অপেক্ষা করুন এবং "
-"পুনরায় চেষ্টা করুন। আপনি যদি চেষ্টা অব্যাহত রাখতে চান, আপনাকে আরও বেশী অপেক্ষা "
-"করতে হবে।"
-
-# tithi
-#, fuzzy
+"আপনি খুব ঘনঘন সংযোগ স্থাপন এবং বিচ্ছিন্ন করছেন। কিছুক্ষন অপেক্ষা করে পুনরায় চেষ্টা "
+"করুন। আপনি যদি চেষ্টা অব্যাহত রাখতে চান, আপনাকে আরও বেশী সময় অপেক্ষা করতে হবে।"
+
+# tithi
 msgid "The SecurID key entered is invalid"
-msgstr "অবৈধ নিরাপদ-আইডি কী প্রবেশ করা হয়েছে।"
+msgstr "অকার্যকর SecurID কী দেয়া হয়েছে"
 
 # tithi
 msgid "Enter SecurID"
-msgstr "নিরাপদ-আইডি প্রবেশ করান"
+msgstr "SecurID দিন"
 
 # tithi
 msgid "Enter the 6 digit number from the digital display."
-msgstr "ডিজিটাল প্রদর্শন থেকে ৬ ডিজিটের সংখ্যা প্রবেশ করান।"
-
-#. *
-#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
-#.
-msgid "_OK"
-msgstr "ঠিক আছে (_O)"
+msgstr "ডিজিটাল ডিসপ্লে থেকে ৬ ডিজিটের সংখ্যাটি দিন।"
 
 msgid "Password sent"
-msgstr "গুপ্তসঙ্কেত পাঠানো হয়েছে"
+msgstr "পাসওয়ার্ড পাঠানো হয়েছে"
 
 msgid "Unable to initialize connection"
-msgstr "সংযোগ প্রস্তুত করতে ব্যর্থ"
+msgstr "সংযোগ আরম্ভ করতে ব্যর্থ"
 
 # tithi
 msgid "Please authorize me so I can add you to my buddy list."
 msgstr ""
 "অনুগ্রহ করে আমাকে অনুমোদন দিন যেন আমি আপনাকে আমার বন্ধু তালিকায় যুক্ত করতে পারি।"
 
-# tithi
-msgid "Authorization Request Message:"
-msgstr "প্রাপ্তাধিকার অনুরোধ বার্তা:"
-
-# tithi
-msgid "Please authorize me!"
-msgstr "অনুগ্রহ করে আমাকে অনুমোদন দিন!"
-
 msgid "No reason given."
 msgstr "কোনো কারন দর্শানো হয়নি।"
 
 # tithi
 msgid "Authorization Denied Message:"
-msgstr "প্রাপ্তাধিকার অগ্রাহ্য বার্তা:"
+msgstr "অনুমোদন প্রত্যাখ্যান:"
 
 # tithi
 #, c-format
@@ -7046,20 +7011,19 @@
 "following reason:\n"
 "%s"
 msgstr ""
-"ব্যবহারকারী %1u নিম্নলিখিত কারণের জন্য আপনার বন্ধু তালিকাতে তাদেরকে যোগ করতে "
-"আপনার অনুরোধ অস্বীকার করেছে: \n"
-"%2s"
+"ব্যবহারকারী %1$u নিম্নলিখিত কারণে আপনার বন্ধু তালিকাতে তাদেরকে যোগ করার অনুরোধ "
+"প্রত্যাখ্যান করেছে: \n"
+"%2$s"
 
 # tithi
 msgid "ICQ authorization denied."
-msgstr "ICQ প্রাপ্তাধিকার অগ্রাহ্য।"
+msgstr "ICQ অনুমোদন প্রত্যাখ্যাত।"
 
 # tithi
 #. Someone has granted you authorization
 #, c-format
 msgid "The user %u has granted your request to add them to your buddy list."
-msgstr ""
-"%u ব্যবহারকারী আপনার বন্ধু তালিকাতে তাদেরকে যোগ করতে আপনার অনুরোধ গ্রহণ করেছে।"
+msgstr "%u ব্যবহারকারী আপনার বন্ধু তালিকাতে তাদেরকে যোগ করার অনুরোধ গ্রহণ করেছে।"
 
 # tithi
 #, c-format
@@ -7071,8 +7035,8 @@
 msgstr ""
 "আপনি একটি বিশেষ বার্তা গ্রহণ করেছেন\n"
 "\n"
-"হতে: %1s [%2s]\n"
-"%3s "
+"প্রেরক: %1$s [%2$s]\n"
+"%3$s "
 
 # tithi
 #, c-format
@@ -7082,10 +7046,10 @@
 "From: %s [%s]\n"
 "%s"
 msgstr ""
-"আপনি একটি ICQ পৃষ্টা গ্রহণ করেছেন\n"
-"\n"
-"হতে: %1s [%2s]\n"
-"%3s"
+"আপনি একটি ICQ পেইজ গ্রহণ করেছেন\n"
+"\n"
+"প্রেরক: %1$s [%2$s]\n"
+"%3$s"
 
 # tithi
 #, c-format
@@ -7095,37 +7059,37 @@
 "Message is:\n"
 "%s"
 msgstr ""
-"আপনি %1s [%2s] থেকে একটি ICQ ই-মেইল গ্রহণ করেছেন\n"
+"আপনি %1$s [%2$s] থেকে একটি ICQ ইমেইল গ্রহণ করেছেন\n"
 " \n"
 "বার্তাটি হল:\n"
-"%3s"
+"%3$s"
 
 # tithi
 #, c-format
 msgid "ICQ user %u has sent you a buddy: %s (%s)"
-msgstr "ICQ %1u ব্যবহারকারী আপনাকে একটি বন্ধু পাঠিয়েছে: %2s (%3s)"
+msgstr "ICQ %1$u ব্যবহারকারী আপনাকে একটি বন্ধু পাঠিয়েছে: %2$s (%3$s)"
 
 msgid "Do you want to add this buddy to your buddy list?"
 msgstr "আপনি কি এই বন্ধুকে আপনার বন্ধু তালিকায় যোগ করতে চান?"
 
 msgid "_Add"
-msgstr "যোগ করুন (_A)"
+msgstr "যোগ (_A)"
 
 msgid "_Decline"
-msgstr "প্রত্যাখান করুন (_D)"
+msgstr "প্রত্যাখান (_D)"
 
 # tithi
 #, c-format
 msgid "You missed %hu message from %s because it was invalid."
 msgid_plural "You missed %hu messages from %s because they were invalid."
-msgstr[0] "আপনি %2$s এর %1$hu বার্তাটি হারিয়েছেন কারণ এটি অবৈধ ছিল।"
-msgstr[1] "আপনি %2$s এর %1$hu বার্তাসমূহ হারিয়েছেন কারণ এটি অবৈধ ছিল।"
+msgstr[0] "আপনি %2$s এর %1$huটি বার্তা হারিয়েছেন কারণ এটি অকার্যকর ছিল।"
+msgstr[1] "আপনি %2$s এর %1$huটি বার্তা হারিয়েছেন কারণ এটি অকার্যকর ছিল।"
 
 #, c-format
 msgid "You missed %hu message from %s because it was too large."
 msgid_plural "You missed %hu messages from %s because they were too large."
-msgstr[0] "আপনি %1hu বার্তাটি %2s হতে  হারিয়েছেন কারণ এটি অনেক বড় ছিল।"
-msgstr[1] "আপনি %1hu বার্তাসমূহ %2s হতে  হারিয়েছেন কারণ তারা অনেক বড় ছিল।"
+msgstr[0] "আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ এটি অনেক বড় ছিল।"
+msgstr[1] "আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ তা অনেক বড় ছিল।"
 
 # tithi
 #, c-format
@@ -7134,9 +7098,9 @@
 msgid_plural ""
 "You missed %hu messages from %s because the rate limit has been exceeded."
 msgstr[0] ""
-"আপনি %1hu বার্তাটি  %2s হতে হারিয়েছেন কারণ হারের সীমা অতিক্রম করা হয়েছিল।"
+"আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ হারের সীমা অতিক্রান্ত হয়েছিল।"
 msgstr[1] ""
-"আপনি %1hu বার্তাসমূহ %2s হতে  হারিয়েছেন কারণ হারের সীমা অতিক্রম করা হয়েছিল।"
+"%2$s থেকে আপনি %1$huটি বার্তা হারিয়েছেন কারণ হারের সীমা অতিক্রান্ত হয়েছিল।"
 
 # fix me tithi
 #, c-format
@@ -7144,38 +7108,38 @@
 "You missed %hu message from %s because his/her warning level is too high."
 msgid_plural ""
 "You missed %hu messages from %s because his/her warning level is too high."
-msgstr[0] "আপনি %1hu বার্তাটি %2s হতে হারিয়েছেন কারণ তার সতর্কতা স্তর খুব উচ্চ।"
-msgstr[1] "আপনি %1hu বার্তাসমূহ %2s হতে হারিয়েছেন কারণ তার সতর্কতা স্তর খুব উচ্চ।"
+msgstr[0] "আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ তার সতর্কতা স্তর খুব উঁচু।"
+msgstr[1] "আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ তার সতর্কতা স্তর খুব উঁচু।"
 
 # fix me tithi
 #, c-format
 msgid "You missed %hu message from %s because your warning level is too high."
 msgid_plural ""
 "You missed %hu messages from %s because your warning level is too high."
-msgstr[0] "আপনি %1hu বার্তাটি %2s হতে হারিয়েছেন কারণ আপনার সতর্কতা স্তর খুব উচ্চ।"
-msgstr[1] "আপনি %1hu বার্তাসমূহ %2s হতে হারিয়েছেন কারণ আপনার সতর্কতা স্তর খুব উচ্চ।"
+msgstr[0] "আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ আপনার সতর্কতা স্তর খুব উঁচু।"
+msgstr[1] "আপনি %2$s থেকে %1$huটি বার্তা হারিয়েছেন কারণ আপনার সতর্কতা স্তর খুব উঁচু।"
 
 #, c-format
 msgid "You missed %hu message from %s for an unknown reason."
 msgid_plural "You missed %hu messages from %s for an unknown reason."
-msgstr[0] "আপনি অজ্ঞাত কারণে %1hu বার্তাটি %2s হতে হারিয়েছেন।"
-msgstr[1] "আপনি অজ্ঞাত কারণে %1hu বার্তাসমূহ %2s হতে হারিয়েছেন।"
+msgstr[0] "আপনি অজ্ঞাত কারণে %2$s থেকে %1$huটি বার্তা হারিয়েছেন।"
+msgstr[1] "আপনি অজ্ঞাত কারণে %2$s থেকে %1$huটি বার্তা হারিয়েছেন।"
 
 #. Data is assumed to be the destination bn
 #, c-format
 msgid "Unable to send message: %s"
-msgstr "বার্তা পাঠানো অসমর্থ: %s।"
+msgstr "বার্তা পাঠাতে ব্যর্থ: %s।"
 
 msgid "Unknown reason."
 msgstr "অজ্ঞাত কারণ।"
 
 #, c-format
 msgid "Unable to send message to %s:"
-msgstr "%s এ বার্তা পাঠাতে সমর্থ নয়:"
+msgstr "%s এ বার্তা পাঠাতে ব্যর্থ:"
 
 #, c-format
 msgid "User information not available: %s"
-msgstr "ব্যবহারকারীর তথ্য সহজলভ্য় নয়: %s"
+msgstr "ব্যবহারকারীর তথ্য পাওয়া যাচ্ছে না: %s"
 
 msgid "Online Since"
 msgstr "যখন থেকে অনলাইনে"
@@ -7186,14 +7150,14 @@
 
 # tithi
 msgid "Capabilities"
-msgstr "সক্ষমতা"
+msgstr "ক্ষমতা"
 
 msgid "Profile"
 msgstr "প্রোফাইল"
 
 # tithi
 msgid "Your AIM connection may be lost."
-msgstr "আপনার AIM সংযোগ হয়ত নষ্ট হয়ে গেছে।"
+msgstr "আপনার AIM সংযোগ হয়তো বিচ্ছিন্ন হয়েছে।"
 
 # tithi
 #. The conversion failed!
@@ -7201,20 +7165,19 @@
 "[Unable to display a message from this user because it contained invalid "
 "characters.]"
 msgstr ""
-"[এই ব্যবহারকারী থেকে একটি বার্তা প্রদর্শন করতে অক্ষম কারণ এটি অবৈধ বর্ণচিহ্ন ধারণ "
-"করেছিল।]"
-
-# tithi
+"[এই ব্যবহারকারী থেকে একটি বার্তা প্রদর্শন করতে ব্যর্থ কারণ এটি অকার্যকর বর্ণচিহ্ন "
+"ধারণ করেছিল।]"
+
 msgid ""
 "The last action you attempted could not be performed because you are over "
 "the rate limit. Please wait 10 seconds and try again."
 msgstr ""
-"আপনি সর্বশেষ যে কার্যটে চেষ্টা করেছেন তা সম্পাদন করা যায়নি কারণ আপনি হারের সীমা "
-"অতিক্রম করেছেন। অনুগ্রহ করে ১০ সেকেন্ড অপেক্ষা করুন এবং পুনরায় চেষ্টা করুন।"
+"আপনি সর্বশেষ যে কাজটি করার চেষ্টা করেছেন তা সম্পাদন করা যায়নি কারণ আপনি দ্রুততার "
+"সীমা অতিক্রম করেছেন। অনুগ্রহ করে ১০ সেকেন্ড অপেক্ষা করুন এবং পুনরায় চেষ্টা করুন।"
 
 #, c-format
 msgid "You have been disconnected from chat room %s."
-msgstr "আপনাকে %s আড্ডার রুম থেকে বিচ্ছিন্ন করা হয়েছে।"
+msgstr "আপনাকে %s আড্ডার আসর থেকে বিচ্ছিন্ন করা হয়েছে।"
 
 # tithi
 msgid "Mobile Phone"
@@ -7222,7 +7185,7 @@
 
 # tithi
 msgid "Personal Web Page"
-msgstr "ব্যক্তিগত ওয়েব পেজ"
+msgstr "ব্যক্তিগত ওয়েব পেইজ"
 
 #. aim_userinfo_t
 #. strip_html_tags
@@ -7245,7 +7208,7 @@
 
 # tithi
 msgid "Web Page"
-msgstr "ওয়েব পেজ"
+msgstr "ওয়েব পেইজ"
 
 msgid "Pop-Up Message"
 msgstr "পপ-আপ বার্তা"
@@ -7254,17 +7217,17 @@
 msgid "The following username is associated with %s"
 msgid_plural "The following usernames are associated with %s"
 msgstr[0] "নিম্নবর্ণিত ব্যবহারকারীর-নাম %s এর সাথে সম্পর্কিত"
-msgstr[1] "নিম্নবর্ণিত ব্যবহারকারীর-নামসমূহ  %s এর সাথে সম্পর্কিত"
+msgstr[1] "নিম্নবর্ণিত ব্যবহারকারীর-নাম %s এর সাথে সম্পর্কিত"
 
 # tithi
 #, c-format
 msgid "No results found for email address %s"
-msgstr "%s ই-মেইল ঠিকানার জন্য কোনো ফলাফল খুঁজে পায়নি"
+msgstr "%s ইমেইল ঠিকানার জন্য কোনো ফলাফল খুঁজে পায়নি"
 
 # tithi
 #, c-format
 msgid "You should receive an email asking to confirm %s."
-msgstr "আপনি %s নিশ্চিত করতে একটি ই-মেইল গ্রহণ করবেন।"
+msgstr "আপনি %s নিশ্চিত করতে একটি ইমেইল গ্রহণ করবেন।"
 
 # tithi
 msgid "Account Confirmation Requested"
@@ -7276,13 +7239,13 @@
 "Error 0x%04x: Unable to format username because the requested name differs "
 "from the original."
 msgstr ""
-"ত্রুটি 0x%04x: ব্যবহারকারীর নাম বিন্যাস করতে অক্ষম কারণ অনুরোধকৃত নাম মূল নাম থেকে "
+"ত্রুটি 0x%04x: ব্যবহারকারীর নাম বিন্যাস করতে ব্যর্থ কারণ অনুরোধকৃত নাম মূল নাম থেকে "
 "ভিন্ন।"
 
 # tithi
 #, c-format
 msgid "Error 0x%04x: Unable to format username because it is invalid."
-msgstr "ত্রুটি 0x%04x: ব্যবহারকারীর নাম বিন্যাস করতে অক্ষম কারণ এটি অবৈধ।"
+msgstr "ত্রুটি 0x%04x: ব্যবহারকারীর নাম বিন্যাস করতে ব্যর্থ কারণ এটি অকার্যকর।"
 
 # tithi
 #, c-format
@@ -7290,7 +7253,7 @@
 "Error 0x%04x: Unable to format username because the requested name is too "
 "long."
 msgstr ""
-"ত্রুটি 0x%04x: ব্যবহারকারীর নাম বিন্যাস করতে অক্ষম কারণ অনুরোধকৃত নাম খুব দীর্ঘ।"
+"ত্রুটি 0x%04x: ব্যবহারকারীর নাম বিন্যাস করতে ব্যর্থ কারণ অনুরোধকৃত নাম খুব দীর্ঘ।"
 
 # tithi
 #, c-format
@@ -7298,8 +7261,8 @@
 "Error 0x%04x: Unable to change email address because there is already a "
 "request pending for this username."
 msgstr ""
-"ত্রুটি 0x%04x: ই-মেইল ঠিকানা পরিবর্তন করতে অক্ষম কারণ এই ব্যবহারকারীর নামটির জন্য "
-"ইতোমধ্যে একটি অনুরোধ অমীমাংসিত রয়েছে।"
+"ত্রুটি 0x%04x: ইমেইল ঠিকানা পরিবর্তন করতে ব্যর্থ কারণ এই ব্যবহারকারীর নামটির জন্য "
+"ইতিমধ্যে একটি অনুরোধ অমীমাংসিত রয়েছে।"
 
 # tithi
 #, c-format
@@ -7307,7 +7270,7 @@
 "Error 0x%04x: Unable to change email address because the given address has "
 "too many usernames associated with it."
 msgstr ""
-"ত্রুটি 0x%04x: ই-মেইল ঠিকানা পরিবর্তন করতে অক্ষম কারণ প্রদত্ত ঠিকানার সাথে সম্পর্কিত "
+"ত্রুটি 0x%04x: ইমেইল ঠিকানা পরিবর্তন করতে ব্যর্থ কারণ প্রদত্ত ঠিকানার সাথে সম্পর্কিত "
 "অনেক বেশি ব্যবহারকারী নাম রয়েছে।"
 
 # tithi
@@ -7315,7 +7278,7 @@
 msgid ""
 "Error 0x%04x: Unable to change email address because the given address is "
 "invalid."
-msgstr "ত্রুটি 0x%04x: ই-মেইল ঠিকানা পরিবর্তন করতে অক্ষম কারণ প্রদত্ত ঠিকানা অবৈধ।"
+msgstr "ত্রুটি 0x%04x: ইমেইল ঠিকানা পরিবর্তন করতে ব্যর্থ কারণ প্রদত্ত ঠিকানা অকার্যকর।"
 
 # tithi
 #, c-format
@@ -7329,7 +7292,7 @@
 # tithi
 #, c-format
 msgid "The email address for %s is %s"
-msgstr "%1s এর ই-মেইল ঠিকানা %2s"
+msgstr "%1$s এর ইমেইল ঠিকানা %2$s"
 
 msgid "Account Info"
 msgstr "একাউন্ট তথ্য"
@@ -7349,9 +7312,9 @@
 "completed.  Your profile remains unset; try setting it again when you are "
 "fully connected."
 msgstr ""
-"আপনি সম্ভবত লগইন পদ্ধতি সম্পন্ন হওয়ার পূর্বে আপনার বৃত্তান্ত নির্ধারণ করার অনুরোধ "
+"আপনি সম্ভবত লগইন পদ্ধতি সম্পন্ন হওয়ার পূর্বে আপনার প্রোফাইল নির্ধারণ করার অনুরোধ "
 "করেছেন।  আপনার বৃত্তান্ত অবিন্যাসিত আছে; এটি পুনরায় বিন্যাস করার চেষ্টা করুন যখন "
-"আপনাকে সম্পূর্ণভাবে সংযুক্ত।"
+"আপনি সম্পূর্ণভাবে সংযুক্ত।"
 
 # tithi
 #, c-format
@@ -7362,8 +7325,7 @@
 "The maximum profile length of %d bytes has been exceeded.  It has been "
 "truncated for you."
 msgstr[0] ""
-"%d বাইটের সর্বোচ্চ বৃত্তান্ত দৈর্ঘ্য অতিক্রম করা হয়েছে।  এটা আপনার জন্য হ্রাস করা "
-"হয়েছে।"
+"%d বাইটের সর্বোচ্চ বৃত্তান্ত দৈর্ঘ্য অতিক্রম করা হয়েছে। এটা আপনার জন্য হ্রাস করা হয়েছে।"
 msgstr[1] ""
 "%d গুলো বাইটের সর্বোচ্চ বৃত্তান্ত দৈর্ঘ্য অতিক্রম করা হয়েছে।  এটা আপনার জন্য হ্রাস করা "
 "হয়েছে।"
@@ -7381,58 +7343,55 @@
 "The maximum away message length of %d bytes has been exceeded.  It has been "
 "truncated for you."
 msgstr[0] ""
-"সর্বোচ্চ %d বাইট দৈর্ঘ্যের বার্তা অতিক্রম করা হয়েছে।  আপনার জন্য এটা হ্রাস করা হয়েছে।"
+"বার্তার সর্বোচ্চ দৈর্ঘ্যে %d বাইট অতিক্রম করা হয়েছে। আপনার জন্য এটা ছেঁটে দেয়া হয়েছে।"
 msgstr[1] ""
-"সর্বোচ্চ %d বাইট দৈর্ঘ্যের বার্তা অতিক্রম করা হয়েছে।  আপনার জন্য এটা হ্রাস করা হয়েছে।"
+"বার্তার সর্বোচ্চ দৈর্ঘ্যে %d বাইট অতিক্রম করা হয়েছে। আপনার জন্য এটা ছেঁটে দেয়া হয়েছে।"
 
 msgid "Away message too long."
-msgstr "দূরের বার্তাটি খুব দীর্ঘ।"
-
-# tithi
-#, fuzzy, c-format
+msgstr "অন্যত্র অবস্থার বার্তাটি খুব দীর্ঘ।"
+
+# tithi
+#, c-format
 msgid ""
 "Unable to add the buddy %s because the username is invalid.  Usernames must "
 "be a valid email address, or start with a letter and contain only letters, "
 "numbers and spaces, or contain only numbers."
 msgstr ""
-"%s বন্ধু যোগ করতে পারেনি কারণ ব্যবহারকারীর নাম অবৈধ।  ব্যবহারকারীর অবশ্যই একটি "
-"বৈধ ই-মেইল ঠিকানা থাকতে হবে, বা একটি বর্ণ দ্বারা শুরু হবে এবং শুধুমাত্র বর্ণ, সংখ্যা "
-"এবং স্পেস ধারণ করবে, বা শুধুমাত্র সংখ্যা ধারণ করবে।"
-
-msgid "Unable to Add"
-msgstr "যোগ করতে সমর্থ নয়"
+"বন্ধু %s কে যোগ করা সম্ভব হয়নি কারণ ব্যবহারকারীর নামটি অকার্যকর। ব্যবহারকারী নাম "
+"অবশ্যই একটি কার্যকর ইমেইল ঠিকানা হতে হবে, বা একটি বর্ণ দ্বারা শুরু হবে এবং শুধুমাত্র "
+"বর্ণ, সংখ্যা এবং স্পেস ধারণ করবে, বা শুধুমাত্র সংখ্যা ধারণ করবে।"
 
 msgid "Unable to Retrieve Buddy List"
-msgstr "বন্ধু তালিকা উদ্ধার করতে সমর্থ নয়"
+msgstr "বন্ধু তালিকা উদ্ধার করতে ব্যর্থ"
 
 # tithi
 msgid ""
 "The AIM servers were temporarily unable to send your buddy list.  Your buddy "
 "list is not lost, and will probably become available in a few minutes."
 msgstr ""
-"আপনার বন্ধু তালিকা পাঠাতে AIM সার্ভার সাময়িকভাবে অক্ষম ছিল।  আপনার বন্ধু তালিকা "
-"নষ্ট হয়নি, এবং সম্ভবত কয়েক মিনিটের মধ্যে সহজলভ্য হবে।"
+"আপনার বন্ধু তালিকা পাঠাতে AIM সার্ভার সাময়িকভাবে ব্যর্থ ছিল।  আপনার বন্ধু তালিকা "
+"নষ্ট হয়নি, এবং সম্ভবত কয়েক মিনিটের মধ্যে পাওয়া যাবে।"
 
 # tithi
 msgid "Orphans"
 msgstr "অনাথ"
 
 # tithi
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Unable to add the buddy %s because you have too many buddies in your buddy "
 "list.  Please remove one and try again."
 msgstr ""
-"আপনার বন্ধু তালিকাতে খুব বেশি বন্ধু থাকার কারণে %s বন্ধু যোগ করতে পারে না। অনুগ্রহ "
-"করে একজনকে অপসারণ করুন এবং পুনরায় চেষ্টা করুন।"
+"আপনার বন্ধু তালিকাতে খুব বেশি বন্ধু থাকার কারণে বন্ধু %s কে যোগ করা সম্ভব হয়নি। "
+"অনুগ্রহ করে একজনকে অপসারণ করুন এবং পুনরায় চেষ্টা করুন।"
 
 # tithi
 msgid "(no name)"
 msgstr "(কোনো নাম নেই)"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to add the buddy %s for an unknown reason."
-msgstr "একটি অজানা কারণে %s বন্ধুকে যুক্ত করা যায়নি।"
+msgstr "একটি অজানা কারণে বন্ধু %s কে যুক্ত করা যায়নি।"
 
 #, c-format
 msgid ""
@@ -7444,7 +7403,7 @@
 
 # tithi
 msgid "Authorization Given"
-msgstr "প্রাপ্তাধিকার দেওয়া হয়েছে"
+msgstr "অনুমোদন দেয়া হয়েছে"
 
 # tithi
 #. Granted
@@ -7455,7 +7414,7 @@
 
 # tithi
 msgid "Authorization Granted"
-msgstr "প্রাপ্তাধিকার গ্রহণ করা হয়েছে"
+msgstr "অনুমোদন দেয়া হয়েছে"
 
 # tithi
 #. Denied
@@ -7465,26 +7424,25 @@
 "following reason:\n"
 "%s"
 msgstr ""
-"%1s ব্যবহারকারী নিম্নলিখিত কারণের জন্য আপনার বন্ধু তালিকাতে তাদেরকে যোগ করতে "
-"আপনার অনুরোধ অস্বীকার করেছে: \n"
-"%2s"
+"%1$s ব্যবহারকারী নিম্নলিখিত কারণের জন্য আপনার বন্ধু তালিকাতে তাদেরকে যোগ করতে "
+"আপনার অনুরোধ প্রত্যাখ্যান করেছে: \n"
+"%2$s"
 
 # tithi
 msgid "Authorization Denied"
-msgstr "প্রাপ্তাধিকার বাতিল করেছে"
+msgstr "অনুমোদন প্রত্যাখ্যাত"
 
 # tithi
 msgid "_Exchange:"
-msgstr "বিনিময় করুন: (_E)"
+msgstr "বিনিময় (_E):"
 
 # tithi
 msgid "Your IM Image was not sent. You cannot send IM Images in AIM chats."
-msgstr ""
-"আপনার আইএম চিত্র পাঠানো হয়নি।  আপনি AIM আড্ডাতে আইএম চিত্র পাঠাতে পারেন না।"
+msgstr "আপনার IM চিত্র পাঠানো হয়নি। আপনি AIM আড্ডাতে IM চিত্র পাঠাতে পারেন না।"
 
 # tithi
 msgid "iTunes Music Store Link"
-msgstr "আই-টিউন সঙ্গীত সংরক্ষণ লিংক"
+msgstr "iTunes সঙ্গীত স্টোরের লিংক "
 
 #, c-format
 msgid "Buddy Comment for %s"
@@ -7496,55 +7454,54 @@
 # tithi
 #, c-format
 msgid "You have selected to open a Direct IM connection with %s."
-msgstr "আপনি %s এর সঙ্গে একটি সরাসরি IM সংযোগ খুলতে নির্বাচন করেছেন।"
+msgstr "আপনি %s এর সঙ্গে একটি Direct IM সংযোগ খুলতে যাচ্ছেন।"
 
 msgid ""
 "Because this reveals your IP address, it may be considered a security risk.  "
 "Do you wish to continue?"
 msgstr ""
-"এটি আপনার IP ঠিকানা প্রকাশ করার কারণে, এতে গোপনীয়তার ঝুঁকি থাকতে পারে।  আপনি কি "
-"অব্যাহত রাখতে চান? "
+"যেহেতু এটি আপনার IP ঠিকানা প্রকাশ করে, এতে নিরাপত্তার ঝুঁকি থাকতে পারে। আপনি কি "
+"নিশ্চিত? "
 
 msgid "C_onnect"
-msgstr "সংযোগ দিন (_o)"
+msgstr "সংযোগ (_O)"
 
 msgid "Get AIM Info"
-msgstr "এআইএম তথ্য গ্রহণ করুন"
+msgstr "AIM তথ্য গ্রহণ"
 
 #. We only do this if the user is in our buddy list
 msgid "Edit Buddy Comment"
-msgstr "বন্ধুর মন্তব্য সম্পাদন করুন"
-
+msgstr "বন্ধুর মন্তব্য সম্পাদন"
+
+# mark30
 msgid "Get Status Msg"
-msgstr "অবস্থার বার্তা গ্রহণ করুন"
+msgstr "অবস্থার বার্তা খুঁজুন"
 
 # tithi
 msgid "Direct IM"
-msgstr "সরাসরি IM"
+msgstr "Direct IM"
 
 # tithi
 msgid "Re-request Authorization"
-msgstr "পুনঃ-অনুরোধ প্রাপ্তাধিকার"
+msgstr "অনুমোদনের জন্য পুনরায় অনুরোধ"
 
 # tithi
 msgid "Require authorization"
-msgstr "প্রাপ্তাধিকার প্রয়োজন"
+msgstr "অনুমোদন প্রয়োজন"
 
 # tithi
 msgid "Web aware (enabling this will cause you to receive SPAM!)"
-msgstr "ওয়েব সচেতন (এইটি সক্রিয় করার কারণে আপনি SPAM গ্রহণ করবেন!)"
+msgstr "ওয়েব সচেতন (এটি সক্রিয় করলে আপনি SPAM গ্রহণ করবেন!)"
 
 msgid "ICQ Privacy Options"
-msgstr "ICQ ব্যক্তিগত পছন্দসমূহ"
+msgstr "ICQ গোপনতার অপশন"
 
 msgid "The new formatting is invalid."
-msgstr "নতুন বিন্যাসকরণটি অবৈধ।"
+msgstr "নতুন বিন্যাসটি অকার্যকর।"
 
 # tithi
 msgid "Username formatting can change only capitalization and whitespace."
-msgstr ""
-"ব্যবহারকারীর-নাম বিন্যাসকরণ শুধুমাত্র ঊর্ধ্ববর্ণানুক্রমিক এবং ফাঁকা জায়গা পরিবর্তন করতে "
-"পারে।"
+msgstr "ব্যবহারকারীর নামের শুধুমাত্র অক্ষরের ছাঁদ এবং ফাঁকা জায়গা পরিবর্তন করা যাবে।"
 
 # tithi
 msgid "Change Address To:"
@@ -7552,77 +7509,76 @@
 
 # tithi
 msgid "<i>you are not waiting for authorization</i>"
-msgstr "<i>আপনি প্রাপ্তাধিকারের জন্য অপেক্ষা করছেন না</i>"
+msgstr "<i>আপনি অনুমোদনের জন্য অপেক্ষা করছেন না</i>"
 
 # tithi
 msgid "You are awaiting authorization from the following buddies"
-msgstr "আপনি নিম্নোক্ত বন্ধু থেকে প্রাপ্তাধিকারের জন্য অপেক্ষা করছেন"
+msgstr "আপনি নিম্নোক্ত বন্ধু থেকে অনুমোদনের জন্য অপেক্ষা করছেন"
 
 # tithi
 msgid ""
 "You can re-request authorization from these buddies by right-clicking on "
 "them and selecting \"Re-request Authorization.\""
 msgstr ""
-"আপনি বন্ধু তলিকায় ডান ক্লিক করে এবং‌ \"প্রাপ্তাধিকার পুনরায় অনুরোধ করুন\" নির্বাচন করে "
-"তাদের থেকে প্রাপ্তাধিকার পুনরায় অনুরোধ করতে পারেন।"
+"আপনি বন্ধু তলিকায় ডান ক্লিক করে এবং‌ \"অনুমোদনের জন্য পুনরায় অনুরোধ\" নির্বাচন করে "
+"তাদের থেকে আবার অনুমোদন চাইতে পারেন।"
 
 # tithi
 msgid "Find Buddy by Email"
-msgstr "ই-মেইলের মাধ্যমে বন্ধু খুঁজুন"
+msgstr "ইমেইলের মাধ্যমে বন্ধু খুঁজুন"
 
 # tithi
 msgid "Search for a buddy by email address"
-msgstr "ই-মেইল ঠিকানার মাধ্যমে বন্ধু খুঁজুন"
+msgstr "ইমেইল ঠিকানার মাধ্যমে বন্ধুর অনুসন্ধান করুন"
 
 # tithi
 msgid "Type the email address of the buddy you are searching for."
-msgstr "আপনি যে বন্ধু খুঁজছেন তার ই-মেইল ঠিকানা টাইপ করুন।"
+msgstr "আপনি যে বন্ধুর অনুসন্ধান করছেন তার ইমেইল ঠিকানা টাইপ করুন।"
 
 msgid "_Search"
-msgstr "খুঁজুন (_S)"
+msgstr "অনুসন্ধান (_S)"
 
 msgid "Set User Info (web)..."
-msgstr "ব্যবহারকারী তথ্য নির্ধারণ করুন (ওয়েব)..."
+msgstr "ব্যবহারকারী তথ্য নির্ধারণ (ওয়েব)..."
 
 #. This only happens when connecting with the old-style BUCP login
 msgid "Change Password (web)"
-msgstr "গুপ্তসংকেত পরিবর্তন করুন (ওয়েব)"
+msgstr "পাসওয়ার্ড পরিবর্তন (ওয়েব)"
 
 # tithi
 msgid "Configure IM Forwarding (web)"
-msgstr "IM অগ্রবর্তীকরণ বিন্যাসন করুন (ওয়েব)"
+msgstr "IM ফরওয়ার্ডিং কনফিগারেশন (ওয়েব)"
 
 #. ICQ actions
 msgid "Set Privacy Options..."
-msgstr "ব্যক্তিগত পছন্দসমূহ নির্ধারণ করুন..."
+msgstr "গোপনতার অপশন নির্ধারণ ..."
 
 #. AIM actions
 msgid "Confirm Account"
-msgstr "একাউন্ট নিশ্চিত করুন"
+msgstr "একাউন্ট নিশ্চিতকরণ"
 
 # tithi
 msgid "Display Currently Registered Email Address"
-msgstr "বর্তমানে নিবন্ধণকৃত ই-মেইল ঠিকানা প্রদর্শন করুন"
+msgstr "বর্তমানে নিবন্ধনকৃত ইমেইল ঠিকানা প্রদর্শন"
 
 # tithi
 msgid "Change Currently Registered Email Address..."
-msgstr "বর্তমানে নিবন্ধণকৃত ই-মেইল ঠিকানা পরিবর্তন করুন..."
+msgstr "বর্তমানে নিবন্ধনকৃত ইমেইল ঠিকানা পরিবর্তন..."
 
 # tithi
 msgid "Show Buddies Awaiting Authorization"
-msgstr "বন্ধুদের অপেক্ষমান প্রাপ্তাধিকার প্রদর্শন করুন"
+msgstr "অনুমোদন অপেক্ষমান বন্ধুদের প্রদর্শন"
 
 # tithi
 msgid "Search for Buddy by Email Address..."
-msgstr "ই-মেইল ঠিকানার মাধ্যমে বন্ধুদের খুঁজুন..."
+msgstr "ইমেইল ঠিকানার মাধ্যমে বন্ধু অনুসন্ধান..."
 
 # tithi
 msgid "Search for Buddy by Information"
-msgstr "তথ্য দ্বারা বন্ধুদের খুঁজুন"
-
-#, fuzzy
+msgstr "তথ্য মাধ্যমে বন্ধু অনুসন্ধান "
+
 msgid "Use clientLogin"
-msgstr "ব্যবহারকারী লগইন অবস্থায় নেই"
+msgstr "clientLogin ব্যবহার"
 
 # tithi
 msgid ""
@@ -7630,40 +7586,39 @@
 "file transfers and direct IM (slower,\n"
 "but does not reveal your IP address)"
 msgstr ""
-"ফাইল স্থানান্তর এবং সরাসরি আইএম এর জন্য \n"
-"সবসময় AIM/ICQ প্রক্সি সার্ভার ব্যবহার করুন\n"
-"(অপেক্ষাকৃত ধীর, কিন্তু আপনার আইপি ঠিকানা প্রকাশ করে না)"
+"ফাইল স্থানান্তর এবং সরাসরি IM এর জন্য \n"
+"সবসময় AIM/ICQ প্রক্সি সার্ভার ব্যবহার করা হবে\n"
+"(অপেক্ষাকৃত ধীর, কিন্তু আপনার IP ঠিকানা প্রকাশ করে না)"
 
 # tithi
 msgid "Allow multiple simultaneous logins"
-msgstr "একাধিক যুগপৎ লগইন অনুমোদন করুন"
+msgstr "একসাথে একাধিক লগইন অনুমোদন করা হবে"
 
 # tithi
 #, c-format
 msgid "Asking %s to connect to us at %s:%hu for Direct IM."
 msgstr ""
-"%2s এ আমাদের সাথে সংযোগ করতে %1s কে জিজ্ঞাসা করছে: সরাসরি আইএম এর জন্য %3hu।"
+"%2$s এ আমাদের সাথে সংযোগ করতে %1$s কে অনুরোধ করা হচ্ছে: সরাসরি IM এর জন্য %3$hu।"
 
 #, c-format
 msgid "Attempting to connect to %s:%hu."
-msgstr "%1s এর সাথে সংযোগ স্থাপনের চেষ্টা করছে:%2hu।"
+msgstr "%1$s এর সাথে সংযোগ স্থাপনের চেষ্টা করা হচ্ছে:%2$hu।"
 
 msgid "Attempting to connect via proxy server."
-msgstr "প্রক্সি সার্ভারের মাধ্যমে সংযোগ স্থাপনের চেষ্টা করছে।"
+msgstr "প্রক্সি সার্ভারের মাধ্যমে সংযোগ স্থাপনের চেষ্টা করা হচ্ছে।"
 
 # tithi
 #, c-format
 msgid "%s has just asked to directly connect to %s"
-msgstr "%1s এইমাত্র %2s এর সাথে সরাসরি সংযোগ করতে জিজ্ঞাসা করেছে"
+msgstr "%1$s এইমাত্র %2$s এর সাথে সরাসরি সংযোগ করতে বলেছে"
 
 msgid ""
 "This requires a direct connection between the two computers and is necessary "
 "for IM Images.  Because your IP address will be revealed, this may be "
 "considered a privacy risk."
 msgstr ""
-"এটির জন্য দুটি কম্পিউটারের মধ্যে সরাসরি সংযোগ প্রয়োজন এবং এটা আইএম এর ছবির জন্য "
-"প্রয়োজন।  যেহেতু এটি আপনার আইপি ঠিকানা প্রকাশ করবে, তাই এতে গোপনীয়তার ঝুকি থাকতে "
-"পারে।"
+"এটির জন্য দুটি কম্পিউটারের মধ্যে সরাসরি সংযোগ প্রয়োজন যা কিনা IM এর ছবির জন্য "
+"আবশ্যক। যেহেতু আপনার IP ঠিকানা প্রকাশিত হবে, তাই এতে গোপনীয়তার ঝুঁকি থাকতে পারে।"
 
 # tithi
 msgid "Aquarius"
@@ -7710,7 +7665,7 @@
 msgstr "মকর রাশি"
 
 msgid "Rat"
-msgstr "ইদুর"
+msgstr "ইঁদুর"
 
 # tithi
 msgid "Ox"
@@ -7782,22 +7737,22 @@
 msgstr "টেলিফোন নম্বর"
 
 msgid "Authorize adding"
-msgstr "অনুমোদিত সংযুক্তকরণ"
+msgstr "যোগ করা অনুমোদন করা হবে"
 
 msgid "Cellphone Number"
-msgstr "সেলফোন নম্বর"
+msgstr "মোবাইলফোন নম্বর"
 
 msgid "Personal Introduction"
-msgstr "ব্যক্তিগত ভূমিকা"
+msgstr "ব্যক্তিগত পরিচিতি"
 
 msgid "City/Area"
 msgstr "শহর/এলাকা"
 
 msgid "Publish Mobile"
-msgstr "মোবাইল প্রকাশ করুন"
+msgstr "মোবাইল প্রকাশ"
 
 msgid "Publish Contact"
-msgstr "যোগাযোগ প্রকাশ করুন"
+msgstr "পরিচিতি প্রকাশ"
 
 msgid "College"
 msgstr "কলেজ"
@@ -7807,7 +7762,7 @@
 
 # tithi
 msgid "Zodiac"
-msgstr "জোডিয়াক"
+msgstr "যোডিয়াক"
 
 msgid "Blood"
 msgstr "রক্ত"
@@ -7820,22 +7775,22 @@
 msgstr "মিথ্যা"
 
 msgid "Modify Contact"
-msgstr "যোগাযোগ পরিবর্তন করুন"
+msgstr "পরিচিতি পরিবর্তন"
 
 msgid "Modify Address"
-msgstr "ঠিকানা পরিবর্তন করুন"
+msgstr "ঠিকানা পরিবর্তন"
 
 msgid "Modify Extended Information"
-msgstr "বর্ধিত তথ্য পরিবর্তন করুন"
+msgstr "বর্ধিত তথ্য পরিবর্তন"
 
 msgid "Modify Information"
-msgstr "তথ্য পরিবর্তন করুন"
+msgstr "তথ্য পরিবর্তন"
 
 msgid "Update"
-msgstr "হালনাগাদ করুন"
+msgstr "হালনাগাদ"
 
 msgid "Could not change buddy information."
-msgstr "বন্ধুর তথ্য পরিবর্তন করতে পারে না।"
+msgstr "বন্ধুর তথ্য পরিবর্তন করা সম্ভব হয়নি।"
 
 msgid "Mobile"
 msgstr "মোবাইল"
@@ -7844,30 +7799,26 @@
 msgstr "নোট"
 
 #. callback
-#, fuzzy
 msgid "Buddy Memo"
-msgstr "ঠিকানা পরিবর্তন করুন"
+msgstr "বন্ধুলিপি"
 
 msgid "Change his/her memo as you like"
-msgstr ""
-
-#, fuzzy
+msgstr "তার লিপি ইচ্ছামত পরিবর্তন করুন"
+
 msgid "_Modify"
-msgstr "পরিবর্তন"
-
-#, fuzzy
+msgstr "পরিবর্তন (M)"
+
 msgid "Memo Modify"
-msgstr "পরিবর্তন"
-
-#, fuzzy
+msgstr "লিপি পরিবর্তন"
+
 msgid "Server says:"
-msgstr "সার্ভার ব্যস্ত"
+msgstr "সার্ভার বলছে:"
 
 msgid "Your request was accepted."
-msgstr ""
+msgstr "আপনার অনুরোধটি অনুমোদন করা হয়েছে।"
 
 msgid "Your request was rejected."
-msgstr ""
+msgstr "আপনার অনুরোধটি অনুমোদন করা যায়নি।"
 
 # tithi
 #, c-format
@@ -7875,35 +7826,35 @@
 msgstr "%u এর সত্যতা যাচাই করা প্রয়োজন"
 
 msgid "Add buddy question"
-msgstr "বন্ধুর প্রশ্ন যোগ করুন"
+msgstr "বন্ধুর প্রশ্ন যোগ"
 
 # tithi
 msgid "Enter answer here"
-msgstr "এখানে উত্তর প্রবেশ করান"
+msgstr "এখানে উত্তর লিখুন"
 
 msgid "Send"
-msgstr "প্রেরণ করুন"
+msgstr "প্রেরণ"
 
 msgid "Invalid answer."
-msgstr "অবৈধ উত্তর।"
+msgstr "অকার্যকর উত্তর।"
 
 msgid "Authorization denied message:"
-msgstr "প্রাপ্তাধিকার বার্তা অস্বীকার করেছে:"
+msgstr "অনুমোদন প্রত্যাখ্যান বার্তা:"
 
 # tithi
 msgid "Sorry, you're not my style."
-msgstr "দুঃখিত,আপনি আমার শৈলী নয়।"
+msgstr "দুঃখিত, আপনি আমার ধাঁচের নন।"
 
 #, c-format
 msgid "%u needs authorization"
-msgstr "%u এর প্রাপ্তাধিকার প্রয়োজন"
+msgstr "%u এর অনুমোদন প্রয়োজন"
 
 msgid "Add buddy authorize"
-msgstr "বন্ধুর অনুমোদন যোগ করুন"
+msgstr "বন্ধুর অনুমোদন যোগ"
 
 # tithi
 msgid "Enter request here"
-msgstr "এখানে অনুরোধ প্রবেশ করান"
+msgstr "এখানে অনুরোধ লিখুন"
 
 msgid "Would you be my friend?"
 msgstr "আপনি কি আমার বন্ধু হবেন?"
@@ -7912,21 +7863,21 @@
 msgstr "QQ বন্ধু"
 
 msgid "Add buddy"
-msgstr "বন্ধু যোগ করুন"
+msgstr "বন্ধু যোগ"
 
 msgid "Invalid QQ Number"
-msgstr "অবৈধ QQ নম্বর"
+msgstr "অকার্যকর QQ নম্বর"
 
 msgid "Failed sending authorize"
-msgstr "অনুমোদন পাঠাতে ব্যর্থ হয়েছে"
+msgstr "অনুমোদন পাঠাতে ব্যর্থ"
 
 #, c-format
 msgid "Failed removing buddy %u"
-msgstr "%u বন্ধুকে অপসারণ করতে ব্যর্থ হয়েছে"
+msgstr "%u বন্ধুকে অপসারণ করতে ব্যর্থ"
 
 #, c-format
 msgid "Failed removing me from %d's buddy list"
-msgstr "%d এর বন্ধু তালিকা থেকে আমাকে অপসারণ করতে ব্যর্থ হয়েছে"
+msgstr "%d এর বন্ধু তালিকা থেকে আমাকে অপসারণ করতে ব্যর্থ"
 
 msgid "No reason given"
 msgstr "কোনো কারন দর্শানো হয়নি"
@@ -7934,14 +7885,14 @@
 #. only need to get value
 #, c-format
 msgid "You have been added by %s"
-msgstr "আপনি %s দ্বারা সংযুক্ত হয়েছেন"
+msgstr "আপনাকে %s যোগ করেছেন"
 
 msgid "Would you like to add him?"
 msgstr "আপনি কি তাকে যোগ করতে চান?"
 
 #, c-format
 msgid "Rejected by %s"
-msgstr "%s দ্বারা বাতিল করা হয়েছে"
+msgstr "%s দ্বারা প্রত্যাখ্যাত"
 
 #, c-format
 msgid "Message: %s"
@@ -7949,24 +7900,24 @@
 
 # tithi
 msgid "ID: "
-msgstr "আইডি:"
+msgstr "ID: "
 
 msgid "Group ID"
-msgstr "দলের আইডি"
+msgstr "দলের ID"
 
 # tithi
 msgid "QQ Qun"
 msgstr "QQ Qun"
 
 msgid "Please enter Qun number"
-msgstr "অনুগ্রহ করে Qun নম্বর প্রবেশ করান"
+msgstr "অনুগ্রহ করে Qun নম্বর দিন"
 
 # tithi
 msgid "You can only search for permanent Qun\n"
-msgstr "আপনি শুধুমাত্র স্থায়ী Qun খুঁজতে পারেন\n"
+msgstr "আপনি শুধুমাত্র স্থায়ী Qun অনুসন্ধান করতে পারেন\n"
 
 msgid "(Invalid UTF-8 string)"
-msgstr "(অবৈধ UTF-8 স্ট্রিং)"
+msgstr "(অকার্যকর UTF-8 স্ট্রিং)"
 
 # tithi
 msgid "Not member"
@@ -7977,10 +7928,10 @@
 msgstr "সদস্য"
 
 msgid "Requesting"
-msgstr "অনুরোধ করছে"
+msgstr "অনুরোধ করা হচ্ছে"
 
 msgid "Admin"
-msgstr "প্রশাসন"
+msgstr "প্রশাসক"
 
 msgid "Notice"
 msgstr "বিজ্ঞপ্তি"
@@ -7990,7 +7941,7 @@
 
 # tithi
 msgid "Creator"
-msgstr "তৈরীকারক"
+msgstr "নির্মাতা"
 
 msgid "About me"
 msgstr "আমার সম্পর্কে"
@@ -8000,10 +7951,10 @@
 
 # tithi
 msgid "The Qun does not allow others to join"
-msgstr "Qun অন্যদের যুক্ত করতে অনুমতি দেয় না"
+msgstr "Qun অন্যদের যুক্ত হতে অনুমতি দেয় না"
 
 msgid "Join QQ Qun"
-msgstr "QQ Qun যুক্ত করুন"
+msgstr "QQ Qun এ যোগ দিন"
 
 # tithi
 msgid "Input request here"
@@ -8012,15 +7963,15 @@
 # tithi
 #, c-format
 msgid "Successfully joined Qun %s (%u)"
-msgstr "%s (%u) Qun সফলভাবে যুক্ত করেছে"
+msgstr "%s (%u) Qun এ সফলভাবে যুক্ত হয়েছে"
 
 msgid "Successfully joined Qun"
-msgstr "Qun সফলভাবে যুক্ত করেছে"
+msgstr "Qun এ সফলভাবে যুক্ত হয়েছে"
 
 # tithi
 #, c-format
 msgid "Qun %u denied from joining"
-msgstr "%u Qun যুক্তকরণ বাতিল করেছে"
+msgstr "%u Qunএ যুক্তকরণ প্রত্যাখ্যন করা হয়েছে"
 
 msgid "QQ Qun Operation"
 msgstr "QQ Qun অপারেশন"
@@ -8030,22 +7981,22 @@
 
 # tithi
 msgid "Join Qun, Unknown Reply"
-msgstr "Qun যুক্ত করুন, অজানা উত্তর"
+msgstr "Qun এ যোগদান, অজানা উত্তর"
 
 msgid "Quit Qun"
-msgstr "Qun ত্যাগ করুন"
+msgstr "Qun প্রস্থান"
 
 # tithi
 msgid ""
 "Note, if you are the creator, \n"
 "this operation will eventually remove this Qun."
 msgstr ""
-"নোট, আপনি যদি প্রস্তুতকারক হোন, \n"
-"এই অপারেশনটি সবশেষে এই Qunটি অপসারণ করবে।"
+"নোট, আপনি যদি এটি তৈরী করে থাকেন, \n"
+"এই অপারেশনটি অবশেষে এই Qunটি অপসারণ করবে।"
 
 # tithi
 msgid "Sorry, you are not our style"
-msgstr "দুঃখিত,আপনি আমাদের শৈলী নন"
+msgstr "দুঃখিত,আপনি আমাদের ধাঁচের  নন"
 
 msgid "Successfully changed Qun members"
 msgstr "Qun সদস্যদের সফলভাবে পরিবর্তন করা হয়েছে"
@@ -8055,39 +8006,39 @@
 
 # tithi
 msgid "You have successfully created a Qun"
-msgstr "আপনি Qun সফলভাবে তৈরি করেছেন"
+msgstr "আপনি সফলভাবে একটি Qun তৈরি করেছেন"
 
 msgid "Would you like to set up detailed information now?"
-msgstr "আপনি কি এখন বিস্তারিত তথ্য সংস্থাপন করতে চান?"
+msgstr "আপনি কি এখন বিস্তারিত তথ্য দিতে চান?"
 
 msgid "Setup"
-msgstr "সংস্থাপন করুন"
+msgstr "সেটআপ"
 
 #, c-format
 msgid "%u requested to join Qun %u for %s"
-msgstr "%1$u %3$s এর জন্য %2$u Qun যোগ করতে অনুরোধ করছে"
+msgstr "%1$u %3$s এর জন্য %2$u Qunএ যুক্ত হতে অনুরোধ করছে"
 
 #, c-format
 msgid "%u request to join Qun %u"
-msgstr "%1u %2u Qun যোগ করতে অনুরোধ করছে"
+msgstr "%1u %2u Qunএ যুক্ত হতে অনুরোধ করছে"
 
 #, c-format
 msgid "Failed to join Qun %u, operated by admin %u"
-msgstr "%u প্রশাসন দ্বারা পরিচালিত, Qun %u যোগ করতে ব্যর্থ হয়েছে"
+msgstr "%u প্রশাসক দ্বারা পরিচালিত, Qun %u যুক্ত হতে ব্যর্থ"
 
 # tithi
 #, c-format
 msgid "<b>Joining Qun %u is approved by admin %u for %s</b>"
-msgstr "<b>%3$s এর জন্য %2$u প্রশাসন দ্বারা %1$u Qun যুক্ত করার অনুমোদন দিয়েছে</b>"
+msgstr "<b>%3$s এর জন্য %2$u প্রশাসক %1$u Qunএ যুক্ত হওয়ার অনুমোদন দিয়েছে</b>"
 
 #, c-format
 msgid "<b>Removed buddy %u.</b>"
-msgstr "<b>%u বন্ধু অপসারণ করা হয়েছে।</b>"
+msgstr "<b>%u বন্ধুকে অপসারণ করা হয়েছে।</b>"
 
 # tithi
 #, c-format
 msgid "<b>New buddy %u joined.</b>"
-msgstr "<b>নতুন %u বন্ধু যোগদান করেছে।</b>"
+msgstr "<b>নতুন বন্ধু %u যোগদান করেছে।</b>"
 
 #, c-format
 msgid "Unknown-%d"
@@ -8125,23 +8076,23 @@
 msgstr "Ver"
 
 msgid "Invalid name"
-msgstr "অবৈধ নাম"
+msgstr "অকার্যকর নাম"
 
 msgid "Select icon..."
-msgstr "আইকন নির্বাচন করুন..."
+msgstr "আইকন নির্বাচন..."
 
 #, c-format
 msgid "<b>Login time</b>: %d-%d-%d, %d:%d:%d<br>\n"
-msgstr "<b>লগইন সময়</b>: %1d-%2d-%3d, %4d:%5d:%6d<br>\n"
+msgstr "<b>লগইন সময়</b>: %1$d-%2$d-%3$d, %4$d:%5$d:%6$d<br>\n"
 
 #, c-format
 msgid "<b>Total Online Buddies</b>: %d<br>\n"
-msgstr "<b>সর্বমোট অনলাইন বন্ধু</b>: %d<br>\n"
+msgstr "<b>মোট অনলাইন বন্ধু</b>: %d<br>\n"
 
 # fix me tithi
 #, c-format
 msgid "<b>Last Refresh</b>: %d-%d-%d, %d:%d:%d<br>\n"
-msgstr "<b>সর্বশেষ রিফ্রেশ</b>: %1d-%2d-%3d, %4d:%5d:%6d<br>\n"
+msgstr "<b>সর্বশেষ রিফ্রেশ</b>: %1$d-%2$d-%3$d, %4$d:%5$d:%6$d<br>\n"
 
 #, c-format
 msgid "<b>Server</b>: %s<br>\n"
@@ -8157,19 +8108,19 @@
 
 #, c-format
 msgid "<b>My Internet IP</b>: %s:%d<br>\n"
-msgstr "<b>আমার ইন্টারনেট IP</b>: %1s:%2d<br>\n"
+msgstr "<b>আমার ইন্টারনেট IP</b>: %1$s:%2$d<br>\n"
 
 #, c-format
 msgid "<b>Sent</b>: %lu<br>\n"
-msgstr "<b>পাঠানো হয়েছে</b>: %lu<br>\n"
+msgstr "<b>প্রেরিত</b>: %lu<br>\n"
 
 #, c-format
 msgid "<b>Resend</b>: %lu<br>\n"
-msgstr "<b>পুনরায় পাঠানো হয়েছে</b>: %lu<br>\n"
+msgstr "<b>পুনরায় প্রেরণ</b>: %lu<br>\n"
 
 #, c-format
 msgid "<b>Lost</b>: %lu<br>\n"
-msgstr "<b>হারিয়ে গেছে</b>: %lu<br>\n"
+msgstr "<b>হারিয়েছে</b>: %lu<br>\n"
 
 #, c-format
 msgid "<b>Received</b>: %lu<br>\n"
@@ -8177,44 +8128,43 @@
 
 #, c-format
 msgid "<b>Received Duplicate</b>: %lu<br>\n"
-msgstr "<b>অনুরুপ গৃহীত হয়েছে</b>: %lu<br>\n"
+msgstr "<b>অবিকল গৃহীত</b>: %lu<br>\n"
 
 #, c-format
 msgid "<b>Time</b>: %d-%d-%d, %d:%d:%d<br>\n"
-msgstr "<b>সময়</b>: %1d-%2d-%3d, %4d:%5d:%6d<br>\n"
+msgstr "<b>সময়</b>: %1$d-%2$d-%3$d, %4$d:%5$d:%6$d<br>\n"
 
 #, c-format
 msgid "<b>IP</b>: %s<br>\n"
-msgstr "<b>আইপি</b>: %s<br>\n"
+msgstr "<b>IP</b>: %s<br>\n"
 
 msgid "Login Information"
 msgstr "লগইন তথ্য"
 
 # tithi
 msgid "<p><b>Original Author</b>:<br>\n"
-msgstr "<p><b> মূল লেখক</b>:<br>\n"
+msgstr "<p><b>মূল লেখক</b>:<br>\n"
 
 # tithi
 msgid "<p><b>Code Contributors</b>:<br>\n"
-msgstr "<p><b> কোড অংশগ্রহণকারীগণ</b>:<br>\n"
+msgstr "<p><b>কোডিং-এ অংশগ্রহণকারীগণ</b>:<br>\n"
 
 msgid "<p><b>Lovely Patch Writers</b>:<br>\n"
 msgstr "<p><b>প্রিয় প্যাচ লেখকগণ </b>:<br>\n"
 
 msgid "<p><b>Acknowledgement</b>:<br>\n"
-msgstr "<p><b>প্রাপ্তিস্বীকার</b>:<br>\n"
-
-# tithi
-#, fuzzy
+msgstr "<p><b>কৃতজ্ঞতা</b>:<br>\n"
+
+# tithi
 msgid "<p><b>Scrupulous Testers</b>:<br>\n"
-msgstr "<p><b> মূল লেখক</b>:<br>\n"
+msgstr "<p><b>পারদর্শী পরীক্ষকগন</b>:<br>\n"
 
 msgid "and more, please let me know... thank you!))"
-msgstr ""
+msgstr "এবং আরও, অনুগ্রহ করে আমাকে জানান... ধন্যবাদ!))"
 
 # fix me tithi
 msgid "<p><i>And, all the boys in the backroom...</i><br>\n"
-msgstr "<p><i>এবং, সমস্ত ছেলে পিছন-কামরায়...</i><br>\n"
+msgstr "<p><i>এবং, সমস্ত পেছনের কামরার ছেলেরা...</i><br>\n"
 
 # tithi
 msgid "<i>Feel free to join us!</i> :)"
@@ -8222,27 +8172,26 @@
 
 #, c-format
 msgid "About OpenQ %s"
-msgstr "%s ওপেনQ সম্পর্কে"
+msgstr "%s OpenQ সম্পর্কে"
 
 msgid "Change Icon"
-msgstr "আইকন পরিবর্তন করুন"
+msgstr "আইকন পরিবর্তন"
 
 msgid "Change Password"
-msgstr "গুপ্তসংকেত পরিবর্তন করুন"
+msgstr "পাসওয়ার্ড পরিবর্তন"
 
 msgid "Account Information"
 msgstr "একাউন্ট তথ্য"
 
 # tithi
 msgid "Update all QQ Quns"
-msgstr "সব QQ Quns হালনাগাদ করুন"
+msgstr "সব QQ Quns হালনাগাদ"
 
 msgid "About OpenQ"
-msgstr "ওপেনQ সম্বন্ধে"
-
-#, fuzzy
+msgstr "OpenQ সম্পর্কে"
+
 msgid "Modify Buddy Memo"
-msgstr "ঠিকানা পরিবর্তন করুন"
+msgstr "বন্ধুলিপি পরিবর্তন"
 
 #. *< type
 #. *< ui_requirement
@@ -8255,50 +8204,49 @@
 #. *  summary
 #. *  description
 msgid "QQ Protocol Plugin"
-msgstr "QQ প্রটোকল প্লাগইন"
+msgstr "QQ প্রোটোকল প্লাগইন"
 
 msgid "Auto"
 msgstr "স্বয়ংক্রিয়"
 
 msgid "Select Server"
-msgstr "সার্ভার নির্বাচন করুন"
+msgstr "সার্ভার নির্বাচন"
 
 # tithi
 msgid "QQ2005"
-msgstr "QQ২০০৫"
+msgstr "QQ2005"
 
 # tithi
 msgid "QQ2007"
-msgstr "QQ২০০৭"
+msgstr "QQ2007"
 
 # tithi
 msgid "QQ2008"
-msgstr "QQ২০০৮"
+msgstr "QQ2008"
 
 msgid "Connect by TCP"
-msgstr "TCP দ্বারা সংযোগ করুন"
+msgstr "TCP দ্বারা সংযোগ করা হবে"
 
 msgid "Show server notice"
-msgstr "সার্ভারের নোটিশ প্রদর্শন করুন"
+msgstr "সার্ভারের নোটিশ প্রদর্শন করা হবে"
 
 msgid "Show server news"
-msgstr "সার্ভারের খবর প্রদর্শন করুন"
+msgstr "সার্ভারের খবর প্রদর্শন করা হবে"
 
 msgid "Show chat room when msg comes"
-msgstr ""
+msgstr "বার্তা আসলে আড্ডার আসর প্রদর্শিত হবে "
 
 # fix me tithi
 msgid "Keep alive interval (seconds)"
-msgstr "বিরতি সক্রিয় রাখুন (সেকেন্ড)"
+msgstr "সক্রিয় রাখার সময়ের ব্যবধান (সেকেন্ড)"
 
 # tithi
 msgid "Update interval (seconds)"
-msgstr "বিরতি হালনাগাদ করুন (সেকেন্ড)"
+msgstr "হালনাগাদের সময়ের ব্যবধান (সেকেন্ড)"
 
 # fix me tithi
-#, fuzzy
 msgid "Unable to decrypt server reply"
-msgstr "সার্ভার জবাব অসঙ্কেতায়ন করে না"
+msgstr "সার্ভারের উত্তর ডিক্রিপ্ট করা যাচ্ছে না"
 
 # tithi
 #, c-format
@@ -8307,12 +8255,12 @@
 
 #, c-format
 msgid "Invalid token len, %d"
-msgstr "অবৈধ টোকেন দৈর্ঘ্য, %d"
+msgstr "অকার্যকর টোকেন দৈর্ঘ্য, %d"
 
 # Fix me tithi
 #. extend redirect used in QQ2006
 msgid "Redirect_EX is not currently supported"
-msgstr "পুনঃনির্দেশিতEX বর্তমানে সমর্থিত নয় (_E)"
+msgstr "RedirectEX বর্তমানে সমর্থিত নয় (_E)"
 
 #. need activation
 #. need activation
@@ -8323,38 +8271,38 @@
 # tithi
 #, c-format
 msgid "Unknown reply code when logging in (0x%02X)"
-msgstr "(0x%02X) এ লগইন করার সময় অজানা উত্তর কোড"
+msgstr "লগইন করার সময় অজানা উত্তর কোড (0x%02X)"
 
 # tithi
 msgid "Requesting captcha"
-msgstr "captcha অনুরোধ করছে"
+msgstr "ক্যাপচা অনুরোধ করা হচ্ছে"
 
 # tithi
 msgid "Checking captcha"
-msgstr "captcha পরীক্ষা করছে"
+msgstr "ক্যাপচা পরীক্ষা করা হচ্ছে"
 
 # tithi
 msgid "Failed captcha verification"
-msgstr "captcha যাচাইকরণ ব্যর্থ হয়েছে"
+msgstr "ক্যাপচা যাচাইকরণ ব্যর্থ হয়েছে"
 
 # fix me tithi
 msgid "Captcha Image"
-msgstr "Captcha চিত্র"
+msgstr "ক্যাপচা চিত্র"
 
 msgid "Enter code"
-msgstr "কোড প্রবেশ করান"
+msgstr "কোড দিন"
 
 # tithi
 msgid "QQ Captcha Verification"
-msgstr "QQ Captcha যাচাইকরণ"
+msgstr "QQ ক্যাপচা যাচাইকরণ"
 
 msgid "Enter the text from the image"
-msgstr "চিত্র হতে পাঠ প্রবেশ করান"
+msgstr "চিত্রে যে টেক্সটটি আছে তা লিখুন"
 
 # tithi
 #, c-format
 msgid "Unknown reply when checking password (0x%02X)"
-msgstr "গুপ্তসঙ্কেত পরীক্ষণ করার সময় অজানা উত্তর (0x%02X)"
+msgstr "পাসওয়ার্ড পরীক্ষা করার সময় অজানা উত্তর (0x%02X)"
 
 # tithi
 #, c-format
@@ -8362,28 +8310,27 @@
 "Unknown reply code when logging in (0x%02X):\n"
 "%s"
 msgstr ""
-"(0x%02X) এ লগইন করার সময় অজানা উত্তর কোড:\n"
+"লগইন করার সময় অজানা উত্তর কোড (0x%02X):\n"
 "%s"
 
 msgid "Socket error"
 msgstr "সকেট ত্রুটি"
 
 msgid "Getting server"
-msgstr "সার্ভার পাচ্ছে"
+msgstr "সার্ভার খোঁজা হচ্ছে"
 
 msgid "Requesting token"
-msgstr "টোকেন অনুরোধ করছে"
-
-#, fuzzy
+msgstr "টোকেন অনুরোধ করা হচ্ছে"
+
 msgid "Unable to resolve hostname"
-msgstr "সার্ভারের সাথে সংযোগ স্থাপনে অসমর্থ।"
+msgstr "হোস্টের নাম নিরূপণ করতে ব্যর্থ"
 
 msgid "Invalid server or port"
-msgstr "অবৈধ সার্ভার বা পোর্ট"
+msgstr "অকার্যকর সার্ভার বা পোর্ট"
 
 # tithi
 msgid "Connecting to server"
-msgstr "সার্ভারে সংযোজিত হচ্ছে"
+msgstr "সার্ভারে সংযুক্ত করা হচ্ছে"
 
 msgid "QQ Error"
 msgstr "QQ ত্রুটি"
@@ -8396,13 +8343,13 @@
 "%s"
 msgstr ""
 "সার্ভারের খবর:\n"
-"%1s\n"
-"%2s\n"
-"%3s"
+"%1$s\n"
+"%2$s\n"
+"%3$s"
 
 #, c-format
 msgid "%s:%s"
-msgstr "%1s:%2s"
+msgstr "%1$s:%2$s"
 
 #, c-format
 msgid "From %s:"
@@ -8413,12 +8360,12 @@
 "Server notice From %s: \n"
 "%s"
 msgstr ""
-"%1s থেকে সার্ভার সংক্রান্ত বিজ্ঞপ্তি:\n"
-"%2s"
+"%1$s থেকে সার্ভার সংক্রান্ত বিজ্ঞপ্তি:\n"
+"%2$s"
 
 # tithi
 msgid "Unknown SERVER CMD"
-msgstr "অজানা সার্ভার CMD"
+msgstr "অজানা SERVER CMD"
 
 # tithi
 #, c-format
@@ -8426,34 +8373,33 @@
 "Error reply of %s(0x%02X)\n"
 "Room %u, reply 0x%02X"
 msgstr ""
-"%1s(0x%02X) এর ত্রুটিপূর্ণ উত্তর\n"
-"রুম %2u, উত্তর 0x%02X"
+"%1$s এর ত্রুটিপূর্ণ উত্তর (0x%2$02X)\n"
+"আসর %3$u, উত্তর 0x%4$02X"
 
 msgid "QQ Qun Command"
-msgstr "QQ Qun নির্দেশ"
-
-# tithi
-#, fuzzy
+msgstr "QQ Qun কমান্ড"
+
+# tithi
 msgid "Unable to decrypt login reply"
-msgstr "লগইন উত্তর অসঙ্কেতায়ন করতে পারে না"
+msgstr "লগইন উত্তর ডিক্রিপ্ট করা সম্ভব হয়নি"
 
 # fix me tithi
 msgid "Unknown LOGIN CMD"
-msgstr "অজানা লগইন CMD"
+msgstr "অজানা LOGIN CMD"
 
 msgid "Unknown CLIENT CMD"
-msgstr "অজানা ক্লায়েন্ট CMD"
+msgstr "অজানা CLIENT CMD"
 
 #, c-format
 msgid "%d has declined the file %s"
-msgstr "%1d %2s ফাইলটি প্রত্যাখ্যান করেছে"
+msgstr "%1$d %2$s ফাইলটি প্রত্যাখ্যান করেছে"
 
 msgid "File Send"
-msgstr "ফাইল প্রেরণ করা হয়েছে"
+msgstr "ফাইল প্রেরণ"
 
 #, c-format
 msgid "%d canceled the transfer of %s"
-msgstr "%1d %2s-এর স্থানান্তর বাতিল করেছেন"
+msgstr "%1$d %2$s-এর স্থানান্তর বাতিল করেছে"
 
 #, c-format
 msgid "<b>Group Title:</b> %s<br>"
@@ -8461,7 +8407,7 @@
 
 #, c-format
 msgid "<b>Notes Group ID:</b> %s<br>"
-msgstr "<b>নোটের দল আইডি:</b> %s<br>"
+msgstr "<b>নোট দলের ID:</b> %s<br>"
 
 # tithi
 #, c-format
@@ -8470,67 +8416,67 @@
 
 # tithi
 msgid "Notes Address Book Information"
-msgstr "নোটের ঠিকানা বইয়ের তথ্য"
+msgstr "Notes Address Book তথ্য"
 
 # tithi
 msgid "Invite Group to Conference..."
-msgstr "অধিবেশনে গ্রুপকে আমন্ত্রণ জানান..."
+msgstr "অধিবেশনে দলকে আমন্ত্রণ..."
 
 msgid "Get Notes Address Book Info"
-msgstr "নোটের ঠিকানা বইয়ের তথ্য গ্রহণ করুন"
+msgstr "Notes Address Book তথ্য গ্রহণ"
 
 # tithi
 msgid "Sending Handshake"
-msgstr "হ্যান্ডসেক পাঠাচ্ছে"
+msgstr "হ্যান্ডসেক পাঠানো হচ্ছে"
 
 msgid "Waiting for Handshake Acknowledgement"
-msgstr "হ্যান্ডশেকের সাড়া পাওয়ার জন্য অপেক্ষা করছে"
+msgstr "হ্যান্ডশেকের প্রাপ্তিস্বীকারের অপেক্ষা করা হচ্ছে"
 
 # tithi
 msgid "Handshake Acknowledged, Sending Login"
-msgstr "হ্যান্ডসেক সাড়া দিয়েছে, লগইন পাঠাচ্ছে"
+msgstr "হ্যান্ডশেকের প্রাপ্তিস্বীকার করা হয়েছে, লগইন পাঠানো হচ্ছে"
 
 # tithi
 msgid "Waiting for Login Acknowledgement"
-msgstr "লগইন সাড়ার জন্য অপেক্ষা করছে"
+msgstr "লগইন প্রাপ্তিস্বীকারের জন্য অপেক্ষা করা হচ্ছে"
 
 # tithi
 msgid "Login Redirected"
-msgstr "লগইন পুনঃ নির্দেশিত"
+msgstr "লগইন রিডিরেক্ট করা হয়েছে"
 
 # tithi
 msgid "Forcing Login"
-msgstr "লগইন বাধ্য করছে"
+msgstr "লগইন করতে বাধ্য করা হচ্ছে"
 
 # tithi
 msgid "Login Acknowledged"
-msgstr "লগইন সাড়া দিয়েছে"
+msgstr "লগইনের প্রাপ্তিস্বীকার করা হয়েছে"
 
 # tithi
 msgid "Starting Services"
-msgstr "সেবা শুরু করছে"
+msgstr "সেবা শুরু করা হচ্ছে"
 
 # tithi
 #, c-format
 msgid ""
 "A Sametime administrator has issued the following announcement on server %s"
-msgstr "একটি এককালীন প্রশাসক %s সার্ভারে নিম্নলিখিত ঘোষণা প্রচার করেছে"
+msgstr "একটি Sametime প্রশাসক %s সার্ভারে নিম্নলিখিত ঘোষণা প্রচার করেছে"
 
 # tithi
 msgid "Sametime Administrator Announcement"
-msgstr "এককালীন প্রশাসকের ঘোষণা"
+msgstr "Sametime প্রশাসকের ঘোষণা"
 
 # tithi
 #, c-format
 msgid "Announcement from %s"
-msgstr "%s হতে ঘোষণা"
+msgstr "%s থেকে ঘোষণা"
 
 # tithi
 msgid "Conference Closed"
 msgstr "অধিবেশন বন্ধ"
 
 msgid "Unable to send message: "
-msgstr "বার্তা পাঠাতে অসমর্থ:"
+msgstr "বার্তা পাঠাতে ব্যর্থ:"
 
 msgid "Place Closed"
 msgstr "স্থান বন্ধ"
@@ -8541,25 +8487,25 @@
 
 # tithi
 msgid "Speakers"
-msgstr "স্পিকারসমূহ"
+msgstr "স্পিকার"
 
 # tithi
 msgid "Video Camera"
 msgstr "ভিডিও ক্যামেরা"
 
 msgid "File Transfer"
-msgstr "ফাইল স্থানান্তর করুন"
+msgstr "ফাইল স্থানান্তর"
 
 msgid "Supports"
-msgstr "সমর্থনসমূহ"
+msgstr "সমর্থন"
 
 # tithi
 msgid "External User"
-msgstr "বাহ্যিক ব্যবহারকারী"
+msgstr "বহিরাগত ব্যবহারকারী"
 
 # tithi
 msgid "Create conference with user"
-msgstr "ব্যবহারকারীর সাথে অধিবেশন তৈরি করুন"
+msgstr "ব্যবহারকারীর সাথে অধিবেশন তৈরি"
 
 # tithi
 #, c-format
@@ -8567,27 +8513,25 @@
 "Please enter a topic for the new conference, and an invitation message to be "
 "sent to %s"
 msgstr ""
-"অনুগ্রহ করে নতুন অধিবেশনের জন্য একটি বিষয় প্রবেশ করান, এবং %s এ একটি আমন্ত্রণ বার্তা "
-"পাঠাতে হবে"
+"অনুগ্রহ করে নতুন অধিবেশনের বিষয় এবং %s কে পাঠানোর জন্য একটি আমন্ত্রণ বার্তা দিন "
 
 msgid "New Conference"
 msgstr "নতুন অধিবেশন"
 
 # tithi
 msgid "Create"
-msgstr "তৈরি করুন "
-
-# tithi
+msgstr "তৈরি"
+
 msgid "Available Conferences"
-msgstr "সহজলভ্য অধিবেশনসমূহ"
+msgstr "বিদ্যমান অধিবেশন"
 
 # tithi
 msgid "Create New Conference..."
-msgstr "নতুন অধিবেশন তৈরি করুন..."
+msgstr "নতুন অধিবেশন তৈরি..."
 
 # tithi
 msgid "Invite user to a conference"
-msgstr "ব্যবহারকারীকে অধিবেশনে আমন্ত্রন জানান"
+msgstr "ব্যবহারকারীকে অধিবেশনে আমন্ত্রন"
 
 # tithi
 #, c-format
@@ -8596,28 +8540,28 @@
 "\"Create New Conference\" if you'd like to create a new conference to invite "
 "this user to."
 msgstr ""
-"%s ব্যবহারকারীকে একটি আমন্ত্রন পাঠাতে নিচের তালিকা থেকে একটি অধিবেশন নির্বাচন "
-"করুন। আপনি যদি এই ব্যবহারকারীকে আমন্ত্রণ জানাতে একটি নতুন অধিবেশন তৈরি করতে চান "
-"তবে \"নতুন অধিবেশন তৈরি করুন\" নির্বাচন করুন।"
+"%s ব্যবহারকারীকে আমন্ত্রন পাঠাতে নিচের তালিকা থেকে একটি অধিবেশন নির্বাচন করুন। "
+"আপনি যদি এই ব্যবহারকারীকে একটি নতুন অধিবেশনে আমন্ত্রণ জানাতে চান তবে \"নতুন "
+"অধিবেশন তৈরি\" নির্বাচন করুন।"
 
 # tithi
 msgid "Invite to Conference"
-msgstr "অধিবেশনে আমন্ত্রন জানান"
+msgstr "অধিবেশনে আমন্ত্রন"
 
 # tithi
 msgid "Invite to Conference..."
-msgstr "অধিবেশনে আমন্ত্রন জানান..."
+msgstr "অধিবেশনে আমন্ত্রন..."
 
 # tithi
 msgid "Send TEST Announcement"
-msgstr "পরীক্ষণ ঘোষণা পাঠান"
+msgstr "পরীক্ষমূলক ঘোষণা প্রেরণ"
 
 msgid "Topic:"
 msgstr "বিষয়:"
 
 # tithi
 msgid "No Sametime Community Server specified"
-msgstr "কোনো এককালীন সম্প্রদায় সার্ভার উল্লেখ করা হয়নি"
+msgstr "কোনো Sametime Community সার্ভার উল্লেখ করা হয়নি"
 
 # tithi
 #, c-format
@@ -8625,19 +8569,19 @@
 "No host or IP address has been configured for the Meanwhile account %s. "
 "Please enter one below to continue logging in."
 msgstr ""
-"ইতোমধ্যে %s একাউন্টের জন্য কোনো হোস্ট বা আইপি ঠিকানা বিন্যাস করা হয়নি। অনুগ্রহ করে "
-"লগইন অব্যাহত রাখতে নিচে একটি প্রবেশ করান।"
+"Meanwhile একাউন্ট %sএর জন্য কোনো হোস্ট বা আইপি ঠিকানা কনফিগার করা হয়নি। অনুগ্রহ "
+"করে লগইন অব্যাহত রাখতে নিচে এই তথ্য দিন।"
 
 # tithi
 msgid "Meanwhile Connection Setup"
-msgstr "ইতোমধ্যে সংযোগ সংস্থাপন করুন"
+msgstr "Meanwhile সংযোগ সেটআপ"
 
 # tithi
 msgid "No Sametime Community Server Specified"
-msgstr "কোনো এককালীন সম্প্রদায় সার্ভার উল্লেখিত নয়"
+msgstr "কোনো Sametime Community সার্ভার উল্লেখিত নয়"
 
 msgid "Connect"
-msgstr "সংযোগ দিন"
+msgstr "সংযোগ স্থাপন"
 
 # tithi
 #, c-format
@@ -8645,18 +8589,18 @@
 msgstr "অজানা (0x%04x)<br>"
 
 msgid "Last Known Client"
-msgstr "সর্বশেষ পরিচিত গ্রাহক"
+msgstr "সর্বশেষ জানা ক্লায়েন্ট"
 
 msgid "User Name"
 msgstr "ব্যবহারকারীর নাম"
 
 # tithi
 msgid "Sametime ID"
-msgstr "এককালীন আইডি"
+msgstr "Sametime ID"
 
 # tithi
 msgid "An ambiguous user ID was entered"
-msgstr "একটি অনিশ্চিত ব্যবহারকারী আইডি প্রবেশ করা হয়েছিল"
+msgstr "একটি দুর্বোদ্ধ্য ব্যবহারকারী ID প্রবেশ করা হয়েছিল"
 
 # tithi
 #, c-format
@@ -8664,16 +8608,15 @@
 "The identifier '%s' may possibly refer to any of the following users. Please "
 "select the correct user from the list below to add them to your buddy list."
 msgstr ""
-"'%s' শনাক্তকারী সম্ভবত নিম্নলিখিত যেকোনো ব্যবহারকারীকে উল্লেখ করতে পারে। অনুগ্রহ "
-"করে নিচের তালিকা থেকে সঠিক ব্যবহারকারী নির্বাচন করে আপনার বন্ধু তালিকাতে তাদেরকে "
-"যোগ করুন।"
+"'%s' নিম্নলিখিত যেকোনো ব্যবহারকারীকে বোঝাতে পারে। অনুগ্রহ করে নিচের তালিকা থেকে "
+"সঠিক ব্যবহারকারী নির্বাচন করে আপনার বন্ধু তালিকাতে যোগ করুন।"
 
 msgid "Select User"
-msgstr "ব্যবহারকারী নির্বাচন করুন"
+msgstr "ব্যবহারকারী নির্বাচন"
 
 # tithi
 msgid "Unable to add user: user not found"
-msgstr "ব্যবহারকারী যোগ করতে অক্ষম: ব্যবহারকারী খুঁজে পায়নি"
+msgstr "ব্যবহারকারী যোগ করতে ব্যর্থ: ব্যবহারকারী খুঁজে পাওয়া যায়নি"
 
 # tithi
 #, c-format
@@ -8681,66 +8624,67 @@
 "The identifier '%s' did not match any users in your Sametime community. This "
 "entry has been removed from your buddy list."
 msgstr ""
-"'%s' শনাক্তকারী আপনার এককালীন সম্প্রদায়ের কোনো ব্যবহারকারীর সাথে সমন্বয় করে না। "
-"এই এন্ট্রিটি আপনার বন্ধু তালিকা থেকে অপসারণ করা হয়েছে।"
+"'%s' আপনার  Sametime সম্প্রদায়ের কোনো ব্যবহারকারীর সাথে মেলেনি। এই এন্ট্রিটি "
+"আপনার বন্ধু তালিকা থেকে অপসারণ করা হয়েছে।"
 
 #, c-format
 msgid ""
 "Error reading file %s: \n"
 "%s\n"
 msgstr ""
-"%1s ফাইল পড়ায় ত্রুটি: \n"
-"%2s\n"
+"%1$s ফাইল পড়ায় ত্রুটি: \n"
+"%2$s\n"
 
 msgid "Remotely Stored Buddy List"
-msgstr "দূর হতে সংরক্ষিত বন্ধু তালিকা"
+msgstr "দূরে সংরক্ষিত বন্ধু তালিকা"
 
 msgid "Buddy List Storage Mode"
-msgstr "বন্ধু তালিকার সংরক্ষন পদ্ধতি"
+msgstr "বন্ধু তালিকা সংরক্ষণ পদ্ধতি"
 
 msgid "Local Buddy List Only"
 msgstr "শুধুমাত্র স্থানীয় বন্ধু তালিকা"
 
 # tithi
 msgid "Merge List from Server"
-msgstr "সার্ভারের তালিকা একত্রিত করুন"
+msgstr "সার্ভারের তালিকা একত্রিকরণ"
 
 # tithi
 msgid "Merge and Save List to Server"
-msgstr "সার্ভারে তালিকা একত্রিত এবং সংরক্ষণ করুন"
+msgstr "সার্ভারে তালিকা একত্রিকরণ ও সংরক্ষণ"
 
 # tithi
 msgid "Synchronize List with Server"
-msgstr "সার্ভারের সঙ্গে সমকালীন তালিকা"
+msgstr "সার্ভারের সঙ্গে তালিকা অভিন্ন করা হবে"
 
 # tithi
 #, c-format
 msgid "Import Sametime List for Account %s"
-msgstr "%s একাউন্টের জন্য এককালীন তালিকা আমদানি করুন"
+msgstr "%s একাউন্টের জন্য Sametime তালিকা ইমপোর্ট করুন"
 
 # tithi
 #, c-format
 msgid "Export Sametime List for Account %s"
-msgstr "%s একাউন্টের জন্য এককালীন তালিকা রপ্তানি করুন"
+msgstr "%s একাউন্টের জন্য Sametime তালিকা এক্সপোর্ট করুন"
 
 # tithi
 msgid "Unable to add group: group exists"
-msgstr "দল যোগ করতে অক্ষম: দল বিদ্যমান"
+msgstr "দল যোগ করতে ব্যর্থ: দল বিদ্যমান"
 
 # tithi
 #, c-format
 msgid "A group named '%s' already exists in your buddy list."
-msgstr "'%s' নামের একটি দল আপনার বন্ধু তালিকায় ইতোমধ্যে বিদ্যমান রয়েছে।"
+msgstr "'%s' নামের একটি দল আপনার বন্ধু তালিকায় ইতিমধ্যে বিদ্যমান।"
 
 msgid "Unable to add group"
 msgstr "দল যোগ করতে ব্যর্থ"
 
 # tithi
 msgid "Possible Matches"
-msgstr "সম্ভাব্য মিলসমূহ"
-
+msgstr "সম্ভাব্য মিল"
+
+# ***
 msgid "Notes Address Book group results"
-msgstr "নোটের ঠিকানা বইয়ের দলগত ফলাফল"
+msgstr "Notes Address Book দলের ফলাফল"
 
 # tithi
 #, c-format
@@ -8749,16 +8693,15 @@
 "Book groups. Please select the correct group from the list below to add it "
 "to your buddy list."
 msgstr ""
-"'%s' শনাক্তকারী সম্ভবত নিম্নলিখিত নোট ঠিকানা বইয়ের দলের যেকোনোটি উল্লেখ করতে "
-"পারে। অনুগ্রহ করে নিচের তালিকা থেকে সঠিক গ্রুপ নির্বাচন করে আপনার বন্ধু তালিকায় এটি "
-"যোগ করুন।"
+"'%s' নিম্নলিখিত যেকোন Notes Address Book দলকে বোঝাতে পারে। অনুগ্রহ করে নিচের "
+"তালিকা থেকে সঠিক দল নির্বাচন করে আপনার বন্ধু তালিকায় যোগ করুন।"
 
 msgid "Select Notes Address Book"
-msgstr "নোটের ঠিকানা বই নির্বাচন করুন"
+msgstr "Notes Address Book নির্বাচন"
 
 # tithi
 msgid "Unable to add group: group not found"
-msgstr "দল যোগ করতে অক্ষম: দল খুঁজে পায়নি"
+msgstr "দল যোগ করতে ব্যর্থ: দল খুঁজে পাওয়া যায়নি"
 
 # tithi
 #, c-format
@@ -8766,23 +8709,23 @@
 "The identifier '%s' did not match any Notes Address Book groups in your "
 "Sametime community."
 msgstr ""
-"'%s' শনাক্তকারী আপনার এককালীন সম্প্রদায়ের কোনো নোট ঠিকানা বইয়ের দলের সাথে সমন্বয় "
-"করেনি।"
-
+"'%s' আপনার Sametime সম্প্রদায়ের কোনো Notes Address Book দলের সাথে মেলেনি।"
+
+# ***
 msgid "Notes Address Book Group"
-msgstr "নোটের ঠিকানা বইয়ের দল"
+msgstr "Notes Address Book দল"
 
 # tithi
 msgid ""
 "Enter the name of a Notes Address Book group in the field below to add the "
 "group and its members to your buddy list."
 msgstr ""
-"নিচের ক্ষেত্রে নোটের ঠিকানা বইয়ের গ্রুপের নাম প্রবেশ করে আপনার বন্ধু তালিকায় শ্রেণী "
-"এবং এর সদসদের যোগ করুন।"
+"নিচের ক্ষেত্রে Notes Address Book দলের নাম প্রবেশ করে দল এবং এর সদস্যদের আপনার "
+"বন্ধু তালিকায় যোগ করুন।"
 
 #, c-format
 msgid "Search results for '%s'"
-msgstr "'%s' এর সন্ধান ফলাফল"
+msgstr "'%s' অনুসন্ধানের ফলাফল"
 
 # tithi
 #, c-format
@@ -8791,9 +8734,9 @@
 "may add these users to your buddy list or send them messages with the action "
 "buttons below."
 msgstr ""
-"'%s' শনাক্তকারী সম্ভবত নিম্নলিখিত যেকোনো ব্যবহারকারীকে উল্লেখ করতে পারে। আপনি "
-"সম্ভবত নিচের কার্য বোতাম দ্বারা আপনার বন্ধু তালিকাতে এই ব্যবহারকারীসমূহ যোগ করতে "
-"পারেন বা তাদেরকে বার্তা পাঠাতে পারেন।"
+"'%s' শনাক্তকারী নিম্নলিখিত যেকোনো ব্যবহারকারীকে বোঝাতে পারে। আপনি আপনার বন্ধু "
+"তালিকাতে এই ব্যবহারকারীসমূহ যোগ করতে পারেন বা তাদেরকে নিচের বোতাম দ্বারা বার্তা "
+"পাঠাতে পারেন।"
 
 msgid "Search Results"
 msgstr "অনুসন্ধানের ফলাফল"
@@ -8804,47 +8747,47 @@
 # tithi
 #, c-format
 msgid "The identifier '%s' did not match any users in your Sametime community."
-msgstr "'%s' শনাক্তকারী আপনার এককালীন সম্প্রদায়ের কোনো ব্যবহারকারীর সাথে মিলেনি।"
+msgstr "'%s' শনাক্তকারী আপনার Sametime সম্প্রদায়ের কোনো ব্যবহারকারীর সাথে মিলেনি।"
 
 msgid "No Matches"
 msgstr "কোনো মিল নেই"
 
 msgid "Search for a user"
-msgstr "একজন ব্যবহারকারীর জন্য অনুসন্ধান করুন"
+msgstr "ব্যবহারকারী অনুসন্ধান"
 
 # tithi
 msgid ""
 "Enter a name or partial ID in the field below to search for matching users "
 "in your Sametime community."
 msgstr ""
-"আপনার এককালীন সম্প্রদায়ের সমন্বয়করণ ব্যবহারকারীর জন্য অনুসন্ধান করতে নিচের ক্ষেত্রে "
-"একটি নাম বা আংশিক আইডি প্রবেশ করান।"
+"আপনার Sametime সম্প্রদায়ের ব্যবহারকারী অনুসন্ধান করতে নিচের ক্ষেত্রে একটি নাম বা "
+"আংশিক ID দিন।"
 
 msgid "User Search"
-msgstr "ব্যবহারকারী অনুসন্ধান করুন"
+msgstr "ব্যবহারকারী অনুসন্ধান"
 
 # tithi
 msgid "Import Sametime List..."
-msgstr "এককালীন তালিকা আমদানি করুন..."
+msgstr "Sametime তালিকা ইমপোর্ট..."
 
 # tithi
 msgid "Export Sametime List..."
-msgstr "এককালীন তালিকা রপ্তানি করুন..."
+msgstr "Sametime তালিকা এক্সপোর্ট..."
 
 msgid "Add Notes Address Book Group..."
-msgstr "নোটের ঠিকানা বইয়ের দল যোগ করুন..."
+msgstr "Notes Address Book দল যোগ..."
 
 msgid "User Search..."
-msgstr "ব্যবহারকারী অনুসন্ধান করুন..."
+msgstr "ব্যবহারকারী অনুসন্ধান..."
 
 # tithi
 msgid "Force login (ignore server redirects)"
-msgstr "লগইন বাধ্য করুন  (সার্ভারের পুনঃ নির্দেশনাগুলো উপেক্ষা করুন)"
+msgstr "লগইন বাধ্য করা হবে (সার্ভারের রিডিরেক্টগুলো উপেক্ষা করে)"
 
 # tithi
 #. pretend to be Sametime Connect
 msgid "Hide client identity"
-msgstr "গ্রাহক পরিচয় গোপন করুন"
+msgstr "ক্লায়েন্টের পরিচয় গোপন করা হবে"
 
 # tithi
 #, c-format
@@ -8856,42 +8799,42 @@
 
 # tithi
 msgid "Cannot perform the key agreement"
-msgstr "মূল চুক্তি সম্পাদন করতে পারে না"
+msgstr "মূল চুক্তি সম্পাদন করা সম্ভব হয়নি"
 
 # tithi
 msgid "Error occurred during key agreement"
-msgstr "মূল চুক্তির সময় ত্রুটি ঘটেছিল"
+msgstr "মূল চুক্তির সময় ত্রুটি হয়েছে"
 
 # tithi
 msgid "Key Agreement failed"
-msgstr "মূং চুক্তি ব্যর্থ হয়েছে"
+msgstr "মূল চুক্তি ব্যর্থ হয়েছে"
 
 # tithi
 msgid "Timeout during key agreement"
-msgstr "মূল চুক্তির সময় মেয়াদ উত্তীর্ণ হয়েছে"
+msgstr "মূল চুক্তির সময় উত্তীর্ণ হয়ে গেছে"
 
 # tithi
 msgid "Key agreement was aborted"
-msgstr "মূল চুক্তি বাতিল করা হয়েছিল"
+msgstr "মূল চুক্তি বাতিল করা হয়েছে"
 
 # tithi
 msgid "Key agreement is already started"
-msgstr "মূল চুক্তি ইতোমধ্যে শুরু হয়েছে"
+msgstr "মূল চুক্তি ইতিমধ্যে শুরু হয়েছে"
 
 # tithi
 msgid "Key agreement cannot be started with yourself"
-msgstr "মূল চুক্তি আপনার সঙ্গে শুরু করা যায় না"
+msgstr "মূল চুক্তি আপনার নিজের সঙ্গে শুরু করা যাবে না"
 
 # tithi
 msgid "The remote user is not present in the network any more"
-msgstr "দূরবর্তী ব্যবহারকারী আর নেটওয়ার্কে উপস্থিত থাকবে না"
+msgstr "দূরবর্তী ব্যবহারকারী নেটওয়ার্কে আর উপস্থিত নেই"
 
 # tithi
 #, c-format
 msgid ""
 "Key agreement request received from %s. Would you like to perform the key "
 "agreement?"
-msgstr "মূল চুক্তির অনুরোধ %s থেকে গ্রহণ করেছে। আপনি কি মূল চুক্তি সম্পাদন করতে আগ্রহী?"
+msgstr "%s থেকে মূল চুক্তির অনুরোধ গৃহীত হয়েছে। আপনি কি মূল চুক্তি সম্পাদন করতে আগ্রহী?"
 
 #, c-format
 msgid ""
@@ -8908,35 +8851,35 @@
 msgstr "মূল চুক্তির অনুরোধ"
 
 msgid "IM With Password"
-msgstr "গুপ্তসঙ্কেত যুক্ত আইএম"
+msgstr "পাসওয়ার্ড যুক্ত IM"
 
 msgid "Cannot set IM key"
-msgstr "আইএম কী বিন্যাস করতে পারে না"
+msgstr "IM কী বিন্যাস নির্ধারণ করা সম্ভব হয়নি"
 
 msgid "Set IM Password"
-msgstr "আইএম গুপ্তসঙ্কেত বিন্যাস করুন"
+msgstr "IM পাসওয়ার্ড নির্ধারণ"
 
 # tithi
 msgid "Get Public Key"
-msgstr "সর্বসাধারণ কী গ্রহণ করুন"
+msgstr "পাবলিক কী খোঁজা হবে"
 
 # tithi
 msgid "Cannot fetch the public key"
-msgstr "সর্বসাধারণ কী পুনরুদ্ধার করতে পারে না"
+msgstr "পাবলিক কী আনা সম্ভব হয়নি"
 
 # tithi
 msgid "Show Public Key"
-msgstr "সর্বসাধারণ কী দেখান"
+msgstr "পাবলিক কী প্রদর্শন"
 
 # tithi
 msgid "Could not load public key"
-msgstr "সর্বসাধারণ কী লোড করতে পারেনি"
+msgstr "পাবলিক কী লোড করা সম্ভব হয়নি"
 
 msgid "User Information"
 msgstr "ব্যবহারকারী তথ্য"
 
 msgid "Cannot get user information"
-msgstr "ব্যবহারকারীর তথ্য গ্রহণ করতে পারে না"
+msgstr "ব্যবহারকারীর তথ্য পাওয়া যায়নি"
 
 # fix me tithi
 #, c-format
@@ -8948,9 +8891,8 @@
 "You cannot receive buddy notifications until you import his/her public key.  "
 "You can use the Get Public Key command to get the public key."
 msgstr ""
-"আপনি যতক্ষণ পর্যন্ত না বন্ধুর সর্বসাধারণ কী আমদানি করেন ততক্ষন পর্যন্ত তার বিজ্ঞপ্তি "
-"গ্রহণ করতে পাবেন না। আপনি পাবলিক কী গ্রহণ করতে 'পাবলিক কী গ্রহণ করুন' নির্দেশ "
-"ব্যবহার করতে পারেন না।"
+"আপনি যতক্ষণ পর্যন্ত না বন্ধুর পাবলিক কী ইমপোর্ট করবেন ততক্ষন পর্যন্ত তার ঘোষণা গ্রহণ "
+"করবেন না। আপনি পাবলিক কী পেতে Get Public Key কমান্ডটি ব্যবহার করতে পারেন।"
 
 #. Open file selector to select the public key.
 msgid "Open..."
@@ -8966,30 +8908,30 @@
 "To add the buddy you must import his/her public key. Press Import to import "
 "a public key."
 msgstr ""
-"বন্ধু যোগ করতে আপনাকে অবশ্যই তার সর্বসাধারণ কী আমদানি করতে হবে। সর্বসাধারণ কী "
-"আমদানি করতে 'আমদানি করুন' চাপুন।"
+"বন্ধু যোগ করতে আপনাকে অবশ্যই তার পাবলিক কী ইমপোর্ট করতে হবে। পাবলিক কী ইমপোর্ট "
+"করতে 'ইমপোর্ট' চাপুন।"
 
 # tithi
 msgid "_Import..."
-msgstr "আমদানি করুন... (_I)"
+msgstr "ইমপোর্ট... (_I)"
 
 msgid "Select correct user"
-msgstr "সঠিক ব্যবহারকারী নির্বাচন করুন"
+msgstr "সঠিক ব্যবহারকারী নির্বাচন"
 
 # tithi
 msgid ""
 "More than one user was found with the same public key. Select the correct "
 "user from the list to add to the buddy list."
 msgstr ""
-"একই সর্বসাধারণ কী দ্বারা একাধিক ব্যবহারকারীর খুঁজে পেয়েছিল। বন্ধু তালিকাতে যোগ করতে "
-"তালিকা থেকে সঠিক ব্যবহারকারী নির্বাচন করুন।"
+"একই পাবলিক কী সহ একাধিক ব্যবহারকারী পাওয়া গেছে। বন্ধু তালিকাতে যোগ করতে তালিকা "
+"থেকে সঠিক ব্যবহারকারী নির্বাচন করুন।"
 
 # tithi
 msgid ""
 "More than one user was found with the same name. Select the correct user "
 "from the list to add to the buddy list."
 msgstr ""
-"একই নামে একাধিক ব্যবহারকারীর খুঁজে পেয়েছিল। বন্ধু তালিকাতে যোগ করতে তালিকা থেকে "
+"একই নামে একাধিক ব্যবহারকারী পাওয়া গেছে। বন্ধু তালিকাতে যোগ করতে তালিকা থেকে "
 "সঠিক ব্যবহারকারী নির্বাচন করুন।"
 
 # tithi
@@ -9002,11 +8944,11 @@
 
 # tithi
 msgid "Wake Me Up"
-msgstr "আমাকে জাগান"
+msgstr "আমাকে ঘুম থেকে জাগান"
 
 # tithi
 msgid "Hyper Active"
-msgstr "অতিমাত্রায় সক্রিয়"
+msgstr "অতিসক্রিয়"
 
 msgid "Robot"
 msgstr "যন্ত্রমানব"
@@ -9015,7 +8957,7 @@
 msgstr "সুখী"
 
 msgid "Sad"
-msgstr "দু:খী"
+msgstr "দুঃখী"
 
 msgid "Angry"
 msgstr "রাগী"
@@ -9032,7 +8974,7 @@
 
 # tithi
 msgid "In Love"
-msgstr "ভালবাসাতে"
+msgstr "প্রেমময়"
 
 msgid "Sleepy"
 msgstr "ঘুমন্ত"
@@ -9047,10 +8989,10 @@
 msgstr "উদ্বিগ্ন"
 
 msgid "User Modes"
-msgstr "ব্যবহাকারীর পরিমন্ডলসমূহ"
+msgstr "ব্যবহারকারী মোড"
 
 msgid "Preferred Contact"
-msgstr "পছন্দের যোগাযোগ"
+msgstr "পছন্দের ব্যক্তি"
 
 msgid "Preferred Language"
 msgstr "পছন্দের ভাষা"
@@ -9060,7 +9002,7 @@
 msgstr "ডিভাইস"
 
 msgid "Timezone"
-msgstr "সময়-এলাকা"
+msgstr "সময় অঞ্চল"
 
 # tithi
 msgid "Geolocation"
@@ -9068,30 +9010,30 @@
 
 # tithi
 msgid "Reset IM Key"
-msgstr "IM কী পুনঃ বিন্যাস করুন"
+msgstr "IM কী রিসেট করা হবে"
 
 # tithi
 msgid "IM with Key Exchange"
 msgstr "কী বিনিময় সহ IM"
 
 msgid "IM with Password"
-msgstr "গুপ্তসঙ্কেত যুক্ত আইএম"
+msgstr "পাসওয়ার্ডযুক্ত IM"
 
 # tithi
 msgid "Get Public Key..."
-msgstr "সর্বসাধারণ কী গ্রহণ করুন..."
+msgstr "পাবলিক কী গ্রহণ করা হবে..."
 
 # tithi
 msgid "Kill User"
-msgstr "ব্যবহারকারীকে মুছে ফেলুন"
+msgstr "ব্যবহারকারী নিষ্ক্রিয় করুন"
 
 # tithi
 msgid "Draw On Whiteboard"
-msgstr "সাদা-বোর্ডে অংকন করুন"
+msgstr "হোয়াইটবোর্ডে অংকন করুন"
 
 # tithi
 msgid "_Passphrase:"
-msgstr "প্যাস-ফ্রেজ (_P):"
+msgstr "পাসফ্রেজ (_P):"
 
 # tithi
 #, c-format
@@ -9102,7 +9044,7 @@
 msgstr "চ্যানেল তথ্য"
 
 msgid "Cannot get channel information"
-msgstr "চ্যানেলের তথ্য পায় না"
+msgstr "চ্যানেলের তথ্য পাওয়া যায়নি"
 
 #, c-format
 msgid "<b>Channel Name:</b> %s"
@@ -9110,7 +9052,7 @@
 
 #, c-format
 msgid "<br><b>User Count:</b> %d"
-msgstr "<br><b>ব্যবহারকারী গণনা করুন:</b> %d"
+msgstr "<br><b>মোট ব্যবহারকারী:</b> %d"
 
 # tithi
 #, c-format
@@ -9139,28 +9081,28 @@
 # tithi
 #, c-format
 msgid "<br><b>Founder Key Fingerprint:</b><br>%s"
-msgstr "<br><b> প্রতিষ্ঠাতার মূল হস্তাঙ্গুলির-ছাপ:</b><br>%s"
+msgstr "<br><b> Founder মূল ফিঙ্গারপ্রিন্ট:</b><br>%s"
 
 # tithi
 #, c-format
 msgid "<br><b>Founder Key Babbleprint:</b><br>%s"
-msgstr "<br><b>প্রতিষ্ঠাতার মূল ব্যাবলপ্রিন্ট:</b><br>%s"
+msgstr "<br><b>Founder মূল ব্যাবলপ্রিন্ট:</b><br>%s"
 
 # tithi
 msgid "Add Channel Public Key"
-msgstr "চ্যানেলের সর্বসাধারণ কী যুক্ত করুন"
+msgstr "চ্যানেলের পাবলিক কী যোগ"
 
 # tithi
 #. Add new public key
 msgid "Open Public Key..."
-msgstr "সর্বসাধারণ কী খুলুন..."
+msgstr "পাবলিক কী খুলুন..."
 
 # tithi
 msgid "Channel Passphrase"
-msgstr "চ্যানেলের প্যাস-ফ্রেজ"
+msgstr "চ্যানেলের পাসফ্রেজ"
 
 msgid "Channel Public Keys List"
-msgstr "চ্যানেলের সর্বসাধারণ কী এর তালিকা"
+msgstr "চ্যানেলের পাবলিক কী এর তালিকা"
 
 # tithi
 #, c-format
@@ -9171,33 +9113,33 @@
 "channel public keys are set then only users whose public keys are listed are "
 "able to join."
 msgstr ""
-"চ্যানেল প্রমাণীকরণ চ্যানেলকে অনুমোদন বিহীন প্রবেশ থেকে নিরাপদ রাখতে ব্যবহার করা "
-"হয়। প্রমাণীকরণ সম্ভবত প্যাসফ্রেজ এবং ডিজিট্যাল স্বাক্ষর ভিত্তিক। যদি প্যাসফ্রেজ "
-"নির্ধারণ করা হয়, এটি যোগদান করতে সক্রিয় হতে হবে। যদি চ্যানেলের সর্বসাধারণ কী "
-"নির্ধারণ করা হয় তবে শুধুমাত্র সর্বসাধারণ কী যুক্ত তালিকাভুক্ত ব্যবহারকারীরা যোগদান "
-"করতে সক্ষম হবে।"
+"চ্যানেলকে অনুমোদনবিহীন প্রবেশ থেকে নিরাপদ রাখতে চ্যানেল প্রমাণীকরণ ব্যবহার করা হয়। "
+"প্রমাণীকরণ পাসফ্রেজ এবং ডিজিট্যাল স্বাক্ষর ভিত্তিক হতে পারে। যদি পাসফ্রেজ নির্ধারণ "
+"করা হয়ে থাকে তাহলে যোগদান করতে এটি প্রয়োগ করতে হবে। যদি চ্যানেলের পাবলিক কী "
+"নির্ধারণ করা হয়, তবে শুধুমাত্র যেসব ব্যবহারকারীদের পাবলিক কী তালিকাভুক্ত আছে তারা "
+"যোগদান করতে পারবেন।"
 
 # tithi
 msgid "Channel Authentication"
-msgstr "চ্যানেলের প্রমাণীকরণ"
+msgstr "চ্যানেল প্রমাণীকরণ"
 
 msgid "Add / Remove"
-msgstr "যোগ / অপসরণ করুন"
+msgstr "যোগ / অপসারণ"
 
 msgid "Group Name"
-msgstr "গ্রুপের নাম"
+msgstr "দলের নাম"
 
 # tithi
 msgid "Passphrase"
-msgstr "প্যাস-ফ্রেজ"
+msgstr "পাসফ্রেজ"
 
 #, c-format
 msgid "Please enter the %s channel private group name and passphrase."
-msgstr "অনুগ্রহ করে %s চ্যানেলের ব্যক্তিগত গ্রুপের নাম ও প্যাস-ফ্রেজ প্রবেশ করান।"
+msgstr "অনুগ্রহ করে %s চ্যানেলের ব্যক্তিগত দলের নাম ও পাসফ্রেজ দিন।"
 
 # tithi
 msgid "Add Channel Private Group"
-msgstr "চ্যানেলের ব্যক্তিগত গ্রুপ যোগ করুন"
+msgstr "চ্যানেলের ব্যক্তিগত দল যোগ"
 
 msgid "User Limit"
 msgstr "ব্যবহারকারীর সীমা"
@@ -9205,8 +9147,8 @@
 # tithi
 msgid "Set user limit on channel. Set to zero to reset user limit."
 msgstr ""
-"চ্যানেলে ব্যবহারকারীর সীমা নির্ধারণ করুন। ব্যবহারকারী সীমা পুনঃ বিন্যাস করতে শূন্যে "
-"নির্ধরণ করুন।"
+"চ্যানেলে ব্যবহারকারীর সীমা নির্ধারণ করুন। ব্যবহারকারী সীমা পুনঃ বিন্যাস করতে শূন্য "
+"নির্ধারন করুন।"
 
 msgid "Invite List"
 msgstr "আমন্ত্রন তালিকা"
@@ -9215,65 +9157,63 @@
 msgstr "নিষিদ্ধ তালিকা"
 
 msgid "Add Private Group"
-msgstr "ব্যক্তিগত দল যোগ করুন"
+msgstr "ব্যক্তিগত দল যোগ"
 
 # tithi
 msgid "Reset Permanent"
-msgstr "স্থায়ীভাবে পুনরায় বিন্যাস করুন"
+msgstr "স্থায়ীভাবে রিসেট"
 
 # tithi
 msgid "Set Permanent"
-msgstr "স্থায়ীভাবে বিন্যাস করুন"
+msgstr "স্থায়ীভাবে বিন্যাস"
 
 msgid "Set User Limit"
-msgstr "ব্যবহারকারীর সীমা নির্ধারন করুন"
+msgstr "ব্যবহারকারীর সীমা নির্ধারন"
 
 msgid "Reset Topic Restriction"
-msgstr "বিষয়বস্তুর নিষেধাজ্ঞা পুনরায় নির্ধারণ করুন"
+msgstr "বিষয়বস্তু সীমিতকরণ রিসেট"
 
 # tithi
 msgid "Set Topic Restriction"
-msgstr "বিষয়বস্তুর নিষেধাজ্ঞা নির্ধারণ করুন"
+msgstr "বিষয়বস্তু সীমিতকরণ নির্ধারন"
 
 # tithi
 msgid "Reset Private Channel"
-msgstr "ব্যক্তিগত চ্যানেল পুনরায় নির্ধারণ করুন"
+msgstr "ব্যক্তিগত চ্যানেল পুনঃনির্ধারণ করুন"
 
 # tithi
 msgid "Set Private Channel"
-msgstr "ব্যক্তিগত চ্যানেল নির্ধারণ করুন"
+msgstr "ব্যক্তিগত চ্যানেল নির্ধারণ"
 
 # tithi
 msgid "Reset Secret Channel"
-msgstr "গোপন চ্যানেল পুনরায় নির্ধারণ করুন"
+msgstr "গোপন চ্যানেল পুনঃনির্ধারণ"
 
 # tithi
 msgid "Set Secret Channel"
-msgstr "গোপন চ্যানেল নির্ধারণ করুন"
+msgstr "গোপন চ্যানেল নির্ধারণ"
 
 # tithi
 #, c-format
 msgid ""
 "You have to join the %s channel before you are able to join the private group"
-msgstr ""
-"আপনি ব্যক্তিগত গ্রুপে যোগদানে সমর্থ হওয়ার পূর্বে আপনাকে অবশ্যই %s চ্যানেলে যোগ দিতে "
-"হবে"
+msgstr "আপনাকে ব্যক্তিগত দলে যোগদানের পূর্বে অবশ্যই %s চ্যানেলে যোগ দিতে হবে"
 
 msgid "Join Private Group"
-msgstr "ব্যক্তিগত গ্রুপে যোগ দিন"
+msgstr "ব্যক্তিগত দলে যোগ দিন"
 
 # tithi
 msgid "Cannot join private group"
-msgstr "ব্যক্তিগত চ্যানেলে যোগ দিতে পারে না"
+msgstr "ব্যক্তিগত দলে যোগ দেয়া সম্ভব হয়নি"
 
 msgid "Call Command"
-msgstr "নির্দেশ কল করুন"
+msgstr "কমান্ড কল করুন"
 
 msgid "Cannot call command"
-msgstr "নির্দেশ কল করতে পারে না"
+msgstr "কমান্ড কল করা সম্ভব হয়নি"
 
 msgid "Unknown command"
-msgstr "অজানা নির্দেশ"
+msgstr "অজানা কমান্ড"
 
 msgid "Secure File Transfer"
 msgstr "নিরাপদ ফাইল স্থানান্তর"
@@ -9286,7 +9226,7 @@
 
 # tithi
 msgid "Permission denied"
-msgstr "অনুমতি অস্বীকৃত"
+msgstr "অনুমতি প্রত্যাখ্যাত"
 
 # tithi
 msgid "Key agreement failed"
@@ -9294,72 +9234,72 @@
 
 # fix me tithi
 msgid "Connection timed out"
-msgstr "সংযোগ সময় শেষ"
+msgstr "সংযোগের সময় উত্তীর্ন"
 
 msgid "Creating connection failed"
 msgstr "সংযোগ তৈরীতে ব্যর্থ"
 
 msgid "File transfer session does not exist"
-msgstr "ফাইল স্থানান্তর অধিবেশন বিদ্যমান নয়"
+msgstr "ফাইল স্থানান্তর সেশন বিদ্যমান নয়"
 
 msgid "No file transfer session active"
-msgstr "কোনো ফাইল স্থানান্তর অধিবেশন সক্রিয় নয়"
+msgstr "কোনো ফাইল স্থানান্তর সেশন সক্রিয় নয়"
 
 msgid "File transfer already started"
-msgstr "ফাইল স্থানান্তর ইতোমধ্যে শুরু হয়েছে"
+msgstr "ফাইল স্থানান্তর ইতিমধ্যে শুরু হয়েছে"
 
 # tithi
 msgid "Could not perform key agreement for file transfer"
-msgstr "ফাইল স্থানান্তরের জন্য মূল চুক্তি সম্পাদন করতে পারে না"
+msgstr "ফাইল স্থানান্তরের মূল চুক্তি সম্পাদন করা সম্ভব হয়নি"
 
 msgid "Could not start the file transfer"
-msgstr "ফাইল স্থানান্তর শুরু করেনি"
+msgstr "ফাইল স্থানান্তর শুরু করা সম্ভব হয়নি"
 
 msgid "Cannot send file"
-msgstr "ফাইল পাঠাতে পারে না"
+msgstr "ফাইল পাঠানো সম্ভব হয়নি"
 
 msgid "Error occurred"
-msgstr "ত্রুটি সংঘটিত হয়েছে"
+msgstr "ত্রুটি হয়েছে"
 
 # tithi
 #, c-format
 msgid "%s has changed the topic of <I>%s</I> to: %s"
-msgstr "%1s <I>%2s</I> এর বিষয়বস্তু পরিবর্তন করেছে: %3s"
+msgstr "%1$s <I>%2$s</I> এর বিষয়বস্তু পরিবর্তন করেছে, এখন তা: %3$s"
 
 # tithi
 #, c-format
 msgid "<I>%s</I> set channel <I>%s</I> modes to: %s"
-msgstr "<I>%s</I> চ্যানেল <I>%s</I> মোডসমূহ নির্ধারণ করে: %s"
+msgstr "<I>%1$s</I> চ্যানেলের <I>%2$s</I> মোড নির্ধারণ করেছে: %3$s"
 
 # tithi
 #, c-format
 msgid "<I>%s</I> removed all channel <I>%s</I> modes"
-msgstr "<I>%s</I> সমস্ত চ্যানেল <I>%s</I> মোডসমূহ অপসারণ করেছে"
+msgstr "<I>%1$s</I> সমস্ত চ্যানেলের <I>%2$s</I> মোড অপসারণ করেছে"
 
 # tithi
 #, c-format
 msgid "<I>%s</I> set <I>%s's</I> modes to: %s"
-msgstr "<I>%s</I> মোড <I> %s</I> নির্ধারণ করে: %s-এ"
+msgstr "<I>%2$sর</I> মোড <I>%1$s</I> নির্ধারণ করেছে: %3$s"
 
 # tithi
 #, c-format
 msgid "<I>%s</I> removed all <I>%s's</I> modes"
-msgstr "<I>%s's</I> সব <I>%s</I> মোডসমূহ অপসারণ করেছে"
+msgstr "<I>%2$sর</I> সব মোড <I>%1$s</I> অপসারণ করেছে"
 
 # tithi
 #, c-format
 msgid "You have been kicked off <I>%s</I> by <I>%s</I> (%s)"
-msgstr "আপনি <I>%s</I> (%s) দ্বারা <I>%s</I> প্রত্যাখাতি হয়েছন"
+msgstr "আপনি <I>%2$s</I> (%3$s) দ্বারা <I>%1$s</I> থেকে তিরস্কৃত হয়েছেন"
 
 # tithi
 #, c-format
 msgid "You have been killed by %s (%s)"
-msgstr "আপনাকে %1s (%2s) দ্বারা অপসারণ করা হয়েছে"
+msgstr "%1$s (%2$s) আপনাকে নিষ্ক্রিয় করে দিয়েছে"
 
 # tithi
 #, c-format
 msgid "Killed by %s (%s)"
-msgstr "%1s (%2s) দ্বারা অপসারণ করা হয়েছে"
+msgstr "%1$s (%2$s) দ্বারা নিষ্ক্রিয় করা হয়েছে"
 
 msgid "Server signoff"
 msgstr "সার্ভার সাইন-অফ"
@@ -9372,13 +9312,13 @@
 
 # tithi
 msgid "Job Role"
-msgstr "কর্ম ভূমিকা"
+msgstr "কাজের ভূমিকা"
 
 msgid "Organization"
-msgstr "সংঘঠন"
+msgstr "সংগঠন"
 
 msgid "Unit"
-msgstr "একক"
+msgstr "বিভাগ"
 
 msgid "Join Chat"
 msgstr "আড্ডায় যোগ দিন"
@@ -9391,57 +9331,57 @@
 # tithi
 #, c-format
 msgid "Channel founder on <I>%s</I> is <I>%s</I>"
-msgstr "<I>%s</I> এর চ্যানেল প্রতিষ্ঠাতা হলো <I>%s</I>"
+msgstr "<I>%s</I> চ্যানেলের প্রতিষ্ঠাতা হলো <I>%s</I>"
 
 msgid "Real Name"
 msgstr "আসল নাম"
 
 msgid "Status Text"
-msgstr "অবস্থা পাঠ"
+msgstr "অবস্থা টেক্সট"
 
 # tithi
 msgid "Public Key Fingerprint"
-msgstr "সর্বসাধারণ কী-এর হস্তাঙ্গুলির-ছাপ"
+msgstr "পাবলিক কী ফিঙ্গারপ্রিন্ট"
 
 # tithi
 msgid "Public Key Babbleprint"
-msgstr "সর্বসাধারণ কী-এর ব্যাবলপ্রিন্ট"
+msgstr "পাবলিক কী ব্যাবলপ্রিন্ট"
 
 msgid "_More..."
 msgstr "আরও... (_M)"
 
 # tithi
 msgid "Detach From Server"
-msgstr "সার্ভার থেকে বিচ্ছিন্ন"
+msgstr "সার্ভার থেকে বিচ্ছিন্নকরণ"
 
 # tithi
 msgid "Cannot detach"
-msgstr "বিচ্ছিন্ন হতে পারে না"
+msgstr "বিচ্ছিন্ন করা সম্ভব হচ্ছে না"
 
 msgid "Cannot set topic"
-msgstr "বিষয়বস্তু ঠিক করতে পারে না"
+msgstr "বিষয়বস্তু ঠিক করা যাচ্ছে না"
 
 msgid "Failed to change nickname"
 msgstr "ডাকনাম পরিবর্তন করতে ব্যর্থ"
 
 msgid "Roomlist"
-msgstr "রুম-তালিকা"
+msgstr "আসরের-তালিকা"
 
 msgid "Cannot get room list"
-msgstr "রুম-তালিকা পাওয়া যাচ্ছে না"
+msgstr "আসরের-তালিকা পাওয়া যায়নি"
 
 msgid "Network is empty"
 msgstr "নেটওয়ার্ক খালি"
 
 # tithi
 msgid "No public key was received"
-msgstr "কোনো সর্বসাধারণ কী খুঁজে পায়নি"
+msgstr "কোনো পাবলিক কী খুঁজে পাওয়া যায়নি"
 
 msgid "Server Information"
 msgstr "সার্ভারের তথ্য"
 
 msgid "Cannot get server information"
-msgstr "সার্ভারের তথ্য গ্রহণ করতে পারে না"
+msgstr "সার্ভারের তথ্য খুঁজে পাওয়া যায়নি"
 
 msgid "Server Statistics"
 msgstr "সার্ভারের পরিসংখ্যান"
@@ -9467,59 +9407,59 @@
 "Total server operators: %d\n"
 "Total router operators: %d\n"
 msgstr ""
-"স্থানীয় সার্ভারের প্রারম্ভিক সময়: %1s\n"
-"স্থানীয় সার্ভারের আপটাইম: %2s\n"
-"স্থানীয় সার্ভারের গ্রাহকগণ: %3d\n"
-"স্থানীয় সার্ভারের চ্যানেলসমূহ: %4d\n"
-"স্থানীয় সার্ভারের পরিচালকগণ: %5d\n"
-"স্থানীয় রাউটারের পরিচালকগণ: %6d\n"
-"স্থানীয় প্রকোষ্ঠের গ্রাহকগণ: %7d\n"
-"স্থানীয় প্রকোষ্ঠের চ্যানেলগুলো: %8d\n"
-"স্থানীয় প্রকোষ্ঠের সার্ভার: %9d\n"
-"মোট গ্রহক: %10d\n"
-"মোট চ্যানেল: %11d\n"
-"মোট সার্ভার: %12d\n"
-"মোট রাউটার: %13d\n"
-"মোট সার্ভারের পরিচালকগণ: %14d\n"
-"মোট রাউটারের পরিচালকগণ: %15d\n"
+"স্থানীয় সার্ভারের শুরুর সময়: %1$s\n"
+"স্থানীয় সার্ভারের আপটাইম: %2$s\n"
+"স্থানীয় সার্ভারের ক্লায়েন্ট: %3$d\n"
+"স্থানীয় সার্ভারের চ্যানেল: %4$d\n"
+"স্থানীয় সার্ভারের অপারেটর: %5$d\n"
+"স্থানীয় রাউটারের অপারেটর: %6$d\n"
+"স্থানীয় সেল ক্লায়েন্ট: %7$d\n"
+"স্থানীয় সেল চ্যানেল: %8$d\n"
+"স্থানীয় সেল সার্ভার: %9$d\n"
+"মোট গ্রহক: %10$d\n"
+"মোট চ্যানেল: %11$d\n"
+"মোট সার্ভার: %12$d\n"
+"মোট রাউটার: %13$d\n"
+"মোট সার্ভারের অপারেটর: %14$d\n"
+"মোট রাউটারের অপারেটর: %15$d\n"
 
 msgid "Network Statistics"
 msgstr "নেটওয়ার্ক পরিসংখ্যান"
 
 msgid "Ping"
-msgstr "পিঙ্গ করুন"
+msgstr "পিং করুন"
 
 msgid "Ping failed"
-msgstr "পিঙ্গ ব্যর্থ"
+msgstr "পিং ব্যর্থ"
 
 msgid "Ping reply received from server"
-msgstr "সার্ভার থেকে পিঙ্গ এর উত্তর গ্রহন করা হয়েছে"
+msgstr "সার্ভার থেকে পিং এর উত্তর গ্রহন করা হয়েছে"
 
 # tithi
 msgid "Could not kill user"
-msgstr "ব্যবহারকারীকে বিচ্ছিন্ন করা সম্ভব হচ্ছে না"
+msgstr "ব্যবহারকারীকে নিষ্ক্রিয় করা সম্ভব হয়নি"
 
 # tithi
 msgid "WATCH"
-msgstr "পর্যবেক্ষণ করুন"
+msgstr "পর্যবেক্ষণ"
 
 msgid "Cannot watch user"
-msgstr "ব্যবহারকারীকে পর্যবেক্ষণ করতে পারছে না"
+msgstr "ব্যবহারকারীকে পর্যবেক্ষণ করা সম্ভব হচ্ছে না"
 
 # tithi
 msgid "Resuming session"
-msgstr "অধিবেশন পুনরায় শুরু করছে"
+msgstr "সেশন পুনরায় শুরু করা হচ্ছে"
 
 # tithi
 msgid "Authenticating connection"
-msgstr "সংযোগ প্রমাণ করছে"
+msgstr "সংযোগ প্রমাণীকরণ চলছে"
 
 msgid "Verifying server public key"
-msgstr "সার্ভারের সর্বসাধারণ কী পরীক্ষা করছে"
+msgstr "সার্ভারের পাবলিক কীর সত্যতা যাচাই করা হচ্ছে"
 
 # tithi
 msgid "Passphrase required"
-msgstr "প্যাস-ফ্রেজ প্রয়োজন"
+msgstr "পাসফ্রেজ প্রয়োজন"
 
 # tithi
 #, c-format
@@ -9527,14 +9467,13 @@
 "Received %s's public key. Your local copy does not match this key. Would you "
 "still like to accept this public key?"
 msgstr ""
-"%s এর সর্বসাধারণ কী গ্রহণ করেছে। আপনার স্থানীয় অনুলিপি এই কী এর সাথে মেলে না। "
-"আপনি কি তারপরও এই সর্বসাধারণ কী গ্রহণে আগ্রহী?"
+"%s এর পাবলিক কী পাওয়া গেছে। আপনার স্থানীয় অনুলিপি এই কী এর সাথে মেলে না। আপনি "
+"কি তবুও এই পাবলিক কী গ্রহণে আগ্রহী?"
 
 # tithi
 #, c-format
 msgid "Received %s's public key. Would you like to accept this public key?"
-msgstr ""
-"%s এর সর্বসাধারণ কী গ্রহণ করেছে। আপনি কি তারপরও এই সর্বসাধারণ কী গ্রহণে আগ্রহী?"
+msgstr "%s এর পাবলিক কী পাওয়া গেছে। আপনি কি এই পাবলিক কী গ্রহণে আগ্রহী?"
 
 # tithi
 #, c-format
@@ -9544,28 +9483,27 @@
 "%s\n"
 "%s\n"
 msgstr ""
-"%1s কী এর জন্য হস্তাঙ্গুলির ছাপ ও ব্যাবলপ্রিন্ট হলো:\n"
-"\n"
-"%2s\n"
-"%3s\n"
+"%1$s কী এর জন্য ফিঙ্গারপ্রিন্ট ও ব্যাবলপ্রিন্ট হলো:\n"
+"\n"
+"%2$s\n"
+"%3$s\n"
 
 msgid "Verify Public Key"
-msgstr "সর্বসাধারণ কী যাচাই করুন"
+msgstr "পাবলিক কী যাচাইকরণ"
 
 msgid "_View..."
-msgstr "প্রদর্শন করুন... (_V)"
+msgstr "প্রদর্শন... (_V)"
 
 # tithi
 msgid "Unsupported public key type"
-msgstr "অসমর্থিত সর্বসাধারণ কী এর ধরন"
+msgstr "অসমর্থিত ধরনের পাবলিক কী"
 
 msgid "Disconnected by server"
 msgstr "সার্ভার দ্বারা বিচ্ছিন্ন"
 
 # tithi
-#, fuzzy
 msgid "Error connecting to SILC Server"
-msgstr "SILC সার্ভারে সংযোগের সময় ত্রুটি"
+msgstr "SILC সার্ভারে সংযোগকাল ত্রুটি"
 
 # tithi
 msgid "Key Exchange failed"
@@ -9575,35 +9513,28 @@
 msgid ""
 "Resuming detached session failed. Press Reconnect to create new connection."
 msgstr ""
-"বিচ্ছিন্ন অধিবেশনটি পুনরায় শুরু করতে ব্যর্থ হয়েছে। অনুগ্রহ করে নতুন সংযোগ তৈরী করতে "
-"'পুনরায় সংযোগ' চাপুন।"
+"বিচ্ছিন্ন সেশনটি পুনরায় শুরু করতে ব্যর্থ। অনুগ্রহ করে নতুন সংযোগ তৈরী করতে 'পুনঃসংযোগ' "
+"চাপুন।"
 
 # tithi
 msgid "Performing key exchange"
-msgstr "কী বিনিময় সম্পাদন করছে"
-
-# tithi
-#, fuzzy
+msgstr "কী বিনিময় করা হচ্ছে"
+
+# tithi
 msgid "Unable to load SILC key pair"
-msgstr "SILC কী যুগল লোড করতে পারেনি"
+msgstr "SILC কী যুগল লোড করা সম্ভব হয়নি"
 
 # tithi
 #. Progress
 msgid "Connecting to SILC Server"
-msgstr "SILC সার্ভারে সংযোগ করছে"
-
-# tithi
-#, fuzzy
-msgid "Unable to not load SILC key pair"
-msgstr "SILC কী যুগল লোড করতে পারেনি"
+msgstr "SILC সার্ভারে সংযোগ করা হচ্ছে"
 
 msgid "Out of memory"
-msgstr "মেমোরীর বাইরে"
-
-# tithi
-#, fuzzy
+msgstr "মেমরি পরিপূর্ণ"
+
+# tithi
 msgid "Unable to initialize SILC protocol"
-msgstr "SILC প্রটোকল চালু করতে পারে না"
+msgstr "SILC প্রোটোকল চালু করতে ব্যর্থ"
 
 # tithi
 msgid "Error loading SILC key pair"
@@ -9611,17 +9542,17 @@
 
 #, c-format
 msgid "Download %s: %s"
-msgstr "%1s ডাউনলোড করুন: %2s"
+msgstr "%1$s ডাউনলোড করুন: %2$s"
 
 msgid "Your Current Mood"
-msgstr "আপনার বর্তমান অবস্থা"
+msgstr "আপনার বর্তমান মনমেজাজ"
 
 #, c-format
 msgid "Normal"
 msgstr "স্বাভাবিক"
 
 msgid "In love"
-msgstr "ভালবাসায়"
+msgstr "প্রেমময়"
 
 # tithi
 msgid ""
@@ -9629,16 +9560,16 @@
 "Your Preferred Contact Methods"
 msgstr ""
 "\n"
-"আপনাকে পছন্দের যোগাযোগ পদ্ধতি সমূহ"
+"আপনাকে পছন্দের যোগাযোগ পদ্ধতি"
 
 msgid "SMS"
-msgstr "এসএমএস"
+msgstr "SMS"
 
 msgid "MMS"
-msgstr "এমএমএস"
+msgstr "MMS"
 
 msgid "Video conferencing"
-msgstr "ভিডিও অধিবেশন চলছে"
+msgstr "ভিডিও অধিবেশন"
 
 msgid "Your Current Status"
 msgstr "আপনার বর্তমান অবস্থা"
@@ -9648,17 +9579,17 @@
 
 # tithi
 msgid "Let others see what services you are using"
-msgstr "আপনি কি সেবাসমূহ ব্যবহার করছেন তা অন্যদের দেখতে দিন"
+msgstr "আপনি কি কি সেবা ব্যবহার করছেন তা অন্যদের দেখতে দিন"
 
 # tithi
 msgid "Let others see what computer you are using"
 msgstr "আপনি কি কম্পিউটার ব্যবহার করছেন তা অন্যদের দেখতে দিন"
 
 msgid "Your VCard File"
-msgstr "আপনার ভি-কার্ড ফাইল"
+msgstr "আপনার VCard ফাইল"
 
 msgid "Timezone (UTC)"
-msgstr "সময়-এলাকা (ইউটিসি)"
+msgstr "সময়-অঞ্চল (UTC)"
 
 # tithi
 msgid "User Online Status Attributes"
@@ -9675,50 +9606,50 @@
 "তা পূরণ করুন।"
 
 msgid "Message of the Day"
-msgstr "দিনের বার্তা"
+msgstr "দৈনিক বার্তা"
 
 msgid "No Message of the Day available"
-msgstr "আজকের দিনের কোনো বার্তা সহজলভ্য নয়"
+msgstr "আজকের কোনো দৈনিক বার্তা নেই"
 
 # tithi
 msgid "There is no Message of the Day associated with this connection"
-msgstr "এই সংযোগের সাথে সম্পর্কিত আজকের দিনের কোনো বার্তা নেই"
+msgstr "এই সংযোগের সাথে সম্পর্কিত কোনো দৈনিক বার্তা নেই"
 
 # tithi
 msgid "Create New SILC Key Pair"
 msgstr "নতুন SILC কী যুগল তৈরি করুন"
 
 msgid "Passphrases do not match"
-msgstr "প্যাস-ফ্রেজ মিলে না"
+msgstr "পাসফ্রেজ মিলছে না"
 
 msgid "Key Pair Generation failed"
-msgstr "কী জোড়া তৈরী করতে ব্যর্থ হয়েছে"
+msgstr "কী যুগল তৈরী করতে ব্যর্থ"
 
 msgid "Key length"
 msgstr "কী-এর দৈর্ঘ্য"
 
 msgid "Public key file"
-msgstr "সর্বসাধারণ কী ফাইল"
+msgstr "পাবলিক কী ফাইল"
 
 msgid "Private key file"
-msgstr "বযক্তিগত কী ফাইল"
+msgstr "প্রাইভেট কী ফাইল"
 
 msgid "Passphrase (retype)"
-msgstr "প্যাস-ফ্রেজ (পুনরায় টাইপ করুন)"
+msgstr "পাসফ্রেজ (পুনরায় টাইপ করুন)"
 
 # tithi
 msgid "Generate Key Pair"
-msgstr "কী যুগল তৈরি করুন"
+msgstr "কী যুগল তৈরি"
 
 msgid "Online Status"
 msgstr "অনলাইন অবস্থা"
 
 msgid "View Message of the Day"
-msgstr "দিনের বার্তাটি প্রদর্শন করুন"
+msgstr "দৈনিক বার্তা প্রদর্শন"
 
 # tithi
 msgid "Create SILC Key Pair..."
-msgstr "SILC কী যুগল তৈরি করুন..."
+msgstr "SILC কী যুগল তৈরি..."
 
 #, c-format
 msgid "User <I>%s</I> is not present in the network"
@@ -9736,7 +9667,7 @@
 
 #, c-format
 msgid "channel modes for %s: %s"
-msgstr "%1s-এর চ্যানেল মোড: %2s"
+msgstr "%1$s-এর চ্যানেল মোড: %2$s"
 
 # tithi
 #, c-format
@@ -9745,150 +9676,141 @@
 
 #, c-format
 msgid "Failed to set cmodes for %s"
-msgstr "%s-এর জন্য সি-মোড নির্ধারণ করতে ব্যর্থ"
+msgstr "%s-এর জন্য cmodes নির্ধারণ করতে ব্যর্থ"
 
 #, c-format
 msgid "Unknown command: %s, (may be a client bug)"
-msgstr "অজানা নির্দেশ: %s, (সম্ভবত এটি একটি ক্লায়েন্ট ত্রুটি)"
+msgstr "অজানা কমান্ড: %s, (সম্ভবত এটি ক্লায়েন্ট ত্রুটি)"
 
 msgid "part [channel]:  Leave the chat"
-msgstr "অংশ [চ্যানেল]:  আড্ডা ত্যাগ করুন"
+msgstr "part [channel]:  আড্ডা ত্যাগ করুন"
 
 msgid "leave [channel]:  Leave the chat"
-msgstr "ত্যাগ করুন [চ্যানেল]:  আড্ডা ত্যাগ করুন"
+msgstr "leave [channel]:  আড্ডা ত্যাগ করুন"
 
 # tithi
 msgid "topic [&lt;new topic&gt;]:  View or change the topic"
-msgstr "বিষয়বস্তু [&1lt;নতুন বিষয়বস্তু &2gt;]: বিষয়বস্তু দেখুন বা পরিবর্তন করুন"
+msgstr "topic [&lt;new topic&gt;]: বিষয় দেখুন বা পরিবর্তন করুন"
 
 # tithi
 msgid "join &lt;channel&gt; [&lt;password&gt;]:  Join a chat on this network"
 msgstr ""
-"যুক্ত হোন &1lt;চ্যানেল&2gt; [&3lt;গুপ্তসঙ্কেত&4gt;]:  এই নেটওয়ার্কের একটি আড্ডায় যোগ "
-"দিন"
+"join &lt;channel&gt; [&lt;password&gt;]:  এই নেটওয়ার্কের একটি আড্ডায় যোগ দিন"
 
 msgid "list:  List channels on this network"
-msgstr "তালিকা:  এই নেটওয়ার্কের চ্যানেলসমূহের তালিকা তৈরী করুন"
+msgstr "list:  এই নেটওয়ার্কের চ্যানেলের তালিকা তৈরী করে"
 
 # fix -me tithi
 msgid "whois &lt;nick&gt;:  View nick's information"
-msgstr "কে &1lt;ডাকনাম&2gt;:  ডাকনামের তথ্য দেখুন"
+msgstr "whois &lt;nick&gt;: এই নামের ব্যক্তির তথ্য দেখুন"
 
 # tithi
 msgid "msg &lt;nick&gt; &lt;message&gt;:  Send a private message to a user"
 msgstr ""
-"বার্তা &1lt;ডাকনাম&2gt; &3lt;বার্তা&4gt;:  ব্যবহারকারীকে একটি ব্যক্তিগত বার্তা "
-"পাঠান"
+"msg &lt;nick&gt; &lt;message&gt;:  ব্যবহারকারীকে একটি ব্যক্তিগত বার্তা পাঠান"
 
 # tithi
 msgid "query &lt;nick&gt; [&lt;message&gt;]:  Send a private message to a user"
 msgstr ""
-"জিজ্ঞাসা &1lt;ডাকনাম&2gt; [&3lt;বার্তা&4gt;]:  ব্যবহারকারীকে একটি ব্যক্তিগত বার্তা "
-"পাঠান"
+"query &lt;nick&gt; [&lt;message&gt;]:  ব্যবহারকারীকে একটি ব্যক্তিগত বার্তা পাঠান"
 
 # tithi
 msgid "motd:  View the server's Message Of The Day"
-msgstr "দিনের সেরা বার্তা:  সার্ভারের 'দিনের সেরা বার্তা' দেখুন"
+msgstr "motd:  সার্ভারের দৈনিক বার্তা দেখায়"
 
 # tithi
 msgid "detach:  Detach this session"
-msgstr "বিচ্ছিন্ন:  অধিবেশনটিকে বিচ্ছিন্ন করুন"
+msgstr "detach:  সেশনটিকে বিচ্ছিন্ন করে"
 
 # tithi
 msgid "quit [message]:  Disconnect from the server, with an optional message"
-msgstr "ত্যাগ করুন [বার্তা]:  একটি ঐচ্ছিক বার্তার সহ, সার্ভার হতে বিচ্ছিন্ন করুন"
+msgstr "quit [message]:  একটি ঐচ্ছিক বার্তা সহ, সার্ভার থেকে বিচ্ছিন্ন হোন"
 
 msgid "call &lt;command&gt;:  Call any silc client command"
-msgstr "কল করুন &1lt;নির্দেশ&2gt;:  যেকোনো silc ক্লায়েন্টের নির্দেশ কল করুন"
+msgstr "call &lt;command&gt;:  যেকোনো silc ক্লায়েন্টের কমান্ড কল করুন"
 
 # tithi
 msgid "kill &lt;nick&gt; [-pubkey|&lt;reason&gt;]:  Kill nick"
-msgstr ""
-"মুছে ফেলুন &1lt;ডাকনাম&2gt; [-সর্বসাধারণ-কী|&3lt;কারণ&4gt;]:  ডাকনাম মুছে ফেলুন"
+msgstr "kill &lt;nick&gt; [-pubkey|&lt;reason&gt;]:  এই নাম নিষ্ক্রিয় করুন"
 
 # ডাকনাম
 # tithi
 msgid "nick &lt;newnick&gt;:  Change your nickname"
-msgstr "ডাকনাম &1lt;নতুন ডাকনাম&2gt;:  আপনার ডাকনাম পরিবর্তন করুন"
+msgstr "nick &lt;newnick&gt;:  আপনার ডাকনাম পরিবর্তন করুন"
 
 # tithi
 msgid "whowas &lt;nick&gt;:  View nick's information"
-msgstr "কে ছিল &1lt;ডাকনাম&2gt;:  ডাকনামের তথ্য দেখুন"
+msgstr "whowas &lt;nick&gt;:  এই নামের ব্যক্তির তথ্য দেখুন"
 
 # tithi
 msgid ""
 "cmode &lt;channel&gt; [+|-&lt;modes&gt;] [arguments]:  Change or display "
 "channel modes"
 msgstr ""
-"সি-মোড &1lt;চ্যানেল&2gt; [+|-&3lt;মোডসমূহ&4gt;] [যুক্তি]:  চ্যানেলের মোডসমূহ "
-"পরিবর্তন করুন বা প্রদর্শন করুন"
+"cmode &lt;channel&gt; [+|-&lt;modes&gt;] [arguments]:  চ্যানেলের মোড পরিবর্তন "
+"করুন বা প্রদর্শন করুন"
 
 # tithi
 msgid ""
 "cumode &lt;channel&gt; +|-&lt;modes&gt; &lt;nick&gt;:  Change nick's modes "
 "on channel"
 msgstr ""
-"সি-ইউ-মোড &1lt;চ্যানেল&2gt; +|-&3lt;মোডসমূহ&4gt; &5lt;ডাকনাম&6gt;:  চ্যানেলে "
-"ডাকনামের মোডসমূহ পরিবর্তন করুন"
+"cumode &lt;channel&gt; +|-&lt;modes&gt; &lt;nick&gt;:  চ্যানেলে এই নামের "
+"ব্যক্তির মোড পরিবর্তন করুন"
 
 # tithi
 msgid "umode &lt;usermodes&gt;:  Set your modes in the network"
-msgstr ""
-"ইউ-মোড &1lt;ব্যবহারকারীর-মোডসমূহ&2gt;:  নেটওয়ার্কে আপনার মোডসমূহ নির্ধারণ করুন"
+msgstr "umode &lt;usermodes&gt;:  নেটওয়ার্কে আপনার মোড নির্ধারণ করুন"
 
 # tithi
 msgid "oper &lt;nick&gt; [-pubkey]:  Get server operator privileges"
-msgstr ""
-"অপারেটর &1lt;ডাকনাম&2gt; [-সর্বসাধারণ-কী]:  সার্ভার অপারেটরের প্রাধিকারগুলো গ্রহণ "
-"করুন"
+msgstr "oper &lt;nick&gt; [-pubkey]:  সার্ভার অপারেটরের প্রাধিকারগুলো গ্রহণ করুন"
 
 # tithi
 msgid ""
 "invite &lt;channel&gt; [-|+]&lt;nick&gt;:  invite nick or add/remove from "
 "channel invite list"
 msgstr ""
-"আমন্ত্রন &1lt;চ্যানেল&2gt; [-|+]&3lt;ডাকনাম&4gt;:  ডাকনামে আমন্ত্রন জানান বা "
-"চ্যানেলের আমন্ত্রন তালিকা থেকে যোগ করুন/মুছে ফেলুন"
+"invite &lt;channel&gt; [-|+]&lt;nick&gt;:  এই ডাকনামের ব্যক্তিকে আমন্ত্রন জানান "
+"বা চ্যানেলের আমন্ত্রন তালিকা থেকে যোগ করুন/মুছে ফেলুন"
 
 # tithi
 msgid "kick &lt;channel&gt; &lt;nick&gt; [comment]:  Kick client from channel"
 msgstr ""
-"অপসারণ করুন &1lt;চ্যানেল&2gt; &3lt;ডাকনাম&4gt; [মন্তব্য]:  চ্যানেল থেকে গ্রাহককে "
-"অপসারণ করুন"
+"kick &lt;channel&gt; &lt;nick&gt; [comment]:  চ্যানেল থেকে ক্লায়েন্টকে তিরস্কার "
+"করুন"
 
 # tithi
 msgid "info [server]:  View server administrative details"
-msgstr "তথ্য [সার্ভার]: সার্ভারের প্রশাসনিক বিবরণ দেখুন"
+msgstr "info [server]: সার্ভারের প্রশাসনিক বিবরণ দেখুন"
 
 # tithi
 msgid "ban [&lt;channel&gt; +|-&lt;nick&gt;]:  Ban client from channel"
 msgstr ""
-"নিষিদ্ধ [&1lt;চ্যানেল&2gt; +|-&3lt;ডাকনাম&4gt;]:  চ্যানেল হতে গ্রাহককে নিষিদ্ধ করুন"
+"ban [&lt;channel&gt; +|-&lt;nick&gt;]:  চ্যানেল থেকে ক্লায়েন্টকে নিষিদ্ধ করুন"
 
 # tithi
 msgid "getkey &lt;nick|server&gt;:  Retrieve client's or server's public key"
-msgstr ""
-"কী-গ্রহণ করুন &1lt;ডাকনাম সার্ভার&2gt;:  গ্রাহক বা সার্ভারের সর্বসাধারণ কী পুনরুদ্ধার "
-"করুন"
+msgstr "getkey &lt;nick|server&gt;:  ক্লায়েন্ট বা সার্ভারের পাবলিক কী উদ্ধার করুন"
 
 # tithi
 msgid "stats:  View server and network statistics"
-msgstr "পরিসংখ্যান: সার্ভার এবং নেটওয়ার্কের পরিসংখ্যান দেখুন"
+msgstr "stats: সার্ভার এবং নেটওয়ার্কের পরিসংখ্যান দেখুন"
 
 msgid "ping:  Send PING to the connected server"
-msgstr "পিঙ্গ:  সংযুক্ত সার্ভারে একটি পিঙ্গ পাঠান"
+msgstr "ping:  সংযুক্ত সার্ভারে একটি পিং পাঠান"
 
 # tithi
 msgid "users &lt;channel&gt;:  List users in channel"
-msgstr "ব্যবহারকারীগণ &1lt;চ্যানেল&2gt;:  চ্যানেল ব্যবহারকারীর তালিকা করুন"
+msgstr "users &lt;channel&gt;:  চ্যানেল ব্যবহারকারীদের তালিকা করুন"
 
 # tithi
 msgid ""
 "names [-count|-ops|-halfops|-voices|-normal] &lt;channel(s)&gt;:  List "
 "specific users in channel(s)"
 msgstr ""
-"নামগুলো [-গণনা|-ওপস|-হাফ-ওপস|-কন্ঠস্বর|-স্বাভাবিক] &1lt;চ্যানেল(গুলো)&2gt;:  চ্যানেল"
-"(গুলো) এর উল্লেখিত ব্যবহারকারীদের তালিকা করুন"
+"names [-count|-ops|-halfops|-voices|-normal] &lt;channel(s)&gt;:  চ্যানেল"
+"(গুলো) থেকে নির্বাচিত ব্যবহারকারীদের তালিকা করুন"
 
 #. *< type
 #. *< ui_requirement
@@ -9900,21 +9822,21 @@
 #. *< version
 #. *  summary
 msgid "SILC Protocol Plugin"
-msgstr "SILC প্রটোকল প্লাগইন"
+msgstr "SILC প্রোটোকল প্লাগইন"
 
 # tithi
 #. *  description
 msgid "Secure Internet Live Conferencing (SILC) Protocol"
-msgstr "ইন্টারনেটে সরাসরি মতবিনিময় করার নিরাপদ (SILC) প্রটোকল"
+msgstr "Secure Internet Live Conferencing (SILC) প্রোটোকল"
 
 msgid "Network"
 msgstr "নেটওয়ার্ক"
 
 msgid "Public Key file"
-msgstr "সর্বসাধারণ কী ফাইল"
+msgstr "পাবলিক কী ফাইল"
 
 msgid "Private Key file"
-msgstr "ব্যক্তিগত কী ফাইল"
+msgstr "প্রাইভেট কী ফাইল"
 
 msgid "Cipher"
 msgstr "সাইফার"
@@ -9924,36 +9846,35 @@
 
 # tithi
 msgid "Use Perfect Forward Secrecy"
-msgstr "যথার্থ অগ্রগামী গোপনীয়তা ব্যবহার করুন"
+msgstr "Perfect Forward Secrecy ব্যবহার"
 
 # tithi
 msgid "Public key authentication"
-msgstr "সর্বসাধারণ কী প্রমাণীকরণ"
+msgstr "পাবলিক কী প্রমাণীকরণ"
 
 # tithi
 msgid "Block IMs without Key Exchange"
-msgstr "কী বিনিময় ব্যতিত IM গুলোকে ব্লক করুন"
+msgstr "কী বিনিময় ব্যতিত IM গুলোকে ব্লক করা হবে"
 
 # Fixme
 # block = বন্ধ? - tithi
 msgid "Block messages to whiteboard"
-msgstr "হোয়াটবোর্ডে বার্তাগুলো ব্লক করুন"
+msgstr "হোয়াটবোর্ডের বার্তাগুলো ব্লক করা হবে"
 
 # tithi
 msgid "Automatically open whiteboard"
-msgstr "স্বয়ংক্রিয়ভাবে হোয়াটবোর্ড খুলুন"
+msgstr "স্বয়ংক্রিয়ভাবে হোয়াটবোর্ড খোলা হবে"
 
 # tithi
 msgid "Digitally sign and verify all messages"
-msgstr "সকল বার্তা ডিজিটাল স্বাক্ষর করুন এবং যাচাই করুন"
+msgstr "সব বার্তা ডিজিটাল স্বাক্ষরিত হবে এবং সত্যতা যাচাই করা হবে"
 
 # tithi
 msgid "Creating SILC key pair..."
-msgstr "SILC কী যুগল তৈরি করছে..."
-
-#, fuzzy
+msgstr "SILC কী যুগল তৈরি করা হচ্ছে..."
+
 msgid "Unable to create SILC key pair"
-msgstr "SILC কী যুগল তৈরী করতে পারে না\n"
+msgstr "SILC কী যুগল তৈরী করা সম্ভব হয়নি"
 
 #. Hint for translators: Please check the tabulator width here and in
 #. the next strings (short strings: 2 tabs, longer strings 1 tab,
@@ -9968,7 +9889,7 @@
 
 #, c-format
 msgid "Email: \t\t%s\n"
-msgstr "ই-মেইল: \t\t%s\n"
+msgstr "ইমেইল: \t\t%s\n"
 
 #, c-format
 msgid "Host Name: \t%s\n"
@@ -9984,7 +9905,7 @@
 
 #, c-format
 msgid "Algorithm: \t%s\n"
-msgstr "এলগোরিদম: \t%s\n"
+msgstr "অ্যলগরিদম: \t%s\n"
 
 # tithi
 #, c-format
@@ -10002,7 +9923,7 @@
 "%s\n"
 "\n"
 msgstr ""
-"সর্বসাধারণ কী এর হস্তাঙ্গুলির ছাপ:\n"
+"পাবলিক কী ফিঙ্গারপ্রিন্ট:\n"
 "%s\n"
 "\n"
 
@@ -10012,23 +9933,23 @@
 "Public Key Babbleprint:\n"
 "%s"
 msgstr ""
-"সর্বসাধারণ কী এর ব্যাবল-প্রিন্ট:\n"
+"পাবলিক কী এর ব্যাবলপ্রিন্ট:\n"
 "%s"
 
 msgid "Public Key Information"
-msgstr "সর্বসাধারণ কী এর তথ্য"
+msgstr "পাবলিক কী এর তথ্য"
 
 msgid "Paging"
 msgstr "পেজিং"
 
 msgid "Video Conferencing"
-msgstr "ভিডিও আলোচনা সভা চলছে"
+msgstr "ভিডিও অধিবেশন"
 
 msgid "Computer"
 msgstr "কম্পিউটার"
 
 msgid "PDA"
-msgstr "পিডিএ"
+msgstr "PDA"
 
 msgid "Terminal"
 msgstr "টার্মিনাল"
@@ -10044,95 +9965,93 @@
 "%s sent message to whiteboard on %s channel. Would you like to open the "
 "whiteboard?"
 msgstr ""
-"%2s চ্যানেলের হোয়াটবোর্ডে %1s বার্তা পাঠিয়েছিল। আপনি কি হোয়াটবোর্ডটি খুলতে আগ্রহী?"
+"%2$s চ্যানেলের হোয়াটবোর্ডে %1$s বার্তা পাঠিয়েছিল। আপনি কি হোয়াটবোর্ডটি খুলতে "
+"আগ্রহী?"
 
 msgid "Whiteboard"
-msgstr "হোয়াইট-বোর্ড"
+msgstr "হোয়াইটবোর্ড"
 
 msgid "No server statistics available"
-msgstr "কোনো সার্ভার পরিসংখ্যান সহজলভ্য নয়"
+msgstr "কোনো সার্ভার পরিসংখ্যান নেই"
 
 # tithi
 msgid "Error during connecting to SILC Server"
-msgstr "SILC সার্ভারে সংযোগের সময় ত্রুটি"
+msgstr "SILC সার্ভারে সংযোগকালীন ত্রুটি"
 
 # tithi
 #, c-format
 msgid "Failure: Version mismatch, upgrade your client"
-msgstr "ব্যর্থতা: সংস্করণ অমিল, আপনার ক্লায়েন্ট উন্নততর করুন"
+msgstr "ব্যর্থ: সংস্করণে অমিল, আপনার ক্লায়েন্ট হালনাগাদ করুন"
 
 #, c-format
 msgid "Failure: Remote does not trust/support your public key"
-msgstr "ব্যর্থতা: রিমোট আপনার সর্বাসাধারণ কী বিশ্বাস/সমর্থন করে না"
+msgstr "ব্যর্থ: রিমোট আপনার পাবলিক কী বিশ্বাস/সমর্থন করে না"
 
 # tithi
 #, c-format
 msgid "Failure: Remote does not support proposed KE group"
-msgstr "ব্যর্থ: রিমোট প্রস্তাবিত কেই গ্রুপ সমর্থন করে না"
+msgstr "ব্যর্থ: রিমোট প্রস্তাবিত KE গ্রুপ সমর্থন করে না"
 
 # tithi
 #, c-format
 msgid "Failure: Remote does not support proposed cipher"
-msgstr "ব্যর্থ: রিমোট প্রস্তাবিত ছাইফার সমর্থন করে না"
+msgstr "ব্যর্থ: রিমোট প্রস্তাবিত সাইফার সমর্থন করে না"
 
 # tithi
 #, c-format
 msgid "Failure: Remote does not support proposed PKCS"
-msgstr "ব্যর্থ: রিমোট প্রস্তাবিত পিকেসিএস সমর্থন করে না"
+msgstr "ব্যর্থ: রিমোট প্রস্তাবিত PKCS সমর্থন করে না"
 
 # tithi
 #, c-format
 msgid "Failure: Remote does not support proposed hash function"
-msgstr "ব্যর্থ: রিমোট প্রস্তাবিত হ্যাস ফাংশন সমর্থন করে না"
+msgstr "ব্যর্থ: রিমোট প্রস্তাবিত হ্যাশ ফাংশন সমর্থন করে না"
 
 # tithi
 #, c-format
 msgid "Failure: Remote does not support proposed HMAC"
-msgstr "ব্যর্থ: রিমোট প্রস্তাবিত এইচএমএসি সমর্থন করে না"
+msgstr "ব্যর্থ: রিমোট প্রস্তাবিত HMAC সমর্থন করে না"
 
 # tithi
 #, c-format
 msgid "Failure: Incorrect signature"
-msgstr "ব্যর্থতা: ভূল স্বাক্ষর"
+msgstr "ব্যর্থ: ভুল স্বাক্ষর"
 
 # tithi
 #, c-format
 msgid "Failure: Invalid cookie"
-msgstr "ব্যর্থতা: অবৈধ কুকি"
+msgstr "ব্যর্থ: অকার্যকর কুকি"
 
 # tithi
 #, c-format
 msgid "Failure: Authentication failed"
-msgstr "ব্যর্থতা: প্রমাণীকরণ ব্যর্থ হয়েছে"
-
-# tithi
-#, fuzzy
+msgstr "ব্যর্থ: প্রমাণীকরণ ব্যর্থ হয়েছে"
+
+# tithi
 msgid "Unable to initialize SILC Client connection"
-msgstr "SILC ক্লায়েন্ট সংযোগ প্রাথমিকভাবে প্রস্তুত করতে পারে না"
+msgstr "SILC ক্লায়েন্ট সংযোগ আরম্ভ করা সম্ভব হচ্ছে না"
 
 # fix me tithi
 msgid "John Noname"
-msgstr "জন নোনেম"
-
-# tithi
-#, fuzzy, c-format
+msgstr "আবুল বেনামী"
+
+# tithi
+#, c-format
 msgid "Unable to load SILC key pair: %s"
-msgstr "SILC কী যুগল লোড করতে পারেনি: %s"
+msgstr "SILC কী যুগল লোড করা সম্ভব হয়নি: %s"
 
 msgid "Unable to create connection"
-msgstr "সংযোগ তৈরী করতে ব্যর্থ হয়েছে"
-
-#, fuzzy
+msgstr "সংযোগ তৈরী করতে ব্যর্থ"
+
 msgid "Unknown server response"
-msgstr "অজানা সার্ভার উত্তর।"
-
-#, fuzzy
+msgstr "অজানা সার্ভার উত্তর"
+
 msgid "Unable to create listen socket"
-msgstr "সকেট তৈরী করতে অক্ষম"
+msgstr "লিসেন সকেট তৈরী করতে ব্যর্থ"
 
 # tihi
 msgid "SIP usernames may not contain whitespaces or @ symbols"
-msgstr "SIP এর ব্যবহারকারী-নামগুলো ফাঁকা-জায়গা বা @ চিহ্ন ধারণ করতে পারে না"
+msgstr "SIP এর ব্যবহারকারী নামগুলোতে হোয়াইটস্পেস অথবা @ চিহ্ন থাকতে পারবে না"
 
 msgid "SIP connect server not specified"
 msgstr "SIP সংযোগ সার্ভার সুনির্দিষ্ট নয়"
@@ -10147,43 +10066,43 @@
 #. *< name
 #. *< version
 msgid "SIP/SIMPLE Protocol Plugin"
-msgstr "SIP/সাধারণ প্রটোকল প্লাগইন"
+msgstr "SIP/SIMPLE প্রোটোকল প্লাগইন"
 
 # tithi
 #. *  summary
 msgid "The SIP/SIMPLE Protocol Plugin"
-msgstr "SIP/সাধারণ প্রটোকল প্লাগইন"
+msgstr "SIP/SIMPLE প্রোটোকল প্লাগইন"
 
 # tithi
 msgid "Publish status (note: everyone may watch you)"
-msgstr "প্রকাশ অবস্থা (নোট: আপনাকে সবাই পর্যবেক্ষণ করতে পারে)"
+msgstr "অবস্থা প্রকাশ (নোট: আপনাকে যে কেউ পর্যবেক্ষণ করতে পারে)"
 
 msgid "Use UDP"
-msgstr "UDP ব্যবহার করুন"
+msgstr "UDP ব্যবহার করা হবে"
 
 msgid "Use proxy"
-msgstr "প্রক্সি ব্যবহার করুন"
+msgstr "প্রক্সি ব্যবহার করা হবে"
 
 msgid "Proxy"
 msgstr "প্রক্সি"
 
 msgid "Auth User"
-msgstr "স্বীকৃত ব্যবহারকারী"
+msgstr "যাচাইকৃত ব্যবহারকারী "
 
 msgid "Auth Domain"
-msgstr "স্বীকৃত ডোমেইন"
+msgstr "যাচাইকৃত ডোমেইন"
 
 msgid "join &lt;room&gt;:  Join a chat room on the Yahoo network"
-msgstr "যোগ দিন &1lt;রুম&2gt;:  ইয়াহু নেটওয়ার্কের একটি আড্ডার রুমে যোগ দিন"
+msgstr "join &lt;room&gt;:  ইয়াহু নেটওয়ার্কের একটি আড্ডার আসরে যোগ দিন"
 
 msgid "list: List rooms on the Yahoo network"
-msgstr "তালিকা: ইয়াহু নেটওয়ার্কে রুমের তালিকা করুন"
+msgstr "list: ইয়াহু নেটওয়ার্কে আসরের তালিকা দিন"
 
 msgid "doodle: Request user to start a Doodle session"
-msgstr "হিজিবিজি: ব্যবহারকারীকে একটি হিজিবিজি অধিবেশন শুরু করতে অনুরোধ করুন"
+msgstr "doodle: ব্যবহারকারীকে একটি Doodle সেশন শুরু করতে অনুরোধ করুন"
 
 msgid "Yahoo ID..."
-msgstr "ইয়াহু আইডি..."
+msgstr "ইয়াহু ID..."
 
 #. *< type
 #. *< ui_requirement
@@ -10195,15 +10114,14 @@
 #. *< version
 #. *  summary
 #. *  description
-#, fuzzy
 msgid "Yahoo! Protocol Plugin"
-msgstr "ইয়াহু প্রটোকল প্লাগইন"
+msgstr "ইয়াহু! প্রোটোকল প্লাগইন"
 
 msgid "Pager server"
-msgstr "পেজার সার্ভার"
+msgstr "পেইজার সার্ভার"
 
 msgid "Pager port"
-msgstr "পেজার পোর্ট"
+msgstr "পেইজার পোর্ট"
 
 msgid "File transfer server"
 msgstr "ফাইল স্থানান্তর সার্ভার"
@@ -10212,14 +10130,14 @@
 msgstr "ফাইল স্থানান্তর পোর্ট"
 
 msgid "Chat room locale"
-msgstr "আড্ডা রুমের অবস্থা"
+msgstr "আড্ডার আসরের লোক্যাল"
 
 # tithi
 msgid "Ignore conference and chatroom invitations"
-msgstr "আলোচনা সভা এবং আড্ডার-রুমের আমন্ত্রন অগ্রাহ্য করুন"
+msgstr "অধিবেশন এবং আড্ডার আসরের আমন্ত্রন অগ্রাহ্য করা হবে"
 
 msgid "Chat room list URL"
-msgstr "আড্ডার রুম তালিকার ইউআরএল"
+msgstr "আড্ডার আসরের তালিকার URL"
 
 msgid "Yahoo Chat server"
 msgstr "ইয়াহু আড্ডা সার্ভার"
@@ -10227,9 +10145,8 @@
 msgid "Yahoo Chat port"
 msgstr "ইয়াহু আড্ডার পোর্ট"
 
-#, fuzzy
 msgid "Yahoo JAPAN ID..."
-msgstr "ইয়াহু আইডি..."
+msgstr "ইয়াহু জাপান ID..."
 
 #. *< type
 #. *< ui_requirement
@@ -10241,12 +10158,11 @@
 #. *< version
 #. *  summary
 #. *  description
-#, fuzzy
 msgid "Yahoo! JAPAN Protocol Plugin"
-msgstr "ইয়াহু প্রটোকল প্লাগইন"
+msgstr "ইয়াহু! জাপান প্রোটোকল প্লাগইন"
 
 msgid "Your SMS was not delivered"
-msgstr ""
+msgstr "আপনার SMS প্রেরণ করা যায়নি"
 
 # tithi
 msgid "Your Yahoo! message did not get sent."
@@ -10262,42 +10178,40 @@
 "%s has (retroactively) denied your request to add them to your list for the "
 "following reason: %s."
 msgstr ""
-"%s (আইনগতভাবে) নিম্নলিখিত কারণের জন্য আপনার তালিকাতে তাদের যোগ করতে আপনার "
-"অনুরোধ বাতিল করেছে: %s।"
+"%s (আইনগতভাবে) এই কারণে আপনার তালিকাতে তাদের যোগ করার অনুরোধ প্রত্যাখ্যান করেছে: "
+"%s।"
 
 # tithi
 #, c-format
 msgid "%s has (retroactively) denied your request to add them to your list."
-msgstr "%s (আইনগতভাবে) আপনার তালিকাতে তাদের যোগ করতে আপনার অনুরোধ বাতিল করেছে।"
+msgstr "%s (আইনগতভাবে) আপনার তালিকাতে তাদের যোগ করার অনুরোধ প্রত্যাখ্যান করেছে।"
 
 msgid "Add buddy rejected"
-msgstr "বন্ধু যোগ প্রত্যাখ্যান করেছে"
+msgstr "বন্ধু যোগ প্রত্যাখ্যান করা হয়েছে"
 
 #. Some error in the received stream
-#, fuzzy
 msgid "Received invalid data"
-msgstr "সার্ভারের সাথে সংযুক্ত অবস্থায় অবৈধ উপাত্ত গ্রহণ করেছে।"
+msgstr "অকার্যকর ডাটা গৃহীত হয়ে‌ছে"
 
 # tithi
 #. security lock from too many failed login attempts
-#, fuzzy
 msgid ""
 "Account locked: Too many failed login attempts.  Logging into the Yahoo! "
 "website may fix this."
-msgstr "অজানা ত্রুটি নাম্বার %d। ইয়াহু! ওয়েব সাইটে লগইন করলে হয়ত এটি ঠিক হতে পারে।"
+msgstr ""
+"একাউন্ট আবদ্ধ: অত্যধিকবার লগইন করার ব্যর্থ চেষ্টা। ইয়াহু! তে লগইন করলে হয়তো এটি ঠিক "
+"হবে।"
 
 # tithi
 #. indicates a lock of some description
-#, fuzzy
 msgid ""
 "Account locked: Unknown reason.  Logging into the Yahoo! website may fix "
 "this."
-msgstr "অজানা ত্রুটি নাম্বার %d। ইয়াহু! ওয়েব সাইটে লগইন করলে হয়ত এটি ঠিক হতে পারে।"
+msgstr "একাউন্ট আবদ্ধ: অজানা কারন। ইয়াহু! তে লগইন করলে হয়তো এটি ঠিক হবে।"
 
 #. username or password missing
-#, fuzzy
 msgid "Username or password missing"
-msgstr "ভুল ব্যবহারকারীর নাম বা গুপ্তসংকেত"
+msgstr "ব্যবহারকারীর নাম অথবা পাসওয়ার্ড অনুপস্থিত"
 
 # tithi
 #, c-format
@@ -10306,12 +10220,12 @@
 "method.  You will probably not be able to successfully sign on to Yahoo.  "
 "Check %s for updates."
 msgstr ""
-"ইয়াহু সার্ভার একটি অশনাক্তকৃত প্রমাণীকরণ প্রক্রিয়ার ব্যবহার অনুরোধ করেছে।  আপনি সম্ভবত "
-"ইয়াহুতে সফলভাবে যুক্ত হতে পারবেন না।  হালনাগাদসমূহের জন্য %s পরীক্ষা করুন।"
+"ইয়াহু সার্ভার একটি অজানা প্রমাণীকরণ প্রক্রিয়ার ব্যবহার অনুরোধ করেছে। আপনি সম্ভবত "
+"ইয়াহুতে সফলভাবে লগইন করতে পারবেন না। হালনাগাদের জন্য %s দেখুন।"
 
 # tithi
 msgid "Failed Yahoo! Authentication"
-msgstr "ইয়াহু! প্রমাণীকরণ ব্যর্থ হয়েছে"
+msgstr "ইয়াহু! প্রমাণীকরণ ব্যর্থ"
 
 #, c-format
 msgid ""
@@ -10322,47 +10236,41 @@
 "\"হ্যাঁ\" ক্লিক করলে আপনার বন্ধু অপসারিত হবে এবং অগ্রাহ্য করা হবে।"
 
 msgid "Ignore buddy?"
-msgstr "বন্ধু কি অগ্রাহ্য করবেন?"
+msgstr "বন্ধুকে অগ্রাহ্য করবেন?"
 
 # tithi
 msgid "Your account is locked, please log in to the Yahoo! website."
-msgstr "আপনার একাউন্ট বন্ধ, অনুগ্রহ করে ইয়াহু! ওয়েবসাইটে লগইন করুন।"
+msgstr "আপনার একাউন্টটি আবদ্ধ, অনুগ্রহ করে ইয়াহু! ওয়েবসাইটে লগইন করুন।"
 
 # tithi
 #, c-format
 msgid "Unknown error number %d. Logging into the Yahoo! website may fix this."
-msgstr "অজানা ত্রুটি নাম্বার %d। ইয়াহু! ওয়েব সাইটে লগইন করলে হয়ত এটি ঠিক হতে পারে।"
-
-# tithi
-#, fuzzy, c-format
+msgstr "অজানা ত্রুটি নম্বার %d। ইয়াহু! ওয়েব সাইটে লগইন করলে হয়ত এটি ঠিক হতে পারে।"
+
+# tithi
+#, c-format
 msgid "Unable to add buddy %s to group %s to the server list on account %s."
-msgstr "%3s একাউন্টের সার্ভার তালিকায় %2s গ্রুপে %1s বন্ধুকে যোগ করতে পারেনি।"
-
-# tithi
-#, fuzzy
+msgstr "%3$s একাউন্টের সার্ভার তালিকায় %2$s  দলে %1$s কে যোগ করা সম্ভব হয়নি।"
+
+# tithi
 msgid "Unable to add buddy to server list"
-msgstr "সার্ভার তালিকায় বন্ধু যোগ করতে পারেনি।"
+msgstr "সার্ভার তালিকায় বন্ধু যোগ করা সম্ভব হয়নি"
 
 # tithi
 #, c-format
 msgid "[ Audible %s/%s/%s.swf ] %s"
-msgstr "[ শ্রবণযোগ্য %1s/%2s/%3s.swf ] %4s"
-
-#, fuzzy
+msgstr "[ শ্রবণযোগ্য %1$s/%2$s/%3$s.swf ] %4$s"
+
 msgid "Received unexpected HTTP response from server"
-msgstr "সার্ভার থেকে অপ্রত্যাশিত এইচটিটিপি সাড়া পেয়েছে।"
-
-#, fuzzy, c-format
+msgstr "সার্ভার থেকে অপ্রত্যাশিত HTTP উত্তর পাওয়া গেছে"
+
+#, c-format
 msgid "Lost connection with %s: %s"
-msgstr ""
-"%1s এর সাথে সংযোগ হারিয়েছে:\n"
-"%2s"
-
-#, fuzzy, c-format
+msgstr "%1$s এর সাথে সংযোগ বিচ্ছিন্ন: %2$s"
+
+#, c-format
 msgid "Unable to establish a connection with %s: %s"
-msgstr ""
-"সার্ভারের সাথে সংযোগ স্থাপন করতে পারে না:\n"
-"%s"
+msgstr "%1$s এর সাথে সংযোগ স্থাপনে ব্যর্থ: %2$s"
 
 msgid "Not at Home"
 msgstr "বাসায় নেই"
@@ -10378,53 +10286,53 @@
 
 # fix me tithi
 msgid "Stepped Out"
-msgstr "চলে গেছে"
+msgstr "বের হয়ে গিয়েছি"
 
 msgid "Not on server list"
 msgstr "সার্ভার তালিকায় নেই"
 
 # tithi
 msgid "Appear Online"
-msgstr "অনলাইনে আছেন"
+msgstr "অনলাইনে দেখান"
 
 # tithi
 msgid "Appear Permanently Offline"
-msgstr "স্থায়ীভাবে অফলাইনে আছেন"
+msgstr "স্থায়ীভাবে অফলাইনে দেখান"
 
 msgid "Presence"
 msgstr "উপস্থিতি"
 
 msgid "Appear Offline"
-msgstr "অফলাইনে উপস্থিত"
+msgstr "অফলাইনে দেখান"
 
 # tithi
 msgid "Don't Appear Permanently Offline"
-msgstr "অফলাইনে স্থায়ীভাবে থাকছে না"
+msgstr "স্থায়ীভাবে অফলাইনে দেখানো হবে না"
 
 msgid "Join in Chat"
 msgstr "আড্ডায় যোগ দিন"
 
 msgid "Initiate Conference"
-msgstr "আলোচনা সভা শুরু করুন"
+msgstr "অধিবেশন শুরু করুন"
 
 msgid "Presence Settings"
-msgstr "উপস্থিতির বিন্যাসনসমূহ"
+msgstr "উপস্থিতি সেটিং"
 
 # tithi
 msgid "Start Doodling"
-msgstr "হিজিবিজি কাজ শুরু করুন"
+msgstr "Doodle করা শুরু করুন"
 
 msgid "Select the ID you want to activate"
-msgstr ""
+msgstr "আপনি যে ID টি সক্রিয় করতে চান তা নির্বাচন করুন"
 
 msgid "Join whom in chat?"
 msgstr "কার সাথে আড্ডায় যোগ দিতে চান?"
 
 msgid "Activate ID..."
-msgstr "আইডি সক্রিয় করুন..."
+msgstr "ID সক্রিয়করণ..."
 
 msgid "Join User in Chat..."
-msgstr "ব্যবহারকারীকে আড্ডায় যোগ করুন..."
+msgstr "ব্যবহারকারীকে আড্ডায় যোগ..."
 
 msgid "Open Inbox"
 msgstr "ইনবক্স খুলুন"
@@ -10439,14 +10347,14 @@
 msgstr "সংযুক্ত করতে ব্যর্থ।"
 
 msgid "Unable to establish file descriptor."
-msgstr "ফাইল বর্ণনাকারী স্থাপন করতে অক্ষম।"
+msgstr "ফাইল বর্ণনাকারী স্থাপন করতে ব্যর্থ।"
 
 #, c-format
 msgid "%s is trying to send you a group of %d files.\n"
-msgstr "%s আপনাকে %d ফাইলের একটি গ্রুপ পাঠানোর চেষ্টা করছে।\n"
+msgstr "%s আপনাকে %d টি ফাইল একসাথে পাঠানোর চেষ্টা করছে।\n"
 
 msgid "Write Error"
-msgstr "লিখন ত্রুটি"
+msgstr "লিখতে ত্রুটি"
 
 msgid "Yahoo! Japan Profile"
 msgstr "ইয়াহু! জাপান প্রোফাইল"
@@ -10458,142 +10366,134 @@
 msgid ""
 "Sorry, profiles marked as containing adult content are not supported at this "
 "time."
-msgstr ""
-"দুঃখিত, প্রোফাইলগুলো প্রাপ্তবয়স্ক উপাদান ধারণকারী হিসেবে চিহ্নিত হওয়ার কারণে এটি "
-"এখন সমর্থিত নয়।"
+msgstr "দুঃখিত, প্রাপ্তবয়স্ক উপাদান ধারণকারী প্রোফাইলগুলো এখনও সমর্থিত নয়।"
 
 # tithi
 msgid ""
 "If you wish to view this profile, you will need to visit this link in your "
 "web browser:"
 msgstr ""
-"আপনি যদি এই বৃত্তান্তটি দেখতে চান, আপনাকে আপনার ওয়েব ব্রাউজারের এই লিংকটি "
-"পরিদর্শন করতে হবে:"
+"আপনি যদি এই প্রোফাইলটি দেখতে চান, আপনাকে ওয়েব ব্রাউজারের এই লিংকটি পরিদর্শন "
+"করতে হবে:"
 
 msgid "Yahoo! ID"
-msgstr "ইয়াহু! আইডি"
+msgstr "ইয়াহু! ID"
 
 msgid "Hobbies"
 msgstr "শখ"
 
 msgid "Latest News"
-msgstr "সাম্প্রতিক খবর"
+msgstr "সর্বশেষ খবর"
 
 msgid "Home Page"
-msgstr "হোম পেজ"
+msgstr "হোমপেইজ"
 
 msgid "Cool Link 1"
-msgstr "কুল লিংক ১"
+msgstr "দারুন লিংক ১"
 
 msgid "Cool Link 2"
-msgstr "কুল লিংক ২"
+msgstr "দারুন লিংক ২"
 
 msgid "Cool Link 3"
-msgstr "কুল লিংক ৩"
+msgstr "দারুন লিংক ৩"
 
 msgid "Last Update"
-msgstr "সর্বশেষ পরিবর্ধন"
+msgstr "সর্বশেষ হালনাগাদ"
 
 # tithi
 msgid ""
 "This profile is in a language or format that is not supported at this time."
-msgstr "এই বৃত্তান্তটি এমন একটি ভাষায় বা বিন্যাসে যা এখন সমর্থিত নয়।"
+msgstr "এই প্রোফাইলটি এমন একটি ভাষায় বা বিন্যাসে যা এখনও সমর্থিত নয়।"
 
 # tithi
 msgid ""
 "Could not retrieve the user's profile. This most likely is a temporary "
 "server-side problem. Please try again later."
 msgstr ""
-"ব্যবহারকারীর বৃত্তান্ত উদ্ধার করতে পারনি। এটি সম্ভাবত একটি অস্থায়ী সার্ভার-পার্শ্বের "
-"সমস্যা। অনুগ্রহ করে পরবর্তীতে আবার চেষ্টা করুন।"
+"ব্যবহারকারীর প্রোফাইল উদ্ধার করা সম্ভব হয়নি। এটি সম্ভাবত একটি অস্থায়ী সার্ভার-"
+"প্রান্তের সমস্যা। অনুগ্রহ করে পরবর্তীতে আবার চেষ্টা করুন।"
 
 msgid ""
 "Could not retrieve the user's profile. This most likely means that the user "
 "does not exist; however, Yahoo! sometimes does fail to find a user's "
 "profile. If you know that the user exists, please try again later."
 msgstr ""
-"ব্যবহারকারীর বৃত্তান্ত উদ্ধার করতে পারেনি। এটির অর্থ হলো যে ব্যবহারকারী বিদ্যমান "
-"নেই; যাই হোক, ইয়্যাহু! কখনোও ব্যবহারকারীর বৃত্তান্ত খুঁজে পেতে ব্যর্থ হয়। আপনি যদি "
-"জানেন যে ব্যবহারকারী বিদ্যমান, অনুগ্রহ করে পরবর্তীতে আবার চেষ্টা করুন।"
+"ব্যবহারকারীর প্রোফাইল উদ্ধার করা সম্ভব হয়নি। এটির অর্থ হতে পারে যে ব্যবহারকারী "
+"বিদ্যমান নেই;  তবে, ইয়্যাহু! মাঝেমধ্যে ব্যবহারকারীর প্রোফাইল খুঁজে পেতে ব্যর্থ হয়। "
+"আপনি যদি জানেন যে এই ব্যবহারকারী আছেন, অনুগ্রহ করে পরবর্তীতে আবার চেষ্টা করুন।"
 
 msgid "The user's profile is empty."
 msgstr "ব্যবহারকারীর প্রোফাইল ফাঁকা।"
 
-# tithi
-#, c-format
-msgid "%s declined your conference invitation to room \"%s\" because \"%s\"."
-msgstr ""
-"\"%3s\" এর কারণে %1s \"%2s\" রুমে আপনার আলোচনা সভার আমন্ত্রণ অস্বীকার করেছেন।"
-
-msgid "Invitation Rejected"
-msgstr "আমন্ত্রন প্রত্যাখ্যান করা হয়েছে"
+#, c-format
+msgid "%s has declined to join."
+msgstr "%s যোগ দিতে অনিচ্ছুক।"
 
 msgid "Failed to join chat"
 msgstr "আড্ডায় যোগ দিতে ব্যর্থ"
 
 #. -6
 msgid "Unknown room"
-msgstr "অজানা রুম"
+msgstr "অজানা আসর"
 
 #. -15
 msgid "Maybe the room is full"
-msgstr "সম্ভবত রুমটি পূর্ণ"
+msgstr "সম্ভবত আসরটি পূর্ণ"
 
 #. -35
 msgid "Not available"
-msgstr "বিদ্যমান নেই"
+msgstr "অনুপস্থিত"
 
 # tithi
 msgid ""
 "Unknown error. You may need to logout and wait five minutes before being "
 "able to rejoin a chatroom"
 msgstr ""
-"অজানা ত্রুটি। একটি আড্ডা-রুমে পুনরায় যোগদানের পূর্বে আপনাকে সম্ভবত লগ আউট করতে হবে "
-"এবং পাঁচ মিনিট অপেক্ষা করতে হবে।"
+"অজানা ত্রুটি। একটি আড্ডার আসের পুনরায় যোগ দিতে হলে আপনাকে সম্ভবত লগ আউট করে পাঁচ "
+"মিনিট অপেক্ষা করতে হবে।"
 
 #, c-format
 msgid "You are now chatting in %s."
 msgstr "আপনি এখন %s-এ আড্ডা দিচ্ছেন।"
 
 msgid "Failed to join buddy in chat"
-msgstr "বন্ধুকে আড্ডায় অংশগ্রহন করাতে ব্যর্থ হয়েছে"
+msgstr "বন্ধুকে আড্ডায় অংশগ্রহন করাতে ব্যর্থ"
 
 msgid "Maybe they're not in a chat?"
 msgstr "সম্ভবত তারা আড্ডায় নেই?"
 
 msgid "Fetching the room list failed."
-msgstr "রুমের তালিকা খুঁজতে ব্যর্থ হয়েছে।"
+msgstr "আসরের তালিকা খুঁজে পেতে ব্যর্থ।"
 
 msgid "Voices"
-msgstr "কন্ঠস্বরসমূহ"
+msgstr "কন্ঠ"
 
 msgid "Webcams"
-msgstr "ওয়েবক্যামসমূহ"
+msgstr "ওয়েবক্যাম"
 
 msgid "Connection problem"
-msgstr "সংযোগ সমস্যা"
+msgstr "সংযোগে সমস্যা"
 
 msgid "Unable to fetch room list."
-msgstr "রুমের তালিকা খুঁজতে অক্ষম।"
+msgstr "আসরের তালিকা খুঁজে পেতে ব্যর্থ।"
 
 msgid "User Rooms"
-msgstr "ব্যবহারকারীর রুম"
-
-# tithi
-#, fuzzy
+msgstr "ব্যবহারকারীর আসর"
+
+# tithi
 msgid "Connection problem with the YCHT server"
-msgstr "YCHT সার্ভারের সাথে সংযোগে সমস্যা।"
+msgstr "YCHT সার্ভারের সাথে সংযোগে সমস্যা"
 
 msgid ""
 "(There was an error converting this message.\t Check the 'Encoding' option "
 "in the Account Editor)"
 msgstr ""
-"(এই বার্তাটি রুপান্তরে একটি ত্রুটি ছিল।                      একাউন্ট সম্পাদকে "
-"'সঙ্কেতায়ন' পছন্দ পরীক্ষা করুন)"
+"(এই বার্তাটি রূপান্তরে ত্রুটি হয়েছে।             ‌‌‌‌একাউন্ট সম্পাদকে 'এনকোডিং' অপশনটি "
+"দেখুন)"
 
 #, c-format
 msgid "Unable to send to chat %s,%s,%s"
-msgstr "%1s,%2s,%3s আড্ডায় পাঠাতে সমর্থ নয়।"
+msgstr "%1$s,%2$s,%3$s আড্ডায় পাঠাতে ব্যর্থ।"
 
 msgid "Hidden or not logged-in"
 msgstr "লুকানো বা লগইন অবস্থায় নেই"
@@ -10601,7 +10501,7 @@
 # tithi
 #, c-format
 msgid "<br>At %s since %s"
-msgstr "<br>%s হতে %s এ"
+msgstr "<br>%1$s তে %2$s থেকে"
 
 msgid "Anyone"
 msgstr "যে কেউ"
@@ -10611,81 +10511,81 @@
 
 # tithi
 msgid "_Instance:"
-msgstr "ঘটনা: (_I)"
+msgstr "ইনস্ট্যান্স (_I):"
 
 msgid "_Recipient:"
-msgstr "প্রাপক: (_R)"
+msgstr "প্রাপক (_R):"
 
 # tithi
 #, c-format
 msgid "Attempt to subscribe to %s,%s,%s failed"
-msgstr "%1s,%2s,%3s এর গ্রাহক হবার চেষ্টা ব্যর্থ হয়েছে"
+msgstr "%1$s,%2$s,%3$s এ সাবস্ক্রাইব করার চেষ্টা ব্যর্থ হয়েছে"
 
 # tithi
 msgid "zlocate &lt;nick&gt;: Locate user"
-msgstr "z-নির্দেশ করুন &1lt;ডাকনাম&2gt;: ব্যবহারকারী নির্দেশ করুন"
+msgstr "zlocate &lt;nick&gt;: ব্যবহারকারীর অবস্থান নির্ধারণ করুন"
 
 # tithi
 msgid "zl &lt;nick&gt;: Locate user"
-msgstr "zl &lt;ডাকনাম&gt;: ব্যবহারকারী নির্দেশ করুন"
+msgstr "zl &lt;nick&gt;: ব্যবহারকারীর অবস্থান নির্ধারণ করুন"
 
 # tithi
 msgid "instance &lt;instance&gt;: Set the instance to be used on this class"
-msgstr "দৃষ্টান্ত &1lt;দৃষ্টান্ত&2gt;: এই শ্রেনীতে ব্যবহারের জন্য দৃষ্টান্ত নির্ধারণ করুন"
+msgstr "instance &lt;instance&gt;: এই ক্লাসে ব্যবহারের জন্য ইনস্ট্যান্স নির্ধারণ করুন"
 
 # tithi
 msgid "inst &lt;instance&gt;: Set the instance to be used on this class"
-msgstr "দৃষ্টান্ত &1lt;দৃষ্টান্ত&2gt;: এই শ্রেণীতে ব্যবহারের জন্য দৃষ্টান্ত নির্ধারণ করুন"
+msgstr "inst &lt;instance&gt;: এই ক্লাসে ব্যবহারের জন্য ইনস্ট্যান্স নির্ধারণ করুন"
 
 # tithi
 msgid "topic &lt;instance&gt;: Set the instance to be used on this class"
-msgstr "বিষয়বস্তু &1lt;দৃষ্টান্ত&2gt;: এই শ্রেণীতে ব্যবহারের জন্য দৃষ্টান্ত নির্ধারণ করুন"
+msgstr "topic &lt;instance&gt;: এই ক্লাসে ব্যবহারের জন্য ইনস্ট্যান্স নির্ধারণ করুন"
 
 # tithi
 msgid "sub &lt;class&gt; &lt;instance&gt; &lt;recipient&gt;: Join a new chat"
 msgstr ""
-"বিষয় &1lt;শ্রেণী&2gt; &3lt;দৃষ্টান্ত&4gt; &5lt;প্রাপক&6gt;: একটি নতুন আড্ডায় "
-"অংশগ্রহন করুন"
+"sub &lt;class&gt; &lt;instance&gt; &lt;recipient&gt;: একটি নতুন আড্ডায় অংশগ্রহন "
+"করুন"
 
 # tithi
 msgid ""
 "zi &lt;instance&gt;: Send a message to &lt;message,<i>instance</i>,*&gt;"
-msgstr "zi &1lt;দৃষ্টান্ত&2gt;; একটি বার্তা পাঠান &3It;বার্তা,<i>দৃষ্টান্ত</i>,*&4gt;"
-
-# fix-me tithi
+msgstr ""
+"zi &lt;instance&gt;:  &lt;message,<i>instance</i>,*&gt; এ একটি বার্তা পাঠান"
+
 msgid ""
 "zci &lt;class&gt; &lt;instance&gt;: Send a message to &lt;<i>class</i>,"
 "<i>instance</i>,*&gt;"
 msgstr ""
-"zci &1lt;শ্রেণী&2gt; &3lt;দৃষ্টান্ত&4gt;: একটি বার্তা পাঠান &5lt;<i>শ্রেণী</i>,"
-"<i>দৃষ্টান্ত</i>,*&6gt;"
+"zci &lt;class&gt; &lt;instance&gt;: &lt;<i>class</i>,<i>instance</i>,*&gt; এ "
+"একটি বার্তা পাঠান"
 
 # fix-me tithi
 msgid ""
 "zcir &lt;class&gt; &lt;instance&gt; &lt;recipient&gt;: Send a message to &lt;"
 "<i>class</i>,<i>instance</i>,<i>recipient</i>&gt;"
 msgstr ""
-"zcir &1lt;শ্রেণী&2gt; &3lt;দৃষ্টান্ত&4gt; &5lt;প্রাপক&6gt;: একটি বার্তা পাঠান &7lt;"
-"<i>শ্রেণী</i>,<i>দৃষ্টান্ত</i>,<i>প্রাপক</i>&8gt;"
+"zcir &lt;class&gt; &lt;instance&gt; &lt;recipient&gt;: &lt;<i>class</i>,"
+"<i>instance</i>,<i>recipient</i>&gt; এ একটি বার্তা পাঠান"
 
 # fix-me tithi
 msgid ""
 "zir &lt;instance&gt; &lt;recipient&gt;: Send a message to &lt;MESSAGE,"
 "<i>instance</i>,<i>recipient</i>&gt;"
 msgstr ""
-"zir &1lt;দৃষ্টান্ত&2gt; &3lt;প্রাপক&4gt;: একটি বার্তা পাঠান &5lt;বার্তা,<i>দৃষ্টান্ত</"
-"i>,<i>প্রাপক</i>&6gt;"
+"zir &lt;instance&gt; &lt;recipient&gt;: &lt;MESSAGE,<i>instance</i>,"
+"<i>recipient</i>&gt; এ একটি বার্তা পাঠান"
 
 # fix-me tithi
 msgid "zc &lt;class&gt;: Send a message to &lt;<i>class</i>,PERSONAL,*&gt;"
-msgstr "zc &1lt;শ্রেণী&2gt;: একটি বার্তা পাঠান &3lt;<i>শ্রেণী</i>,ব্যক্তিগত,*&4gt;"
+msgstr "zc &lt;class&gt;:  &lt;<i>class</i>,PERSONAL,*&gt; এ একটি বার্তা পাঠান"
 
 msgid "Resubscribe"
 msgstr "পুনরায় গ্রাহক হোন"
 
 # fix me tithi
 msgid "Retrieve subscriptions from server"
-msgstr "সার্ভার থেকে শেয়ারসমূহ উদ্ধার করুন"
+msgstr "সার্ভার থেকে সাবস্ক্রিপশন বের করে আনুন"
 
 # fix me tithi
 #. *< type
@@ -10699,52 +10599,52 @@
 #. *  summary
 #. *  description
 msgid "Zephyr Protocol Plugin"
-msgstr "Zephyr প্রটোকল প্লাগইন"
+msgstr "Zephyr প্রোটোকল প্লাগইন"
 
 msgid "Use tzc"
-msgstr "tzc ব্যবহার করুন"
+msgstr "tzc ব্যবহার"
 
 msgid "tzc command"
-msgstr "tzc নির্দেশ"
+msgstr "tzc কমান্ড"
 
 # tithi
 msgid "Export to .anyone"
-msgstr ".যেকারও কাছে রপ্তানি করুন"
+msgstr ".anyone এ এক্সপোর্ট"
 
 msgid "Export to .zephyr.subs"
-msgstr ".zephyr.subs এ রপ্তানি করুন"
+msgstr ".zephyr.subs এ এক্সপোর্ট"
 
 # tithi
 msgid "Import from .anyone"
-msgstr ".যেকারও কাছ থেকে আমদানি করুন"
+msgstr ".anyone থেকে ইমপোর্ট করা হবে"
 
 # fix me tithi
 msgid "Import from .zephyr.subs"
-msgstr ".zephyr.subs থেকে আমদানি করুন"
+msgstr ".zephyr.subs থেকে ইমপোর্ট করা হবে"
 
 msgid "Realm"
 msgstr "এলাকা"
 
 # tithi
 msgid "Exposure"
-msgstr "অনাবৃতকরণ"
-
-#, fuzzy, c-format
+msgstr "আলোকসম্পাত"
+
+#, c-format
 msgid "Unable to parse response from HTTP proxy: %s"
-msgstr "HTTP প্রক্সি থেকে সাড়া গ্রহণ করতে অক্ষম: %s\n"
+msgstr "HTTP প্রক্সি থেকে উত্তর পার্স করতে ব্যর্থ: %s"
 
 #, c-format
 msgid "HTTP proxy connection error %d"
-msgstr "এইচটিটিপি প্রক্সি সংযোগের %d ত্রুটি"
-
-# tithi
-#, fuzzy, c-format
+msgstr "HTTP প্রক্সি সংযোগে ত্রুটি %d"
+
+# tithi
+#, c-format
 msgid "Access denied: HTTP proxy server forbids port %d tunneling"
-msgstr "অনুমতি বাতিল: HTTP প্রক্সি সার্ভার %d পোর্ট টানেলকরণে বাধা দেয়।"
+msgstr "প্রবেশ অননুমোদিত: HTTP প্রক্সি সার্ভার %d পোর্টে টানেল করতে বাধা দেয়।"
 
 #, c-format
 msgid "Error resolving %s"
-msgstr "%s স্থিরকরণে ত্রুটি"
+msgstr "%s নিরূপণে ত্রুটি"
 
 # tithi
 #, c-format
@@ -10769,42 +10669,42 @@
 #. * A wrapper for purple_request_action() that uses Accept and Cancel buttons.
 #.
 msgid "_Accept"
-msgstr "গ্রহণ করুন (_A)"
+msgstr "গ্রহণ (_A)"
 
 #. *
 #. * The default message to use when the user becomes auto-away.
 #.
 msgid "I'm not here right now"
-msgstr "এই মুহুর্তে আমি এখানে নেই"
+msgstr "এই মূহুর্তে আমি এখানে নেই"
 
 msgid "saved statuses"
-msgstr "সংরক্ষিত অবস্থাসমূহ"
+msgstr "সংরক্ষিত অবস্থা"
 
 #, c-format
 msgid "%s is now known as %s.\n"
-msgstr "%1s এখন %2s নামে পরিচিত।\n"
+msgstr "%1$s এখন %2$s নামে পরিচিত।\n"
 
 #, c-format
 msgid ""
 "%s has invited %s to the chat room %s:\n"
 "%s"
 msgstr ""
-"%1s %2s কে %3s আড্ডার রুমে আমন্ত্রন জানিয়েছেন:\n"
-"%4s"
+"%1$s %2$s কে %3$s আড্ডার আসরে আমন্ত্রন জানিয়েছে:\n"
+"%4$s"
 
 #, c-format
 msgid "%s has invited %s to the chat room %s\n"
-msgstr "%1s %2s কে %3s আড্ডার রুমে আমন্ত্রন জানিয়েছেন\n"
+msgstr "%1$s %2$s কে %3$s আড্ডার আসরে আমন্ত্রন জানিয়েছে\n"
 
 msgid "Accept chat invitation?"
-msgstr "আড্ডার আমন্ত্রন কি গ্রহণ করবেন?"
+msgstr "আড্ডার আমন্ত্রন গ্রহণ করবেন?"
 
 #. Shortcut
 msgid "Shortcut"
 msgstr "শর্টকাট"
 
 msgid "The text-shortcut for the smiley"
-msgstr "স্মাইলির জন্য পাঠ-শর্টকাট"
+msgstr "স্মাইলির জন্য টেক্সট-শর্টকাট"
 
 #. Stored Image
 msgid "Stored Image"
@@ -10812,7 +10712,7 @@
 
 # tithi
 msgid "Stored Image. (that'll have to do for now)"
-msgstr "সংরক্ষিত ছবি। (ঐটি এই সময়ের জন্য করতে হবে)"
+msgstr "সংরক্ষিত ছবি। (ঐটি এই সময়ের জন্য এটিই যথেষ্ট)"
 
 msgid "SSL Connection Failed"
 msgstr "SSL সংযোগ ব্যর্থ হয়েছে"
@@ -10822,52 +10722,52 @@
 
 # tithi
 msgid "SSL peer presented an invalid certificate"
-msgstr "SSL যুগল একটি অবৈধ প্রত্যয়নপত্র উপস্থাপন করেছিল"
+msgstr "SSL পিয়ার একটি অকার্যকর সার্টিফিকেট উপস্থাপন করেছে"
 
 msgid "Unknown SSL error"
 msgstr "অজানা SSL ত্রুটি"
 
 msgid "Unset"
-msgstr "অনির্ধারণ করুন"
+msgstr "নির্ধারিত মান অপসারণ"
 
 msgid "Do not disturb"
 msgstr "বিরক্ত করবেন না"
 
 # fix me tithi
 msgid "Extended away"
-msgstr "অনেক বর্ধিত"
+msgstr "অনেকক্ষন যাবত অন্যত্র"
 
 # tithi
 msgid "Listening to music"
-msgstr "গান শুনছে"
+msgstr "গান শুনছি"
 
 #, c-format
 msgid "%s (%s) changed status from %s to %s"
-msgstr "%1s (%2s) অবস্থা %4s থেকে %3s তে পরিবর্তন করেছে"
+msgstr "%1$s (%2$s) অবস্থা %3$s থেকে %4$s তে পরিবর্তন করেছে"
 
 #, c-format
 msgid "%s (%s) is now %s"
-msgstr "%1s (%2s) এখন %3s"
+msgstr "%1$s (%2$s) এখন %3$s"
 
 #, c-format
 msgid "%s (%s) is no longer %s"
-msgstr "%1s (%2s) আর %3s থাকবে না"
+msgstr "%1$s (%2$s) আর %3$s নেই"
 
 #, c-format
 msgid "%s became idle"
-msgstr "%s এখন অলস"
+msgstr "%s এখন নিষ্ক্রিয়"
 
 #, c-format
 msgid "%s became unidle"
-msgstr "%s এখন অলস নয়"
+msgstr "%s এখন নিষ্ক্রিয় নয়"
 
 #, c-format
 msgid "+++ %s became idle"
-msgstr "+++ %s অলস হয়েছে"
+msgstr "+++ %s এখন নিষ্ক্রিয়"
 
 #, c-format
 msgid "+++ %s became unidle"
-msgstr "+++ %s অলস হয়নি"
+msgstr "+++ %s এখন নিষ্ক্রিয় নয়"
 
 #.
 #. * This string determines how some dates are displayed.  The default
@@ -10895,44 +10795,44 @@
 msgid "%d day"
 msgid_plural "%d days"
 msgstr[0] "%d দিন"
-msgstr[1] "%d গুলো দিন"
+msgstr[1] "%d দিন"
 
 #, c-format
 msgid "%s, %d hour"
 msgid_plural "%s, %d hours"
 msgstr[0] "%s, %d ঘন্টা"
-msgstr[1] "%s, %d গুলো ঘন্টা"
+msgstr[1] "%s, %d ঘন্টা"
 
 #, c-format
 msgid "%d hour"
 msgid_plural "%d hours"
 msgstr[0] "%d ঘন্টা"
-msgstr[1] "%d গুলো ঘন্টা"
+msgstr[1] "%d ঘন্টা"
 
 #, c-format
 msgid "%s, %d minute"
 msgid_plural "%s, %d minutes"
 msgstr[0] "%s, %d মিনিট"
-msgstr[1] "%s, %d গুলো মিনিট"
+msgstr[1] "%s, %d মিনিট"
 
 #, c-format
 msgid "%d minute"
 msgid_plural "%d minutes"
 msgstr[0] "%d মিনিট"
-msgstr[1] "%d গুলো মিনিট"
+msgstr[1] "%d মিনিট"
 
 # tithi
 #, c-format
 msgid "Could not open %s: Redirected too many times"
-msgstr "%s খুলতে পারেনি: অনেকবার পুনঃনির্দেশ করা হয়েছে"
+msgstr "%s খুলতে ব্যর্থ: অনেকবার রিডিরেক্ট করা হয়েছে"
 
 #, c-format
 msgid "Unable to connect to %s"
-msgstr "%s এ সংযোগ দিতে ব্যর্থ হয়েছে"
+msgstr "%s এ সংযুক্ত হতে ব্যর্থ"
 
 #, c-format
 msgid "Error reading from %s: response too long (%d bytes limit)"
-msgstr "%s থেকে পড়ায় ত্রুটি: প্রতিউত্তর অনেক দীর্ঘ্য (%d বাইটের সীমা)"
+msgstr "%s থেকে পড়ায় ত্রুটি: অনেক দীর্ঘ উত্তর (সীমা %d বাইট)"
 
 # fix-me tithi
 #, c-format
@@ -10940,20 +10840,20 @@
 "Unable to allocate enough memory to hold the contents from %s.  The web "
 "server may be trying something malicious."
 msgstr ""
-"%s এর উপাদানসমূহ ধারণ করার মতো যথেষ্ট মেমোরি বরাদ্দ করতে অক্ষম।  ওয়েব সার্ভার "
-"বিদ্বেষপরায়ণ কিছু করার চেষ্টা করতে পারে।"
+"%s এর বিষয়বস্তু ধারণ করার মতো মেমরি বরাদ্দ করতে ব্যর্থ। ওয়েব সার্ভারটি সম্ভবত "
+"বিদ্বেষপরায়ণ কিছু করার চেষ্টা করছে।"
 
 #, c-format
 msgid "Error reading from %s: %s"
-msgstr "%1s থেকে পড়ায় ত্রুটি: %2s"
+msgstr "%1$s থেকে পড়ায় ত্রুটি: %2$s"
 
 #, c-format
 msgid "Error writing to %s: %s"
-msgstr "%1s এ লেখায় ত্রুটি: %2s"
+msgstr "%1$s এ লেখায় ত্রুটি: %2$s"
 
 #, c-format
 msgid "Unable to connect to %s: %s"
-msgstr "%1s এর সাথে সংযোগে ব্যর্থ: %2s"
+msgstr "%1$s এর সাথে সংযোগ স্থাপনে ব্যর্থ: %2$s"
 
 # tithi
 #, c-format
@@ -10968,7 +10868,7 @@
 #. 10053
 #, c-format
 msgid "Connection interrupted by other software on your computer."
-msgstr "আপনার কম্পিউটারের অন্য সফটওয়্য়ার দ্বারা সংয়োগ বাধাগ্রস্থ হয়েছে। "
+msgstr "আপনার কম্পিউটারের অন্যান্য সফটওয়্যার দ্বারা সংযোগ বাধাগ্রস্থ হয়েছে। "
 
 #. 10054
 #, c-format
@@ -10979,30 +10879,30 @@
 #. 10060
 #, c-format
 msgid "Connection timed out."
-msgstr "সংযোগ সময় উত্তীর্ণ হয়েছে।"
+msgstr "সংযোগের সময়উত্তীর্ণ হয়ে গেছে।"
 
 #. 10061
 #, c-format
 msgid "Connection refused."
-msgstr "সংযোগে প্রত্যাখান করা হয়েছে"
+msgstr "সংযোগ প্রত্যাখাত হয়েছে"
 
 #. 10048
 #, c-format
 msgid "Address already in use."
-msgstr "ঠিকানাটি ইতোমধ্যে ব্যবহৃত হচ্ছে।"
+msgstr "ঠিকানাটি ইতিমধ্যে ব্যবহৃত হচ্ছে।"
 
 #, c-format
 msgid "Error Reading %s"
 msgstr "%s পড়ায় ত্রুটি"
 
 # tithi
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "An error was encountered reading your %s.  The file has not been loaded, and "
 "the old file has been renamed to %s~."
 msgstr ""
-"আপনার %s পড়ার সময় একটি ত্রুটির বাধা দেয়েছিল।  তাদেরকে লোড করা হয়নি, এবং পুরনো "
-"ফাইলটি %s~ এ নামান্তর করা হয়েছে।"
+"আপনার %1$s পড়ার সময় একটি ত্রুটির দেখা দেয়েছে। ফাইলটি লোড করা হয়নি, এবং পুরনো "
+"ফাইলটি %2$s~ এ নামান্তর করা হয়েছে।"
 
 msgid "Internet Messenger"
 msgstr "ইন্টারনেট বার্তাবাহক"
@@ -11012,50 +10912,51 @@
 
 # tithi
 msgid "Send instant messages over multiple protocols"
-msgstr "বহুবিধ প্রটোকল দিয়ে তাৎক্ষনিক বার্তাসমূহ প্রেরণ করুন"
-
+msgstr "বহুবিধ প্রোটোকল দিয়ে তাৎক্ষনিক বার্তা প্রেরণ করুন"
+
+# page orientation
 msgid "Orientation"
-msgstr "পরিচিতি পর্ব"
+msgstr "পরিস্থিতি"
 
 msgid "The orientation of the tray."
-msgstr "ট্রে প্রদর্শনের ধরন"
+msgstr "ট্রের পরিস্থিতি।"
 
 #. Build the login options frame.
 msgid "Login Options"
-msgstr "লগইনের পছন্দসমূহ"
+msgstr "লগইনের অপশন"
 
 msgid "Pro_tocol:"
 msgstr "প্রটোকল (_t):"
 
 msgid "_Username:"
-msgstr "ব্যবহারকারীরনাম (_U):"
+msgstr "ব্যবহারকারীর নাম (_U):"
 
 msgid "Remember pass_word"
-msgstr "গুপ্তসংকেত স্মরণ রাখুন (_w)"
+msgstr "পাসওয়ার্ড স্মরণ রাখা হবে (_w)"
 
 #. Build the user options frame.
 msgid "User Options"
-msgstr "ব্যবহারকারীর পছন্দসমূহ"
+msgstr "ব্যবহারকারীর অপশন"
 
 msgid "_Local alias:"
-msgstr "স্থানীয় ডাকনাম (_L):"
+msgstr "স্থানীয় উপনাম (_L):"
 
 msgid "New _mail notifications"
-msgstr "নতুন মেইলের প্রজ্ঞাপন (_m)"
+msgstr "নতুন মেইলের ঘোষণা (_m)"
 
 # tithi
 #. Buddy icon
 msgid "Use this buddy _icon for this account:"
-msgstr "এই একাউন্টের জন্য এই বন্ধু আইকন ব্যবহার করুন (_i):"
-
-msgid "_Advanced"
-msgstr "অগ্রগামী (_A)"
+msgstr "এই একাউন্টের জন্য এই বন্ধু আইকন ব্যবহার করা হবে (_i):"
+
+msgid "Ad_vanced"
+msgstr "উচ্চপর্যায় (_v)"
 
 msgid "Use GNOME Proxy Settings"
-msgstr "GNOME প্রক্সি বিন্যাসনসমূহ ব্যবহার করুন"
+msgstr "GNOME প্রক্সি সেটিং ব্যবহার করা হবে"
 
 msgid "Use Global Proxy Settings"
-msgstr "সর্বজনীন প্রক্সি বিন্যাসনসমূহ ব্যবহার করুন"
+msgstr "গ্লোবাল প্রক্সি সেটিং ব্যবহার করা হবে"
 
 msgid "No Proxy"
 msgstr "প্রক্সি নেই"
@@ -11064,13 +10965,13 @@
 msgstr "HTTP"
 
 msgid "SOCKS 4"
-msgstr "SOCKS ৪"
+msgstr "SOCKS 4"
 
 msgid "SOCKS 5"
-msgstr "SOCKS ৫"
+msgstr "SOCKS 5"
 
 msgid "Use Environmental Settings"
-msgstr "পারিপার্শ্বিক বিন্যাসনসমূহ ব্যবহার করুন"
+msgstr "এনভায়রনমেন্টাল সেটিং ব্যবহার করা হবে"
 
 #. This is an easter egg.
 #. It means one of two things, both intended as humourus:
@@ -11094,34 +10995,33 @@
 msgstr "পোর্ট (_P):"
 
 msgid "Pa_ssword:"
-msgstr "গুপ্তসংকেত (_s):"
+msgstr "পাসওয়ার্ড (_s):"
 
 msgid "Unable to save new account"
-msgstr "নতুন একাউন্ট সংরক্ষণে অক্ষম"
+msgstr "নতুন একাউন্ট সংরক্ষণে ব্যর্থ"
 
 # tithi
 msgid "An account already exists with the specified criteria."
 msgstr "উল্লেখিত বৈশিষ্ট্যের একটি একাউন্ট ইতিমধ্যে বিদ্যমান।"
 
 msgid "Add Account"
-msgstr "একাউন্ট যোগ করুন"
+msgstr "একাউন্ট যোগ"
 
 msgid "_Basic"
 msgstr "মৌলিক (_B)"
 
 # tithi
 msgid "Create _this new account on the server"
-msgstr "সার্ভারে এই নতুন একাউন্টটি তৈরী করুন (_t)"
-
-#, fuzzy
-msgid "_Proxy"
-msgstr "প্রক্সি"
+msgstr "সার্ভারে এই নতুন একাউন্টটি তৈরী করা হবে (_t)"
+
+msgid "P_roxy"
+msgstr "প্রক্সি (_r)"
 
 msgid "Enabled"
 msgstr "সক্রিয়"
 
 msgid "Protocol"
-msgstr "প্রটোকল"
+msgstr "প্রোটোকল"
 
 # tithi
 #, c-format
@@ -11136,119 +11036,113 @@
 "You can come back to this window to add, edit, or remove accounts from "
 "<b>Accounts->Manage Accounts</b> in the Buddy List window"
 msgstr ""
-"<span size='larger' weight='bold'>স্বাগতম %s!</span>\n"
-"\n"
-"আপনার তাৎক্ষনিক বার্তা একাউন্ট কনফিগার করা নেই। %s এর সাথে সংযোগ পেতে  <b>Add..."
-"</b> বাটন চাপুন এবং আপনার প্রথম একাউন্ট কনফিগার করুন। যদি আপনি একাধিক IM "
-"একাউন্টকে %s এর সাথে সংযুক্ত করতে চান তবে সেগুলোকে পুনরায় কনফিগার করতে <b>Add...</"
-"b> বাটন চাপুন।\n"
-"\n"
-"আপনি পুনরায় এই উইন্ডোতে ফিরে আসতে পারেন এবং বন্ধু তালিকা উইন্ডোতে  একাউন্ট গুলোকে "
-"<b>Accounts->একাউন্ট গুলোকে ম্যানেজ করুন</b> এর সাহায্যে  যুক্ত, সম্পাদনা করতে বা "
-"মুছে ফেলতে পারেন"
+"<span size='larger' weight='bold'>%s এ স্বাগতম!</span>\n"
+"\n"
+"আপনার তাৎক্ষনিক বার্তা একাউন্ট কনফিগার করা নেই। %s এর সাথে সংযোগ পেতে  <b>"
+"\"যোগ...\"</b> বোতাম চাপুন এবং আপনার প্রথম একাউন্টটি কনফিগার করুন। যদি আপনি %s "
+"এর মাধ্যমে একাধিক IM একাউন্টে সংযুক্ত হতে চান তবে সেগুলোকে কনফিগার করতে পুনরায় <b>"
+"\"যোগ...\"</b> বোতাম চাপুন।\n"
+"\n"
+"আপনি পুনরায় এই উইন্ডোতে ফিরে আসতে পারেন এবং \"একাউন্টসমূহ\" মেনুর \"একাউন্ট নিয়ন্ত্রন"
+"\" উইন্ডো থেকে নতুন একাউন্ট যোগ, সম্পাদনা বা অপসারণ করতে পারেন।"
 
 # tithi
 #, c-format
 msgid "You have %d contact named %s. Would you like to merge them?"
 msgid_plural ""
 "You currently have %d contacts named %s. Would you like to merge them?"
-msgstr[0] "আপনার %1d-টি %2s নামের  যোগাযোগ আছে। আপনি কি তাদের একত্রিত করতে চান?"
+msgstr[0] ""
+"আপনার %1$d-টি %2$s নামের পরিচিতি আছে। আপনি কি তাদের একত্রিত করতে চান?"
 msgstr[1] ""
-"আপনার বর্তমানে %1dগুলো %2s নামের যোগাযোগ আছে। আপনি কি তাদের একত্রিত করতে চান?"
+"আপনার বর্তমানে %1$dটি %2$s নামের পরিচিতি আছে। আপনি কি তাদের একত্রিত করতে চান?"
 
 msgid ""
 "Merging these contacts will cause them to share a single entry on the buddy "
 "list and use a single conversation window. You can separate them again by "
 "choosing 'Expand' from the contact's context menu"
 msgstr ""
-"এই যোগাযোগসমূহ একত্রিত করার কারণে একটি একক এন্ট্রিকে বন্ধু তালিকায় শেয়ার করতে হবে "
-"এবং একটি একক কথোপকথন উইন্ডো ব্যবহার করুন। আপনি যোগাযোগের প্রসঙ্গ তালিকা থেকে "
-"'প্রসারন' পছন্দ করার মাধ্যমে তাদেরকে পুনরায় আলাদা করতে পারেন"
+"এই পরিচিতিগুলো একত্রিত করলে বন্ধু তালিকায় তাদের একট ভুক্তি হিসেবে দেখানো হবে এবং "
+"সবার জন্য একটি কথোপকথন উইন্ডো ব্যবহার করা হবে। আপনি পরিচিতির প্রাসঙ্গিক-মেনু থেকে "
+"'প্রসারিত' নির্বাচন করে তাদেরকে পুনরায় আলাদা করতে পারেন।"
 
 # tithi
 msgid "Please update the necessary fields."
 msgstr "অনুগ্রহ করে প্রয়োজনীয় ক্ষেত্রগুলো হালনাগাদ করুন।"
 
-#, fuzzy
 msgid "A_ccount"
-msgstr "একাউন্ট"
+msgstr "একাউন্ট (_c)"
 
 msgid ""
 "Please enter the appropriate information about the chat you would like to "
 "join.\n"
-msgstr ""
-"অনুগ্রহ করে আপনি যে আড্ডায় যোগ দিতে চান তার সম্পর্কে যথাযথ তথ্য প্রবেশ করান।\n"
+msgstr "অনুগ্রহ করে আপনি যে আড্ডায় যোগ দিতে চান তার সম্পর্কে যথাযথ তথ্য দিন।\n"
 
 msgid "Room _List"
-msgstr "রুমের তালিকা (_L)"
+msgstr "আসরের তালিকা (_L)"
 
 msgid "_Block"
-msgstr "ব্লক করুন (_B)"
+msgstr "ব্লক (_B)"
 
 msgid "Un_block"
-msgstr "ব্লক সরান (_b)"
+msgstr "আনব্লক (_b)"
 
 # tithi
 msgid "Move to"
 msgstr "সরান"
 
 msgid "Get _Info"
-msgstr "তথ্য সংগ্রহ করুন (_I)"
+msgstr "তথ্য সংগ্রহ (_I)"
 
 msgid "I_M"
-msgstr "আইএম (_M)"
-
-#, fuzzy
+msgstr "I_M"
+
 msgid "_Audio Call"
-msgstr "আড্ডা যোগ করুন (_A)"
+msgstr "অডিও কল (_A)"
 
 msgid "Audio/_Video Call"
-msgstr ""
-
-#, fuzzy
+msgstr "অডিও/ভিডিও কল (_V)"
+
 msgid "_Video Call"
-msgstr "ভিডিও আড্ডা"
+msgstr "ভিডিও কল (_V)"
 
 msgid "_Send File..."
-msgstr "ফাইল পাঠান... (_S)"
+msgstr "ফাইল প্রেরণ... (_S)"
 
 msgid "Add Buddy _Pounce..."
-msgstr "বন্ধু পাউন্স যোগ করুন... (_P)"
+msgstr "বন্ধু পাউন্স যোগ... (_P)"
 
 msgid "View _Log"
-msgstr "লগ প্রদর্শন করুন (_L)"
-
-#, fuzzy
+msgstr "লগ প্রদর্শন (_L)"
+
 msgid "Hide When Offline"
-msgstr "অফলাইনে থাকলে লুকিয়ে রাখুন"
-
-#, fuzzy
+msgstr "অফলাইন হলে আড়াল করা হবে"
+
 msgid "Show When Offline"
-msgstr "অফলাইনে থাকলে প্রদর্শন করুন"
+msgstr "অফলাইন হলে প্রদর্শন করা হবে"
 
 msgid "_Alias..."
 msgstr "উপনাম... (_A)"
 
 msgid "_Remove"
-msgstr "অপসারণ করুন (_R)"
+msgstr "অপসারণ (_R)"
 
 msgid "Set Custom Icon"
-msgstr "পছন্দসই আইকন নির্ধারণ করুন"
+msgstr "স্বনির্বাচিত আইকন নির্ধারণ"
 
 msgid "Remove Custom Icon"
-msgstr "পছন্দসই আইকন অপসারণ করুন"
+msgstr "স্বনির্বাচিত আইকন অপসারণ"
 
 msgid "Add _Buddy..."
-msgstr "বন্ধু যোগ করুন... (_B)"
+msgstr "বন্ধু যোগ... (_B)"
 
 msgid "Add C_hat..."
-msgstr "আড্ডা যোগ করুন...(_h)"
+msgstr "আড্ডা যোগ...(_h)"
 
 msgid "_Delete Group"
-msgstr "গ্রুপ মুছে ফেলুন (_D)"
+msgstr "দল মুছে ফেলা হবে (_D)"
 
 msgid "_Rename"
-msgstr "পুনরায় নামকরণ করুন (_R)"
+msgstr "নামান্তর (_R)"
 
 #. join button
 msgid "_Join"
@@ -11258,19 +11152,19 @@
 msgstr "স্বয়ং-যোগ দিন"
 
 msgid "Persistent"
-msgstr "পুনঃপুন ঘটনশীল"
+msgstr "পুনঃপুনঃ ঘটনশীল"
 
 msgid "_Edit Settings..."
-msgstr "বিন্যাসনসমূহ সম্পাদনা করুন... (_E)"
+msgstr "সেটিং সম্পাদনা... (_E)"
 
 msgid "_Collapse"
 msgstr "গুটিয়ে ফেলুন (_C)"
 
 msgid "_Expand"
-msgstr "বর্ধিত করুন (_E)"
+msgstr "প্রসারিত (_E)"
 
 msgid "/Tools/Mute Sounds"
-msgstr "/টুলসমূহ/সাউন্ড বন্ধ রাখুন"
+msgstr "/টুল/শব্দ বন্ধ"
 
 msgid ""
 "You are not currently signed on with an account that can add that buddy."
@@ -11288,104 +11182,103 @@
 msgstr "/বন্ধুগণ (_B)"
 
 msgid "/Buddies/New Instant _Message..."
-msgstr "/বন্ধুগণ/নতুন তাৎক্ষণিক বার্তা... (_M)"
+msgstr "/বন্ধুগণ/নতুন বার্তা... (_M)"
 
 msgid "/Buddies/Join a _Chat..."
-msgstr "/বন্ধুগণ/আড্ডায় যোগদান করুন... (_C)"
+msgstr "/বন্ধুগণ/আড্ডায় যোগদান... (_C)"
 
 msgid "/Buddies/Get User _Info..."
-msgstr "/বন্ধুগণ/ব্যবহারকারীর তথ্য সংগ্রহ করুন... (_I)"
+msgstr "/বন্ধুগণ/ব্যবহারকারীর তথ্য... (_I)"
 
 msgid "/Buddies/View User _Log..."
-msgstr "/বন্ধুগণ/ব্যবহারকারী লগ প্রদর্শন করুন... (_L)"
+msgstr "/বন্ধুগণ/ব্যবহারকারীর লগ প্রদর্শন... (_L)"
 
 msgid "/Buddies/Sh_ow"
-msgstr "/বন্ধুগণ/দেখান (_o)"
+msgstr "/বন্ধুগণ/প্রদর্শন (_O)"
 
 msgid "/Buddies/Show/_Offline Buddies"
-msgstr "/বন্ধুগণ/দেখান/অফলাইন বন্ধুগণ (_O)"
+msgstr "/বন্ধুগণ/প্রদর্শন/অফলাইন বন্ধুগণ (_O)"
 
 msgid "/Buddies/Show/_Empty Groups"
-msgstr "/বন্ধুগণ/দেখান/ফাঁকা গ্রুপসমূহ (_E)"
+msgstr "/বন্ধুগণ/প্রদর্শন/ফাঁকা দল (_E)"
 
 msgid "/Buddies/Show/Buddy _Details"
-msgstr "/বন্ধুগণ/দেখান/বন্ধুর বিবরণ (_D)"
+msgstr "/বন্ধুগণ/প্রদর্শন/বন্ধুর বিবরণ (_D)"
 
 msgid "/Buddies/Show/Idle _Times"
-msgstr "/বন্ধুগণ/দেখান/অলস সময় (_T)"
+msgstr "/বন্ধুগণ/প্রদর্শন/নিষ্ক্রিয় সময় (_T)"
 
 msgid "/Buddies/Show/_Protocol Icons"
-msgstr "/বন্ধুগণ/দেখান/প্রটোকল আইকনগুলো (_P)"
+msgstr "/বন্ধুগণ/প্রদর্শন/প্রোটোকল আইকন (_P)"
 
 msgid "/Buddies/_Sort Buddies"
-msgstr "/বন্ধুগণ/বন্ধুদের ক্রমানুসারে সাজান (_S)"
+msgstr "/বন্ধুগণ/বন্ধুদের সাজান (_S)"
 
 msgid "/Buddies/_Add Buddy..."
-msgstr "/বন্ধুগণ/বন্ধু যোগ করুন... (_A)"
+msgstr "/বন্ধুগণ/বন্ধু যোগ... (_A)"
 
 msgid "/Buddies/Add C_hat..."
-msgstr "/বন্ধুগণ/আড্ডা যোগ করুন... (_h)"
+msgstr "/বন্ধুগণ/আড্ডা যোগ... (_h)"
 
 msgid "/Buddies/Add _Group..."
-msgstr "/বন্ধুগণ/গ্রুপ যোগ করুন... (_G)"
+msgstr "/বন্ধুগণ/দল যোগ (_G)..."
 
 msgid "/Buddies/_Quit"
-msgstr "/বন্ধুগণ/প্রস্থান করুন (_Q)"
+msgstr "/বন্ধুগণ/প্রস্থান (_Q)"
 
 #. Accounts menu
 msgid "/_Accounts"
 msgstr "/একাউন্টসমূহ (_A)"
 
 msgid "/Accounts/Manage Accounts"
-msgstr "/একাউন্টসমূহ/একাউন্টসমূহ নিয়ন্ত্রণ করুন"
+msgstr "/একাউন্টসমূহ/একাউন্ট নিয়ন্ত্রণ"
 
 #. Tools
 msgid "/_Tools"
-msgstr "/টুলসমূহ (_T)"
+msgstr "/টুল (_T)"
 
 msgid "/Tools/Buddy _Pounces"
-msgstr "/টুলসমূহ/বন্ধু পাউন্সসমূহ (_P)"
+msgstr "/টুল/বন্ধু পাউন্স (_P)"
 
 msgid "/Tools/_Certificates"
-msgstr "/টুলসমূহ/প্রত্যয়নপত্রসমূহ (_C)"
-
-#, fuzzy
+msgstr "/টুল/সার্টিফিকেট (_C)"
+
 msgid "/Tools/Custom Smile_ys"
-msgstr "/টুলসমূহ/স্মাইলী (_y)"
+msgstr "/টুল/স্বনির্বাচিত স্মাইলি (_y)"
 
 msgid "/Tools/Plu_gins"
-msgstr "/টুলসমূহ/প্লাগ-ইনসমূহ (_g)"
+msgstr "/টুল/প্লাগইন (_G)"
 
 msgid "/Tools/Pr_eferences"
-msgstr "/টুলসমূহ/প্রাধিকারসমূহ (_e)"
+msgstr "/টুল/পছন্দসমূহ (_E)"
 
 msgid "/Tools/Pr_ivacy"
-msgstr "/টুলসমূহ/গোপনীয়তা (_i)"
+msgstr "/টুল/গোপনতা (_I)"
 
 msgid "/Tools/_File Transfers"
-msgstr "/টুলসমূহ/ফাইল স্থানান্তর করে (_F)"
+msgstr "/টুল/ফাইল স্থানান্তর (_F)"
 
 msgid "/Tools/R_oom List"
-msgstr "/টুলসমূহ/রুমের তালিকা (_o)"
+msgstr "/টুল/আসরের তালিকা (_O)"
 
 msgid "/Tools/System _Log"
-msgstr "/টুলসমূহ/সিস্টেমের কার্যবিবরণী (_L)"
+msgstr "/টুল/সিস্টেম লগ (_L)"
 
 msgid "/Tools/Mute _Sounds"
-msgstr "/টুলসমূহ/সাউন্ড বন্ধ রাখুন (_S)"
+msgstr "/টুল/শব্দ বন্ধ (_S)"
 
 #. Help
 msgid "/_Help"
-msgstr "/সহায়িকা (_H)"
+msgstr "/সহায়তা (_H)"
 
 msgid "/Help/Online _Help"
-msgstr "/সহায়িকা/অনলাইন সহায়িকা (_H)"
+msgstr "/সহায়তা/অনলাইন সহায়িকা (_H)"
 
 msgid "/Help/_Debug Window"
-msgstr "/সহায়িকা/ডিবাগ উইন্ডো (_D)"
+msgstr "/সহায়তা/ডিবাগ উইন্ডো (_D)"
 
 msgid "/Help/_About"
-msgstr "/সহায়িকা/পরিচিতি (_A)"
+msgstr "/সহায়তা/পরিচিতি (_A)"
 
 #, c-format
 msgid "<b>Account:</b> %s"
@@ -11397,7 +11290,7 @@
 "<b>Occupants:</b> %d"
 msgstr ""
 "\n"
-"<b>পেশা:</b> %d"
+"<b>বসবাসকারী:</b> %d"
 
 #, c-format
 msgid ""
@@ -11421,7 +11314,7 @@
 
 # fix me tithi
 msgid "Spooky"
-msgstr "ভূতুরে"
+msgstr "ভুতুরে"
 
 msgid "Awesome"
 msgstr "দারুণ"
@@ -11436,54 +11329,54 @@
 # fix me tithi
 #, c-format
 msgid "Idle %dd %dh %02dm"
-msgstr "%dd %dh %02dm অলস"
+msgstr "%dd %dh %02dm যাবত নিষ্ক্রিয়"
 
 #, c-format
 msgid "Idle %dh %02dm"
-msgstr "%dh %02dm অলস"
+msgstr "%dh %02dm যাবত নিষ্ক্রিয়"
 
 #, c-format
 msgid "Idle %dm"
-msgstr "%dm অলস"
+msgstr "%dm যাবত নিষ্ক্রিয়"
 
 msgid "/Buddies/New Instant Message..."
-msgstr "/বন্ধুগণ/নতুন তাৎক্ষণিক বার্তা..."
+msgstr "/বন্ধুগণ/নতুন বার্তা..."
 
 msgid "/Buddies/Join a Chat..."
-msgstr "/বন্ধুগণ/আড্ডায় যোগদান করুন..."
+msgstr "/বন্ধুগণ/আড্ডায় যোগদান..."
 
 msgid "/Buddies/Get User Info..."
-msgstr "/বন্ধুগণ/ব্যবহারকারীর তথ্য গ্রহন করুন..."
+msgstr "/বন্ধুগণ/ব্যবহারকারীর তথ্য..."
 
 msgid "/Buddies/Add Buddy..."
-msgstr "/বন্ধুগণ/বন্ধু যোগ করুন..."
+msgstr "/বন্ধুগণ/বন্ধু যোগ..."
 
 msgid "/Buddies/Add Chat..."
-msgstr "/বন্ধুগণ/আড্ডা যোগ করুন..."
+msgstr "/বন্ধুগণ/আড্ডা যোগ..."
 
 msgid "/Buddies/Add Group..."
-msgstr "/বন্ধুগণ/গ্রুপ যোগ করুন..."
+msgstr "/বন্ধুগণ/দল যোগ..."
 
 msgid "/Tools/Privacy"
-msgstr "/টুলসমূহ/গোপনীয়তা"
+msgstr "/টুল/গোপনতা"
 
 msgid "/Tools/Room List"
-msgstr "/টুলসমূহ/রুমের তালিকা"
+msgstr "/টুল/আসরের তালিকা"
 
 #, c-format
 msgid "%d unread message from %s\n"
 msgid_plural "%d unread messages from %s\n"
-msgstr[0] "%1dটি অপঠিত বার্তা %2s হতে\n"
-msgstr[1] "%1dগুলো অপঠিত বার্তা %2s হতে\n"
+msgstr[0] "%2$s থেকে %1$dটি অপঠিত বার্তা\n"
+msgstr[1] "%2$s থেকে %1$dটি অপঠিত বার্তা\n"
 
 msgid "Manually"
-msgstr "হস্তচালিতভাবে"
+msgstr "নিজ হাতে"
 
 msgid "By status"
 msgstr "অবস্থা অনুসারে"
 
 msgid "By recent log activity"
-msgstr ""
+msgstr "সাম্প্রতিক লগ অনুসারে"
 
 #, c-format
 msgid "%s disconnected"
@@ -11494,13 +11387,13 @@
 msgstr "%s নিষ্ক্রিয়"
 
 msgid "Reconnect"
-msgstr "পুনরায় সংযোগ দিন"
+msgstr "পুনঃসংযোগ করা হবে"
 
 msgid "Re-enable"
-msgstr "পুনরায় সক্রিয় করুন"
+msgstr "পুনঃসক্রিয় করা হবে"
 
 msgid "SSL FAQs"
-msgstr ""
+msgstr "SSL FAQ"
 
 # tithi
 msgid "Welcome back!"
@@ -11510,21 +11403,22 @@
 msgid "%d account was disabled because you signed on from another location:"
 msgid_plural ""
 "%d accounts were disabled because you signed on from another location:"
-msgstr[0] "আপনি অন্য একটি স্থান থেকে সাইন অন করার কারণে %d একাউন্টটি নিষ্ক্রিয় ছিল:"
+msgstr[0] ""
+"আপনি অন্য একটি স্থান থেকে লগইন করার কারণে %d একাউন্টটি নিষ্ক্রিয় করা হয়েছে:"
 msgstr[1] ""
-"আপনি অন্য একটি স্থান থেকে সাইন অন করার কারণে %d একাউন্টগুলো নিষ্ক্রিয় ছিল:"
+"আপনি অন্য একটি স্থান থেকে লগইন করার কারণে %d একাউন্টগুলো নিষ্ক্রিয় করা হয়েছে:"
 
 msgid "<b>Username:</b>"
-msgstr "<b>ব্যবহারকারীর-নাম:</b>"
+msgstr "<b>ব্যবহারকারীর নাম:</b>"
 
 msgid "<b>Password:</b>"
-msgstr "<b>গুপ্তসংকেত:</b>"
+msgstr "<b>পাসওয়ার্ড:</b>"
 
 msgid "_Login"
 msgstr "লগইন (_L)"
 
 msgid "/Accounts"
-msgstr "/একাউন্টগুলো"
+msgstr "/একাউন্ট"
 
 #. Translators: Please maintain the use of -> and <- to refer to menu heirarchy
 #, c-format
@@ -11537,225 +11431,210 @@
 msgstr ""
 "<span weight='bold' size='larger'>%s এ স্বাগতম!</span>\n"
 "\n"
-"আপনার কোন একাউন্ট সক্রিয় নেই। আপনার আইএম একাউন্টসমূহ <b>একাউন্টসমূহ->একাউন্টসমূহ "
-"নিয়ন্ত্রণ করুন</b> এর <b>একাউন্টসমূহ</b> এর উইন্ডো হতে সক্রিয় করুন। আপনি যদি একাউন্ট "
-"একবার সক্রিয় করেন, আপনি সাইন অন, অবস্থা নির্ধারণ করতে এবং বন্ধুদের সাথে কথা বলতে "
-"সক্ষম হবেন।"
+"আপনার কোন একাউন্ট সক্রিয় নেই। \"একাউন্টসমূহ\" মেনুর \"একাউন্ট নিয়ন্ত্রণ\" উইন্ডো থেকে "
+"আপনার IM সক্রিয় করুন। একাউন্ট একবার সক্রিয় করলে, আপনি লগইন, অবস্থা নির্ধারণ এবং "
+"বন্ধুদের সাথে কথা বলতে পারবেন।"
 
 #. set the Show Offline Buddies option. must be done
 #. * after the treeview or faceprint gets mad. -Robot101
 #.
 msgid "/Buddies/Show/Offline Buddies"
-msgstr "/বন্ধুগণ/দেখান/অফলাইন বন্ধুগণ"
+msgstr "/বন্ধু/প্রদর্শন/অফলাইন বন্ধু"
 
 msgid "/Buddies/Show/Empty Groups"
-msgstr "/বন্ধুগণ/দেখান/ফাঁকা গ্রুপগুলো"
+msgstr "/বন্ধু/প্রদর্শন/ফাঁকা দল"
 
 msgid "/Buddies/Show/Buddy Details"
-msgstr "/বন্ধুগণ/দেখান/বন্ধুদের বিস্তারিত"
+msgstr "/বন্ধু/প্রদর্শন/বন্ধুর বিবরণ"
 
 msgid "/Buddies/Show/Idle Times"
-msgstr "/বন্ধুগণ/দোখান/অলস সময়"
+msgstr "/বন্ধু/প্রদর্শন/নিষ্ক্রিয় সময়"
 
 msgid "/Buddies/Show/Protocol Icons"
-msgstr "/বন্ধুগণ/দেখান/প্রটোকল আইকনগুলো"
+msgstr "/বন্ধু/প্রদর্শন/প্রোটোকল আইকন"
 
 msgid "Add a buddy.\n"
 msgstr "বন্ধু যোগ করুন।\n"
 
 msgid "Buddy's _username:"
-msgstr "বন্ধুর ব্যবহারকারীর-নাম (_u):"
+msgstr "বন্ধুর নাম (_u):"
 
 # and this
 msgid "(Optional) A_lias:"
 msgstr "উপনাম (ঐচ্ছিক) (_l):"
 
 msgid "Add buddy to _group:"
-msgstr "গ্রুপে বন্ধু যোগ করুন (_g):"
+msgstr "বন্ধুকে দলে যোগ করুন (_g):"
 
 msgid "This protocol does not support chat rooms."
-msgstr "এই প্রটোকলটি আড্ডার রুমসমূহ সমর্থন করে না।"
+msgstr "এই প্রোটোকল আড্ডার আসর সমর্থন করে না।"
 
 msgid ""
 "You are not currently signed on with any protocols that have the ability to "
 "chat."
-msgstr "আপনি বর্তমানে আড্ডার যোগ্য এমন কোনো প্রটোকলে যুক্ত হননি।"
+msgstr "আপনি বর্তমানে আড্ডার যোগ্য কোনো প্রোটোকলে যুক্ত নন।"
 
 msgid ""
 "Please enter an alias, and the appropriate information about the chat you "
 "would like to add to your buddy list.\n"
 msgstr ""
-"অনুগ্রহ করে আপনি আপনার বন্ধু তালিকায় যুক্ত করতে চান এমন আড্ডার একটি ডাকনাম,এবং  "
-"যথাযথ তথ্য প্রবেশ করান।\n"
+"অনুগ্রহ করে আপনি আপনার বন্ধু তালিকায় যুক্ত করতে চান এমন আড্ডার একটি উপনাম,এবং যথাযথ "
+"তথ্য দিন।\n"
 
 msgid "A_lias:"
 msgstr "উপনাম (_l):"
 
 msgid "_Group:"
-msgstr "গ্রুপ: (_G)"
+msgstr "দল (_G):"
 
 # tithi
 msgid "Auto_join when account becomes online."
-msgstr "একাউন্ট অনলাইনে থাকলে স্বয়ংক্রিয় ভাবে যোগদান করুন।"
+msgstr "একাউন্ট অনলাইনে থাকলে স্বয়ংক্রিয় ভাবে যোগদান করা হবে।"
 
 # tithi
 msgid "_Remain in chat after window is closed."
 msgstr "উইন্ডো বন্ধ হবার পরেও আড্ডায় থাকুন (_R)।"
 
 msgid "Please enter the name of the group to be added."
-msgstr "অনুগ্রহ করে যুক্ত করতে হবে এমন গ্রুপের নাম প্রবেশ করান।"
+msgstr "অনুগ্রহ করে যে দলটি যুক্ত করতে হবে তার নাম দিন।"
 
 msgid "Enable Account"
-msgstr "একাউন্ট সক্রিয় করুন"
+msgstr "একাউন্ট সক্রিয় করা হবে"
 
 msgid "<PurpleMain>/Accounts/Enable Account"
-msgstr "<PurpleMain>/একাউন্টসমূহ/একাউন্ট সক্রিয় করুন"
+msgstr "<PurpleMain>/একাউন্ট/একাউন্ট সক্রিয়করণ"
 
 msgid "<PurpleMain>/Accounts/"
-msgstr "<PurpleMain>/একাউন্টসমূহ/"
+msgstr "<PurpleMain>/একাউন্ট/"
 
 msgid "_Edit Account"
-msgstr "একাউন্ট সম্পাদন করুন (_E)"
+msgstr "একাউন্ট সম্পাদনা (_E)"
 
 msgid "No actions available"
-msgstr "কোনো কাজ সহজলভ্য নয়"
+msgstr "কোনো প্রতিক্রিয়া বিদ্যমান নেই"
 
 msgid "_Disable"
 msgstr "নিষ্ক্রিয় (_D)"
 
 msgid "/Tools"
-msgstr "/টুলসমূহ"
+msgstr "/টুল"
 
 msgid "/Buddies/Sort Buddies"
-msgstr "/বন্ধুগণ/বন্ধুদের ক্রমানুসারে সাজান"
+msgstr "/বন্ধু/বন্ধুদের সাজান"
 
 #. Buddy List
 msgid "Background Color"
-msgstr "প্রেক্ষাপট রং"
+msgstr "পটভূমির রং"
 
 msgid "The background color for the buddy list"
-msgstr ""
-
-# tithi
-#, fuzzy
+msgstr "বন্ধু তালিকার জন্য পটভূমির রং"
+
+# tithi
 msgid "Layout"
-msgstr "লাও"
+msgstr "বহির্বিন্যাস"
 
 msgid "The layout of icons, name, and status of the blist"
-msgstr ""
+msgstr "আইকন, নাম এবং blist এর অবস্থার বহির্বিন্যাস"
 
 #. Group
-#, fuzzy
 msgid "Expanded Background Color"
-msgstr "প্রেক্ষাপট রং"
+msgstr "প্রসারিত পটভূমির রং"
 
 msgid "The background color of an expanded group"
-msgstr ""
-
-#, fuzzy
+msgstr "একটি প্রসারিত গ্রুপের পটভূমি রং "
+
 msgid "Expanded Text"
-msgstr "বর্ধিত করুন (_E)"
+msgstr "প্রসারিত টেক্সট"
 
 msgid "The text information for when a group is expanded"
-msgstr ""
-
-#, fuzzy
+msgstr "একটি দল প্রসারিত হওয়ার সময় টেক্সট তথ্য"
+
 msgid "Collapsed Background Color"
-msgstr "প্রেক্ষাপট রং নির্বাচন করুন"
+msgstr "গুটানো পটভূমির রং"
 
 msgid "The background color of a collapsed group"
-msgstr ""
-
-#, fuzzy
+msgstr "একটি গুটিয়ে ফেলা দলের পটভূমির রং"
+
 msgid "Collapsed Text"
-msgstr "গুটিয়ে ফেলুন (_C)"
+msgstr "গুটানো টেক্সট"
 
 msgid "The text information for when a group is collapsed"
-msgstr ""
+msgstr "একটি দল গুটানোর সময় টেক্সট তথ্য"
 
 #. Buddy
-#, fuzzy
 msgid "Contact/Chat Background Color"
-msgstr "প্রেক্ষাপট রং নির্বাচন করুন"
+msgstr "পরিচিতি/ আড্ডার পটভূমির রং"
 
 msgid "The background color of a contact or chat"
-msgstr ""
-
-#, fuzzy
+msgstr "একটি পরিচিতি অথবা আড্ডার পটভূমির রং"
+
 msgid "Contact Text"
-msgstr "শর্টকাট"
+msgstr "পরিচিতি টেক্সট"
 
 msgid "The text information for when a contact is expanded"
-msgstr ""
-
-#, fuzzy
+msgstr "পরিচিতি প্রসারনের সময় টেক্সট তথ্য"
+
 msgid "On-line Text"
-msgstr "অনলাইন"
+msgstr "অনলাইন টেক্সট"
 
 msgid "The text information for when a buddy is online"
-msgstr ""
-
-#, fuzzy
+msgstr "বন্ধু অনলাইনে থাকার সময় টেক্সট তথ্য"
+
 msgid "Away Text"
-msgstr "এখানে নেই"
+msgstr "অন্যত্র অবস্থার টেক্সট"
 
 msgid "The text information for when a buddy is away"
-msgstr ""
-
-#, fuzzy
+msgstr "বন্ধু অন্যত্র থাকার সময় টেক্সট তথ্য"
+
 msgid "Off-line Text"
-msgstr "অফলাইন "
+msgstr "অফলাইন অবস্থার টেক্সট"
 
 msgid "The text information for when a buddy is off-line"
-msgstr ""
-
-#, fuzzy
+msgstr "বন্ধু অফলাইনে থাকার সময় টেক্সট তথ্য"
+
 msgid "Idle Text"
-msgstr "মোড পাঠ"
+msgstr "নিষ্ক্রিয় অবস্থার টেক্সট"
 
 msgid "The text information for when a buddy is idle"
-msgstr ""
-
-#, fuzzy
+msgstr "বন্ধু নিষ্ক্রিয় থাকার সময় টেক্সট তথ্য"
+
 msgid "Message Text"
-msgstr "বার্তা পাঠানো হয়েছে"
+msgstr "বার্তার টেক্সট"
 
 msgid "The text information for when a buddy has an unread message"
-msgstr ""
+msgstr "বন্ধুর অপঠিত বার্তা থাকলে যে টেক্সট তথ্য দেখায়"
 
 msgid "Message (Nick Said) Text"
-msgstr ""
+msgstr "বার্তা (\"ডাকনাম\" বলেছিল) টেক্সট"
 
 msgid ""
 "The text information for when a chat has an unread message that mentions "
 "your nick"
-msgstr ""
-
-#, fuzzy
+msgstr "একটি অপঠিত বার্তায় আপনার নাম উল্লেখ করা হলে যে লেখা প্রদর্শিত হবে"
+
 msgid "The text information for a buddy's status"
-msgstr "%s এর জন্য ব্যবহাকারীর তথ্য পরিবর্তন করুন"
-
-# tithi
-#, fuzzy
+msgstr "বন্ধুর অবস্থার জন্য টেক্সট তথ্য "
+
+# tithi
 msgid "Type the host name for this certificate."
-msgstr "এই প্রত্যয়ণপত্রের হোস্ট নাম টাইপ করুন।"
+msgstr "এই সার্টিফিকেটের হোস্ট নাম টাইপ করুন।"
 
 #. Widget creation function
 msgid "SSL Servers"
-msgstr "SSL সার্ভারসমূহ"
+msgstr "SSL সার্ভার"
 
 msgid "Unknown command."
-msgstr "অজানা নির্দেশ।"
+msgstr "অজানা কমান্ড।"
 
 msgid "That buddy is not on the same protocol as this chat."
-msgstr "ঐ বন্ধুটি এই আড্ডার মতো একই প্রটোকলে নেই।"
+msgstr "বন্ধুটি এই আড্ডার একই প্রোটোকলে নেই।"
 
 msgid ""
 "You are not currently signed on with an account that can invite that buddy."
 msgstr "আপনি বর্তমানে এমন কোনো একাউন্টে যুক্ত নন যা ঐ বন্ধুকে আমন্ত্রণ জানাতে পারে।"
 
 msgid "Invite Buddy Into Chat Room"
-msgstr "বন্ধুকে আড্ডার রুমে আমন্ত্রণ জানান"
+msgstr "বন্ধুকে আড্ডার আসরে আমন্ত্রণ জানান"
 
 msgid "_Buddy:"
 msgstr "বন্ধু (_B):"
@@ -11768,99 +11647,94 @@
 msgstr "<h1>%s-এর সঙ্গে কথোপকথন</h1>\n"
 
 msgid "Save Conversation"
-msgstr "কথোপকথন সংরক্ষণ করুন"
+msgstr "কথোপকথন সংরক্ষণ"
 
 msgid "Find"
 msgstr "খুঁজুন"
 
 msgid "_Search for:"
-msgstr "খুঁজছে (_S):"
+msgstr "অনুসন্ধান (_S):"
 
 msgid "Un-Ignore"
-msgstr "অগ্রাহ্য করবেন না"
+msgstr "অগ্রাহ্য করা বাতিল করা হবে"
 
 msgid "Ignore"
-msgstr "অগ্রাহ্য করুন"
+msgstr "অগ্রাহ্য"
 
 msgid "Get Away Message"
-msgstr "অনুপস্থিতি বার্তা গ্রহণ করুন"
-
-#, fuzzy
+msgstr "অন্যত্র অবস্থার বার্তা গ্রহণ করুন"
+
 msgid "Last Said"
-msgstr "সর্বশেষ বলা হয়েছে"
+msgstr "সর্বশেষ বলেছে"
 
 msgid "Unable to save icon file to disk."
-msgstr "ডিস্কে আইকন ফাইল সংরক্ষণ করতে অক্ষম।"
+msgstr "ডিস্কে আইকন ফাইল সংরক্ষণ করতে ব্যর্থ।"
 
 msgid "Save Icon"
-msgstr "আইকন সংরক্ষণ করুন"
+msgstr "আইকন সংরক্ষণ"
 
 msgid "Animate"
-msgstr "অ্যানিমেট"
+msgstr "অ্যানিমেশন করা হবে"
 
 msgid "Hide Icon"
-msgstr "আইকন লুকিয়ে রাখুন"
+msgstr "আইকন লুকিয়ে রাখা হবে"
 
 msgid "Save Icon As..."
-msgstr "এভাবে আইকন সংরক্ষণ করুন..."
+msgstr "অন্য নামে আইকন সংরক্ষণ..."
 
 msgid "Set Custom Icon..."
-msgstr "পছন্দসই আইকন নির্ধারণ করুন..."
+msgstr "স্বনির্বাচিত আইকন নির্ধারণ..."
 
 msgid "Change Size"
-msgstr "আকার পরিবর্তন করুন"
+msgstr "আকার পরিবর্তন করা হবে"
 
 # tithi
 msgid "Show All"
-msgstr "সব প্রদর্শন করুন"
+msgstr "সব প্রদর্শন করা হবে"
 
 #. Conversation menu
 msgid "/_Conversation"
 msgstr "/কথোপকথন (_C)"
 
 msgid "/Conversation/New Instant _Message..."
-msgstr "/কথোপকথন/নতুন তাৎক্ষণিক বার্তা... (_M)"
+msgstr "/কথোপকথন/নতুন বার্তা... (_M)"
 
 msgid "/Conversation/_Find..."
 msgstr "/কথোপকথন/খুঁজুন... (_F)"
 
 msgid "/Conversation/View _Log"
-msgstr "/কথোপকথন/কার্যবিবরণী প্রদর্শন করুন (_L)"
+msgstr "/কথোপকথন/লগ প্রদর্শন (_L)"
 
 msgid "/Conversation/_Save As..."
-msgstr "/কথোপকথন/এভাবে সংরক্ষণ করুন... (_S)"
+msgstr "/কথোপকথন/নতুন নামে সংরক্ষণ... (_S)"
 
 # fix me tithi
 msgid "/Conversation/Clea_r Scrollback"
-msgstr "/কথোপকথন/স্ক্রলবেক মুছুন (_r)"
-
-#, fuzzy
+msgstr "/কথোপকথন/স্ক্রলব্যাক অপসারণ (_r)"
+
 msgid "/Conversation/M_edia"
-msgstr "/কথোপকথন/আরও (_o)"
-
-#, fuzzy
+msgstr "/কথোপকথন/মিডিয়া (_e)"
+
 msgid "/Conversation/Media/_Audio Call"
-msgstr "/কথোপকথন/আরও (_o)"
-
-#, fuzzy
+msgstr "/কথোপকথন/মিডিয়া/অডিও কল (_A)"
+
 msgid "/Conversation/Media/_Video Call"
-msgstr "/কথোপকথন/আরও (_o)"
-
-#, fuzzy
+msgstr "/কথোপকথন/মিডিয়া/ভিডিও কল (_V)"
+
 msgid "/Conversation/Media/Audio\\/Video _Call"
-msgstr "/কথোপকথন/কার্যবিবরণী প্রদর্শন করুন (_L)"
+msgstr "/কথোপকথন/মিডিয়া/অডিও‌\\/ভিডিও কল (_C)"
 
 msgid "/Conversation/Se_nd File..."
-msgstr "/কথোপকথন/ফাইল প্রেরণ করুন... (_n)"
+msgstr "/কথোপকথন/ফাইল প্রেরণ... (_n)"
 
 msgid "/Conversation/Add Buddy _Pounce..."
-msgstr "/কথোপকথন/বন্ধু পাউন্স যোগ করুন... (_P)"
+msgstr "/কথোপকথন/বন্ধু পাউন্স যোগ... (_P)"
 
 msgid "/Conversation/_Get Info"
-msgstr "/কথোপকথন/তথ্য সংগ্রহ করুন (_G)"
+msgstr "/কথোপকথন/তথ্য সংগ্রহ (_G)"
 
 msgid "/Conversation/In_vite..."
-msgstr "/কথোপকথন/আমন্ত্রণ করুন... (_v)"
+msgstr "/কথোপকথন/আমন্ত্রণ... (_v)"
 
 msgid "/Conversation/M_ore"
 msgstr "/কথোপকথন/আরও (_o)"
@@ -11869,47 +11743,47 @@
 msgstr "/কথোপকথন/উপনাম... (_i)"
 
 msgid "/Conversation/_Block..."
-msgstr "/কথোপকথন/ব্লক করুন... (_B)"
+msgstr "/কথোপকথন/ব্লক... (_B)"
 
 msgid "/Conversation/_Unblock..."
-msgstr "/কথোপকথন/ব্লক মুক্ত করুন... (_U)"
+msgstr "/কথোপকথন/আনব্লক... (_U)"
 
 msgid "/Conversation/_Add..."
-msgstr "/কথোপকথন/যোগ করুন... (_A)"
+msgstr "/কথোপকথন/যোগ... (_A)"
 
 msgid "/Conversation/_Remove..."
-msgstr "/কথোপকথন/অপসারণ করুন... (_R)"
+msgstr "/কথোপকথন/অপসারণ... (_R)"
 
 msgid "/Conversation/Insert Lin_k..."
-msgstr "/কথোপকথন/লিঙ্ক প্রবেশ করান... (_k)"
+msgstr "/কথোপকথন/লিংক প্রবেশ করান... (_k)"
 
 msgid "/Conversation/Insert Imag_e..."
-msgstr "/কথোপকথন/চিত্র প্রবেশ করান... (_e)"
+msgstr "/কথোপকথন/চিত্র সন্নিবেশ... (_e)"
 
 msgid "/Conversation/_Close"
-msgstr "/কথোপকথন/বন্ধ করুন (_C)"
+msgstr "/কথোপকথন/বন্ধ (_C)"
 
 #. Options
 msgid "/_Options"
-msgstr "/পছন্দসমূহ (_O)"
+msgstr "/অপশন (_O)"
 
 msgid "/Options/Enable _Logging"
-msgstr "/পছন্দসমূহ/লগ সক্রিয় করুন (_L)"
+msgstr "/অপশন/লগ সক্রিয়করণ (_L)"
 
 msgid "/Options/Enable _Sounds"
-msgstr "/পছন্দসমূহ/শব্দ সক্রিয় করুন (_S)"
+msgstr "/অপশন/শব্দ সক্রিয়করণ (_S)"
 
 msgid "/Options/Show Formatting _Toolbars"
-msgstr "/পছন্দসমূহ/বিন্যাসকরণ টুলবারসমূহ প্রদর্শন করুন (_T)"
+msgstr "/অপশন/বিন্যাস টুলবার প্রদর্শন (_T)"
 
 msgid "/Options/Show Ti_mestamps"
-msgstr "/পছন্দসমূহ/সময়-স্ট্যাম্প প্রদর্শন করুন (_m)"
+msgstr "/অপশন/টাইমস্ট্যাম্প প্রদর্শন (_m)"
 
 msgid "/Conversation/More"
 msgstr "/কথোপকথন/আরও"
 
 msgid "/Options"
-msgstr "/পছন্দসমূহ"
+msgstr "/অপশন"
 
 #. The menubar has been deactivated. Make sure the 'More' submenu is regenerated next time
 #. * the 'Conversation' menu pops up.
@@ -11920,64 +11794,61 @@
 msgstr "/কথোপকথন"
 
 msgid "/Conversation/View Log"
-msgstr "/কথোপকথন/কার্যবিবরণী প্রদর্শন করুন"
-
-#, fuzzy
+msgstr "/কথোপকথন/লগ প্রদর্শন"
+
 msgid "/Conversation/Media/Audio Call"
-msgstr "/কথোপকথন/আরও"
-
-#, fuzzy
+msgstr "/কথোপকথন/মিডিয়া/অডিও কল"
+
 msgid "/Conversation/Media/Video Call"
-msgstr "/কথোপকথন/কার্যবিবরণী প্রদর্শন করুন"
-
-#, fuzzy
+msgstr "/কথোপকথন/মিডিয়া/ভিডিও কল"
+
 msgid "/Conversation/Media/Audio\\/Video Call"
-msgstr "/কথোপকথন/আরও"
+msgstr "/কথোপকথন/মিডিয়া/অডিও‌\\/ভিডিও কল"
 
 msgid "/Conversation/Send File..."
-msgstr "/কথোপকথন/ফাইল প্রেরণ করুন..."
+msgstr "/কথোপকথন/ফাইল প্রেরণ..."
 
 msgid "/Conversation/Add Buddy Pounce..."
-msgstr "/কথোপকথন/বন্ধু পাউন্স যোগ করুন..."
+msgstr "/কথোপকথন/বন্ধু পাউন্স যোগ..."
 
 msgid "/Conversation/Get Info"
-msgstr "/কথোপকথন/তথ্য গ্রহণ করুন"
+msgstr "/কথোপকথন/তথ্য গ্রহণ"
 
 msgid "/Conversation/Invite..."
-msgstr "/কথোপকথন/আমন্ত্রণ করুন..."
+msgstr "/কথোপকথন/আমন্ত্রণ..."
 
 msgid "/Conversation/Alias..."
 msgstr "/কথোপকথন/উপনাম..."
 
 msgid "/Conversation/Block..."
-msgstr "/কথোপকথন/ব্লক করুন..."
+msgstr "/কথোপকথন/ব্লক..."
 
 msgid "/Conversation/Unblock..."
-msgstr "/কথোপকথন/ব্লক মুক্ত করুন..."
+msgstr "/কথোপকথন/আনব্লক..."
 
 msgid "/Conversation/Add..."
-msgstr "/কথোপকথন/যোগ করুন..."
+msgstr "/কথোপকথন/যোগ..."
 
 msgid "/Conversation/Remove..."
-msgstr "/কথোপকথন/অপসারণ করুন..."
+msgstr "/কথোপকথন/অপসারণ..."
 
 msgid "/Conversation/Insert Link..."
-msgstr "/কথোপকথন/লিঙ্ক প্রবেশ করান..."
+msgstr "/কথোপকথন/লিংক প্রবেশ করান..."
 
 msgid "/Conversation/Insert Image..."
-msgstr "/কথোপকথন/চিত্র প্রবেশ করান..."
+msgstr "/কথোপকথন/চিত্র সন্নিবেশ..."
 
 msgid "/Options/Enable Logging"
-msgstr "/পছন্দসমূহ/লগ সক্রিয় করুন"
+msgstr "/অপশন/লগ সক্রিয়করণ"
 
 msgid "/Options/Enable Sounds"
-msgstr "/পছন্দসমূহ/শব্দ সক্রিয় করুন"
+msgstr "/অপশন/শব্দ সক্রিয়করণ "
 
 msgid "/Options/Show Formatting Toolbars"
-msgstr "/পছন্দসমূহ/বিন্যাসকরণ টুলবারসমূহ প্রদর্শন করুন"
+msgstr "/অপশন/বিন্যাস টুলবার প্রদর্শন"
 
 msgid "/Options/Show Timestamps"
-msgstr "/পছন্দসমূহ/সময়-স্ট্যাম্প প্রদর্শন করুন"
+msgstr "/অপশন/টাইমস্ট্যাম্প প্রদর্শন "
 
 msgid "User is typing..."
 msgstr "ব্যবহারকারী টাইপ করছে..."
@@ -11992,20 +11863,20 @@
 
 #. Build the Send To menu
 msgid "S_end To"
-msgstr "প্রেরণ করুন (_S)"
+msgstr "প্রেরণ (_e)"
 
 msgid "_Send"
-msgstr "প্রেরণ করুন (_S)"
+msgstr "প্রেরণ (_S)"
 
 #. Setup the label telling how many people are in the room.
 msgid "0 people in room"
-msgstr "রুমে ০ জন ব্যক্তি উপস্থিত"
+msgstr "আসরে ০ ব্যক্তি উপস্থিত"
 
 #, c-format
 msgid "%d person in room"
 msgid_plural "%d people in room"
-msgstr[0] "রুমে %d জন ব্যক্তি উপস্থিত"
-msgstr[1] "রুমে %d জন ব্যক্তি উপস্থিত"
+msgstr[0] "আসরে %d জন উপস্থিত"
+msgstr[1] "আসরে %d জন উপস্থিত"
 
 msgid "Typing"
 msgstr "টাইপ করছে"
@@ -12014,93 +11885,93 @@
 msgstr "টাইপ করা বন্ধ করেছে"
 
 msgid "Nick Said"
-msgstr "নিক বলেছে"
+msgstr "ডাকনাম বলা হয়েছে"
 
 msgid "Unread Messages"
-msgstr "অপঠিত বার্তাসমূহ"
+msgstr "অপঠিত বার্তা"
 
 msgid "New Event"
 msgstr "নতুন ঘটনা"
 
 # fix me tithi
 msgid "clear: Clears all conversation scrollbacks."
-msgstr "মুছে ফেলুন: সব কথোপকথনের স্ক্রলবেক মুছে ফেলুন।"
+msgstr "clear: সব কথোপকথনের স্ক্রলব্যাক মুছে ফেলা হবে।"
 
 msgid "Confirm close"
-msgstr "বন্ধ নিশ্চিত করুন"
+msgstr "বন্ধ নিশ্চিতকরণ"
 
 msgid "You have unread messages. Are you sure you want to close the window?"
-msgstr "আপনার অপঠিত বার্তা আছে। আপনি কি নিশ্চিত আপনি উইন্ডোটি বন্ধ করতে চান?"
+msgstr "আপনার অপঠিত বার্তা আছে। আপনি কি নিশ্চিতভাবে উইন্ডোটি বন্ধ করতে চান?"
 
 msgid "Close other tabs"
-msgstr "অন্যান্য ট্যাবগুলো বন্ধ করুন"
+msgstr "অন্যান্য ট্যাবগুলো বন্ধ করা হবে"
 
 msgid "Close all tabs"
-msgstr "সকল ট্যাব বন্ধ করুন"
+msgstr "সব ট্যাব বন্ধ করা হবে"
 
 msgid "Detach this tab"
-msgstr "এই ট্যাবটি আলাদা করুন"
+msgstr "এই ট্যাবটি আলাদা করা হবে"
 
 msgid "Close this tab"
-msgstr "এই ট্যাবটি বন্ধ করুন"
+msgstr "এই ট্যাবটি বন্ধ করা হবে"
 
 msgid "Close conversation"
-msgstr "কথোপকথন বন্ধ করুন"
+msgstr "কথোপকথন বন্ধ করা হবে"
 
 msgid "Last created window"
 msgstr "সর্বশেষ তৈরিকৃত উইন্ডো"
 
 msgid "Separate IM and Chat windows"
-msgstr "তাৎক্ষণিক বার্তা ও আড্ডার উইন্ডো পৃথক করুন"
+msgstr "তাৎক্ষণিক বার্তা ও আড্ডার উইন্ডো পৃথক করা হবে"
 
 msgid "New window"
 msgstr "নতুন উইন্ডো"
 
 msgid "By group"
-msgstr "গ্রুপ অনুসারে"
+msgstr "দল অনুসারে"
 
 msgid "By account"
 msgstr "একাউন্ট অনুসারে"
 
 msgid "Save Debug Log"
-msgstr "ডিবাগ কার্যবিবরণী সংরক্ষণ করুন"
+msgstr "ডিবাগ লগ সংরক্ষণ করা হবে"
 
 msgid "Invert"
-msgstr "উল্টান"
+msgstr "উল্টানো"
 
 msgid "Highlight matches"
-msgstr "প্রনির্দেশ মিলসমূহ"
+msgstr "মিলগুলো হাইলাইট করা হবে"
 
 msgid "_Icon Only"
 msgstr "শুধুমাত্র আইকন (_I)"
 
 msgid "_Text Only"
-msgstr "শুধুমাত্র পাঠ (_T)"
+msgstr "শুধুমাত্র টেক্সট (_T)"
 
 msgid "_Both Icon & Text"
-msgstr "আইকন ও পাঠ উভয়ই (_B)"
+msgstr "আইকন ও টেক্সট উভয়ই (_B)"
 
 msgid "Filter"
-msgstr "পরিশ্রুতক"
+msgstr "পরিশোধক"
 
 msgid "Right click for more options."
-msgstr "আরও পছন্দের জন্য ডান ক্লিক করুন।"
+msgstr "আরও অপশনের জন্য ডান ক্লিক করুন।"
 
 msgid "Level "
 msgstr "স্তর"
 
 # tithi
 msgid "Select the debug filter level."
-msgstr "ডিবাগ পরিশ্রুতক স্তর নির্বাচন করুন।"
+msgstr "ডিবাগ পরিশোধকের স্তর নির্বাচন করুন।"
 
 msgid "All"
-msgstr "সকল"
+msgstr "সব"
 
 msgid "Misc"
 msgstr "অন্যান্য"
 
 msgid "Warning"
-msgstr "সতর্কতা"
+msgstr "সতর্কবানী"
 
 msgid "Error "
 msgstr "ত্রুটি"
@@ -12121,10 +11992,11 @@
 msgstr "কা-হিং চিউং"
 
 msgid "voice and video"
-msgstr ""
-
+msgstr "ভয়েস এবং ভিডিও"
+
+# as in contact * people
 msgid "support"
-msgstr "সমর্থন করুন"
+msgstr "সমর্থন"
 
 msgid "webmaster"
 msgstr "ওয়েবমাস্টার"
@@ -12134,7 +12006,7 @@
 msgstr "সিনিয়র অংশগ্রহণকারী/QA"
 
 msgid "win32 port"
-msgstr "উইন৩২ পোর্ট"
+msgstr "win32 পোর্ট"
 
 msgid "maintainer"
 msgstr "রক্ষণাবেক্ষক"
@@ -12144,7 +12016,7 @@
 
 #. If "lazy bum" translates literally into a serious insult, use something else or omit it.
 msgid "hacker and designated driver [lazy bum]"
-msgstr "হ্যাকার ও নির্দেশিত ড্রাইভার [অকর্মা]"
+msgstr "হ্যাকার ও নির্দেশিত ড্রাইভার [lazy bum]"
 
 msgid "support/QA"
 msgstr "সমর্থন/QA"
@@ -12154,21 +12026,21 @@
 msgstr "XMPP"
 
 msgid "original author"
-msgstr "মূল লেখক"
+msgstr "প্রকৃত লেখক"
 
 msgid "lead developer"
 msgstr "প্রধান ডেভেলপার"
 
 # tithi
 msgid "Afrikaans"
-msgstr "আফ্রিকানরা"
+msgstr "আফ্রিকান"
 
 msgid "Arabic"
-msgstr "এরাবিক"
+msgstr "আরবী"
 
 # tithi
 msgid "Belarusian Latin"
-msgstr "বেলারুশিয়ান ল্যাটিন"
+msgstr "বেলারুশিয় ল্যাটিন"
 
 msgid "Bulgarian"
 msgstr "বুলগেরীয়"
@@ -12213,26 +12085,26 @@
 
 # tithi
 msgid "Esperanto"
-msgstr "এসপারেনটো"
+msgstr "এসপার‌্যান্টো"
 
 msgid "Spanish"
-msgstr "স্পেনিশ"
+msgstr "স্প্যানিশ"
 
 msgid "Estonian"
 msgstr "এসতোনীয়"
 
 # tithi
 msgid "Euskera(Basque)"
-msgstr "ইউসকেরা(বাসকু)"
+msgstr "ইউসকেরা(বাস্ক)"
 
 msgid "Persian"
-msgstr "পার্সিয"
+msgstr "পার্সীয়"
 
 msgid "Finnish"
-msgstr "ফীনিশ"
+msgstr "ফিনিশ"
 
 msgid "French"
-msgstr "ফরাসী"
+msgstr "ফ্রেঞ্চ"
 
 msgid "Irish"
 msgstr "আইরিশ"
@@ -12246,7 +12118,7 @@
 
 # tithi
 msgid "Gujarati Language Team"
-msgstr "গুজরাটি ভাষার দল"
+msgstr "গুজরাটি ভাষার টিম"
 
 msgid "Hebrew"
 msgstr "হিব্রু"
@@ -12257,9 +12129,8 @@
 msgid "Hungarian"
 msgstr "হাঙ্গেরীয়"
 
-#, fuzzy
 msgid "Armenian"
-msgstr "রুমানীয়"
+msgstr "আর্মেনীয়"
 
 msgid "Indonesian"
 msgstr "ইন্ডোনেশিয়"
@@ -12274,11 +12145,10 @@
 msgstr "জর্জীয়"
 
 msgid "Ubuntu Georgian Translators"
-msgstr "উবান্টুর জর্জিয়ান অনুবাদকবৃন্দ"
-
-#, fuzzy
+msgstr "Ubuntu জর্জিয় অনুবাদকবৃন্দ"
+
 msgid "Khmer"
-msgstr "অন্যান্য"
+msgstr "খেমার"
 
 # fix me tithi
 msgid "Kannada"
@@ -12286,7 +12156,7 @@
 
 # tithi
 msgid "Kannada Translation team"
-msgstr "কান্নাডা ভাষান্তর দল"
+msgstr "কান্নাডা অনুবাদ টিম"
 
 msgid "Korean"
 msgstr "কোরিয়"
@@ -12304,13 +12174,12 @@
 msgid "Macedonian"
 msgstr "ম্যাসেডনিয়"
 
-#, fuzzy
 msgid "Mongolian"
-msgstr "ম্যাসেডনিয়"
+msgstr "মঙ্গোলীয়"
 
 # fix me tithi
 msgid "Bokmål Norwegian"
-msgstr "বোকমাল নরওয়েয়ান"
+msgstr "বোকমাল নরওয়েজীয়"
 
 msgid "Nepali"
 msgstr "নেপালি"
@@ -12320,11 +12189,11 @@
 
 # fix me tithi
 msgid "Norwegian Nynorsk"
-msgstr "নরওয়েয়ান নাইনোরকস"
+msgstr "নরওয়েজীয় নিনর্স্ক"
 
 # fix-me tithi
 msgid "Occitan"
-msgstr "অকেশান"
+msgstr "ওক্কিটান"
 
 # tithi
 msgid "Punjabi"
@@ -12337,10 +12206,10 @@
 msgstr "পর্তুগীজ"
 
 msgid "Portuguese-Brazil"
-msgstr "পর্তুগীজ-ব্রাজিল"
+msgstr "পর্তুগীজ-ব্রাজিলীয়"
 
 msgid "Pashto"
-msgstr "পাশতু"
+msgstr "পশতু"
 
 msgid "Romanian"
 msgstr "রুমানীয়"
@@ -12352,22 +12221,22 @@
 msgstr "স্লোভাক"
 
 msgid "Slovenian"
-msgstr "স্লোভেনিয়"
+msgstr "স্লোভেনীয়"
 
 msgid "Albanian"
 msgstr "আলবেনীয়"
 
 msgid "Serbian"
-msgstr "সার্বিয়"
+msgstr "সার্বীয়"
 
 msgid "Sinhala"
-msgstr "সিনহালা"
+msgstr "সিনহলি"
 
 msgid "Swedish"
 msgstr "সুইডিশ"
 
 msgid "Swahili"
-msgstr ""
+msgstr "সোয়াহিলি"
 
 msgid "Tamil"
 msgstr "তামিল"
@@ -12379,30 +12248,30 @@
 msgstr "থাই"
 
 msgid "Turkish"
-msgstr "টার্কিশ"
+msgstr "তুর্কি"
 
 # tithi
 msgid "Urdu"
-msgstr "ঊর্দূ"
+msgstr "উর্দু"
 
 msgid "Vietnamese"
-msgstr "ভিয়েতনামি"
+msgstr "ভিয়েতনামী"
 
 msgid "T.M.Thanh and the Gnome-Vi Team"
-msgstr "টি.এম.থানহ এবং নৌম-ভিআইর দল"
+msgstr "টি.এম.থানহ এবং জিনোমী-ভিআই টিম"
 
 msgid "Simplified Chinese"
-msgstr "সহজবোধ্য চীনা"
+msgstr "সরলকৃত চীনা"
 
 # tithi
 msgid "Hong Kong Chinese"
 msgstr "হংকং চীনা"
 
 msgid "Traditional Chinese"
-msgstr "ঐতিহ্যবাহী চীনা"
+msgstr "সনাতন চীনা"
 
 msgid "Amharic"
-msgstr "আমহারিক"
+msgstr "আমহরিক"
 
 #, c-format
 msgid "About %s"
@@ -12421,55 +12290,60 @@
 "complete list of contributors.  We provide no warranty for this program."
 "<BR><BR>"
 msgstr ""
-"%s লিবপারপল ভিত্তিক এমন একটি গ্রফিকাল মডিউলার বার্তাকরণ গ্রাহক যা AIM, MSN, "
+"%s হলো libpurple ভিত্তিক এমন একটি গ্রফিক্যাল মডিউলার বার্তা ক্লায়েন্ট যা AIM, MSN, "
 "Yahoo!, XMPP, ICQ, IRC,SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, "
-"Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, এবং QQ এর সাথে যুগপৎ যোগাযোগ করতে "
+"Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, এবং QQ এর সাথে একযোগে সংযুক্ত হতে "
 "সক্ষম।  এটা GTK+ ব্যবহার করে লেখা হয়েছে।<BR><BR>আপনি GPL এর নীতির (সংস্করণ ২ বা "
-"পরবর্তী) অধীনে প্রোগ্রামটিকে পরিবর্তন বা পুনরায় বিলি করতে পারেন।  'অনুলিপি হচ্ছে' "
-"ফাইলে ধারণকৃত GPL এর একটি অনুলিপি %s এর সাথে বিতরণ করা হয়েছে।  %s এর প্রদায়ক "
-"দ্বারা স্বত্তাধিকার সংরক্ষিত। প্রদায়কগনের সম্পূর্ণ তালিকার জন্য 'স্বত্তাধিকার সংরক্ষিত' "
-"ফাইল দেখুন।  এই প্রোগ্রামটির জন্য আমরা কোনো নিশ্চয়তা প্রদান করি না।<BR><BR>"
+"পরবর্তী) অধীনে প্রোগ্রামটিকে পরিবর্তন বা পুনরায় বিলি করতে পারেন। 'COPYING' ফাইলে "
+"ধারণকৃত GPL এর একটি কপি %s এর সাথে বিতরণ করা হয়েছে। কতৃপক্ষ দ্বারা %s এর "
+"সর্বস্বত্ত্ব সংরক্ষিত। কতৃপক্ষের সম্পূর্ণ তালিকার জন্য 'COPYRIGHT' ফাইলটি দেখুন। এই "
+"প্রোগ্রামটির জন্য আমরা কোনো ওয়ারেন্টি প্রদান করি না।<BR><BR>"
 
 #, c-format
 msgid ""
 "<FONT SIZE=\"4\">FAQ:</FONT> <A HREF=\"http://developer.pidgin.im/wiki/FAQ"
 "\">http://developer.pidgin.im/wiki/FAQ</A><BR/><BR/>"
 msgstr ""
+"<FONT SIZE=\"4\">FAQ:</FONT> <A HREF=\"http://developer.pidgin.im/wiki/FAQ"
+"\">http://developer.pidgin.im/wiki/FAQ</A><BR/><BR/>"
 
 #, c-format
 msgid ""
 "<FONT SIZE=\"4\">Help via e-mail:</FONT> <A HREF=\"mailto:support@pidgin.im"
 "\">support@pidgin.im</A><BR/><BR/>"
 msgstr ""
+"<FONT SIZE=\"4\">ইমেইলের মাধ্যমে সহায়তা:</FONT> <A HREF=\"mailto:"
+"support@pidgin.im\">support@pidgin.im</A><BR/><BR/>"
 
 # fix me
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "<FONT SIZE=\"4\">IRC Channel:</FONT> #pidgin on irc.freenode.net<BR><BR>"
-msgstr "<FONT SIZE=\"4\">IRC:</FONT> #pidgin on irc.freenode.net<BR><BR>"
+msgstr ""
+"<FONT SIZE=\"4\">IRC চ্যানেল:</FONT> #pidgin on irc.freenode.net<BR><BR>"
 
 # fix me
-#, fuzzy, c-format
+#, c-format
 msgid "<FONT SIZE=\"4\">XMPP MUC:</FONT> devel@conference.pidgin.im<BR><BR>"
-msgstr "<FONT SIZE=\"4\">IRC:</FONT> #pidgin on irc.freenode.net<BR><BR>"
+msgstr "<FONT SIZE=\"4\">XMPP MUC:</FONT> devel@conference.pidgin.im<BR><BR>"
 
 msgid "Current Developers"
 msgstr "বর্তমান ডেভেলপারগণ"
 
 msgid "Crazy Patch Writers"
-msgstr "ক্ষিপ্ত প্যাচ লেখকগণ"
+msgstr "অত্যুৎসাহী প্যাচ লেখক"
 
 msgid "Retired Developers"
 msgstr "অবসরপ্রাপ্ত ডেভেলপার"
 
 msgid "Retired Crazy Patch Writers"
-msgstr "অবসরপ্রাপ্ত ক্ষিপ্ত প্যাচ লেখকগণ"
+msgstr "অবসরপ্রাপ্ত অত্যুৎসাহী প্যাচ লেখক"
 
 msgid "Current Translators"
-msgstr "বর্তমান অনুবাদকবৃন্দ"
+msgstr "বর্তমান অনুবাদক"
 
 msgid "Past Translators"
-msgstr "পুরনো অনুবাদকবৃন্দ"
+msgstr "পুরনো অনুবাদক"
 
 msgid "Debugging Information"
 msgstr "ডিবাগকরণ তথ্য"
@@ -12481,36 +12355,35 @@
 msgstr "একাউন্ট (_A)"
 
 msgid "Get User Info"
-msgstr "ব্যবহারকারীর তথ্য গ্রহণ করুন"
+msgstr "ব্যবহারকারীর তথ্য"
 
 msgid ""
 "Please enter the username or alias of the person whose info you would like "
 "to view."
 msgstr ""
-"অনুগ্রহ করে আপনি যে ব্যক্তির তথ্য প্রদর্শন করতে চান তার ব্যবহারকারী-নাম বা উপনাম "
-"প্রবেশ করান।"
+"অনুগ্রহ করে আপনি যে ব্যক্তির তথ্য প্রদর্শন করতে চান তার ব্যবহারকারী নাম বা উপনাম দিন।"
 
 msgid "View User Log"
-msgstr "ব্যবহারকারীর কার্যবিবরণী প্রদর্শন করুন"
+msgstr "ব্যবহারকারীর লগ প্রদর্শন"
 
 msgid "Alias Contact"
-msgstr "উপনামের যোগাযোগ"
+msgstr "উপনামের পরিচিতি"
 
 msgid "Enter an alias for this contact."
-msgstr "এই যোগাযোগের জন্য উপনাম প্রবেশ করান।"
+msgstr "এই পরিচিত ব্যক্তির একটি উপনাম দিন।"
 
 #, c-format
 msgid "Enter an alias for %s."
-msgstr "%s-এর জন্য উপনাম প্রবেশ করান।"
+msgstr "%s-এর জন্য উপনাম দিন।"
 
 msgid "Alias Buddy"
-msgstr "উপনাম বন্ধু"
+msgstr "উপনামের বন্ধু"
 
 msgid "Alias Chat"
 msgstr "উপনামের আড্ডা"
 
 msgid "Enter an alias for this chat."
-msgstr "এই আড্ডার জন্য একটি উপনাম প্রবেশ করান।"
+msgstr "এই আড্ডার জন্য একটি উপনাম দিন।"
 
 #, c-format
 msgid ""
@@ -12520,43 +12393,43 @@
 "You are about to remove the contact containing %s and %d other buddies from "
 "your buddy list.  Do you want to continue?"
 msgstr[0] ""
-"আপনি আপনার বন্ধু তালিকা থেকে  অন্য %s এবং %d বন্ধুর ধারনকারী যোগাযোগ অপসারণ করতে "
-"পারেন। আপনি কি অব্যাহত রাখতে চান?"
+"আপনি আপনার বন্ধু তালিকা থেকে  %s এবং অন্য %d জন বন্ধুকে অপসারণ করতে যাচ্ছেন। আপনি "
+"কি অব্যাহত রাখতে চান?"
 msgstr[1] ""
-"আপনি আপনার বন্ধু তালিকা থেকে  অন্য %s এবং %d বন্ধুগণের ধারনকারী যোগাযোগ অপসারণ "
-"করতে পারেন। আপনি কি অব্যাহত রাখতে চান?"
+"আপনি আপনার বন্ধু তালিকা থেকে  %s এবং অন্য %d জন বন্ধুকে অপসারণ করতে যাচ্ছেন। আপনি "
+"কি অব্যাহত রাখতে চান?"
 
 msgid "Remove Contact"
-msgstr "যোগাযোগ অপসারণ করুন"
+msgstr "পরিচিতি অপসারণ"
 
 msgid "_Remove Contact"
-msgstr "যোগাযোগ অপসারণ করুন (_R)"
+msgstr "পরিচিতি অপসারণ (_R)"
 
 #, c-format
 msgid ""
 "You are about to merge the group called %s into the group called %s. Do you "
 "want to continue?"
-msgstr "আপনি %1s নামের গ্রুপকে %2s গ্রুপে একত্রিত করছেন। আপনি কি অব্যাহত রাখতে চান?"
+msgstr "আপনি %2$s দলের সাথে %1$s দলকে একত্রিত করতে যাচ্ছেন। আপনি কি নিশ্চিত?"
 
 msgid "Merge Groups"
-msgstr "গ্রুপসমুহ একত্রিত করুন"
+msgstr "দলসমুহ একত্রিকরণ"
 
 msgid "_Merge Groups"
-msgstr "গ্রুপসমুহ একত্রিত করুন (_M)"
+msgstr "দলসমুহ একত্রিকরণ (_M)"
 
 #, c-format
 msgid ""
 "You are about to remove the group %s and all its members from your buddy "
 "list.  Do you want to continue?"
 msgstr ""
-"আপনি %s গ্রুপ ও এর সকল সদস্যকে আপনার বন্ধু তালিকা থেকে অপসারণ করতে পারেন। আপনি কি "
-"অব্যাহত রাখতে চান?"
+"আপনি %s দলটি এবং এর সব সদস্যকে বন্ধু তালিকা থেকে অপসারণ করতে যাচ্ছেন। আপনি কি "
+"নিশ্চিত?"
 
 msgid "Remove Group"
-msgstr "গ্রুপ অপসারণ করুন"
+msgstr "দল অপসারণ"
 
 msgid "_Remove Group"
-msgstr "গ্রুপ অপসারণ করুন (_R)"
+msgstr "দল অপসারণ (_R)"
 
 #, c-format
 msgid ""
@@ -12566,65 +12439,65 @@
 "চান?"
 
 msgid "Remove Buddy"
-msgstr "বন্ধু অপসারণ করুন"
+msgstr "বন্ধু অপসারণ"
 
 msgid "_Remove Buddy"
-msgstr "বন্ধু অপসাণ করুন (_R)"
+msgstr "বন্ধু অপসারণ (_R)"
 
 #, c-format
 msgid ""
 "You are about to remove the chat %s from your buddy list.  Do you want to "
 "continue?"
 msgstr ""
-"আপনি আপনার বন্ধু তালিকা হতে %s অপসারণ করতে পারেন।  আপনি কি অব্যাহত রাখতে চান?"
+"আপনি আপনার বন্ধু তালিকা থেকে %s অপসারণ করতে পারেন। আপনি কি অব্যাহত রাখতে চান?"
 
 msgid "Remove Chat"
-msgstr "আড্ডা অপসারণ করুন"
+msgstr "আড্ডা অপসারণ"
 
 msgid "_Remove Chat"
-msgstr "আড্ডা অপসারণ করুন (_R)"
+msgstr "আড্ডা অপসারণ (_R)"
 
 msgid "Right-click for more unread messages...\n"
-msgstr "আরও অপঠিত বার্তার জন্য ডান ক্লিক করুন...\n"
+msgstr "আরও অপঠিত বার্তার জন্য ডান-ক্লিক করুন...\n"
 
 msgid "_Change Status"
-msgstr "অবস্থা পরিবর্তন করুন (_C)"
+msgstr "অবস্থা পরিবর্তন (_C)"
 
 msgid "Show Buddy _List"
-msgstr "বন্ধু তালিকা প্রদর্শন করুন (_L)"
+msgstr "বন্ধু তালিকা প্রদর্শন (_L)"
 
 msgid "_Unread Messages"
-msgstr "অপঠিত বার্তাসমূহ (_U)"
+msgstr "অপঠিত বার্তা (_U)"
 
 msgid "New _Message..."
 msgstr "নতুন বার্তা...(_M)"
 
 msgid "_Accounts"
-msgstr "একাউন্টগুলো (_A)"
+msgstr "একাউন্ট (_A)"
 
 msgid "Plu_gins"
 msgstr "প্লাগইন (_g)"
 
 msgid "Pr_eferences"
-msgstr "প্রাধিকারসমূহ (_e)"
+msgstr "পছন্দসমূহ (_e)"
 
 msgid "Mute _Sounds"
-msgstr "শব্দ বন্ধ রাখুন (_S)"
+msgstr "শব্দ বন্ধ (_S)"
 
 msgid "_Blink on New Message"
-msgstr "নতুন বার্তায় পিট পিট করুন (_B)"
+msgstr "নতুন বার্তা আসলে মিটিমিটি জ্বলবে (_B)"
 
 msgid "_Quit"
-msgstr "প্রস্থান করুন (_Q)"
+msgstr "প্রস্থান (_Q)"
 
 msgid "Not started"
 msgstr "আরম্ভ হয়নি"
 
 msgid "<b>Receiving As:</b>"
-msgstr "<b>যেভাবে গ্রহণ করছে:</b>"
+msgstr "<b>যেভাবে গ্রহণ করা হচ্ছে:</b>"
 
 msgid "<b>Receiving From:</b>"
-msgstr "<b>যার থেকে গ্রহণ করছে:</b>"
+msgstr "<b>যার থেকে গ্রহণ করা হচ্ছে:</b>"
 
 msgid "<b>Sending To:</b>"
 msgstr "<b>যাকে পাঠানো হচ্ছে:</b>"
@@ -12633,14 +12506,15 @@
 msgstr "<b>যেভাবে পাঠানো হচ্ছে:</b>"
 
 msgid "There is no application configured to open this type of file."
-msgstr "এই ধরনের ফাইল খোলার জন্য কোনো প্রয়োগন বিন্যাসিত নেই।"
-
+msgstr "এই ধরনের ফাইল খোলার জন্য কোনো অ্যাপ্লিকেশন কনফিগার করা নেই।"
+
+# mark40
 msgid "An error occurred while opening the file."
-msgstr "ফাইলটি খোলার সময়ে একটি ত্রুটি ঘটেছে।"
+msgstr "ফাইলটি খোলার সময়ে একটি ত্রুটি হয়েছে।"
 
 #, c-format
 msgid "Error launching %s: %s"
-msgstr "%s শুরুকরণে ত্রুটি: %s"
+msgstr "%s আরম্ভ করায় ত্রুটি: %s"
 
 #, c-format
 msgid "Error running %s"
@@ -12648,10 +12522,10 @@
 
 #, c-format
 msgid "Process returned error code %d"
-msgstr "প্রক্রিয়াটি %d ত্রুটি কোড ফেরত পাঠিয়েছে"
+msgstr "প্রসেসটি %d ত্রুটি কোড ফেরত পাঠিয়েছে"
 
 msgid "Filename:"
-msgstr "ফাইলের-নাম:"
+msgstr "ফাইলের নাম:"
 
 msgid "Local File:"
 msgstr "স্থানীয় ফাইল:"
@@ -12666,10 +12540,10 @@
 msgstr "অবশিষ্ট সময়:"
 
 msgid "Close this window when all transfers _finish"
-msgstr "সকল স্থানান্তর শেষ হলে এই উইন্ডোটি বন্ধ করুন (_f)"
+msgstr "সব স্থানান্তর শেষ হলে এই উইন্ডোটি বন্ধ করা হবে (_f)"
 
 msgid "C_lear finished transfers"
-msgstr "সমাপ্ত স্থানান্তর পরিস্কার করুন (_l)"
+msgstr "স্থানান্তর সমাপ্ত হলে তালিকা থেকে মুছে ফেলা হবে (_l)"
 
 #. "Download Details" arrow
 msgid "File transfer _details"
@@ -12681,55 +12555,54 @@
 
 #. Resume button
 msgid "_Resume"
-msgstr "পুনরায় শুরু করুন (_R)"
+msgstr "পুনরায় শুরু (_R)"
 
 msgid "Paste as Plain _Text"
-msgstr "সরল পাঠ হিসেবে প্রতিলেপন করুন (_T)"
+msgstr "সরল টেক্সট হিসেবে প্রতিলেপন (_T)"
 
 msgid "_Reset formatting"
-msgstr "বিন্যাসকরণ পুনঃবিন্যাস করুন (_R)"
+msgstr "বিন্যাস রিসেট (_R)"
 
 # tithi
 msgid "Disable _smileys in selected text"
-msgstr "নির্বাচিত পাঠে স্মাইলীগুলো নিষ্ক্রিয় করুন (_s)"
+msgstr "নির্বাচিত টেক্সটে স্মাইলি নিষ্ক্রিয় করা হবে (_s)"
 
 msgid "Hyperlink color"
-msgstr "হাইপারলিঙ্কের রং"
+msgstr "হাইপারলিংকের রং"
 
 msgid "Color to draw hyperlinks."
-msgstr "হাইপারলিঙ্ক আঁকার রং।"
+msgstr "হাইপারলিংক আঁকার রং।"
 
 # fix me
 msgid "Hyperlink visited color"
-msgstr "হাইপারলিঙ্কের পরিদর্শিত রং"
-
-#, fuzzy
+msgstr "পরিদর্শিত হাইপারলিংকের রং"
+
 msgid "Color to draw hyperlink after it has been visited (or activated)."
-msgstr "হাইপারলিঙ্ক পরিদর্শন (বা সক্রিয়) করার পর এটা আকাঁর রং।"
+msgstr "হাইপারলিংকে পরিদর্শন (বা সক্রিয়) করার পর এটি আঁকার রং।"
 
 msgid "Hyperlink prelight color"
-msgstr "হাইপারলিঙ্ক প্রাক-হালকা রং"
+msgstr "হাইপারলিঙ্কের prelight রং"
 
 msgid "Color to draw hyperlinks when mouse is over them."
-msgstr "হাইপারলিঙ্কের ওপর মাউস থাকাকালীন এটা আকার রং"
+msgstr "হাইপারলিংকের ওপর মাউস থাকাকালীন এটি আঁকার রং"
 
 msgid "Sent Message Name Color"
 msgstr "প্রেরিত বার্তার নামের রং"
 
 # tithi
 msgid "Color to draw the name of a message you sent."
-msgstr "আপনার প্রেরিত বার্তাসমূহের নাম আকার রং।"
+msgstr "আপনার প্রেরিত বার্তার নাম আঁকার রং।"
 
 msgid "Received Message Name Color"
 msgstr "বার্তার নামের রং গ্রহণ করা হয়েছে"
 
 # tithi
 msgid "Color to draw the name of a message you received."
-msgstr "আপনার গৃহীত বার্তাসমূহের নাম আকার রং।"
+msgstr "আপনার গৃহীত বার্তার নাম আঁকার রং।"
 
 # tithi
 msgid "\"Attention\" Name Color"
-msgstr "\"মনোযোগ\" রং এর নাম"
+msgstr "\"দৃষ্টি আকর্ষণ\" রং এর নাম"
 
 # tithi
 msgid "Color to draw the name of a message you received containing your name."
@@ -12737,65 +12610,62 @@
 
 # tithi
 msgid "Action Message Name Color"
-msgstr "কার্য বার্তা নামের রং"
+msgstr "প্রতিক্রিয়া বার্তার নামের রং"
 
 # tithi
 msgid "Color to draw the name of an action message."
-msgstr "একটি কর্ম বার্তার নাম আকার রং।"
+msgstr "একটি প্রতিক্রিয়া বার্তার নামের রং।"
 
 # fix me tithi
 msgid "Action Message Name Color for Whispered Message"
-msgstr "গোপনীয় বার্তার জন্য কার্য বার্তার নামের রং"
-
-# tithi
-#, fuzzy
+msgstr "গোপনীয় বার্তার জন্য প্রতিক্রিয়া বার্তার নামের রং"
+
+# tithi
 msgid "Color to draw the name of a whispered action message."
-msgstr "একটি কর্ম বার্তার নাম আকার রং।"
+msgstr "একটি গোপনীয় প্রতিক্রিয়া বার্তার নাম আঁকার রং।"
 
 # fix- me tithi
 msgid "Whisper Message Name Color"
 msgstr "গোপনীয় বার্তার নামের রং"
 
 # tithi
-#, fuzzy
 msgid "Color to draw the name of a whispered message."
-msgstr "একটি কর্ম বার্তার নাম আকার রং।"
+msgstr "একটি গোপনীয় বার্তার নাম আঁকার রং।"
 
 msgid "Typing notification color"
-msgstr "প্রজ্ঞাপন রং টাইপ করছে"
-
-# tithi
-#, fuzzy
+msgstr "ঘোষণা টাইপ করার রং"
+
+# tithi
 msgid "The color to use for the typing notification"
-msgstr "টাইপকরণ প্রজ্ঞাপন ফন্টের জন্য ব্যবহারের রং"
+msgstr "ঘোষণা টাইপ করার ফন্টের জন্য ব্যবহৃত রং"
 
 msgid "Typing notification font"
-msgstr "টাইপকরণ প্রজ্ঞাপন ফন্ট"
+msgstr "ঘোষণা টাইপ করার ফন্ট"
 
 # tithi
 msgid "The font to use for the typing notification"
-msgstr "টাইপকরণ প্রজ্ঞাপনের জন্য ব্যবহারের ফন্ট4"
+msgstr "ঘোষণা টাইপ করার জন্য ব্যবহৃত ফন্ট"
 
 msgid "Enable typing notification"
-msgstr "টাইপকরণ প্রজ্ঞাপন সক্রিয় করুন"
+msgstr "ঘোষণা টাইপ সক্রিয় করা হবে"
 
 msgid ""
 "<span size='larger' weight='bold'>Unrecognized file type</span>\n"
 "\n"
 "Defaulting to PNG."
 msgstr ""
-"<span size='larger' weight='bold'>অশনাক্তকৃত ফাইলের ধরন</span>\n"
-"\n"
-"PNG তে পূর্বনির্ধারিত।"
+"<span size='larger' weight='bold'>অজানা ফাইলের ধরন</span>\n"
+"\n"
+"ডিফল্ট মান PNG ব্যবহৃত হবে।"
 
 msgid ""
 "Unrecognized file type\n"
 "\n"
 "Defaulting to PNG."
 msgstr ""
-"অশনাক্তকৃত ফাইলের ধরন\n"
-"\n"
-"PNG তে পূর্বনির্ধারিত।।"
+"অজানা ফাইলের ধরন\n"
+"\n"
+"ডিফল্ট মান PNG ব্যবহৃত হবে।"
 
 #, c-format
 msgid ""
@@ -12818,45 +12688,44 @@
 "%s"
 
 msgid "Save Image"
-msgstr "চিত্র সংরক্ষণ করুন"
+msgstr "চিত্র সংরক্ষণ"
 
 msgid "_Save Image..."
-msgstr "চিত্র সংরক্ষণ করুন... (_S)"
+msgstr "চিত্র সংরক্ষণ... (_S)"
 
 # tithi
 msgid "_Add Custom Smiley..."
-msgstr "পছন্দসই স্মাইলী যোগ করুন... (_A)"
+msgstr "স্বনির্বাচিত স্মাইলি যোগ... (_A)"
 
 msgid "Select Font"
-msgstr "ফন্ট নির্বাচন করুন"
+msgstr "ফন্ট নির্বাচন"
 
 msgid "Select Text Color"
-msgstr "পাঠ রং নির্বাচন করুন"
+msgstr "টেক্সটের রং নির্বাচন"
 
 msgid "Select Background Color"
-msgstr "প্রেক্ষাপট রং নির্বাচন করুন"
+msgstr "পটভূমি রং নির্বাচন"
 
 msgid "_URL"
-msgstr "ইউআরএল (_U)"
+msgstr "URL (_U)"
 
 msgid "_Description"
-msgstr "বিবরণ (_D)"
+msgstr "বর্ণনা (_D)"
 
 msgid ""
 "Please enter the URL and description of the link that you want to insert. "
 "The description is optional."
 msgstr ""
-"অনুগ্রহ করে আপনি যে লিঙ্ক প্রবেশ করাতে চান তার ইউআরএল ও বিবরণ প্রবেশ করান। বিবরণ "
-"ঐচ্ছিক।"
+"অনুগ্রহ করে আপনি যে লিংক প্রবেশ করাতে চান তার URL এবং বর্ণনা দিন। বর্ণনা ঐচ্ছিক।"
 
 msgid "Please enter the URL of the link that you want to insert."
-msgstr "অনুগ্রহ করে আপনি যে লিঙ্ক প্রবেশ করাতে চান তার ইউআরএল প্রবেশ করান।"
+msgstr "অনুগ্রহ করে আপনি যে লিংক প্রবেশ করাতে চান তার URL দিন।"
 
 msgid "Insert Link"
-msgstr "লিঙ্ক প্রবেশ করান"
+msgstr "লিংক প্রবেশ করান"
 
 msgid "_Insert"
-msgstr "প্রবেশ করান (_I)"
+msgstr "প্রবেশ (_I)"
 
 #, c-format
 msgid "Failed to store image: %s\n"
@@ -12871,7 +12740,8 @@
 "This smiley is disabled because a custom smiley exists for this shortcut:\n"
 " %s"
 msgstr ""
-"এই স্মাইলীটি নিষ্ক্রিয় কারণ এই শর্টকাটটির জন্য একটি পছন্দসই স্মাইলী বিদ্যমান:\n"
+"এই স্মাইলিটি নিষ্ক্রিয় কারণ এই শর্টকাটটির জন্য ইতিমধ্যে স্বনির্বাচিত স্মাইলি "
+"বিদ্যমান:\n"
 "%s"
 
 msgid "Smile!"
@@ -12879,23 +12749,24 @@
 
 # fix-me tithi
 msgid "_Manage custom smileys"
-msgstr "পছন্দসই স্মাইলীগুলো নিয়ন্ত্রণ করুন (_M)"
+msgstr "স্বনির্বাচিত স্মাইলি নিয়ন্ত্রণ (_M)"
 
 msgid "This theme has no available smileys."
-msgstr "এই থীমের কোনো স্মাইলি সহজলভ্য নেই।"
+msgstr "এই থীমের কোনো স্মাইলি নেই।"
 
 msgid "_Font"
 msgstr "ফন্ট (_F)"
 
+# ***
 msgid "Group Items"
-msgstr "গ্রুপের বিষয়োপকরণসমূহ"
+msgstr "আইটেম একত্রিত করা হবে"
 
 # tithi
 msgid "Ungroup Items"
-msgstr "গ্রুপহীন বিষয়োপকরণসমূহ"
+msgstr "আইটেম আলাদা করা হবে"
 
 msgid "Bold"
-msgstr "মোটা"
+msgstr "গাঢ়"
 
 msgid "Italic"
 msgstr "তীর্যক"
@@ -12909,24 +12780,24 @@
 
 # tithi
 msgid "Increase Font Size"
-msgstr "ফন্টের আকার বৃদ্ধি করুন"
+msgstr "ফন্টের আকার বৃদ্ধি করা হবে"
 
 # tithi
 msgid "Decrease Font Size"
-msgstr "ফন্টের আকার হ্রাস করুন"
+msgstr "ফন্টের আকার হ্রাস করা হবে"
 
 msgid "Font Face"
-msgstr "ফন্টের রুপ"
+msgstr "ফন্টের রূপ"
 
 msgid "Foreground Color"
-msgstr "সম্মুখভাগের রং"
+msgstr "পুরোভাগের রং"
 
 # tithi
 msgid "Reset Formatting"
-msgstr "বিন্যাসকরণ পুনঃবিন্যাস করুন"
+msgstr "বিন্যাস রিসেট"
 
 msgid "Insert IM Image"
-msgstr "আইএম চিত্র প্রবেশ করান"
+msgstr "IM চিত্র প্রবেশ করান"
 
 msgid "Insert Smiley"
 msgstr "স্মাইলি প্রবেশ করান"
@@ -12935,7 +12806,7 @@
 msgstr "<b>মোটা (_B)</b>"
 
 msgid "<i>_Italic</i>"
-msgstr "<i>তীর্যক (_I)</i>"
+msgstr "তীর্যক (_I) <i></i>"
 
 msgid "<u>_Underline</u>"
 msgstr "<u>নিম্নরেখা (_U)</u>"
@@ -12959,39 +12830,39 @@
 #. * need to update them when formatting changes. The above items don't need
 #. * no updating nor nothin'
 msgid "_Font face"
-msgstr "ফন্টের রুপ (_F)"
+msgstr "ফন্টের রূপ (_F)"
 
 msgid "Foreground _color"
-msgstr "সম্মুখভাগের রং (_c)"
+msgstr "পুরোভাগের রং (_c)"
 
 msgid "Bac_kground color"
-msgstr "প্রেক্ষাপটের রং (_k)"
+msgstr "পটভূমির রং (_k)"
 
 msgid "_Image"
 msgstr "চিত্র (_I)"
 
 msgid "_Link"
-msgstr "লিঙ্ক (_L)"
+msgstr "লিংক (_L)"
 
 msgid "_Horizontal rule"
-msgstr "অনুভূমিক নিয়ম (_H)"
+msgstr "অনুভূমিক মাপকাঠি (_H)"
 
 msgid "_Smile!"
 msgstr "হাসি! (_S)"
 
 msgid "Log Deletion Failed"
-msgstr "কার্যবিবরণী শনাক্তকরণ ব্যর্থ হয়েছে"
+msgstr "লগ অপসারণ ব্যর্থ"
 
 # tithi
 msgid "Check permissions and try again."
-msgstr "অনুমতি যাচাই করুন এবং আবার চেষ্টা করুন।"
+msgstr "অনুমতি যাচাই করে আবার চেষ্টা করুন।"
 
 #, c-format
 msgid ""
 "Are you sure you want to permanently delete the log of the conversation with "
 "%s which started at %s?"
 msgstr ""
-"আপনি কি নিশ্চিত আপনি স্থায়ীভাবে %2s তে শুরু হওয়া কথোপকথনের কার্যবিবরণী %1s সহ মুছে "
+"আপনি কি নিশ্চিতভাবে %1$s এর সাথে %2$s এ শুরু হওয়া কথোপকথনের লগ স্থায়ীভাবে মুছে "
 "ফেলতে চান?"
 
 #, c-format
@@ -12999,21 +12870,20 @@
 "Are you sure you want to permanently delete the log of the conversation in %"
 "s which started at %s?"
 msgstr ""
-"আপনি কি নিশ্চিত আপনি স্থায়ীভাবে %2s তে শুরু হওয়া কথোপকথনের কার্যবিবরণী %1s এ মুছে "
-"ফেলতে চান?"
+"আপনি কি নিশ্চিতভাবে %1$s এ %2$s এ শুরু হওয়া কথোপকথনের লগ স্থায়ীভাবে মুছে ফেলতে "
+"চান?"
 
 #, c-format
 msgid ""
 "Are you sure you want to permanently delete the system log which started at %"
 "s?"
-msgstr ""
-"আপনি কি নিশ্চিত আপনি স্থায়ীভাবে %1s তে শুরু হওয়া সিস্টেম কার্যবিবরণী মুছে ফেলতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে %s এ শুরু হওয়া সিস্টেম লগ স্থায়ীভাবে মুছে ফেলতে চান?"
 
 msgid "Delete Log?"
-msgstr "কার্যবিবরণী কি মুছতে চান?"
+msgstr "লগ মুছতে চান?"
 
 msgid "Delete Log..."
-msgstr "কার্যবিবরণী মুছুন..."
+msgstr "লগ অপসারণ..."
 
 # fix me
 #, c-format
@@ -13027,14 +12897,14 @@
 
 #. Steal the "HELP" response and use it to trigger browsing to the logs folder
 msgid "_Browse logs folder"
-msgstr "কার্যবিবরণীর ফোল্ডার ব্রাউজ করুন (_B)"
+msgstr "লগ ফোল্ডার ব্রাউজ (_B)"
 
 #, c-format
 msgid "%s %s. Try `%s -h' for more information.\n"
-msgstr "%1s %2s। আরও তথ্যের জন্য `%3s -h' এ চেষ্টা করুন।\n"
+msgstr "%1$s %2$s। আরও তথ্যের জন্য `%3$s -h' চেষ্টা করুন।\n"
 
 # fix me
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s %s\n"
 "Usage: %s [OPTION]...\n"
@@ -13052,22 +12922,23 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s %s\n"
-"ব্যবহার: %s [পছন্দ]...\n"
-"\n"
-"  -c, --config=DIR    পছন্দসই ফাইলের জন্য DIR ব্যবহার করুন\n"
-"  -d, --debug         stdout এ ডিবাগিং বার্তা মুদ্রণ করুন\n"
-"  -h, --help          এই সহায়িকা দেখুন ও ত্যাগ করুন\n"
-"  -m, --multiple      একক দৃষ্টান্ত নিশ্চিত করবেন না\n"
-"  -n, --nologin       স্বয়ংক্রিয়ভাবে লগইন করবেন না\n"
-"  -l, --login[=NAME]  সুনির্দিষ্ট একাউন্ট(সমূহ) সক্রিয় করুন (কমা দ্বারা পৃথক ঐচ্ছিক "
-"আর্গুমেন্ট নাম\n"
-"                        ব্যবহারের জন্য একাউন্ট(সমূহ) সুনির্দিষ্ট করে,\n"
-"                       এটা ব্যতিত শুধুমাত্র প্রথম একাউন্ট সক্রিয় হবে)। \n"
-"  --display=DISPLAY   X ব্যবহারের জন্য প্রদর্শন করুন\n"
-"  -v, --version       বর্তমান সংস্করণ প্রদর্শন করুন এবং ত্যাগ করুন\n"
+"ব্যবহার: %s [OPTION]...\n"
+"\n"
+"  -c, --config=DIR    কনফিগারেশন ফাইলের জন্য DIR ব্যবহার করা হবে\n"
+"  -d, --debug         stdout এ ডিবাগিং বার্তা প্রিন্ট করা হবে\n"
+"  -f, --force-online  অনলাইন হতে বাধ্য করুন, নেটওয়ার্কের অবস্থা যাই হোক\n"
+"  -h, --help          এই সহায়িকা দেখুন ও প্রস্থান করুন\n"
+"  -m, --multiple     একক ইনস্ট্যান্স নিশ্চিত করা হবে না\n"
+"  -n, --nologin       স্বয়ংক্রিয়ভাবে লগইন করা হবে না\n"
+"  -l, --login[=NAME]  নির্দিষ্ট একাউন্ট(সমূহ) সক্রিয় করা হবে (NAME হচ্ছে কমা দ্বারা "
+"পৃথককৃত ঐচ্ছিক আর্গুমেন্ট\n"
+"                        যা একাউন্ট(সমূহ) নির্দিষ্ট করে,\n"
+"                       এটি ব্যতিত শুধুমাত্র প্রথম একাউন্টটি সক্রিয় হবে)। \n"
+"  --display=DISPLAY   যে X-ডিসপ্লে ব্যবহার করা হবে তা নির্দিষ্ট করে।\n"
+"  -v, --version       বর্তমান সংস্করণ প্রদর্শন করে প্রস্থান করা হবে\n"
 
 # fix me
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s %s\n"
 "Usage: %s [OPTION]...\n"
@@ -13084,18 +12955,19 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s %s\n"
-"ব্যবহার: %s [পছন্দ]...\n"
-"\n"
-"  -c, --config=DIR    পছন্দসই ফাইলের জন্য DIR ব্যবহার করুন\n"
-"  -d, --debug         stdout এ ডিবাগিং বার্তা মুদ্রণ করুন\n"
-"  -h, --help          এই সহায়িকা দেখুন ও ত্যাগ করুন\n"
-"  -m, --multiple      একক দৃষ্টান্ত নিশ্চিত করবেন না\n"
-"  -n, --nologin       স্বয়ংক্রিয়ভাবে লগইন করবেন না\n"
-"  -l, --login[=NAME]  সুনির্দিষ্ট একাউন্ট(সমূহ) সক্রিয় করুন (কমা দ্বারা পৃথক ঐচ্ছিক "
-"আর্গুমেন্ট নাম\n"
-"                        ব্যবহারের জন্য একাউন্ট(সমূহ) সুনির্দিষ্ট করে,\n"
-"                       এটা ব্যতিত শুধুমাত্র প্রথম একাউন্ট সক্রিয় হবে)। \n"
-"  -v, --version       বর্তমান সংস্করণ প্রদর্শন করুন এবং ত্যাগ করুন\n"
+"ব্যবহার: %s [OPTION]...\n"
+"\n"
+"  -c, --config=DIR    কনফিগারেশন ফাইলের জন্য DIR ব্যবহার করা হবে\n"
+"  -d, --debug         stdout এ ডিবাগিং বার্তা প্রিন্ট করা হবে\n"
+"  -f, --force-online  অনলাইন হতে বাধ্য করুন, নেটওয়ার্কের অবস্থা যাই হোক\n"
+"  -h, --help          এই সহায়িকা দেখুন ও প্রস্থান করুন\n"
+"  -m, --multiple     একক ইনস্ট্যান্স নিশ্চিত করা হবে না\n"
+"  -n, --nologin       স্বয়ংক্রিয়ভাবে লগইন করা হবে না\n"
+"  -l, --login[=NAME]  নির্দিষ্ট একাউন্ট(সমূহ) সক্রিয় করা হবে (NAME হচ্ছে কমা দ্বারা "
+"পৃথককৃত ঐচ্ছিক আর্গুমেন্ট\n"
+"                        যা একাউন্ট(সমূহ) নির্দিষ্ট করে,\n"
+"                       এটি ব্যতিত শুধুমাত্র প্রথম একাউন্টটি সক্রিয় হবে)।\n"
+"  -v, --version       বর্তমান সংস্করণ প্রদর্শন করে প্রস্থান করা হবে\n"
 
 #, c-format
 msgid ""
@@ -13112,16 +12984,17 @@
 "how to get the backtrace, please read the instructions at\n"
 "%swiki/GetABacktrace\n"
 msgstr ""
-"%s %s একটি মূল ফাইলকে সেগ-ফল্ট ও নষ্ট করার উদ্দোগ নিয়েছে।\n"
-"এটি সফটওয়্যারের একটি বাগ এবং আপনার নিজের কোনো ভূল ছাড়াই সংঘটিত হয়।\n"
-"\n"
-"আপনি যদি ক্র্যাশ পুনরায় ঘটাতে করেন, একটি বাগ প্রতিবেদনের মাধ্যমের ডেভেলপারদের "
+"%s %s একটি মূল ফাইলকে সেগ-ফল্ট ও ডাম্প করার চেষ্টা  করেছে।\n"
+"এটি একটি সফটওয়্যার বাগ এবং আপনার নিজের কোনো ভুল ছাড়াই সংঘটিত হয়েছে।\n"
+"\n"
+"আপনি যদি ক্র্যাশটি পুনরায় ঘটাতে পারেন, একটি বাগ রিপোর্টের মাধ্যমের ডেভেলপারদের "
 "অবগত করুন:\n"
 "%ssimpleticket/\n"
 "\n"
-"অনুগ্রহ করে নিশ্চিত ভাবে উল্লেখ করুন আপনি এই সময়ে কি করছিলেন এবং মূল ফাইল হতে এর "
-"উৎস পোষ্ট করুন।  আপনি যদি না জানেন কিভাবে আলামত পেতে হবে, তবে অনুগ্রহ করে %swiki/"
-"GetABacktrace এর তথ্যসমূহ পাঠ করুন\n"
+"অনুগ্রহ করে নিশ্চিতভাবে উল্লেখ করুন আপনি এই সময়ে কি করছিলেন এবং মূল ফাইল থেকে\n"
+"এর backtrace পোষ্ট করুন। আপনি যদি না জানেন কিভাবে backtrace পেতে হবে, তবে "
+"অনুগ্রহ করে\n"
+"%swiki/GetABacktrace এর নিয়মাবলী পাঠ করুন\n"
 
 #. Translators may want to transliterate the name.
 #. It is not to be translated.
@@ -13130,96 +13003,93 @@
 
 #, c-format
 msgid "Exiting because another libpurple client is already running.\n"
-msgstr ""
+msgstr "প্রস্থান করছে কারণ আরেকটি libpurple ক্লায়েন্ট ইতিমধ্যে চলছে।\n"
 
 msgid "/_Media"
-msgstr ""
+msgstr "/মিডিয়া (_M)"
 
 msgid "/Media/_Hangup"
-msgstr ""
-
-#, fuzzy
+msgstr "/মিডিয়া/কল শেষ করুন (_H)"
+
 msgid "Calling..."
-msgstr "গননা করা হচ্ছে..."
+msgstr "কল করা হচ্ছে..."
 
 #, c-format
 msgid "%s wishes to start an audio/video session with you."
-msgstr ""
+msgstr "%s আপনার সাথে একটি অডিও/ভিডিও সেশন শুরু করতে চায়।"
 
 #, c-format
 msgid "%s wishes to start a video session with you."
-msgstr ""
+msgstr "%s আপনার সাথে একটি ভিডিও সেশন শুরু করতে চায়।"
 
 #, c-format
 msgid "%s has %d new message."
 msgid_plural "%s has %d new messages."
-msgstr[0] "%s-এর %dটি নতুন বার্তা আছে।"
-msgstr[1] "%s-এর  %dগুলো নতুন বার্তা আছে।"
+msgstr[0] "%s-এর %d টি নতুন বার্তা আছে।"
+msgstr[1] "%s-এর  %d টি নতুন বার্তা আছে।"
 
 #, c-format
 msgid "<b>%d new email.</b>"
 msgid_plural "<b>%d new emails.</b>"
-msgstr[0] " <b>%d টি নতুন ই-মেইল।</b>"
-msgstr[1] "<b>%dগুলো নতুন ই-মেইল।</b>"
+msgstr[0] "<b>%d টি নতুন ইমেইল।</b>"
+msgstr[1] "<b>%d টি নতুন ইমেইল।</b>"
 
 #, c-format
 msgid "The browser command \"%s\" is invalid."
-msgstr "ব্রাউজার নির্দেশ \"%s\" অবৈধ।"
+msgstr "ব্রাউজার কমান্ড \"%s\" অকার্যকর।"
 
 msgid "Unable to open URL"
-msgstr "ইউআরএল খুলতে সমর্থ নয়"
+msgstr "URL খুলতে ব্যর্থ"
 
 #, c-format
 msgid "Error launching \"%s\": %s"
-msgstr "\"%1s\" শুরুকরণে ত্রুটি: %2s"
+msgstr "\"%1$s\" আরম্ভ করতে ত্রুটি: %2$s"
 
 msgid ""
 "The 'Manual' browser command has been chosen, but no command has been set."
 msgstr ""
-"'হস্তচালিতভাবে' ব্রাউজার নির্দেশ পছন্দ করা হয়েছে, কিন্তু কোনো নির্দেশ নির্ধারণ করা "
+"'Manual'  ব্রাউজার কমান্ডটি নির্বাচন করা হয়েছে, কিন্তু কোনো কমান্ড নির্ধারণ করা "
 "হয়নি।"
 
-#, fuzzy
 msgid "No message"
-msgstr "অজানা বার্তা"
+msgstr "কোন বার্তা নেই"
 
 msgid "Open All Messages"
-msgstr "সকল বার্তা খুলুন"
+msgstr "সব বার্তা খোলা হবে"
 
 msgid "<span weight=\"bold\" size=\"larger\">You have mail!</span>"
 msgstr "<span weight=\"bold\" size=\"larger\">আপনার মেইল আছে!</span>"
 
-#, fuzzy
 msgid "New Pounces"
-msgstr "নতুন বন্ধু পাউন্স করুন"
-
+msgstr "নতুন পাউন্স"
+
+# context?
 msgid "Dismiss"
-msgstr ""
-
-#, fuzzy
+msgstr "বাতিল"
+
 msgid "<span weight=\"bold\" size=\"larger\">You have pounced!</span>"
-msgstr "<span weight=\"bold\" size=\"larger\">আপনার মেইল আছে!</span>"
+msgstr "<span weight=\"bold\" size=\"larger\">আপনি পাউন্স করেছেন!</span>"
 
 # tithi
 msgid "The following plugins will be unloaded."
-msgstr "নিম্নোক্ত প্লাগইনগুলো লোড মুক্ত করা হবে।"
+msgstr "নিম্নোক্ত প্লাগইনগুলো আনলোড করা হবে।"
 
 # tithi
 msgid "Multiple plugins will be unloaded."
-msgstr "বহুবিধ প্লাগইনগুলো লোড মুক্ত করা হবে।"
+msgstr "বহুবিধ প্লাগইন আনলোড করা হবে।"
 
 msgid "Unload Plugins"
-msgstr "প্লাগইন লোড মুক্ত করুন"
+msgstr "প্লাগইন আনলোড করা হবে"
 
 msgid "Could not unload plugin"
-msgstr "প্লাগইন লোড মুক্ত করা যায়নি"
+msgstr "প্লাগইন আনলোড করা যায়নি"
 
 # tithi
 msgid ""
 "The plugin could not be unloaded now, but will be disabled at the next "
 "startup."
 msgstr ""
-"এই প্লাগইনটি এখন লোড মুক্ত করা যাচ্ছে না, কিন্তু পরবর্তী শুরুতে নিষ্ক্রিয় করা হবে।"
+"এই প্লাগইনটি এখন আনলোড করা যাচ্ছে না, কিন্তু পরবর্তীতে শুরুর সময় নিষ্ক্রিয় করা হবে।"
 
 # tithi
 #, c-format
@@ -13228,7 +13098,7 @@
 "Check the plugin website for an update.</span>"
 msgstr ""
 "<span foreground=\"red\" weight=\"bold\">ত্রুটি: %s\n"
-"হালনাগাদের জন্য প্লাগইন ওয়েবসাইট পরীক্ষা করুন।</span>"
+"হালনাগাদের জন্য প্লাগইন ওয়েবসাইট দেখুন।</span>"
 
 msgid "Author"
 msgstr "লেখক"
@@ -13240,24 +13110,23 @@
 msgstr "<b>ওয়েব সাইট:</b>"
 
 msgid "<b>Filename:</b>"
-msgstr "<b>ফাইলনাম:</b>"
+msgstr "<b>ফাইলের নাম:</b>"
 
 msgid "Configure Pl_ugin"
-msgstr "প্লাগইন পছন্দসই বিন্যাস করুন (_u)"
+msgstr "প্লাগইন কনফিগারকরণ (_u)"
 
 msgid "<b>Plugin Details</b>"
-msgstr "<b>প্লাগইনের বর্ণনা</b>"
+msgstr "<b>প্লাগইনের বিবরণ</b>"
 
 msgid "Select a file"
 msgstr "একটি ফাইল নির্বাচন করুন"
 
-#, fuzzy
 msgid "Modify Buddy Pounce"
-msgstr "বন্ধু পাউন্স সম্পাদন করুন"
+msgstr "বন্ধু পাউন্স সম্পাদনা করা হবে"
 
 #. Create the "Pounce on Whom" frame.
 msgid "Pounce on Whom"
-msgstr "কাকে পাউন্স করেন"
+msgstr "যাকে পাউন্স করা হবে"
 
 msgid "_Account:"
 msgstr "একাউন্ট (_A):"
@@ -13266,136 +13135,133 @@
 msgstr "বন্ধুর নাম (_B):"
 
 msgid "Si_gns on"
-msgstr "সাইন অন (_g)"
+msgstr "লগইন করে (_g)"
 
 msgid "Signs o_ff"
-msgstr "সাইন অফ (_f)"
+msgstr "লগআউট করে (_f)"
 
 msgid "Goes a_way"
-msgstr "অনুপস্থিত (_w)"
+msgstr "অনত্র যায় (_w)"
 
 msgid "Ret_urns from away"
-msgstr "অনুপস্থিত অবস্থা থেকে ফিরে এসেছে (_u)"
+msgstr "অন্যত্র অবস্থা থেকে ফিরে আসে (_u)"
 
 msgid "Becomes _idle"
-msgstr "এখন অলস (_i)"
+msgstr "নিষ্ক্রিয় হয় (_i)"
 
 msgid "Is no longer i_dle"
-msgstr "আর অলস থাকবে না (_d)"
+msgstr "আর নিষ্ক্রিয় নয় (_d)"
 
 msgid "Starts _typing"
-msgstr "টাইপ শুরু করেছে (_t)"
+msgstr "টাইপ শুরু করে (_t)"
 
 # tithi
 msgid "P_auses while typing"
-msgstr "টাইপের সময় বন্ধ রাখুন (_a)"
+msgstr "টাইপ করার সময় থামে (_a)"
 
 msgid "Stops t_yping"
-msgstr "টাইপ বন্ধ করছে (_y)"
+msgstr "টাইপ বন্ধ করে (_y)"
 
 msgid "Sends a _message"
 msgstr "বার্তা পাঠায় (_m)"
 
 msgid "Ope_n an IM window"
-msgstr "একটি আইএম উইন্ডো খুলুন (_n)"
+msgstr "একটি IM উইন্ডো খোলা হবে (_n)"
 
 msgid "_Pop up a notification"
-msgstr "একটি প্রজ্ঞাপন পপআপ করুন (_P)"
+msgstr "একটি ঘোষণা পপআপ করা হবে (_P)"
 
 msgid "Send a _message"
-msgstr "একটি বার্তা পাঠান (_m)"
+msgstr "একটি বার্তা পাঠানো হবে (_m)"
 
 msgid "E_xecute a command"
-msgstr "একটি নির্দেশ কার্যকর করুন  (_x)"
+msgstr "একটি কমান্ড কার্যকর করা হবে  (_x)"
 
 msgid "P_lay a sound"
-msgstr "শব্দ বাজান (_l)"
+msgstr "শব্দ বাজানো হবে (_l)"
 
 msgid "Brows_e..."
-msgstr "ব্রাউজ করুন... (_e)"
+msgstr "ব্রাউজ... (_e)"
 
 msgid "Br_owse..."
-msgstr "ব্রাউজ করুন... (_o)"
+msgstr "ব্রাউজ... (_o)"
 
 msgid "Pre_view"
 msgstr "প্রাকদর্শন (_v)"
 
 msgid "P_ounce only when my status is not Available"
-msgstr "আমার অবস্থা যখন সহজলভ্য নয় তখন পাউন্স করুন (_o)"
+msgstr "আমার অবস্থা যখন অনুপস্থিত তখন পাউন্স করা হবে (_o)"
 
 # tithi
 msgid "_Recurring"
-msgstr "পুনরাবৃত্ত করছে (_R)"
+msgstr "পুনরাবৃত্ত (_R)"
 
 msgid "Pounce Target"
 msgstr "পাউন্সের লক্ষ্য"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Started typing"
-msgstr "টাইপ শুরু করছে"
-
-#, fuzzy, c-format
+msgstr "টাইপ শুরু করেছে"
+
+#, c-format
 msgid "Paused while typing"
-msgstr "টাইপ করার সময় বিরতি দিন"
-
-#, fuzzy, c-format
+msgstr "টাইপ করা থামিয়েছে"
+
+#, c-format
 msgid "Signed on"
-msgstr "সাইন অন"
-
-#, fuzzy, c-format
+msgstr "লগইন করেছে"
+
+#, c-format
 msgid "Returned from being idle"
-msgstr "%1s অলস অবস্থা থেকে ফিরে এসেছে (%2s)"
-
-#, fuzzy, c-format
+msgstr "নিষ্ক্রিয় অবস্থা থেকে ফিরেছে"
+
+#, c-format
 msgid "Returned from being away"
-msgstr "দূর হতে ফিরে আসে"
-
-#, fuzzy, c-format
+msgstr "অন্যত্র থেকে ফিরে এসেছে"
+
+#, c-format
 msgid "Stopped typing"
 msgstr "টাইপ করা বন্ধ করেছে"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Signed off"
-msgstr "সাইন অফ"
-
-#, fuzzy, c-format
+msgstr "লগআউট করেছে"
+
+#, c-format
 msgid "Became idle"
-msgstr "অলস হয়ে যায়"
-
-#, fuzzy, c-format
+msgstr "নিষ্ক্রিয় হয়েছে"
+
+#, c-format
 msgid "Went away"
-msgstr "যখন অনুপস্থিত"
-
-#, fuzzy, c-format
+msgstr "এখন অন্যত্র"
+
+#, c-format
 msgid "Sent a message"
-msgstr "একটি বার্তা পাঠান"
-
-#, fuzzy, c-format
+msgstr "একটি বার্তা পাঠানো হয়েছে"
+
+#, c-format
 msgid "Unknown.... Please report this!"
-msgstr "অজানা পাউন্স ইভেন্ট। অনুগ্রহ করে এটি রিপোর্ট করুন!"
-
-#, fuzzy
+msgstr "অজানা... অনুগ্রহ করে এটি রিপোর্ট করুন!"
+
 msgid "Theme failed to unpack."
-msgstr "স্মাইলী থীম প্যাকহীন করতে ব্যর্থ হয়েছে"
-
-#, fuzzy
+msgstr "থীম আনপ্যাক করতে ব্যর্থ হয়েছে।"
+
 msgid "Theme failed to load."
-msgstr "স্মাইলী থীম প্যাকহীন করতে ব্যর্থ হয়েছে"
-
-#, fuzzy
+msgstr "থীম লোড করতে ব্যর্থ হয়েছে।"
+
 msgid "Theme failed to copy."
-msgstr "স্মাইলী থীম প্যাকহীন করতে ব্যর্থ হয়েছে"
+msgstr "থীম অনুলিপি করতে ব্যর্থ হয়েছে।"
 
 # tithi
 msgid "Install Theme"
-msgstr "থীম সংস্থাপন করুন"
+msgstr "থীম ইনস্টল করুন"
 
 msgid ""
 "Select a smiley theme that you would like to use from the list below. New "
 "themes can be installed by dragging and dropping them onto the theme list."
 msgstr ""
 "আপনি যে স্মাইলি থীম ব্যবহার করতে চান তা নিম্নবর্তী তালিকা থেকে বাছাই করুন। নতুন "
-"থীম থীমের তালিকায় টানা ও ছাড়ার মাধ্যমে তাদের সংস্থাপন করতে পারেন।"
+"থীম তালিকায় টেনে এনে ফেলে ইনস্টল করতে পারেন।"
 
 msgid "Icon"
 msgstr "আইকন"
@@ -13405,45 +13271,43 @@
 msgstr "কীবোর্ড শর্টকাট"
 
 msgid "Cl_ose conversations with the Escape key"
-msgstr "Escape কী দ্বারা কথোপকথনসমূহ বন্ধ করুন (_o)"
+msgstr "Escape কী চেপে কথোপকথন বন্ধ করা যাবে (_o)"
 
 #. Buddy List Themes
-#, fuzzy
 msgid "Buddy List Theme"
-msgstr "Buddy List"
+msgstr "বন্ধু তালিকার থীম"
 
 #. System Tray
 msgid "System Tray Icon"
-msgstr "সিস্টেম ট্রে এর আইকন"
+msgstr "সিস্টেম ট্রের আইকন"
 
 msgid "_Show system tray icon:"
-msgstr "সিস্টেম ট্রে এর আইকন প্রদর্শন করুন (_S):"
+msgstr "সিস্টেম ট্রের আইকন প্রদর্শন (_S):"
 
 msgid "On unread messages"
-msgstr "অপঠিত বার্তাসমূহে"
-
-#, fuzzy
+msgstr "অপঠিত বার্তা থাকলে"
+
 msgid "Conversation Window"
-msgstr "তাৎক্ষণিক বার্তার কথোপকথন উইন্ডোজ"
+msgstr "কথোপকথনের উইন্ডো"
 
 msgid "_Hide new IM conversations:"
-msgstr "নতুন কথোপকথন IM লুকিয়ে রাখুন (_H):"
+msgstr "নতুন IM কথোপকথন লুকিয়ে রাখা হবে (_H):"
 
 msgid "When away"
-msgstr "যখন অনুপস্থিত"
+msgstr "যখন অন্যত্র"
 
 msgid "Minimi_ze new conversation windows"
-msgstr "নতুন কথোপকথন উইন্ডো নূন্যতম করুন (_z)"
+msgstr "নতুন কথোপকথন উইন্ডো ছোট করা হবে (_z)"
 
 #. All the tab options!
 msgid "Tabs"
-msgstr "ট্যাবসমূহ"
+msgstr "ট্যাব"
 
 msgid "Show IMs and chats in _tabbed windows"
-msgstr "আইএম ও আড্ডাসমূহ ট্যাবকৃত উইন্ডোতে প্রদর্শন করুন (_t)"
+msgstr "IM ও আড্ডা ট্যাবকৃত উইন্ডোতে প্রদর্শন করা হবে (_t)"
 
 msgid "Show close b_utton on tabs"
-msgstr "ট্যাবে বন্ধ বোতাম প্রদর্শন করুন (_u)"
+msgstr "ট্যাবে বন্ধ বোতাম প্রদর্শন করা হবে (_u)"
 
 msgid "_Placement:"
 msgstr "অবস্থান (_P):"
@@ -13461,130 +13325,130 @@
 msgstr "ডান"
 
 msgid "Left Vertical"
-msgstr "বাম উলম্ব"
+msgstr "বাম উল্লম্ব"
 
 msgid "Right Vertical"
-msgstr "ডান উলম্ব"
+msgstr "ডান উল্লম্ব"
 
 msgid "N_ew conversations:"
 msgstr "নতুন কথোপকথন (_e):"
 
 msgid "Show _formatting on incoming messages"
-msgstr "আগত বার্তাসমূহে বিন্যাসকরণ প্রদর্শন করুন (_f)"
+msgstr "আগত বার্তার বিন্যাস প্রদর্শিত হবে (_f)"
 
 # tithi
 msgid "Close IMs immediately when the tab is closed"
-msgstr "ট্যাব বন্ধ করার সময় IM তাৎ‍ক্ষণিকভাবে বন্ধ করুন"
+msgstr "ট্যাব বন্ধ করলে IMগুলো তাৎ‍ক্ষণিকভাবে বন্ধ করা হবে"
 
 msgid "Show _detailed information"
-msgstr "বিস্তারিত তথ্য প্রদর্শন করুন (_d)"
+msgstr "বিস্তারিত তথ্য প্রদর্শন (_d)"
 
 msgid "Enable buddy ic_on animation"
-msgstr "এ্যানিমেশনে বন্ধুর আইকন সক্রিয় করুন (_o)"
+msgstr "বন্ধুর আইকনের এ্যানিমেশন সক্রিয় করা হবে (_o)"
 
 msgid "_Notify buddies that you are typing to them"
-msgstr "আপনি যা টাইপ করছেন তা বন্ধুদের অবগত করুন (_N)"
+msgstr "আপনি টাইপ করছেন তা বন্ধুদের অবগত করা হবে (_N)"
 
 msgid "Highlight _misspelled words"
-msgstr "ভুল বানানের শব্দ হাইলাইট করুন (_m)"
+msgstr "ভুল বানান হাইলাইট করা হবে (_m)"
 
 # tithi
 msgid "Use smooth-scrolling"
-msgstr "মসৃন-স্ক্রলিং ব্যবহার করুন"
+msgstr "মসৃন-স্ক্রলিং ব্যবহার করা হবে"
 
 msgid "F_lash window when IMs are received"
-msgstr "আইএম গ্রহণ করলে উইন্ডো ফ্ল্যাশ দিন (_l)"
+msgstr "IM গ্রহণ করলে উইন্ডো ঝলকানো হবে (_l)"
 
 # tithi
 msgid "Minimum input area height in lines:"
-msgstr "লাইনের ন্যুনতম ইনপুট এলাকার উচ্চতা:"
+msgstr "লাইনে ইনপুট এলাকার সর্বনিম্ন উচ্চতা:"
 
 msgid "Font"
 msgstr "ফন্ট"
 
 # tithi
 msgid "Use document font from _theme"
-msgstr "থীম থেকে নথির ফন্ট ব্যবহার করুন (_t)"
+msgstr "থীম থেকে নথির ফন্ট ব্যবহার করা হবে (_t)"
 
 # tithi
 msgid "Use font from _theme"
-msgstr "থীম থেকে ফন্ট ব্যবহার করুন (_t)"
+msgstr "থীম থেকে ফন্ট ব্যবহার করা হবে (_t)"
 
 msgid "Conversation _font:"
 msgstr "কথোপকথন ফন্ট (_f):"
 
 msgid "Default Formatting"
-msgstr "পুর্বনির্ধারিত বিন্যাসকরণ"
+msgstr "পুর্বনির্ধারিত বিন্যাস"
 
 msgid ""
 "This is how your outgoing message text will appear when you use protocols "
 "that support formatting."
 msgstr ""
-"আপনি যখন বিন্যাসকরণ সমর্থিত প্রোটকল ব্যবহার করেন তখন আপনার বহির্গমন বার্তার পাঠ "
-"এমনভাবে উপস্থিত হবে।"
+"আপনি যখন বিন্যাস সমর্থিত প্রোটোকল ব্যবহার করেন তখন আপনার লেখা এমনভাবে উপস্থাপিত "
+"হবে।"
 
 # tithi
 msgid "Cannot start proxy configuration program."
-msgstr "প্রক্সি বিন্যাসন প্রোগ্রাম শুরু করতে পারে না।"
+msgstr "প্রক্সি কনফিগারেশন প্রোগ্রাম শুরু করা সম্ভব হয়নি।"
 
 msgid "Cannot start browser configuration program."
-msgstr "ব্রাউজারের বিন্যাসন প্রোগ্রাম শুরু করতে পারে না।"
+msgstr "ব্রাউজার কনফিগারেশন প্রোগ্রাম শুরু করা সম্ভব হয়নি।"
 
 # tithi
 msgid "<span style=\"italic\">Example: stunserver.org</span>"
-msgstr "<span style=\"italic\">উদাহরণ: স্ট্যানসার্ভার.অর্গ</span>"
-
-#, fuzzy, c-format
+msgstr "উদাহরণ: <span style=\"italic\">stunserver.org</span>"
+
+#, c-format
 msgid "Use _automatically detected IP address: %s"
-msgstr "স্বয়ং-শনাক্ত আইপি ঠিকানা (_A)"
+msgstr "স্বয়ংক্রিয়ভাবে সনাক্তকৃত IP ঠিকানা ব্যবহার করুন (_a): %s"
 
 msgid "Public _IP:"
-msgstr "সর্বসাধারণ আইপি (_I):"
+msgstr "পাবলিক _IP:"
 
 msgid "Ports"
-msgstr "পোর্টসমূহ"
+msgstr "পোর্ট"
 
 # tithi
 msgid "_Enable automatic router port forwarding"
-msgstr "স্বয়ংক্রিয় রাউটার পোর্ট অগ্রগমন সক্রিয় করুন (_E)"
+msgstr "স্বয়ংক্রিয় রাউটার পোর্ট ফরওয়ার্ডিং সক্রিয় করা হবে (_E)"
 
 msgid "_Manually specify range of ports to listen on"
-msgstr "শুনতে পোর্টের সীমা নিজের হাতে উল্লেখ করুন (_M)"
+msgstr "যেসব পোর্টে লিসেন করা হবে তার সীমা স্বনির্ধারণ (_M)"
 
 msgid "_Start port:"
 msgstr "শুরুর পোর্ট (_S):"
 
 msgid "_End port:"
-msgstr "শেষ পোর্ট (_E):"
+msgstr "শেষের পোর্ট (_E):"
 
 #. TURN server
 msgid "Relay Server (TURN)"
-msgstr ""
+msgstr "রিলে সার্ভার (TURN)"
 
 msgid "Proxy Server &amp; Browser"
 msgstr "প্রক্সি সার্ভার &amp; ব্রাউজার"
 
 # tithi
 msgid "<b>Proxy configuration program was not found.</b>"
-msgstr "<b>প্রক্সির পছন্দসই বিন্যাসন প্রোগ্রাম খুঁজে পাওয়া যায়নি।</b>"
+msgstr "<b>প্রক্সির কনফিগারেশন প্রোগ্রাম খুঁজে পাওয়া যায়নি।</b>"
 
 # tithi
 msgid "<b>Browser configuration program was not found.</b>"
-msgstr "<b>ব্রাউজারের পছন্দসই বিন্যাসন প্রোগ্রাম খুঁজে পাওয়া যায়নি।</b>"
+msgstr "<b>ব্রাউজারের কনফিগারেশন প্রোগ্রাম খুঁজে পাওয়া যায়নি।</b>"
 
 # tithi
 msgid ""
 "Proxy & Browser preferences are configured\n"
 "in GNOME Preferences"
 msgstr ""
-"প্রক্সি ও ব্রাউজারের প্রাধিকারসমূহ \n"
-"GNOME প্রাধিকারসমূহে পছন্দসই বিন্যাসন করা হয়েছে"
+"প্রক্সি ও ব্রাউজারের বৈশিষ্ট্যাবলী \n"
+"GNOME পছন্দসমূহে কনফিগার করা হয়েছে"
 
 msgid "Configure _Proxy"
-msgstr "প্রক্সি পছন্দসই বিন্যাস করুন (_P)"
+msgstr "প্রক্সি কনফিগারেশন  (_P)"
 
 msgid "Configure _Browser"
-msgstr "ব্রাউজার পছন্দসই বিন্যাস করুন (_B)"
+msgstr "ব্রাউজার কনফিগারেশন (_B)"
 
 msgid "Proxy Server"
 msgstr "প্রক্সি সার্ভার"
@@ -13594,7 +13458,7 @@
 
 #. This is a global option that affects SOCKS4 usage even with account-specific proxy settings
 msgid "Use remote DNS with SOCKS4 proxies"
-msgstr ""
+msgstr "SOCKS4 প্রক্সি সম্বলিত দুরবর্তী DNS ব্যবহৃত হবে"
 
 msgid "_User:"
 msgstr "ব্যবহারকারী (_U):"
@@ -13613,13 +13477,13 @@
 msgstr "মজিলা"
 
 msgid "Konqueror"
-msgstr "কনকোয়েরর"
+msgstr "কনকোয়েরার"
 
 msgid "Desktop Default"
-msgstr "ডেস্কটপ পূর্বনির্ধারিত"
+msgstr "পূর্বনির্ধারিত ডেস্কটপ "
 
 msgid "GNOME Default"
-msgstr "GNOME পূর্বনির্ধারিত"
+msgstr "পূর্বনির্ধারিত GNOME "
 
 msgid "Galeon"
 msgstr "গ্যালিওন"
@@ -13643,10 +13507,10 @@
 msgstr "ব্রাউজার (_B):"
 
 msgid "_Open link in:"
-msgstr "লিঙ্ক খুলুন (_O):"
+msgstr "লিংক খুলুন (_O):"
 
 msgid "Browser default"
-msgstr "ব্রাউজার পূর্বনির্ধারিত"
+msgstr "পূর্বনির্ধারিত ব্রাউজার"
 
 msgid "Existing window"
 msgstr "বিদ্যমান উইন্ডো"
@@ -13663,16 +13527,16 @@
 "(URL এর জন্য %s)"
 
 msgid "Log _format:"
-msgstr "কার্যবিবরণী বিন্যাস (_f):"
+msgstr "লগ বিন্যাস (_f):"
 
 msgid "Log all _instant messages"
-msgstr "সব তাৎক্ষণিক বার্তাসমূহ লগ করুন (_i)"
+msgstr "সব তাৎক্ষণিক বার্তা সংরক্ষণ করা হবে (_i)"
 
 msgid "Log all c_hats"
-msgstr "সকল আড্ডা লগ করুন (_h)"
+msgstr "সব আড্ডার কথোপকথন লগ করা হবে (_h)"
 
 msgid "Log all _status changes to system log"
-msgstr "সব অবস্থার পরিবর্তনসমূহ সিস্টেমের কার্যবিবরণীতে লগ করুন (_s)"
+msgstr "সব অবস্থার পরিবর্তন সিস্টেম লগে লেখা হবে (_s)"
 
 msgid "Sound Selection"
 msgstr "শব্দ নির্বাচন"
@@ -13699,7 +13563,7 @@
 
 #, c-format
 msgid "Loudest"
-msgstr "একদম জোরে"
+msgstr "সবচেয়ে জোরে"
 
 msgid "_Method:"
 msgstr "প্রক্রিয়া (_M):"
@@ -13715,184 +13579,183 @@
 "Sound c_ommand:\n"
 "(%s for filename)"
 msgstr ""
-"শব্দের নির্দেশ (_o):\n"
-"(ফাইল-নামের জন্য %s)"
+"শব্দের কমান্ড (_o):\n"
+"(ফাইলের নামের জন্য %s)"
 
 msgid "M_ute sounds"
-msgstr "শব্দ বন্ধ করুন (_u)"
+msgstr "শব্দ বন্ধ (_u)"
 
 msgid "Sounds when conversation has _focus"
-msgstr "কথোপকথন ফোকাস করার শব্দ"
+msgstr "কথোপকথনে ফোকাস করলে শব্দ হবে"
 
 msgid "_Enable sounds:"
-msgstr "শব্দ সক্রিয় করুন (_E):"
+msgstr "শব্দ সক্রিয় (_E):"
 
 msgid "V_olume:"
 msgstr "ভলিউম (_o):"
 
 msgid "Play"
-msgstr "বাজাও"
+msgstr "বাজানো হবে"
 
 msgid "_Browse..."
-msgstr "ব্রাউজ করুন... (_B)"
+msgstr "ব্রাউজ... (_B)"
 
 msgid "_Reset"
-msgstr "পুনঃ বিন্যাস করুন (_R)"
+msgstr "রিসেট (_R)"
 
 msgid "_Report idle time:"
-msgstr "অলস সময়ের প্রতিবেদন দিন (_R)"
+msgstr "নিষ্ক্রিয় সময় দেখানো হবে (_R):"
 
 # tithi
 msgid "Based on keyboard or mouse use"
-msgstr "কীবোর্ড বা মাউস ব্যবহারের উপর ভিত্তি করে"
+msgstr "কীবোর্ড বা মাউসের ব্যবহারের উপর ভিত্তি করে"
 
 msgid "_Auto-reply:"
 msgstr "স্বয়ংক্রিয়-উত্তর (_A):"
 
 msgid "When both away and idle"
-msgstr "যখন উভয়ই অনুপস্থিত এবং অলস"
+msgstr "যখন অন্যত্র এবং নিষ্ক্রিয়"
 
 #. Auto-away stuff
 msgid "Auto-away"
-msgstr "স্বয়ংক্রিয়ভাবে অনুপস্থিতি"
+msgstr "স্বয়ংক্রিয়ভাবে অন্যত্র"
 
 msgid "_Minutes before becoming idle:"
-msgstr "অলস হওয়ার পূর্বের মিনিট (_M):"
+msgstr "নিষ্ক্রিয় হওয়ার মিনিটখানেক আগে (_M):"
 
 msgid "Change status when _idle"
-msgstr "অলস থাকলে অবস্থা পরিবর্তন করুন (_i)"
+msgstr "নিষ্ক্রিয় থাকলে অবস্থা পরিবর্তন করা হবে (_i)"
 
 msgid "Change _status to:"
-msgstr "অবস্থা পরিবর্তন করুন (_s):"
+msgstr "অবস্থা পরিবর্তন (_s):"
 
 # tithi
 #. Signon status stuff
 msgid "Status at Startup"
-msgstr "সূচনার অবস্থা"
+msgstr "শুরুর অবস্থা"
 
 # tithi
 msgid "Use status from last _exit at startup"
-msgstr "সর্বশেষ ত্যাগের অবস্থা শুরুতে ব্যবহার করুন (_e)"
+msgstr "আরম্ভের সময় সর্বশেষ প্রস্থানের অবস্থা ব্যবহার করা হবে (_e)"
 
 # tithi
 msgid "Status to a_pply at startup:"
-msgstr "সূচনাতে প্রয়োগ করার অবস্থা (_p):"
+msgstr "শুরুতে প্রয়োগ করার অবস্থা (_p):"
 
 msgid "Interface"
 msgstr "ইন্টারফেস"
 
 msgid "Smiley Themes"
-msgstr "স্মাইলী থীমসমূহ"
+msgstr "স্মাইলি থীম"
 
 msgid "Browser"
 msgstr "ব্রাউজার"
 
 msgid "Status / Idle"
-msgstr "অবস্থা / অলস"
+msgstr "অবস্থা / নিষ্ক্রিয়"
 
 msgid "Allow all users to contact me"
-msgstr "সব ব্যবহারকারীকে আমার সাথে যোগাযোগ করার অনুমতি দিন"
+msgstr "সব ব্যবহারকারীকে আমার সাথে যোগাযোগের অনুমতি দেয়া হবে"
 
 msgid "Allow only the users on my buddy list"
-msgstr "শুধুমাত্র আমার তালিকার বন্ধুদের অনুমতি দিন"
+msgstr "শুধুমাত্র আমার তালিকার বন্ধুদের অনুমতি দেয়া হবে"
 
 msgid "Allow only the users below"
-msgstr "শুধুমাত্র নিম্নোলিখিত ব্যবহারকারীদের অনুমতি দিন"
+msgstr "শুধুমাত্র নিম্নলিখিত ব্যবহারকারীদের অনুমতি দেয়া হবে"
 
 msgid "Block all users"
-msgstr "সব ব্যবহারকারীদের ব্লক করুন"
+msgstr "সব ব্যবহারকারীদের ব্লক করা হবে"
 
 msgid "Block only the users below"
-msgstr "শুধুমাত্র নিম্নোলিখিত ব্যবহারকারীদের ব্লক করুন"
+msgstr "শুধুমাত্র নিম্নলিখিত ব্যবহারকারীদের ব্লক করা হবে"
 
 msgid "Privacy"
-msgstr "ব্যক্তিগত"
+msgstr "গোপনতা"
 
 msgid "Changes to privacy settings take effect immediately."
-msgstr "ব্যক্তিগত বিন্যাসনসমূহে পরিবর্তনসমূহ তাৎ‍ক্ষণিকভাবে কার্যকর হবে।"
+msgstr "গোপনতার বিন্যাসের পরিবর্তনগুলো তাৎ‍ক্ষণিকভাবে কার্যকর হবে।"
 
 msgid "Set privacy for:"
-msgstr "এর জন্য গোপনীয়তা নির্ধারণ করুন:"
+msgstr "এর জন্য গোপনতা নির্ধারণ করুন:"
 
 #. Remove All button
 msgid "Remove Al_l"
-msgstr "সব অপসারণ করুন (_l)"
+msgstr "সব অপসারণ করা হবে (_l)"
 
 msgid "Permit User"
-msgstr "ব্যবহারকারীকে অনুমতি দিন"
+msgstr "ব্যবহারকারীকে অনুমোদন"
 
 msgid "Type a user you permit to contact you."
-msgstr "আপনি অনুমতি দেন এমন ব্যবহারকারীকে আপনার সাথে যোগাযোগের জন্য টাইপ করুন।"
+msgstr "আপনার সাথে যোগাযোগ করতে অনুমোদিত একজন ব্যবহারকারীর নাম দিন।"
 
 msgid "Please enter the name of the user you wish to be able to contact you."
-msgstr ""
-"অনুগ।রহ করে আপনার সাথে যোগাযোগে অনুমতি দিতে চান এমন ব্যবহারকারীর নাম প্রবেশ করান।"
+msgstr "অনুগ্রহ করে আপনার সাথে যোগাযোগে অনুমতি দিতে চান এমন ব্যবহারকারীর নাম দিন।"
 
 msgid "_Permit"
-msgstr "অনুমতি দিন (_P)"
+msgstr "অনুমোদন করুন (_P)"
 
 #, c-format
 msgid "Allow %s to contact you?"
-msgstr "আপনার সাথে যোগাযোগের জন্যে %s কে কি অনুমতি দিবেন?"
+msgstr "%s কে আপনার সাথে যোগাযোগের করতে অনুমতি দিতে চান?"
 
 #, c-format
 msgid "Are you sure you wish to allow %s to contact you?"
-msgstr "আপনি কি নিশ্চিত আপনি  %s-কে আপনার সাথে যোগাযোগের অনুমতি দিতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে %s কে আপনার সাথে যোগাযোগের করতে অনুমতি দিতে চান?"
 
 msgid "Block User"
-msgstr "ব্যবহারকারীকে বাধা দিন"
+msgstr "ব্যবহারকারীকে ব্লক করা হবে"
 
 msgid "Type a user to block."
-msgstr "বাধা দেয়ার জন্য ব্যবহারকারীকে টাইপ করুন।"
+msgstr "ব্লক করার জন্য ব্যবহারকারীর নাম দিন।"
 
 msgid "Please enter the name of the user you wish to block."
-msgstr "অনুগ্রহ করে আপনি যে ব্যবহারকারীকে ব্লক করতে চান তার নাম প্রবেশ করান।"
+msgstr "অনুগ্রহ করে আপনি যে ব্যবহারকারীকে ব্লক করতে চান তার নাম দিন।"
 
 #, c-format
 msgid "Block %s?"
-msgstr "%s কে কি ব্লক করবেন?"
+msgstr "%s কে ব্লক করতে চান?"
 
 #, c-format
 msgid "Are you sure you want to block %s?"
-msgstr "আপনি কি নিশ্চিত আপনি %s-কে ব্লক করতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে %s-কে ব্লক করতে চান?"
 
 msgid "Apply"
-msgstr "প্রয়োগ করুন"
+msgstr "প্রয়োগ"
 
 msgid "That file already exists"
-msgstr "ঐ ফাইলটি ইতোমধ্যে বিদ্যমান"
+msgstr "ঐ ফাইলটি ইতিমধ্যে বিদ্যমান"
 
 msgid "Would you like to overwrite it?"
-msgstr "আপনি কি এটা উপরিলিখন করতে চান?"
+msgstr "আপনি কি এটার উপরিলেখন করতে চান?"
 
 # tithi
 msgid "Overwrite"
-msgstr "উপরিলিখন করুন"
+msgstr "উপরিলেখন"
 
 msgid "Choose New Name"
-msgstr "নতুন নাম পছন্দ করুন"
+msgstr "নতুন নাম নির্ধারণ"
 
 msgid "Select Folder..."
-msgstr "ফোল্ডার নির্বাচন করুন..."
+msgstr "ফোল্ডার নির্বাচন..."
 
 #. list button
 msgid "_Get List"
-msgstr "তালিকা সংগ্রহ করুন (_G)"
+msgstr "তালিকা সংগ্রহ (_G)"
 
 #. add button
 msgid "_Add Chat"
-msgstr "আড্ডা যোগ করুন (_A)"
+msgstr "আড্ডা যোগ (_A)"
 
 msgid "Are you sure you want to delete the selected saved statuses?"
-msgstr "আপনি কি নিশ্চিত আপনি নির্বাচিত সংরক্ষিত অবস্থাসমূহ মুছে ফেলতে চান?"
+msgstr "আপনি কি নিশ্চিতভাবে নির্বাচিত সংরক্ষিত অবস্থা মুছে ফেলতে চান?"
 
 #. Use button
 msgid "_Use"
-msgstr "ব্যবহার করুন (_U)"
+msgstr "ব্যবহার (_U)"
 
 msgid "Title already in use.  You must choose a unique title."
 msgstr ""
-"শিরোনাম ইতোমধ্যে ব্যবহৃত হচ্ছে।  আপনাকে অবশ্যই একটি অনন্য শিরোনাম পছন্দ করতে হবে।"
+"শিরোনাম ইতিমধ্যে ব্যবহৃত হচ্ছে। আপনাকে অবশ্যই একটি অব্যবহৃত শিরোনাম পছন্দ করতে হবে।"
 
 msgid "Different"
 msgstr "পৃথক"
@@ -13905,59 +13768,55 @@
 
 #. Different status message expander
 msgid "Use a _different status for some accounts"
-msgstr "কিছু একাউন্টের জন্য পৃথক অবস্থা ব্যবহার করুন (_d)"
+msgstr "কিছু একাউন্টের জন্য পৃথক অবস্থা ব্যবহার করা হবে (_d)"
 
 #. Save & Use button
 msgid "Sa_ve & Use"
-msgstr "সংরক্ষণ এবং ব্যবহার করুন (_v)"
+msgstr "সংরক্ষণ এবং ব্যবহার (_V)"
 
 #, c-format
 msgid "Status for %s"
 msgstr "%s-এর জন্য অবস্থা"
 
 # tithi
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "A custom smiley for '%s' already exists.  Please use a different shortcut."
 msgstr ""
-"নির্বাচিত শর্টকাটটির জন্য পছন্দসই স্মাইলী ইতোমধ্যে বিদ্যমান। অনুগ্রহ করে একটি ভিন্ন "
-"শর্টকাট উল্লেখ করুন।"
+"একটি স্বনির্বাচিত স্মাইলি '%s' এর জন্য ব্যবহৃত হয়েছে। অনুগ্রহ করে একটি ভিন্ন শর্টকাট "
+"ব্যবহার করুন।"
 
 msgid "Custom Smiley"
-msgstr "পছন্দসই স্মাইলী"
+msgstr "স্বনির্বাচিত স্মাইলি"
 
 msgid "Duplicate Shortcut"
-msgstr "অনুরুপ শর্টকাট"
+msgstr "হুবহু একই শর্টকাট"
 
 msgid "Edit Smiley"
-msgstr "স্মাইলী সম্পাদনা করুন"
+msgstr "স্মাইলি সম্পাদনা"
 
 msgid "Add Smiley"
-msgstr "স্মাইলী যোগ করুন"
-
-#, fuzzy
+msgstr "স্মাইলি যোগ"
+
 msgid "_Image:"
-msgstr "চিত্র (_I)"
+msgstr "ছবি (_I):"
 
 #. Shortcut text
-#, fuzzy
 msgid "S_hortcut text:"
-msgstr "শর্টকাট"
+msgstr "শর্টকাট টেক্সট (_h):"
 
 msgid "Smiley"
-msgstr "স্মাইলী"
-
-#, fuzzy
+msgstr "স্মাইলি"
+
 msgid "Shortcut Text"
-msgstr "শর্টকাট"
+msgstr "শর্টকাট টেক্সট"
 
 # tithi
 msgid "Custom Smiley Manager"
-msgstr "পছন্দসই স্মাইলী ব্যবস্থাপক"
-
-#, fuzzy
+msgstr "স্বনির্বাচিত স্মাইলি ব্যবস্থাপক"
+
 msgid "Select Buddy Icon"
-msgstr "বন্ধু নির্বাচন করুন"
+msgstr "বন্ধু আইকন নির্বাচন"
 
 # tithi
 msgid "Click to change your buddyicon for this account."
@@ -13968,13 +13827,13 @@
 msgstr "সব একাউন্টের জন্য আপনার বন্ধু-আইকন পরিবর্তন করতে ক্লিক করুন।"
 
 msgid "Waiting for network connection"
-msgstr "নেটওয়ার্ক সংযোগের জন্য অপেক্ষা করছে"
+msgstr "নেটওয়ার্ক সংযোগের জন্য অপেক্ষা করা হচ্ছে"
 
 msgid "New status..."
 msgstr "নতুন অবস্থা..."
 
 msgid "Saved statuses..."
-msgstr "সংরক্ষিত অবস্থাসমূহ..."
+msgstr "সংরক্ষিত অবস্থা..."
 
 msgid "Status Selector"
 msgstr "অবস্থা নির্বাচক"
@@ -13985,56 +13844,56 @@
 
 #, c-format
 msgid "The following error has occurred loading %s: %s"
-msgstr "%1s লোড করার সময় নিম্নোক্ত ত্রুটি সংঘটিত হয়েছে: %2s"
+msgstr "%1$s লোড করার সময় নিম্নোক্ত ত্রুটি সংঘটিত হয়েছে: %2$s"
 
 msgid "Failed to load image"
-msgstr "চিত্র লোড করতে ব্যর্থ হয়েছে"
+msgstr "চিত্র লোড করতে ব্যর্থ"
 
 #, c-format
 msgid "Cannot send folder %s."
-msgstr "%s ফোল্ডার পাঠাতে পারে না।"
+msgstr "%s ফোল্ডার পাঠানো সম্ভব হয়না।"
 
 #, c-format
 msgid ""
 "%s cannot transfer a folder. You will need to send the files within "
 "individually."
 msgstr ""
-"%s ফোল্ডার স্থানান্তর করতে পারে না। আপনাকে প্রতিটি ফাইল আলাদাভাবে পাঠাতে হবে।"
+"%s ফোল্ডার স্থানান্তর করা সম্ভব হয়না। আপনাকে প্রতিটি ফাইল আলাদাভাবে পাঠাতে হবে।"
 
 msgid "You have dragged an image"
-msgstr "আপনি একটি চিত্র টেনেছেন"
+msgstr "আপনি একটি চিত্র টেনে এনেছেন"
 
 msgid ""
 "You can send this image as a file transfer, embed it into this message, or "
 "use it as the buddy icon for this user."
 msgstr ""
-"আপনি এই ছবিটি ফাইল স্থানান্তর হিসেবে পাঠাতে পারেন, এটাকে এই বার্তার সাথে দৃঢ়বাবে "
-"সংযুক্ত করুন, বা এটাকে এই ব্যবহারকারীর জন্য বন্ধু আইকন হিসেবে ব্যবহার করুন।"
+"আপনি এই ছবিটি ফাইল স্থানান্তরের মাধ্যমে পাঠাতে পারেন, এটাকে এই বার্তার সাথে "
+"সন্নিবেশ করতে পারেন, অথবা এই ব্যবহারকারীর বন্ধু আইকন হিসেবে ব্যবহার করতে পারেন।"
 
 msgid "Set as buddy icon"
-msgstr "বন্ধু আইকন হিসেবে নির্ধারণ করুন"
+msgstr "বন্ধু আইকন হিসেবে নির্ধারণ করা হবে"
 
 msgid "Send image file"
-msgstr "চিত্র ফাইল পাঠান"
+msgstr "চিত্র ফাইল পাঠানো হবে"
 
 msgid "Insert in message"
-msgstr "বার্তায় প্রবেশ করান"
+msgstr "বার্তায় প্রবেশ করানো হবে"
 
 msgid "Would you like to set it as the buddy icon for this user?"
-msgstr "আপনি কি এটাকে এই ব্যবহারকারীর জন্য বন্ধু আইকন হিসেবে নির্ধারণ করতে চান?"
+msgstr "আপনি কি এটিকে এই ব্যবহারকারীর জন্য বন্ধু আইকন হিসেবে নির্ধারণ করতে চান?"
 
 msgid ""
 "You can send this image as a file transfer, or use it as the buddy icon for "
 "this user."
 msgstr ""
-"আপনি এই চিত্রটি ফাইল স্থানান্তর হিসেবে পাঠাতে পারেন, বা এটাকে এই ব্যবহারকারীর "
-"জন্য বন্ধু আইকন হিসেবে ব্যবহার করতে পারেন।"
+"আপনি এই চিত্রটি ফাইল স্থানান্তর হিসেবে পাঠাতে পারেন, অথবা এটাকে এই ব্যবহারকারীর "
+"বন্ধু আইকন হিসেবে ব্যবহার করতে পারেন।"
 
 msgid ""
 "You can insert this image into this message, or use it as the buddy icon for "
 "this user"
 msgstr ""
-"আপনি এই চিত্রটি এই বার্তাটির সাথে প্রবেশ করতে পারেন, বা এটা এই ব্যবহারকারীর জন্য "
+"আপনি এই চিত্রটি এই বার্তাটির সাথে প্রবেশ করাতে পারেন, অথবা এটি এই ব্যবহারকারীর "
 "বন্ধু আইকন হিসেবে ব্যবহার করতে পারেন"
 
 #. I don't know if we really want to do anything here.  Most of the desktop item types are crap like
@@ -14043,15 +13902,14 @@
 #. * Probably not.  I'll just give an error and return.
 #. The original patch sent the icon used by the launcher.  That's probably wrong
 msgid "Cannot send launcher"
-msgstr "প্রকাশক পাঠাতে পারে না"
-
-#, fuzzy
+msgstr "লঞ্চার পাঠানো সম্ভব হয়নি"
+
 msgid ""
 "You dragged a desktop launcher. Most likely you wanted to send the target of "
 "this launcher instead of this launcher itself."
 msgstr ""
-"আপনি একটি ডেস্কটপ প্রকাশক টেনে এনেছেন। এই প্রকাশকটি নিজেকে নির্দেশ করার পরিবর্তে "
-"আর যেখানে নির্দেশ করে সেখানে সম্ভবত আপনি পাঠাতে চান।"
+"আপনি একটি ডেস্কটপ লঞ্চার টেনে এনেছেন। আপনি সম্ভবত  লঞ্চারটি নয় বরং এটি যাকে "
+"নির্দেশ করে তা পাঠাতে চান।"
 
 #, c-format
 msgid ""
@@ -14059,108 +13917,120 @@
 "<b>File size:</b> %s\n"
 "<b>Image size:</b> %dx%d"
 msgstr ""
-"<b>ফাইল:</b> %1s\n"
-"<b>ফাইলের আকার:</b> %2s\n"
-"<b>চিত্রের আকার:</b> %3dx%4d"
+"<b>ফাইল:</b> %1$s\n"
+"<b>ফাইলের আকার:</b> %2$s\n"
+"<b>চিত্রের আকার:</b> %3$dx%4$d"
 
 # tithi
 #, c-format
 msgid "The file '%s' is too large for %s.  Please try a smaller image.\n"
 msgstr ""
-"'%1s' ফাইলটি %2s এর জন্য অনেক বড়। অনুগ্রহ করে অপেক্ষাকৃত ছোট চিত্র ব্যবহার করুন।\n"
+"'%1$s' ফাইলটি %2$s এর জন্য অনেক বড়। অনুগ্রহ করে অপেক্ষাকৃত ছোট চিত্র ব্যবহার করুন।\n"
 
 msgid "Icon Error"
 msgstr "আইকন ত্রুটি"
 
 msgid "Could not set icon"
-msgstr "আইকন নির্ধারণ করা হয়নি"
+msgstr "আইকন নির্ধারণ করা যায়নি"
 
 #, c-format
 msgid "Failed to open file '%s': %s"
-msgstr "'%1s' ফাইলটি খুলতে ব্যর্থ: %2s"
+msgstr "'%1$s' ফাইলটি খুলতে ব্যর্থ: %2$s"
 
 # tithi
 #, c-format
 msgid ""
 "Failed to load image '%s': reason not known, probably a corrupt image file"
 msgstr ""
-"'%s' চিত্রটি লোড করতে ব্যর্থ হয়েছে। কারণ জানা নেই, সম্ভবত একটি নষ্ট চিত্রের ফাইল"
-
-#, fuzzy
+"'%s' চিত্রটি লোড করতে ব্যর্থ হয়েছে। কারণ জানা নেই, সম্ভবত চিত্রের ফাইলটি বিকৃত"
+
 msgid "_Open Link"
-msgstr "লিঙ্ক খুলুন (_O):"
+msgstr "লিংক খোলা হবে (_O)"
 
 msgid "_Copy Link Location"
-msgstr "লিঙ্ক অবস্থান অনুলিপি করুন (_C)"
+msgstr "লিংকের অবস্থান অনুলিপি (_C)"
 
 msgid "_Copy Email Address"
-msgstr "ই-মেইল ঠিকানা অনুলিপি করুন (_C)"
+msgstr "ইমেইল ঠিকানা অনুলিপি (_C)"
+
+msgid "_Open File"
+msgstr "ফাইল খুলুন... (_O)"
+
+msgid "Open _Containing Directory"
+msgstr "ধারণকারী ডিরেক্টরি খুলুন (_C)"
 
 msgid "Save File"
-msgstr "ফাইল সংরক্ষণ করুন"
+msgstr "ফাইল সংরক্ষণ"
+
+msgid "_Play Sound"
+msgstr "শব্দ বাজানো হবে (_P)"
+
+msgid "_Save File"
+msgstr "ফাইল সংরক্ষণ (_S)"
 
 msgid "Select color"
-msgstr "রং নির্বাচন করুন"
+msgstr "রং নির্বাচন"
 
 msgid "_Alias"
 msgstr "উপনাম (_A)"
 
 msgid "Close _tabs"
-msgstr "ট্যাবসমূহ বন্ধ করুন (_t)"
+msgstr "সব ট্যাব বন্ধ করা হবে (_t)"
 
 msgid "_Get Info"
-msgstr "তথ্য সংগ্রহ করুন (_G)"
+msgstr "তথ্য সংগ্রহ করা হবে (_G)"
 
 msgid "_Invite"
-msgstr "আমন্ত্রণ জানান (_I)"
+msgstr "আমন্ত্রণ (_I)"
 
 msgid "_Modify..."
-msgstr "পরিবর্তন করুন... (_M)"
+msgstr "পরিবর্তন... (_M)"
 
 msgid "_Add..."
-msgstr "যোগ করুন... (_A)"
+msgstr "যোগ... (_A)"
 
 msgid "_Open Mail"
 msgstr "মেইল খুলুন (_O)"
 
 msgid "_Edit"
-msgstr "সম্পাদনা করুন (_E)"
+msgstr "সম্পাদনা (_E)"
 
 msgid "Pidgin Tooltip"
-msgstr "পিজিন টুলের-ইঙ্গিত"
+msgstr "পিজিন টুলটিপ"
 
 # tithi
 msgid "Pidgin smileys"
-msgstr "পিজিন স্মাইলীসমূহ"
+msgstr "পিজিন স্মাইলি"
 
 # tithi
 msgid "Penguin Pimps"
-msgstr "পেঙ্গুইন পিম্পসমূহ"
+msgstr "পেঙ্গুইন পিম্প"
 
 # tithi
 msgid "Selecting this disables graphical emoticons."
-msgstr "এই নিস্ক্রিয় গ্রাফিকাল অভিব্যক্তি-আইকন নির্বাচন করছে।"
+msgstr "এটি নির্বাচন করলে গ্রাফিকাল অনুভূতিচিহ্ন নিষ্ক্রিয় হবে।"
 
 msgid "none"
-msgstr "কোনটি না"
-
+msgstr "কোনটি নয়"
+
+# mark50
 msgid "Small"
 msgstr "ছোট"
 
 msgid "Smaller versions of the default smilies"
-msgstr "পূর্বনির্ধারিত স্মাইলীগুলোর অপেক্ষাকৃত ছোট সংস্করণ"
+msgstr "ডিফল্ট স্মাইলিগুলোর ছোট সংস্করণ"
 
 # tithi
 msgid "Response Probability:"
-msgstr "সাড়ার সম্ভাব্যতা:"
+msgstr "প্রতিক্রিয়া দেখানোর সম্ভাবনা:"
 
 msgid "Statistics Configuration"
-msgstr "পরিসংখ্যান বিন্যাসন"
+msgstr "পরিসংখ্যান কনফিগারেশন"
 
 # tithi
 #. msg_difference spinner
 msgid "Maximum response timeout:"
-msgstr "সর্বোচ্চ সাড়ার সময়োত্তীর্ণ হয়েছে:"
+msgstr "প্রতিক্রিয়ার সময় উত্তীর্নের সর্বোচ্চ মান:"
 
 msgid "minutes"
 msgstr "মিনিট"
@@ -14183,124 +14053,111 @@
 #. *< priority
 #. *< id
 msgid "Contact Availability Prediction"
-msgstr "যোগাযোগ সহজলভ্যতার ভবিষ্যৎবাণী"
+msgstr "পরিচিত ব্যক্তির উপস্থিতির ভবিষ্যদ্বাণী"
 
 # tithi
 #. *< name
 #. *< version
 msgid "Contact Availability Prediction plugin."
-msgstr "যোগাযোগ সহজলভ্যতার ভবিষ্যৎবাণীর প্লাগইন।"
+msgstr "পরিচিত ব্যক্তির উপস্থিতি ভবিষ্যদ্বাণী প্লাগইন।"
 
 # tithi
 #. *  summary
 msgid "Displays statistical information about your buddies' availability"
-msgstr "আপনার বন্ধুদের সম্ভাব্যতা সম্পর্কে পরিসংখ্যান সংক্রান্ত তথ্য প্রদর্শন করে"
-
-#, fuzzy
+msgstr "আপনার বন্ধুদের উপস্থিতি সংক্রান্ত পরিসংখ্যান প্রদর্শন করে"
+
 msgid "Server name request"
-msgstr "সার্ভারের ঠিকানা"
-
-#, fuzzy
+msgstr "সার্ভার নামের অনুরোধ"
+
 msgid "Enter an XMPP Server"
-msgstr "একটি কনফারেন্স সার্ভার প্রবেশ করান"
-
-#, fuzzy
+msgstr "একটি XMPP সার্ভারের ঠিকানা দিন"
+
 msgid "Select an XMPP server to query"
-msgstr "অনুসন্ধানের জন্য একটি কনফারেন্স সার্ভার প্রবেশ করান"
-
-#, fuzzy
+msgstr "কোয়েরির জন্য একটি XMPP সার্ভার নির্বাচন করুন"
+
 msgid "Find Services"
-msgstr "অনলাইন সেবাসমূহ"
-
-#, fuzzy
+msgstr "সার্ভিস খুঁজুন"
+
 msgid "Add to Buddy List"
-msgstr "বন্ধু তালিকা পাঠান"
-
-#, fuzzy
+msgstr "বন্ধু তালিকায় যোগ"
+
 msgid "Gateway"
-msgstr "অনুপস্থিত"
-
-#, fuzzy
+msgstr "গেটওয়ে"
+
 msgid "Directory"
-msgstr "লগ নির্দেশিকা"
-
-#, fuzzy
+msgstr "ডিরেক্টরি"
+
 msgid "PubSub Collection"
-msgstr "শব্দ নির্বাচন"
-
-# tithi
-#, fuzzy
+msgstr "PubSub সংগ্রহ"
+
+# tithi
 msgid "PubSub Leaf"
-msgstr "PubSub সেবা"
-
-#, fuzzy
+msgstr "PubSub লিফ"
+
 msgid ""
 "\n"
 "<b>Description:</b> "
-msgstr "বিবরণ"
-
+msgstr ""
+"\n"
+"<b>বর্ণনা:</b> "
+
+# ***
 #. Create the window.
-#, fuzzy
 msgid "Service Discovery"
-msgstr "সেবা আবিষ্কারের তথ্য"
-
-#, fuzzy
+msgstr "সার্ভিস অনুসন্ধান"
+
 msgid "_Browse"
-msgstr "ব্রাউজার (_B):"
-
-#, fuzzy
+msgstr "ব্রাউজ (_B)"
+
 msgid "Server does not exist"
-msgstr "ব্যবহারকারী বিদ্যমান নয়"
-
-#, fuzzy
+msgstr "সার্ভার বিদ্যমান নেই"
+
 msgid "Server does not support service discovery"
-msgstr "সার্ভার আবদ্ধকরণ সমর্থন করে না"
-
-#, fuzzy
+msgstr "সার্ভার সার্ভিস অনুসন্ধান সমর্থন করে না"
+
+# ***
 msgid "XMPP Service Discovery"
-msgstr "সেবা আবিষ্কারের তথ্য"
+msgstr "XMPP সার্ভিস অনুসন্ধান"
 
 msgid "Allows browsing and registering services."
-msgstr ""
-
-# tithi
-#, fuzzy
+msgstr "সার্ভিস ব্রাউজ এবং নিবন্ধন করা অনুমোদন করে।"
+
+# tithi
 msgid ""
 "This plugin is useful for registering with legacy transports or other XMPP "
 "services."
-msgstr "এই প্লাগিনটি XMPP সার্ভার বা ক্লায়েন্ট ডিবাগ করার জন্য কার্যকর।"
+msgstr "এই প্লাগইনটি  ট্রান্সপোর্ট অথবা XMPP সার্ভিস দ্বারা নিবন্ধন করার জন্য কার্যকর।"
 
 msgid "Buddy is idle"
-msgstr "বন্ধু অলস"
+msgstr "বন্ধু নিষ্ক্রিয়"
 
 msgid "Buddy is away"
-msgstr "বন্ধু অনুপস্থিত"
+msgstr "বন্ধু অন্যত্র"
 
 # fix me tithi
 msgid "Buddy is \"extended\" away"
-msgstr "বন্ধু অনুপস্থিত \"প্রসারিত\":"
+msgstr "বন্ধু \"অনেকক্ষন যাবত\" অন্যত্র:"
 
 #. Not used yet.
 msgid "Buddy is mobile"
-msgstr "বন্ধু মোবাইলে"
+msgstr "বন্ধু ভ্রাম্যমান"
 
 msgid "Buddy is offline"
 msgstr "বন্ধু অফলাইনে"
 
 msgid "Point values to use when..."
-msgstr "ব্যবহার করতে মানসমূহ নির্দেশ করুন যখন..."
+msgstr "মানসমূহ নির্দেশ করা হবে যখন..."
 
 msgid ""
 "The buddy with the <i>largest score</i> is the buddy who will have priority "
 "in the contact.\n"
-msgstr ""
-"<i>largest score</i> সম্বলিত বন্ধু হলো এমন বন্ধু যার যোগাযোগে অগ্রাধিকার থাকবে।\n"
+msgstr "<i>সর্বোচ্চ স্কোর</i> সম্বলিত বন্ধুটি পরিচিতিতে অগ্রাধিকার পাবে।\n"
 
 msgid "Use last buddy when scores are equal"
-msgstr "স্কোর সমান হলে শেষ বন্ধুকে ব্যবহার করুন"
+msgstr "স্কোর সমান হলে সর্বশেষ বন্ধুকে ব্যবহার করা হবে"
 
 msgid "Point values to use for account..."
-msgstr "একাউন্ট ব্যবহারের জন্য মানসমূহ নির্দেশ করুন..."
+msgstr "একাউন্টে ব্যবহারের জন্য মান নির্দেশ করা হবে..."
 
 #. *< type
 #. *< ui_requirement
@@ -14309,43 +14166,43 @@
 #. *< priority
 #. *< id
 msgid "Contact Priority"
-msgstr "যোগাযোগের অগ্রাধিকার"
+msgstr "পরিচিতির অগ্রাধিকার"
 
 #. *< name
 #. *< version
 #. *< summary
 msgid ""
 "Allows for controlling the values associated with different buddy states."
-msgstr "বিভিন্ন বন্ধুর রাজ্যের সাথে সম্পর্কিত মানসমূহ নিয়ন্ত্রণ করার জন্য অনুমতি দেয়।"
+msgstr "বন্ধুর বিভিন্ন অবস্থার সাথে সম্পর্কিত মানসমূহ নিয়ন্ত্রণ করতে দেয়।"
 
 #. *< description
 msgid ""
 "Allows for changing the point values of idle/away/offline states for buddies "
 "in contact priority computations."
 msgstr ""
-"যোগাযোগের অগ্রাধিকার নির্ণয়ে বন্ধুদের জন্য অলস/অনুপস্থিত/অফলাইন অবস্থার বিন্দু মানসমূহ "
-"পরিবর্তন করার জন্য অনুমোদন করে।"
+"পরিচিতির অগ্রাধিকার নির্ণয়ে বন্ধুদের নিষ্ক্রিয়/অন্যত্র/অফলাইন অবস্থার মানসমূহ পরিবর্তন "
+"করতে অনুমোদন করে।"
 
 msgid "Conversation Colors"
-msgstr "কথোপকথন রংসমূহ"
+msgstr "কথোপকথনের রং"
 
 msgid "Customize colors in the conversation window"
-msgstr "কথোপকথন উইন্ডোটির রং পছন্দসই বিন্যাস করুন"
+msgstr "কথোপকথন উইন্ডোর রং স্বনির্বাচন করা হবে"
 
 msgid "Error Messages"
-msgstr "ত্রুটি বার্তাসমূহ"
+msgstr "ত্রুটি বার্তা"
 
 msgid "Highlighted Messages"
-msgstr "প্রনির্দেশিত বার্তাসমূহ"
+msgstr "হাইলাইট করা বার্তা"
 
 msgid "System Messages"
-msgstr "সিস্টেম বার্তাসমূহ"
+msgstr "সিস্টেম বার্তা"
 
 msgid "Sent Messages"
-msgstr "প্রেরিত বার্তাসমূহ"
+msgstr "প্রেরিত বার্তা"
 
 msgid "Received Messages"
-msgstr "গৃহীত বার্তাসমূহ"
+msgstr "গৃহীত বার্তা"
 
 #, c-format
 msgid "Select Color for %s"
@@ -14353,20 +14210,20 @@
 
 # tithi
 msgid "Ignore incoming format"
-msgstr "আগত বিন্যাস উপেক্ষা করুন"
+msgstr "আগত বিন্যাস উপেক্ষা করা হবে"
 
 msgid "Apply in Chats"
-msgstr "আড্ডায় প্রয়োগ করুন"
+msgstr "আড্ডায় প্রয়োগ করা হবে"
 
 # tithi
 msgid "Apply in IMs"
-msgstr "আইএম গুলোতে প্রয়োগ করুন"
+msgstr "IM গুলোতে প্রয়োগ করা হবে"
 
 msgid "By conversation count"
-msgstr "কথোপকথন গণনা অনুসারে"
+msgstr "মোট কথোপকথন অনুসারে"
 
 msgid "Conversation Placement"
-msgstr "কথোপকথন অবস্থিতিকরণ"
+msgstr "কথোপকথনের অবস্থান বিন্যাস"
 
 # fix-me tithi
 #. Translators: "New conversations" should match the text in the preferences dialog and "By conversation count" should be the same text used above
@@ -14374,14 +14231,14 @@
 "Note: The preference for \"New conversations\" must be set to \"By "
 "conversation count\"."
 msgstr ""
-"নোট: \"নতুন কথোপকথনসমূহের\" প্রাধিকার অবশ্যই \"কথোপকথন গণনার ভিত্তিতে\" নির্ধারিত "
-"হবে।"
+"নোট: \"নতুন কথোপকথন\" এর প্রাধিকার অবশ্যই \"মোট কথোপকথনের ভিত্তিতে\" নির্ধারণ "
+"করতে হবে।"
 
 msgid "Number of conversations per window"
 msgstr "প্রতি উইন্ডোতে কথোপকথনের সংখ্যা"
 
 msgid "Separate IM and Chat windows when placing by number"
-msgstr "সংখ্যা অনুসারে সাজানোর সময় আইএম ও আড্ডার উইন্ডোগুলো আলাদা করুন"
+msgstr "সংখ্যা অনুসারে সাজানোর সময় IM এবং আড্ডার উইন্ডোগুলো আলাদা করা হবে"
 
 #. *< type
 #. *< ui_requirement
@@ -14395,19 +14252,18 @@
 #. *< name
 #. *< version
 msgid "Extra conversation placement options."
-msgstr "অতিরিক্ত কথোপকথন অবস্থিতিকরণ পছন্দসমূহ।"
+msgstr "অতিরিক্ত কথোপকথন অবস্থান বিন্যাস।"
 
 #. *< summary
 #. *  description
 msgid ""
 "Restrict the number of conversations per windows, optionally separating IMs "
 "and Chats"
-msgstr ""
-"আইএম এবং আড্ডা ঐচ্ছিকভাবে আলাদা করে, প্রতিটি উইন্ডোর কথোপকথন সংখ্যা সীমিত করুন।"
+msgstr "প্রতি উইন্ডোর কথোপকথন সংখ্যা সীমিত করা হবে, IM এবং আড্ডা আলাদা করা ঐচ্ছিক।"
 
 #. Configuration frame
 msgid "Mouse Gestures Configuration"
-msgstr "মাউসের ভঙ্গিমা বিন্যাসন করুন"
+msgstr "মাউসের ভঙ্গিমা কনফিগারেশন"
 
 msgid "Middle mouse button"
 msgstr "মাউসের মাঝের বোতাম"
@@ -14419,7 +14275,7 @@
 # দৃশ্যমান ভঙ্গিমা প্রদর্শন (_দ)
 #. "Visual gesture display" checkbox
 msgid "_Visual gesture display"
-msgstr "ঐক্ষিক ভঙ্গিমার প্রদর্শন (_V)"
+msgstr "দৃশ্যমান ভঙ্গিমা প্রদর্শন (_V)"
 
 #. *< type
 #. *< ui_requirement
@@ -14434,7 +14290,7 @@
 #. *< version
 #. *  summary
 msgid "Provides support for mouse gestures"
-msgstr "মাউসের ভঙ্গিমাকে সমর্থন দেয়"
+msgstr "মাউসের ভঙ্গিমা সমর্থন দেয়"
 
 #. *  description
 msgid ""
@@ -14444,23 +14300,24 @@
 " • Drag up and then to the left to switch to the previous conversation.\n"
 " • Drag up and then to the right to switch to the next conversation."
 msgstr ""
-"কথোপকথন উইন্ডোতে মাউস ভঙ্গিমার জন্য সহায়তা অনুমোদন করে। মাউসের মাঝের বোতামটি "
-"চেপে বিভিন্ন কার্য সম্পাদনা করুন:\n"
-"\n"
-"•একটি কথোপকথন বন্ধ করতে নিচে টানুন এবং তারপর ডানে টানুন।\n"
+"কথোপকথন উইন্ডোতে মাউস ভঙ্গিমা ব্যবহারের সমর্থন দেয়। মাউসের মাঝের বোতামটি চেপে "
+"বিভিন্ন কাজ সম্পাদন করুন:\n"
+"\n"
+"•একটি কথোপকথন বন্ধ করতে নিচে এবং তারপর ডানে টানুন।\n"
 "•পূর্ববর্তী কথোপকথনে পরিবর্তন করতে উপরে টানুন এবং তারপর বামে টানুন।\n"
 "•পরবর্তী কথোপকথন পরিবর্তন করতে উপরে টানুন এবং তারপর ডানে টানুন।"
 
 msgid "Instant Messaging"
-msgstr "তাৎক্ষণিক বার্তাব্যবস্থা"
+msgstr "তাৎক্ষণিক বার্তা ব্যবস্থা"
 
 #. Add the label.
 msgid "Select a person from your address book below, or add a new person."
 msgstr ""
-"নিম্নোক্ত ঠিকানার বই থেকে একজন ব্যক্তিকে নির্বাচন করুন, বা একজন নতুন ব্যক্তি যোগ করুন।"
+"নিম্নোক্ত ঠিকানার বই থেকে একজন ব্যক্তিকে নির্বাচন করুন, অথবা একজন নতুন ব্যক্তি যোগ "
+"করুন।"
 
 msgid "Group:"
-msgstr "গ্রুপ:"
+msgstr "দল:"
 
 #. "New Person" button
 msgid "New Person"
@@ -14468,15 +14325,15 @@
 
 #. "Select Buddy" button
 msgid "Select Buddy"
-msgstr "বন্ধু নির্বাচন করুন"
+msgstr "বন্ধু নির্বাচন"
 
 #. Add the label.
 msgid ""
 "Select a person from your address book to add this buddy to, or create a new "
 "person."
 msgstr ""
-"এই বন্ধুটি যোগ করতে আপনার ঠিকানার বই থেকে একজন ব্যক্তি নির্বাচন করুন, বা নতুন ব্যক্তি "
-"তৈরি করুন।"
+"এই বন্ধুটি যোগ করতে আপনার ঠিকানার বই থেকে একজন ব্যক্তি নির্বাচন করুন, অথবা নতুন "
+"ব্যক্তির ঠিকানা তৈরি করুন।"
 
 #. Add the expander
 msgid "User _details"
@@ -14487,28 +14344,28 @@
 msgstr "সম্পৃক্ত বন্ধু (_A)"
 
 msgid "Unable to send email"
-msgstr "ই-মেইল পাঠাতে ব্যর্থ"
+msgstr "ইমেইল পাঠাতে ব্যর্থ"
 
 msgid "The evolution executable was not found in the PATH."
-msgstr "পথ-এর মধ্যে কার্যকরযোগ্য বিবর্তন খুঁজে পাওয়া যায়নি।"
+msgstr "PATH এ evolution এক্সিকিউটেবলটি  খুঁজে পাওয়া যায়নি।"
 
 # tithi
 msgid "An email address was not found for this buddy."
-msgstr "এই বন্ধুটির জন্য একটি ই-মেইল ঠিকানা খুঁজে পাওয়া যায়নি।"
+msgstr "এই বন্ধুটির কোন ইমেইল ঠিকানা খুঁজে পাওয়া যায়নি।"
 
 msgid "Add to Address Book"
-msgstr "ঠিকানার বইয়ে যোগ করুন"
+msgstr "ঠিকানার বইয়ে যোগ করা হবে"
 
 msgid "Send Email"
-msgstr "ই-মেইল পাঠান"
+msgstr "ইমেইল পাঠানো হবে"
 
 #. Configuration frame
 msgid "Evolution Integration Configuration"
-msgstr "বিবর্তন একত্রিকরণ বিন্যাসন"
+msgstr "Evolution একত্রিকরণ কনফিগারেশন"
 
 #. Label
 msgid "Select all accounts that buddies should be auto-added to."
-msgstr "স্বয়ংক্রিয়ভাবে সব একাউন্টগুলো নির্বাচন করুন যাতে বন্ধুরা স্বয়ং-যুক্ত হবে।"
+msgstr "সব একাউন্টগুলো নির্বাচন করুন যাতে বন্ধুরা স্বয়ংক্রিয়ভাবে যুক্ত হবে।"
 
 #. *< type
 #. *< ui_requirement
@@ -14517,20 +14374,20 @@
 #. *< priority
 #. *< id
 msgid "Evolution Integration"
-msgstr "বিবর্তন একত্রিকরণ"
+msgstr "Evolution সংযোজন"
 
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Provides integration with Evolution."
-msgstr "বিবর্তনের সঙ্গে একত্রিকরণ প্রদান করে।"
+msgstr "Evolution এর সঙ্গে সংযোজন প্রদান করে।"
 
 msgid "Please enter the person's information below."
-msgstr "অনুগ্রহ করে ব্যক্তির তথ্যাদি নিচে প্রবেশ করান।"
+msgstr "অনুগ্রহ করে নিম্নে ব্যক্তির তথ্য দিন।"
 
 msgid "Please enter the buddy's username and account type below."
-msgstr "অনুগ্রহ করে বন্ধুর ব্যবহারকারী নাম ও একাউন্টের ধরণ নিচে প্রবেশ করান।"
+msgstr "অনুগ্রহ করে নিম্নে বন্ধুর ব্যবহারকারী নাম ও একাউন্টের ধরণ দিন।"
 
 msgid "Account type:"
 msgstr "একাউন্টের ধরণ:"
@@ -14556,14 +14413,14 @@
 #. *< priority
 #. *< id
 msgid "GTK Signals Test"
-msgstr "GTK সঙ্কেতের পরীক্ষা"
+msgstr "GTK সিগন্যাল পরীক্ষা"
 
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Test to see that all ui signals are working properly."
-msgstr "সব ইউআই সঙ্কেত সঠিকভাবে কাজ করছে কিনা তা দেখার জন্য পরীক্ষা করুন।"
+msgstr "সব UI সঙ্কেত সঠিকভাবে কাজ করছে কিনা তা পরীক্ষা করা হবে।"
 
 #, c-format
 msgid ""
@@ -14583,14 +14440,14 @@
 #. *< priority
 #. *< id
 msgid "Iconify on Away"
-msgstr "অনুপস্থিত হলে আইকন দ্বারা চিহ্নিত করুন"
+msgstr "অন্যত্র হলে আইকন দ্বারা চিহ্নিত করা হবে"
 
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Iconifies the buddy list and your conversations when you go away."
-msgstr "আপনার অনুপস্থিতিতে বন্ধু তালিকা ও আপনার কথোপকথন আইকন দ্বারা চিহ্নিত করুন।"
+msgstr "আপনি অন্যত্র হলে বন্ধু তালিকা ও আপনার কথোপকথন আইকন দ্বারা চিহ্নিত করা হবে।"
 
 msgid "Mail Checker"
 msgstr "মেইল পরীক্ষক"
@@ -14599,25 +14456,25 @@
 msgstr "নতুন স্থানীয় মেইলের জন্য পরীক্ষা করে।"
 
 msgid "Adds a small box to the buddy list that shows if you have new mail."
-msgstr "বন্ধু তালিকার একটি ছোট বাক্স যুক্ত করে যা আপনার নতুন মেইল এলে প্রদর্শন করে।"
+msgstr "বন্ধু তালিকায় একটি ছোট বাক্স যুক্ত করে যা আপনার নতুন মেইল এলে প্রদর্শন করে।"
 
 msgid "Markerline"
-msgstr "চিহ্নিতকারীর-রেখা"
+msgstr "চিহ্নিতকরণ রেখা"
 
 # tithi
 msgid "Draw a line to indicate new messages in a conversation."
-msgstr "কথোপকথনে নতুন বার্তাগুলো নির্দেশ করতে একটি লাইন আঁকুন।"
+msgstr "কথোপকথনে নতুন বার্তা নির্দেশ করতে একটি লাইন আঁকা হবে।"
 
 # fix me tithi
 msgid "Jump to markerline"
-msgstr "চিহ্নিতকারীর-রেখায় গমন করুন"
+msgstr "চিহ্নিতকরণ রেখায় যাওয়া হবে"
 
 # tithi
 msgid "Draw Markerline in "
-msgstr "চিহ্নিতকারীর-রেখা আঁকুন"
+msgstr "চিহ্নিতকরণ রেখা আঁকা হবে"
 
 msgid "_IM windows"
-msgstr "আইএম উইন্ডোজ (_I)"
+msgstr "IM উইন্ডো (_I)"
 
 msgid "C_hat windows"
 msgstr "আড্ডার উইন্ডো (_h)"
@@ -14627,37 +14484,37 @@
 "A music messaging session has been requested. Please click the MM icon to "
 "accept."
 msgstr ""
-"একটি সংগীত বার্তাকরণ অধিবেশনের জন্য অনুরোধ করা হয়েছে। অনুগ্রহ করে গ্রহণ করতে MM "
-"আইকনটি ক্লিক করুন।"
+"একটি গানের বার্তার সেশন অনুরোধ করা হয়েছে। অনুগ্রহ করে MM আইকনটি ক্লিক করে গ্রহণ "
+"করুন।"
 
 # fix me
 msgid "Music messaging session confirmed."
-msgstr "সংগীত বার্তাকরণ অধিবেশন নিশ্চিত।"
+msgstr "গানের বার্তার সেশন নিশ্চিত।"
 
 # fix me
 msgid "Music Messaging"
-msgstr "সংগীত বার্তাকরণ"
+msgstr "গানের বার্তা"
 
 # tithi
 msgid "There was a conflict in running the command:"
-msgstr "নির্দেশ চালাতে একটি দ্বন্দ্ব ছিল:"
+msgstr "কমান্ড চালাতে একটি দ্বন্দ্ব হয়েছে:"
 
 msgid "Error Running Editor"
 msgstr "সম্পাদক চালাতে ত্রুটি"
 
 msgid "The following error has occurred:"
-msgstr "নিম্নোক্ত ত্রুটি সংঘটিত হয়েছে:"
+msgstr "নিম্নোক্ত ত্রুটি হয়েছে:"
 
 #. Configuration frame
 msgid "Music Messaging Configuration"
-msgstr "সংগীত বার্তাকরণ বিন্যাসন"
+msgstr "গানের বার্তা কনফিগারেশন"
 
 # tithifix me
 msgid "Score Editor Path"
-msgstr "সম্পাদক পাথ স্কোর"
+msgstr "স্কোর সম্পাদকের পাথ "
 
 msgid "_Apply"
-msgstr "প্রয়োগ করুন (_A)"
+msgstr "প্রয়োগ (_A)"
 
 # tithi
 #. *< type
@@ -14669,57 +14526,54 @@
 #. *< name
 #. *< version
 msgid "Music Messaging Plugin for collaborative composition."
-msgstr "সমন্নিত রচনার জন্য সংগীত বার্তাকরণ প্লাগইন করুন।"
+msgstr "সম্মিলিত রচনার জন্য গানের বার্তার প্লাগইন।"
 
 # fix me tithi
 #. *  summary
-#, fuzzy
 msgid ""
 "The Music Messaging Plugin allows a number of users to simultaneously work "
 "on a piece of music by editing a common score in real-time."
 msgstr ""
-"সংগীত বার্তাকরণ প্লাগইন কিছু সংখ্যক ব্যবহারকারী বাস্তব-সময়ের একটি সাধারন স্কোর "
-"সম্পাদনার মাধ্যমে যুগপৎভাবে এক খন্ড সংগীতের উপর কাজ করে।"
+"গানের বার্তার প্লাগইন কিছু সংখ্যক ব্যবহারকারীকে রিয়েল-টাইমে একটি সাধারন স্কোর "
+"সম্পাদনার মাধ্যমে একইসাথে একটি সংগীতের উপর কাজ করার অনুমোদন দেয়।"
 
 #. ---------- "Notify For" ----------
 msgid "Notify For"
-msgstr "এর জন্য প্রজ্ঞাপন"
+msgstr "বিজ্ঞপ্তি"
 
 # fix me
 msgid "\t_Only when someone says your username"
-msgstr ""
-"                        শুধুমাত্র তখন যখন কেউ একজন আপনার ব্যবহারকারীর নাম ডাকে "
-"(_O)"
+msgstr "\tশুধুমাত্র তখনই যখন কেউ আপনার ব্যবহারকারীর নাম উল্লেখ করে (_O)"
 
 msgid "_Focused windows"
 msgstr "ফোকাসকৃত উইন্ডো (_F)"
 
 #. ---------- "Notification Methods" ----------
 msgid "Notification Methods"
-msgstr "প্রজ্ঞাপন পদ্ধতি"
+msgstr "ঘোষণা পদ্ধতি"
 
 msgid "Prepend _string into window title:"
-msgstr "উইন্ডোর শিরোনামে স্ট্রীং যোগ করুন (_s):"
+msgstr "উইন্ডো শিরোনামের অগ্রভাগে স্ট্রিং যোগ করা হবে (_s):"
 
 #. Count method button
 msgid "Insert c_ount of new messages into window title"
-msgstr "উইন্ডোর শিরোনামে নতুন বার্তাসমূহের সংখ্যা প্রবেশ করান (_o)"
+msgstr "উইন্ডোর শিরোনামে নতুন বার্তার সংখ্যা প্রবেশ করানো হবে (_o)"
 
 # fix me
 #. Count xprop method button
 msgid "Insert count of new message into _X property"
-msgstr "X বৈশিষ্ট্যে নতুন বার্তাসমূহের সংখ্যা প্রবেশ করান (_X)"
+msgstr "X-এর বৈশিষ্ট্যে নতুন বার্তার সংখ্যা প্রবেশ করানো হবে (_X)"
 
 #. Urgent method button
 msgid "Set window manager \"_URGENT\" hint"
-msgstr "উইন্ডো ব্যবস্থাপক \"জরুরী\" ইঙ্গিতে নির্দিষ্ট করুন (_U)"
+msgstr "উইন্ডো ব্যবস্থাপকের \"জরুরী\" ইঙ্গিত নির্ধারণ করা হবে (_U)"
 
 msgid "_Flash window"
-msgstr "ফ্ল্যাশ উইন্ডো (_F)"
+msgstr "উইন্ডো ঝলকানো হবে (_F)"
 
 #. Raise window method button
 msgid "R_aise conversation window"
-msgstr "কথোপকথন উইন্ডো বৃদ্ধি করুন (_a)"
+msgstr "কথোপকথন উইন্ডো উপরে উঠানো হবে (_a)"
 
 #. Present conversation method button
 msgid "_Present conversation window"
@@ -14727,27 +14581,27 @@
 
 #. ---------- "Notification Removals" ----------
 msgid "Notification Removal"
-msgstr "প্রজ্ঞাপন অপসারক"
+msgstr "ঘোষণা অপসারণ"
 
 #. Remove on focus button
 msgid "Remove when conversation window _gains focus"
-msgstr "কথোপকথন উইন্ডোতে ফোকাস করা হলে অপসারণ করুন (_g)"
+msgstr "কথোপকথন উইন্ডোতে ফোকাস করা হলে অপসারণ করা হবে (_g)"
 
 #. Remove on click button
 msgid "Remove when conversation window _receives click"
-msgstr "কথোপকথন উইন্ডোতে ক্লিক করা হলে অপসারণ করুন (_r)"
+msgstr "কথোপকথন উইন্ডোতে ক্লিক করা হলে অপসারণ করা হবে (_r)"
 
 #. Remove on type button
 msgid "Remove when _typing in conversation window"
-msgstr "কথোপকথন উইন্ডোতে টাইপ করার সময় অপসারণ করুন (_t)"
+msgstr "কথোপকথন উইন্ডোতে টাইপ করার সময় অপসারণ করা হবে (_t)"
 
 #. Remove on message send button
 msgid "Remove when a _message gets sent"
-msgstr "একটি বার্তা পাঠানো হলে অপসারণ করুন (_m)"
+msgstr "একটি বার্তা পাঠানো হলে অপসারণ করা হবে (_m)"
 
 #. Remove on conversation switch button
 msgid "Remove on switch to conversation ta_b"
-msgstr "কথোপকথন ট্যাবে পরিবর্তনের সময় অপসারণ করুন (_b)"
+msgstr "কথোপকথন ট্যাবে পরিবর্তনের সময় অপসারণ করা হবে (_b)"
 
 #. *< type
 #. *< ui_requirement
@@ -14756,14 +14610,14 @@
 #. *< priority
 #. *< id
 msgid "Message Notification"
-msgstr "বার্তার প্রজ্ঞাপন"
+msgstr "বার্তার ঘোষণা"
 
 #. *< name
 #. *< version
 #. *  summary
 #. *  description
 msgid "Provides a variety of ways of notifying you of unread messages."
-msgstr "আপনাকে অপঠিত বার্তাসমূহের বিভিন্ন ধরনের প্রজ্ঞাপন প্রদান করে।"
+msgstr "বিভিন্নভাবে অপঠিত বার্তার ঘোষণা প্রদানে সাহায্য করে "
 
 #. *< type
 #. *< ui_requirement
@@ -14772,13 +14626,13 @@
 #. *< priority
 #. *< id
 msgid "Pidgin Demonstration Plugin"
-msgstr "পিজিন কার্যপ্রণালী প্রদর্শন প্লাগইন"
+msgstr "পিজিনের কার্যপ্রণালী প্রদর্শনের প্লাগইন"
 
 #. *< name
 #. *< version
 #. *  summary
 msgid "An example plugin that does stuff - see the description."
-msgstr "একটি উদাহারণ প্লাগইন যা অনেক কিছু করে - বিবরণ দেখুন।"
+msgstr "অনেক কিছু করে এমন একটি উদাহরণ প্লাগইন - বর্ণনা দেখুন।"
 
 #. *  description
 msgid ""
@@ -14787,112 +14641,108 @@
 "- It reverses all incoming text\n"
 "- It sends a message to people on your list immediately when they sign on"
 msgstr ""
-"এটা বস্তুত অসাধারণ প্লাগ-ইন যা বেশ কার্যকর:\n"
-"- আপনি লগইন করলে এটা আপনাকে জানাবে যে কে এই প্রোগ্রামটি লিখেছে\n"
-"- এটা সব আগত পাঠ উল্টে দেয়\n"
-"- আপনার তালিকাভুক্ত ব্যক্তি সাইন অন করলেই এটা তাদেরকে একটি বার্তা পাঠায়"
+"এটা একটি অসাধারণ প্লাগ-ইন যা বেশ কার্যকর:\n"
+"- লগইন করলে আপনাকে জানায় যে কে এই প্রোগ্রামটি লিখেছে\n"
+"- আগত সব টেক্সট উল্টে দেয়\n"
+"- আপনার তালিকাভুক্ত ব্যক্তি লগইন করলেই তাদেরকে একটি বার্তা পাঠায়"
 
 msgid "Hyperlink Color"
-msgstr "হাইপারলিঙ্কের রং"
+msgstr "হাইপারলিংকের রং"
 
 msgid "Visited Hyperlink Color"
-msgstr "প্রনির্দেশিত হাইপারলিঙ্ক রং"
+msgstr "পরিদর্শিত হাইপারলিংক রং"
 
 msgid "Highlighted Message Name Color"
-msgstr "প্রনির্দেশিত বার্তার নামের রং"
-
-#, fuzzy
+msgstr "হাইলাইটকৃত বার্তার নামের রং"
+
 msgid "Typing Notification Color"
-msgstr "প্রজ্ঞাপন রং টাইপ করছে"
+msgstr "ঘোষণা টাইপ করার ফন্টের রং"
 
 msgid "GtkTreeView Horizontal Separation"
 msgstr "GtkTreeView অনুভূমিক বিভাজন"
 
 msgid "Conversation Entry"
-msgstr "কথোপকথন এন্টি"
+msgstr "কথোপকথন ভুক্তি"
 
 msgid "Request Dialog"
-msgstr "অনুরোধ সংলাপ"
+msgstr "অনুরোধের ডায়ালগ"
 
 msgid "Notify Dialog"
-msgstr "প্রজ্ঞাপন সংলাপ"
+msgstr "বিজ্ঞাপন ডায়ালগ"
 
 msgid "Select Color"
-msgstr "রং নির্বাচন করুন"
+msgstr "রং নির্বাচন"
 
 #, c-format
 msgid "Select Interface Font"
-msgstr "ইন্টারফেসের ফন্ট নির্বাচন করুন"
+msgstr "ইন্টারফেসের ফন্ট নির্বাচন"
 
 #, c-format
 msgid "Select Font for %s"
-msgstr "%s-এর জন্য ফন্ট নির্বাচন করুন"
+msgstr "%s-এর জন্য ফন্ট নির্বাচন"
 
 msgid "GTK+ Interface Font"
 msgstr "GTK+ ইন্টারফেসের ফন্ট"
 
 msgid "GTK+ Text Shortcut Theme"
-msgstr "GTK+ পাঠ শর্টকাটের থীম"
-
-#, fuzzy
+msgstr "GTK+ টেক্সট শর্টকাটের থীম"
+
 msgid "Disable Typing Notification Text"
-msgstr "টাইপকরণ প্রজ্ঞাপন সক্রিয় করুন"
-
-#, fuzzy
+msgstr "ঘোষণা টাইপ করার টেক্সট নিষ্ক্রিয় করুন"
+
 msgid "GTK+ Theme Control Settings"
-msgstr "পিজিন GTK+ থীম নিয়ন্ত্রণ"
-
-#, fuzzy
+msgstr "GTK+ থীম নিয়ন্ত্রণ সেটিং"
+
 msgid "Colors"
-msgstr "বন্ধ"
+msgstr "রং"
 
 msgid "Fonts"
-msgstr "ফন্টসমূহ"
+msgstr "ফন্ট"
 
 msgid "Miscellaneous"
-msgstr ""
+msgstr "বিবিধ"
 
 msgid "Gtkrc File Tools"
-msgstr "Gtkrc ফাইলের টুলসমূহ"
+msgstr "Gtkrc ফাইলের টুল"
 
 #, c-format
 msgid "Write settings to %s%sgtkrc-2.0"
-msgstr "%s%sgtkrc-২.০ এ  লিখন বিন্যাসন"
+msgstr "%s%sgtkrc-2.0 এ সেটিং লেখা হবে"
 
 msgid "Re-read gtkrc files"
-msgstr "gtkrc ফাইলগুলো পুনরায় পড়ুন"
+msgstr "gtkrc ফাইলগুলো পুনরায় পড়া হবে"
 
 msgid "Pidgin GTK+ Theme Control"
 msgstr "পিজিন GTK+ থীম নিয়ন্ত্রণ"
 
 msgid "Provides access to commonly used gtkrc settings."
-msgstr "সাধারণত ব্যবহৃত gtkrc বিন্যাসনসমূহে প্রবেশ অনুমোদন করে।"
+msgstr "সাধারণত ব্যবহৃত gtkrc বিন্যাস করতে অনুমোদন করে।"
 
 msgid "Raw"
-msgstr "নতুন"
+msgstr "অশোধিত"
 
 msgid "Lets you send raw input to text-based protocols."
-msgstr "আপনাকে পাঠ-ভিত্তিক প্রটোকলসমূহে নতুন ইনপুট পাঠাতে দেয়।"
+msgstr "আপনাকে টেক্সট-ভিত্তিক প্রোটোকলে অশোধিত ইনপুট পাঠাতে দেয়।"
 
 msgid ""
 "Lets you send raw input to text-based protocols (XMPP, MSN, IRC, TOC). Hit "
 "'Enter' in the entry box to send. Watch the debug window."
 msgstr ""
-"আপনাকে পাঠ-ভিত্তিক প্রটোকলসমূহে (XMPP, MSN, IRC, TOC) নতুন ইনপুট পাঠাতে দেয়। "
-"পাঠাতে হলে এন্ট্রি বাক্সের 'Enter' চাপুন। ডিবাগ উইন্ডোটি পর্যবেক্ষণ করুন।"
+"আপনাকে টেক্সট-ভিত্তিক প্রোটোকলে (XMPP, MSN, IRC, TOC) অশোধিত ইনপুট পাঠাতে দেয়। "
+"পাঠাতে হলে এন্ট্রি বাক্সে 'Enter' চাপুন। ডিবাগ উইন্ডোটি পর্যবেক্ষণ করুন।"
 
 #, c-format
 msgid "You can upgrade to %s %s today."
-msgstr "আপনি আজ %s %s এ উন্নততর করতে পারেন।"
+msgstr "আপনি আজ %s %s এ হালনাগাদ করতে পারেন।"
 
 msgid "New Version Available"
-msgstr "নতুন সংস্করণ সহজলভ্য"
+msgstr "নতুন সংস্করণ বের হয়েছে"
 
 msgid "Later"
 msgstr "পরবর্তীতে"
 
 msgid "Download Now"
-msgstr "এখন ডাউনলোড করুন"
+msgstr "এখন ডাউনলোড করা হবে"
 
 #. *< type
 #. *< ui_requirement
@@ -14901,21 +14751,21 @@
 #. *< priority
 #. *< id
 msgid "Release Notification"
-msgstr "সংস্করণ প্রজ্ঞাপন"
+msgstr "রিলিজ ঘোষণা"
 
 #. *< name
 #. *< version
 #. *  summary
 msgid "Checks periodically for new releases."
-msgstr "পর্যায়ক্রমিকভাবে নতুন সংস্করণের জন্য পরীক্ষা করুন।"
+msgstr "নির্দিষ্ট সময়সীমা পর পর নতুন সংস্করণের জন্য পরীক্ষা করে।"
 
 #. *  description
 msgid ""
 "Checks periodically for new releases and notifies the user with the "
 "ChangeLog."
 msgstr ""
-"পর্যায়ক্রমিকভাবে নতুন সংস্করণের জন্য পরীক্ষা করুন এবং ChangeLog দ্বারা ব্যাবহারকারীকে "
-"অবগত করুন।"
+"নির্দিষ্ট সময়সীমা পর পর নতুন সংস্করণের জন্য পরীক্ষা করে এবং ChangeLog দ্বারা "
+"ব্যাবহারকারীকে অবগত করে।"
 
 #. *< major version
 #. *< minor version
@@ -14926,7 +14776,7 @@
 #. *< priority
 #. *< id
 msgid "Send Button"
-msgstr "পাঠানোর বোতাম"
+msgstr "প্রেরণ বোতাম"
 
 #. *< name
 #. *< version
@@ -14934,25 +14784,24 @@
 msgstr "কথোপকথন উইন্ডোর প্রেরণ বোতাম"
 
 #. *< summary
-#, fuzzy
 msgid ""
 "Adds a Send button to the entry area of the conversation window. Intended "
 "for use when no physical keyboard is present."
 msgstr ""
-"কথোপকথন উইন্ডোর এন্ট্রি এলাকায় একটি প্রেরণ বোতাম যোগ করুন। যখন কোনো কীবোর্ড বর্তমান "
-"নেই এমন উদ্দেশ্যে।"
+"কথোপকথন উইন্ডোর এন্ট্রি এলাকায় একটি প্রেরণ বোতাম যোগ করুন। যখন কোনো কীবোর্ড থাকেনা "
+"এমন পরিস্থিতিতে ব্যবহারের উদ্দেশ্যে।"
 
 msgid "Duplicate Correction"
-msgstr "অনুরূপ সংশোধন"
+msgstr "সাদৃশ্য সংশোধন"
 
 msgid "The specified word already exists in the correction list."
-msgstr "উল্লেখিত শব্দটি ইতোমধ্যে সংশোধন তালিকায় বিদ্যমান।"
+msgstr "উল্লেখিত শব্দটি ইতিমধ্যে সংশোধন তালিকায় বিদ্যমান।"
 
 msgid "Text Replacements"
-msgstr "পাঠ প্রতিস্থাপন"
+msgstr "টেক্সট প্রতিস্থাপন"
 
 msgid "You type"
-msgstr "আপনি টাইপ করুন"
+msgstr "আপনি টাইপ করেন"
 
 msgid "You send"
 msgstr "আপনি পাঠান"
@@ -14962,13 +14811,13 @@
 
 # tithi
 msgid "Case sensitive"
-msgstr "কেস সংবেদনশীল"
+msgstr "ছাঁদ সংবেদনশীল"
 
 msgid "Add a new text replacement"
-msgstr "নতুন পাঠ প্রতিস্থাপন যোগ করুন"
+msgstr "নতুন টেক্সট প্রতিস্থাপন যোগ করা হবে"
 
 msgid "You _type:"
-msgstr "আপনি টাইপ করুন (_t):"
+msgstr "আপনি টাইপ করেন (_t):"
 
 msgid "You _send:"
 msgstr "আপনি পাঠান (_s):"
@@ -14976,114 +14825,100 @@
 # tithi
 #. Created here so it can be passed to whole_words_button_toggled.
 msgid "_Exact case match (uncheck for automatic case handling)"
-msgstr "যথাযথ কেস সমন্বয় (স্বয়ংক্রিয় কেস পরিচালনার জন্য অপরীক্ষীত রাখুন) (_E)"
+msgstr ""
+"অক্ষরের ছাঁদের হুবহু মিল (অক্ষরের ছাঁদের স্বয়ংক্রিয়ভাবে ব্যবস্থাপনার জন্য টিক চিহ্ন তুলে "
+"দিন) (_E)"
 
 msgid "Only replace _whole words"
-msgstr "শুধুমাত্র পূর্ণ শব্দ প্রতিস্থাপন করুন (_w)"
+msgstr "শুধুমাত্র পূর্ণ শব্দ প্রতিস্থাপন করা হবে (_w)"
 
 msgid "General Text Replacement Options"
-msgstr "সাধারণ পাঠ প্রতিস্থাপন পছন্দসমূহ"
+msgstr "সাধারণ টেক্সট প্রতিস্থাপন অপশন"
 
 # tithi
 msgid "Enable replacement of last word on send"
-msgstr "পাঠানোর সময় শেষ শব্দের প্রতিস্থাপন সক্রিয় করুন"
+msgstr "পাঠানোর সময় শেষ শব্দের প্রতিস্থাপন সক্রিয় করা হবে"
 
 msgid "Text replacement"
-msgstr "পাঠ প্রতিস্থাপন"
+msgstr "টেক্সট প্রতিস্থাপন করা হবে"
 
 msgid "Replaces text in outgoing messages according to user-defined rules."
-msgstr "ব্যবহারকারী-সুনির্দিষ্ট নীতি অনুযায়ী বহির্গমন বার্তাসমুহে পাঠ প্রতিস্থাপন করে।"
-
-#, fuzzy
+msgstr "ব্যবহারকারী নির্দিষ্ট নীতি অনুযায়ী বহির্গমন বার্তায় টেক্সট প্রতিস্থাপন করে।"
+
 msgid "Just logged in"
-msgstr "লগইন করা হয়নি"
-
-#, fuzzy
+msgstr "এইমাত্র লগইন করেছে"
+
 msgid "Just logged out"
-msgstr "লগইন করা হয়নি"
+msgstr "এইমাত্র লগআউট হয়েছে"
 
 msgid ""
 "Icon for Contact/\n"
 "Icon for Unknown person"
 msgstr ""
-
-#, fuzzy
+"পরিচিতির আইকন/\n"
+"অপরিচিত ব্যক্তির আইকন"
+
 msgid "Icon for Chat"
-msgstr "আড্ডায় যোগ দিন"
-
-#, fuzzy
+msgstr "আড্ডার আইকন"
+
 msgid "Ignored"
-msgstr "অগ্রাহ্য করুন"
-
-#, fuzzy
+msgstr "অগ্রাহ্য করা হয়েছে"
+
 msgid "Founder"
-msgstr "অপেক্ষাকৃত জোরে"
-
-#, fuzzy
+msgstr "প্রতিষ্ঠাতা"
+
 msgid "Operator"
-msgstr "অপেরা"
+msgstr "অপারেটর"
 
 msgid "Half Operator"
-msgstr ""
-
-# tithi
-#, fuzzy
+msgstr "আংশিক অপারেটর"
+
+# tithi
 msgid "Authorization dialog"
-msgstr "প্রাপ্তাধিকার দেওয়া হয়েছে"
-
-#, fuzzy
+msgstr "অনুমোদন ডায়ালগ"
+
 msgid "Error dialog"
-msgstr "ত্রুটি"
-
-#, fuzzy
+msgstr "ত্রুটি ডায়ালগ"
+
 msgid "Information dialog"
-msgstr "তথ্য"
+msgstr "তথ্য ডায়ালগ"
 
 msgid "Mail dialog"
-msgstr ""
-
-#, fuzzy
+msgstr "মেইল ডায়ালগ"
+
 msgid "Question dialog"
-msgstr "অনুরোধ সংলাপ"
-
-# tithi
-#, fuzzy
+msgstr "জিজ্ঞাসা ডায়ালগ"
+
+# tithi
 msgid "Warning dialog"
-msgstr "সতর্কতা স্তর"
+msgstr "সতর্কবানী ডায়ালগ"
 
 msgid "What kind of dialog is this?"
-msgstr ""
-
-#, fuzzy
+msgstr "এটি কি ধরণের ডায়ালগ?"
+
 msgid "Status Icons"
-msgstr "%s-এর জন্য অবস্থা"
-
-#, fuzzy
+msgstr "অবস্থা আইকন"
+
 msgid "Chatroom Emblems"
-msgstr "আড্ডা রুমের অবস্থা"
-
-#, fuzzy
+msgstr "আড্ডার আসরের প্রতীক"
+
 msgid "Dialog Icons"
-msgstr "আইকন পরিবর্তন করুন"
-
-#, fuzzy
+msgstr "ডায়ালগ আইকন"
+
 msgid "Pidgin Icon Theme Editor"
-msgstr "পিজিন GTK+ থীম নিয়ন্ত্রণ"
-
-#, fuzzy
+msgstr "পিজিন আইকন থীম সম্পাদক"
+
 msgid "Contact"
-msgstr "যোগাযোগের তথ্য"
-
-#, fuzzy
+msgstr "পরিচিতি"
+
 msgid "Pidgin Buddylist Theme Editor"
-msgstr "Buddy List"
-
-#, fuzzy
+msgstr "পিজিন বন্ধু তালিকার থীম সম্পাদক"
+
 msgid "Edit Buddylist Theme"
-msgstr "Buddy List"
+msgstr "বন্ধু তালিকার থীম সম্পাদনা"
 
 msgid "Edit Icon Theme"
-msgstr ""
+msgstr "আইকন থীম সম্পাদনা"
 
 #. *< type
 #. *< ui_requirement
@@ -15092,16 +14927,14 @@
 #. *< priority
 #. *< id
 #. *  description
-#, fuzzy
 msgid "Pidgin Theme Editor"
-msgstr "পিজিন GTK+ থীম নিয়ন্ত্রণ"
+msgstr "পিজিন থীম সম্পাদক"
 
 #. *< name
 #. *< version
 #. *  summary
-#, fuzzy
 msgid "Pidgin Theme Editor."
-msgstr "পিজিন GTK+ থীম নিয়ন্ত্রণ"
+msgstr "পিজিন থীম সম্পাদক।"
 
 #. *< type
 #. *< ui_requirement
@@ -15110,7 +14943,7 @@
 #. *< priority
 #. *< id
 msgid "Buddy Ticker"
-msgstr "বন্ধু চিহ্নিতকারী"
+msgstr "বন্ধু ফিতা"
 
 #. *< name
 #. *< version
@@ -15120,7 +14953,7 @@
 msgstr "বন্ধুতালিকার একটি অনুভূমিক স্ক্রলিং সংস্করণ।"
 
 msgid "Display Timestamps Every"
-msgstr "প্রত্যেক টাইমস্টাম্প প্রদর্শন করুন"
+msgstr "প্রতি টাইমস্ট্যাম্প প্রদর্শন "
 
 #. *< type
 #. *< ui_requirement
@@ -15136,37 +14969,37 @@
 #. *< version
 #. *  summary
 msgid "Display iChat-style timestamps"
-msgstr "আই-আড্ডা-শৈলীর টাইমস্ট্যাম্প প্রদর্শন করুন"
-
-# fix me 
+msgstr "iChat শৈলীর মতো টাইমস্ট্যাম্প প্রদর্শন করা হবে"
+
+# fix me
 #. *  description
 msgid "Display iChat-style timestamps every N minutes."
-msgstr "প্রতি N মিনিট পর আই-আড্ডা-শৈলীর টাইমস্ট্যাম্প প্রদর্শন করুন।"
+msgstr "প্রতি N মিনিট পর iChat শৈলীর মত টাইমস্ট্যাম্প প্রদর্শন করা হবে।"
 
 # tithi
 msgid "Timestamp Format Options"
-msgstr "টাইমস্ট্যাম্প বিন্যাসের পছন্দসমূহ"
+msgstr "টাইমস্ট্যাম্প বিন্যাসের অপশন"
 
 # tithi
 #, c-format
 msgid "_Force 24-hour time format"
-msgstr "২৪-ঘন্টার সময় বিন্যাস নির্ধারণ করুন (_F)"
+msgstr "২৪-ঘন্টা সময় বিন্যাস আরোপিত হবে (_F)"
 
 msgid "Show dates in..."
-msgstr "এ তারিখ প্রদর্শন করুন..."
+msgstr "তারিখ প্রদর্শন..."
 
 msgid "Co_nversations:"
 msgstr "কথোপকথন (_n):"
 
 msgid "For delayed messages"
-msgstr "বিলম্বিত বার্তাসমূহের জন্য"
+msgstr "বিলম্বিত বার্তার জন্য"
 
 # tithi
 msgid "For delayed messages and in chats"
-msgstr "বিলম্বিত বার্তাসমূহের জন্য এবং আড্ডায়"
+msgstr "বিলম্বিত বার্তার জন্য এবং আড্ডায়"
 
 msgid "_Message Logs:"
-msgstr "বার্তার কার্যবিবরণী (_M):"
+msgstr "বার্তার লগ (_M):"
 
 # tithi
 #. *< type
@@ -15176,14 +15009,14 @@
 #. *< priority
 #. *< id
 msgid "Message Timestamp Formats"
-msgstr "বার্তার টাইমস্ট্যাম্প বিন্যাসসমূহ"
+msgstr "বার্তার টাইমস্ট্যাম্প বিন্যাস"
 
 # tithi
 #. *< name
 #. *< version
 #. *  summary
 msgid "Customizes the message timestamp formats."
-msgstr "বার্তার টাইমস্টাম্প বিন্যাসসমূহ পছন্দসই বিন্যাস করে।"
+msgstr "বার্তার টাইমস্ট্যাম্পের বিন্যাস স্বনির্বাচন করতে সাহায্য করে।"
 
 # tithi
 #. *  description
@@ -15191,27 +15024,27 @@
 "This plugin allows the user to customize conversation and logging message "
 "timestamp formats."
 msgstr ""
-"এই প্লাগইন ব্য়বহারকারীকে কথোপকথন এবং যুক্তকরণ বার্তার টাইমস্টাম্প বিন্যাসসমূহ পছন্দসই "
-"বিন্যাস করার অনুমতি দেয়।"
+"এই প্লাগইন ব্যবহারকারীকে কথোপকথন এবং বার্তার টাইমস্টাম্পের বিন্যাস স্বনির্বাচন করার "
+"অনুমতি দেয়।"
 
 msgid "Opacity:"
-msgstr "জড়তা:"
+msgstr "অস্বচ্ছতা:"
 
 #. IM Convo trans options
 msgid "IM Conversation Windows"
-msgstr "তাৎক্ষণিক বার্তার কথোপকথন উইন্ডোজ"
+msgstr "IM কথোপকথনের উইন্ডো"
 
 msgid "_IM window transparency"
-msgstr "তাৎক্ষণিক বার্তা উইন্ডোর স্বচ্ছতা (_I)"
+msgstr "IM উইন্ডোর স্বচ্ছতা (_I)"
 
 msgid "_Show slider bar in IM window"
-msgstr "তাৎক্ষণিক বার্তার উইন্ডোতে স্লাইডার বার প্রদর্শন করুন (_S)"
+msgstr "IM উইন্ডোতে স্লাইডার বার প্রদর্শন করা হবে (_S)"
 
 msgid "Remove IM window transparency on focus"
-msgstr "ফোকাসে আইএম উইন্ডোর স্বচ্ছতা অপসারন করুন"
+msgstr "ফোকাস করলে IM উইন্ডোর স্বচ্ছতা অপসারন করা হবে"
 
 msgid "Always on top"
-msgstr "সব সময় উপরে"
+msgstr "সবসময় উপরে"
 
 #. Buddy List trans options
 msgid "Buddy List Window"
@@ -15221,7 +15054,7 @@
 msgstr "বন্ধু তালিকা উইন্ডোর স্বচ্ছতা (_B)"
 
 msgid "Remove Buddy List window transparency on focus"
-msgstr "ফোকাসে বন্ধু তালিকার উইন্ডোর স্বচ্ছতা অপসারণ করুন"
+msgstr "ফোকাস করলে বন্ধু তালিকার উইন্ডোর স্বচ্ছতা অপসারণ করা হবে"
 
 #. *< type
 #. *< ui_requirement
@@ -15236,7 +15069,7 @@
 #. *< version
 #. *  summary
 msgid "Variable Transparency for the buddy list and conversations."
-msgstr "বন্ধু তালিকা ও কথোপকথনের জন্য ভেরিয়েবল স্বচ্ছতা।"
+msgstr "বন্ধু তালিকা এবং কথোপকথনের পরিবর্তনশীল স্বচ্ছতা।"
 
 #. *  description
 msgid ""
@@ -15245,47 +15078,45 @@
 "\n"
 "* Note: This plugin requires Win2000 or greater."
 msgstr ""
-"এই প্লাগইন বন্ধু তালিকা এবং কথোপকথন উইন্ডোতে ভেরিয়েবল আলফা স্বচ্ছতা সক্রিয় করে।\n"
-"\n"
-"* নোট: এই প্লাগইন Win2000 বা অপেক্ষাকৃত প্রয়োজন।"
+"এই প্লাগইন বন্ধু তালিকা এবং কথোপকথন উইন্ডোতে পরিবর্তনশীল আলফা স্বচ্ছতা সক্রিয় করে।\n"
+"\n"
+"* নোট: এই প্লাগইনের জন্য Win2000 অথবা ততোধিক প্রয়োজন।"
 
 msgid "GTK+ Runtime Version"
-msgstr "GTK+ চলমান সংস্করণ"
+msgstr "GTK+ Runtime সংস্করণ"
 
 #. Autostart
 msgid "Startup"
-msgstr "সূচনা"
+msgstr "আরম্ভ"
 
 #, c-format
 msgid "_Start %s on Windows startup"
-msgstr "উইন্ডোজ শুরুর সময় %s কে চালু করুন (_S)"
+msgstr "উইন্ডোজ আরম্ভের সময় %s চালু করা হবে (_S)"
 
 msgid "_Dockable Buddy List"
 msgstr "ডকযোগ্য বন্ধু তালিকা (_D)"
 
 #. Blist On Top
 msgid "_Keep Buddy List window on top:"
-msgstr "বন্ধু তালিকার উইন্ডো উপরে রাখুন (_K):"
+msgstr "বন্ধু তালিকার উইন্ডো উপরে রাখা হবে (_K):"
 
 #. XXX: Did this ever work?
 msgid "Only when docked"
 msgstr "শুধুমাত্র যখন ডক করে"
 
 msgid "Windows Pidgin Options"
-msgstr "উইন্ডোজের পিজিন পছন্দসমূহ"
+msgstr "উইন্ডোজ পিজিনের অপশন"
 
 msgid "Options specific to Pidgin for Windows."
-msgstr "উইন্ডোজের জন্য পিজিনে উল্লেখিত পছন্দসমূহ।"
+msgstr "উইন্ডোজ পিজিনের জন্য সুনির্দিষ্ট অপশন।"
 
 # fix me
-#, fuzzy
 msgid ""
 "Provides options specific to Pidgin for Windows, such as buddy list docking."
-msgstr ""
-"উইন্ডোজের জন্য পিজিনে উল্লেখিত পছন্দগুলো প্রদান করে , যেমন বন্ধু তালিকা দেখানো।"
+msgstr "উইন্ডোজ পিজিনের জন্য সুনির্দিষ্ট অপশন প্রদান করে, যেমন বন্ধু তালিকা ডক করা।"
 
 msgid "<font color='#777777'>Logged out.</font>"
-msgstr "<font color='#777777'>লগ আউট হয়েছে।</font>"
+msgstr "<font color='#777777'>লগ আউট করেছে।</font>"
 
 #. *< type
 #. *< ui_requirement
@@ -15304,587 +15135,43 @@
 
 # tithi
 msgid "Insert an <iq/> stanza."
-msgstr "একটি <iq/> পংক্তি যুক্ত করুন।"
+msgstr "একটি <iq/> স্তবক প্রবেশ করান।"
 
 # tithi
 msgid "Insert a <presence/> stanza."
-msgstr "একটি <presence/> পংক্তি প্রবেশ করান।"
+msgstr "একটি <presence/> স্তবক প্রবেশ করান।"
 
 msgid "Insert a <message/> stanza."
-msgstr "একটি <message/> পংক্তি প্রবেশ করান।"
+msgstr "একটি <message/> স্তবক প্রবেশ করান।"
 
 # tithi
 #. *< name
 #. *< version
 #. *  summary
 msgid "Send and receive raw XMPP stanzas."
-msgstr "নতুন XMPP পংক্তিগুলো পাঠান এবং গ্রহণ করুন।"
+msgstr "নতুন XMPP স্তবক পাঠান এবং গ্রহণ করুন।"
 
 # tithi
 #. *  description
 msgid "This plugin is useful for debbuging XMPP servers or clients."
-msgstr "এই প্লাগিনটি XMPP সার্ভার বা ক্লায়েন্ট ডিবাগ করার জন্য কার্যকর।"
-
-#~ msgid "Cannot open socket"
-#~ msgstr "সকেট খোলা যাচ্ছে না"
-
-#~ msgid "Could not listen on socket"
-#~ msgstr "সকেট এ শোনা যাচ্ছে না"
-
-#~ msgid "Unable to read socket"
-#~ msgstr "সকেট পড়তে ব্যর্থ"
-
-#~ msgid "Connection failed."
-#~ msgstr "সংযোগ ব্যর্থ।"
-
-#~ msgid "Server has disconnected"
-#~ msgstr "সার্ভার বিচ্ছিন্ন হয়েছে"
-
-#~ msgid "Couldn't create socket"
-#~ msgstr "সকেট তৈরী করা যাচ্ছে না"
-
-#~ msgid "Couldn't connect to host"
-#~ msgstr "হোস্টের সাথে সংযুক্ত করা যাচ্ছে না"
-
-#~ msgid "Read error"
-#~ msgstr "পড়ায় ত্রুটি"
-
-#~ msgid ""
-#~ "Could not establish a connection with the server:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "সার্ভারের সাথে সংযোগ স্থাপন করতে পারে না:\n"
-#~ "%s"
-
-#~ msgid "Write error"
-#~ msgstr "লিখন ত্রুটি"
-
-# tithi
-#~ msgid "Last Activity"
-#~ msgstr "শেষ সক্রিয়তা"
-
-#~ msgid "Service Discovery Info"
-#~ msgstr "সেবা আবিষ্কারের তথ্য"
-
-# tithi
-#~ msgid "Service Discovery Items"
-#~ msgstr "সেবা আবিষ্কারের বিষয়োপকরনসমূহ"
-
-#~ msgid "Extended Stanza Addressing"
-#~ msgstr "বর্ধিত স্ট্যানজা উদ্দেশ করছে"
-
-#~ msgid "Multi-User Chat"
-#~ msgstr "একাধিক-ব্যবহারকারী সম্বলিত আড্ডা"
-
-#~ msgid "Multi-User Chat Extended Presence Information"
-#~ msgstr "একাধিক-ব্যবহারকারীর বর্ধিত উপস্থিতি তথ্য"
-
-# tithi
-#~ msgid "In-Band Bytestreams"
-#~ msgstr "In-Band বাইট-প্রবাহ"
-
-#~ msgid "Ad-Hoc Commands"
-#~ msgstr "Ad-Hoc নির্দেশসমূহ"
-
-# tithi
-#~ msgid "PubSub Service"
-#~ msgstr "PubSub সেবা"
-
-# tithi
-#~ msgid "SOCKS5 Bytestreams"
-#~ msgstr "SOCKS5 বাইট-প্রবাহ"
-
-# tithi
-#~ msgid "Out of Band Data"
-#~ msgstr "ব্যান্ড তথ্যের বাইরে"
-
-#~ msgid "XHTML-IM"
-#~ msgstr "XHTML-IM"
-
-#~ msgid "In-Band Registration"
-#~ msgstr "ইন ব্যান্ড নিবন্ধন"
-
-#~ msgid "User Location"
-#~ msgstr "ব্যবহারকারীর অবস্থান"
-
-# fix me tithi
-#~ msgid "User Avatar"
-#~ msgstr "ব্যবহারকারী অ্যাভাটার"
-
-#~ msgid "Chat State Notifications"
-#~ msgstr "আড্ডার অবস্থার প্রজ্ঞাপন"
-
-#~ msgid "Software Version"
-#~ msgstr "সফটওয়্যায় সংস্করণ"
-
-# fix me tithi
-#~ msgid "Stream Initiation"
-#~ msgstr "প্রবাহ শুরু করুন"
-
-#~ msgid "User Mood"
-#~ msgstr "ব্যবহাকারীরর পরিমন্ডল"
-
-#~ msgid "User Activity"
-#~ msgstr "ব্যবহারকারীর কাজকর্ম"
-
-# tithi
-#~ msgid "Entity Capabilities"
-#~ msgstr "সত্তার সক্ষমতা"
-
-# tithi
-#~ msgid "Encrypted Session Negotiations"
-#~ msgstr "সঙ্কেতায়িত অধিবেশনের আলোচনা"
-
-#~ msgid "User Tune"
-#~ msgstr "ব্যবহারকারীর সুর"
-
-# tithi
-#~ msgid "Roster Item Exchange"
-#~ msgstr "রোস্টার বিষয়োপকরণ পরিবর্তন করুন"
-
-#~ msgid "Reachability Address"
-#~ msgstr "পৌঁছানোর মতো ঠিকানা"
-
-#~ msgid "User Profile"
-#~ msgstr "ব্যবহারকারীর প্রোফাইল"
-
-#~ msgid "Jingle"
-#~ msgstr "ছন্দ"
-
-# tithi
-#~ msgid "Jingle Audio"
-#~ msgstr "ছন্দময় অডিও"
-
-#~ msgid "User Nickname"
-#~ msgstr "ব্যবহারকারীর ডাকনাম"
-
-# tithi
-#~ msgid "Jingle ICE UDP"
-#~ msgstr "ছন্দময় ICE UDP"
-
-# tithi
-#~ msgid "Jingle ICE TCP"
-#~ msgstr "ছন্দময়  ICE TCP"
-
-# tithi
-#~ msgid "Jingle Raw UDP"
-#~ msgstr "ছন্দময় Raw UDP"
-
-# tithi
-#~ msgid "Jingle Video"
-#~ msgstr "ছন্দময় ভিডিও"
-
-# tithi
-#~ msgid "Jingle DTMF"
-#~ msgstr "ছন্দময় DTMF"
-
-#~ msgid "Message Receipts"
-#~ msgstr "বার্তা গ্রহণ করা হয়েছে"
-
-#~ msgid "Public Key Publishing"
-#~ msgstr "সর্বসাধারণের কী প্রকাশ করা হচ্ছে"
-
-#~ msgid "User Chatting"
-#~ msgstr "ব্যবহারকারী আড্ডা দিচ্ছে"
-
-#~ msgid "User Browsing"
-#~ msgstr "ব্যবহাকারী ব্রাউজ করছে"
-
-#~ msgid "User Gaming"
-#~ msgstr "ব্যবহারকারীরা খেলছে"
-
-#~ msgid "User Viewing"
-#~ msgstr "ব্যবহারকারীরা দেখছে"
-
-# tithi
-#~ msgid "Stanza Encryption"
-#~ msgstr "স্ট্যানজা সঙ্কেতায়ন"
-
-# tithi
-#~ msgid "Entity Time"
-#~ msgstr "সত্ত্বার সময়"
-
-# tithi
-#~ msgid "Delayed Delivery"
-#~ msgstr "বিলম্বিত সরবরাহ"
-
-# tithi
-#~ msgid "Collaborative Data Objects"
-#~ msgstr "সহযোগি উপাত্ত অবজেক্ট"
-
-# tithi
-#~ msgid "File Repository and Sharing"
-#~ msgstr "ফাইল ভান্ডার এবং শেয়ার করছে"
-
-# tithi
-#~ msgid "STUN Service Discovery for Jingle"
-#~ msgstr "ছন্দময়তার জন্য STUN সেবা আবিষ্কার"
-
-# tithi
-#~ msgid "Simplified Encrypted Session Negotiation"
-#~ msgstr "সহজবোধ্য সঙ্কেতায়িত অধিবেশনের আলোচনা"
-
-# tithi
-#~ msgid "Hop Check"
-#~ msgstr "হপ পরীক্ষা করুন"
-
-#~ msgid "Read Error"
-#~ msgstr "পাঠ ত্রুটি"
-
-#~ msgid "Failed to connect to server."
-#~ msgstr "সার্ভারে সংযোগ দিতে ব্যর্থ হয়েছে।"
-
-# tithi
-#~ msgid "Read buffer full (2)"
-#~ msgstr "পাঠ বাফার পূর্ণ (২)"
-
-#~ msgid "Unparseable message"
-#~ msgstr "পার্স অযোগ্য বার্তা"
-
-#~ msgid "Couldn't connect to host: %s (%d)"
-#~ msgstr "হোস্টের সাথে সংযুক্ত করা যায়নি: %1s (%2d)"
-
-#~ msgid "Login failed (%s)."
-#~ msgstr "লগইন ব্যর্থ হয়েছে (%s)।"
+msgstr "এই প্লাগইনটি XMPP সার্ভার বা ক্লায়েন্ট ডিবাগ করার জন্য কার্যকর।"
+
+#~ msgid "Malformed BOSH Connect Server"
+#~ msgstr "ত্রুটিপূর্ণ BOSH সংযোগ সার্ভার"
+
+# tithi
+#~ msgid "Unable to not load SILC key pair"
+#~ msgstr "SILC কী যুগল লোড না করা সম্ভব হয়নি"
 
 # tithi
 #~ msgid ""
-#~ "You have been logged out because you logged in at another workstation."
-#~ msgstr "আপনাকে প্রস্থান করছেন কারণ আপনি অন্য একটি ওয়ার্ক-ষ্টেশনে সংযুক্ত হয়েছেন।"
-
-# tithi
-#~ msgid "Error. SSL support is not installed."
-#~ msgstr "ত্রুটি। SSL সমর্থন সংস্থাপিত নয়।"
-
-#~ msgid "Incorrect password."
-#~ msgstr "ভুল গুপ্তসংকেত।"
-
-#~ msgid ""
-#~ "Could not connect to BOS server:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "BOS সার্ভারের সাথে সংযুক্ত করা যায়নি:\n"
-#~ "%s"
-
-#~ msgid "You may be disconnected shortly.  Check %s for updates."
-#~ msgstr "আপনি সাময়িকভাবে বিচ্ছিন্ন থাকতে পারেন।  হালনাগাদের জন্য %s পরীক্ষা করুন।"
-
-#~ msgid "Could Not Connect"
-#~ msgstr "সংযোগ দিতে পারে না"
-
-#~ msgid "Invalid username."
-#~ msgstr "অবৈধ ব্যবহারকারীর নাম।"
-
-# fix me tithi
-#~ msgid "Could not decrypt server reply"
-#~ msgstr "সার্ভার জবাব অসঙ্কেতায়ন করতে পারেনি"
-
-#~ msgid "Connection lost"
-#~ msgstr "সংযোগ হারিয়ে গেছে"
-
-#~ msgid "Couldn't resolve host"
-#~ msgstr "হোস্ট সমাধান করা সম্ভব হয়নি"
-
-#~ msgid "Connection closed (writing)"
-#~ msgstr "সংযোগ বন্ধ করা হয়েছে (লিখছে)"
-
-#~ msgid "Connection reset"
-#~ msgstr "সংযোগ পুনরায় বিন্যাস করুন"
-
-#~ msgid "Error reading from socket: %s"
-#~ msgstr "সকেট থেকে পড়ায় ত্রুটি: %s"
-
-#~ msgid "Unable to connect to host"
-#~ msgstr "হোস্টের সাথে সংযোগে ব্যর্থ"
-
-#~ msgid "Could not write"
-#~ msgstr "লিখতে পারেনি"
-
-#~ msgid "Could not connect"
-#~ msgstr "সংযোগ দিতে পারেনি"
-
-# tithi
-#~ msgid "Could not create listen socket"
-#~ msgstr "শ্রবণ সকেট তৈরি করতে পারেনি"
-
-#~ msgid "Could not resolve hostname"
-#~ msgstr "হোস্ট-নাম স্থির করা হয়নি"
-
-#, fuzzy
-#~ msgid "Incorrect Password"
-#~ msgstr "ভুল গুপ্তসঙ্কেতে"
-
-#~ msgid ""
-#~ "Could not establish a connection with %s:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "%1s এর সাথে সংযোগ স্থাপন করতে পারেনি:\n"
-#~ "%2s"
-
-#~ msgid "Yahoo Japan"
-#~ msgstr "ইয়াহু জাপান"
-
-#~ msgid "Japan Pager server"
-#~ msgstr "জাপানী পেজার সার্ভার"
-
-#~ msgid "Japan file transfer server"
-#~ msgstr "জাপান ফাইল স্থানান্তর সার্ভার"
-
-#~ msgid ""
-#~ "Lost connection with server\n"
-#~ "%s"
-#~ msgstr ""
-#~ "সার্ভারের সাথে সংযোগ হারিয়েছে\n"
-#~ "%s"
-
-#~ msgid "Could not resolve host name"
-#~ msgstr "হোস্টের নাম স্থির করা হয়নি"
-
-# tithi
-#, fuzzy
-#~ msgid ""
-#~ "Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support "
-#~ "was found."
-#~ msgstr ""
-#~ "সার্ভারের লগইন করার জন্য TSL/SSL আবশ্যক,  কোনো TLS/SSL সমর্থন খুঁজে পাওয়া যায়নি।"
-
-#~ msgid "Conversation Window Hiding"
-#~ msgstr "কথোপকথন উইন্ডো লুকিয়ে ফেলছে"
-
-# tithi
-#~ msgid "More Data needed"
-#~ msgstr "আরও তথ্য প্রয়োজন"
-
-# tithi
-#~ msgid "Please provide a shortcut to associate with the smiley."
-#~ msgstr "অনুগ্রহ করে স্মাইলীর সাথে সম্পর্কিত করতে একটি শর্টকাট প্রদান করুন।"
-
-#~ msgid "Please select an image for the smiley."
-#~ msgstr "অনুগ্রহ করে স্মাইলীটির জন্য একটি চিত্র নির্বাচন করুন।"
-
-#~ msgid "Activate which ID?"
-#~ msgstr "কোন আইডি সক্রিয় করা হবে?"
-
-#~ msgid "Cursor Color"
-#~ msgstr "কার্সারের রং"
-
-#~ msgid "Secondary Cursor Color"
-#~ msgstr "গৌণ কার্সারের রং"
-
-#~ msgid "Interface colors"
-#~ msgstr "ইন্টারফেসের রং"
-
-# tithi
-#~ msgid "Widget Sizes"
-#~ msgstr "উইজেট আকারসমূহ"
-
-#~ msgid "Invite message"
-#~ msgstr "আমন্ত্রণ বার্তা"
-
-#~ msgid ""
-#~ "Please enter the name of the user you wish to invite,\n"
-#~ "along with an optional invite message."
+#~ "%s declined your conference invitation to room \"%s\" because \"%s\"."
 #~ msgstr ""
-#~ "একটি ঐচ্ছিক আমন্ত্রণ বার্তার সাথে,\n"
-#~ "অনুগ্রহ করে আপনি যে ব্যবহারকারীকে আমন্ত্রণ করতে চান তার নামটি প্রবেশ করান।"
-
-#~ msgid "Looking up %s"
-#~ msgstr "%s খোঁজা হচ্ছে"
-
-#~ msgid "Connect to %s failed"
-#~ msgstr "%s-এর সাথে সংযোগ দিতে ব্যর্থ হয়েছে"
-
-#~ msgid "Signon: %s"
-#~ msgstr "সাইনঅন: %s"
-
-#~ msgid "Unable to write file %s."
-#~ msgstr "%s ফাইলে লিখতে ব্যর্থ হয়েছে।"
-
-#~ msgid "Unable to read file %s."
-#~ msgstr "%s ফাইলে পড়তে ব্যর্থ হয়েছে।"
-
-# tithi
-#~ msgid "Message too long, last %s bytes truncated."
-#~ msgstr "বার্তাটি খুব দীর্ঘ, শেষ %s বাইট বাদ দেয়া হয়েছে।"
-
-# tithi
-#~ msgid "%s not currently logged in."
-#~ msgstr "%s বর্তমানে লগইন নেই।"
-
-# tithi
-#~ msgid "Warning of %s not allowed."
-#~ msgstr "%s এর সতর্কতা অনুমোদিত নয়।"
-
-# tithi
-#~ msgid ""
-#~ "A message has been dropped, you are exceeding the server speed limit."
-#~ msgstr "একটি বার্তা বাদ দেয়া হয়েছে, আপনি সার্ভারের গতি সীমা অতিক্রম করছেন।"
-
-#~ msgid "Chat in %s is not available."
-#~ msgstr "%s-এ আড্ডা সহজলভ্য নয়।"
-
-#~ msgid "You are sending messages too fast to %s."
-#~ msgstr "আপনি %s এ খুব দ্রুত বার্তা পাঠাচ্ছেন।"
-
-# tithi
-#~ msgid "You missed an IM from %s because it was too big."
-#~ msgstr "আপনি %s থেকে একটি তাৎক্ষণিক বার্তা পাননি কারণ এটি খুব বড় ছিল।"
-
-# tithi
-#~ msgid "You missed an IM from %s because it was sent too fast."
-#~ msgstr ""
-#~ "আপনি %s থেকে একটি তাৎক্ষণিক বার্তা পাননি কারণ এটি খুব দ্রুত পাঠানো হয়েছিল।"
-
-#~ msgid "Failure."
-#~ msgstr "ব্যর্থতা।"
-
-# tithi
-#~ msgid "Too many matches."
-#~ msgstr "অনেক বেশি মিল।"
-
-# tithi
-#~ msgid "Need more qualifiers."
-#~ msgstr "আরও নিয়ন্ত্রণকারী প্রয়োজন।"
-
-#~ msgid "Dir service temporarily unavailable."
-#~ msgstr "নির্দেশিকা সেবা সাময়িকভাবে অপ্রাপ্য"
-
-# tithi
-#~ msgid "Email lookup restricted."
-#~ msgstr "ই-মেইল অনুসন্ধান নিষিদ্ধ।"
-
-# tithi
-#~ msgid "Keyword ignored."
-#~ msgstr "মূল-শব্দ অগ্রাহ্য করা হয়েছে।"
-
-#~ msgid "No keywords."
-#~ msgstr "কোনো মূল-শব্দ নেই।"
-
-#~ msgid "User has no directory information."
-#~ msgstr "ব্যবহারকারীর কোনো নির্দেশিকা তথ্য নেই।"
-
-#~ msgid "Country not supported."
-#~ msgstr "দেশটি সমর্থিত নয়।"
-
-#~ msgid "Failure unknown: %s."
-#~ msgstr "ব্যর্থতা অজানা: %s।"
-
-#~ msgid "Incorrect username or password."
-#~ msgstr "ভুল ব্যবহারকারীর-নাম বা গুপ্তসংকেত।"
-
-# tithi
-#~ msgid "The service is temporarily unavailable."
-#~ msgstr "সেবাটি সাময়িকভাবে অপ্রাপ্য।"
-
-# tithi
-#~ msgid "Your warning level is currently too high to log in."
-#~ msgstr "আপনার সতর্কতা স্তর লগইন করার জন্য বর্তমানে খুব উচ্চ।"
-
-# tithi
-#~ msgid ""
-#~ "You have been connecting and disconnecting too frequently.  Wait ten "
-#~ "minutes and try again.  If you continue to try, you will need to wait "
-#~ "even longer."
-#~ msgstr ""
-#~ "আপনি প্রায়সই সংযুক্ত এবং বিচ্ছিন্ন হচ্ছেন।  দশ মিনিট অপেক্ষা করুন এবং পুনরায় চেষ্টা "
-#~ "করুন। আপনি যদি চেষ্টা অব্যাহত রাখেন, আপনাকে দীর্ঘ সময় অপেক্ষা করতে হতে পারে।"
-
-# tithi
-#~ msgid "An unknown signon error has occurred: %s."
-#~ msgstr "একটি অজানা সাইনঅন ত্রুটি সংঘটিত হয়েছে: %s।"
-
-#  tithi
-#~ msgid "An unknown error, %d, has occurred.  Info: %s"
-#~ msgstr "একটি অজানা ত্রুটি, %d, সংঘটিত হয়েছে।  তথ্য: %s"
-
-# tithi
-#~ msgid "Invalid Groupname"
-#~ msgstr "অবৈধ গ্রুপনাম"
-
-#~ msgid "Connection Closed"
-#~ msgstr "সংযোগ বন্ধ করা হয়েছে "
-
-#~ msgid "Waiting for reply..."
-#~ msgstr "উত্তরের অপেক্ষায়..."
-
-# tithi
-#~ msgid "TOC has come back from its pause. You may now send messages again."
-#~ msgstr "TOC পুনরায় সচল হয়েছে। আপনি এখন পুনরায় বার্তা পাঠাতে পারেন।"
-
-#~ msgid "Password Change Successful"
-#~ msgstr "গুপ্তসংকেত পরিবর্তন সফল হয়েছে"
-
-#~ msgid "Get Dir Info"
-#~ msgstr "নির্দেশিকা তথ্য গ্রহণ করুন"
-
-#~ msgid "Set Dir Info"
-#~ msgstr "নির্দেশিকা তথ্য নির্ধারণ করুন"
-
-# tithi
-#~ msgid "Could not open %s for writing!"
-#~ msgstr "লেখার জন্য %s খুলতে পারেনি!"
-
-# tithi
-#~ msgid "File transfer failed; other side probably canceled."
-#~ msgstr "ফাইল স্থানান্তর ব্যর্থ হয়েছে; অন্য দিক সম্ভবত বাতিল হয়েছে।"
-
-# tithi
-#~ msgid "Could not connect for transfer."
-#~ msgstr "স্থানান্তরের জন্য সংযোগ করতে পারেনি।"
-
-# tithi
-#~ msgid "Could not write file header.  The file will not be transferred."
-#~ msgstr "ফাইল শিরোনাম লিখতে পারেনি।  ফাইল স্থানান্তর করা হবে না।"
-
-#~ msgid "Save As..."
-#~ msgstr "এভাবে সংরক্ষণ করুন..."
-
-# tithi
-#~ msgid "%s requests %s to accept %d file: %s (%.2f %s)%s%s"
-#~ msgid_plural "%s requests %s to accept %d files: %s (%.2f %s)%s%s"
-#~ msgstr[0] ""
-#~ " %1s %2s-কে  %3d ফাইলটি গ্রহণ করতে অনুরোধ করে: %4s (%.2f %5s)%6s%7s"
-#~ msgstr[1] "%1s %2s-কে %3d ফাইলসমূহ গ্রহণ করতে অনুরোধ করে: %4s (%.2f %5s)%6s%7s"
-
-#~ msgid "%s requests you to send them a file"
-#~ msgstr "%s আপনাকে একটি ফাইল পাঠাতে অনুরোধ করেছেন"
-
-#~ msgid "TOC Protocol Plugin"
-#~ msgstr "TOC প্রটোকল প্লাগইন"
-
-#~ msgid "%s Options"
-#~ msgstr "%s পছন্দসমূহ"
-
-#~ msgid "Proxy Options"
-#~ msgstr "প্রক্সির পছন্দসমূহ"
-
-#~ msgid "By log size"
-#~ msgstr "লগের আকার অনুসারে"
-
-#~ msgid "_Open Link in Browser"
-#~ msgstr "ব্রাউজারে লিঙ্ক খুলুন (_O)"
-
-#~ msgid "ST_UN server:"
-#~ msgstr "STUN সার্ভার (_U):"
-
-#~ msgid "Smiley _Image"
-#~ msgstr "স্মাইলীর চিত্র (_I)"
-
-# tithi
-#~ msgid "Smiley S_hortcut"
-#~ msgstr "স্মাইলীর শর্টকাট (_S)"
-
-#~ msgid "Unable to retrieve MSN Address Book"
-#~ msgstr "MSN ঠিকানা বই পুনরূদ্ধারে ব্যর্থ হয়েছে"
-
-# fix me
-#~ msgid "_Flash window when chat messages are received"
-#~ msgstr "আড্ডার বার্তাসমূহ গ্রহণ করলে উইন্ডো ফ্ল্যাশ দিন (_F)"
-
-# tithi
-#~ msgid ""
-#~ "You may be disconnected shortly.  You may want to use TOC until this is "
-#~ "fixed.  Check %s for updates."
-#~ msgstr ""
-#~ "আপনি সাময়িকভাবে বিচ্ছিন্ন থাকতে পারেন।  আপনি সূচি নির্ধারণ না করা পর্যন্ত এটি "
-#~ "ব্যবহার করতে চাইতে পারেন। হালনাগাদের জন্য %s পরীক্ষা করুন।"
+#~ "\"%3$s\" এর কারণে \"%2$s\" আসরে %1$s আপনার অধিবেশনের আমন্ত্রণ প্রত্যাখ্যান "
+#~ "করেছেন।"
+
+#~ msgid "Invitation Rejected"
+#~ msgstr "আমন্ত্রন প্রত্যাখ্যান করা হয়েছে"
+
+#~ msgid "Cannot open socket"
+#~ msgstr "সকেট খোলা যাচ্ছে না"
--- a/po/cs.po	Sat Jul 25 05:14:27 2009 +0000
+++ b/po/cs.po	Sun Jul 26 22:18:59 2009 +0900
@@ -9,8 +9,8 @@
 msgstr ""
 "Project-Id-Version: pidgin VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-06 15:04-0700\n"
-"PO-Revision-Date: 2009-02-22 14:43+0100\n"
+"POT-Creation-Date: 2009-07-22 13:37-0700\n"
+"PO-Revision-Date: 2009-07-21 21:04+0100\n"
 "Last-Translator: David Vachulka <david@konstrukce-cad.com>\n"
 "Language-Team: Czech <cs@li.org>\n"
 "MIME-Version: 1.0\n"
@@ -860,12 +860,11 @@
 msgid "System Log"
 msgstr "Systémový záznam"
 
-#, fuzzy
 msgid "Calling ... "
-msgstr "Počítám..."
+msgstr "Volání ..."
 
 msgid "Hangup"
-msgstr ""
+msgstr "Zavěsit"
 
 #. Number of actions
 msgid "Accept"
@@ -875,25 +874,24 @@
 msgstr "Odmítnout"
 
 msgid "Call in progress."
-msgstr ""
+msgstr "Hovor probíhá."
 
 msgid "The call has been terminated."
-msgstr ""
+msgstr "Hovor byl ukončen."
 
 #, c-format
 msgid "%s wishes to start an audio session with you."
-msgstr ""
+msgstr "%s chce spustit audio sezení s vámi."
 
 #, c-format
 msgid "%s is trying to start an unsupported media session type with you."
-msgstr ""
-
-#, fuzzy
+msgstr "%s se pokouší spustit multimediální sezení s nepodporovaným typem."
+
 msgid "You have rejected the call."
-msgstr "Opustili jste kanál%s%s"
+msgstr "Odmítnul jste volání."
 
 msgid "call: Make an audio call."
-msgstr ""
+msgstr "call: Vytvořit audio hovor."
 
 msgid "Emails"
 msgstr "Emaily"
@@ -1549,22 +1547,23 @@
 "\n"
 "Fetching TinyURL..."
 msgstr ""
+"\n"
+"Získávání TinyURL..."
 
 msgid "Only create TinyURL for urls of this length or greater"
-msgstr ""
+msgstr "Vytvořit TinyURL pro url této délky a delší"
 
 msgid "TinyURL (or other) address prefix"
-msgstr ""
-
-#, fuzzy
+msgstr "Předpona TinyURL (nebo jiných) adres"
+
 msgid "TinyURL"
-msgstr "URL"
+msgstr "TinyURL"
 
 msgid "TinyURL plugin"
-msgstr ""
+msgstr "Zásuvný modul TinyURL"
 
 msgid "When receiving a message with URL(s), TinyURL for easier copying"
-msgstr ""
+msgstr "Při zprávě s URL, TinyURL pro snadnější kopírování"
 
 msgid "accounts"
 msgstr "účty"
@@ -1678,6 +1677,7 @@
 msgstr ""
 "Certifikát \"%s\" je podepsán sám sebou. Nemůže být automaticky zkontrolován."
 
+#. FIXME 2.6.1
 #, c-format
 msgid "The certificate chain presented for %s is not valid."
 msgstr "Certifikační řetěz pro %s je neplatný."
@@ -1687,6 +1687,7 @@
 #. stifle it.
 #. TODO: Probably wrong.
 #. TODO: Probably wrong
+#. TODO: Probably wrong.
 msgid "SSL Certificate Error"
 msgstr "SSL chyba certifikátu"
 
@@ -1764,7 +1765,6 @@
 msgstr "+++ %s se odhlásil"
 
 #. Unknown error
-#. Unknown error!
 msgid "Unknown error"
 msgstr "Neznámá chyba"
 
@@ -1811,9 +1811,8 @@
 msgid "%s left the room (%s)."
 msgstr "%s opustil místnost (%s)."
 
-#, fuzzy
 msgid "Invite to chat"
-msgstr "Pozvat ke konferenci"
+msgstr "Pozvat k chatu"
 
 #. Put our happy label in it.
 msgid ""
@@ -1954,6 +1953,10 @@
 msgstr "Začínám přenos %s od %s"
 
 #, c-format
+msgid "Transfer of file <A HREF=\"file://%s\">%s</A> complete"
+msgstr "Přenos souboru <A HREF=\"file://%s\">%s</A> dokončen"
+
+#, c-format
 msgid "Transfer of file %s complete"
 msgstr "Přenos souboru %s dokončen"
 
@@ -2162,9 +2165,8 @@
 msgid "(%s) %s <AUTO-REPLY>: %s\n"
 msgstr "(%s) %s <AUTO-ODPOVĚĎ>: %s\n"
 
-#, fuzzy
 msgid "Error creating conference."
-msgstr "Chyba vytváření spojení"
+msgstr "Chyba při vytváření konference."
 
 #, c-format
 msgid "You are using %s, but this plugin requires %s."
@@ -2565,7 +2567,6 @@
 msgstr "Zahrnuje záznamy jiných klientů IM v prohlížeči záznamů."
 
 #. * description
-#, fuzzy
 msgid ""
 "When viewing logs, this plugin will include logs from other IM clients. "
 "Currently, this includes Adium, MSN Messenger, aMSN, and Trillian.\n"
@@ -2574,7 +2575,7 @@
 "at your own risk!"
 msgstr ""
 "Při prohlížení záznamů tento zásuvný modul přidá záznamy z jiných klientů "
-"IM. Momentálně se to týká Adium, MSN Messenger a Trillian.\n"
+"IM. Momentálně se to týká Adium, MSN Messenger, aMSN a Trillian.\n"
 "\n"
 "VAROVÁNÍ: Tento zásuvný modul je ještě alfa kód a může často padat. "
 "Používejte jej na své vlastní nebezpečí!"
@@ -2622,7 +2623,6 @@
 msgid "Save messages sent to an offline user as pounce."
 msgstr "Uložit zprávy poslané odpojeným uživatelům jako sledování."
 
-#, fuzzy
 msgid ""
 "The rest of the messages will be saved as pounces. You can edit/delete the "
 "pounce from the `Buddy Pounce' dialog."
@@ -2656,9 +2656,8 @@
 msgid "Do not ask. Always save in pounce."
 msgstr "Neptat se. Vždy uložit do sledování."
 
-#, fuzzy
 msgid "One Time Password"
-msgstr "Zadejte heslo"
+msgstr "Jednorázové heslo"
 
 #. *< type
 #. *< ui_requirement
@@ -2667,13 +2666,13 @@
 #. *< priority
 #. *< id
 msgid "One Time Password Support"
-msgstr ""
+msgstr "Podpora jednorázového hesla"
 
 #. *< name
 #. *< version
 #. *  summary
 msgid "Enforce that passwords are used only once."
-msgstr ""
+msgstr "Vynutit použití hesel jednorázově."
 
 #. *  description
 msgid ""
@@ -2681,6 +2680,9 @@
 "are only used in a single successful connection.\n"
 "Note: The account password must not be saved for this to work."
 msgstr ""
+"Umožňuje vynutit, že hesla, která nejsou uložena, jsou použita jen pro jedno "
+"připojení.\n"
+"Poznámka: Heslo účtu nemusí být uloženo."
 
 #. *< type
 #. *< ui_requirement
@@ -2874,17 +2876,15 @@
 "Nemohu detekovat instalaci ActiveTCL. Pokud chcete používat zásuvné moduly "
 "TCL, nainstalujte ActiveTCL z http://www.activestate.com\n"
 
-#, fuzzy
 msgid ""
 "Unable to find Apple's \"Bonjour for Windows\" toolkit, see http://d.pidgin."
 "im/BonjourWindows for more information."
 msgstr ""
-"Apple Bonjour pro Windows toolkit nebyl nalezen, viz FAQ: http://d.pidgin.im/"
+"Apple Bonjour for Windows toolkit nebyl nalezen, viz http://d.pidgin.im/"
 "BonjourWindows pro další informace."
 
-#, fuzzy
 msgid "Unable to listen for incoming IM connections"
-msgstr "Nemohu poslouchat příchozí spojení IM\n"
+msgstr "Nemohu poslouchat příchozí spojení IM"
 
 msgid ""
 "Unable to establish connection with the local mDNS server.  Is it running?"
@@ -2922,9 +2922,8 @@
 msgstr "Osoba Purple"
 
 #. Creating the options for the protocol
-#, fuzzy
 msgid "Local Port"
-msgstr "Lokalita"
+msgstr "Lokální port"
 
 msgid "Bonjour"
 msgstr "Bonjour"
@@ -2936,21 +2935,17 @@
 msgid "Unable to send the message, the conversation couldn't be started."
 msgstr "Nemohu odeslat zprávu, konverzaci nelze spustit."
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to create socket: %s"
-msgstr ""
-"Nemohu vytvořit socket:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "Nemohu vytvořit socket: %s"
+
+#, c-format
 msgid "Unable to bind socket to port: %s"
-msgstr "Nemohu připojit socket k portu"
-
-#, fuzzy, c-format
+msgstr "Nemohu připojit socket k portu: %s"
+
+#, c-format
 msgid "Unable to listen on socket: %s"
-msgstr ""
-"Nemohu vytvořit socket:\n"
-"%s"
+msgstr "Nemohu poslouchat na soketu: %s"
 
 msgid "Error communicating with local mDNSResponder."
 msgstr "Chyba při komunikaci s lokálním mDNSResponderem."
@@ -2999,17 +2994,14 @@
 msgid "Load buddylist from file..."
 msgstr "Načíst seznam kamarádů ze serveru..."
 
-#, fuzzy
 msgid "You must fill in all registration fields"
-msgstr "Vyplňte pole pro registraci."
-
-#, fuzzy
+msgstr "Vyplňte všechna pole pro registraci"
+
 msgid "Passwords do not match"
-msgstr "Hesla nesouhlasí."
-
-#, fuzzy
+msgstr "Hesla nesouhlasí"
+
 msgid "Unable to register new account.  An unknown error occurred."
-msgstr "Nemohu zaregistrovat nový účet. Došlo k chybě.\n"
+msgstr "Nemohu zaregistrovat nový účet. Došlo k neznámé chybě."
 
 msgid "New Gadu-Gadu Account Registered"
 msgstr "Nový účet Gadu-Gadu zaregistrován"
@@ -3024,11 +3016,10 @@
 msgstr "Heslo (znovu)"
 
 msgid "Enter captcha text"
-msgstr ""
-
-#, fuzzy
+msgstr "Vložta text z obrázku"
+
 msgid "Captcha"
-msgstr "Captcha obrázek"
+msgstr "Captcha"
 
 msgid "Register New Gadu-Gadu Account"
 msgstr "Zaregistrovat nový účet Gadu-Gadu"
@@ -3167,9 +3158,9 @@
 msgid "Chat _name:"
 msgstr "_Název chatu:"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to resolve hostname '%s': %s"
-msgstr "Nemohu se připojit k serveru."
+msgstr "Nemohu vyřešit hostname '%s': %s"
 
 #. 1. connect to server
 #. connect to the server
@@ -3182,9 +3173,8 @@
 msgid "This chat name is already in use"
 msgstr "Tento název chatu se již používá"
 
-#, fuzzy
 msgid "Not connected to the server"
-msgstr "Nepřipojen k serveru."
+msgstr "Nepřipojen k serveru"
 
 msgid "Find buddies..."
 msgstr "Hledat kamarády..."
@@ -3225,9 +3215,8 @@
 msgid "Gadu-Gadu User"
 msgstr "Uživatel Gadu-Gadu"
 
-#, fuzzy
 msgid "GG server"
-msgstr "Získávám server"
+msgstr "GG server"
 
 #, c-format
 msgid "Unknown command: %s"
@@ -3243,7 +3232,6 @@
 msgid "File Transfer Failed"
 msgstr "Přenos souborů selhal"
 
-#, fuzzy
 msgid "Unable to open a listening port."
 msgstr "Nemohu otevřít poslouchající port."
 
@@ -3267,11 +3255,9 @@
 #.
 #. TODO: what to do here - do we really have to disconnect?
 #. TODO: do we really want to disconnect on a failure to write?
-#, fuzzy, c-format
+#, c-format
 msgid "Lost connection with server: %s"
-msgstr ""
-"Ztraceno spojení se serverem:\n"
-"%s"
+msgstr "Ztraceno spojení se serverem: %s"
 
 msgid "View MOTD"
 msgstr "Zobrazit MOTD"
@@ -3282,9 +3268,8 @@
 msgid "_Password:"
 msgstr "_Heslo:"
 
-#, fuzzy
 msgid "IRC nick and server may not contain whitespace"
-msgstr "Přezdívky IRC nemohou obsahovat mezery"
+msgstr "Přezdívky IRC a jméno serveru nemohou obsahovat mezery"
 
 msgid "SSL support unavailable"
 msgstr "Podpora SSL není k dispozici"
@@ -3293,11 +3278,11 @@
 msgstr "Nemohu se připojit"
 
 #. this is a regular connect, error out
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to connect: %s"
-msgstr "Nemohu se připojit k %s"
-
-#, fuzzy, c-format
+msgstr "Nemohu připojit: %s"
+
+#, c-format
 msgid "Server closed the connection"
 msgstr "Server zavřel spojení."
 
@@ -3483,13 +3468,12 @@
 #. We only want to do the following dance if the connection
 #. has not been successfully completed.  If it has, just
 #. notify the user that their /nick command didn't go.
-#, fuzzy, c-format
+#, c-format
 msgid "The nickname \"%s\" is already being used."
-msgstr "Tento název chatu se již používá"
-
-#, fuzzy
+msgstr "Přezdívka \"%s\" se již používá"
+
 msgid "Nickname in use"
-msgstr "Přezdívka"
+msgstr "Přezdívka se používá"
 
 msgid "Cannot change nick"
 msgstr "Nemohu změnit přezdívku"
@@ -3730,13 +3714,11 @@
 msgid "execute"
 msgstr "spustit"
 
-#, fuzzy
 msgid "Server requires TLS/SSL, but no TLS/SSL support was found."
-msgstr "Server pro přihlášení vyžaduje SSL. Nebyla nalezena podpora TLS/SSL."
-
-#, fuzzy
+msgstr "Server vyžaduje TLS/SSL, ale podpora TLS/SSL nebyla nalezena."
+
 msgid "You require encryption, but no TLS/SSL support was found."
-msgstr "Požadujete šifrování,ale nebyla nalezena podpora TLS/SSL."
+msgstr "Požadujete šifrování, ale nebyla nalezena podpora TLS/SSL."
 
 msgid "Server requires plaintext authentication over an unencrypted stream"
 msgstr "Server vyžaduje textovou autentizaci v nešifrovaném proudu"
@@ -3752,13 +3734,11 @@
 msgid "Plaintext Authentication"
 msgstr "Textová autentizace"
 
-#, fuzzy
 msgid "SASL authentication failed"
-msgstr "Autentizace selhala"
-
-#, fuzzy
+msgstr "SASL autentizace selhala"
+
 msgid "Invalid response from server"
-msgstr "Neplatná odpověď od serveru."
+msgstr "Neplatná odpověď od serveru"
 
 msgid "Server does not use any supported authentication method"
 msgstr "Server nepoužívá žádnou podporovanou metodu autentizace"
@@ -3769,36 +3749,28 @@
 msgid "Invalid challenge from server"
 msgstr "Neplatná výzva od serveru"
 
-#, fuzzy, c-format
+#, c-format
 msgid "SASL error: %s"
-msgstr "Chyba SASL"
+msgstr "Chyba SASL: %s"
 
 msgid "The BOSH connection manager terminated your session."
-msgstr ""
-
-#, fuzzy
+msgstr "Správce připojení BOSH ukončil sezení."
+
 msgid "No session ID given"
-msgstr "Neudán žádný důvod"
-
-#, fuzzy
+msgstr "Neudáno ID sezení"
+
 msgid "Unsupported version of BOSH protocol"
-msgstr "Nepodporovaná verze"
-
-#, fuzzy
+msgstr "Nepodporovaná verze BOSH protokolu"
+
 msgid "Unable to establish a connection with the server"
-msgstr ""
-"Nemohu navázat spojení se serverem:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "Nemohu navázat spojení se serverem"
+
+#, c-format
 msgid "Unable to establish a connection with the server: %s"
-msgstr ""
-"Nemohu navázat spojení se serverem:\n"
-"%s"
-
-#, fuzzy
+msgstr "Nemohu navázat spojení se serverem: %s"
+
 msgid "Unable to establish SSL connection"
-msgstr "Nemohu inicializovat spojení"
+msgstr "Nemohu navázat SSL spojení"
 
 msgid "Full Name"
 msgstr "Celé jméno"
@@ -3865,9 +3837,8 @@
 msgid "Operating System"
 msgstr "Operační systém"
 
-#, fuzzy
 msgid "Local Time"
-msgstr "Místní soubor:"
+msgstr "Místní čas"
 
 msgid "Priority"
 msgstr "Priorita"
@@ -3877,11 +3848,10 @@
 
 #, c-format
 msgid "%s ago"
-msgstr ""
-
-#, fuzzy
+msgstr "před %s"
+
 msgid "Logged Off"
-msgstr "Přihlášen"
+msgstr "Odhlášen"
 
 msgid "Middle Name"
 msgstr "Prostřední jméno"
@@ -4049,26 +4019,22 @@
 msgid "Find Rooms"
 msgstr "Hledat místnosti"
 
-#, fuzzy
 msgid "Affiliations:"
-msgstr "Alias:"
-
-#, fuzzy
+msgstr "Vztahy:"
+
 msgid "No users found"
-msgstr "Nenalezen žádný odpovídající uživatel"
-
-#, fuzzy
+msgstr "Uživatelé nebyli nalezeni"
+
 msgid "Roles:"
-msgstr "Role"
-
-#, fuzzy
+msgstr "Role:"
+
 msgid "Ping timed out"
 msgstr "Ping timeout"
 
 msgid ""
 "Unable to find alternative XMPP connection methods after failing to connect "
 "directly."
-msgstr ""
+msgstr "Nemohu najít alternativní XMPP připojení po selhání přímého spojení."
 
 msgid "Invalid XMPP ID"
 msgstr "Neplatné ID XMPP"
@@ -4076,9 +4042,8 @@
 msgid "Invalid XMPP ID. Domain must be set."
 msgstr "Neplatné ID XMPP. Musí být nastavena doména."
 
-#, fuzzy
 msgid "Malformed BOSH URL"
-msgstr "Nemohu se připojit k serveru."
+msgstr "Zdeformovaný BOSH URL"
 
 #, c-format
 msgid "Registration of %s@%s successful"
@@ -4146,10 +4111,6 @@
 msgid "Change Registration"
 msgstr "Změnit registraci"
 
-#, fuzzy
-msgid "Malformed BOSH Connect Server"
-msgstr "Nemohu se připojit k serveru."
-
 msgid "Error unregistering account"
 msgstr "Chyba zrušení registrace účtu"
 
@@ -4435,19 +4396,21 @@
 msgid "Unable to ping user %s"
 msgstr "Nemohu pingnout uživatele %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to buzz, because there is nothing known about %s."
-msgstr "Nemohu budit, protože není nic známo o uživateli %s."
-
-#, fuzzy, c-format
+msgstr "Nemohu budit, protože není nic známo o %s."
+
+#, c-format
 msgid "Unable to buzz, because %s might be offline."
-msgstr "Nemohu budit, protože  uživatel %s je asi odpojen."
-
-#, fuzzy, c-format
+msgstr "Nemohu budit, protože %s je asi odpojen."
+
+#, c-format
 msgid ""
 "Unable to buzz, because %s does not support it or does not wish to receive "
 "buzzes now."
-msgstr "Nemohu vzbudit, protože uživatel %s to nepodporuje."
+msgstr ""
+"Nemohu vzbudit, protože %s to nepodporuje nebo si buzení teď nepřeje "
+"dostávat."
 
 #, c-format
 msgid "Buzzing %s..."
@@ -4462,34 +4425,33 @@
 msgid "%s has buzzed you!"
 msgstr "%s vás budí!"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to initiate media with %s: invalid JID"
-msgstr "Nemohu odeslat zprávu k %s, neplatné JID"
-
-#, fuzzy, c-format
+msgstr "Nemohu inicializovat multimédia s %s: neplatné JID"
+
+#, c-format
 msgid "Unable to initiate media with %s: user is not online"
-msgstr "Nemohu odeslat soubor %s, uživatel není připojen"
-
-#, fuzzy, c-format
+msgstr "Nemohu inicializovat multimédia s %s: uživatel není online"
+
+#, c-format
 msgid "Unable to initiate media with %s: not subscribed to user presence"
-msgstr "Nemohu odeslat soubor %s, nepřihlášen k přítomnosti uživatele"
-
-#, fuzzy
+msgstr ""
+"Nemohu inicializovat multimédia s %s: nepřihlášen k přítomnosti uživatele"
+
 msgid "Media Initiation Failed"
-msgstr "Registrace selhala"
-
-#, fuzzy, c-format
+msgstr "Selhala inicializace multimédia"
+
+#, c-format
 msgid ""
 "Please select the resource of %s with which you would like to start a media "
 "session."
-msgstr "Zvolte prosím zdroj %s, kterému chcete odeslat soubor"
+msgstr "Zvolte prosím zdroj %s s kterým chcete začít multimediální sezení."
 
 msgid "Select a Resource"
 msgstr "Zvolte zdroj"
 
-#, fuzzy
 msgid "Initiate Media"
-msgstr "Začít _chat"
+msgstr "Inicializovat multimédia"
 
 msgid "config:  Configure a chat room."
 msgstr "config: Nastavit místnost chatu."
@@ -4509,21 +4471,19 @@
 msgid "ban &lt;user&gt; [reason]:  Ban a user from the room."
 msgstr "ban &lt;uživatel&gt; [důvod]: Zakázat uživateli přístup do místnosti."
 
-#, fuzzy
 msgid ""
 "affiliate &lt;owner|admin|member|outcast|none&gt; [nick1] [nick2] ...: Get "
 "the users with an affiliation or set users' affiliation with the room."
 msgstr ""
-"affiliate &lt;uživatel&gt; &lt;owner|admin|member|outcast|none&gt;: Nastavit "
-"uživatelův vztah k místnosti."
-
-#, fuzzy
+"affiliate &lt;owner|admin|member|outcast|none&gt; [nick1] [nick2] ...: "
+"Získat uživatele se vytahem nebo nastavit uživatelův vztah k místnosti."
+
 msgid ""
 "role &lt;moderator|participant|visitor|none&gt; [nick1] [nick2] ...: Get the "
 "users with an role or set users' role with the room."
 msgstr ""
-"role &lt;uživatel&gt; &lt;moderator|participant|visitor|none&gt;: Nastavit "
-"uživatelovu roli v místnosti."
+"role &lt;moderator|participant|visitor|none&gt; [nick1] [nick2] ...: Získat "
+"uživatelovu roli nebo nastavit uživatelovu roli v místnosti."
 
 msgid "invite &lt;user&gt; [message]:  Invite a user to the room."
 msgstr "invite &lt;uživatel&gt; [zpráva]: Pozvat uživatele do místnosti."
@@ -4586,7 +4546,7 @@
 msgstr "Proxy přenosu souborů"
 
 msgid "BOSH URL"
-msgstr ""
+msgstr "BOSH URL"
 
 #. this should probably be part of global smiley theme settings later on,
 #. shared with MSN
@@ -4650,32 +4610,28 @@
 msgid "_Accept Defaults"
 msgstr "_Přijmout implicitní"
 
-#, fuzzy
 msgid "No reason"
-msgstr "Neudán žádný důvod"
-
-#, fuzzy, c-format
+msgstr "Žádný důvod"
+
+#, c-format
 msgid "You have been kicked: (%s)"
-msgstr "Byli jste vykopnuti z %s: (%s)"
-
-#, fuzzy, c-format
+msgstr "Byl jste vykopnut: (%s)"
+
+#, c-format
 msgid "Kicked (%s)"
-msgstr "Vykopnut od %s: (%s)"
-
-#, fuzzy
+msgstr "Vykopnut (%s)"
+
 msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "Při otevírání souboru došlo k chybě."
-
-#, fuzzy
+msgstr "Chyba při in-band bytestream přenosu\n"
+
 msgid "Transfer was closed."
-msgstr "Přenos souborů selhal"
-
-#, fuzzy
+msgstr "Přenos byl ukončen."
+
 msgid "Failed to open the file"
-msgstr "Nemohu otevřít soubor '%s': %s"
+msgstr "Nemohu otevřít soubor"
 
 msgid "Failed to open in-band bytestream"
-msgstr ""
+msgstr "Selhalo otevření in-band bytestreamu"
 
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
@@ -4995,9 +4951,25 @@
 msgid "Non-IM Contacts"
 msgstr "Ne-IM kontakty"
 
-#, fuzzy, c-format
+#, c-format
+msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>"
+msgstr "%s poslal mrknutí. <a href='msn-wink://%s'>Tady si ho přehrajte</a>"
+
+#, c-format
+msgid "%s sent a wink, but it could not be saved"
+msgstr "%s poslal mrknutí, ale to nemohlo být uloženo"
+
+#, c-format
+msgid "%s sent a voice clip. <a href='audio://%s'>Click here to play it</a>"
+msgstr "%s poslal hlasový klip. <a href='audio://%s'>Tady si ho přehrajte</a>"
+
+#, c-format
+msgid "%s sent a voice clip, but it could not be saved"
+msgstr "%s vám poslal zvukový klip, ale ten nemůže být uložen"
+
+#, c-format
 msgid "%s sent you a voice chat 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 hlasovému chatu, který není podporováno."
 
 msgid "Nudge"
 msgstr "Šťouchnutí"
@@ -5151,6 +5123,29 @@
 "Pro MSN je potřeba podpora SSL. Nainstalujte prosím podporovanou knihovnu "
 "SSL."
 
+#, c-format
+msgid ""
+"Unable to add the buddy %s because the username is invalid.  Usernames must "
+"be a valid email address."
+msgstr ""
+"Nemohu přidat kamaráda %s, protože jméno uživatele není platné. Jméno "
+"uživatele musí být platná emailová adresa."
+
+msgid "Unable to Add"
+msgstr "Nemohu přidat"
+
+msgid "Authorization Request Message:"
+msgstr "Zpráva požadavku na autorizaci"
+
+msgid "Please authorize me!"
+msgstr "Autorizujte mě prosím!"
+
+#. *
+#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
+#.
+msgid "_OK"
+msgstr "_Budiž"
+
 msgid "Error retrieving profile"
 msgstr "Chyba při získávání profilu"
 
@@ -5342,13 +5337,14 @@
 msgid "%s just sent you a Nudge!"
 msgstr "%s vám právě poslal šťouchnutí!"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unknown error (%d): %s"
-msgstr "Neznámá chyba (%d)"
+msgstr "Neznámá chyba (%d): %s"
 
 msgid "Unable to add user"
 msgstr "Nemohu přidat uživatele"
 
+#. Unknown error!
 #, c-format
 msgid "Unknown error (%d)"
 msgstr "Neznámá chyba (%d)"
@@ -5420,25 +5416,21 @@
 "Chyba spojení od serveru %s:\n"
 "%s"
 
-#, fuzzy
 msgid "Our protocol is not supported by the server"
-msgstr "Server nepodporuje náš protokol."
-
-#, fuzzy
+msgstr "Server nepodporuje náš protokol"
+
 msgid "Error parsing HTTP"
-msgstr "Chyba při zpracovávání HTTP."
-
-#, fuzzy
+msgstr "Chyba při zpracovávání HTTP"
+
 msgid "You have signed on from another location"
-msgstr "Přihlásili jste se z jiného umístění."
+msgstr "Přihlásili jste se z jiného umístění"
 
 msgid "The MSN servers are temporarily unavailable. Please wait and try again."
 msgstr ""
 "Servery MSN dočasně nejsou dostupné. Počkejte prosím a zkuste to znovu."
 
-#, fuzzy
 msgid "The MSN servers are going down temporarily"
-msgstr "Servery MSN se dočasně vypínají."
+msgstr "Servery MSN se dočasně vypínají"
 
 #, c-format
 msgid "Unable to authenticate: %s"
@@ -5468,9 +5460,10 @@
 msgid "Retrieving buddy list"
 msgstr "Získávám seznam kamarádů"
 
-#, fuzzy, c-format
+#, c-format
 msgid "%s requests to view your webcam, but this request 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 požadavek k zobrazení kamery, což ještě není podporováno."
 
 #, c-format
 msgid "%s has sent you a webcam invite, which is not yet supported."
@@ -5666,15 +5659,15 @@
 msgid "Protocol error, code %d: %s"
 msgstr "Chyba protokolu, kód %d: %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s Your password is %zu characters, which is longer than the maximum length "
 "of %d.  Please shorten your password at http://profileedit.myspace.com/index."
 "cfm?fuseaction=accountSettings.changePassword and try again."
 msgstr ""
-"%s vaše heslo má %d znaků, což je více než maximum %d pro MySpaceIM. Prosím "
-"zkraťte vaše heslo na http://profileedit.myspace.com/index.cfm?"
-"fuseaction=accountSettings. Změnte heslo a zkuste znovu."
+"%s vaše heslo je %zu znaků, což je více než maximum %d. Prosím zkraťte vaše "
+"heslo na http://profileedit.myspace.com/index.cfm?fuseaction=accountSettings."
+"changePassword a zkuste znovu."
 
 msgid "Incorrect username or password"
 msgstr "Nesprávné jméno uživatele nebo heslo"
@@ -5769,14 +5762,14 @@
 msgid "Client Version"
 msgstr "Verze klienta"
 
-#, fuzzy
 msgid ""
 "An error occurred while trying to set the username.  Please try again, or "
 "visit http://editprofile.myspace.com/index.cfm?fuseaction=profile.username "
 "to set your username."
 msgstr ""
-"Jděte prosím na http://editprofile.myspace.com/index.cfm?fuseaction=profile."
-"username, zvolte jméno uživatele, a zkuste se přihlásit znovu."
+"Chyba při pokusu nastavit uživatelské jméno. Zkuste to znovu nebo jděte na "
+"http://editprofile.myspace.com/index.cfm?fuseaction=profile.username a "
+"nastavte jméno uživatele."
 
 msgid "MySpaceIM - Username Available"
 msgstr "MySpaceIM - jméno uživatele dostupné"
@@ -6034,9 +6027,9 @@
 msgid "Unknown error: 0x%X"
 msgstr "Neznámá chyba: 0x%X"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to login: %s"
-msgstr "Nemohu se přihlásit"
+msgstr "Nemohu se přihlásit: %s"
 
 #, c-format
 msgid "Unable to send message. Could not get details for user (%s)."
@@ -6166,7 +6159,6 @@
 "%s appears to be offline and did not receive the message that you just sent."
 msgstr "%s je zřejmě odpojen a nedostal zprávu, kterou jste právě odeslali."
 
-#, fuzzy
 msgid ""
 "Unable to connect to server. Please enter the address of the server to which "
 "you wish to connect."
@@ -6196,9 +6188,8 @@
 msgid "Server port"
 msgstr "Port serveru"
 
-#, fuzzy
 msgid "Received unexpected response from "
-msgstr "Přijata neočekávaná odpověď HTTP od serveru."
+msgstr "Přijata neočekávaná odpověď od"
 
 #. username connecting too frequently
 msgid ""
@@ -6208,12 +6199,12 @@
 "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."
 
-#, fuzzy, c-format
+#, c-format
 msgid "Error requesting "
-msgstr "Chyba při žádání o přihlašovací token"
+msgstr "Chyba žádosti"
 
 msgid "AOL does not allow your screen name to authenticate here"
-msgstr ""
+msgstr "AOL neumožňuje ověřit jméno tady"
 
 msgid "Could not join chat room"
 msgstr "Nemohu se připojit k chatu"
@@ -6221,9 +6212,8 @@
 msgid "Invalid chat room name"
 msgstr "Neplatný název místnosti"
 
-#, fuzzy
 msgid "Received invalid data on connection with server"
-msgstr "Na spojení se serverem přijata neplatná data."
+msgstr "Na spojení se serverem přijata neplatná data"
 
 #. *< type
 #. *< ui_requirement
@@ -6270,7 +6260,6 @@
 msgid "Received invalid data on connection with remote user."
 msgstr "Při spojení se vzdáleným uživatelem přijata neplatná data."
 
-#, fuzzy
 msgid "Unable to establish a connection with the remote user."
 msgstr "Nemohu navázat spojení se vzdáleným uživatelem."
 
@@ -6470,15 +6459,13 @@
 msgid "Buddy Comment"
 msgstr "Poznámka o kamarádovi"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to connect to authentication server: %s"
-msgstr ""
-"Nemohu se připojit k autentizačnímu serveru:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "Nemohu se připojit k autentizačnímu serveru: %s"
+
+#, c-format
 msgid "Unable to connect to BOS server: %s"
-msgstr "Nemohu se připojit k serveru."
+msgstr "Nemohu se připojit k BOS serveru: %s"
 
 msgid "Username sent"
 msgstr "Jméno uživatele posláno"
@@ -6490,16 +6477,15 @@
 msgid "Finalizing connection"
 msgstr "Dokončuji spojení"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Unable to sign on as %s because the username is invalid.  Usernames must be "
 "a valid email address, or start with a letter and contain only letters, "
 "numbers and spaces, or contain only numbers."
 msgstr ""
-"Nemohu se přihlásit: Nemohu se přihlásit jako %s, protože jméno uživatele "
-"není platné. Jméno 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."
+"Nemohu se přihlásit jako %s, protože jméno uživatele není platné. Jméno "
+"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."
 
 #, c-format
 msgid "You may be disconnected shortly.  If so, check %s for updates."
@@ -6518,36 +6504,33 @@
 #. Unregistered username
 #. uid is not exist
 #. the username does not exist
-#, fuzzy
 msgid "Username does not exist"
 msgstr "Uživatel neexistuje"
 
 #. Suspended account
-#, fuzzy
 msgid "Your account is currently suspended"
-msgstr "Váš účet je momentálně suspendován."
+msgstr "Váš účet je momentálně suspendován"
 
 #. service temporarily unavailable
 msgid "The AOL Instant Messenger service is temporarily unavailable."
 msgstr "Služba AOL Instant Messenger je dočasně nedostupná."
 
+#. client too old
 #, c-format
 msgid "The client version you are using is too old. Please upgrade at %s"
 msgstr ""
 "Verze klienta, kterou používáte, je příliš stará. Aktualizujte prosím na %s"
 
 #. IP address connecting too frequently
-#, fuzzy
 msgid ""
 "You have been connecting and disconnecting too frequently. Wait a minute and "
 "try again. If you continue to try, you will need to wait even longer."
 msgstr ""
-"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."
-
-#, fuzzy
+"Připojovali a odpojovali jste se příliš často. Počkejte minutu a zkuste to "
+"znovu. Pokud to budete dále zkoušet, budete muset čekat ještě déle."
+
 msgid "The SecurID key entered is invalid"
-msgstr "Zadaný klíč SecurID není platný."
+msgstr "Zadaný klíč SecurID není platný"
 
 msgid "Enter SecurID"
 msgstr "Zadejte SecurID"
@@ -6555,12 +6538,6 @@
 msgid "Enter the 6 digit number from the digital display."
 msgstr "Zadejte šesticiferné číslo z digitálního displeje."
 
-#. *
-#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
-#.
-msgid "_OK"
-msgstr "_Budiž"
-
 msgid "Password sent"
 msgstr "Heslo odesláno"
 
@@ -6571,12 +6548,6 @@
 msgstr ""
 "Autorizujte mě prosím, abych vás mohl přidat do svého seznamu kamarádů."
 
-msgid "Authorization Request Message:"
-msgstr "Zpráva požadavku na autorizaci"
-
-msgid "Please authorize me!"
-msgstr "Autorizujte mě prosím!"
-
 msgid "No reason given."
 msgstr "Neudán žádný důvod."
 
@@ -6923,7 +6894,7 @@
 msgid "Away message too long."
 msgstr "Zpráva o nepřítomnosti příliš dlouhá."
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Unable to add the buddy %s because the username is invalid.  Usernames must "
 "be a valid email address, or start with a letter and contain only letters, "
@@ -6933,9 +6904,6 @@
 "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 "Unable to Add"
-msgstr "Nemohu přidat"
-
 msgid "Unable to Retrieve Buddy List"
 msgstr "Nemohu získat seznam kamarádů"
 
@@ -6949,7 +6917,7 @@
 msgid "Orphans"
 msgstr "Sirotci"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Unable to add the buddy %s because you have too many buddies in your buddy "
 "list.  Please remove one and try again."
@@ -6960,7 +6928,7 @@
 msgid "(no name)"
 msgstr "(žádné jméno)"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to add the buddy %s for an unknown reason."
 msgstr "Nemohu přidat kamaráda %s z neznámého důvodu."
 
@@ -7120,9 +7088,8 @@
 msgid "Search for Buddy by Information"
 msgstr "Hledat kamaráda podle informací"
 
-#, fuzzy
 msgid "Use clientLogin"
-msgstr "Uživatel není přihlášen"
+msgstr "Použít clientLogin"
 
 msgid ""
 "Always use AIM/ICQ proxy server for\n"
@@ -7320,30 +7287,26 @@
 msgstr "Poznámka"
 
 #. callback
-#, fuzzy
 msgid "Buddy Memo"
-msgstr "Ikona kamaráda"
+msgstr "Poznámka kamaráda"
 
 msgid "Change his/her memo as you like"
-msgstr ""
-
-#, fuzzy
+msgstr "Změňte jeho/její poznámku podle sebe"
+
 msgid "_Modify"
-msgstr "Změnit"
-
-#, fuzzy
+msgstr "_Změnit"
+
 msgid "Memo Modify"
-msgstr "Změnit"
-
-#, fuzzy
+msgstr "Úprava poznámky"
+
 msgid "Server says:"
-msgstr "Server zaneprázdněn"
+msgstr "Server říká:"
 
 msgid "Your request was accepted."
-msgstr ""
+msgstr "Požadavek byl přijat."
 
 msgid "Your request was rejected."
-msgstr ""
+msgstr "Požadavek byl odmítnut."
 
 #, c-format
 msgid "%u requires verification"
@@ -7653,12 +7616,11 @@
 msgid "<p><b>Acknowledgement</b>:<br>\n"
 msgstr "<p><b>Potvrzení</b>:<br>\n"
 
-#, fuzzy
 msgid "<p><b>Scrupulous Testers</b>:<br>\n"
-msgstr "<p><b>Originální autor</b>:<br>\n"
+msgstr "<p><b>Svědomitý testeři</b>:<br>\n"
 
 msgid "and more, please let me know... thank you!))"
-msgstr ""
+msgstr "a další, prosím dejte mi vědět... děkuji!))"
 
 msgid "<p><i>And, all the boys in the backroom...</i><br>\n"
 msgstr "<p><i>A všichni v pozadí...</i><br>\n"
@@ -7685,9 +7647,8 @@
 msgid "About OpenQ"
 msgstr "O OpenQ"
 
-#, fuzzy
 msgid "Modify Buddy Memo"
-msgstr "Změnit adresu"
+msgstr "Změnit poznámku kamaráda"
 
 #. *< type
 #. *< ui_requirement
@@ -7735,7 +7696,6 @@
 msgid "Update interval (seconds)"
 msgstr "Interval updatu (v sekundách)"
 
-#, fuzzy
 msgid "Unable to decrypt server reply"
 msgstr "Nemohu dešifrovat odpověď serveru"
 
@@ -7803,9 +7763,8 @@
 msgid "Requesting token"
 msgstr "Požadavek symbolu"
 
-#, fuzzy
 msgid "Unable to resolve hostname"
-msgstr "Nemohu se připojit k serveru."
+msgstr "Nemohu vyřešit jméno hosta"
 
 msgid "Invalid server or port"
 msgstr "Neplatný server nebo port"
@@ -7858,7 +7817,6 @@
 msgid "QQ Qun Command"
 msgstr "QQ Qun příkaz"
 
-#, fuzzy
 msgid "Unable to decrypt login reply"
 msgstr "Nemohu dešifrovat přihlašovací odpověď"
 
@@ -8839,7 +8797,6 @@
 msgid "Disconnected by server"
 msgstr "Odpojen serverem"
 
-#, fuzzy
 msgid "Error connecting to SILC Server"
 msgstr "Chyba při připojování se k serveru SILC"
 
@@ -8855,7 +8812,6 @@
 msgid "Performing key exchange"
 msgstr "Provádím výměnu klíčů"
 
-#, fuzzy
 msgid "Unable to load SILC key pair"
 msgstr "Nemohu načíst pár klíčů SILC"
 
@@ -8863,14 +8819,9 @@
 msgid "Connecting to SILC Server"
 msgstr "Připojuji se k serveru SILC"
 
-#, fuzzy
-msgid "Unable to not load SILC key pair"
-msgstr "Nemohu načíst pár klíčů SILC"
-
 msgid "Out of memory"
 msgstr "Nedostatek paměti"
 
-#, fuzzy
 msgid "Unable to initialize SILC protocol"
 msgstr "Nemohu inicializovat protokol SILC"
 
@@ -9165,9 +9116,8 @@
 msgid "Creating SILC key pair..."
 msgstr "Vytvářím pár klíčů SILC..."
 
-#, fuzzy
 msgid "Unable to create SILC key pair"
-msgstr "Nemohu vytvořit pár klíčů SILC\n"
+msgstr "Nemohu vytvořit pár klíčů SILC"
 
 #. Hint for translators: Please check the tabulator width here and in
 #. the next strings (short strings: 2 tabs, longer strings 1 tab,
@@ -9303,27 +9253,24 @@
 msgid "Failure: Authentication failed"
 msgstr "Chyba: Autentizace selhala"
 
-#, fuzzy
 msgid "Unable to initialize SILC Client connection"
 msgstr "Nemohu inicializovat připojení klienta SILC"
 
 msgid "John Noname"
 msgstr "Jan Anonym"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to load SILC key pair: %s"
 msgstr "Nemohu načíst pár klíčů SILC: %s"
 
 msgid "Unable to create connection"
 msgstr "Nemohu vytvořit spojení"
 
-#, fuzzy
 msgid "Unknown server response"
-msgstr "Neznámá odpověď serveru."
-
-#, fuzzy
+msgstr "Neznámá odpověď serveru"
+
 msgid "Unable to create listen socket"
-msgstr "Nemohu vytvořit socket"
+msgstr "Nemohu vytvořit naslouchací socket"
 
 msgid "SIP usernames may not contain whitespaces or @ symbols"
 msgstr "Jména uživatelů SIP nemohou obsahovat mezery ani symboly @"
@@ -9386,9 +9333,8 @@
 #. *< version
 #. *  summary
 #. *  description
-#, fuzzy
 msgid "Yahoo! Protocol Plugin"
-msgstr "Zásuvný modul protokolu Yahoo"
+msgstr "Zásuvný modul protokolu Yahoo!"
 
 msgid "Pager server"
 msgstr "Server pageru"
@@ -9417,9 +9363,8 @@
 msgid "Yahoo Chat port"
 msgstr "Port Yahoo Chat"
 
-#, fuzzy
 msgid "Yahoo JAPAN ID..."
-msgstr "Yahoo ID..."
+msgstr "Yahoo JAPAN ID..."
 
 #. *< type
 #. *< ui_requirement
@@ -9431,12 +9376,11 @@
 #. *< version
 #. *  summary
 #. *  description
-#, fuzzy
 msgid "Yahoo! JAPAN Protocol Plugin"
-msgstr "Zásuvný modul protokolu Yahoo"
+msgstr "Zásuvný modul protokolu Yahoo! JAPAN"
 
 msgid "Your SMS was not delivered"
-msgstr ""
+msgstr "Vaše SMS nebyla doručena"
 
 msgid "Your Yahoo! message did not get sent."
 msgstr "Vaše zpráva Yahoo! nebyla odeslána."
@@ -9462,28 +9406,27 @@
 msgstr "Přidání kamaráda zamítnuto"
 
 #. Some error in the received stream
-#, fuzzy
 msgid "Received invalid data"
-msgstr "Na spojení se serverem přijata neplatná data."
+msgstr "Přijata neplatná data"
 
 #. security lock from too many failed login attempts
-#, fuzzy
 msgid ""
 "Account locked: Too many failed login attempts.  Logging into the Yahoo! "
 "website may fix this."
-msgstr "Neznámá chyba číslo %d. Přihlášení se na WWW Yahoo! to možná opraví."
+msgstr ""
+"Účet uzamčen: Příliš mnoho pokusů o přihlášení. Přihlášení na Yahoo! stránku "
+"to může vyřešit."
 
 #. indicates a lock of some description
-#, fuzzy
 msgid ""
 "Account locked: Unknown reason.  Logging into the Yahoo! website may fix "
 "this."
-msgstr "Neznámá chyba číslo %d. Přihlášení se na WWW Yahoo! to možná opraví."
+msgstr ""
+"Účet uzamčen: Neznámý důvod. Přihlášení na Yahoo! stránku to může vyřešit."
 
 #. username or password missing
-#, fuzzy
 msgid "Username or password missing"
-msgstr "Nesprávné jméno uživatele nebo heslo"
+msgstr "Chybí jméno uživatele nebo heslo"
 
 #, c-format
 msgid ""
@@ -9515,11 +9458,10 @@
 msgid "Unknown error number %d. Logging into the Yahoo! website may fix this."
 msgstr "Neznámá chyba číslo %d. Přihlášení se na WWW Yahoo! to možná opraví."
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to add buddy %s to group %s to the server list on account %s."
 msgstr "Nemohu přidat kamaráda %s do skupiny %s do seznamu serveru na účtu %s."
 
-#, fuzzy
 msgid "Unable to add buddy to server list"
 msgstr "Nemohu přidat kamaráda do seznamu na serveru"
 
@@ -9527,21 +9469,16 @@
 msgid "[ Audible %s/%s/%s.swf ] %s"
 msgstr "[ Slyšitelné %s/%s/%s.swf ] %s"
 
-#, fuzzy
 msgid "Received unexpected HTTP response from server"
-msgstr "Přijata neočekávaná odpověď HTTP od serveru."
-
-#, fuzzy, c-format
+msgstr "Přijata neočekávaná odpověď HTTP od serveru"
+
+#, c-format
 msgid "Lost connection with %s: %s"
-msgstr ""
-"Ztraceno spojení s %s:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "Ztraceno spojení s %s: %s"
+
+#, c-format
 msgid "Unable to establish a connection with %s: %s"
-msgstr ""
-"Nemohu navázat spojení se serverem:\n"
-"%s"
+msgstr "Nemohu navázat spojení s %s: %s"
 
 msgid "Not at Home"
 msgstr "Nejsem doma"
@@ -9589,7 +9526,7 @@
 msgstr "Začít kreslit"
 
 msgid "Select the ID you want to activate"
-msgstr ""
+msgstr "Vyberte ID, které chcete aktivovat"
 
 msgid "Join whom in chat?"
 msgstr "Připojit koho k chatu?"
@@ -9692,12 +9629,8 @@
 msgstr "Profil uživatele je prázdný."
 
 #, c-format
-msgid "%s declined your conference invitation to room \"%s\" because \"%s\"."
-msgstr ""
-"%s odmítl vaše pozvání ke konferenci do místnosti \"%s\", protože \"%s\"."
-
-msgid "Invitation Rejected"
-msgstr "Pozvání odmítnuto"
+msgid "%s has declined to join."
+msgstr "%s nepřijal připojení."
 
 msgid "Failed to join chat"
 msgstr "Nemohu se připojit k chatu"
@@ -9749,9 +9682,8 @@
 msgid "User Rooms"
 msgstr "Místnosti uživatele"
 
-#, fuzzy
 msgid "Connection problem with the YCHT server"
-msgstr "Problém se spojením k servery YCHT."
+msgstr "Problém se spojením k serveru YCHT"
 
 msgid ""
 "(There was an error converting this message.\t Check the 'Encoding' option "
@@ -9881,17 +9813,17 @@
 msgid "Exposure"
 msgstr "Vystavení"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to parse response from HTTP proxy: %s"
-msgstr "Nemohu zpracovat odpověď od HTTP proxy: %s\n"
+msgstr "Nemohu zpracovat odpověď od HTTP proxy: %s"
 
 #, c-format
 msgid "HTTP proxy connection error %d"
 msgstr "Chyba připojení k HTTP proxy %d"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Access denied: HTTP proxy server forbids port %d tunneling"
-msgstr "Přístup odepřen: HTTP proxy server zakazuje tunelování portu %d."
+msgstr "Přístup odepřen: HTTP proxy server zakazuje tunelování portu %d"
 
 #, c-format
 msgid "Error resolving %s"
@@ -10141,12 +10073,12 @@
 msgid "Error Reading %s"
 msgstr "Chyba při čtení %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "An error was encountered reading your %s.  The file has not been loaded, and "
 "the old file has been renamed to %s~."
 msgstr ""
-"Při čtení vašeho %s došlo k chybě. Nebylo načteno a starý soubor byl "
+"Při čtení vašeho %s došlo k chybě. Nebyl načten a starý soubor byl "
 "přejmenován na %s~."
 
 msgid "Internet Messenger"
@@ -10191,7 +10123,7 @@
 msgid "Use this buddy _icon for this account:"
 msgstr "Používat pro tento účet tuto _ikonu kamaráda:"
 
-msgid "_Advanced"
+msgid "Ad_vanced"
 msgstr "_Pokročilé"
 
 msgid "Use GNOME Proxy Settings"
@@ -10255,9 +10187,8 @@
 msgid "Create _this new account on the server"
 msgstr "Vytvořit _tento nový účet na serveru"
 
-#, fuzzy
-msgid "_Proxy"
-msgstr "Proxy"
+msgid "P_roxy"
+msgstr "P_roxy"
 
 msgid "Enabled"
 msgstr "Povoleno"
@@ -10306,9 +10237,8 @@
 msgid "Please update the necessary fields."
 msgstr "Aktualizujte prosím potřebná pole."
 
-#, fuzzy
 msgid "A_ccount"
-msgstr "Účet:"
+msgstr "Úč_et"
 
 msgid ""
 "Please enter the appropriate information about the chat you would like to "
@@ -10336,16 +10266,14 @@
 msgid "I_M"
 msgstr "I_M"
 
-#, fuzzy
 msgid "_Audio Call"
-msgstr "_Přidat chat"
+msgstr "_Audio rozhovor"
 
 msgid "Audio/_Video Call"
-msgstr ""
-
-#, fuzzy
+msgstr "Audio/_Video rozhovor"
+
 msgid "_Video Call"
-msgstr "Video Chat"
+msgstr "_Video rozhovor"
 
 msgid "_Send File..."
 msgstr "_Odeslat soubor..."
@@ -10356,11 +10284,9 @@
 msgid "View _Log"
 msgstr "Zobrazit záz_nam"
 
-#, fuzzy
 msgid "Hide When Offline"
 msgstr "Skrýt při odpojení"
 
-#, fuzzy
 msgid "Show When Offline"
 msgstr "Zobrazit při odpojení"
 
@@ -10486,9 +10412,8 @@
 msgid "/Tools/_Certificates"
 msgstr "/Nástroje/_Certifikáty"
 
-#, fuzzy
 msgid "/Tools/Custom Smile_ys"
-msgstr "/Nástroje/Smajlíky"
+msgstr "/Nástroje/Uživatelské smajlíky"
 
 msgid "/Tools/Plu_gins"
 msgstr "/Nástroje/_Zásuvné moduly"
@@ -10618,7 +10543,7 @@
 msgstr "Podle stavu"
 
 msgid "By recent log activity"
-msgstr ""
+msgstr "Podle nedávné aktivity záznamu"
 
 #, c-format
 msgid "%s disconnected"
@@ -10635,7 +10560,7 @@
 msgstr "Znovu povolit"
 
 msgid "SSL FAQs"
-msgstr ""
+msgstr "SSL FAQ"
 
 msgid "Welcome back!"
 msgstr "Vítej zpět!"
@@ -10764,111 +10689,96 @@
 msgid "Background Color"
 msgstr "Barva pozadí"
 
-#, fuzzy
 msgid "The background color for the buddy list"
-msgstr "Tato skupina byla přidána do vašeho seznamu kamarádů"
-
-#, fuzzy
+msgstr "Barva pozadí seznamu kamarádů"
+
 msgid "Layout"
-msgstr "Laonština"
+msgstr "Rozvržení"
 
 msgid "The layout of icons, name, and status of the blist"
-msgstr ""
+msgstr "Rozvržení ikon, jmen a stavů na seznamu kamarádů"
 
 #. Group
-#, fuzzy
 msgid "Expanded Background Color"
-msgstr "Barva pozadí"
+msgstr "Barva pozadí rozbaleného"
 
 msgid "The background color of an expanded group"
-msgstr ""
-
-#, fuzzy
+msgstr "Barva pozadí rozbalené skupiny"
+
 msgid "Expanded Text"
-msgstr "_Rozbalit"
+msgstr "Rozbalený text"
 
 msgid "The text information for when a group is expanded"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace při rozbalení skupiny"
+
 msgid "Collapsed Background Color"
-msgstr "Vyberte barvu pozadí"
+msgstr "Barvu pozadí sbaleného"
 
 msgid "The background color of a collapsed group"
-msgstr ""
-
-#, fuzzy
+msgstr "Barva pozadí sbalené skupiny"
+
 msgid "Collapsed Text"
-msgstr "_Sbalit"
+msgstr "Sbalený text"
 
 msgid "The text information for when a group is collapsed"
-msgstr ""
+msgstr "Text informace při sbalení skupiny"
 
 #. Buddy
-#, fuzzy
 msgid "Contact/Chat Background Color"
-msgstr "Vyberte barvu pozadí"
+msgstr "Barvu pozadí kontaktu/chatu"
 
 msgid "The background color of a contact or chat"
-msgstr ""
-
-#, fuzzy
+msgstr "Barva pozadí kontaktu nebo chatu"
+
 msgid "Contact Text"
-msgstr "Klávesová zkratka"
+msgstr "Text kontaktu"
 
 msgid "The text information for when a contact is expanded"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace při rozbalení kontaktu"
+
 msgid "On-line Text"
-msgstr "Připojen"
+msgstr "Text při přítomen"
 
 msgid "The text information for when a buddy is online"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace, když je kamarád přítomen"
+
 msgid "Away Text"
-msgstr "Pryč"
+msgstr "Text pryč"
 
 msgid "The text information for when a buddy is away"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace, když je kamarád pryč"
+
 msgid "Off-line Text"
-msgstr "Odpojen"
+msgstr "Text pro odpojen"
 
 msgid "The text information for when a buddy is off-line"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace, když je kamarád odpojen"
+
 msgid "Idle Text"
-msgstr "Text nálady"
+msgstr "Text nečinnosti"
 
 msgid "The text information for when a buddy is idle"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace, když je kamarád nečinný"
+
 msgid "Message Text"
-msgstr "Zpráva odeslána"
+msgstr "Text zprávy"
 
 msgid "The text information for when a buddy has an unread message"
-msgstr ""
+msgstr "Text informace, když má kamarád nepřečtenou zprávu"
 
 msgid "Message (Nick Said) Text"
-msgstr ""
+msgstr "Text zprávy (uživatel jmenován)"
 
 msgid ""
 "The text information for when a chat has an unread message that mentions "
 "your nick"
-msgstr ""
-
-#, fuzzy
+msgstr "Text informace, když je v chatu zpráva s tvojí přezdívkou"
+
 msgid "The text information for a buddy's status"
-msgstr "Změnit informace o uživateli %s"
-
-#, fuzzy
+msgstr "Text informace pro stav kamaráda"
+
 msgid "Type the host name for this certificate."
-msgstr "Zadejte jméno hostitele pro který je tento certifikát."
+msgstr "Zadejte jméno hostitele pro tento certifikát."
 
 #. Widget creation function
 msgid "SSL Servers"
@@ -10915,7 +10825,6 @@
 msgid "Get Away Message"
 msgstr "Získat zprávu o nepřítomnosti"
 
-#, fuzzy
 msgid "Last Said"
 msgstr "Naposledy řečeno"
 
@@ -10962,21 +10871,17 @@
 msgid "/Conversation/Clea_r Scrollback"
 msgstr "/Konverzace/Vy_mazat paměť řádků"
 
-#, fuzzy
 msgid "/Conversation/M_edia"
-msgstr "/Konverzace/_Více"
-
-#, fuzzy
+msgstr "/Konverzace/Multimé_dia"
+
 msgid "/Conversation/Media/_Audio Call"
-msgstr "/Konverzace/_Více"
-
-#, fuzzy
+msgstr "/Konverzace/Multimédia/_Audio hovor"
+
 msgid "/Conversation/Media/_Video Call"
-msgstr "/Konverzace/_Více"
-
-#, fuzzy
+msgstr "/Konverzace/Multimédia/_Video hovor"
+
 msgid "/Conversation/Media/Audio\\/Video _Call"
-msgstr "/Konverzace/Zobrazit záz_nam"
+msgstr "/Konverzace/Multimédia/Audio\\/Video _hovor"
 
 msgid "/Conversation/Se_nd File..."
 msgstr "/Konverzace/Odeslat _soubor..."
@@ -11050,17 +10955,14 @@
 msgid "/Conversation/View Log"
 msgstr "/Konverzace/Zobrazit záznam"
 
-#, fuzzy
 msgid "/Conversation/Media/Audio Call"
-msgstr "/Konverzace/Více"
-
-#, fuzzy
+msgstr "/Konverzace/Multimédia/Audio hovor"
+
 msgid "/Conversation/Media/Video Call"
-msgstr "/Konverzace/Zobrazit záznam"
-
-#, fuzzy
+msgstr "/Konverzace/Multimédia/Video hovor"
+
 msgid "/Conversation/Media/Audio\\/Video Call"
-msgstr "/Konverzace/Více"
+msgstr "/Konverzace/Multimédia\\/Video hovor"
 
 msgid "/Conversation/Send File..."
 msgstr "/Konverzace/Odeslat soubor..."
@@ -11246,7 +11148,7 @@
 msgstr "Ka-Hing Cheung"
 
 msgid "voice and video"
-msgstr ""
+msgstr "hlas a video"
 
 msgid "support"
 msgstr "podpora"
@@ -11372,9 +11274,8 @@
 msgid "Hungarian"
 msgstr "Maďarština"
 
-#, fuzzy
 msgid "Armenian"
-msgstr "Rumunština"
+msgstr "Arménština"
 
 msgid "Indonesian"
 msgstr "Indonéština"
@@ -11391,9 +11292,8 @@
 msgid "Ubuntu Georgian Translators"
 msgstr "Překladatelé Gruzínštiny z Ubuntu"
 
-#, fuzzy
 msgid "Khmer"
-msgstr "Jiné"
+msgstr "Khmérština"
 
 msgid "Kannada"
 msgstr "Kannada"
@@ -11474,7 +11374,7 @@
 msgstr "Švédština"
 
 msgid "Swahili"
-msgstr ""
+msgstr "Svahilština"
 
 msgid "Tamil"
 msgstr "Tamil"
@@ -11808,7 +11708,6 @@
 msgid "Hyperlink visited color"
 msgstr "Barva navštívených odkazů"
 
-#, fuzzy
 msgid "Color to draw hyperlink after it has been visited (or activated)."
 msgstr "Barva, kterou kreslit odkazy, když jsou navštíveny (nebo aktivovány)."
 
@@ -11845,21 +11744,18 @@
 msgid "Action Message Name Color for Whispered Message"
 msgstr "Barva akční zprávy pro šeptané zprávy"
 
-#, fuzzy
 msgid "Color to draw the name of a whispered action message."
-msgstr "Barva akční zprávy."
+msgstr "Barva šeptané akční zprávy."
 
 msgid "Whisper Message Name Color"
 msgstr "Barva šeptané zprávy"
 
-#, fuzzy
 msgid "Color to draw the name of a whispered message."
-msgstr "Barva akční zprávy."
+msgstr "Barva šeptané zprávy."
 
 msgid "Typing notification color"
 msgstr "Barva pro upozornění na psaní"
 
-#, fuzzy
 msgid "The color to use for the typing notification"
 msgstr "Barva pro upozornění na psaní"
 
@@ -12111,7 +12007,7 @@
 msgid "%s %s. Try `%s -h' for more information.\n"
 msgstr "%s %s. Pro více informací zkuste `%s -h'.\n"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s %s\n"
 "Usage: %s [OPTION]...\n"
@@ -12133,6 +12029,7 @@
 "\n"
 "  -c, --config=ADRESÁŘ používat ADRESÁŘ pro soubory s nastavením\n"
 "  -d, --debug          vypisovat ladicí zprávy na stdout\n"
+"  -f, --force-online vynutit stav online, bez ohledu na status\n"
 "  -h, --help           zobrazit tuto nápovědu a skončit\n"
 "  -m, --multiple       nezajišťovat jedinou instanci\n"
 "  -n, --nologin        nepřihlašovat se automaticky\n"
@@ -12142,7 +12039,7 @@
 " --display=DISPLAY použít X obrazovku\n"
 "  -v, --version        zobrazit aktuální verzi a skončit\n"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s %s\n"
 "Usage: %s [OPTION]...\n"
@@ -12163,6 +12060,7 @@
 "\n"
 "  -c, --config=ADRESÁŘ používat ADRESÁŘ pro soubory s nastavením\n"
 "  -d, --debug          vypisovat ladicí zprávy na stdout\n"
+"  -f, --force-online vynutit stav online, bez ohledu na status\n"
 "  -h, --help           zobrazit tuto nápovědu a skončit\n"
 "  -m, --multiple       nezajišťovat jedinou instanci\n"
 "  -n, --nologin        nepřihlašovat se automaticky\n"
@@ -12209,22 +12107,21 @@
 msgstr "Exiting because another libpurple client is already running.\n"
 
 msgid "/_Media"
-msgstr ""
+msgstr "/_Multimédia"
 
 msgid "/Media/_Hangup"
-msgstr ""
-
-#, fuzzy
+msgstr "/Multimédia/_Zavěsit"
+
 msgid "Calling..."
-msgstr "Počítám..."
+msgstr "Volání..."
 
 #, c-format
 msgid "%s wishes to start an audio/video session with you."
-msgstr ""
+msgstr "%s chce začít audio/video rozhovor s tebou."
 
 #, c-format
 msgid "%s wishes to start a video session with you."
-msgstr ""
+msgstr "%s chce začít video rozhovor s tebou."
 
 #, c-format
 msgid "%s has %d new message."
@@ -12255,9 +12152,8 @@
 "The 'Manual' browser command has been chosen, but no command has been set."
 msgstr "Byl zvolen 'Ruční' příkaz prohlížeče, ale nebyl nastaven žádný příkaz."
 
-#, fuzzy
 msgid "No message"
-msgstr "Neznámá zpráva"
+msgstr "Žádná zpráva"
 
 msgid "Open All Messages"
 msgstr "Otevřít všechny zprávy"
@@ -12265,16 +12161,14 @@
 msgid "<span weight=\"bold\" size=\"larger\">You have mail!</span>"
 msgstr "<span weight=\"bold\" size=\"larger\">Máte poštu!</span>"
 
-#, fuzzy
 msgid "New Pounces"
 msgstr "Nové sledování kamaráda"
 
 msgid "Dismiss"
-msgstr ""
-
-#, fuzzy
+msgstr "Odmítnout"
+
 msgid "<span weight=\"bold\" size=\"larger\">You have pounced!</span>"
-msgstr "<span weight=\"bold\" size=\"larger\">Máte poštu!</span>"
+msgstr "<span weight=\"bold\" size=\"larger\">Jste sledován!</span>"
 
 msgid "The following plugins will be unloaded."
 msgstr "Následující zásuvné moduly budou odebrány."
@@ -12322,7 +12216,6 @@
 msgid "Select a file"
 msgstr "Zvolte soubor"
 
-#, fuzzy
 msgid "Modify Buddy Pounce"
 msgstr "Upravit sledování kamaráda"
 
@@ -12399,61 +12292,58 @@
 msgid "Pounce Target"
 msgstr "Cíl sledování"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Started typing"
-msgstr "Začne psát"
-
-#, fuzzy, c-format
+msgstr "Začal psát"
+
+#, c-format
 msgid "Paused while typing"
-msgstr "Zastaví se při psaní"
-
-#, fuzzy, c-format
+msgstr "Zastavil psaní"
+
+#, c-format
 msgid "Signed on"
-msgstr "Přihlásí se"
-
-#, fuzzy, c-format
+msgstr "Přihlášen"
+
+#, c-format
 msgid "Returned from being idle"
-msgstr "%s se vrátil z nečinnosti (%s)"
-
-#, fuzzy, c-format
+msgstr "Vrátil se z nečinnosti"
+
+#, c-format
 msgid "Returned from being away"
-msgstr "Vrátí se z nepřítomnosti"
-
-#, fuzzy, c-format
+msgstr "Vrátil se z nepřítomnosti"
+
+#, c-format
 msgid "Stopped typing"
-msgstr "Přestane psát"
-
-#, fuzzy, c-format
+msgstr "Přestal psát"
+
+#, c-format
 msgid "Signed off"
-msgstr "Odhlásí se"
-
-#, fuzzy, c-format
+msgstr "Odhlášen"
+
+#, c-format
 msgid "Became idle"
-msgstr "Stane se nečinným"
-
-#, fuzzy, c-format
+msgstr "Stal se nečinným"
+
+#, c-format
 msgid "Went away"
-msgstr "Při nepřítomnosti"
-
-#, fuzzy, c-format
+msgstr "Odešel pryč"
+
+#, c-format
 msgid "Sent a message"
-msgstr "Odeslat zprávu"
-
-#, fuzzy, c-format
+msgstr "Odeslal zprávu"
+
+#, c-format
 msgid "Unknown.... Please report this!"
-msgstr "Neznámá událost sledování. Oznamte to prosím!"
-
-#, fuzzy
+msgstr "Neznámé.... Oznamte to prosím!"
+
 msgid "Theme failed to unpack."
-msgstr "Téma smajlíků nelze rozbalit."
-
-#, fuzzy
+msgstr "Téma nelze rozbalit."
+
 msgid "Theme failed to load."
-msgstr "Téma smajlíků nelze rozbalit."
-
-#, fuzzy
+msgstr "Téma nelze načíst."
+
 msgid "Theme failed to copy."
-msgstr "Téma smajlíků nelze rozbalit."
+msgstr "Téma nelze zkopírovat."
 
 msgid "Install Theme"
 msgstr "Nainstalovat téma"
@@ -12475,9 +12365,8 @@
 msgstr "Za_vřít konverzaci klávesou Escape"
 
 #. Buddy List Themes
-#, fuzzy
 msgid "Buddy List Theme"
-msgstr "Seznam kamarádů"
+msgstr "Téma seznamu kamarádů"
 
 #. System Tray
 msgid "System Tray Icon"
@@ -12489,9 +12378,8 @@
 msgid "On unread messages"
 msgstr "Při nepřečtených zprávách"
 
-#, fuzzy
 msgid "Conversation Window"
-msgstr "Okna IM konverzace"
+msgstr "Okna konverzace"
 
 msgid "_Hide new IM conversations:"
 msgstr "_Skrýt nové konverzace IM:"
@@ -12594,9 +12482,9 @@
 msgid "<span style=\"italic\">Example: stunserver.org</span>"
 msgstr "<span style=\"italic\">Příklad: stunserver.org</span>"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Use _automatically detected IP address: %s"
-msgstr "_Autodetekovat IP adresu"
+msgstr "Použít _automaticky detekovanou IP adresu: %s"
 
 msgid "Public _IP:"
 msgstr "Veřejná _IP:"
@@ -12618,7 +12506,7 @@
 
 #. TURN server
 msgid "Relay Server (TURN)"
-msgstr ""
+msgstr "Server pro přenos (TURN)"
 
 msgid "Proxy Server &amp; Browser"
 msgstr "Proxy server a prohlížeč"
@@ -12964,12 +12852,12 @@
 msgid "Status for %s"
 msgstr "Stav pro %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "A custom smiley for '%s' already exists.  Please use a different shortcut."
 msgstr ""
-"Už existuje uživatelský smajlík pro vybranou klávesovou zkratku. "
-"Specifikujte jinou."
+"Už existuje uživatelský smajlík pro '%s'. Specifikujte jinou klávesovou "
+"zkratku."
 
 msgid "Custom Smiley"
 msgstr "Uživatelský smajlík"
@@ -12983,28 +12871,24 @@
 msgid "Add Smiley"
 msgstr "Přidat smajlík"
 
-#, fuzzy
 msgid "_Image:"
-msgstr "_Obrázek"
+msgstr "_Obrázek:"
 
 #. Shortcut text
-#, fuzzy
 msgid "S_hortcut text:"
-msgstr "Klávesová zkratka"
+msgstr "Text k_lávesové zkratky"
 
 msgid "Smiley"
 msgstr "Smajlík"
 
-#, fuzzy
 msgid "Shortcut Text"
-msgstr "Klávesová zkratka"
+msgstr "Text klávesové zkratky:"
 
 msgid "Custom Smiley Manager"
 msgstr "Správce smajlíků"
 
-#, fuzzy
 msgid "Select Buddy Icon"
-msgstr "Vybrat kamaráda"
+msgstr "Vybrat ikonu kamaráda"
 
 msgid "Click to change your buddyicon for this account."
 msgstr "Změní ikonu pro tento účet."
@@ -13088,7 +12972,6 @@
 msgid "Cannot send launcher"
 msgstr "Nemohu odeslat spouštěč"
 
-#, fuzzy
 msgid ""
 "You dragged a desktop launcher. Most likely you wanted to send the target of "
 "this launcher instead of this launcher itself."
@@ -13127,9 +13010,8 @@
 "Nemohu načíst obrázek '%s': důvod není znám, pravděpodobně poškozený soubor "
 "obrázku"
 
-#, fuzzy
 msgid "_Open Link"
-msgstr "_Otevřít odkaz v:"
+msgstr "_Otevřít odkaz"
 
 msgid "_Copy Link Location"
 msgstr "_Kopírovat adresu odkazu"
@@ -13137,9 +13019,21 @@
 msgid "_Copy Email Address"
 msgstr "_Kopírovat emailovou adresu"
 
+msgid "_Open File"
+msgstr "_Otevřít soubor"
+
+msgid "Open _Containing Directory"
+msgstr "Otevřít a_dresář"
+
 msgid "Save File"
 msgstr "Uložit soubor"
 
+msgid "_Play Sound"
+msgstr "_Přehrát zvuk"
+
+msgid "_Save File"
+msgstr "_Uložit soubor"
+
 msgid "Select color"
 msgstr "Zvolte barvu"
 
@@ -13227,79 +13121,65 @@
 msgid "Displays statistical information about your buddies' availability"
 msgstr "Zobrazí statistické informace o dostupnosti kamarádů"
 
-#, fuzzy
 msgid "Server name request"
-msgstr "Adresa serveru"
-
-#, fuzzy
+msgstr "Požadavek na jméno serveru"
+
 msgid "Enter an XMPP Server"
-msgstr "Zadejte server konference"
-
-#, fuzzy
+msgstr "Zadejte XMPP server"
+
 msgid "Select an XMPP server to query"
-msgstr "Zvolte server konference, kterého se ptát"
-
-#, fuzzy
+msgstr "Zvolte XMPP server pro rozhovor"
+
 msgid "Find Services"
-msgstr "Služby online"
-
-#, fuzzy
+msgstr "Najít služby"
+
 msgid "Add to Buddy List"
-msgstr "Odeslat seznam kamarádů"
-
-#, fuzzy
+msgstr "Přidat do seznamu kamarádů"
+
 msgid "Gateway"
-msgstr "Jde pryč"
-
-#, fuzzy
+msgstr "Brána"
+
 msgid "Directory"
-msgstr "Adresář záznamů"
-
-#, fuzzy
+msgstr "Adresář"
+
 msgid "PubSub Collection"
-msgstr "Výběr zvuku"
-
-#, fuzzy
+msgstr "PubSub kolekce"
+
 msgid "PubSub Leaf"
-msgstr "PubSub služba"
-
-#, fuzzy
+msgstr "PubSub list"
+
 msgid ""
 "\n"
 "<b>Description:</b> "
 msgstr ""
 "\n"
-"<b>Popis:</b> Vystrašený"
+"<b>Popis:</b>"
 
 #. Create the window.
-#, fuzzy
 msgid "Service Discovery"
-msgstr "Informace vyhledání služby"
-
-#, fuzzy
+msgstr "Prohlížení služeb"
+
 msgid "_Browse"
-msgstr "_Prohlížeč:"
-
-#, fuzzy
+msgstr "_Prohlížet"
+
 msgid "Server does not exist"
-msgstr "Uživatel neexistuje"
-
-#, fuzzy
+msgstr "Server neexistuje"
+
 msgid "Server does not support service discovery"
-msgstr "Server nepodporuje blokování"
-
-#, fuzzy
+msgstr "Server nepodporuje prohlížení služeb"
+
 msgid "XMPP Service Discovery"
-msgstr "Informace vyhledání služby"
+msgstr "Prohlížení XMPP služeb"
 
 msgid "Allows browsing and registering services."
-msgstr ""
-
-#, fuzzy
+msgstr "Umožňuje prohlížení a registrování služeb."
+
 msgid ""
 "This plugin is useful for registering with legacy transports or other XMPP "
 "services."
-msgstr "Tento zásuvný modul je užitečný pro ladění serverů nebo klientů XMPP."
+msgstr ""
+"Tento zásuvný modul je užitečný pro registraci transportů nebo dalších XMPP "
+"služeb."
 
 msgid "Buddy is idle"
 msgstr "Kamarád je nečinný"
@@ -13683,12 +13563,11 @@
 msgstr "Zásuvný modul music messaging pro spolupráci při skládání."
 
 #. *  summary
-#, fuzzy
 msgid ""
 "The Music Messaging Plugin allows a number of users to simultaneously work "
 "on a piece of music by editing a common score in real-time."
 msgstr ""
-"Zásuvný modul music messaging umožňuje několika uživatelům zároveň pracovat "
+"Zásuvný modul Music messaging umožňuje několika uživatelům zároveň pracovat "
 "na hudebním díle upravováním společné partitury v reálném čase."
 
 #. ---------- "Notify For" ----------
@@ -13807,7 +13686,6 @@
 msgid "Highlighted Message Name Color"
 msgstr "Barva zvýrazněné zprávy"
 
-#, fuzzy
 msgid "Typing Notification Color"
 msgstr "Barva pro upozornění na psaní"
 
@@ -13840,23 +13718,20 @@
 msgid "GTK+ Text Shortcut Theme"
 msgstr "Téma GTK+ textu odkazu"
 
-#, fuzzy
 msgid "Disable Typing Notification Text"
-msgstr "Povolit upozornění na psaní"
-
-#, fuzzy
+msgstr "Zrušit upozornění na psaní"
+
 msgid "GTK+ Theme Control Settings"
-msgstr "Ovládání tématu GTK+ Pidginu"
-
-#, fuzzy
+msgstr "Ovládání tématu GTK+"
+
 msgid "Colors"
-msgstr "Zavřít"
+msgstr "Barvy"
 
 msgid "Fonts"
 msgstr "Písma"
 
 msgid "Miscellaneous"
-msgstr ""
+msgstr "Různé"
 
 msgid "Gtkrc File Tools"
 msgstr "Nástroje souboru Gtkrc"
@@ -13938,7 +13813,6 @@
 msgstr "Tlačítko Odeslat okna konverzace."
 
 #. *< summary
-#, fuzzy
 msgid ""
 "Adds a Send button to the entry area of the conversation window. Intended "
 "for use when no physical keyboard is present."
@@ -13998,94 +13872,78 @@
 msgstr ""
 "Nahrazuje text v odchozích zprávách podle uživatelem definovaných pravidel."
 
-#, fuzzy
 msgid "Just logged in"
-msgstr "Nepřihlášen."
-
-#, fuzzy
+msgstr "Právě přihlášen"
+
 msgid "Just logged out"
-msgstr "Nepřihlášen."
+msgstr "Právě odhlášen"
 
 msgid ""
 "Icon for Contact/\n"
 "Icon for Unknown person"
 msgstr ""
-
-#, fuzzy
+"Ikona pro kontakt/\n"
+"Ikona pro neznámou osobu"
+
 msgid "Icon for Chat"
-msgstr "Připojit se k chatu"
-
-#, fuzzy
+msgstr "Ikona pro chat"
+
 msgid "Ignored"
-msgstr "Ignorovat"
-
-#, fuzzy
+msgstr "Ignorován"
+
 msgid "Founder"
-msgstr "Hlasitější"
-
-#, fuzzy
+msgstr "Zakladatel"
+
 msgid "Operator"
-msgstr "Opera"
+msgstr "Operátor"
 
 msgid "Half Operator"
-msgstr ""
-
-#, fuzzy
+msgstr "Poloviční operátor"
+
 msgid "Authorization dialog"
-msgstr "Autorizace udělena"
-
-#, fuzzy
+msgstr "Autorizační dialog"
+
 msgid "Error dialog"
-msgstr "Chyba "
-
-#, fuzzy
+msgstr "Chybový dialog"
+
 msgid "Information dialog"
-msgstr "Informace"
+msgstr "Informační dialog"
 
 msgid "Mail dialog"
-msgstr ""
-
-#, fuzzy
+msgstr "Dialog mailu"
+
 msgid "Question dialog"
-msgstr "Dialog požadavku"
-
-#, fuzzy
+msgstr "Dialog s otázkou"
+
 msgid "Warning dialog"
-msgstr "Úroveň varování"
+msgstr "Dialog s varováním"
 
 msgid "What kind of dialog is this?"
-msgstr ""
-
-#, fuzzy
+msgstr "Jaký je toto druh dialogu?"
+
 msgid "Status Icons"
-msgstr "Stav pro %s"
-
-#, fuzzy
+msgstr "Ikony stavů"
+
 msgid "Chatroom Emblems"
-msgstr "Locale místnosti chatu"
-
-#, fuzzy
+msgstr "Emblémy místnosti chatu"
+
 msgid "Dialog Icons"
-msgstr "Změnit ikonu"
-
-#, fuzzy
+msgstr "Ikony dialogu"
+
 msgid "Pidgin Icon Theme Editor"
-msgstr "Ovládání tématu GTK+ Pidginu"
-
-#, fuzzy
+msgstr "Editor témat ikon Pidgina"
+
 msgid "Contact"
-msgstr "Kontaktní informace"
-
-#, fuzzy
+msgstr "Kontakt"
+
 msgid "Pidgin Buddylist Theme Editor"
-msgstr "Seznam kamarádů"
-
-#, fuzzy
+msgstr "Editor seznamu kamarádů Pidgina"
+
 msgid "Edit Buddylist Theme"
-msgstr "Seznam kamarádů"
+msgstr "Upravit téma seznamu kamarádů"
 
 msgid "Edit Icon Theme"
-msgstr ""
+msgstr "Upravit téma ikon"
 
 #. *< type
 #. *< ui_requirement
@@ -14094,16 +13952,14 @@
 #. *< priority
 #. *< id
 #. *  description
-#, fuzzy
 msgid "Pidgin Theme Editor"
-msgstr "Ovládání tématu GTK+ Pidginu"
+msgstr "Editor témat Pidgina"
 
 #. *< name
 #. *< version
 #. *  summary
-#, fuzzy
 msgid "Pidgin Theme Editor."
-msgstr "Ovládání tématu GTK+ Pidginu"
+msgstr "Editor témat Pidgina."
 
 #. *< type
 #. *< ui_requirement
@@ -14272,11 +14128,10 @@
 msgid "Options specific to Pidgin for Windows."
 msgstr "Možnosti specifické pro Pidgin pro Windows."
 
-#, fuzzy
 msgid ""
 "Provides options specific to Pidgin for Windows, such as buddy list docking."
 msgstr ""
-"Poskytuje možnosti specifické pro Pidgin pro Windows, například dokování "
+"Poskytuje možnosti specifické pro Pidgin na Windows, například dokování "
 "seznamu kamarádů."
 
 msgid "<font color='#777777'>Logged out.</font>"
@@ -14316,6 +14171,26 @@
 msgid "This plugin is useful for debbuging XMPP servers or clients."
 msgstr "Tento zásuvný modul je užitečný pro ladění serverů nebo klientů XMPP."
 
+#, fuzzy
+#~ msgid "Malformed BOSH Connect Server"
+#~ msgstr "Nemohu se připojit k serveru."
+
+#, fuzzy
+#~ msgid "Unable to not load SILC key pair"
+#~ msgstr "Nemohu načíst pár klíčů SILC"
+
+#~ msgid ""
+#~ "%s declined your conference invitation to room \"%s\" because \"%s\"."
+#~ msgstr ""
+#~ "%s odmítl vaše pozvání ke konferenci do místnosti \"%s\", protože \"%s\"."
+
+#~ msgid "Invitation Rejected"
+#~ msgstr "Pozvání odmítnuto"
+
+#, fuzzy
+#~ msgid "_Proxy"
+#~ msgstr "Proxy"
+
 #~ msgid "Cannot open socket"
 #~ msgstr "Nemohu otevřít socket"
 
--- a/po/de.po	Sat Jul 25 05:14:27 2009 +0000
+++ b/po/de.po	Sun Jul 26 22:18:59 2009 +0900
@@ -11,8 +11,8 @@
 msgstr ""
 "Project-Id-Version: de\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-19 19:25+0200\n"
-"PO-Revision-Date: 2009-07-19 19:25+0200\n"
+"POT-Creation-Date: 2009-07-24 18:05+0200\n"
+"PO-Revision-Date: 2009-07-24 18:05+0200\n"
 "Last-Translator: Jochen Kemnade <jochenkemnade@web.de>\n"
 "Language-Team: Deutsch <de@li.org>\n"
 "MIME-Version: 1.0\n"
@@ -1573,7 +1573,7 @@
 msgstr "TinyURL nur für URLs mit mindestens dieser Länge generieren"
 
 msgid "TinyURL (or other) address prefix"
-msgstr ""
+msgstr "Adresspräfix für TinyURL (oder andere)"
 
 msgid "TinyURL"
 msgstr "TinyURL"
@@ -1700,6 +1700,7 @@
 "Das Zertifikat von „%s“ ist selbstsigniert. Es kann nicht automatisch "
 "geprüft werden."
 
+#. FIXME 2.6.1
 #, c-format
 msgid "The certificate chain presented for %s is not valid."
 msgstr "Die Zertifizierungskette, die für %s präsentiert wird, ist ungültig."
@@ -1709,6 +1710,7 @@
 #. stifle it.
 #. TODO: Probably wrong.
 #. TODO: Probably wrong
+#. TODO: Probably wrong.
 msgid "SSL Certificate Error"
 msgstr "SSL-Zertifikatfehler"
 
@@ -2715,6 +2717,10 @@
 "are only used in a single successful connection.\n"
 "Note: The account password must not be saved for this to work."
 msgstr ""
+"Erlaubt Ihnen (pro Konto) zu erzwingen, dass nicht gespeicherte Passwörter "
+"nur in einer einzigen erfolgreichen Verbindung verwendet werden.\n"
+"Hinweis: Damit dies funktioniert, darf das Konto-Passwort nicht gespeichert "
+"werden."
 
 #. *< type
 #. *< ui_requirement
@@ -4964,13 +4970,13 @@
 msgid "Non-IM Contacts"
 msgstr "Nicht-IM-Kontakte"
 
-#, fuzzy, c-format
+#, c-format
 msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>"
 msgstr ""
 "%s hat einen Wink gesendet. <a href='msn-wink://%s'>Zum Abspielen hier "
 "klicken</a>"
 
-#, fuzzy, c-format
+#, c-format
 msgid "%s sent a wink, but it could not be saved"
 msgstr "%s hat einen Wink gesendet, er konnte aber nicht gespeichert werden"
 
@@ -6245,7 +6251,7 @@
 msgstr "Server-Port"
 
 msgid "Received unexpected response from "
-msgstr "Unerwartete Antwort erhalten von"
+msgstr "Unerwartete Antwort erhalten von "
 
 #. username connecting too frequently
 msgid ""
@@ -6256,12 +6262,11 @@
 "versuchen Sie es noch einmal. Wenn Sie es weiterversuchen, müssen Sie sogar "
 "noch länger warten."
 
-#, fuzzy
 msgid "Error requesting "
-msgstr "Fehler beim Auflösen von %s"
+msgstr "Fehler beim Anfordern von "
 
 msgid "AOL does not allow your screen name to authenticate here"
-msgstr ""
+msgstr "AOL erlaubt Ihnen nicht, sich hier mit Ihrem Benutzernamen anzumelden"
 
 msgid "Could not join chat room"
 msgstr "Konnte Chatraum nicht betreten"
@@ -7361,7 +7366,7 @@
 msgstr "Buddy-Notiz"
 
 msgid "Change his/her memo as you like"
-msgstr ""
+msgstr "Ändern Sie seine/ihre Notiz wie sie möchten"
 
 msgid "_Modify"
 msgstr "_Bearbeiten"
@@ -7692,7 +7697,7 @@
 msgstr "<p><b>Gewissenhafte Tester</b>:<br>\n"
 
 msgid "and more, please let me know... thank you!))"
-msgstr ""
+msgstr "und andere, bitten sagen Sie mir Bescheid... Danke!))"
 
 msgid "<p><i>And, all the boys in the backroom...</i><br>\n"
 msgstr "<p><i>Und all die Jungs im Hinterzimmer...</i><br>\n"
@@ -8904,10 +8909,6 @@
 msgid "Connecting to SILC Server"
 msgstr "Verbinde mit SILC-Server"
 
-#, fuzzy
-msgid "Unable to not load SILC key pair"
-msgstr "SILC-Schlüsselpaar konnte nicht geladen werden"
-
 msgid "Out of memory"
 msgstr "Kein Speicher verfügbar"
 
@@ -10367,9 +10368,8 @@
 msgid "I_M"
 msgstr "I_M"
 
-#, fuzzy
 msgid "_Audio Call"
-msgstr "Chat _hinzufügen"
+msgstr "_Audio-Anruf"
 
 msgid "Audio/_Video Call"
 msgstr "Audio/_Video-Anruf"
@@ -10873,7 +10873,7 @@
 msgstr "Die Textinformation für einen Buddy mit ungelesenen Nachrichten"
 
 msgid "Message (Nick Said) Text"
-msgstr ""
+msgstr "Nachrichtentext (mit enthaltenem Spitznamen)"
 
 msgid ""
 "The text information for when a chat has an unread message that mentions "
@@ -11258,7 +11258,7 @@
 msgstr "Ka-Hing Cheung"
 
 msgid "voice and video"
-msgstr ""
+msgstr "Sprach- und Videoübertragung"
 
 msgid "support"
 msgstr "Support"
@@ -13139,24 +13139,20 @@
 msgid "_Copy Email Address"
 msgstr "Kopiere _E-Mail-Adresse"
 
-#, fuzzy
 msgid "_Open File"
-msgstr "Datei öffnen..."
-
-#, fuzzy
+msgstr "_Datei öffnen"
+
 msgid "Open _Containing Directory"
-msgstr "Mitschnittverzeichnis"
+msgstr "_Enthaltendes Verzeichnis öffnen"
 
 msgid "Save File"
 msgstr "Datei speichern"
 
-#, fuzzy
 msgid "_Play Sound"
-msgstr "Einen Klang abspielen"
-
-#, fuzzy
+msgstr "Klang _abspielen"
+
 msgid "_Save File"
-msgstr "Datei speichern"
+msgstr "Datei _speichern"
 
 msgid "Select color"
 msgstr "Farbe auswählen"
@@ -13245,9 +13241,8 @@
 msgid "Displays statistical information about your buddies' availability"
 msgstr "Statistische Informationen über die Verfügbarkeit Ihrer Buddys zeigen"
 
-#, fuzzy
 msgid "Server name request"
-msgstr "Server-Adresse"
+msgstr "Servernamen-Anfrage"
 
 msgid "Enter an XMPP Server"
 msgstr "Geben Sie einen XMPP-Server ein"
@@ -13299,12 +13294,12 @@
 msgid "Allows browsing and registering services."
 msgstr "Erlaubt das Durchsuchen und Registrieren von Diensten"
 
-#, fuzzy
 msgid ""
 "This plugin is useful for registering with legacy transports or other XMPP "
 "services."
 msgstr ""
-"Dieses Plugin ist nützlich zur Fehlersuche in XMPP-Servern oder -Clients."
+"Dieses Plugin ist nützlich zum Registrieren bei veralteten Transports oder "
+"anderen XMPP-Diensten."
 
 msgid "Buddy is idle"
 msgstr "Buddy ist untätig"
--- a/po/km.po	Sat Jul 25 05:14:27 2009 +0000
+++ b/po/km.po	Sun Jul 26 22:18:59 2009 +0900
@@ -1,14 +1,14 @@
-# translation of pidgin.po to Khmer
+# translation of km_new_update.po to Khmer
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Khoem Sokhem <khoemsokhem@khmeros.info>, 2009.
 msgid ""
 msgstr ""
-"Project-Id-Version: pidgin\n"
+"Project-Id-Version: km_new_update\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-06 15:04-0700\n"
-"PO-Revision-Date: 2009-02-25 11:49+0700\n"
+"POT-Creation-Date: 2009-07-20 21:11-0700\n"
+"PO-Revision-Date: 2009-07-21 08:40+0700\n"
 "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
 "Language-Team: Khmer <support@khmeros.info>\n"
 "MIME-Version: 1.0\n"
@@ -207,7 +207,7 @@
 msgstr "បន្ថែម​មិត្តភក្ដិ"
 
 msgid "Please enter buddy information."
-msgstr "សូម​បញ្ចូល​ព័ត៌មាន​របស់មិត្តភក្ដិ ។"
+msgstr "សូម​បញ្ចូល​ព័ត៌មាន​​មិត្តភក្ដិ ។"
 
 msgid "Chats"
 msgstr "ជជែក"
@@ -364,7 +364,7 @@
 msgstr "សារ​បន្ទាន់​ថ្មី"
 
 msgid "Please enter the username or alias of the person you would like to IM."
-msgstr "សូម​បញ្ចូល​ឈ្មោះ​អ្នកប្រើ ឬ​ឈ្មោះ​ក្លែងក្លាយ​របស់​មនុស្ស​ ដែលអ្នក​ចង់​ IM ។"
+msgstr "សូម​បញ្ចូល​ឈ្មោះ​អ្នកប្រើ ឬ​ឈ្មោះ​ក្លែងក្លាយ​របស់​មនុស្ស​ ដែលអ្នក​ចង់​ជជែក ។"
 
 msgid "Channel"
 msgstr "ឆានែល"
@@ -840,12 +840,11 @@
 msgid "System Log"
 msgstr "​កំណត់ហេតុ​ប្រព័ន្ធ"
 
-#, fuzzy
 msgid "Calling ... "
-msgstr "កំពុង​គណនា..."
+msgstr "កំពុង​ហៅ... "
 
 msgid "Hangup"
-msgstr ""
+msgstr "រង់ចាំ"
 
 #. Number of actions
 msgid "Accept"
@@ -855,25 +854,24 @@
 msgstr "ច្រានចោលល"
 
 msgid "Call in progress."
-msgstr ""
+msgstr "កា​រហៅ​កំពុង​ដំណើរការ ។"
 
 msgid "The call has been terminated."
-msgstr ""
+msgstr "ការ​ហៅ​ត្រូវ​បានបញ្ចប់ ។"
 
 #, c-format
 msgid "%s wishes to start an audio session with you."
-msgstr ""
+msgstr "%s មាន​បំណង​ចាប់ផ្ដើម​សម័យ​អូឌីយ៉ូ​ជា​មួយ​អ្នក ។"
 
 #, c-format
 msgid "%s is trying to start an unsupported media session type with you."
-msgstr ""
-
-#, fuzzy
+msgstr "%s កំពុង​ព្យាយាម​ចាប់ផ្ដើម​​ប្រភេទ​សម័យ​មេឌៀ​ដែល​មិនបានគាំទ្រ​ជាមួយ​អ្នក ។"
+
 msgid "You have rejected the call."
-msgstr "អ្នកបាន​បោះបង់​ឆានែល %s%s"
+msgstr "អ្នក​បានបដិសេធ​ការ​ហៅ ។"
 
 msgid "call: Make an audio call."
-msgstr ""
+msgstr "ហៅ ៖ បង្កើត​ការ​ហៅ​អូឌីយ៉ូ ។"
 
 msgid "Emails"
 msgstr "អ៊ីមែល"
@@ -1523,22 +1521,23 @@
 "\n"
 "Fetching TinyURL..."
 msgstr ""
+"\n"
+"កំពុង​ទៅយក​ TinyURL..."
 
 msgid "Only create TinyURL for urls of this length or greater"
-msgstr ""
+msgstr "បង្កើត​តែ TinyURL សម្រាប់ urls របស់​ប្រវែង​នេះ ឬ​ធំជាង​នេះ"
 
 msgid "TinyURL (or other) address prefix"
-msgstr ""
-
-#, fuzzy
+msgstr "បុព្វបទ​អាសយដ្ឋាន TinyURL (ឬ​ផ្សេងៗ)"
+
 msgid "TinyURL"
-msgstr "URL Tune"
+msgstr "TinyURL"
 
 msgid "TinyURL plugin"
-msgstr ""
+msgstr "កម្មវិធី​ជំនួយ TinyURL"
 
 msgid "When receiving a message with URL(s), TinyURL for easier copying"
-msgstr ""
+msgstr "នៅពេល​ទទួល​សារ​ដែល​មាន URL(s), TinyURL សម្រាប់​ចម្លង​កាន់តែ​ងាយ"
 
 msgid "accounts"
 msgstr "គណនី"
@@ -1741,7 +1740,6 @@
 msgstr "+++ %s បានបិទ"
 
 #. Unknown error
-#. Unknown error!
 msgid "Unknown error"
 msgstr "មិនស្គាល់​កំហុស"
 
@@ -1788,9 +1786,8 @@
 msgid "%s left the room (%s)."
 msgstr "%s បាន​ចេញ​ពី​បន្ទប់ (%s) ។"
 
-#, fuzzy
 msgid "Invite to chat"
-msgstr "អញ្ជើញ​ឲ្យ​ចូលរួម​ក្នុង​សន្និសីទ"
+msgstr "អញ្ជើញ​ឲ្យ​ចូលរួម​ក្នុងការ​ជជែក"
 
 #. Put our happy label in it.
 msgid ""
@@ -1928,6 +1925,10 @@
 msgid "Starting transfer of %s from %s"
 msgstr "ចាប់ផ្ដើម​ផ្ទេរ %s ពី %s"
 
+#, fuzzy, c-format
+msgid "Transfer of file <A HREF=\"file://%s\">%s</A> complete"
+msgstr "ផ្ទេរ​ឯកសារ %s ចប់​ហើយ"
+
 #, c-format
 msgid "Transfer of file %s complete"
 msgstr "ផ្ទេរ​ឯកសារ %s ចប់​ហើយ"
@@ -2609,9 +2610,8 @@
 msgid "Do not ask. Always save in pounce."
 msgstr "កុំសួរ ។ រក្សាទុក​ជា​ក្រុម​ជា​និច្ច ។"
 
-#, fuzzy
 msgid "One Time Password"
-msgstr "បញ្ចូល​ពាក្យ​សម្ងាត់"
+msgstr "បញ្ចូល​ពាក្យ​សម្ងាត់​តែ​ម្ដង"
 
 #. *< type
 #. *< ui_requirement
@@ -2620,13 +2620,13 @@
 #. *< priority
 #. *< id
 msgid "One Time Password Support"
-msgstr ""
+msgstr "គាំទ្រ​តែ​កា​របញ្ចូលពាក្យ​សម្ងាត់​តែ​ម្ដង​"
 
 #. *< name
 #. *< version
 #. *  summary
 msgid "Enforce that passwords are used only once."
-msgstr ""
+msgstr "បង្ខំ​ពាក្យ​សម្ងាត់​នោះ​ឲ្យ​ប្រើ​តែ​ម្ដង​ប៉ុណ្ណោះ ។"
 
 #. *  description
 msgid ""
@@ -2634,6 +2634,9 @@
 "are only used in a single successful connection.\n"
 "Note: The account password must not be saved for this to work."
 msgstr ""
+"អនុញ្ញាត​ឲ្យ​អ្នក​បង្ខំ​នៅ​លើ​មូលដ្ឋាន​ក្នុង​មួយ​គណនី ដែល​ពាក្យ​សម្ងាត់​មិន​កំពុង​ត្រូវ​បាន​រក្សាទុក​ទេ គឺ​ត្រូវ​បាន​"
+"រក្សាទុក​តែ​ការ​តភ្ជាប់​ដោយ​ជោគជ័យ​តែ​មួយ​ប៉ុណ្ណោះ ។\n"
+"ចំណាំ​ ៖ ពាក្យ​សម្ងាត់​គណនី​មិន​ត្រូវ​បាន​រក្សាទុក​​វា​សម្រាប់​ការ​ងារ​នោះទេ ។"
 
 #. *< type
 #. *< ui_requirement
@@ -3053,7 +3056,7 @@
 
 #. Global
 msgid "Available"
-msgstr "ដែល​អាច​ប្រើបាន"
+msgstr "លើ​បណ្ដាញ"
 
 #. get_yahoo_status_from_purple_status() returns YAHOO_STATUS_CUSTOM for
 #. * the generic away state (YAHOO_STATUS_TYPE_AWAY) with no message
@@ -3117,7 +3120,7 @@
 
 #, fuzzy, c-format
 msgid "Unable to resolve hostname '%s': %s"
-msgstr "មិនអាច​តភ្ជាប់​ទៅ​កាន់​ម៉ាស៊ីន​បម្រើ​បានទេ ។"
+msgstr "មិនអាច​ដោះស្រាយ​ម៉ាស៊ីន​បម្រើ​បានទេ"
 
 #. 1. connect to server
 #. connect to the server
@@ -3173,9 +3176,8 @@
 msgid "Gadu-Gadu User"
 msgstr "អ្នក​ប្រើ Gadu-Gadu"
 
-#, fuzzy
 msgid "GG server"
-msgstr "យក​ម៉ាស៊ីនបម្រើ"
+msgstr "ម៉ាស៊ីន​បម្រើ GG"
 
 #, c-format
 msgid "Unknown command: %s"
@@ -3230,9 +3232,8 @@
 msgid "_Password:"
 msgstr "ពាក្យ​​​សម្ងាត់ ៖"
 
-#, fuzzy
 msgid "IRC nick and server may not contain whitespace"
-msgstr "សម្មតិនាម IRC អាច​​​​​​មិនមាន​ចន្លោះ"
+msgstr "សម្មតិនាម IRC និង​ម៉ាស៊ីន​បម្រើ​មិនអាច​មាន​ចន្លោះ​មិនឃើញទេ"
 
 msgid "SSL support unavailable"
 msgstr "មិនមានការគាំទ្រ SSL"
@@ -3429,13 +3430,12 @@
 #. We only want to do the following dance if the connection
 #. has not been successfully completed.  If it has, just
 #. notify the user that their /nick command didn't go.
-#, fuzzy, c-format
+#, c-format
 msgid "The nickname \"%s\" is already being used."
-msgstr "ឈ្មោះការ​ជជែក​នេះ​កំពុង​ប្រើ​រួច​ហើយ"
-
-#, fuzzy
+msgstr "សម្មតិនាម \"%s\" កំពុង​ប្រើ​រួច​ហើយ ។"
+
 msgid "Nickname in use"
-msgstr "សម្មតិនាម"
+msgstr "សម្មតិនាម​កំពុង​ប្រើ"
 
 msgid "Cannot change nick"
 msgstr "មិនអាច​ផ្លាស់ប្ដូរ​សម្មតិនាម​បានទេ"
@@ -3711,31 +3711,23 @@
 msgstr "កំហុស SASL"
 
 msgid "The BOSH connection manager terminated your session."
-msgstr ""
-
-#, fuzzy
+msgstr "កម្មវិធី​គ្រប់គ្រង​កា​រតភ្ជាប់ BOSH បាន​បញ្ចប់​សម័យ​របស់​អ្នក ។"
+
 msgid "No session ID given"
-msgstr "គ្មាន​ហេតុផល​បាន​ផ្ដល់"
-
-#, fuzzy
+msgstr "គ្មាន​លេខសម្គាល់​សម័យ​ត្រូវ​បានផ្ដល់​ទេ"
+
 msgid "Unsupported version of BOSH protocol"
-msgstr "កំណែ​ដែល​មិនបានគាំទ្រ"
-
-#, fuzzy
+msgstr "កំណែ​មិន​បានគាំទ្រ​ពិធីការ BOSH"
+
 msgid "Unable to establish a connection with the server"
-msgstr ""
-"មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ​ម៉ាស៊ីនបម្រើ ៖\n"
-"%s"
+msgstr "មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ​ម៉ាស៊ីម​បម្រើ​ទេ"
 
 #, fuzzy, c-format
 msgid "Unable to establish a connection with the server: %s"
-msgstr ""
-"មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ​ម៉ាស៊ីនបម្រើ ៖\n"
-"%s"
-
-#, fuzzy
+msgstr "មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ​ម៉ាស៊ីម​បម្រើ​ទេ"
+
 msgid "Unable to establish SSL connection"
-msgstr "មិនអាច​ចាប់ផ្ដើម​កា​រតភ្ជាប់​បានទេ"
+msgstr "មិន​អាច​បង្កើត​ការ​តភ្ជាប់ SSL"
 
 msgid "Full Name"
 msgstr "ឈ្មោះ​ពេញ"
@@ -3801,23 +3793,22 @@
 msgid "Operating System"
 msgstr "ប្រព័ន្ធ​ប្រតិបត្តិការ"
 
-#, fuzzy
 msgid "Local Time"
-msgstr "ឯកសារ​មូលដ្ឋាន ៖"
+msgstr "ពេលវេលា​ក្នុង​ស្រុក"
 
 msgid "Priority"
 msgstr "អាទិភាព"
 
 msgid "Resource"
-msgstr "ធមធាម"
+msgstr "ធនធាន"
 
 #, c-format
 msgid "%s ago"
-msgstr ""
+msgstr "%s កន្លង​ទៅ"
 
 #, fuzzy
 msgid "Logged Off"
-msgstr "បាន​ចូល"
+msgstr "បាន​ចេញ"
 
 msgid "Middle Name"
 msgstr "ឈ្មោះ​កណ្ដាល"
@@ -3985,26 +3976,25 @@
 msgid "Find Rooms"
 msgstr "រក​បន្ទប់"
 
-#, fuzzy
 msgid "Affiliations:"
 msgstr "ឈ្មោះ​ក្លែងក្លាយ ៖"
 
-#, fuzzy
 msgid "No users found"
-msgstr "រក​មិនឃើញ​អ្នក​ប្រើ​ដែលផ្គូផ្គង​ទេ"
-
-#, fuzzy
+msgstr "រក​មិនឃើញ​អ្នក​ប្រើ"
+
 msgid "Roles:"
-msgstr "តួនាទី"
+msgstr "តួនាទី ៖"
 
 #, fuzzy
 msgid "Ping timed out"
 msgstr "Ping អស់ពេល"
 
+#, fuzzy
 msgid ""
 "Unable to find alternative XMPP connection methods after failing to connect "
 "directly."
 msgstr ""
+"មិនអាច​រក​វិធីសាស្ត្រ​តភ្ជាប់ XMPP ជា​ជម្រើស​បានទេ បន្ទាប់​ពី​បរាជ័យ​ក្នុងការតភ្ជាប់​ដោយ​ផ្ទាល់ ។\n"
 
 msgid "Invalid XMPP ID"
 msgstr "លេខសម្គាល់ XMPP មិន​ត្រឹមត្រូវ"
@@ -4014,7 +4004,7 @@
 
 #, fuzzy
 msgid "Malformed BOSH URL"
-msgstr "បាន​បរាជ័យ​ក្នុងការ​តភ្ជាប់​ទៅ​ម៉ាស៊ីន​បម្រើ ។"
+msgstr "កា​រតភ្ជាប់​ម៉ាស៊ីន​បម្រើ BOSH មិន​ត្រឹមត្រូវ"
 
 #, c-format
 msgid "Registration of %s@%s successful"
@@ -4082,10 +4072,6 @@
 msgid "Change Registration"
 msgstr "ផ្លាស់​ប្តូរ​ការ​ចុះ​ឈ្មោះ"
 
-#, fuzzy
-msgid "Malformed BOSH Connect Server"
-msgstr "បាន​បរាជ័យ​ក្នុងការ​តភ្ជាប់​ទៅ​ម៉ាស៊ីន​បម្រើ ។"
-
 msgid "Error unregistering account"
 msgstr "កំហុស​ក្នុងកា​រលុប​ការ​ចុះឈ្មោះ​គណនី"
 
@@ -4371,19 +4357,19 @@
 msgid "Unable to ping user %s"
 msgstr "មិនអាច ping អ្នក​ប្រើ %s បានទេ"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to buzz, because there is nothing known about %s."
-msgstr "មិនអាច​កេះកៀវ​បានទេ ពីព្រោះ​មិន​ស្គាល់​អំពី​អ្នកប្រើ %s ។"
-
-#, fuzzy, c-format
+msgstr "មិនអាច​កេះកៀវ​បានទេ ពីព្រោះ​មិន​ស្គាល់​​អ្វី​ទាំង​អស់​​ពី​អ្នកប្រើ %s ។"
+
+#, c-format
 msgid "Unable to buzz, because %s might be offline."
-msgstr "មិនអាចកេះកៀង​បានទេ ពីព្រើ​អ្នកប្រើ %s នៅ​ក្រៅ​បណ្ដាញ ។"
-
-#, fuzzy, c-format
+msgstr "មិន​អាច​កេះកៀវ​បានទេ ពីព្រោះ %s នៅ​ក្រៅ​បណ្ដាញ ។"
+
+#, c-format
 msgid ""
 "Unable to buzz, because %s does not support it or does not wish to receive "
 "buzzes now."
-msgstr "មិនអាច​កេះកៀវ​បានទេ ពីព្រោះ​អ្នក​ប្រើ %s មិន​គាំទ្រ​វា​ទេ ។"
+msgstr "មិនអាច​កេះកៀវ​បានទេ ពីព្រោះ %s មិន​គាំទ្រ​វា​ទេ ឬ​មិនមាន​បំណង​​ទទួល​ការ​កេះកៀវ​​ឥឡូវ​នោះ​ទេ ។"
 
 #, c-format
 msgid "Buzzing %s..."
@@ -4398,34 +4384,32 @@
 msgid "%s has buzzed you!"
 msgstr "%s បានកេះកៀវ​អ្នក !"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to initiate media with %s: invalid JID"
-msgstr "មិនអាច​ផ្ញើ​ឯកសារ​ទៅ​កាន់ %s បានទេ ដោយសារ​តែ JID មិន​ត្រឹមត្រូវ"
-
-#, fuzzy, c-format
+msgstr "មិន​អាច​ចាប់ផ្ដើម​មេឌៀជា​មួយ​ %s បានទេ ៖ JID មិន​ត្រឹមត្រូវ"
+
+#, c-format
 msgid "Unable to initiate media with %s: user is not online"
-msgstr "មិនអាច​ផ្ញើ​ឯកសារ %s បានទេ អ្នកប្រើ​មិន​នៅ​លើ​បណ្ដាញ​ទេ"
-
-#, fuzzy, c-format
+msgstr "មិនអាច​ចាប់ផ្ដើម​មេឌៀ​ជា​មួយ %s ៖ អ្នក​ប្រើ​មិន​នៅ​លើ​បណ្ដាញ​ទេ"
+
+#, c-format
 msgid "Unable to initiate media with %s: not subscribed to user presence"
-msgstr "មិនអាច​ផ្ញើ​ឯកសារ %s បានទេ មិនបានជាវ​ទៅ​វត្តមាន​របស់​អ្នកប្រើ"
-
-#, fuzzy
+msgstr "មិន​អាច​ចាប់ផ្ដើម​មេឌៀ​ជា​មួយ %s បានទេ ៖ មិន​បានជាវ​ទៅ​វត្តមាន​អ្នក​ប្រើ​បានទេ"
+
 msgid "Media Initiation Failed"
-msgstr "បានបរាជ័យ​ក្នុងកា​រចុះឈ្មោះ"
-
-#, fuzzy, c-format
+msgstr "បានបរាជ័យ​ក្នុងកា​រចាប់ផ្ដើម​មេឌៀ"
+
+#, c-format
 msgid ""
 "Please select the resource of %s with which you would like to start a media "
 "session."
-msgstr "សូម​ជ្រើស​ធនធាន​របស់ %s ដែល​អ្នក​ចង់​ផ្ញើ​ឯកសារ"
+msgstr "សូម​ជ្រើស​ធនធាន %s ដែល​អ្នក​ចង់​ចាប់ផ្ដើម​សម័យ​មេឌៀ ។"
 
 msgid "Select a Resource"
 msgstr "ជ្រើស​ធនធាន"
 
-#, fuzzy
 msgid "Initiate Media"
-msgstr "ចាប់ផ្ដើមជជែក"
+msgstr "ចាប់ផ្ដើម​មេឌៀ"
 
 msgid "config:  Configure a chat room."
 msgstr "config ៖  កំណត់​រចនាសម្ព័ន្ធ​បន្ទប់​ជជែក ។"
@@ -4445,21 +4429,19 @@
 msgid "ban &lt;user&gt; [reason]:  Ban a user from the room."
 msgstr "ហាមឃាត់ &lt;អ្នក​ប្រើ&gt; [ហេតុផល] ៖  ហាមឃាត់​អ្នកប្រើ​ពី​បន្ទប់ ។"
 
-#, fuzzy
 msgid ""
 "affiliate &lt;owner|admin|member|outcast|none&gt; [nick1] [nick2] ...: Get "
 "the users with an affiliation or set users' affiliation with the room."
 msgstr ""
-"ទាក់ទង &lt;អ្នក​ប្រើ&gt; &lt;ម្ចាស់|អ្នកគ្រប់គ្រង|សមាជិក|outcast|គ្មាន&gt; ៖ កំណត់​ទំនាក់ទំនង​"
-"របស់​អ្នក​ប្រើ​ជា​មួយ​នឹង​បន្ទប់ ។"
-
-#, fuzzy
+"affiliate &lt;owner|admin|member|outcast|none&gt; [nick1] [nick2] ...: យក​អ្នក​"
+"ប្រើ​ជា​មួយទំនាក់ទំនង ឬ​កំណត់​ទំនាក់ទំនង​របស់​អ្នកប្រើ​​ក្នុង​បន្ទប់នេះ ។"
+
 msgid ""
 "role &lt;moderator|participant|visitor|none&gt; [nick1] [nick2] ...: Get the "
 "users with an role or set users' role with the room."
 msgstr ""
-"តួនាទី &lt;អ្នក​ប្រើ&gt; &lt;អ្នកអន្តរការី|អ្នក​ចូលរួម|អ្នក​ទស្សនា|គ្មាន&gt; ៖ កំណត់​តួនាទី​របស់​អ្នក​"
-"ប្រើ​នៅ​ក្នុង​បន្ទប់ ។"
+"តួនាទី &lt;អន្តរការី|អ្នក​ចូលរួម|អ្នក​ទស្សនា|គ្មាន&gt; [nick1] [nick2] ...: យក​អ្នក​ប្រើ​"
+"ដែលមានតួនាទី ឬ​កំណត់​តួនាទី​របស់​អ្នក​ក្នុង​បន្ទប់ ។"
 
 msgid "invite &lt;user&gt; [message]:  Invite a user to the room."
 msgstr "អញ្ជើញ &lt;អ្នក​ប្រើ&gt; [សារ] ៖  អញ្ជើញ​អ្នក​ប្រើ​ឲ្យ​ចូល​បន្ទប់ ។"
@@ -4595,18 +4577,16 @@
 
 #, fuzzy
 msgid "An error occurred on the in-band bytestream transfer\n"
-msgstr "កំហុស​មួយ​បានកើត​ឡើង​ខណៈពេល​បើក​ឯកសារ ។"
-
-#, fuzzy
+msgstr "កំហុស​មួយ​បានកើតឡើង​នៅ​លើ​កា​រផ្ទេរ​ស្ទ្រីមបៃ​ក្នុង​ក្រុម\n"
+
 msgid "Transfer was closed."
-msgstr "បាន​បរាជ័យ​ក្នុងកា​រផ្ទេរ​ឯកសារ"
-
-#, fuzzy
+msgstr "កា​រផ្ទេរ​ត្រូវ​បាន​បិទ ។"
+
 msgid "Failed to open the file"
-msgstr "បានបរាជ័យ​ក្នុងការ​បើក​ឯកសារ '%s' ៖ %s"
+msgstr "បានបរាជ័យ​ក្នុងការ​បើក​ឯកសារ"
 
 msgid "Failed to open in-band bytestream"
-msgstr ""
+msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បើក​នៅ​ក្នុង​ស្ទ្រីម​បៃ​ក្នុងក្រុម"
 
 #, c-format
 msgid "Unable to send file to %s, user does not support file transfers"
@@ -4925,6 +4905,22 @@
 msgid "Non-IM Contacts"
 msgstr "ទំនាក់ទំនង​ដែល​មិនមាន​ជា IM"
 
+#, c-format
+msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>"
+msgstr ""
+
+#, c-format
+msgid "%s sent a wink, but it could not be saved"
+msgstr ""
+
+#, c-format
+msgid "%s sent a voice clip. <a href='audio://%s'>Click here to play it</a>"
+msgstr ""
+
+#, c-format
+msgid "%s sent a voice clip, but it could not be saved"
+msgstr ""
+
 #, fuzzy, c-format
 msgid "%s sent you a voice chat invite, which is not yet supported."
 msgstr "%s បានផ្ញើ​ការ​អញ្ជើញ​អ្នក​ឲ្យ​បើក​ម៉ាស៊ីន​ថត​តាមបណ្ដាញ ដែល​មិន​ត្រូវ​បាន​គាំទ្រ​នៅ​ឡើយទេ ។"
@@ -5079,6 +5075,29 @@
 msgid "SSL support is needed for MSN. Please install a supported SSL library."
 msgstr "ការ​គាំទ្រ SSL ត្រូវ​បានទាមទារ​សម្រាប់ MSN ។ សូម​ដំឡើង​បណ្ណាល័យ SSL ដែល​បានគាំទ្រ ។"
 
+#, fuzzy, c-format
+msgid ""
+"Unable to add the buddy %s because the username is invalid.  Usernames must "
+"be a valid email address."
+msgstr ""
+"មិនអាច​បន្ថែម​មិត្តភក្ដិ %s បាន​ទេ ពីព្រោះ​ឈ្មោះ​អ្នក​ប្រើ​មិន​ត្រឹមត្រូវ ។ ឈ្មោះ​អ្នកប្រើ​ត្រូវ​តែ​ជា​"
+"អាសយដ្ឋានអ៊ីមែល​ត្រឹមត្រូវ ឬ​ចាប់ផ្ដើម​ដោយ​អក្សរ ហើយមាន​តែ​អក្សរ លេខ និង​ចន្លោះ ឬ​មាន​តែ​លេខ ។"
+
+msgid "Unable to Add"
+msgstr "មិនអាច​បន្ថែម"
+
+msgid "Authorization Request Message:"
+msgstr "សារ​សំណើ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ ៖"
+
+msgid "Please authorize me!"
+msgstr "សូម​អនុញ្ញាត​ខ្ញុំ !"
+
+#. *
+#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
+#.
+msgid "_OK"
+msgstr "យល់ព្រម"
+
 msgid "Error retrieving profile"
 msgstr "កំហុសក្នុងការ​ទៅ​ទទួល​យក​ទម្រង់"
 
@@ -5268,13 +5287,14 @@
 msgid "%s just sent you a Nudge!"
 msgstr "%s គ្រាន់​តែ​​បានផ្ញើ​ឲ្យ​អ្នក​នូវ​កា​រច្រានចេញ !"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unknown error (%d): %s"
-msgstr "មិន​ស្គាល់​កំហុស (%d)"
+msgstr "មិន​ស្គាល់​កំហុស (%d) ៖ %s"
 
 msgid "Unable to add user"
 msgstr "មិនអាច​បន្ថែម​អ្នក​ប្រើ​បានទេ"
 
+#. Unknown error!
 #, c-format
 msgid "Unknown error (%d)"
 msgstr "មិន​ស្គាល់​កំហុស (%d)"
@@ -6413,9 +6433,8 @@
 #. Unregistered username
 #. uid is not exist
 #. the username does not exist
-#, fuzzy
 msgid "Username does not exist"
-msgstr "មិន​មាន​​អ្នក​ប្រើ​ទេ"
+msgstr "មិនមាន​​ឈ្មោះ​អ្នក​ប្រើ"
 
 #. Suspended account
 #, fuzzy
@@ -6426,6 +6445,7 @@
 msgid "The AOL Instant Messenger service is temporarily unavailable."
 msgstr "សេវា​កម្មវិធី​ផ្ញើសារបន្ទាន់ AOL បច្ចុប្បន្ន​ប្រើ​មិនបានទេ ។"
 
+#. client too old
 #, c-format
 msgid "The client version you are using is too old. Please upgrade at %s"
 msgstr "កំណែ​ម៉ាស៊ីន​ភ្ញៀវ​ដែល​អ្នក​កំពុង​ប្រើ​ចាស់​ពេក ។ សូម​ធ្វើ​ឲ្យ​ប្រសើរ​នៅ %s"
@@ -6449,12 +6469,6 @@
 msgid "Enter the 6 digit number from the digital display."
 msgstr "បញ្ចូលលេខ ៦ តួលេខ​ពី​ការ​បង្ហាញឌីជីថល ។"
 
-#. *
-#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
-#.
-msgid "_OK"
-msgstr "យល់ព្រម"
-
 msgid "Password sent"
 msgstr "បានផ្ញើ​ពាក្យ​​​សម្ងាត់"
 
@@ -6464,12 +6478,6 @@
 msgid "Please authorize me so I can add you to my buddy list."
 msgstr "សូម​អនុញ្ញាត​ខ្ញុំ ដូច្នេះ​ខ្ញុំ​អាច​បន្ថែម​អ្នក​នៅកាន់​បញ្ជី​មិត្តភក្ដិ​របស់​​ខ្ញុំ ។"
 
-msgid "Authorization Request Message:"
-msgstr "សារ​សំណើ​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ ៖"
-
-msgid "Please authorize me!"
-msgstr "សូម​អនុញ្ញាត​ខ្ញុំ !"
-
 msgid "No reason given."
 msgstr "គ្មាន​ហេតុផល​បានផ្ដល់ ។"
 
@@ -6773,9 +6781,6 @@
 "មិនអាច​បន្ថែម​មិត្តភក្ដិ %s បាន​ទេ ពីព្រោះ​ឈ្មោះ​អ្នក​ប្រើ​មិន​ត្រឹមត្រូវ ។ ឈ្មោះ​អ្នកប្រើ​ត្រូវ​តែ​ជា​"
 "អាសយដ្ឋានអ៊ីមែល​ត្រឹមត្រូវ ឬ​ចាប់ផ្ដើម​ដោយ​អក្សរ ហើយមាន​តែ​អក្សរ លេខ និង​ចន្លោះ ឬ​មាន​តែ​លេខ ។"
 
-msgid "Unable to Add"
-msgstr "មិនអាច​បន្ថែម"
-
 msgid "Unable to Retrieve Buddy List"
 msgstr "មិនអាច​ទៅ​យក​បញ្ជីមិត្តភ្ដិ​បានទេ"
 
@@ -7159,30 +7164,26 @@
 msgstr "ចំណាំ"
 
 #. callback
-#, fuzzy
 msgid "Buddy Memo"
-msgstr "កែប្រែ មិត្តភក្ដិ"
+msgstr "អនុស្សារណ​មិត្តភក្ដិ"
 
 msgid "Change his/her memo as you like"
-msgstr ""
-
-#, fuzzy
+msgstr "ផ្លាស់ប្ដូរ​កំណត់​ហេតុ​រំលឹក​របស​គាត់​តាម​ដែល​អ្នក​ពេញ​ចិត្ត"
+
 msgid "_Modify"
-msgstr "កែប្រែ"
-
-#, fuzzy
+msgstr "កែប្រែ "
+
 msgid "Memo Modify"
-msgstr "កែប្រែ"
-
-#, fuzzy
+msgstr "កែប្រែ​កំណត់​ហេតុ​រំលឹក"
+
 msgid "Server says:"
-msgstr "ម៉ាស៊ីនបម្រើ​រវល់"
+msgstr "ម៉ាស៊ីនបម្រើ​​និយាយ ៖"
 
 msgid "Your request was accepted."
-msgstr ""
+msgstr "សំណើ​របស់​អ្នក​ត្រូវបាន​ទទួល​យក ។"
 
 msgid "Your request was rejected."
-msgstr ""
+msgstr "សំណើ​របស់​អ្នក​ត្រូវ​បាន​ច្រានចោល ។"
 
 #, c-format
 msgid "%u requires verification"
@@ -7494,7 +7495,7 @@
 msgstr "<p><b>អ្នក​សាកល្បង​ហ្មតចត់</b> ៖<br>\n"
 
 msgid "and more, please let me know... thank you!))"
-msgstr ""
+msgstr "និង​ផ្សេងៗ​ទៀត សូម​ឲ្យ​ខ្ញុំ​ដឹង... អរគុណ !))"
 
 msgid "<p><i>And, all the boys in the backroom...</i><br>\n"
 msgstr "<p><i>ប្រុសៗ​ទាំង​អស់​នៅ​ក្នុង​បន្ទប់...</i><br>\n"
@@ -7640,7 +7641,7 @@
 
 #, fuzzy
 msgid "Unable to resolve hostname"
-msgstr "មិនអាច​តភ្ជាប់​ទៅ​កាន់​ម៉ាស៊ីន​បម្រើ​បានទេ ។"
+msgstr "មិនអាច​ដោះស្រាយ​ម៉ាស៊ីន​បម្រើ​បានទេ"
 
 msgid "Invalid server or port"
 msgstr "ម៉ាស៊ីន​បម្រើ ឬ​ច្រក​មិន​ត្រឹមត្រូវ"
@@ -8684,10 +8685,6 @@
 msgid "Connecting to SILC Server"
 msgstr "តភ្ជាប់​ទៅ​កាន់​ម៉ាស៊ីន​បម្រើ SILC"
 
-#, fuzzy
-msgid "Unable to not load SILC key pair"
-msgstr "មិនអាច​ផ្ទុក​ការ​​ផ្គូផ្គង​សោ SILC បានទេ"
-
 msgid "Out of memory"
 msgstr "អស់​សតិOut of memory"
 
@@ -9252,7 +9249,7 @@
 msgstr "កម្មវិធី​ជំនួយ​ពិធីការ​របស់យ៉ាហ៊ូ"
 
 msgid "Your SMS was not delivered"
-msgstr ""
+msgstr "SMS របស់​អ្នក​មិន​ត្រូវ​បាន​បញ្ជូន​ទេ"
 
 msgid "Your Yahoo! message did not get sent."
 msgstr "យ៉ាហ៊ូ​របស់​អ្នក ! សារ​មិន​ត្រូវ​បានផ្ញើ​ទេ ។"
@@ -9277,28 +9274,30 @@
 msgstr "បន្ថែម​មិត្តភក្ដិ​ដែល​បាន​ច្រានចេញ"
 
 #. Some error in the received stream
-#, fuzzy
 msgid "Received invalid data"
-msgstr "បាន​ទទួល​ទិន្នន័យ​មិនត្រឹមត្រូវ​នៅ​លើ​កា​រតភ្ជាប់​ជា​មួយ​ម៉ាស៊ីន​បម្រើ ។ "
+msgstr "បាន​ទទួល​ទិន្នន័យ​មិន​ត្រឹមត្រូវ"
 
 #. security lock from too many failed login attempts
 #, fuzzy
 msgid ""
 "Account locked: Too many failed login attempts.  Logging into the Yahoo! "
 "website may fix this."
-msgstr "មិន​ស្គាល់លេខ​កំហុស %d ។ ចូល​ក្នុង​តំបន់យ៉ាហ៊ូ ! អាចជួសជុល​វា​បាន ។"
+msgstr ""
+"គណនី​ជាប់សោ ៖ ប៉ុនប៉ង​ចូល​ច្រើន​​ដង​ពេក ។\n"
+"ចូល​ក្នុង Yahoo! តំបន់​បណ្ដាញ​អាច​ជួសជុល​វា ។"
 
 #. indicates a lock of some description
 #, fuzzy
 msgid ""
 "Account locked: Unknown reason.  Logging into the Yahoo! website may fix "
 "this."
-msgstr "មិន​ស្គាល់លេខ​កំហុស %d ។ ចូល​ក្នុង​តំបន់យ៉ាហ៊ូ ! អាចជួសជុល​វា​បាន ។"
+msgstr ""
+"គណនី​ជាប់សោ ៖ មិនស្គាល់​ហេតុផល​ទេ ។\n"
+"ចូល​ក្នុង Yahoo! តំបន់​បណ្ដាញ​អាចជួសជុល​វា ។"
 
 #. username or password missing
-#, fuzzy
 msgid "Username or password missing"
-msgstr "ឈ្មោះ​អ្នក​ប្រើ ឬ​ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ"
+msgstr "បាត់​ឈ្មោះ​អ្នក​ប្រើ ឬ​ពាក្យ​សម្ងាត់"
 
 #, c-format
 msgid ""
@@ -9354,9 +9353,7 @@
 
 #, fuzzy, c-format
 msgid "Unable to establish a connection with %s: %s"
-msgstr ""
-"មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ​ម៉ាស៊ីនបម្រើ ៖\n"
-"%s"
+msgstr "មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ​ម៉ាស៊ីម​បម្រើ​ទេ"
 
 msgid "Not at Home"
 msgstr "មិននៅ​ផ្ទះ​ទេ"
@@ -9500,12 +9497,9 @@
 msgid "The user's profile is empty."
 msgstr "ទម្រង់​របស់​អ្នកប្រើ​ទទេរ ។"
 
-#, c-format
-msgid "%s declined your conference invitation to room \"%s\" because \"%s\"."
-msgstr "%s បានបដិសេធ​ការ​អញ្ជើញ​សន្និសីទ​របស់​អ្នក​​ក្នុង​បន្ទប់ \"%s\" ដោយ​សារតែ \"%s\" ។"
-
-msgid "Invitation Rejected"
-msgstr "បានបដិសេធ​ការ​អញ្ជើញ"
+#, fuzzy, c-format
+msgid "%s has declined to join."
+msgstr "%s បានចូល ។"
 
 msgid "Failed to join chat"
 msgstr "បានបរាជ័យ​ក្នុងការ​ចូលរួម​ក្នុងការ​ជជែក"
@@ -9929,13 +9923,13 @@
 msgid "Error Reading %s"
 msgstr "កំហុស​ក្នុងការ​អាន %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "An error was encountered reading your %s.  The file has not been loaded, and "
 "the old file has been renamed to %s~."
 msgstr ""
-"មាន​កំហុស​ក្នុងការ​អាន​ %s របស់​​អ្នក ។ ពួកវា​មិន​ត្រូវ​បានផ្ទុក​ទេ ហើយ​ឯកសារ​ចាស់​ត្រូវ​បាន​ប្ដូរ​ឈ្មោះ​ទៅជា %"
-"s~."
+"មានកំហុស​មួយ​ក្នុងការ​អាន​ %s របស់​អ្នក ។ ឯកសារ​មិន​ត្រូវ​បានផ្ទុក​ទេ ហើយ​ឯកសារ​ចាស់​ត្រូវ​បាន​ប្ដូរ​ឈ្មោះ​ទៅ​"
+"ជា %s~ ។"
 
 msgid "Internet Messenger"
 msgstr "កម្មវិធី​ផ្ញើសារ​អ៊ីនធឺណិត"
@@ -9979,7 +9973,8 @@
 msgid "Use this buddy _icon for this account:"
 msgstr "ប្រើ​រូបតំណាង​មិត្តភក្ដិ​នេះ​សម្រាប់គណនី​នេះ ៖"
 
-msgid "_Advanced"
+#, fuzzy
+msgid "Ad_vanced"
 msgstr "កម្រិត​ខ្ពស់"
 
 msgid "Use GNOME Proxy Settings"
@@ -10043,7 +10038,7 @@
 msgstr "បង្កើត​គណនី​ថ្មី​នៅ​លើ​ម៉ាស៊ីនបម្រើ"
 
 #, fuzzy
-msgid "_Proxy"
+msgid "P_roxy"
 msgstr "ប្រូកស៊ី"
 
 msgid "Enabled"
@@ -10090,9 +10085,8 @@
 msgid "Please update the necessary fields."
 msgstr "សូម​ធ្វើ​ឲ្យ​វាល​ដែល​ចាំបាច់ទាន់សម័យ ។"
 
-#, fuzzy
 msgid "A_ccount"
-msgstr "គណនី"
+msgstr "គណនី "
 
 msgid ""
 "Please enter the appropriate information about the chat you would like to "
@@ -10117,16 +10111,14 @@
 msgid "I_M"
 msgstr "IM"
 
-#, fuzzy
 msgid "_Audio Call"
-msgstr "បន្ថែម​ការជជែក"
+msgstr "ការហៅ​អូឌីយ៉ូ"
 
 msgid "Audio/_Video Call"
-msgstr ""
-
-#, fuzzy
+msgstr "អូឌីយ៉ូ/ការ​ហៅ​វីដេអូ"
+
 msgid "_Video Call"
-msgstr "ជជែក​តាម​វីដេអូ"
+msgstr "ការ​ហៅ​វីដេអូ "
 
 msgid "_Send File..."
 msgstr "ផ្ញើ​ឯកសារ..."
@@ -10267,9 +10259,8 @@
 msgid "/Tools/_Certificates"
 msgstr "/ឧបករណ៍/វិញ្ញាបនបត្រ"
 
-#, fuzzy
 msgid "/Tools/Custom Smile_ys"
-msgstr "/ឧបករណ៍/សញ្ញាណ​អារម្មណ៍"
+msgstr "/ឧបករណ៍/សញ្ញាណ​អារម្មណ៍​ផ្ទាល់ខ្លួន"
 
 msgid "/Tools/Plu_gins"
 msgstr "/ឧបករណ៍/កម្មវិធី​ជំនួយ"
@@ -10397,7 +10388,7 @@
 msgstr "តាម​ស្ថានភាព"
 
 msgid "By recent log activity"
-msgstr ""
+msgstr "តាម​សកម្មភាព​កំណត់ហេតុ​ថ្មីៗ"
 
 #, c-format
 msgid "%s disconnected"
@@ -10414,7 +10405,7 @@
 msgstr "បើក​ឡើង​វិញ"
 
 msgid "SSL FAQs"
-msgstr ""
+msgstr "SSL FAQs"
 
 msgid "Welcome back!"
 msgstr "សូម​ស្វាគមន៍ការ​​ត្រឡប់​មក​វិញ !"
@@ -10509,7 +10500,7 @@
 msgstr "នៅ​ក្នុង​ការជជែក​បន្ទាប់​ពី​បង្អួច​ត្រូវ​បានបិទ ។"
 
 msgid "Please enter the name of the group to be added."
-msgstr "សូម​បញ្ចូល​ឈ្មោះ​របស​ក្រុម​ដែល​ត្រូ​វ​បន្ថែម ។"
+msgstr "សូម​បញ្ចូល​ឈ្មោះ​​​ក្រុម​ដែល​ត្រូ​វ​បន្ថែម ។"
 
 msgid "Enable Account"
 msgstr "បើក​គណនី"
@@ -10588,7 +10579,7 @@
 
 #, fuzzy
 msgid "Contact Text"
-msgstr "ផ្លូវ​កាត់"
+msgstr "អត្ថបទ​ផ្លូវកាត់"
 
 msgid "The text information for when a contact is expanded"
 msgstr ""
@@ -10736,21 +10727,17 @@
 msgid "/Conversation/Clea_r Scrollback"
 msgstr "/សន្ទនា/ជំម្រះ"
 
-#, fuzzy
 msgid "/Conversation/M_edia"
-msgstr "/សន្ទនា/ផ្សេងៗ​ទៀត"
-
-#, fuzzy
+msgstr "/សន្ទនា/មេឌៀ"
+
 msgid "/Conversation/Media/_Audio Call"
-msgstr "/សន្ទនា/ផ្សេងៗ​ទៀត"
-
-#, fuzzy
+msgstr "/សន្ទនា/មេឌៀ/ការ​ហៅ​អូឌីយ៉ូ"
+
 msgid "/Conversation/Media/_Video Call"
-msgstr "/សន្ទនា/ផ្សេងៗ​ទៀត"
-
-#, fuzzy
+msgstr "/សន្ទនា/មេឌៀ/ការ​ហៅ​វីដេអូ"
+
 msgid "/Conversation/Media/Audio\\/Video _Call"
-msgstr "/សន្ទនា/មើល​កំណត់​ហេតុ"
+msgstr "/សន្ទនា/មេឌៀ/អូឌីយ៉ូ/ការ​ហៅ​វីដេអូ"
 
 msgid "/Conversation/Se_nd File..."
 msgstr "/សន្ទនា/ផ្ញើ​ឯកសារ..."
@@ -10824,17 +10811,14 @@
 msgid "/Conversation/View Log"
 msgstr "/សន្ទនា/មើល​កំណត់​ហេតុ"
 
-#, fuzzy
 msgid "/Conversation/Media/Audio Call"
-msgstr "/សន្ទនា/ផ្សេងៗ​ទៀត"
-
-#, fuzzy
+msgstr "/សន្ទនា/មេឌៀ/ការហៅ​អូឌីយ៉ូ"
+
 msgid "/Conversation/Media/Video Call"
-msgstr "/សន្ទនា/មើល​កំណត់​ហេតុ"
-
-#, fuzzy
+msgstr "/សន្ទនា/មេឌៀ/ការ​ហៅ​វីដេអូ"
+
 msgid "/Conversation/Media/Audio\\/Video Call"
-msgstr "/សន្ទនា/ផ្សេងៗ​ទៀត"
+msgstr "/សន្ទនា/មេឌៀ/អូឌីយ៉ូ\\/ការ​ហៅ​វីដេអូ"
 
 msgid "/Conversation/Send File..."
 msgstr "/សន្ទនា/ផ្ញើ​ឯកសារ..."
@@ -11018,7 +11002,7 @@
 msgstr "Ka-Hing Cheung"
 
 msgid "voice and video"
-msgstr ""
+msgstr "សំឡេង និង​វីដេអូ"
 
 msgid "support"
 msgstr "គាំទ្រ"
@@ -11144,9 +11128,8 @@
 msgid "Hungarian"
 msgstr "ហុងគ្រី"
 
-#, fuzzy
 msgid "Armenian"
-msgstr "រូម៉ានី"
+msgstr "អាម៉ីនៀន"
 
 msgid "Indonesian"
 msgstr "ឥណ្ឌូនេស៊ី"
@@ -11163,9 +11146,8 @@
 msgid "Ubuntu Georgian Translators"
 msgstr "អ្នកប្រើ​ប្រែ​​ហ្សកហ្ស៊ី​របស់​អូប៊ុនទូ"
 
-#, fuzzy
 msgid "Khmer"
-msgstr "ផ្សេងៗទៀត"
+msgstr "ខ្មែរ"
 
 msgid "Kannada"
 msgstr "កិណាដា"
@@ -11246,7 +11228,7 @@
 msgstr "ស៊ុយអែដ"
 
 msgid "Swahili"
-msgstr ""
+msgstr "ស្វាហ៊ីលី"
 
 msgid "Tamil"
 msgstr "តាមីល"
@@ -11866,7 +11848,7 @@
 msgid "%s %s. Try `%s -h' for more information.\n"
 msgstr "%s %s ។ ព្យាយាម `%s -h' សម្រាប់​ព័ត៌មាន​បន្ថែម ។\n"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s %s\n"
 "Usage: %s [OPTION]...\n"
@@ -11884,20 +11866,21 @@
 "  -v, --version       display the current version and exit\n"
 msgstr ""
 "%s %s\n"
-"ការ​ប្រើប្រាស់ ៖ %s [ជម្រើស]...\n"
+"ការប្រើប្រាស់ ៖ %s [ជម្រើស]...\n"
 "\n"
 "  -c, --config=DIR    ប្រើ DIR សម្រាប់​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ\n"
-"  -d, --debug         បោះពុម្ព​សារ​បំបាត់​កំហុស​ទៅ stdout\n"
+"  -d, --debug         បោះពុម្ព​សារ​បំបាត់កំហុស​ទៅ​កាន់ stdout\n"
+"  -f, --force-online  បង្ខំ​លើបណ្ដាញ ទាក់ទង​នឹង​ស្ថានភាព​បណ្ដាញ\n"
 "  -h, --help          បង្ហាញ​ជំនួយ​នេះ ហើយ​ចេញ\n"
-"  -m, --multiple      មិនប្រាកដ​ធាតុ​តែ​មួយ\n"
+"  -m, --multiple      កុំ​ប្រាកដ​លើធាតុ​តែ​មួយ\n"
 "  -n, --nologin       កុំ​ចូល​ដោយ​ស្វ័យ​ប្រវត្តិ\n"
-"  -l, --login[=NAME]  បើក​គណនី​ដែល​បានបញ្ជាក់ (អាគុយម៉ង​ជម្រើស NAME\n"
-"                      បញ្ជាក់​គណនី​ត្រូវ​ប្រើ បំបែក​ដោយ​សញ្ញា (,) ។\n"
-"                      ដោយ​គ្មាន​គណនី​ដំបូង​នេះ​នឹង​ត្រូវ​បានបើក) ។\n"
+"  -l, --login[=NAME]  បើក​គណនី​ដែលបាន​បញ្ជាក់ (អាគុយម៉ង់​ជម្រើស NAME\n"
+"                      បញ្ជាក់គណនី​ត្រូវ​ប្រើ បំបែក​ដោយ​សញ្ញា(,) ។\n"
+"                      ដោយ​មិនមាន​តែ​គណនី​ដំបូង​នឹង​ត្រូវ​បាន​បើក) ។\n"
 "  --display=DISPLAY   ការ​បង្ហាញ X ត្រូវ​ប្រើ\n"
 "  -v, --version       បង្ហាញ​កំណែ​បច្ចុប្បន្ន ហើយ​ចេញ\n"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s %s\n"
 "Usage: %s [OPTION]...\n"
@@ -11964,22 +11947,21 @@
 msgstr "ចេញ ដោយ​សារ​តែ​ម៉ាស៊ីន​ភ្ញើ libpurple ផ្សេង​ទៀត​កំពុង​រត់​រួច​ហើយ ។\n"
 
 msgid "/_Media"
-msgstr ""
+msgstr "/មេឌៀ"
 
 msgid "/Media/_Hangup"
-msgstr ""
-
-#, fuzzy
+msgstr "/មេឌៀ/រង់ចាំ"
+
 msgid "Calling..."
-msgstr "កំពុង​គណនា..."
+msgstr "កំពុង​ហៅ..."
 
 #, c-format
 msgid "%s wishes to start an audio/video session with you."
-msgstr ""
+msgstr "%s មាន​បំណង​ចាប់ផ្ដើម​សម័យ​អូឌីយ៉ូ/វីដេអូ​ជា​មួយ​អ្នក ។"
 
 #, c-format
 msgid "%s wishes to start a video session with you."
-msgstr ""
+msgstr "%s មាន​បំណង​ចាប់ផ្ដើម​សម័យ​វីដេអូ​ជាមួយ​អ្នក ។"
 
 #, c-format
 msgid "%s has %d new message."
@@ -12006,9 +11988,8 @@
 "The 'Manual' browser command has been chosen, but no command has been set."
 msgstr "ពាក្យ​បញ្ជា​កម្មវិធី​រុករក 'ដោយដៃ' ត្រូវ​បាន​ជ្រើស ប៉ុន្តែ​គ្មាន​ពាក្យ​បញ្ជា​ត្រូវ​បាន​ជ្រើស​ទេ ។"
 
-#, fuzzy
 msgid "No message"
-msgstr "មិន​ស្គាល់​សារ"
+msgstr "គ្មាន​សារ"
 
 msgid "Open All Messages"
 msgstr "បើក​សារ​ទាំងអស់"
@@ -12016,16 +11997,14 @@
 msgid "<span weight=\"bold\" size=\"larger\">You have mail!</span>"
 msgstr "<span weight=\"bold\" size=\"larger\">អ្នក​មាន​សំបុត្រ !</span>"
 
-#, fuzzy
 msgid "New Pounces"
-msgstr "ក្រុមមិត្តភក្ដិ​ថ្មី"
+msgstr "ក្រុម​មិត្តភក្ដិ​ថ្មី"
 
 msgid "Dismiss"
-msgstr ""
-
-#, fuzzy
+msgstr "បណ្ដេញ​ចេញ"
+
 msgid "<span weight=\"bold\" size=\"larger\">You have pounced!</span>"
-msgstr "<span weight=\"bold\" size=\"larger\">អ្នក​មាន​សំបុត្រ !</span>"
+msgstr "<span weight=\"bold\" size=\"larger\">អ្នក​​បាន​ដាក់​ជា​ក្រុម​មិត្តភក្ដិ !</span>"
 
 msgid "The following plugins will be unloaded."
 msgstr "កម្មវិធី​ជំនួយ​ដូច​ខាងក្រោម​នឹង​ត្រូវ​បានផ្ទុក​ឡើង ។"
@@ -12073,7 +12052,6 @@
 msgid "Select a file"
 msgstr "ជ្រើស​ឯកសារ"
 
-#, fuzzy
 msgid "Modify Buddy Pounce"
 msgstr "កែសម្រួល​ក្រុម​មិត្តភក្ដិ"
 
@@ -12150,49 +12128,49 @@
 msgid "Pounce Target"
 msgstr "ក្រុម​គោល​ដៅ​"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Started typing"
-msgstr "ចាប់ផ្ដើម​វាយ"
-
-#, fuzzy, c-format
+msgstr "បាន​ចាប់ផ្ដើម​វាយ"
+
+#, c-format
 msgid "Paused while typing"
-msgstr "ផ្អាក​ខណៈពេល​វាយ"
-
-#, fuzzy, c-format
+msgstr "បានផ្អាក​ខណៈពេល​វាយ"
+
+#, c-format
 msgid "Signed on"
-msgstr "ចូល"
-
-#, fuzzy, c-format
+msgstr "បាន​ចូល"
+
+#, c-format
 msgid "Returned from being idle"
-msgstr "%s បាន​ត្រឡប់​ពី​ស្ថានភាព​ទំនេរ (%s)"
-
-#, fuzzy, c-format
+msgstr "បាន​ត្រឡប់​ពី​ស្ថានភាព​ទំនេរ"
+
+#, c-format
 msgid "Returned from being away"
-msgstr "ត្រឡប់​ពី​ការ​ចាកឆ្ងាយ"
-
-#, fuzzy, c-format
+msgstr "បាន​ត្រឡប់​ពី​ស្ថានភាព​ចាកឆ្ងាយ"
+
+#, c-format
 msgid "Stopped typing"
-msgstr "ឈប់​វាយ"
-
-#, fuzzy, c-format
+msgstr "បញ្ឈប់​ការ​វាយ"
+
+#, c-format
 msgid "Signed off"
-msgstr "ចេញទ"
-
-#, fuzzy, c-format
+msgstr "បាន​ចេញ"
+
+#, c-format
 msgid "Became idle"
 msgstr "ក្លាយ​ជា​ទំនេរ"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Went away"
-msgstr "នៅពេល​ចាកឆ្ងាយ"
-
-#, fuzzy, c-format
+msgstr "នៅ​ពេល​ចាកឆ្ងាយ"
+
+#, c-format
 msgid "Sent a message"
-msgstr "ផ្ញើសារ"
-
-#, fuzzy, c-format
+msgstr "បាន​ផ្ញើសារ"
+
+#, c-format
 msgid "Unknown.... Please report this!"
-msgstr "មិនស្គាល់​ព្រឹត្តិការណ៍​ក្រុម ។ សូម​រាយការណ៍​វា !"
+msgstr "មិនស្គាល់.... សូម​រាយការណ៍​អំពី​បញ្ហា​នេះ !"
 
 #, fuzzy
 msgid "Theme failed to unpack."
@@ -12226,9 +12204,8 @@
 msgstr "បិទ​ការ​សន្ទនា​ដោយ​ប្រើ​គ្រាប់ចុច​គេច (Escape)"
 
 #. Buddy List Themes
-#, fuzzy
 msgid "Buddy List Theme"
-msgstr "បញ្ជី​មិត្តភក្ដិ"
+msgstr "ស្បែក​បញ្ជី​មិត្តភក្ដិ"
 
 #. System Tray
 msgid "System Tray Icon"
@@ -12368,7 +12345,7 @@
 
 #. TURN server
 msgid "Relay Server (TURN)"
-msgstr ""
+msgstr "បញ្ជូន​ម៉ាស៊ីន​បម្រើ​ត (TURN)"
 
 msgid "Proxy Server &amp; Browser"
 msgstr "ម៉ាស៊ីនបម្រើ​ប្រូកស៊ី &amp; កម្មវិធី​រុករក​"
@@ -12711,10 +12688,10 @@
 msgid "Status for %s"
 msgstr "ស្ថានភាព​សម្រាប់ %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "A custom smiley for '%s' already exists.  Please use a different shortcut."
-msgstr "សញ្ញា​អារម្មណ៍​ផ្ទាល់ខ្លួន​សម្រាប់​ផ្លូវកាត់​ដែល​បាន​ជ្រើស​មាន​រួច​ហើយ ។ សូម​បញ្ជី​ផ្លូវកាត់​ផ្សេង ។"
+msgstr "មាន​សញ្ញាណអារម្មណ៍​ផ្ទាល់ខ្លួន​សម្រាប់ '%s' រួច​ហើយ ។ សូម​ប្រើ​ផ្លូវកាត់​ផ្សេង ​។"
 
 msgid "Custom Smiley"
 msgstr "សញ្ញា​អារម្មណ៍​ផ្ទាល់ខ្លួន"
@@ -12728,28 +12705,24 @@
 msgid "Add Smiley"
 msgstr "បន្ថែម​សញ្ញាអារម្មណ៍"
 
-#, fuzzy
 msgid "_Image:"
-msgstr "រូបភាព"
+msgstr "រូបភាព ៖"
 
 #. Shortcut text
-#, fuzzy
 msgid "S_hortcut text:"
-msgstr "ផ្លូវ​កាត់"
+msgstr "អត្ថបទ​ផ្លូវកាត់ ៖"
 
 msgid "Smiley"
 msgstr "សញ្ញាអារម្មណ៍"
 
-#, fuzzy
 msgid "Shortcut Text"
-msgstr "ផ្លូវ​កាត់"
+msgstr "អត្ថបទ​ផ្លូវកាត់"
 
 msgid "Custom Smiley Manager"
 msgstr "កម្មវិធី​គ្រប់គ្រង​សញ្ញាអារម្មណ៍​ផ្ទាល់ខ្លួន"
 
-#, fuzzy
 msgid "Select Buddy Icon"
-msgstr "ជ្រើស​មិត្តភក្ដិ"
+msgstr "ជ្រើស​រូបតំណាង​មិត្តភក្ដិ"
 
 msgid "Click to change your buddyicon for this account."
 msgstr "ចុច​ដើម្បី​ផ្លាស់ប្ដូរ​រូបតំណាង​មិត្តភក្ដិ​របស់​អ្នកសម្រាប់គណនី​នេះ ។"
@@ -12866,9 +12839,8 @@
 "Failed to load image '%s': reason not known, probably a corrupt image file"
 msgstr "បានបរាជ័យ​ក្នុងការ​ផ្ទុក​រូបភាព '%s' ៖ មិនស្គាល់ហេតុផល ប្រហែលជា​ឯកសារ​រូបភាព​តូច"
 
-#, fuzzy
 msgid "_Open Link"
-msgstr "បើក​តំណ​នៅ​ក្នុង ៖"
+msgstr "បើក​តំណ "
 
 msgid "_Copy Link Location"
 msgstr "ចម្លង​ទីតាំង​តំណ"
@@ -12876,9 +12848,25 @@
 msgid "_Copy Email Address"
 msgstr "ចម្លង​អាសយដ្ឋាន​អ៊ីមែល"
 
+#, fuzzy
+msgid "_Open File"
+msgstr "បើក​ឯកសារ..."
+
+#, fuzzy
+msgid "Open _Containing Directory"
+msgstr "ថត​កំណត់ហេតុ"
+
 msgid "Save File"
 msgstr "រក្សា​​ទុក​​​ឯកសារ"
 
+#, fuzzy
+msgid "_Play Sound"
+msgstr "ចាក់​សំឡេង"
+
+#, fuzzy
+msgid "_Save File"
+msgstr "រក្សា​​ទុក​​​ឯកសារ"
+
 msgid "Select color"
 msgstr "ជ្រើស​ពណ៌"
 
@@ -13537,9 +13525,8 @@
 msgid "Highlighted Message Name Color"
 msgstr "ពណ៌​ឈ្មោះសារ​ដែល​បាន​បន្លិច"
 
-#, fuzzy
 msgid "Typing Notification Color"
-msgstr "វាយ​ពណ៌​ជូនដំណឹង"
+msgstr "វាយ​ពណ៌​ជូន​ដំណឹង"
 
 msgid "GtkTreeView Horizontal Separation"
 msgstr "ការ​បំបែក​ផ្ដេក​របស់ GtkTreeView"
@@ -13570,23 +13557,20 @@
 msgid "GTK+ Text Shortcut Theme"
 msgstr "GTK+ ស្បែក​ផ្លូវកាត់អត្ថបទ"
 
-#, fuzzy
 msgid "Disable Typing Notification Text"
-msgstr "អនុញ្ញាត​វាយ​ការជូនដំណឹង"
-
-#, fuzzy
+msgstr "បិទ​ការ​វាយ​អត្ថបទ​ជូន​ដំណឹង"
+
 msgid "GTK+ Theme Control Settings"
-msgstr "កម្មវិធី​ជំនួយ GTK+ ការ​ត្រួតពិនិត្យ​ស្បែក"
-
-#, fuzzy
+msgstr "GTK+ កា​រកំណត់​វត្ថុ​បញ្ជា​ស្បែក"
+
 msgid "Colors"
-msgstr "បិទ​"
+msgstr "ពណ៌​"
 
 msgid "Fonts"
 msgstr "ពុម្ព​​អក្សរ"
 
 msgid "Miscellaneous"
-msgstr ""
+msgstr "ផ្សេងៗ"
 
 msgid "Gtkrc File Tools"
 msgstr "ឧបករណ៍​ឯកសារ Gtkrc"
@@ -13803,11 +13787,11 @@
 
 #, fuzzy
 msgid "Pidgin Buddylist Theme Editor"
-msgstr "បញ្ជី​មិត្តភក្ដិ"
+msgstr "ស្បែក​បញ្ជី​មិត្តភក្ដិ"
 
 #, fuzzy
 msgid "Edit Buddylist Theme"
-msgstr "បញ្ជី​មិត្តភក្ដិ"
+msgstr "ស្បែក​បញ្ជី​មិត្តភក្ដិ"
 
 msgid "Edit Icon Theme"
 msgstr ""
@@ -14075,9 +14059,6 @@
 #~ msgid "Last Activity"
 #~ msgstr "សកម្មភាព​ចុងក្រោយ"
 
-#~ msgid "Service Discovery Info"
-#~ msgstr "ព័ត៌មាន​រកឃើញ​សេវា"
-
 #~ msgid "Service Discovery Items"
 #~ msgstr "ធាតុ​រក​ឃើញ​ព័ត៌មាន"
 
@@ -14096,9 +14077,6 @@
 #~ msgid "Ad-Hoc Commands"
 #~ msgstr "ពាក្យ​បញ្ជា Ad-Hoc"
 
-#~ msgid "PubSub Service"
-#~ msgstr "សេវា PubSub"
-
 #~ msgid "SOCKS5 Bytestreams"
 #~ msgstr "ស្ទ្រីម​បៃ SOCKS5"
 
@@ -14241,9 +14219,6 @@
 #~ msgid "Error. SSL support is not installed."
 #~ msgstr "កំហុស ។ ការ​គាំទ្រ SSL មិន​ត្រូវ​បាន​ដំឡើង​ទេ ។"
 
-#~ msgid "Incorrect password."
-#~ msgstr "ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ ។"
-
 #~ msgid ""
 #~ "Could not connect to BOS server:\n"
 #~ "%s"
@@ -14251,14 +14226,17 @@
 #~ "មិនអាច​តភ្ជាប់​ទៅ​កាន់​ម៉ាស៊ីន​បម្រើ BOS ៖\n"
 #~ "%s"
 
-#~ msgid "You may be disconnected shortly.  Check %s for updates."
-#~ msgstr "អ្នក​អាច​ត្រូវ​បានផ្ដាច់​ក្នុង​រយៈពេល​បន្តិចទៀត​នេះ ។ ពិនិត្យ​មើលភាព​ទាន់សម័យ %s ។"
+#~ msgid "Invalid username."
+#~ msgstr "ឈ្មោះ​អ្នកប្រើ​មិន​ត្រឹមត្រូវ ។"
+
+#~ msgid "Incorrect password."
+#~ msgstr "ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ ។"
 
 #~ msgid "Could Not Connect"
 #~ msgstr "មិនអាច​តភ្ជាប់​បានទេ"
 
-#~ msgid "Invalid username."
-#~ msgstr "ឈ្មោះ​អ្នកប្រើ​មិន​ត្រឹមត្រូវ ។"
+#~ msgid "You may be disconnected shortly.  Check %s for updates."
+#~ msgstr "អ្នក​អាច​ត្រូវ​បានផ្ដាច់​ក្នុង​រយៈពេល​បន្តិចទៀត​នេះ ។ ពិនិត្យ​មើលភាព​ទាន់សម័យ %s ។"
 
 #~ msgid "Could not decrypt server reply"
 #~ msgstr "មិនអាច​ឌិគ្រីប​ការ​​ឆ្លើយតប​របស់​ម៉ាស៊ីន​បម្រើ​បាន​ទេ"
@@ -14293,7 +14271,6 @@
 #~ msgid "Could not resolve hostname"
 #~ msgstr "មិនអាច​ដោះស្រាយ​ឈ្មោះ​ម៉ាស៊ីនបានទេ"
 
-#, fuzzy
 #~ msgid "Incorrect Password"
 #~ msgstr "ពាក្យ​សម្ងាត់​មិន​ត្រឹមត្រូវ"
 
@@ -14304,6 +14281,9 @@
 #~ "មិនអាច​បង្កើត​ការ​តភ្ជាប់​ជា​មួយ %s បានទេ ៖\n"
 #~ "%s"
 
+#~ msgid "Activate which ID?"
+#~ msgstr "ធ្វើ​ឲ្យ​សកម្ម​នូវ​លេខសម្គាល់​ណា​មួយ ?"
+
 #~ msgid "Yahoo Japan"
 #~ msgstr "យ៉ាហ៊ូ​ ជប៉ុន"
 
@@ -14314,6 +14294,13 @@
 #~ msgstr "ម៉ាស៊ីនបម្រើ​ផ្ទេរ​ឯកសារ​ជប៉ុន"
 
 #~ msgid ""
+#~ "%s declined your conference invitation to room \"%s\" because \"%s\"."
+#~ msgstr "%s បានបដិសេធ​ការ​អញ្ជើញ​សន្និសីទ​របស់​អ្នក​​ក្នុង​បន្ទប់ \"%s\" ដោយ​សារតែ \"%s\" ។"
+
+#~ msgid "Invitation Rejected"
+#~ msgstr "បានបដិសេធ​ការ​អញ្ជើញ"
+
+#~ msgid ""
 #~ "Lost connection with server\n"
 #~ "%s"
 #~ msgstr ""
@@ -14323,11 +14310,15 @@
 #~ msgid "Could not resolve host name"
 #~ msgstr "មិនអាច​ដោះស្រាយ​ឈ្មោះម៉ាស៊ីនបានទេ"
 
-#, fuzzy
 #~ msgid ""
 #~ "Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support "
 #~ "was found."
-#~ msgstr "ម៉ាស៊ីន​បម្រើ​ត្រូវការ TLS/SSL ដើម្បី​ចូល ។ រក​មិនឃើញការគាំទ្រ TLS/SSL នោះ​ទេ ។"
+#~ msgstr ""
+#~ "មិន​អាច​តភ្ជាប់​ទៅ​កាន់ %s បានទេ ៖ ម៉ាស៊ីន​បម្រើ​ត្រូវការ TLS/SSL ប៉ុន្តែ​រក​មិនឃើញ​​ការ​គាំទ្រ TLS/"
+#~ "SSL នោះ​ទេ ។"
+
+#~ msgid "_Proxy"
+#~ msgstr "ប្រូកស៊ី "
 
 #~ msgid "Conversation Window Hiding"
 #~ msgstr "លាក់​បង្អួច​សន្ទនា"
@@ -14340,188 +14331,3 @@
 
 #~ msgid "Please select an image for the smiley."
 #~ msgstr "សូម​ជ្រើស​រូបភាព​សម្រាប់​សញ្ញាអារម្មណ៍ ។"
-
-#~ msgid "Activate which ID?"
-#~ msgstr "ធ្វើ​ឲ្យ​សកម្ម​នូវ​លេខសម្គាល់​ណា​មួយ ?"
-
-#~ msgid "Cursor Color"
-#~ msgstr "ពណ៌​ទស្សន៍ទ្រនិច"
-
-#~ msgid "Secondary Cursor Color"
-#~ msgstr "ពណ៌​ទស្សន៍​ទ្រនិចទីពីរ"
-
-#~ msgid "Interface colors"
-#~ msgstr "ពណ៌​ចំណុច​ប្រទាក់"
-
-#~ msgid "Widget Sizes"
-#~ msgstr "ទំហំ​ធាតុក្រាហ្វិក"
-
-#~ msgid "Invite message"
-#~ msgstr "សារ​អញ្ជើញ"
-
-#~ msgid ""
-#~ "Please enter the name of the user you wish to invite,\n"
-#~ "along with an optional invite message."
-#~ msgstr ""
-#~ "សូម​បញ្ចូល​ឈ្មោះ​អ្នកប្រើ​ដែល​អ្នកចង់​អញ្ជើញ\n"
-#~ "រួម​ជា​មួយ​នឹង​សារ​អញ្ជើញ​ជា​ជម្រើស ។"
-
-#~ msgid "Looking up %s"
-#~ msgstr "រកមើល %s"
-
-#~ msgid "Connect to %s failed"
-#~ msgstr "បាន​បរាជ័យ​ក្នុងការ​តភ្ជាប់ %s"
-
-#~ msgid "Signon: %s"
-#~ msgstr "ចូល ៖ %s"
-
-#~ msgid "Unable to write file %s."
-#~ msgstr "មិនអាច​សរសេរ​ឯកសារ %s បាននោះទេ ។"
-
-#~ msgid "Unable to read file %s."
-#~ msgstr "មិន​អាច​អាន​ឯកសារ %s បានទេ ។"
-
-#~ msgid "Message too long, last %s bytes truncated."
-#~ msgstr "សារ​វែងពេក បានកាត់​ឲ្យ​ខ្លីចុងក្រោយ​ត្រឹម %s បៃ ។"
-
-#~ msgid "%s not currently logged in."
-#~ msgstr "%s បច្ចុប្បន្នមិន​បានចូល​ទេ ។"
-
-#~ msgid "Warning of %s not allowed."
-#~ msgstr "មិន​បានអនុញ្ញាត​ការ​ព្រមានរបស់ %s ទេ ។"
-
-#~ msgid ""
-#~ "A message has been dropped, you are exceeding the server speed limit."
-#~ msgstr "សារ​ត្រូវ​បានទម្លាក់ អ្នកបានលើស​ដែន​កំណត់ល្បឿន​របស់​ម៉ាស៊ីនបម្រើ ។"
-
-#~ msgid "Chat in %s is not available."
-#~ msgstr "មិនមានការ​​ជជែក​នៅ​ក្នុង %s ទេ ។"
-
-#~ msgid "You are sending messages too fast to %s."
-#~ msgstr "អ្នកកំពុង​ផ្ញើសារ​យ៉ាង​លឿន​ទៅ %s ។"
-
-#~ msgid "You missed an IM from %s because it was too big."
-#~ msgstr "អ្នកបាត់ IM ពី %s ពីព្រោះ​វា​ធំពេក ។"
-
-#~ msgid "You missed an IM from %s because it was sent too fast."
-#~ msgstr "អ្នកបានបាត់ IM ពី %s ពីព្រោះ​វា​លឿន​ពេក ។"
-
-#~ msgid "Failure."
-#~ msgstr "បរាជ័យ ។"
-
-#~ msgid "Too many matches."
-#~ msgstr "មានការ​ផ្គូផ្គង​ច្រើនពេក ។"
-
-#~ msgid "Need more qualifiers."
-#~ msgstr "ត្រូវការ​ឧបករណ៍​បញ្ជាក់​បន្ថែមទៀត ។"
-
-#~ msgid "Dir service temporarily unavailable."
-#~ msgstr "សេវា Dir មិន​អាច​ប្រើបាន​ជា​បណ្ដោះអាសន្ន ។"
-
-#~ msgid "Email lookup restricted."
-#~ msgstr "បានដាក់កម្ងិរ​ការ​រកមើល​អ៊ីមែល ។"
-
-#~ msgid "Keyword ignored."
-#~ msgstr "បានមិនអើពើ​ពាក្យគន្លឹះ ។"
-
-#~ msgid "No keywords."
-#~ msgstr "គ្មាន​ពាក្យ​គន្លឹះ ។"
-
-#~ msgid "User has no directory information."
-#~ msgstr "អ្នកប្រើ​មិនមាន​​ព័ត៌មាន​ថត​ទៀតទេ ។"
-
-#~ msgid "Country not supported."
-#~ msgstr "មិន​បានគាំទ្រ​ប្រទេស​ទេ ។"
-
-#~ msgid "Failure unknown: %s."
-#~ msgstr "មិនស្គាល់​ភាព​បរាជ័យ ៖ %s ។"
-
-#~ msgid "Incorrect username or password."
-#~ msgstr "ឈ្មោះ​អ្នកប្រើ ឬ​ពាក្យសម្ងាត់​មិន​ត្រឹមត្រូវ ។"
-
-#~ msgid "The service is temporarily unavailable."
-#~ msgstr "សេវា​មិន​អាច​ប្រើបាន​ជា​បណ្ដោះអាសន្ន ។"
-
-#~ msgid "Your warning level is currently too high to log in."
-#~ msgstr "កម្រិត​ព្រមាន​របស់​អ្នកបច្ចុប្បន្ន​ខ្ពស់​ពេក​ត្រូវ​ចូល ។"
-
-#~ msgid ""
-#~ "You have been connecting and disconnecting too frequently.  Wait ten "
-#~ "minutes and try again.  If you continue to try, you will need to wait "
-#~ "even longer."
-#~ msgstr ""
-#~ "អ្នក​បានតភ្ជាប់​ និង​ផ្ដាច់​ញឹកញាប់ពេក ។ រង់ចាំ​រយៈពេល​ ១០ នាទី ហើយ​ព្យាយាម​ម្ដង​ទៀត ។ ប្រសិន​បើ​"
-#~ "អ្នកបន្ត​ព្យាយាម អ្នក​នឹង​ត្រូវ​រង់ចាំ​យូរ​ជាង​នេះ ។"
-
-#~ msgid "An unknown signon error has occurred: %s."
-#~ msgstr "មិនស្គាល់​កំហុស​ក្នុងការ​ចូល​បានកើតឡើង ៖ %s ។"
-
-#~ msgid "An unknown error, %d, has occurred.  Info: %s"
-#~ msgstr "មិនស្គាល់​កំហុស %d ដែល​បានកើត​ឡើង ។ ព័ត៌មាន ៖ %s"
-
-#~ msgid "Invalid Groupname"
-#~ msgstr "ឈ្មោះក្រុម​មិនត្រឹមត្រូវ"
-
-#~ msgid "Connection Closed"
-#~ msgstr "បានបិទ​ការ​តភ្ជាប់"
-
-#~ msgid "Waiting for reply..."
-#~ msgstr "កំពុង​រង់ចាំ​ការ​ឆ្លើយតប..."
-
-#~ msgid "TOC has come back from its pause. You may now send messages again."
-#~ msgstr "TOC បាន​ត្រឡប់​ពី​ការ​ផ្អាក​របស់​វា ។ ឥឡូវ​អ្នក​ផ្ញើសារ​ម្ដង​ទៀត ។"
-
-#~ msgid "Password Change Successful"
-#~ msgstr "ផ្លាស់ប្ដូរ​ពាក្យ​សម្ងាត់​ដោយ​ជោគជ័យ"
-
-#~ msgid "Get Dir Info"
-#~ msgstr "យក​ព័ត៌មាន Dir"
-
-#~ msgid "Set Dir Info"
-#~ msgstr "កំណត់​ព័ត៌មាន Dir"
-
-#~ msgid "Could not open %s for writing!"
-#~ msgstr "មិន​អាច​បើក %s ដើម្បីសរសេរ​បានទេ !"
-
-#~ msgid "File transfer failed; other side probably canceled."
-#~ msgstr "បានបរាជ័យ​ក្នុងការ​ផ្ទេរ​ឯកសារ ផ្នែកផ្សេង​ប្រហែលជា​បានបោះបង់​ហើយ "
-
-#~ msgid "Could not connect for transfer."
-#~ msgstr "មិនអាច​តភ្ជាប់​ដើម្បី​ផ្ទេរ​បានទេ ។"
-
-#~ msgid "Could not write file header.  The file will not be transferred."
-#~ msgstr "មិនអាច​សរសេរ​បឋមកថា​ឯកសារ​បានទេ ។ ឯកសារ​នឹង​មិន​ត្រូវ​បានផ្ទេរ​ទេ ។"
-
-#~ msgid "Save As..."
-#~ msgstr "រក្សាទុកជា..."
-
-#~ msgid "%s requests %s to accept %d file: %s (%.2f %s)%s%s"
-#~ msgid_plural "%s requests %s to accept %d files: %s (%.2f %s)%s%s"
-#~ msgstr[0] "%s ស្នើ %s ឲ្យ​ទទួលឯកសារ %d ៖ %s (%.2f %s)%s%s"
-
-#~ msgid "%s requests you to send them a file"
-#~ msgstr "%s ស្នើ​អ្នក​ឲ្យ​ផ្ញើ​ឯកសារ​ឲ្យ​ពួកវា"
-
-#~ msgid "TOC Protocol Plugin"
-#~ msgstr "កម្មវិធី​ពិធីការ TOC"
-
-#~ msgid "%s Options"
-#~ msgstr "ជម្រើស %s"
-
-#~ msgid "Proxy Options"
-#~ msgstr "ជម្រើសប្រូកស៊ី"
-
-#~ msgid "By log size"
-#~ msgstr "តាម​ទំហំ​កំណត់ហេតុ"
-
-#~ msgid "_Open Link in Browser"
-#~ msgstr "បើក​តំណ​នៅ​ក្នុង​កម្មវិធីរុករក"
-
-#~ msgid "ST_UN server:"
-#~ msgstr "ម៉ាស៊ីនបម្រើ STUN ៖"
-
-#~ msgid "Smiley _Image"
-#~ msgstr "រូបភាព​សញ្ញាអារម្មណ៍"
-
-#~ msgid "Smiley S_hortcut"
-#~ msgstr "ផ្លូវ​កាត់​សញ្ញាអារម្មណ៍"
--- a/po/nl.po	Sat Jul 25 05:14:27 2009 +0000
+++ b/po/nl.po	Sun Jul 26 22:18:59 2009 +0900
@@ -10,8 +10,8 @@
 msgstr ""
 "Project-Id-Version: pidgin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-06 15:04-0700\n"
-"PO-Revision-Date: 2009-01-06 17:27+0100\n"
+"POT-Creation-Date: 2009-07-21 08:28-0700\n"
+"PO-Revision-Date: 2009-07-20 12:53+0100\n"
 "Last-Translator: Daniël Heres <danielheres@gmail.com>\n"
 "Language-Team: Dutch <nl@li.org>\n"
 "MIME-Version: 1.0\n"
@@ -865,12 +865,11 @@
 msgid "System Log"
 msgstr "Systeemlogboek"
 
-#, fuzzy
 msgid "Calling ... "
-msgstr "Berekenen..."
+msgstr "Bellen..."
 
 msgid "Hangup"
-msgstr ""
+msgstr "Ophangen"
 
 #. Number of actions
 msgid "Accept"
@@ -880,25 +879,24 @@
 msgstr "Weigeren"
 
 msgid "Call in progress."
-msgstr ""
+msgstr "Gesprek bezig"
 
 msgid "The call has been terminated."
-msgstr ""
+msgstr "Het gesprek is stopgezet"
 
 #, c-format
 msgid "%s wishes to start an audio session with you."
-msgstr ""
+msgstr "%s wil een audiogesprek starten."
 
 #, c-format
 msgid "%s is trying to start an unsupported media session type with you."
-msgstr ""
-
-#, fuzzy
+msgstr "%s probeert een niet ondersteund mediagesprek te starten."
+
 msgid "You have rejected the call."
-msgstr "Je hebt het kanaal%s%s verlaten"
+msgstr "Het telefoontje is genegeerd."
 
 msgid "call: Make an audio call."
-msgstr ""
+msgstr "gesprek: Bel op."
 
 msgid "Emails"
 msgstr "E-mails"
@@ -1559,19 +1557,20 @@
 "\n"
 "Fetching TinyURL..."
 msgstr ""
+"\n"
+"Ophalen TinyURL..."
 
 msgid "Only create TinyURL for urls of this length or greater"
-msgstr ""
+msgstr "Alleen TinyURL aanmaken voor koppelingen van deze lengte of langer"
 
 msgid "TinyURL (or other) address prefix"
 msgstr ""
 
-#, fuzzy
 msgid "TinyURL"
-msgstr "URL"
+msgstr "TinyURL"
 
 msgid "TinyURL plugin"
-msgstr ""
+msgstr "TinyURL plug-in"
 
 msgid "When receiving a message with URL(s), TinyURL for easier copying"
 msgstr ""
@@ -1692,6 +1691,7 @@
 "Het certificaat van \"%s\" is zelf-gesigneerd. Het kan niet automatisch "
 "gecontroleerd worden."
 
+#. FIXME 2.6.1
 #, c-format
 msgid "The certificate chain presented for %s is not valid."
 msgstr "De certificaat-keten van %s is niet geldig."
@@ -1701,6 +1701,7 @@
 #. stifle it.
 #. TODO: Probably wrong.
 #. TODO: Probably wrong
+#. TODO: Probably wrong.
 msgid "SSL Certificate Error"
 msgstr "SSL-certificaat fout"
 
@@ -1782,7 +1783,6 @@
 msgstr "+++ %s heeft zich afgemeld"
 
 #. Unknown error
-#. Unknown error!
 msgid "Unknown error"
 msgstr "Onbekende fout"
 
@@ -1829,9 +1829,8 @@
 msgid "%s left the room (%s)."
 msgstr "%s is weggegaan (%s)."
 
-#, fuzzy
 msgid "Invite to chat"
-msgstr "Uitnodigen voor bijeenkomst"
+msgstr "Uitnodigen voor gesprek"
 
 #. Put our happy label in it.
 msgid ""
@@ -1975,6 +1974,10 @@
 msgid "Starting transfer of %s from %s"
 msgstr "Overdracht van %s van %s wordt gestart"
 
+#, fuzzy, c-format
+msgid "Transfer of file <A HREF=\"file://%s\">%s</A> complete"
+msgstr "Bestandsoverdracht van %s voltooid"
+
 #, c-format
 msgid "Transfer of file %s complete"
 msgstr "Bestandsoverdracht van %s voltooid"
@@ -2721,9 +2724,8 @@
 msgstr "Vraag niet. Altijd in alarm opslaan."
 
 # wachtwoord invoeren
-#, fuzzy
 msgid "One Time Password"
-msgstr "Voer wachtwoord in"
+msgstr "Eenmalig wachtwoord"
 
 #. *< type
 #. *< ui_requirement
@@ -2732,7 +2734,7 @@
 #. *< priority
 #. *< id
 msgid "One Time Password Support"
-msgstr ""
+msgstr "Ondersteuning eenmalig wachtwoord"
 
 #. *< name
 #. *< version
@@ -2990,9 +2992,8 @@
 msgstr "Purple mens"
 
 #. Creating the options for the protocol
-#, fuzzy
 msgid "Local Port"
-msgstr "Localiteit"
+msgstr "Locale poort"
 
 msgid "Bonjour"
 msgstr "Bonjour"
@@ -3004,21 +3005,17 @@
 msgid "Unable to send the message, the conversation couldn't be started."
 msgstr "Kan het bericht niet verzenden. Kan geen gesprek starten."
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to create socket: %s"
-msgstr ""
-"Kan geen socket aanmaken:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "Kan geen socket aanmaken: %s"
+
+#, c-format
 msgid "Unable to bind socket to port: %s"
-msgstr "Kan socket niet koppelen aan poort"
-
-#, fuzzy, c-format
+msgstr "Kan socket niet koppelen aan poort: %s"
+
+#, c-format
 msgid "Unable to listen on socket: %s"
-msgstr ""
-"Kan geen socket aanmaken:\n"
-"%s"
+msgstr "Kan niet aan socket luisteren: %s"
 
 msgid "Error communicating with local mDNSResponder."
 msgstr "Fout bij het communiceren met lokale mDNSResponder"
@@ -3065,17 +3062,15 @@
 msgid "Load buddylist from file..."
 msgstr "Contactenlijst laden uit bestand..."
 
-#, fuzzy
 msgid "You must fill in all registration fields"
-msgstr "Registratievelden invullen."
-
-#, fuzzy
+msgstr "Alle registratievelden moeten ingevuld worden"
+
 msgid "Passwords do not match"
-msgstr "Wachtwoorden komen niet overeen."
-
-#, fuzzy
+msgstr "Wachtwoorden komen niet overeen"
+
 msgid "Unable to register new account.  An unknown error occurred."
-msgstr "Kan geen nieuw account registreren. Er is een fout opgetreden.\n"
+msgstr ""
+"Kan geen nieuw account registreren. Er is eenonbekende fout opgetreden."
 
 msgid "New Gadu-Gadu Account Registered"
 msgstr "Nieuw Gadu-Gadu account geregistreerd"
@@ -3090,11 +3085,10 @@
 msgstr "Nieuw wachtwoord (herhalen)"
 
 msgid "Enter captcha text"
-msgstr ""
-
-#, fuzzy
+msgstr "Captcha tekst invoeren"
+
 msgid "Captcha"
-msgstr "Captcha afbeelding"
+msgstr "Captcha"
 
 msgid "Register New Gadu-Gadu Account"
 msgstr "Nieuw Gadu-gadu-account registreren"
@@ -3248,9 +3242,8 @@
 msgid "This chat name is already in use"
 msgstr "De naam bestaat reeds"
 
-#, fuzzy
 msgid "Not connected to the server"
-msgstr "Niet verbonden met de server."
+msgstr "Niet verbonden met de server"
 
 msgid "Find buddies..."
 msgstr "Contacten zoeken..."
@@ -3292,9 +3285,8 @@
 msgid "Gadu-Gadu User"
 msgstr "Gadu-gadu-gebruiker"
 
-#, fuzzy
 msgid "GG server"
-msgstr "Server verkrijgen"
+msgstr "GG-server"
 
 #, c-format
 msgid "Unknown command: %s"
@@ -3310,7 +3302,6 @@
 msgid "File Transfer Failed"
 msgstr "Bestandsoverdracht mislukt"
 
-#, fuzzy
 msgid "Unable to open a listening port."
 msgstr "Kon geen poort openen om te luisteren."
 
@@ -3334,11 +3325,9 @@
 #.
 #. TODO: what to do here - do we really have to disconnect?
 #. TODO: do we really want to disconnect on a failure to write?
-#, fuzzy, c-format
+#, c-format
 msgid "Lost connection with server: %s"
-msgstr ""
-"Verbinding verloren met server:\n"
-"%s"
+msgstr "Verbinding verloren met server: %s"
 
 msgid "View MOTD"
 msgstr "MOTD weergeven"
@@ -3550,13 +3539,12 @@
 #. We only want to do the following dance if the connection
 #. has not been successfully completed.  If it has, just
 #. notify the user that their /nick command didn't go.
-#, fuzzy, c-format
+#, c-format
 msgid "The nickname \"%s\" is already being used."
-msgstr "De naam bestaat reeds"
-
-#, fuzzy
+msgstr "De bijnaam \"%s\" bestaat al"
+
 msgid "Nickname in use"
-msgstr "Bijnaam"
+msgstr "Bijnaam in gebruik"
 
 msgid "Cannot change nick"
 msgstr "Kan bijnaam niet veranderen"
@@ -3831,7 +3819,6 @@
 msgid "SASL authentication failed"
 msgstr "Identificatie mislukt"
 
-#, fuzzy
 msgid "Invalid response from server"
 msgstr "Ongeldig antwoord van server"
 
@@ -3844,20 +3831,18 @@
 msgid "Invalid challenge from server"
 msgstr "Ongeldige vraag van server"
 
-#, fuzzy, c-format
+#, c-format
 msgid "SASL error: %s"
-msgstr "SASL-fout"
+msgstr "SASL-fout: %s"
 
 msgid "The BOSH connection manager terminated your session."
 msgstr ""
 
-#, fuzzy
 msgid "No session ID given"
-msgstr "Geen reden gegeven"
-
-#, fuzzy
+msgstr "Geen sessie-ID gegeven"
+
 msgid "Unsupported version of BOSH protocol"
-msgstr "Versie niet ondersteund"
+msgstr "Versie van BOSH niet ondersteund"
 
 #, fuzzy
 msgid "Unable to establish a connection with the server"
@@ -3941,9 +3926,8 @@
 msgid "Operating System"
 msgstr "Besturingssysteem"
 
-#, fuzzy
 msgid "Local Time"
-msgstr "Lokaal bestand:"
+msgstr "Lokale tijd"
 
 msgid "Priority"
 msgstr "Prioriteit"
@@ -3953,11 +3937,10 @@
 
 #, c-format
 msgid "%s ago"
-msgstr ""
-
-#, fuzzy
+msgstr "%s geleden"
+
 msgid "Logged Off"
-msgstr "Ingelogd"
+msgstr "UItgelogd"
 
 msgid "Middle Name"
 msgstr "Tweede naam"
@@ -4125,21 +4108,17 @@
 msgid "Find Rooms"
 msgstr "Ruimtes zoeken"
 
-#, fuzzy
 msgid "Affiliations:"
-msgstr "Alias:"
-
-#, fuzzy
+msgstr "Verbanden:"
+
 msgid "No users found"
-msgstr "Niet overeenkomende gebruikers gevonden"
-
-#, fuzzy
+msgstr "Geen gebruikers gevonden"
+
 msgid "Roles:"
-msgstr "Rol"
-
-#, fuzzy
+msgstr "Rollen:"
+
 msgid "Ping timed out"
-msgstr "Ping Verlopen"
+msgstr "Ping verlopen"
 
 msgid ""
 "Unable to find alternative XMPP connection methods after failing to connect "
@@ -4222,10 +4201,6 @@
 msgid "Change Registration"
 msgstr "Verander Registratie: "
 
-#, fuzzy
-msgid "Malformed BOSH Connect Server"
-msgstr "Kan geen verbinding maken met de server."
-
 msgid "Error unregistering account"
 msgstr "Fout bij het ongedaan maken van de registratie"
 
@@ -4245,7 +4220,7 @@
 msgstr "Herstarten van datastroom"
 
 msgid "Server doesn't support blocking"
-msgstr ""
+msgstr "Server ondersteunt blokkeren niet"
 
 msgid "Not Authorized"
 msgstr "Geen toestemming"
@@ -4552,9 +4527,8 @@
 "Kan bestand niet verzenden naar %s, niet aangemeld bij gebruikers-"
 "aanwezigheid."
 
-#, fuzzy
 msgid "Media Initiation Failed"
-msgstr "Registratie mislukt"
+msgstr "Opstarten media mislukt"
 
 #, fuzzy, c-format
 msgid ""
@@ -4565,9 +4539,8 @@
 msgid "Select a Resource"
 msgstr "Kies een bron"
 
-#, fuzzy
 msgid "Initiate Media"
-msgstr "_Chat starten"
+msgstr "Media opstarten"
 
 msgid "config:  Configure a chat room."
 msgstr "config:  Chatruimte instellen"
@@ -4664,10 +4637,10 @@
 msgstr "Verbinden met server"
 
 msgid "File transfer proxies"
-msgstr "Bestandsoverdracht poortnummer"
+msgstr "Bestandsoverdracht proxy"
 
 msgid "BOSH URL"
-msgstr ""
+msgstr "BOSH koppeling"
 
 #. this should probably be part of global smiley theme settings later on,
 #. shared with MSN
@@ -4731,29 +4704,26 @@
 msgid "_Accept Defaults"
 msgstr "_Standaardinstellingen gebruiken"
 
-#, fuzzy
 msgid "No reason"
-msgstr "Geen reden gegeven"
-
-#, fuzzy, c-format
+msgstr "Geen reden"
+
+#, c-format
 msgid "You have been kicked: (%s)"
-msgstr "Je bent weggeschopt door %s: (%s)"
-
-#, fuzzy, c-format
+msgstr "Je bent eruit gegooid:(%s)"
+
+#, c-format
 msgid "Kicked (%s)"
-msgstr "Weggeschopt door %s (%s)"
+msgstr "Eruit gegooid (%s)"
 
 #, fuzzy
 msgid "An error occurred on the in-band bytestream transfer\n"
 msgstr "Er is een fout opgetreden bij het openen van het bestand."
 
-#, fuzzy
 msgid "Transfer was closed."
-msgstr "Bestandsoverdracht mislukt"
-
-#, fuzzy
+msgstr "Bestandsoverdracht gesloten."
+
 msgid "Failed to open the file"
-msgstr "Kan bestand '%s' niet openen: %s"
+msgstr "Bestand openen mislukt"
 
 msgid "Failed to open in-band bytestream"
 msgstr ""
@@ -5080,6 +5050,26 @@
 msgid "Non-IM Contacts"
 msgstr "Niet-chat contacten"
 
+#, c-format
+msgid "%s sent a wink. <a href='msn-wink://%s'>Click here to play it</a>"
+msgstr ""
+"%s verzond een wink. <a href='msn-wink://%s'>Klik hier om af te spelen</a>"
+
+#, c-format
+msgid "%s sent a wink, but it could not be saved"
+msgstr "%s verzond een wink, maar kon niet worden opgeslagen"
+
+#, c-format
+msgid "%s sent a voice clip. <a href='audio://%s'>Click here to play it</a>"
+msgstr ""
+"%s verzond een voice-clip. <a href='audio://%s'>Klik hier om af te spelen</a>"
+
+#, fuzzy, c-format
+msgid "%s sent a voice clip, but it could not be saved"
+msgstr ""
+"%s verzond je een uitnodiging voor een webcam, wat nog niet wordt "
+"ondersteund."
+
 #, fuzzy, c-format
 msgid "%s sent you a voice chat invite, which is not yet supported."
 msgstr ""
@@ -5237,6 +5227,30 @@
 msgid "SSL support is needed for MSN. Please install a supported SSL library."
 msgstr "SSL-ondersteuning is vereist voor MSN. Installeer een SSL-bibliotheek."
 
+#, fuzzy, c-format
+msgid ""
+"Unable to add the buddy %s because the username is invalid.  Usernames must "
+"be a valid email address."
+msgstr ""
+"Kan het contact %s niet toevoegen omdat de gebruikersnaam ongeldig is. "
+"Gebruikersnamen moeten een geldig e-mailadres zijn, of beginnen met een "
+"letter en slechts cijfers en letters bevatten, of slechts nummers bevatten."
+
+msgid "Unable to Add"
+msgstr "Kan niet toevoegen"
+
+msgid "Authorization Request Message:"
+msgstr "Tekst van toestemmingsaanvraag"
+
+msgid "Please authorize me!"
+msgstr "Geef mij toestemming, alstublieft!"
+
+#. *
+#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
+#.
+msgid "_OK"
+msgstr "_OK"
+
 msgid "Error retrieving profile"
 msgstr "Fout bij ophalen van profiel"
 
@@ -5429,13 +5443,14 @@
 msgid "%s just sent you a Nudge!"
 msgstr "%s heeft u zojuist een duwtje gegeven!"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unknown error (%d): %s"
-msgstr "Onbekende fout (%d)"
+msgstr "Onbekende fout (%d): %s"
 
 msgid "Unable to add user"
 msgstr "Kan gebruiker niet toevoegen"
 
+#. Unknown error!
 #, c-format
 msgid "Unknown error (%d)"
 msgstr "Onbekende fout (%d)"
@@ -5508,9 +5523,8 @@
 msgid "Our protocol is not supported by the server"
 msgstr "Ons protocol wordt niet ondersteund door de server."
 
-#, fuzzy
 msgid "Error parsing HTTP"
-msgstr "Fout bij analyseren HTTP."
+msgstr "Fout bij parsen HTTP"
 
 #, fuzzy
 msgid "You have signed on from another location"
@@ -5521,9 +5535,8 @@
 "De MSN-servers zijn op dit moment niet beschikbaar. Probeer het later nog "
 "eens."
 
-#, fuzzy
 msgid "The MSN servers are going down temporarily"
-msgstr "De MSN-servers worden tijdelijk uitgeschakeld."
+msgstr "De MSN-servers worden tijdelijk uitgeschakeld"
 
 #, c-format
 msgid "Unable to authenticate: %s"
@@ -5611,9 +5624,8 @@
 msgid "Delete Buddy from Address Book?"
 msgstr "Contact verwijderen uit adresboek?"
 
-#, fuzzy
 msgid "Do you want to delete this buddy from your address book as well?"
-msgstr "Wilt u deze persoon toevoegen aan uw contactenlijst?"
+msgstr "Dit contact ook verwijderen uit adresboek?"
 
 msgid "The username specified is invalid."
 msgstr "Ingevoerde gebruikersnaam is ongeldig."
@@ -6132,9 +6144,9 @@
 msgid "Unknown error: 0x%X"
 msgstr "Onbekende fout: 0x%X"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Unable to login: %s"
-msgstr "Kan gebruiker %s niet pingen"
+msgstr "Kan niet inloggen: %s"
 
 #, c-format
 msgid "Unable to send message. Could not get details for user (%s)."
@@ -6641,6 +6653,7 @@
 msgid "The AOL Instant Messenger service is temporarily unavailable."
 msgstr "De AOL service is momenteel niet bereikbaar."
 
+#. client too old
 #, c-format
 msgid "The client version you are using is too old. Please upgrade at %s"
 msgstr ""
@@ -6665,12 +6678,6 @@
 msgid "Enter the 6 digit number from the digital display."
 msgstr "Geef het 6-cijferige nummer van het digitale display."
 
-#. *
-#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons.
-#.
-msgid "_OK"
-msgstr "_OK"
-
 msgid "Password sent"
 msgstr "Wachtwoord verzonden"
 
@@ -6680,12 +6687,6 @@
 msgid "Please authorize me so I can add you to my buddy list."
 msgstr "Geef mij toestemming zodat ik u kan toevoegen aan mijn contactenlijst."
 
-msgid "Authorization Request Message:"
-msgstr "Tekst van toestemmingsaanvraag"
-
-msgid "Please authorize me!"
-msgstr "Geef mij toestemming, alstublieft!"
-
 msgid "No reason given."
 msgstr "Geen reden gegeven."
 
@@ -7028,9 +7029,6 @@
 "Gebruikersnamen moeten een geldig e-mailadres zijn, of beginnen met een "
 "letter en slechts cijfers en letters bevatten, of slechts nummers bevatten."
 
-msgid "Unable to Add"
-msgstr "Kan niet toevoegen"
-
 #, fuzzy
 msgid "Unable to Retrieve Buddy List"
 msgstr "Kan contactenlijst niet ophalen"
@@ -7386,13 +7384,11 @@
 msgid "Horoscope"
 msgstr "Horoscoop"
 
-#, fuzzy
 msgid "Zodiac"
-msgstr "Sterrenbeeld"
-
-#, fuzzy
+msgstr "Dierenriem"
+
 msgid "Blood"
-msgstr "Geblokkeerd"
+msgstr "Bloed"
 
 msgid "True"
 msgstr "Juist"
@@ -7438,23 +7434,20 @@
 msgid "Change his/her memo as you like"
 msgstr ""
 
-#, fuzzy
 msgid "_Modify"
-msgstr "Bewerken"
-
-#, fuzzy
+msgstr "_Bewerken"
+
 msgid "Memo Modify"
-msgstr "Bewerken"
-
-#, fuzzy
+msgstr "Memo wijzigen"
+
 msgid "Server says:"
-msgstr "Server bezig"
+msgstr "Server zegt:"
 
 msgid "Your request was accepted."
-msgstr ""
+msgstr "De aanvraag werd geaccepteerd."
 
 msgid "Your request was rejected."
-msgstr ""
+msgstr "De aanvraag werd afgewezen."
 
 #, c-format
 msgid "%u requires verification"
@@ -7589,14 +7582,14 @@
 
 #, c-format
 msgid "Successfully joined Qun %s (%u)"
-msgstr ""
+msgstr "Succesvolle deelname Qun %s (%u)"
 
 msgid "Successfully joined Qun"
 msgstr "Succesvol aan Qun deelgenmen"
 
 #, c-format
 msgid "Qun %u denied from joining"
-msgstr ""
+msgstr "Qun %u afgewezen voor deelname"
 
 msgid "QQ Qun Operation"
 msgstr "QQ Qun operatie"
@@ -7689,13 +7682,13 @@
 msgstr "Vlag"
 
 msgid "Ver"
-msgstr ""
+msgstr "Versie"
 
 msgid "Invalid name"
 msgstr "Ongeldige bijnaam"
 
 msgid "Select icon..."
-msgstr "Icoon selecteren..."
+msgstr "Pictogram selecteren..."
 
 #, c-format
 msgid "<b>Login time</b>: %d-%d-%d, %d:%d:%d<br>\n"
@@ -7789,7 +7782,7 @@
 msgstr "Over OpenQ %s"
 
 msgid "Change Icon"
-msgstr "Icoon veranderen"
+msgstr "Pictogram veranderen"
 
 msgid "Change Password"
 msgstr "Wachtwoord veranderen"
@@ -7798,14 +7791,13 @@
 msgstr "Accountinformatie"
 
 msgid "Update all QQ Quns"
-msgstr ""
+msgstr "Alle QQ Quns vernieuwen"
 
 msgid "About OpenQ"
 msgstr "Over OpenQ"
 
-#, fuzzy
 msgid "Modify Buddy Memo"
-msgstr "Adres bewerken"
+msgstr "Contactmemo wijzigen"
 
 #. *< type
 #. *< ui_requirement
@@ -8983,10 +8975,6 @@
 msgid "Connecting to SILC Server"
 msgstr "Verbinden met SILC-server"
 
-#, fuzzy
-msgid "Unable to not load SILC key pair"
-msgstr "Kan SILC sleutelpaar niet laden"
-
 msgid "Out of memory"
 msgstr "Te weinig geheugen"
 
@@ -9555,9 +9543,8 @@
 msgid "Yahoo Chat port"
 msgstr "Chatpoort Yahoo"
 
-#, fuzzy
 msgid "Yahoo JAPAN ID..."
-msgstr "Yahoo! ID..."
+msgstr "Yahoo JAPAN ID..."
 
 #. *< type
 #. *< ui_requirement
@@ -9569,12 +9556,11 @@
 #. *< version
 #. *  summary
 #. *  description
-#, fuzzy
 msgid "Yahoo! JAPAN Protocol Plugin"
-msgstr "Yahoo-protocol-plug-in"
+msgstr "Yahoo! JAPAN protocol-plug-in"
 
 msgid "Your SMS was not delivered"
-msgstr ""
+msgstr "De SMS werd niet afgeleverd"
 
 msgid "Your Yahoo! message did not get sent."
 msgstr "Uw Yahoo! bericht is niet verzonden."
@@ -9601,9 +9587,8 @@
 msgstr "Contact toevoegen geweigerd"
 
 #. Some error in the received stream
-#, fuzzy
 msgid "Received invalid data"
-msgstr "Ongeldige data ontvangen van server."
+msgstr "Ongeldige data ontvangen"
 
 #. security lock from too many failed login attempts
 #, fuzzy
@@ -9841,12 +9826,9 @@
 msgid "The user's profile is empty."
 msgstr "Gebruikersprofiel is leeg."
 
-#, c-format
-msgid "%s declined your conference invitation to room \"%s\" because \"%s\"."
-msgstr "%s heeft uw uitnodiging voor ruimte \"%s\" afgeslagen omdat \"%s\"."
-
-msgid "Invitation Rejected"
-msgstr "Uitnodiging geweigerd"
+#, fuzzy, c-format
+msgid "%s has declined to join."
+msgstr "%s heeft zich aangemeld."
 
 msgid "Failed to join chat"
 msgstr "Kan niet deelnemen aan chat"
@@ -10023,7 +10005,7 @@
 msgstr "Importeren van .zephyr.subs"
 
 msgid "Realm"
-msgstr ""
+msgstr "Gebied"
 
 msgid "Exposure"
 msgstr "Ontmaskering"
@@ -10332,8 +10314,8 @@
 msgid "Use this buddy _icon for this account:"
 msgstr "Dit contact_plaatje gebruiken voor dit account:"
 
-msgid "_Advanced"
-msgstr "_Geavanceerd"
+msgid "Ad_vanced"
+msgstr "Gea_vanceerd"
 
 msgid "Use GNOME Proxy Settings"
 msgstr "Gebruik GNOME Proxy-instellingen"
@@ -10395,9 +10377,8 @@
 msgid "Create _this new account on the server"
 msgstr "_Dit account op de server aanmaken"
 
-#, fuzzy
-msgid "_Proxy"
-msgstr "Proxy"
+msgid "P_roxy"
+msgstr "P_roxy"
 
 msgid "Enabled"
 msgstr "Ingeschakeld"
@@ -10447,9 +10428,8 @@
 msgid "Please update the necessary fields."
 msgstr "Update de belangrijke velden."
 
-#, fuzzy
 msgid "A_ccount"
-msgstr "Account"
+msgstr "A_ccount"
 
 msgid ""
 "Please enter the appropriate information about the chat you would like to "
@@ -10466,7 +10446,7 @@
 msgstr "De_blokkeren"
 
 msgid "Move to"
-msgstr "Ga naar"
+msgstr "Verplaatsen naar"
 
 msgid "Get _Info"
 msgstr "_Info opzoeken"
@@ -10474,16 +10454,14 @@
 msgid "I_M"
 msgstr "_Bericht sturen"
 
-#, fuzzy
 msgid "_Audio Call"
-msgstr "_Chat toevoegen"
+msgstr "_Audio-gesprek"
 
 msgid "Audio/_Video Call"
-msgstr ""
-
-#, fuzzy
+msgstr "Audio/_Videogesprek"
+
 msgid "_Video Call"
-msgstr "Video-chat"
+msgstr "Video-gesprek"
 
 msgid "_Send File..."
 msgstr "Bestand _sturen"
@@ -10494,13 +10472,11 @@
 msgid "View _Log"
 msgstr "_Logboek"
 
-#, fuzzy
 msgid "Hide When Offline"
-msgstr "Verberg tijdens offline zijn"
-
-#, fuzzy
+msgstr "Verbergen indien offline"
+
 msgid "Show When Offline"
-msgstr "Weergeven tijdens offline zijn"
+msgstr "Weergeven indien offline"
 
 msgid "_Alias..."
 msgstr "_Alias..."
@@ -10626,9 +10602,8 @@
 msgid "/Tools/_Certificates"
 msgstr "/Extra/_Certificaten"
 
-#, fuzzy
 msgid "/Tools/Custom Smile_ys"
-msgstr "/Extra/Smile_y"
+msgstr "/Extra/Eigen smiley_s"
 
 msgid "/Tools/Plu_gins"
 msgstr "/Extra/_Plug-ins"
@@ -10874,7 +10849,7 @@
 
 #, fuzzy
 msgid "_Remain in chat after window is closed."
-msgstr "Verberg c_hat wanneer het venster gesloten is."
+msgstr "Verberg c_hat wanneer de verbinding verbroken wordt."
 
 msgid "Please enter the name of the group to be added."
 msgstr "Geef de naam van de toe te voegen groep."
@@ -10910,9 +10885,8 @@
 msgid "The background color for the buddy list"
 msgstr ""
 
-#, fuzzy
 msgid "Layout"
-msgstr "Laotiaans"
+msgstr "Lay-out"
 
 msgid "The layout of icons, name, and status of the blist"
 msgstr ""
@@ -10925,9 +10899,8 @@
 msgid "The background color of an expanded group"
 msgstr ""
 
-#, fuzzy
 msgid "Expanded Text"
-msgstr "_Uitvouwen"
+msgstr "Uitgevouwde tekst"
 
 msgid "The text information for when a group is expanded"
 msgstr ""
@@ -10939,59 +10912,51 @@
 msgid "The background color of a collapsed group"
 msgstr ""
 
-#, fuzzy
 msgid "Collapsed Text"
-msgstr "_Dichtvouwen"
+msgstr "Samengevoegde tekst"
 
 msgid "The text information for when a group is collapsed"
 msgstr ""
 
 #. Buddy
-#, fuzzy
 msgid "Contact/Chat Background Color"
-msgstr "Achtergrondkleur selecteren"
+msgstr "Contact/Achtergrondkleur gesprek"
 
 msgid "The background color of a contact or chat"
-msgstr ""
-
-#, fuzzy
+msgstr "De achtergrond voor een contact of gesprek"
+
 msgid "Contact Text"
-msgstr "Snelkoppeling"
+msgstr "Contact tekst"
 
 msgid "The text information for when a contact is expanded"
 msgstr ""
 
-#, fuzzy
 msgid "On-line Text"
-msgstr "Online"
+msgstr ""
 
 msgid "The text information for when a buddy is online"
 msgstr ""
 
-#, fuzzy
 msgid "Away Text"
-msgstr "Afwezig"
+msgstr "Afwezig tekst"
 
 msgid "The text information for when a buddy is away"
 msgstr ""
 
-#, fuzzy
 msgid "Off-line Text"
-msgstr "Offline "
+msgstr "Offline tejst"
 
 msgid "The text information for when a buddy is off-line"
 msgstr ""
 
-#, fuzzy
 msgid "Idle Text"
-msgstr "Humeur-tekst"
+msgstr "Tekst inactief"
 
 msgid "The text information for when a buddy is idle"
 msgstr ""
 
-#, fuzzy
 msgid "Message Text"
-msgstr "Bericht verzonden"
+msgstr "Berichttekst"
 
 msgid "The text information for when a buddy has an unread message"
 msgstr ""
@@ -11060,7 +11025,6 @@
 msgid "Get Away Message"
 msgstr "Afwezigheidsbericht"
 
-#, fuzzy
 msgid "Last Said"
 msgstr "Laatst gezegd"
 
@@ -11107,21 +11071,17 @@
 msgid "/Conversation/Clea_r Scrollback"
 msgstr "/Gesprek/_Opschonen"
 
-#, fuzzy
 msgid "/Conversation/M_edia"
-msgstr "/Gesprek/_Meer"
-
-#, fuzzy
+msgstr "/Gesprek/M_edia"
+
 msgid "/Conversation/Media/_Audio Call"
-msgstr "/Gesprek/_Meer"
-
-#, fuzzy
+msgstr "/Gesprek/Media/_Audiogesprek"
+
 msgid "/Conversation/Media/_Video Call"
-msgstr "/Gesprek/_Meer"
-
-#, fuzzy
+msgstr "/Gesprek/Media/Videogesprek"
+
 msgid "/Conversation/Media/Audio\\/Video _Call"
-msgstr "/Gesprek/Logboek _weergeven"
+msgstr "/Gesprek/Media/Audio\\/Videogesprek"
 
 msgid "/Conversation/Se_nd File..."
 msgstr "/Gesprek/Bestand ver_zenden..."
@@ -11195,17 +11155,14 @@
 msgid "/Conversation/View Log"
 msgstr "/Gesprek/Logboek weergeven"
 
-#, fuzzy
 msgid "/Conversation/Media/Audio Call"
-msgstr "/Gesprek/Meer"
-
-#, fuzzy
+msgstr "/Gesprek/Media/Audiogesprek"
+
 msgid "/Conversation/Media/Video Call"
-msgstr "/Gesprek/Logboek weergeven"
-
-#, fuzzy
+msgstr "/Gesprek/Media/Videogesprek"
+
 msgid "/Conversation/Media/Audio\\/Video Call"
-msgstr "/Gesprek/Meer"
+msgstr "/Gesprek/Media/Audio\\/Videogesprek"
 
 msgid "/Conversation/Send File..."
 msgstr "/Gesprek/Bestand verzenden..."
@@ -11394,7 +11351,7 @@
 msgstr "Ka-Hing Cheung"
 
 msgid "voice and video"
-msgstr ""
+msgstr "spraak en video"
 
 msgid "support"
 msgstr "ondersteuning"
@@ -11520,9 +11477,8 @@
 msgid "Hungarian"
 msgstr "Hongaars"
 
-#, fuzzy
 msgid "Armenian"
-msgstr "Roemeens"
+msgstr "Armeens"
 
 msgid "Indonesian"
 msgstr "Indonesisch"
@@ -11539,9 +11495,8 @@
 msgid "Ubuntu Georgian Translators"
 msgstr "Georgische vertalers van Ubuntu"
 
-#, fuzzy
 msgid "Khmer"
-msgstr "Anders"
+msgstr "Cambodjaans"
 
 msgid "Kannada"
 msgstr "Kannada"
@@ -11564,9 +11519,8 @@
 msgid "Macedonian"
 msgstr "Macedonisch"
 
-#, fuzzy
 msgid "Mongolian"
-msgstr "Macedonisch"
+msgstr "Mongools"
 
 msgid "Bokmål Norwegian"
 msgstr "Noors"
@@ -11623,7 +11577,7 @@
 msgstr "Zweeds"
 
 msgid "Swahili"
-msgstr ""
+msgstr "Swahili"
 
 # ui/preferences.glade.h:192
 msgid "Tamil"
@@ -12366,22 +12320,21 @@
 msgstr ""
 
 msgid "/_Media"
-msgstr ""
+msgstr "/_Media"
 
 msgid "/Media/_Hangup"
-msgstr ""
-
-#, fuzzy
+msgstr "/Media/Op_hangen"
+
 msgid "Calling..."
-msgstr "Berekenen..."
+msgstr "Bellen..."
 
 #, c-format
 msgid "%s wishes to start an audio/video session with you."
-msgstr ""
+msgstr "%s wil een audio-/videogesprek starten."
 
 #, c-format
 msgid "%s wishes to start a video session with you."
-msgstr ""
+msgstr "%s wil een videogesprek starten."
 
 #, c-format
 msgid "%s has %d new message."
@@ -12412,9 +12365,8 @@
 "Kan handmatige browser niet starten omdat er geen correcte opdracht is "
 "ingesteld."
 
-#, fuzzy
 msgid "No message"
-msgstr "Onbekend bericht"
+msgstr "Geen bericht"
 
 msgid "Open All Messages"
 msgstr "Alle berichten openen"
@@ -12427,7 +12379,7 @@
 msgstr "Nieuw contactalarm"
 
 msgid "Dismiss"
-msgstr ""
+msgstr "Afwijzen"
 
 #, fuzzy
 msgid "<span weight=\"bold\" size=\"larger\">You have pounced!</span>"
@@ -12558,61 +12510,58 @@
 msgid "Pounce Target"
 msgstr "Alarmdoel"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Started typing"
-msgstr "...start met typen"
-
-#, fuzzy, c-format
+msgstr "Gestart met typen"
+
+#, c-format
 msgid "Paused while typing"
-msgstr "...pauzeert tijdens het typen"
-
-#, fuzzy, c-format
+msgstr "Pauzeert tijdens het typen"
+
+#, c-format
 msgid "Signed on"
-msgstr "...zich aanmeldt"
-
-#, fuzzy, c-format
+msgstr "Aangemeld"
+
+#, c-format
 msgid "Returned from being idle"
-msgstr "%s is weer actief (%s)"
-
-#, fuzzy, c-format
+msgstr "Is weer terug na inactief geweest te zijn"
+
+#, c-format
 msgid "Returned from being away"
-msgstr "...van afwezigheid terugkeert "
-
-#, fuzzy, c-format
+msgstr "Is weer terug na weg geweest te zijn"
+
+#, c-format
 msgid "Stopped typing"
-msgstr "Gestopt met typen"
-
-#, fuzzy, c-format
+msgstr "Stopte met typen"
+
+#, c-format
 msgid "Signed off"
-msgstr "...zich afmeldt"
-
-#, fuzzy, c-format
+msgstr "Afgemeld"
+
+#, c-format
 msgid "Became idle"
-msgstr "...inactief wordt"
-
-#, fuzzy, c-format
+msgstr "Werd incatief"
+
+#, c-format
 msgid "Went away"
-msgstr "Bij afwezigheid"
-
-#, fuzzy, c-format
+msgstr "Ging weg"
+
+#, c-format
 msgid "Sent a message"
-msgstr "Een bericht versturen"
-
-#, fuzzy, c-format
+msgstr "Verzond een bericht"
+
+#, c-format
 msgid "Unknown.... Please report this!"
-msgstr "Onbekend contactalarm. Rapporteer dit alstublieft!"
-
-#, fuzzy
+msgstr "Onbekend... Rapporteer dit alsjeblieft!"
+
 msgid "Theme failed to unpack."
-msgstr "Kan smileythema niet uitpakken."
-
-#, fuzzy
+msgstr "Kan thema niet uitpakken."
+
 msgid "Theme failed to load."
-msgstr "Kan smileythema niet uitpakken."
-
-#, fuzzy
+msgstr "Kan thema niet laden."
+
 msgid "Theme failed to copy."
-msgstr "Kan smileythema niet uitpakken."
+msgstr "Kan thema niet kopiëren."
 
 msgid "Install Theme"
 msgstr "Installeer thema"
@@ -12634,9 +12583,8 @@
 msgstr "_Sluit gesprekken af met de Escape toets"
 
 #. Buddy List Themes
-#, fuzzy
 msgid "Buddy List Theme"
-msgstr "Contactenlijst"
+msgstr "Thema contactenlijst"
 
 #. System Tray
 msgid "System Tray Icon"
@@ -12648,9 +12596,8 @@
 msgid "On unread messages"
 msgstr "Bij ongelezen berichten"
 
-#, fuzzy
 msgid "Conversation Window"
-msgstr "IM gespreksvensters"
+msgstr "Gespreksvenster"
 
 msgid "_Hide new IM conversations:"
 msgstr "_Nieuwe gesprekken verbergen:"
@@ -12777,7 +12724,7 @@
 
 #. TURN server
 msgid "Relay Server (TURN)"
-msgstr ""
+msgstr "Relay Server (TURN)"
 
 msgid "Proxy Server &amp; Browser"
 msgstr "Proxy-server &amp; browser"
@@ -13143,28 +13090,24 @@
 msgid "Add Smiley"
 msgstr "Smiley toevoegen"
 
-#, fuzzy
 msgid "_Image:"
-msgstr "_Afbeelding"
+msgstr "_Afbeelding:"
 
 #. Shortcut text
-#, fuzzy
 msgid "S_hortcut text:"
-msgstr "Snelkoppeling"
+msgstr "_Tekst snelkoppeling"
 
 msgid "Smiley"
 msgstr "Eigen smileys"
 
-#, fuzzy
 msgid "Shortcut Text"
-msgstr "Snelkoppeling"
+msgstr "Tekst snelkoppeling"
 
 msgid "Custom Smiley Manager"
 msgstr "Eigen smileys beheren"
 
-#, fuzzy
 msgid "Select Buddy Icon"
-msgstr "Contact selecteren"
+msgstr "Pictogram contact selecteren"
 
 msgid "Click to change your buddyicon for this account."
 msgstr "Klik om het contactplaatje voor dit account te veranderen."
@@ -13250,13 +13193,12 @@
 msgid "Cannot send launcher"
 msgstr "Kan starter niet sturen"
 
-#, fuzzy
 msgid ""
 "You dragged a desktop launcher. Most likely you wanted to send the target of "
 "this launcher instead of this launcher itself."
 msgstr ""
 "Je hebt een starter hierheen gesleept. Waarschijnlijk wil je het waar deze "
-"starter naar verwijst sturen."
+"starter naar verwijst sturen in plaats van de starter zelf."
 
 #, c-format
 msgid ""
@@ -13274,7 +13216,7 @@
 "Het bestand '%s' is te groot voor %s. Probeer een kleinere afbeelding\n"
 
 msgid "Icon Error"
-msgstr "Icoonfout"
+msgstr "Pictogramfout"
 
 msgid "Could not set icon"
 msgstr "Kan plaatje niet instellen"
@@ -13290,9 +13232,8 @@
 "kan afbeelding '%s' niet laden: reden onbekend, waarschijnlijk een kapotte "
 "afbeelding"
 
-#, fuzzy
 msgid "_Open Link"
-msgstr "Verwijzing _openen met:"
+msgstr "Koppeling _openen"
 
 msgid "_Copy Link Location"
 msgstr "Verwijzing _kopiëren"
@@ -13300,9 +13241,21 @@
 msgid "_Copy Email Address"
 msgstr "E-mailadres _kopiëren"
 
+msgid "_Open File"
+msgstr "Bestand _openen"
+
+msgid "Open _Containing Directory"
+msgstr "Ma_p openen"
+
 msgid "Save File"
 msgstr "Bestand opslaan"
 
+msgid "_Play Sound"
+msgstr "Geluid afs_pelen"
+
+msgid "_Save File"
+msgstr "Bestand op_slaan"
+
 msgid "Select color"
 msgstr "Selecteer kleur"
 
@@ -13402,21 +13355,17 @@
 msgid "Select an XMPP server to query"
 msgstr "Kies een te raadplegen conferentieserver"
 
-#, fuzzy
 msgid "Find Services"
-msgstr "Online diensten"
-
-#, fuzzy
+msgstr "Diensten zoeken"
+
 msgid "Add to Buddy List"
-msgstr "Contactenlijst verzenden"
-
-#, fuzzy
+msgstr "Aan contactenlijst toevoegen"
+
 msgid "Gateway"
-msgstr "...weggaat"
-
-#, fuzzy
+msgstr "Poort"
+
 msgid "Directory"
-msgstr "Map voor logboeken"
+msgstr "Map"
 
 #, fuzzy
 msgid "PubSub Collection"
@@ -13437,13 +13386,11 @@
 msgid "Service Discovery"
 msgstr "Directory info instellen"
 
-#, fuzzy
 msgid "_Browse"
-msgstr "_Browser:"
-
-#, fuzzy
+msgstr "_Bladeren"
+
 msgid "Server does not exist"
-msgstr "Gebruiker bestaat niet"
+msgstr "Server bestaat niet"
 
 #, fuzzy
 msgid "Server does not support service discovery"
@@ -14033,19 +13980,17 @@
 msgid "Disable Typing Notification Text"
 msgstr "Schakel typmelding in"
 
-#, fuzzy
 msgid "GTK+ Theme Control Settings"
-msgstr "Pidgin GTK+ themabeheer"
-
-#, fuzzy
+msgstr "Instellingen GTK+ themabeheer"
+
 msgid "Colors"
-msgstr "Sluiten"
+msgstr "Kleuren"
 
 msgid "Fonts"
 msgstr "Lettertypen"
 
 msgid "Miscellaneous"
-msgstr ""
+msgstr "Diversen"
 
 msgid "Gtkrc File Tools"
 msgstr "Gtkrc bestandsbesturing"
@@ -14190,34 +14135,30 @@
 msgid "Replaces text in outgoing messages according to user-defined rules."
 msgstr "Vervangt tekst in uitgaande berichten volgens uw eigen regels."
 
-#, fuzzy
 msgid "Just logged in"
-msgstr "Niet aangemeld"
-
-#, fuzzy
+msgstr "Aangemeld"
+
 msgid "Just logged out"
-msgstr "Niet aangemeld"
+msgstr "Afgemeld"
 
 msgid ""
 "Icon for Contact/\n"
 "Icon for Unknown person"
 msgstr ""
-
-#, fuzzy
+"Pictogram voor contact/\n"
+"Pictograam voor onbekend persoon"
+
 msgid "Icon for Chat"
-msgstr "Chat openen"
-
-#, fuzzy
+msgstr "Pictgram voor gesprek"
+
 msgid "Ignored"
-msgstr "Negeren"
-
-#, fuzzy
+msgstr "Genegeerd"
+
 msgid "Founder"
-msgstr "Harder"
-
-#, fuzzy
+msgstr "Oprichter"
+
 msgid "Operator"
-msgstr "Opera"
+msgstr "Operator"
 
 msgid "Half Operator"
 msgstr ""
@@ -14226,58 +14167,47 @@
 msgid "Authorization dialog"
 msgstr "Toestemming gegeven"
 
-#, fuzzy
 msgid "Error dialog"
-msgstr "Fout"
-
-#, fuzzy
+msgstr "Foutdialoogvenster"
+
 msgid "Information dialog"
-msgstr "Informatie"
+msgstr "Informatiedialoogvenster"
 
 msgid "Mail dialog"
-msgstr ""
-
-#, fuzzy
+msgstr "Maildialoogvenster"
+
 msgid "Question dialog"
-msgstr "Vraag"
-
-#, fuzzy
+msgstr "Dialoogvenster voor vragen"
+
 msgid "Warning dialog"
-msgstr "Waarschuwingsniveau"
+msgstr "Waarschuwingsdialoogvenster"
 
 msgid "What kind of dialog is this?"
-msgstr ""
-
-#, fuzzy
+msgstr "Wat voor soort dialoogvenster is dit?"
+
 msgid "Status Icons"
-msgstr "Status van %s"
-
-#, fuzzy
+msgstr "Status-pictogrammen"
+
 msgid "Chatroom Emblems"
-msgstr "Taal van chatruimte"
-
-#, fuzzy
+msgstr "Symbolen gespreksruimte"
+
 msgid "Dialog Icons"
-msgstr "Icoon veranderen"
-
-#, fuzzy
+msgstr "Pictogrammen voor dialoogvensters"
+
 msgid "Pidgin Icon Theme Editor"
-msgstr "Pidgin GTK+ themabeheer"
-
-#, fuzzy
+msgstr "Pidgin pictogram themabeheer"
+
 msgid "Contact"
-msgstr "Accountinformatie"
-
-#, fuzzy
+msgstr "Contact"
+
 msgid "Pidgin Buddylist Theme Editor"
-msgstr "Contactenlijst"
-
-#, fuzzy
+msgstr "Thema bewerken contactenlijst Pidgin"
+
 msgid "Edit Buddylist Theme"
-msgstr "Contactenlijst"
+msgstr "Thema contactenlijst bewerken"
 
 msgid "Edit Icon Theme"
-msgstr ""
+msgstr "Pictogram-thema bewerken"
 
 #. *< type
 #. *< ui_requirement
@@ -14286,16 +14216,14 @@
 #. *< priority
 #. *< id
 #. *  description
-#, fuzzy
 msgid "Pidgin Theme Editor"
-msgstr "Pidgin GTK+ themabeheer"
+msgstr "Pidgin themabewerker"
 
 #. *< name
 #. *< version
 #. *  summary
-#, fuzzy
 msgid "Pidgin Theme Editor."
-msgstr "Pidgin GTK+ themabeheer"
+msgstr "Pidgin themabewerker"
 
 #. *< type
 #. *< ui_requirement
@@ -14517,6 +14445,25 @@
 msgid "This plugin is useful for debbuging XMPP servers or clients."
 msgstr "Deze plug-in is handig voor het debuggen van XMPP servers of clienten."
 
+#, fuzzy
+#~ msgid "Malformed BOSH Connect Server"
+#~ msgstr "Kan geen verbinding maken met de server."
+
+#, fuzzy
+#~ msgid "Unable to not load SILC key pair"
+#~ msgstr "Kan SILC sleutelpaar niet laden"
+
+#~ msgid ""
+#~ "%s declined your conference invitation to room \"%s\" because \"%s\"."
+#~ msgstr "%s heeft uw uitnodiging voor ruimte \"%s\" afgeslagen omdat \"%s\"."
+
+#~ msgid "Invitation Rejected"
+#~ msgstr "Uitnodiging geweigerd"
+
+#, fuzzy
+#~ msgid "_Proxy"
+#~ msgstr "Proxy"
+
 #~ msgid "Cannot open socket"
 #~ msgstr "Kan socket niet openen"