# HG changeset patch # User Ethan Blanton # Date 1169480382 0 # Node ID 9143191e021b36100b68e19cecca5bcbd19845ec # Parent 967da2628f89fe3781c5a3817765d56baffe201c# Parent b2a8c5eca30a5dabd29e13075db41b59e13d3ea2 merge of '0884993343342bda1638f3903202437b13175ab3' and '3cb374255625c72e20208aca27585f230b36e915' diff -r b2a8c5eca30a -r 9143191e021b configure.ac --- a/configure.ac Mon Jan 22 05:33:34 2007 +0000 +++ b/configure.ac Mon Jan 22 15:39:42 2007 +0000 @@ -1890,9 +1890,11 @@ pidgin/pixmaps/Makefile pidgin/pixmaps/buddy_icons/Makefile pidgin/pixmaps/buddy_icons/qq/Makefile - pidgin/pixmaps/smileys/Makefile - pidgin/pixmaps/smileys/default/Makefile - pidgin/pixmaps/smileys/none/Makefile + pidgin/pixmaps/emotes/Makefile + pidgin/pixmaps/emotes/default/Makefile + pidgin/pixmaps/emotes/default/22/Makefile + pidgin/pixmaps/emotes/default/scalable/Makefile + pidgin/pixmaps/emotes/none/Makefile pidgin/pixmaps/status/Makefile pidgin/pixmaps/status/default/Makefile pidgin/plugins/Makefile diff -r b2a8c5eca30a -r 9143191e021b libpurple/log.c --- a/libpurple/log.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/log.c Mon Jan 22 15:39:42 2007 +0000 @@ -581,7 +581,7 @@ txt_logger_list_syslog); gaim_log_logger_add(txt_logger); - old_logger = gaim_log_logger_new("old", _("Old Gaim"), 9, + old_logger = gaim_log_logger_new("old", _("Old flat format"), 9, NULL, NULL, old_logger_finalize, diff -r b2a8c5eca30a -r 9143191e021b libpurple/plugin.c --- a/libpurple/plugin.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/plugin.c Mon Jan 22 15:39:42 2007 +0000 @@ -535,7 +535,7 @@ dep_name); gaim_notify_error(NULL, NULL, - _("Gaim encountered errors loading the plugin."), tmp); + _("Unable to load the plugin"), tmp); g_free(tmp); g_list_free(dep_list); @@ -561,7 +561,7 @@ plugin->info->name); gaim_notify_error(NULL, NULL, - _("Gaim was unable to load your plugin."), tmp); + _("Unable to load your plugin."), tmp); g_free(tmp); g_list_free(dep_list); @@ -666,7 +666,7 @@ g_free(translated_name); gaim_notify_error(NULL, NULL, - _("Gaim encountered errors unloading the plugin."), tmp); + _("There were errors unloading the plugin."), tmp); g_free(tmp); } } diff -r b2a8c5eca30a -r 9143191e021b libpurple/plugins/filectl.c --- a/libpurple/plugins/filectl.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/plugins/filectl.c Mon Jan 22 15:39:42 2007 +0000 @@ -245,12 +245,12 @@ GAIM_PRIORITY_DEFAULT, /**< priority */ FILECTL_PLUGIN_ID, /**< id */ - N_("Gaim File Control"), /**< name */ + N_("File Control"), /**< name */ VERSION, /**< version */ /** summary */ - N_("Allows you to control Gaim by entering commands in a file."), + N_("Allows control by entering commands in a file."), /** description */ - N_("Allows you to control Gaim by entering commands in a file."), + N_("Allows control by entering commands in a file."), "Eric Warmenhoven ", /**< author */ GAIM_WEBSITE, /**< homepage */ diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/bonjour/bonjour.c --- a/libpurple/protocols/bonjour/bonjour.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/bonjour/bonjour.c Mon Jan 22 15:39:42 2007 +0000 @@ -471,8 +471,7 @@ else if (((fullname = getlogin()) != NULL) && (fullname[0] != '\0')) ; else - fullname = _("Gaim User"); - + fullname = _("John Noname"); /* Make sure fullname is valid UTF-8. If not, try to convert it. */ if (!g_utf8_validate(fullname, -1, NULL)) { diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/irc/dcc_send.c --- a/libpurple/protocols/irc/dcc_send.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/irc/dcc_send.c Mon Jan 22 15:39:42 2007 +0000 @@ -294,7 +294,7 @@ if (sock < 0) { gaim_notify_error(gc, NULL, _("File Transfer Failed"), - _("Gaim could not open a listening port.")); + _("Could not open a listening port.")); gaim_xfer_cancel_local(xfer); return; } @@ -335,7 +335,7 @@ if (xd->listen_data == NULL) { gaim_xfer_unref(xfer); gaim_notify_error(gc, NULL, _("File Transfer Failed"), - _("Gaim could not open a listening port.")); + _("Could not open a listening port.")); gaim_xfer_cancel_local(xfer); } diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/irc/msgs.c --- a/libpurple/protocols/irc/msgs.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/irc/msgs.c Mon Jan 22 15:39:42 2007 +0000 @@ -359,7 +359,7 @@ return; buf = g_strdup_printf(_("Unknown message '%s'"), args[1]); - gaim_notify_error(gc, _("Unknown message"), buf, _("Gaim has sent a message the IRC server did not understand.")); + gaim_notify_error(gc, _("Unknown message"), buf, _("The IRC server received a message it did not understand.")); g_free(buf); } diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/msn/error.c --- a/libpurple/protocols/msn/error.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/msn/error.c Mon Jan 22 15:39:42 2007 +0000 @@ -35,7 +35,7 @@ _("Unable to parse message")); case 200: g_snprintf(msg, sizeof(msg), - _("Syntax Error (probably a Gaim bug)")); + _("Syntax Error (probably a client bug)")); break; case 201: g_snprintf(msg, sizeof(msg), diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/msn/msn.c --- a/libpurple/protocols/msn/msn.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/msn/msn.c Mon Jan 22 15:39:42 2007 +0000 @@ -1809,7 +1809,7 @@ "This either means that the user does not exist, " "or that the user exists " "but has not created a public profile.") : - _("Gaim could not find " /* This should never happen */ + _("Could not find " /* This should never happen */ "any information in the user's profile. " "The user most likely does not exist.")))); } diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/oscar/oscar.c --- a/libpurple/protocols/oscar/oscar.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/oscar/oscar.c Mon Jan 22 15:39:42 2007 +0000 @@ -1469,7 +1469,7 @@ g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. You may want to use TOC until " "this is fixed. Check %s for updates."), GAIM_WEBSITE); gaim_notify_warning(pos->gc, NULL, - _("Gaim was unable to get a valid AIM login hash."), + _("Unable to get a valid AIM login hash."), buf); gaim_input_remove(pos->inpa); close(pos->fd); @@ -1512,7 +1512,7 @@ buf = g_strdup_printf(_("You may be disconnected shortly. You may want to use TOC until " "this is fixed. Check %s for updates."), GAIM_WEBSITE); gaim_notify_warning(pos->gc, NULL, - _("Gaim was unable to get a valid AIM login hash."), + _("Unable to get a valid AIM login hash."), buf); g_free(buf); g_free(pos->modname); @@ -1601,7 +1601,7 @@ g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly. " "Check %s for updates."), GAIM_WEBSITE); gaim_notify_warning(pos->gc, NULL, - _("Gaim was unable to get a valid login hash."), + _("Unable to get a valid login hash."), buf); } @@ -4454,9 +4454,9 @@ { gchar *errstr; errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte " - "has been exceeded. Gaim has truncated it for you.", + "has been exceeded. It has been truncated it for you.", "The maximum profile length of %d bytes " - "has been exceeded. Gaim has truncated it for you.", + "has been exceeded. It has been truncated it for you.", od->rights.maxsiglen), od->rights.maxsiglen); gaim_notify_warning(gc, NULL, _("Profile too long."), errstr); g_free(errstr); @@ -4683,7 +4683,7 @@ if (reason == 0x0005) { gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"), - _("Gaim was temporarily unable to retrieve your buddy list from the AIM servers. Your buddy list is not lost, and will probably become available in a few hours.")); + _("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 hours.")); if (od->getblisttimer > 0) gaim_timeout_remove(od->getblisttimer); od->getblisttimer = gaim_timeout_add(30000, gaim_ssi_rerequestdata, od); diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/silc/silc.c --- a/libpurple/protocols/silc/silc.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/silc/silc.c Mon Jan 22 15:39:42 2007 +0000 @@ -297,7 +297,7 @@ gaim_account_set_user_info(account, client->realname); } else { free(realname); - client->realname = strdup(_("Gaim User")); + client->realname = strdup(_("John Noname")); } client->hostname = silc_net_localhost(); @@ -1531,7 +1531,7 @@ g_free(silcargs); if (!silc_client_command_call(sg->client, sg->conn, silccmd)) { g_free(silccmd); - *error = g_strdup_printf(_("Unknown command: %s, (may be a Gaim bug)"), cmd); + *error = g_strdup_printf(_("Unknown command: %s, (may be a client bug)"), cmd); return GAIM_CMD_RET_FAILED; } g_free(silccmd); diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/toc/toc.c --- a/libpurple/protocols/toc/toc.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/toc/toc.c Mon Jan 22 15:39:42 2007 +0000 @@ -995,13 +995,6 @@ gaim_notify_info(gc, NULL, _("Password Change Successful"), NULL); } else if (!g_ascii_strcasecmp(c, "PAUSE")) { tdt->state = STATE_PAUSE; - gaim_notify_warning(gc, NULL, - _("TOC has sent a PAUSE command."), - _("When this happens, TOC ignores any messages " - "sent to it, and may kick you off if you send a" - " message. Gaim will prevent anything from " - "going through. This is only temporary, please " - "be patient.")); } else if (!g_ascii_strcasecmp(c, "RVOUS_PROPOSE")) { #if 0 char *user, *uuid, *cookie; @@ -2192,7 +2185,7 @@ ft->port = fr->port; ft->files = fr->files; - ft->window = window = gtk_file_selection_new(_("Gaim - Save As...")); + ft->window = window = gtk_file_selection_new(_("Save As...")); g_snprintf(buf, sizeof(buf), "%s/%s", gaim_home_dir(), fr->filename ? fr->filename : ""); gtk_file_selection_set_filename(GTK_FILE_SELECTION(window), buf); g_signal_connect(G_OBJECT(window), "destroy", diff -r b2a8c5eca30a -r 9143191e021b libpurple/protocols/yahoo/yahoo.c --- a/libpurple/protocols/yahoo/yahoo.c Mon Jan 22 05:33:34 2007 +0000 +++ b/libpurple/protocols/yahoo/yahoo.c Mon Jan 22 15:39:42 2007 +0000 @@ -1792,7 +1792,7 @@ break; default: buf = g_strdup_printf(_("The Yahoo server has requested the use of an unrecognized " - "authentication method. This version of Gaim will likely not be able " + "authentication method. You will probably not be able " "to successfully sign on to Yahoo. Check %s for updates."), GAIM_WEBSITE); gaim_notify_error(gc, "", _("Failed Yahoo! Authentication"), buf); @@ -1911,13 +1911,6 @@ "Gaim/" VERSION, FALSE, yahoo_login_page_cb, gc); if (url_data != NULL) yd->url_datas = g_slist_prepend(yd->url_datas, url_data); - gaim_notify_warning(gc, NULL, _("Normal authentication failed!"), - _("The normal authentication method has failed. " - "This means either your password is incorrect, " - "or Yahoo!'s authentication scheme has changed. " - "Gaim will now attempt to log in using Web " - "Messenger authentication, which will result " - "in reduced functionality and features.")); return; } msg = g_strdup(_("Incorrect password.")); diff -r b2a8c5eca30a -r 9143191e021b pidgin/gtkconn.c --- a/pidgin/gtkconn.c Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/gtkconn.c Mon Jan 22 15:39:42 2007 +0000 @@ -177,7 +177,7 @@ p = g_strdup_printf(_("%s disconnected"), n); s = g_strdup_printf(_("%s\n\n" - "Gaim will not attempt to reconnect the account until you " + PIDGIN_NAME " will not attempt to reconnect the account until you " "correct the error and re-enable the account."), text); gaim_notify_error(NULL, NULL, p, s); g_free(p); diff -r b2a8c5eca30a -r 9143191e021b pidgin/gtkutils.c --- a/pidgin/gtkutils.c Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/gtkutils.c Mon Jan 22 15:39:42 2007 +0000 @@ -1409,7 +1409,7 @@ str = g_strdup_printf(_("Cannot send folder %s."), basename); gaim_notify_error(NULL, NULL, - str,_("Gaim cannot transfer a folder. You will need to send the files within individually")); + str,_(PIDGIN_NAME " cannot transfer a folder. You will need to send the files within individually")); g_free(str); diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/Makefile.am --- a/pidgin/pixmaps/Makefile.am Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/pixmaps/Makefile.am Mon Jan 22 15:39:42 2007 +0000 @@ -1,4 +1,4 @@ -SUBDIRS = buddy_icons smileys status +SUBDIRS = buddy_icons emotes status EXTRA_DIST = \ about_menu.png \ diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/Makefile.mingw --- a/pidgin/pixmaps/Makefile.mingw Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -# -# Makefile.mingw -# -# Description: Makefile for win32 (mingw) version of Gaim pixmaps -# - -GAIM_TOP := ../.. -include $(GAIM_TOP)/libpurple/win32/global.mak - -datadir := $(GAIM_INSTALL_DIR) -include ./Makefile.am - -.PHONY: install - -install: - if test '$(SUBDIRS)'; then \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - $(MAKE) -C $$subdir -f $(GAIM_WIN32_MAKEFILE) install; \ - done; \ - fi; - if test '$(gaimbuttonpix_DATA)'; then \ - mkdir -p $(gaimbuttonpixdir); \ - cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \ - fi; - if test '$(gaimdialogpix_DATA)'; then \ - mkdir -p $(gaimdialogpixdir); \ - cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \ - fi; - if test '$(gaimiconpix_DATA)'; then \ - mkdir -p $(gaimiconpixdir); \ - cp $(gaimiconpix_DATA) $(gaimiconpixdir); \ - fi; - if test '$(gaimdistpix_DATA)'; then \ - mkdir -p $(gaimdistpixdir); \ - cp $(gaimdistpix_DATA) $(gaimdistpixdir); \ - fi; - if test '$(distpixmap_DATA)'; then \ - mkdir -p $(distpixmapdir); \ - cp $(distpixmap_DATA) $(distpixmapdir); \ - fi; - diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/Makefile.am Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,1 @@ +SUBDIRS=default none diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/THEMES-HOWTO --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/THEMES-HOWTO Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,32 @@ +Gaim Smiley Themes Documentation +Sean M. Egan +5 Jan 2003 + +Version 0.60 of Gaim brings up all themable smileys. In the preferences dialog, a user can choose from a selection of looks his smileys will take. This guide is to serve as a reference to those interested in creating third-party smiley themes. + +Your theme should be contained in a single directory. This directory will be installed in the Gaim smiley theme directory ($HOME/.gaim/smileys/). This directory will contain a file called `theme' that specifies the theme metadata and image files that are used by the theme. The format of the `theme' file is as follows. + +The beginning of the file contains some metainformation about the theme in the format + +Key=Value + +Valid keys include: +Name - Name of the theme +Description - Description of the theme +Icon - An image used to represent the theme in the theme selector UI +Author - The author's name + +Following this meta-information are "sml" groups. A "sml" group is a group of smileys that will be shown together. For example, each protocol has its own "sml" group (MSN, Yahoo, Gadu-Gadu, etc.). The name of the group is surrounded in square brackets, and each line beneath it (until the next sml group or the end of the file) defines a smiley. +Each line of the group starts with a filename of the icon followed by a space-delimited list of the characters that represent it. + +Example: +[AIM/ICQ] +smiley.png :) :-) + +In the smiley selector UI, each icon will only be shown once, and the first string representing it will be used. To keep a smiley out of the selector altogether, make the first two characters of the line "! " followed by the filename and emoticons. + +As of 2.0.0beta2, spaces and backslashes in the "list of characters" (see above) must be escaped by prepending them with a backslash. For example, to define a smiley that is represented by ":-/" and ":-\", use: + +[AIM/ICQ] +think.png :-/ :-\\ + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/22/Makefile.am Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,166 @@ +SMILEYS = act-up.png \ + airplane.png \ + alien.png \ + angel.png \ + angry.png \ + arrogant.png \ + bad.png \ + bashful.png \ + beat-up.png \ + beauty.png \ + beer.png \ + blowkiss.png \ + bomb.png \ + bowl.png \ + boy.png \ + brb.png \ + bye.png \ + cake.png \ + camera.png \ + can.png \ + car.png \ + cat.png \ + chicken.png \ + clap.png \ + clock.png \ + cloudy.png \ + clover.png \ + clown.png \ + coffee.png \ + coins.png \ + computer.png \ + confused.png \ + console.png \ + cowboy.png \ + cow.png \ + crying.png \ + curl-lip.png \ + curse.png \ + cute.png \ + dance.png \ + dazed.png \ + desire.png \ + devil.png \ + disapointed.png \ + disdain.png \ + doctor.png \ + dog.png \ + doh.png \ + dont-know.png \ + drink.png \ + drool.png \ + eat.png \ + embarrassed.png \ + excruciating.png \ + eyeroll.png \ + film.png \ + fingers-crossed.png \ + flag.png \ + freaked-out.png \ + ghost.png \ + girl.png \ + glasses-cool.png \ + glasses-nerdy.png \ + go-away.png \ + good.png \ + hammer.png \ + handcuffs.png \ + handshake.png \ + highfive.png \ + hug-left.png \ + hug-right.png \ + hungry.png \ + hypnotized.png \ + in-love.png \ + island.png \ + jump.png \ + kiss.png \ + knife.png \ + lamp.png \ + lashes.png \ + laugh.png \ + liquor.png \ + love-over.png \ + love.png \ + lying.png \ + mail.png \ + mean.png \ + meeting.png \ + mobile.png \ + monkey.png \ + moon.png \ + msn-away.png \ + msn-busy.png \ + msn_online.png \ + msn.png \ + musical-note.png \ + neutral.png \ + party.png \ + peace.png \ + phone.png \ + pig.png \ + pill.png \ + pissed-off.png \ + pizza.png \ + plate.png \ + poop.png \ + pray.png \ + present.png \ + pumpkin.png \ + qq.png \ + question.png \ + quiet.png \ + rainbow.png \ + rain.png \ + rose-dead.png \ + rose.png \ + sad.png \ + sarcastic.png \ + search.png \ + secret.png \ + shame.png \ + sheep.png \ + shock.png \ + shut-mouth.png \ + sick.png \ + sigarette.png \ + silly.png \ + skeleton.png \ + sleepy.png \ + smile-big.png \ + smile.png \ + smirk.png \ + snail.png \ + snicker.png \ + snowman.png \ + soccerball.png \ + soldier.png \ + star.png \ + starving.png \ + struggle.png \ + sun.png \ + sweat.png \ + teeth.png \ + terror.png \ + thinking.png \ + thunder.png \ + tongue.png \ + tremble.png \ + turtle.png \ + tv.png \ + umbrella.png \ + vampire.png \ + victory.png \ + watermelon.png \ + weep.png \ + wilt.png \ + wink.png \ + yawn.png \ + yin-yang.png + +pidginsmileypixdir = $(datadir)/pixmaps/gaim/smileys/default +pidginsmileypix_DATA = \ + $(SMILEYS) \ + theme + +EXTRA_DIST = $(pidginsmileypix_DATA) diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/act-up.png Binary file pidgin/pixmaps/emotes/default/22/act-up.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/airplane.png Binary file pidgin/pixmaps/emotes/default/22/airplane.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/alien.png Binary file pidgin/pixmaps/emotes/default/22/alien.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/angel.png Binary file pidgin/pixmaps/emotes/default/22/angel.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/angry.png Binary file pidgin/pixmaps/emotes/default/22/angry.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/arrogant.png Binary file pidgin/pixmaps/emotes/default/22/arrogant.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/bad.png Binary file pidgin/pixmaps/emotes/default/22/bad.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/bashful.png Binary file pidgin/pixmaps/emotes/default/22/bashful.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/beat-up.png Binary file pidgin/pixmaps/emotes/default/22/beat-up.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/beauty.png Binary file pidgin/pixmaps/emotes/default/22/beauty.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/beer.png Binary file pidgin/pixmaps/emotes/default/22/beer.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/blowkiss.png Binary file pidgin/pixmaps/emotes/default/22/blowkiss.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/bomb.png Binary file pidgin/pixmaps/emotes/default/22/bomb.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/bowl.png Binary file pidgin/pixmaps/emotes/default/22/bowl.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/boy.png Binary file pidgin/pixmaps/emotes/default/22/boy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/brb.png Binary file pidgin/pixmaps/emotes/default/22/brb.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/bye.png Binary file pidgin/pixmaps/emotes/default/22/bye.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/cake.png Binary file pidgin/pixmaps/emotes/default/22/cake.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/camera.png Binary file pidgin/pixmaps/emotes/default/22/camera.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/can.png Binary file pidgin/pixmaps/emotes/default/22/can.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/car.png Binary file pidgin/pixmaps/emotes/default/22/car.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/cat.png Binary file pidgin/pixmaps/emotes/default/22/cat.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/chicken.png Binary file pidgin/pixmaps/emotes/default/22/chicken.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/clap.png Binary file pidgin/pixmaps/emotes/default/22/clap.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/clock.png Binary file pidgin/pixmaps/emotes/default/22/clock.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/cloudy.png Binary file pidgin/pixmaps/emotes/default/22/cloudy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/clover.png Binary file pidgin/pixmaps/emotes/default/22/clover.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/clown.png Binary file pidgin/pixmaps/emotes/default/22/clown.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/coffee.png Binary file pidgin/pixmaps/emotes/default/22/coffee.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/coins.png Binary file pidgin/pixmaps/emotes/default/22/coins.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/computer.png Binary file pidgin/pixmaps/emotes/default/22/computer.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/confused.png Binary file pidgin/pixmaps/emotes/default/22/confused.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/console.png Binary file pidgin/pixmaps/emotes/default/22/console.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/cow.png Binary file pidgin/pixmaps/emotes/default/22/cow.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/cowboy.png Binary file pidgin/pixmaps/emotes/default/22/cowboy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/crying.png Binary file pidgin/pixmaps/emotes/default/22/crying.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/curl-lip.png Binary file pidgin/pixmaps/emotes/default/22/curl-lip.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/curse.png Binary file pidgin/pixmaps/emotes/default/22/curse.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/cute.png Binary file pidgin/pixmaps/emotes/default/22/cute.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/dance.png Binary file pidgin/pixmaps/emotes/default/22/dance.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/dazed.png Binary file pidgin/pixmaps/emotes/default/22/dazed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/desire.png Binary file pidgin/pixmaps/emotes/default/22/desire.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/devil.png Binary file pidgin/pixmaps/emotes/default/22/devil.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/disapointed.png Binary file pidgin/pixmaps/emotes/default/22/disapointed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/disdain.png Binary file pidgin/pixmaps/emotes/default/22/disdain.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/doctor.png Binary file pidgin/pixmaps/emotes/default/22/doctor.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/dog.png Binary file pidgin/pixmaps/emotes/default/22/dog.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/doh.png Binary file pidgin/pixmaps/emotes/default/22/doh.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/dont-know.png Binary file pidgin/pixmaps/emotes/default/22/dont-know.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/drink.png Binary file pidgin/pixmaps/emotes/default/22/drink.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/drool.png Binary file pidgin/pixmaps/emotes/default/22/drool.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/eat.png Binary file pidgin/pixmaps/emotes/default/22/eat.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/embarrassed.png Binary file pidgin/pixmaps/emotes/default/22/embarrassed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/excruciating.png Binary file pidgin/pixmaps/emotes/default/22/excruciating.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/eyeroll.png Binary file pidgin/pixmaps/emotes/default/22/eyeroll.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/film.png Binary file pidgin/pixmaps/emotes/default/22/film.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/fingers-crossed.png Binary file pidgin/pixmaps/emotes/default/22/fingers-crossed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/flag.png Binary file pidgin/pixmaps/emotes/default/22/flag.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/freaked-out.png Binary file pidgin/pixmaps/emotes/default/22/freaked-out.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/ghost.png Binary file pidgin/pixmaps/emotes/default/22/ghost.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/girl.png Binary file pidgin/pixmaps/emotes/default/22/girl.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/glasses-cool.png Binary file pidgin/pixmaps/emotes/default/22/glasses-cool.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/glasses-nerdy.png Binary file pidgin/pixmaps/emotes/default/22/glasses-nerdy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/go-away.png Binary file pidgin/pixmaps/emotes/default/22/go-away.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/good.png Binary file pidgin/pixmaps/emotes/default/22/good.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/hammer.png Binary file pidgin/pixmaps/emotes/default/22/hammer.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/handcuffs.png Binary file pidgin/pixmaps/emotes/default/22/handcuffs.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/handshake.png Binary file pidgin/pixmaps/emotes/default/22/handshake.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/highfive.png Binary file pidgin/pixmaps/emotes/default/22/highfive.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/hug-left.png Binary file pidgin/pixmaps/emotes/default/22/hug-left.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/hug-right.png Binary file pidgin/pixmaps/emotes/default/22/hug-right.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/hungry.png Binary file pidgin/pixmaps/emotes/default/22/hungry.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/hypnotized.png Binary file pidgin/pixmaps/emotes/default/22/hypnotized.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/in-love.png Binary file pidgin/pixmaps/emotes/default/22/in-love.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/island.png Binary file pidgin/pixmaps/emotes/default/22/island.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/jump.png Binary file pidgin/pixmaps/emotes/default/22/jump.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/kiss.png Binary file pidgin/pixmaps/emotes/default/22/kiss.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/knife.png Binary file pidgin/pixmaps/emotes/default/22/knife.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/lamp.png Binary file pidgin/pixmaps/emotes/default/22/lamp.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/lashes.png Binary file pidgin/pixmaps/emotes/default/22/lashes.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/laugh.png Binary file pidgin/pixmaps/emotes/default/22/laugh.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/liquor.png Binary file pidgin/pixmaps/emotes/default/22/liquor.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/love-over.png Binary file pidgin/pixmaps/emotes/default/22/love-over.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/love.png Binary file pidgin/pixmaps/emotes/default/22/love.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/lying.png Binary file pidgin/pixmaps/emotes/default/22/lying.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/mail.png Binary file pidgin/pixmaps/emotes/default/22/mail.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/mean.png Binary file pidgin/pixmaps/emotes/default/22/mean.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/meeting.png Binary file pidgin/pixmaps/emotes/default/22/meeting.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/mobile.png Binary file pidgin/pixmaps/emotes/default/22/mobile.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/monkey.png Binary file pidgin/pixmaps/emotes/default/22/monkey.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/moon.png Binary file pidgin/pixmaps/emotes/default/22/moon.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/msn-away.png Binary file pidgin/pixmaps/emotes/default/22/msn-away.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/msn-busy.png Binary file pidgin/pixmaps/emotes/default/22/msn-busy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/msn.png Binary file pidgin/pixmaps/emotes/default/22/msn.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/msn_online.png Binary file pidgin/pixmaps/emotes/default/22/msn_online.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/musical-note.png Binary file pidgin/pixmaps/emotes/default/22/musical-note.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/neutral.png Binary file pidgin/pixmaps/emotes/default/22/neutral.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/party.png Binary file pidgin/pixmaps/emotes/default/22/party.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/peace.png Binary file pidgin/pixmaps/emotes/default/22/peace.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/phone.png Binary file pidgin/pixmaps/emotes/default/22/phone.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/pig.png Binary file pidgin/pixmaps/emotes/default/22/pig.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/pill.png Binary file pidgin/pixmaps/emotes/default/22/pill.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/pissed-off.png Binary file pidgin/pixmaps/emotes/default/22/pissed-off.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/pizza.png Binary file pidgin/pixmaps/emotes/default/22/pizza.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/plate.png Binary file pidgin/pixmaps/emotes/default/22/plate.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/poop.png Binary file pidgin/pixmaps/emotes/default/22/poop.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/pray.png Binary file pidgin/pixmaps/emotes/default/22/pray.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/present.png Binary file pidgin/pixmaps/emotes/default/22/present.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/pumpkin.png Binary file pidgin/pixmaps/emotes/default/22/pumpkin.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/qq.png Binary file pidgin/pixmaps/emotes/default/22/qq.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/question.png Binary file pidgin/pixmaps/emotes/default/22/question.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/quiet.png Binary file pidgin/pixmaps/emotes/default/22/quiet.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/rain.png Binary file pidgin/pixmaps/emotes/default/22/rain.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/rainbow.png Binary file pidgin/pixmaps/emotes/default/22/rainbow.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/rose-dead.png Binary file pidgin/pixmaps/emotes/default/22/rose-dead.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/rose.png Binary file pidgin/pixmaps/emotes/default/22/rose.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sad.png Binary file pidgin/pixmaps/emotes/default/22/sad.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sarcastic.png Binary file pidgin/pixmaps/emotes/default/22/sarcastic.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/search.png Binary file pidgin/pixmaps/emotes/default/22/search.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/secret.png Binary file pidgin/pixmaps/emotes/default/22/secret.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/shame.png Binary file pidgin/pixmaps/emotes/default/22/shame.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sheep.png Binary file pidgin/pixmaps/emotes/default/22/sheep.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/shock.png Binary file pidgin/pixmaps/emotes/default/22/shock.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/shut-mouth.png Binary file pidgin/pixmaps/emotes/default/22/shut-mouth.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sick.png Binary file pidgin/pixmaps/emotes/default/22/sick.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sigarette.png Binary file pidgin/pixmaps/emotes/default/22/sigarette.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/silly.png Binary file pidgin/pixmaps/emotes/default/22/silly.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/skeleton.png Binary file pidgin/pixmaps/emotes/default/22/skeleton.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sleepy.png Binary file pidgin/pixmaps/emotes/default/22/sleepy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/smile-big.png Binary file pidgin/pixmaps/emotes/default/22/smile-big.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/smile.png Binary file pidgin/pixmaps/emotes/default/22/smile.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/smirk.png Binary file pidgin/pixmaps/emotes/default/22/smirk.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/snail.png Binary file pidgin/pixmaps/emotes/default/22/snail.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/snicker.png Binary file pidgin/pixmaps/emotes/default/22/snicker.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/snowman.png Binary file pidgin/pixmaps/emotes/default/22/snowman.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/soccerball.png Binary file pidgin/pixmaps/emotes/default/22/soccerball.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/soldier.png Binary file pidgin/pixmaps/emotes/default/22/soldier.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/star.png Binary file pidgin/pixmaps/emotes/default/22/star.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/starving.png Binary file pidgin/pixmaps/emotes/default/22/starving.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/struggle.png Binary file pidgin/pixmaps/emotes/default/22/struggle.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sun.png Binary file pidgin/pixmaps/emotes/default/22/sun.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/sweat.png Binary file pidgin/pixmaps/emotes/default/22/sweat.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/teeth.png Binary file pidgin/pixmaps/emotes/default/22/teeth.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/terror.png Binary file pidgin/pixmaps/emotes/default/22/terror.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/theme --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/22/theme Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,274 @@ +Name=Default +Description=Emotes from each protocol's official client, restyled. +Icon=smile.png +Author=Hylke Bons + +[default] +smile.png :) +smile-big.png :-D :-d :D :d +sad.png :-( :( +wink.png ;-) ;) +tongue.png :-P :-p +shock.png =-O =-o +kiss.png :-* +glasses-cool.png 8-) +embarrassed.png :-[ +crying.png :'( +thinking.png :-/ :-\\ +angel.png O:-) +shut-mouth.png :-X + +[MSN] +smile.png :) +smile-big.png :-D :-d :D :d +shock.png :-O :-o :O :o +tongue.png :-P :-p :P :p +wink.png ;-) ;) +sad.png :-( :( +confused.png :-S :-s :S :s +disapointed.png :-| :| +crying.png :'-( :'( +embarrassed.png :-$ :$ +glasses-cool.png (H) (h) +angry.png :-@ :@ >:-( >:( +angel.png (A) (a) +devil.png (6) +quiet.png :-# :# +teeth.png 8o| +glasses-nerdy.png 8-) +sarcastic.png ^o( +secret.png :-* +sick.png +o( +dont-know.png :^) +thinking.png *-) +party.png <:O) <:o) +disdain.png +sleepy.png |-) +coffee.png (C) (c) +good.png (Y) (y) +bad.png (N) (n) +beer.png (B) (b) +drink.png (D) (d) +boy.png (Z) (z) +girl.png (X) (x) +hug-left.png ({) +hug-right.png (}) +vampire.png :[ :-[ +cake.png (^) +love.png (L) (l) +love-over.png (U) (u) +kiss.png (K) (k) +present.png (G) (g) +rose.png (F) (f) +rose-dead.png (W) (w) +camera.png (P) (p) +film.png (~) +cat.png (@) +dog.png (&) +phone.png (T) (t) +lamp.png (I) (i) +musical-note.png (8) +moon.png (S) (s) +star.png (*) +mail.png (E) (e) +clock.png (O) (o) +msn.png (M) (m) +snail.png (SN) (sn) +sheep.png (BAH) (bah) +plate.png (PL) (pl) +bowl.png (||) +pizza.png (PI) (pi) +soccerball.png (SO) (so) +car.png (AU) (au) +airplane.png (AP) (ap) +umbrella.png (UM) (um) +island.png (IP) (ip) +computer.png (CO) (co) +mobile.png (MP) (mp) +rain.png (ST) (st) +thunder.png (LI) (li) +coins.png (MO) (mo) + +[QQ] +shock.png /惊讶 /:O /jy /surprised +curl-lip.png /撇嘴 /:~ /pz /curl_lip +desire.png /色 /:* /se /desire +dazed.png /发呆 /:| /dazed +party.png /得意 /8-) /dy /revel (to revel in) +crying.png /:< /ll /cry +bashful.png /害羞 /:$ /hx /bashful +shut-mouth.png /闭嘴 /:X /bz /shut_mouth +sleepy.png /睡 /:Z /shui /sleep +weep.png /大哭 /:'( /dk /weep +embarrassed.png /尴尬 /:-| /gg /embarassed +pissed-off.png /发怒 /:@ /fn /pissed_off +act-up.png /调皮 /:P /tp /act_up +smile-big.png /呲牙 /:D /cy /toothy_smile +smile.png /微笑 /:) /wx /small_smile +sad.png /难过 /:( /ng /sad +glasses-cool.png /酷 /:+ /kuk /cool +doctor.png /非典 /:# /feid /SARS +silly.png /抓狂 /:Q /zk /crazy +sick.png /吐 /:T /tu /vomit +snicker.png /偷笑 /;p /tx /titter (snicker) +cute.png /可爱 /;-D /ka /cute +disdain.png /白眼 /;d /by /disdain +arrogant.png /傲慢 /;o /am /arrogant +starving.png /饥饿 /:g /jie /starving +yawn.png /困 /|-) /kun /sleepy +terror.png /惊恐 /:! /jk /terror +sweat.png /流汗 /:L /sweat +smirk.png /憨笑 /:> /hanx /smirk +soldier.png /大兵 /:; /db /soldier +struggle.png /奋斗 /;f /fendou /struggle +curse.png /咒骂 /:-S /zhm /curse (swear) +question.png /疑问 /? /yiw /question (confused) +quiet.png /嘘... /;x /xu /shh +hypnotized.png /晕 /;@ /yun /dizzy +excruciating.png /折磨 /:8 /zhem /excrutiating +freaked-out.png /衰 /;! /shuai /freaked_out (pissed off) +skeleton.png /骷髅 /!!! /kl /skeleton +hammer.png /敲打 /xx /qiao /hammer +bye.png /再见 /bye /zj /bye +go-away.png /闪人 /go /shan /go (going somewhere) +tremble.png /发抖 /shake /fad /shake (tremble) +in-love.png /爱情 /love /aiq /love +jump.png /跳 /jump /tiao /jump +search.png /找 /find /zhao /search +lashes.png /美眉 /& /mm /beautiful_eyebrows (synonym for beauty) +pig.png /猪头 /pig /zt /pig +cat.png /猫咪 /cat /mm /cat +dog.png /小狗 /dog /xg /dog +hug-left.png /拥抱 /hug /yb /hug +coins.png /钱 /$ /qianc /money +lamp.png /灯泡 /! /dp /lightbulb +bowl.png /酒杯 /cup /bei /cup +cake.png /蛋糕 /cake /dg /cake +thunder.png /闪电 /li /shd /lightning +bomb.png /炸弹 /bome /zhd /bomb +knife.png /刀 /kn /dao /knife +soccerball.png /足球 /footb /zq /soccer +musical-note.png /音乐 /music /yy /music +poop.png /便便 /shit /bb /shit +coffee.png /咖啡 /coffee /kf /coffee +eat.png /饭 /eat /fan /eat +pill.png /药丸 /pill /yw /pill +rose.png /玫瑰 /rose /mg /rose +wilt.png /凋谢 /fade /dx /wilt +kiss.png /吻 /kiss /wen /kiss +love.png /爱心 /heart /xin /heart +love-over.png /心碎 /break /xs /broken_heart +meeting.png /会议 /meeting /hy /meeting +present.png /礼物 /gift /lw /gift +phone.png /电话 /phone /dh /phone +clock.png /时间 /time /sj /time +mail.png /邮件 /email /yj /email +tv.png /电视 /TV /ds /TV +sun.png /太阳 /sun /ty /sun +moon.png /月亮 /moon /yl /moon +good.png /强 /strong /qiang /thumbs_up +bad.png /弱 /weak /ruo /thumbs_down +handshake.png /握手 /share /ws /handshake +victory.png /胜利 /v /shl /victory +beauty.png /美女 / /mn /beauty (noun) +qq.png /Q仔 / /qz /qq (QQ's penguin logo) +blowkiss.png /飞吻 / /fw /blow_kiss +angry.png /怄火 / /oh /angry +liquor.png /白酒 / /bj /baijiu (a type of Chinese liquor) +can.png /汽水 / /qsh /soda +watermelon.png /西瓜 / /xigua /watermelon +rain.png /下雨 / /xy /rain +cloudy.png /多云 /<~> /duoy /cloudy +snowman.png /雪人 / /xr /snowman +star.png /星星 /<*> /xixing /star +girl.png /女 /<00> /nv /woman +boy.png /男 /<11> /nan /man + + +[YAHOO] +angel.png o:-) O:-) 0:-) +angry.png X-( x-( X( x( +lashes.png ;;) +smile-big.png :D :-D :d :-d +embarrassed.png :"> +bye.png =; +clap.png =D> =d> +clown.png :o) :O) :0) +crying.png :(( :-(( +devil.png >:) +doh.png #-o #-O +drool.png =P~ =p~ +sarcastic.png /:) /:-) +eyeroll.png 8-| +glasses-nerdy.png :-B :-b +kiss.png :* :-* +laugh.png :)) :-)) +love.png :x :-x :X :-X +mean.png :> :-> +neutral.png :| :-| +shock.png :O :-O :o :-o +question.png :-\\ :-/ +sad.png :( :-( +quiet.png :-$ [-( +sick.png :-& +silly.png 8-} +sleepy.png I-) |-) +smile.png :-) :) (: (-: +glasses-cool.png B-) b-) +yawn.png (:| +thinking.png :-? +tongue.png :-p :-P :p :P +wink.png ;-) ;) +confused.png :-s :-S + +# These are supposed to be hidden. + +alien.png =:) =:-) >-) +beat-up.png b-( B-( +chicken.png ~:> +coffee.png ~o) ~O) +cow.png 3:-0 3:-O 3:-o +cowboy.png <):) +dance.png \\:D/ \\:d/ +rose.png @};- +don't-know.png :-L :-l +ghost.png 8-X 8-x +hug-left.png >:D< >:d< +hypnotized.png @-) +lamp.png *-:) +lying.png :^o :^O +monkey.png :(|) +coins.png $-) +peace.png :)>- +pig.png :@) +pray.png [-o< [-O< +pumpkin.png (~~) +shame.png [-X [-x +flag.png **== +clover.png %%- +musical-note.png :-" + +# These only work in a certain IMvironment + +#yahoo_malefighter1.gif o-> O-> +#yahoo_malefighter2.gif o=> O=> +#yahoo_femalefighter.gif o-+ O-+ +#ying-yan.png (%) + +# New in Yahoo 6 + +#love-over.png =(( +#yahoo_sweating.gif #:-S #:-s +#yahoo_rotfl.gif =)) +#yahoo_loser.gif L-) l-) +#party.png <:-P <:-p +#yahoo_nailbiting.gif :-SS :-Ss :-sS :-ss +#yahoo_waiting.gif :-w :-W +#yahoo_sighing.gif :-< +#yahoo_madtongue.gif >:P >:p +#yahoo_waving.gif >:/ +#yahoo_giggle.gif ;)) +#yahoo_talktohand.gif :-@ +#yahoo_worship.gif ^:)^ +#yahoo_youkiddingme.gif :-j :-J +#star.png (*) diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/thinking.png Binary file pidgin/pixmaps/emotes/default/22/thinking.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/thunder.png Binary file pidgin/pixmaps/emotes/default/22/thunder.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/tongue.png Binary file pidgin/pixmaps/emotes/default/22/tongue.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/tremble.png Binary file pidgin/pixmaps/emotes/default/22/tremble.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/turtle.png Binary file pidgin/pixmaps/emotes/default/22/turtle.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/tv.png Binary file pidgin/pixmaps/emotes/default/22/tv.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/umbrella.png Binary file pidgin/pixmaps/emotes/default/22/umbrella.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/vampire.png Binary file pidgin/pixmaps/emotes/default/22/vampire.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/victory.png Binary file pidgin/pixmaps/emotes/default/22/victory.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/watermelon.png Binary file pidgin/pixmaps/emotes/default/22/watermelon.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/weep.png Binary file pidgin/pixmaps/emotes/default/22/weep.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/wilt.png Binary file pidgin/pixmaps/emotes/default/22/wilt.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/wink.png Binary file pidgin/pixmaps/emotes/default/22/wink.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/yawn.png Binary file pidgin/pixmaps/emotes/default/22/yawn.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/22/yin-yang.png Binary file pidgin/pixmaps/emotes/default/22/yin-yang.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/Makefile.am Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,1 @@ +SUBDIRS=22 scalable diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/Makefile.am Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,154 @@ +EXTRA_DIST = act-up.svg \ + airplane.svg \ + alien.svg \ + angel.svg \ + angry.svg \ + arrogant.svg \ + bad.svg \ + bashful.svg \ + beat-up.svg \ + beauty.svg \ + beer.svg \ + blowkiss.svg \ + bomb.svg \ + bowl.svg \ + boy.svg \ + brb.svg \ + bye.svg \ + cake.svg \ + camera.svg \ + can.svg \ + car.svg \ + cat.svg \ + chicken.svg \ + clap.svg \ + clock.svg \ + cloudy.svg \ + clover.svg \ + clown.svg \ + coffee.svg \ + coins.svg \ + computer.svg \ + confused.svg \ + console.svg \ + cow.svg \ + crying.svg \ + curl-lip.svg \ + curse.svg \ + cute.svg \ + dance.svg \ + dazed.svg \ + desire.svg \ + devil.svg \ + disapointed.svg \ + disdain.svg \ + doctor.svg \ + dog.svg \ + doh.svg \ + dont-know.svg \ + drink.svg \ + drool.svg \ + eat.svg \ + embarrassed.svg \ + excruciating.svg \ + eyeroll.svg \ + film.svg \ + fingers-crossed.svg \ + flag.svg \ + freaked-out.svg \ + ghost.svg \ + girl.svg \ + glasses-cool.svg \ + glasses-nerdy.svg \ + go-away.svg \ + good.svg \ + hammer.svg \ + handcuffs.svg \ + handshake.svg \ + highfive.svg \ + hug-left.svg \ + hug-right.svg \ + hypnotized.svg \ + in-love.svg \ + island.svg \ + jump.svg \ + knife.svg \ + lamp.svg \ + lashes.svg \ + laugh.svg \ + liquor.svg \ + love-over.svg \ + love.svg \ + lying.svg \ + mail.svg \ + mean.svg \ + meeting.svg \ + mobile.svg \ + monkey.svg \ + moon.svg \ + msn-away.svg \ + msn-busy.svg \ + msn_online.svg \ + msn.svg \ + musical-note.svg \ + neutral.svg \ + party.svg \ + peace.svg \ + phone.svg \ + pig.svg \ + pill.svg \ + pissed-off.svg \ + pizza.svg \ + plate.svg \ + poop.svg \ + pray.svg \ + present.svg \ + question.svg \ + quiet.svg \ + rainbow.svg \ + rain.svg \ + rose-dead.svg \ + rose.svg \ + sad.svg \ + sarcastic.svg \ + search.svg \ + secret.svg \ + shame.svg \ + sheep.svg \ + shock.svg \ + shut-mouth.svg \ + sick.svg \ + sigarette.svg \ + silly.svg \ + skeleton.svg \ + sleepy.svg \ + smile-big.svg \ + smile.svg \ + smirk.svg \ + snail.svg \ + snicker.svg \ + snowman.svg \ + soccerball.svg \ + soldier.svg \ + star.svg \ + starving.svg \ + struggle.svg \ + sun.svg \ + sweat.svg \ + teeth.svg \ + terror.svg \ + thinking.svg \ + thunder.svg \ + tongue.svg \ + tremble.svg \ + turtle.svg \ + tv.svg \ + umbrella.svg \ + vampire.svg \ + victory.svg \ + watermelon.svg \ + weep.svg \ + wilt.svg \ + wink.svg \ + yawn.svg \ + yin-yang.svg diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/act-up.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/act-up.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/airplane.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/airplane.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/alien.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/alien.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/angel.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/angel.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/angry.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/angry.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/arrogant.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/arrogant.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/bad.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/bad.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/bashful.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/bashful.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/beat-up.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/beat-up.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/beauty.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/beauty.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/beer.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/beer.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/blowkiss.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/blowkiss.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/bomb.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/bomb.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,234 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/bowl.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/bowl.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/boy.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/boy.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/brb.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/brb.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/bye.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/bye.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/cake.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/cake.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,365 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/camera.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/camera.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,251 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/can.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/can.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/car.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/car.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/cat.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/cat.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/chicken.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/chicken.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,230 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/clap.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/clap.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/clock.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/clock.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/cloudy.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/cloudy.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/clover.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/clover.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/clown.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/clown.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/coffee.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/coffee.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/coins.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/coins.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/computer.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/computer.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/confused.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/confused.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/console.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/console.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,466 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/cow.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/cow.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/crying.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/crying.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/curl-lip.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/curl-lip.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/curse.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/curse.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,287 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/cute.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/cute.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/dance.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/dance.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/dazed.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/dazed.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/desire.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/desire.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,254 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/devil.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/devil.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/disapointed.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/disapointed.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/disdain.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/disdain.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/doctor.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/doctor.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/dog.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/dog.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/doh.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/doh.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/dont-know.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/dont-know.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/drink.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/drink.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/drool.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/drool.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/eat.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/eat.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,277 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/embarrassed.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/embarrassed.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/excruciating.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/excruciating.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/eyeroll.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/eyeroll.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/film.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/film.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/fingers-crossed.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/fingers-crossed.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/flag.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/flag.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,262 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/freaked-out.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/freaked-out.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/ghost.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/ghost.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/girl.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/girl.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/glasses-cool.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/glasses-cool.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/glasses-nerdy.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/glasses-nerdy.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/go-away.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/go-away.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/good.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/good.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/hammer.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/hammer.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/handcuffs.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/handcuffs.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/handshake.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/handshake.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/highfive.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/highfive.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/hug-left.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/hug-left.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/hug-right.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/hug-right.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/hypnotized.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/hypnotized.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/in-love.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/in-love.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/island.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/island.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/jump.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/jump.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/knife.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/knife.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/lamp.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/lamp.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/lashes.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/lashes.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/laugh.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/laugh.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/liquor.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/liquor.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/love-over.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/love-over.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/love.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/love.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/lying.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/lying.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/mail.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/mail.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/mean.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/mean.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/meeting.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/meeting.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/mobile.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/mobile.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/monkey.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/monkey.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,269 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/moon.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/moon.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/msn-away.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/msn-away.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/msn-busy.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/msn-busy.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/msn.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/msn.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/msn_online.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/msn_online.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,371 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/musical-note.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/musical-note.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/neutral.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/neutral.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/party.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/party.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,238 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/peace.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/peace.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/phone.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/phone.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/pig.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/pig.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/pill.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/pill.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/pissed-off.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/pissed-off.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/pizza.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/pizza.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/plate.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/plate.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/poop.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/poop.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/pray.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/pray.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/present.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/present.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/question.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/question.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/quiet.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/quiet.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/rain.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/rain.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/rainbow.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/rainbow.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/rose-dead.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/rose-dead.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/rose.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/rose.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sad.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sad.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sarcastic.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sarcastic.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/search.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/search.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/secret.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/secret.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,269 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/shame.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/shame.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sheep.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sheep.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/shock.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/shock.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/shut-mouth.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/shut-mouth.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sick.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sick.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sigarette.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sigarette.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/silly.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/silly.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/skeleton.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/skeleton.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,273 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sleepy.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sleepy.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/smile-big.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/smile-big.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/smile.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/smile.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/smirk.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/smirk.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/snail.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/snail.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/snicker.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/snicker.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/snowman.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/snowman.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/soccerball.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/soccerball.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/soldier.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/soldier.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/star.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/star.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/starving.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/starving.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/struggle.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/struggle.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sun.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sun.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/sweat.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/sweat.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/teeth.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/teeth.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/terror.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/terror.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/thinking.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/thinking.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/thunder.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/thunder.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/tongue.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/tongue.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/tremble.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/tremble.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/turtle.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/turtle.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/tv.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/tv.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/umbrella.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/umbrella.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/vampire.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/vampire.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/victory.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/victory.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/watermelon.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/watermelon.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/weep.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/weep.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/wilt.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/wilt.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/wink.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/wink.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/yawn.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/yawn.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/default/scalable/yin-yang.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/default/scalable/yin-yang.svg Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/none/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/none/Makefile.am Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,4 @@ +gaimsmileypixdir = $(datadir)/pixmaps/gaim/smileys/none +gaimsmileypix_DATA = theme + +EXTRA_DIST = $(gaimsmileypix_DATA) diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/emotes/none/theme --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/emotes/none/theme Mon Jan 22 15:39:42 2007 +0000 @@ -0,0 +1,3 @@ +Name=none +Description=Selecting this disables graphical emoticons. +Author=Penguin Pimps diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/logo.png Binary file pidgin/pixmaps/logo.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/Makefile.am --- a/pidgin/pixmaps/smileys/Makefile.am Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -SUBDIRS = default none - diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/Makefile.mingw --- a/pidgin/pixmaps/smileys/Makefile.mingw Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,16 +0,0 @@ -# -# Makefile.mingw -# -# Description: Makefile for win32 (mingw) version of Gaim pixmaps -# - -include ./Makefile.am - -.PHONY: install - -install: - if test '$(SUBDIRS)'; then \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - $(MAKE) -C $$subdir -f Makefile.mingw install; \ - done; \ - fi; diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/THEMES-HOWTO --- a/pidgin/pixmaps/smileys/THEMES-HOWTO Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -Gaim Smiley Themes Documentation -Sean M. Egan -5 Jan 2003 - -Version 0.60 of Gaim brings up all themable smileys. In the preferences dialog, a user can choose from a selection of looks his smileys will take. This guide is to serve as a reference to those interested in creating third-party smiley themes. - -Your theme should be contained in a single directory. This directory will be installed in the Gaim smiley theme directory ($HOME/.gaim/smileys/). This directory will contain a file called `theme' that specifies the theme metadata and image files that are used by the theme. The format of the `theme' file is as follows. - -The beginning of the file contains some metainformation about the theme in the format - -Key=Value - -Valid keys include: -Name - Name of the theme -Description - Description of the theme -Icon - An image used to represent the theme in the theme selector UI -Author - The author's name - -Following this meta-information are "sml" groups. A "sml" group is a group of smileys that will be shown together. For example, each protocol has its own "sml" group (MSN, Yahoo, Gadu-Gadu, etc.). The name of the group is surrounded in square brackets, and each line beneath it (until the next sml group or the end of the file) defines a smiley. -Each line of the group starts with a filename of the icon followed by a space-delimited list of the characters that represent it. - -Example: -[AIM/ICQ] -smiley.png :) :-) - -In the smiley selector UI, each icon will only be shown once, and the first string representing it will be used. To keep a smiley out of the selector altogether, make the first two characters of the line "! " followed by the filename and emoticons. - -As of 2.0.0beta2, spaces and backslashes in the "list of characters" (see above) must be escaped by prepending them with a backslash. For example, to define a smiley that is represented by ":-/" and ":-\", use: - -[AIM/ICQ] -think.png :-/ :-\\ - diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/Makefile.am --- a/pidgin/pixmaps/smileys/default/Makefile.am Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,298 +0,0 @@ -AIM_SMILEYS = \ - angel.png \ - bigsmile.png \ - burp.png \ - cool.png \ - crazy.png \ - crossedlips.png \ - cry.png \ - download.png \ - embarrassed.png \ - farted.png \ - kiss.png \ - luke.png \ - moneymouth.png \ - mrt.png \ - oneeye.png \ - sad.png \ - scream.png \ - smile.png \ - think.png \ - tongue.png \ - wink.png \ - yell.png - -MSN_SMILEYS = \ - msn_angel.png \ - msn_angry.png \ - msn_away.png \ - msn_bat.gif \ - msn_beer.png \ - msn_bowl.png \ - msn_boy.png \ - msn_brb.png \ - msn_brheart.png \ - msn_cake.gif \ - msn_car.png \ - msn_cat.png \ - msn_cellphone.png \ - msn_cigarette.gif \ - msn_clock.png \ - msn_coffee.png \ - msn_coins.png \ - msn_computer.png \ - msn_cry.gif \ - msn_deadflower.png \ - msn_devil.png \ - msn_dog.png \ - msn_dontknow.gif \ - msn_donttell.png \ - msn_drink.png \ - msn_email.png \ - msn_embarrassed.png \ - msn_eyeroll.gif \ - msn_film.png \ - msn_fingerscrossed.png \ - msn_flower.png \ - msn_gift.png \ - msn_girl.png \ - msn_handcuffs.png \ - msn_heart.png \ - msn_highfive.png \ - msn_hot.png \ - msn_icon.png \ - msn_idea.png \ - msn_island.png \ - msn_kiss.png \ - msn_laugh.png \ - msn_lightning.gif \ - msn_nerd.png \ - msn_neutral.png \ - msn_note.png \ - msn_occ.png \ - msn_online.png \ - msn_ooooh.png \ - msn_party.gif \ - msn_phone.png \ - msn_photo.png \ - msn_pizza.png \ - msn_plane.png \ - msn_plate.png \ - msn_question.png \ - msn_rainbow.png \ - msn_run.png \ - msn_runback.png \ - msn_sad.png \ - msn_sarcastic.png \ - msn_secret.png \ - msn_sheep.png \ - msn_sick.png \ - msn_sleep.png \ - msn_sleepy.gif \ - msn_smiley.png \ - msn_snail.png \ - msn_soccer.png \ - msn_star.png \ - msn_stormy.png \ - msn_sun.png \ - msn_sunglasses.png \ - msn_teeth.png \ - msn_think.gif \ - msn_thumbdown.png \ - msn_thumbup.png \ - msn_tongue.png \ - msn_turtle.png \ - msn_umbrella.png \ - msn_weird.png \ - msn_wink.gif \ - msn_xbox.png - -QQ_SMILEYS = \ - qq_smiley_0.gif \ - qq_smiley_10.gif \ - qq_smiley_11.gif \ - qq_smiley_12.gif \ - qq_smiley_13.gif \ - qq_smiley_14.gif \ - qq_smiley_15.gif \ - qq_smiley_16.gif \ - qq_smiley_17.gif \ - qq_smiley_18.gif \ - qq_smiley_19.gif \ - qq_smiley_1.gif \ - qq_smiley_20.gif \ - qq_smiley_21.gif \ - qq_smiley_22.gif \ - qq_smiley_23.gif \ - qq_smiley_24.gif \ - qq_smiley_25.gif \ - qq_smiley_26.gif \ - qq_smiley_27.gif \ - qq_smiley_28.gif \ - qq_smiley_29.gif \ - qq_smiley_2.gif \ - qq_smiley_30.gif \ - qq_smiley_31.gif \ - qq_smiley_32.gif \ - qq_smiley_33.gif \ - qq_smiley_34.gif \ - qq_smiley_35.gif \ - qq_smiley_36.gif \ - qq_smiley_37.gif \ - qq_smiley_38.gif \ - qq_smiley_39.gif \ - qq_smiley_3.gif \ - qq_smiley_40.gif \ - qq_smiley_41.gif \ - qq_smiley_42.gif \ - qq_smiley_43.gif \ - qq_smiley_44.gif \ - qq_smiley_45.gif \ - qq_smiley_46.gif \ - qq_smiley_47.gif \ - qq_smiley_48.gif \ - qq_smiley_49.gif \ - qq_smiley_4.gif \ - qq_smiley_50.gif \ - qq_smiley_51.gif \ - qq_smiley_52.gif \ - qq_smiley_53.gif \ - qq_smiley_54.gif \ - qq_smiley_55.gif \ - qq_smiley_56.gif \ - qq_smiley_57.gif \ - qq_smiley_58.gif \ - qq_smiley_59.gif \ - qq_smiley_5.gif \ - qq_smiley_60.gif \ - qq_smiley_61.gif \ - qq_smiley_62.gif \ - qq_smiley_63.gif \ - qq_smiley_64.gif \ - qq_smiley_65.gif \ - qq_smiley_66.gif \ - qq_smiley_67.gif \ - qq_smiley_68.gif \ - qq_smiley_69.gif \ - qq_smiley_6.gif \ - qq_smiley_70.gif \ - qq_smiley_71.gif \ - qq_smiley_72.gif \ - qq_smiley_73.gif \ - qq_smiley_74.gif \ - qq_smiley_75.gif \ - qq_smiley_76.gif \ - qq_smiley_77.gif \ - qq_smiley_78.gif \ - qq_smiley_79.gif \ - qq_smiley_7.gif \ - qq_smiley_80.gif \ - qq_smiley_81.gif \ - qq_smiley_82.gif \ - qq_smiley_83.gif \ - qq_smiley_84.gif \ - qq_smiley_85.gif \ - qq_smiley_86.gif \ - qq_smiley_87.gif \ - qq_smiley_88.gif \ - qq_smiley_89.gif \ - qq_smiley_8.gif \ - qq_smiley_90.gif \ - qq_smiley_91.gif \ - qq_smiley_92.gif \ - qq_smiley_93.gif \ - qq_smiley_94.gif \ - qq_smiley_95.gif \ - qq_smiley_9.gif - -YAHOO_SMILEYS = \ - yahoo_alien.gif \ - yahoo_alien2.gif \ - yahoo_angel.gif \ - yahoo_angry.gif \ - yahoo_batting.gif \ - yahoo_beatup.gif \ - yahoo_bigsmile.gif \ - yahoo_blush.gif \ - yahoo_bye.gif \ - yahoo_chicken.gif \ - yahoo_clap.gif \ - yahoo_clown.gif \ - yahoo_coffee.gif \ - yahoo_cow.gif \ - yahoo_cowboy.gif \ - yahoo_cry.gif \ - yahoo_dance.gif \ - yahoo_devil.gif \ - yahoo_doh.gif \ - yahoo_drool.gif \ - yahoo_eyebrow.gif \ - yahoo_eyeroll.gif \ - yahoo_flag.gif \ - yahoo_flower.gif \ - yahoo_frustrated.gif \ - yahoo_ghost.gif \ - yahoo_glasses.gif \ - yahoo_huggs.gif \ - yahoo_hypnotized.gif \ - yahoo_idea.gif \ - yahoo_kiss.gif \ - yahoo_laughloud.gif \ - yahoo_liar.gif \ - yahoo_love.gif \ - yahoo_mean.gif \ - yahoo_moneyeyes.gif \ - yahoo_monkey.gif \ - yahoo_neutral.gif \ - yahoo_ooooh.gif \ - yahoo_peace.gif \ - yahoo_pig.gif \ - yahoo_pray.gif \ - yahoo_pumpkin.gif \ - yahoo_question.gif \ - yahoo_sad.gif \ - yahoo_shame.gif \ - yahoo_shamrock.gif \ - yahoo_shhhh.gif \ - yahoo_sick.gif \ - yahoo_silent.gif \ - yahoo_silly.gif \ - yahoo_sleep.gif \ - yahoo_smiley.gif \ - yahoo_sunglas.gif \ - yahoo_think.gif \ - yahoo_tired.gif \ - yahoo_tongue.gif \ - yahoo_whistling.gif \ - yahoo_wink.gif \ - yahoo_worried.gif \ - yahoo_malefighter1.gif \ - yahoo_malefighter2.gif \ - yahoo_femalefighter.gif \ - yahoo_yingyang.gif \ - yahoo_brokenheart.gif \ - yahoo_sweating.gif \ - yahoo_rotfl.gif \ - yahoo_loser.gif \ - yahoo_party.gif \ - yahoo_nailbiting.gif \ - yahoo_waiting.gif \ - yahoo_sighing.gif \ - yahoo_madtongue.gif \ - yahoo_waving.gif \ - yahoo_giggle.gif \ - yahoo_talktohand.gif \ - yahoo_worship.gif \ - yahoo_youkiddingme.gif \ - yahoo_star.gif - - -gaimsmileypixdir = $(datadir)/pixmaps/gaim/smileys/default -gaimsmileypix_DATA = \ - $(AIM_SMILEYS) \ - $(MSN_SMILEYS) \ - $(YAHOO_SMILEYS) \ - $(QQ_SMILEYS) \ - theme - -EXTRA_DIST = $(gaimsmileypix_DATA) diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/Makefile.mingw --- a/pidgin/pixmaps/smileys/default/Makefile.mingw Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -# -# Makefile.mingw -# -# Description: Makefile for win32 (mingw) version of Gaim pixmaps -# - -GAIM_TOP := ../../../.. -include $(GAIM_TOP)/libpurple/win32/global.mak - -datadir = $(GAIM_INSTALL_DIR) -include ./Makefile.am - -.PHONY: install - -install: - if test '$(gaimsmileypix_DATA)'; then \ - mkdir -p $(gaimsmileypixdir); \ - cp $(gaimsmileypix_DATA) $(gaimsmileypixdir); \ - fi; - diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/angel.png Binary file pidgin/pixmaps/smileys/default/angel.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/bigsmile.png Binary file pidgin/pixmaps/smileys/default/bigsmile.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/burp.png Binary file pidgin/pixmaps/smileys/default/burp.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/cool.png Binary file pidgin/pixmaps/smileys/default/cool.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/crazy.png Binary file pidgin/pixmaps/smileys/default/crazy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/crossedlips.png Binary file pidgin/pixmaps/smileys/default/crossedlips.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/cry.png Binary file pidgin/pixmaps/smileys/default/cry.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/download.png Binary file pidgin/pixmaps/smileys/default/download.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/embarrassed.png Binary file pidgin/pixmaps/smileys/default/embarrassed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/farted.png Binary file pidgin/pixmaps/smileys/default/farted.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/kiss.png Binary file pidgin/pixmaps/smileys/default/kiss.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/luke.png Binary file pidgin/pixmaps/smileys/default/luke.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/moneymouth.png Binary file pidgin/pixmaps/smileys/default/moneymouth.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/mrt.png Binary file pidgin/pixmaps/smileys/default/mrt.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_angel.png Binary file pidgin/pixmaps/smileys/default/msn_angel.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_angry.png Binary file pidgin/pixmaps/smileys/default/msn_angry.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_away.png Binary file pidgin/pixmaps/smileys/default/msn_away.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_bat.gif Binary file pidgin/pixmaps/smileys/default/msn_bat.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_beer.png Binary file pidgin/pixmaps/smileys/default/msn_beer.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_bowl.png Binary file pidgin/pixmaps/smileys/default/msn_bowl.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_boy.png Binary file pidgin/pixmaps/smileys/default/msn_boy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_brb.png Binary file pidgin/pixmaps/smileys/default/msn_brb.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_brheart.png Binary file pidgin/pixmaps/smileys/default/msn_brheart.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_cake.gif Binary file pidgin/pixmaps/smileys/default/msn_cake.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_car.png Binary file pidgin/pixmaps/smileys/default/msn_car.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_cat.png Binary file pidgin/pixmaps/smileys/default/msn_cat.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_cellphone.png Binary file pidgin/pixmaps/smileys/default/msn_cellphone.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_cigarette.gif Binary file pidgin/pixmaps/smileys/default/msn_cigarette.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_clock.png Binary file pidgin/pixmaps/smileys/default/msn_clock.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_coffee.png Binary file pidgin/pixmaps/smileys/default/msn_coffee.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_coins.png Binary file pidgin/pixmaps/smileys/default/msn_coins.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_computer.png Binary file pidgin/pixmaps/smileys/default/msn_computer.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_cry.gif Binary file pidgin/pixmaps/smileys/default/msn_cry.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_deadflower.png Binary file pidgin/pixmaps/smileys/default/msn_deadflower.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_devil.png Binary file pidgin/pixmaps/smileys/default/msn_devil.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_dog.png Binary file pidgin/pixmaps/smileys/default/msn_dog.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_dontknow.gif Binary file pidgin/pixmaps/smileys/default/msn_dontknow.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_donttell.png Binary file pidgin/pixmaps/smileys/default/msn_donttell.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_drink.png Binary file pidgin/pixmaps/smileys/default/msn_drink.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_email.png Binary file pidgin/pixmaps/smileys/default/msn_email.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_embarrassed.png Binary file pidgin/pixmaps/smileys/default/msn_embarrassed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_eyeroll.gif Binary file pidgin/pixmaps/smileys/default/msn_eyeroll.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_film.png Binary file pidgin/pixmaps/smileys/default/msn_film.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_fingerscrossed.png Binary file pidgin/pixmaps/smileys/default/msn_fingerscrossed.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_flower.png Binary file pidgin/pixmaps/smileys/default/msn_flower.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_gift.png Binary file pidgin/pixmaps/smileys/default/msn_gift.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_girl.png Binary file pidgin/pixmaps/smileys/default/msn_girl.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_handcuffs.png Binary file pidgin/pixmaps/smileys/default/msn_handcuffs.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_heart.png Binary file pidgin/pixmaps/smileys/default/msn_heart.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_highfive.png Binary file pidgin/pixmaps/smileys/default/msn_highfive.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_hot.png Binary file pidgin/pixmaps/smileys/default/msn_hot.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_icon.png Binary file pidgin/pixmaps/smileys/default/msn_icon.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_idea.png Binary file pidgin/pixmaps/smileys/default/msn_idea.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_island.png Binary file pidgin/pixmaps/smileys/default/msn_island.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_kiss.png Binary file pidgin/pixmaps/smileys/default/msn_kiss.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_laugh.png Binary file pidgin/pixmaps/smileys/default/msn_laugh.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_lightning.gif Binary file pidgin/pixmaps/smileys/default/msn_lightning.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_nerd.png Binary file pidgin/pixmaps/smileys/default/msn_nerd.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_neutral.png Binary file pidgin/pixmaps/smileys/default/msn_neutral.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_note.png Binary file pidgin/pixmaps/smileys/default/msn_note.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_occ.png Binary file pidgin/pixmaps/smileys/default/msn_occ.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_online.png Binary file pidgin/pixmaps/smileys/default/msn_online.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_ooooh.png Binary file pidgin/pixmaps/smileys/default/msn_ooooh.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_party.gif Binary file pidgin/pixmaps/smileys/default/msn_party.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_phone.png Binary file pidgin/pixmaps/smileys/default/msn_phone.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_photo.png Binary file pidgin/pixmaps/smileys/default/msn_photo.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_pizza.png Binary file pidgin/pixmaps/smileys/default/msn_pizza.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_plane.png Binary file pidgin/pixmaps/smileys/default/msn_plane.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_plate.png Binary file pidgin/pixmaps/smileys/default/msn_plate.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_question.png Binary file pidgin/pixmaps/smileys/default/msn_question.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_rainbow.png Binary file pidgin/pixmaps/smileys/default/msn_rainbow.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_run.png Binary file pidgin/pixmaps/smileys/default/msn_run.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_runback.png Binary file pidgin/pixmaps/smileys/default/msn_runback.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sad.png Binary file pidgin/pixmaps/smileys/default/msn_sad.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sarcastic.png Binary file pidgin/pixmaps/smileys/default/msn_sarcastic.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_secret.png Binary file pidgin/pixmaps/smileys/default/msn_secret.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sheep.png Binary file pidgin/pixmaps/smileys/default/msn_sheep.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sick.png Binary file pidgin/pixmaps/smileys/default/msn_sick.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sleep.png Binary file pidgin/pixmaps/smileys/default/msn_sleep.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sleepy.gif Binary file pidgin/pixmaps/smileys/default/msn_sleepy.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_smiley.png Binary file pidgin/pixmaps/smileys/default/msn_smiley.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_snail.png Binary file pidgin/pixmaps/smileys/default/msn_snail.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_soccer.png Binary file pidgin/pixmaps/smileys/default/msn_soccer.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_star.png Binary file pidgin/pixmaps/smileys/default/msn_star.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_stormy.png Binary file pidgin/pixmaps/smileys/default/msn_stormy.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sun.png Binary file pidgin/pixmaps/smileys/default/msn_sun.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_sunglasses.png Binary file pidgin/pixmaps/smileys/default/msn_sunglasses.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_teeth.png Binary file pidgin/pixmaps/smileys/default/msn_teeth.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_think.gif Binary file pidgin/pixmaps/smileys/default/msn_think.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_thumbdown.png Binary file pidgin/pixmaps/smileys/default/msn_thumbdown.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_thumbup.png Binary file pidgin/pixmaps/smileys/default/msn_thumbup.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_tongue.png Binary file pidgin/pixmaps/smileys/default/msn_tongue.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_turtle.png Binary file pidgin/pixmaps/smileys/default/msn_turtle.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_umbrella.png Binary file pidgin/pixmaps/smileys/default/msn_umbrella.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_weird.png Binary file pidgin/pixmaps/smileys/default/msn_weird.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_wink.gif Binary file pidgin/pixmaps/smileys/default/msn_wink.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/msn_xbox.png Binary file pidgin/pixmaps/smileys/default/msn_xbox.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/oneeye.png Binary file pidgin/pixmaps/smileys/default/oneeye.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_0.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_0.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_1.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_1.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_10.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_10.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_11.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_11.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_12.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_12.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_13.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_13.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_14.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_14.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_15.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_15.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_16.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_16.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_17.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_17.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_18.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_18.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_19.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_19.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_2.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_2.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_20.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_20.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_21.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_21.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_22.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_22.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_23.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_23.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_24.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_24.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_25.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_25.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_26.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_26.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_27.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_27.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_28.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_28.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_29.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_29.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_3.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_3.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_30.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_30.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_31.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_31.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_32.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_32.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_33.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_33.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_34.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_34.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_35.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_35.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_36.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_36.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_37.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_37.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_38.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_38.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_39.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_39.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_4.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_4.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_40.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_40.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_41.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_41.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_42.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_42.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_43.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_43.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_44.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_44.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_45.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_45.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_46.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_46.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_47.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_47.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_48.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_48.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_49.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_49.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_5.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_5.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_50.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_50.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_51.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_51.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_52.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_52.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_53.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_53.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_54.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_54.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_55.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_55.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_56.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_56.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_57.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_57.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_58.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_58.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_59.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_59.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_6.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_6.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_60.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_60.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_61.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_61.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_62.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_62.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_63.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_63.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_64.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_64.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_65.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_65.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_66.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_66.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_67.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_67.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_68.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_68.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_69.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_69.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_7.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_7.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_70.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_70.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_71.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_71.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_72.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_72.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_73.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_73.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_74.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_74.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_75.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_75.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_76.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_76.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_77.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_77.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_78.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_78.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_79.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_79.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_8.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_8.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_80.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_80.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_81.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_81.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_82.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_82.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_83.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_83.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_84.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_84.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_85.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_85.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_86.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_86.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_87.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_87.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_88.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_88.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_89.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_89.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_9.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_9.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_90.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_90.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_91.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_91.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_92.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_92.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_93.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_93.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_94.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_94.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/qq_smiley_95.gif Binary file pidgin/pixmaps/smileys/default/qq_smiley_95.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/sad.png Binary file pidgin/pixmaps/smileys/default/sad.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/scream.png Binary file pidgin/pixmaps/smileys/default/scream.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/smile.png Binary file pidgin/pixmaps/smileys/default/smile.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/theme --- a/pidgin/pixmaps/smileys/default/theme Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,296 +0,0 @@ -Name=Default -Description=Emoticons from each protocol's official client. -Icon=smile.png - -# RIP Penguin Pimps. 20 November, 2004. -Author=Various - -[default] -! luke.png C:-) C:) -! oneeye.png O-) -! crazy.png >:) >:-) -! mrt.png :-o))) :-O))) -! download.png 8-|) -! farted.png :-] -smile.png :) :-) -sad.png :( :-( -wink.png ;) ;-) -tongue.png :-P :-p -scream.png =-O =-o -kiss.png :-* -yell.png >:o >:O -cool.png 8-) -moneymouth.png :-$ -burp.png :-! -embarrassed.png :-[ -cry.png :'( -think.png :-/ :-\\ -crossedlips.png :-X -bigsmile.png :-D :-d -angel.png O:-) - -[MSN] -msn_smiley.png :) :-) -msn_laugh.png :D :-D :-d :d :-> :> -msn_wink.gif ;) ;-) -msn_ooooh.png :-O :O :-o :o -msn_tongue.png :p :-P :P :-p -msn_hot.png (h) (H) -msn_angry.png :@ :-@ -msn_neutral.png :-| :| -msn_weird.png :s :-S :-s :S -msn_embarrassed.png :$ :-$ -msn_sad.png :( :-( :-< -msn_cry.gif :'( -msn_dontknow.gif :^) -msn_angel.png (a) (A) -msn_teeth.png 8o| -msn_nerd.png 8-| -msn_sick.png +o( -msn_party.gif <:o) -msn_sleepy.gif |-) -msn_think.gif *-) -msn_donttell.png :-# -msn_secret.png :-* -msn_sarcastic.png ^o) -msn_eyeroll.gif 8-) -msn_heart.png (L) (l) -msn_brheart.png (u) (U) -msn_icon.png (m) (M) -msn_cat.png (@) -msn_dog.png (&) -msn_snail.png (sn) -msn_turtle.png (tu) -msn_sheep.png (bah) -msn_sleep.png (S) -msn_star.png (*) -msn_sun.png (#) -msn_rainbow.png (r) (R) -msn_run.png ({) -msn_runback.png (}) -msn_kiss.png (k) (K) -msn_flower.png (f) (F) -msn_deadflower.png (w) (W) -msn_clock.png (O) (o) -msn_gift.png (g) (G) -msn_cake.gif (^) -msn_photo.png (P) (p) -msn_idea.png (i) (I) -msn_coffee.png (c) (C) -msn_phone.png (t) (T) -msn_cellphone.png (mp) -msn_car.png (au) -msn_plane.png (ap) -msn_computer.png (co) -msn_coins.png (mo) -msn_film.png (~) -msn_note.png (8) -msn_pizza.png (pi) -msn_soccer.png (so) -msn_email.png (e) (E) -msn_boy.png (z) (Z) -msn_girl.png (x) (X) -msn_island.png (ip) -msn_umbrella.png (um) -msn_bat.gif :-[ :[ -msn_beer.png (B) (b) -msn_devil.png (6) -msn_drink.png (D) (d) -msn_handcuffs.png (%) -msn_question.png (?) -msn_thumbdown.png (N) (n) -msn_thumbup.png (Y) (y) -msn_bowl.png (||) -msn_plate.png (pl) -msn_stormy.png (st) -msn_lightning.gif (li) -msn_brb.png (brb) -msn_fingerscrossed.png (yn) -msn_highfive.png (h5) -msn_xbox.png (xx) -msn_cigarette.gif (ci) - -[QQ] -qq_smiley_0.gif /jy -qq_smiley_1.gif /se -qq_smiley_2.gif /pz -qq_smiley_3.gif /fd -qq_smiley_4.gif /dy -qq_smiley_5.gif /ll -qq_smiley_6.gif /hx -qq_smiley_7.gif /bz -qq_smiley_8.gif /shui -qq_smiley_9.gif /dk -qq_smiley_10.gif /gg -qq_smiley_11.gif /fn -qq_smiley_12.gif /tp -qq_smiley_13.gif /cy -qq_smiley_14.gif /wx -qq_smiley_15.gif /ng -qq_smiley_16.gif /kuk -qq_smiley_17.gif /feid -qq_smiley_18.gif /zk -qq_smiley_19.gif /tu -qq_smiley_20.gif /tx -qq_smiley_21.gif /ka -qq_smiley_22.gif /by -qq_smiley_23.gif /am -qq_smiley_24.gif /jie -qq_smiley_25.gif /kun -qq_smiley_26.gif /jk -qq_smiley_27.gif /lh -qq_smiley_28.gif /hanx -qq_smiley_29.gif /db -qq_smiley_30.gif /fendou -qq_smiley_31.gif /zhm -qq_smiley_32.gif /yiw -qq_smiley_33.gif /xu -qq_smiley_34.gif /yun -qq_smiley_35.gif /zhem -qq_smiley_36.gif /shuai -qq_smiley_37.gif /kl -qq_smiley_38.gif /qiao -qq_smiley_39.gif /zj -qq_smiley_40.gif /shan -qq_smiley_41.gif /fad -qq_smiley_42.gif /aiq -qq_smiley_43.gif /tiao -qq_smiley_44.gif /zhao -qq_smiley_45.gif /mm -qq_smiley_46.gif /zt -qq_smiley_47.gif /maom -qq_smiley_48.gif /xg -qq_smiley_49.gif /yb -qq_smiley_50.gif /qianc -qq_smiley_51.gif /dp -qq_smiley_52.gif /bei -qq_smiley_53.gif /dg -qq_smiley_54.gif /shd -qq_smiley_55.gif /zhd -qq_smiley_56.gif /dao -qq_smiley_57.gif /zq -qq_smiley_58.gif /yy -qq_smiley_59.gif /bb -qq_smiley_60.gif /gf -qq_smiley_61.gif /fan -qq_smiley_62.gif /yw -qq_smiley_63.gif /mg -qq_smiley_64.gif /dx -qq_smiley_65.gif /wen -qq_smiley_66.gif /xin -qq_smiley_67.gif /xs -qq_smiley_68.gif /hy -qq_smiley_69.gif /lw -qq_smiley_70.gif /dh -qq_smiley_71.gif /sj -qq_smiley_72.gif /yj -qq_smiley_73.gif /ds -qq_smiley_74.gif /ty -qq_smiley_75.gif /yl -qq_smiley_76.gif /qiang -qq_smiley_77.gif /ruo -qq_smiley_78.gif /ws -qq_smiley_79.gif /shl -qq_smiley_80.gif /dd -qq_smiley_81.gif /mn -qq_smiley_82.gif /hl -qq_smiley_83.gif /mamao -qq_smiley_84.gif /qz -qq_smiley_85.gif /fw -qq_smiley_86.gif /oh -qq_smiley_87.gif /bj -qq_smiley_88.gif /qsh -qq_smiley_89.gif /xig -qq_smiley_90.gif /xy -qq_smiley_91.gif /duoy -qq_smiley_92.gif /xr -qq_smiley_93.gif /xixing -qq_smiley_94.gif /nv -qq_smiley_95.gif /nan - -[Yahoo] -yahoo_angel.gif o:-) O:-) 0:-) -yahoo_angry.gif X-( x-( X( x( -yahoo_batting.gif ;;) -yahoo_bigsmile.gif :D :-D :d :-d -yahoo_blush.gif :"> -yahoo_bye.gif =; -yahoo_clap.gif =D> =d> -yahoo_clown.gif :o) :O) :0) -yahoo_cry.gif :(( :-(( -yahoo_devil.gif >:) -yahoo_doh.gif #-o #-O -yahoo_drool.gif =P~ =p~ -yahoo_eyebrow.gif /:) /:-) -yahoo_eyeroll.gif 8-| -yahoo_glasses.gif :-B :-b -yahoo_kiss.gif :* :-* -yahoo_laughloud.gif :)) :-)) -yahoo_love.gif :x :-x :X :-X -yahoo_mean.gif :> :-> -yahoo_neutral.gif :| :-| -yahoo_ooooh.gif :O :-O :o :-o -yahoo_question.gif :-\\ :-/ -yahoo_sad.gif :( :-( -yahoo_shhhh.gif :-$ -yahoo_sick.gif :-& -yahoo_silent.gif [-( -yahoo_silly.gif 8-} -yahoo_sleep.gif I-) |-) -yahoo_smiley.gif :-) :) (: (-: -yahoo_sunglas.gif B-) b-) -yahoo_tired.gif (:| -yahoo_think.gif :-? -yahoo_tongue.gif :-p :-P :p :P -yahoo_wink.gif ;-) ;) -yahoo_worried.gif :-s :-S - -# These are like supposed to be hidden. I'm not hiding them -yahoo_alien.gif =:) =:-) -yahoo_alien2.gif >-) -yahoo_beatup.gif b-( B-( -yahoo_chicken.gif ~:> -yahoo_coffee.gif ~o) ~O) -yahoo_cow.gif 3:-0 3:-O 3:-o -yahoo_cowboy.gif <):) -yahoo_dance.gif \\:D/ \\:d/ -yahoo_flower.gif @};- -yahoo_frustrated.gif :-L :-l -yahoo_ghost.gif 8-X 8-x -yahoo_huggs.gif >:D< >:d< -yahoo_hypnotized.gif @-) -yahoo_idea.gif *-:) -yahoo_liar.gif :^o :^O -yahoo_monkey.gif :(|) -yahoo_moneyeyes.gif $-) -yahoo_peace.gif :)>- -yahoo_pig.gif :@) -yahoo_pray.gif [-o< [-O< -yahoo_pumpkin.gif (~~) -yahoo_shame.gif [-X [-x -yahoo_flag.gif **== -yahoo_shamrock.gif %%- -yahoo_whistling.gif :-" - -# These only work in a certain IMvironment -yahoo_malefighter1.gif o-> O-> -yahoo_malefighter2.gif o=> O=> -yahoo_femalefighter.gif o-+ O-+ -yahoo_yingyang.gif (%) - -# New in Yahoo 6 -yahoo_brokenheart.gif =(( -yahoo_sweating.gif #:-S #:-s -yahoo_rotfl.gif =)) -yahoo_loser.gif L-) l-) -yahoo_party.gif <:-P <:-p -yahoo_nailbiting.gif :-SS :-Ss :-sS :-ss -yahoo_waiting.gif :-w :-W -yahoo_sighing.gif :-< -yahoo_madtongue.gif >:P >:p -yahoo_waving.gif >:/ -yahoo_giggle.gif ;)) -yahoo_talktohand.gif :-@ -yahoo_worship.gif ^:)^ -yahoo_youkiddingme.gif :-j :-J -yahoo_star.gif (*) diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/think.png Binary file pidgin/pixmaps/smileys/default/think.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/tongue.png Binary file pidgin/pixmaps/smileys/default/tongue.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/wink.png Binary file pidgin/pixmaps/smileys/default/wink.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_alien.gif Binary file pidgin/pixmaps/smileys/default/yahoo_alien.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_alien2.gif Binary file pidgin/pixmaps/smileys/default/yahoo_alien2.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_angel.gif Binary file pidgin/pixmaps/smileys/default/yahoo_angel.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_angry.gif Binary file pidgin/pixmaps/smileys/default/yahoo_angry.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_batting.gif Binary file pidgin/pixmaps/smileys/default/yahoo_batting.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_beatup.gif Binary file pidgin/pixmaps/smileys/default/yahoo_beatup.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_bigsmile.gif Binary file pidgin/pixmaps/smileys/default/yahoo_bigsmile.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_blush.gif Binary file pidgin/pixmaps/smileys/default/yahoo_blush.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_brokenheart.gif Binary file pidgin/pixmaps/smileys/default/yahoo_brokenheart.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_bye.gif Binary file pidgin/pixmaps/smileys/default/yahoo_bye.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_chicken.gif Binary file pidgin/pixmaps/smileys/default/yahoo_chicken.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_clap.gif Binary file pidgin/pixmaps/smileys/default/yahoo_clap.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_clown.gif Binary file pidgin/pixmaps/smileys/default/yahoo_clown.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_coffee.gif Binary file pidgin/pixmaps/smileys/default/yahoo_coffee.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_cow.gif Binary file pidgin/pixmaps/smileys/default/yahoo_cow.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_cowboy.gif Binary file pidgin/pixmaps/smileys/default/yahoo_cowboy.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_cry.gif Binary file pidgin/pixmaps/smileys/default/yahoo_cry.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_dance.gif Binary file pidgin/pixmaps/smileys/default/yahoo_dance.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_devil.gif Binary file pidgin/pixmaps/smileys/default/yahoo_devil.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_doh.gif Binary file pidgin/pixmaps/smileys/default/yahoo_doh.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_drool.gif Binary file pidgin/pixmaps/smileys/default/yahoo_drool.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_eyebrow.gif Binary file pidgin/pixmaps/smileys/default/yahoo_eyebrow.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_eyeroll.gif Binary file pidgin/pixmaps/smileys/default/yahoo_eyeroll.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_femalefighter.gif Binary file pidgin/pixmaps/smileys/default/yahoo_femalefighter.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_flag.gif Binary file pidgin/pixmaps/smileys/default/yahoo_flag.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_flower.gif Binary file pidgin/pixmaps/smileys/default/yahoo_flower.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_frustrated.gif Binary file pidgin/pixmaps/smileys/default/yahoo_frustrated.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_ghost.gif Binary file pidgin/pixmaps/smileys/default/yahoo_ghost.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_giggle.gif Binary file pidgin/pixmaps/smileys/default/yahoo_giggle.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_glasses.gif Binary file pidgin/pixmaps/smileys/default/yahoo_glasses.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_huggs.gif Binary file pidgin/pixmaps/smileys/default/yahoo_huggs.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_hypnotized.gif Binary file pidgin/pixmaps/smileys/default/yahoo_hypnotized.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_idea.gif Binary file pidgin/pixmaps/smileys/default/yahoo_idea.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_kiss.gif Binary file pidgin/pixmaps/smileys/default/yahoo_kiss.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_laughloud.gif Binary file pidgin/pixmaps/smileys/default/yahoo_laughloud.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_liar.gif Binary file pidgin/pixmaps/smileys/default/yahoo_liar.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_loser.gif Binary file pidgin/pixmaps/smileys/default/yahoo_loser.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_love.gif Binary file pidgin/pixmaps/smileys/default/yahoo_love.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_madtongue.gif Binary file pidgin/pixmaps/smileys/default/yahoo_madtongue.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_malefighter1.gif Binary file pidgin/pixmaps/smileys/default/yahoo_malefighter1.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_malefighter2.gif Binary file pidgin/pixmaps/smileys/default/yahoo_malefighter2.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_mean.gif Binary file pidgin/pixmaps/smileys/default/yahoo_mean.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_moneyeyes.gif Binary file pidgin/pixmaps/smileys/default/yahoo_moneyeyes.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_monkey.gif Binary file pidgin/pixmaps/smileys/default/yahoo_monkey.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_nailbiting.gif Binary file pidgin/pixmaps/smileys/default/yahoo_nailbiting.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_neutral.gif Binary file pidgin/pixmaps/smileys/default/yahoo_neutral.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_ooooh.gif Binary file pidgin/pixmaps/smileys/default/yahoo_ooooh.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_party.gif Binary file pidgin/pixmaps/smileys/default/yahoo_party.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_peace.gif Binary file pidgin/pixmaps/smileys/default/yahoo_peace.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_pig.gif Binary file pidgin/pixmaps/smileys/default/yahoo_pig.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_pray.gif Binary file pidgin/pixmaps/smileys/default/yahoo_pray.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_pumpkin.gif Binary file pidgin/pixmaps/smileys/default/yahoo_pumpkin.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_question.gif Binary file pidgin/pixmaps/smileys/default/yahoo_question.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_rotfl.gif Binary file pidgin/pixmaps/smileys/default/yahoo_rotfl.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_sad.gif Binary file pidgin/pixmaps/smileys/default/yahoo_sad.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_shame.gif Binary file pidgin/pixmaps/smileys/default/yahoo_shame.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_shamrock.gif Binary file pidgin/pixmaps/smileys/default/yahoo_shamrock.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_shhhh.gif Binary file pidgin/pixmaps/smileys/default/yahoo_shhhh.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_sick.gif Binary file pidgin/pixmaps/smileys/default/yahoo_sick.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_sighing.gif Binary file pidgin/pixmaps/smileys/default/yahoo_sighing.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_silent.gif Binary file pidgin/pixmaps/smileys/default/yahoo_silent.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_silly.gif Binary file pidgin/pixmaps/smileys/default/yahoo_silly.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_sleep.gif Binary file pidgin/pixmaps/smileys/default/yahoo_sleep.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_smiley.gif Binary file pidgin/pixmaps/smileys/default/yahoo_smiley.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_star.gif Binary file pidgin/pixmaps/smileys/default/yahoo_star.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_sunglas.gif Binary file pidgin/pixmaps/smileys/default/yahoo_sunglas.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_sweating.gif Binary file pidgin/pixmaps/smileys/default/yahoo_sweating.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_talktohand.gif Binary file pidgin/pixmaps/smileys/default/yahoo_talktohand.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_think.gif Binary file pidgin/pixmaps/smileys/default/yahoo_think.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_tired.gif Binary file pidgin/pixmaps/smileys/default/yahoo_tired.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_tongue.gif Binary file pidgin/pixmaps/smileys/default/yahoo_tongue.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_waiting.gif Binary file pidgin/pixmaps/smileys/default/yahoo_waiting.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_waving.gif Binary file pidgin/pixmaps/smileys/default/yahoo_waving.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_whistling.gif Binary file pidgin/pixmaps/smileys/default/yahoo_whistling.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_wink.gif Binary file pidgin/pixmaps/smileys/default/yahoo_wink.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_worried.gif Binary file pidgin/pixmaps/smileys/default/yahoo_worried.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_worship.gif Binary file pidgin/pixmaps/smileys/default/yahoo_worship.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_yingyang.gif Binary file pidgin/pixmaps/smileys/default/yahoo_yingyang.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yahoo_youkiddingme.gif Binary file pidgin/pixmaps/smileys/default/yahoo_youkiddingme.gif has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/default/yell.png Binary file pidgin/pixmaps/smileys/default/yell.png has changed diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/none/Makefile.am --- a/pidgin/pixmaps/smileys/none/Makefile.am Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -gaimsmileypixdir = $(datadir)/pixmaps/gaim/smileys/none -gaimsmileypix_DATA = theme - -EXTRA_DIST = $(gaimsmileypix_DATA) diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/none/Makefile.mingw --- a/pidgin/pixmaps/smileys/none/Makefile.mingw Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -# -# Makefile.mingw -# -# Description: Makefile for win32 (mingw) version of Gaim pixmaps -# - -GAIM_TOP := ../../../.. -include $(GAIM_TOP)/libpurple/win32/global.mak - -datadir = $(GAIM_INSTALL_DIR) -include ./Makefile.am - -.PHONY: install - -install: - if test '$(gaimsmileypix_DATA)'; then \ - mkdir -p $(gaimsmileypixdir); \ - cp $(gaimsmileypix_DATA) $(gaimsmileypixdir); \ - fi; - diff -r b2a8c5eca30a -r 9143191e021b pidgin/pixmaps/smileys/none/theme --- a/pidgin/pixmaps/smileys/none/theme Mon Jan 22 05:33:34 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -Name=none -Description=Selecting this disables graphical emoticons. -Author=Penguin Pimps diff -r b2a8c5eca30a -r 9143191e021b pidgin/plugins/gaiminc.c --- a/pidgin/plugins/gaiminc.c Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/plugins/gaiminc.c Mon Jan 22 15:39:42 2007 +0000 @@ -88,7 +88,7 @@ GAIM_PRIORITY_DEFAULT, /**< priority */ GAIMINC_PLUGIN_ID, /**< id */ - N_("Gaim Demonstration Plugin"), /**< name */ + N_(PIDGIN_NAME " Demonstration Plugin"), /**< name */ VERSION, /**< version */ /** summary */ N_("An example plugin that does stuff - see the description."), diff -r b2a8c5eca30a -r 9143191e021b pidgin/plugins/gaimrc.c --- a/pidgin/plugins/gaimrc.c Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/plugins/gaimrc.c Mon Jan 22 15:39:42 2007 +0000 @@ -613,7 +613,7 @@ NULL, GAIM_PRIORITY_DEFAULT, "gaimrc", - N_("Gaim GTK+ Theme Control"), + N_(PIDGIN_NAME " GTK+ Theme Control"), VERSION, N_("Provides access to commonly used gtkrc settings."), N_("Provides access to commonly used gtkrc settings."), diff -r b2a8c5eca30a -r 9143191e021b pidgin/plugins/relnot.c --- a/pidgin/plugins/relnot.c Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/plugins/relnot.c Mon Jan 22 15:39:42 2007 +0000 @@ -38,6 +38,8 @@ #include "util.h" #include "version.h" +#include "gtkgaim.h" + /* 1 day */ #define MIN_CHECK_INTERVAL 60 * 60 * 24 @@ -66,7 +68,7 @@ while(*changelog == '\n') changelog++; message = g_string_new(""); - g_string_append_printf(message, _("You are using Gaim version %s. The " + g_string_append_printf(message, _("You are using " PIDGIN_NAME " version %s. The " "current version is %s.
"), gaim_core_get_version(), cur_ver); diff -r b2a8c5eca30a -r 9143191e021b pidgin/plugins/timestamp_format.c --- a/pidgin/plugins/timestamp_format.c Mon Jan 22 05:33:34 2007 +0000 +++ b/pidgin/plugins/timestamp_format.c Mon Jan 22 15:39:42 2007 +0000 @@ -24,7 +24,7 @@ ppref = gaim_plugin_pref_new_with_name_and_label( "/plugins/gtk/timestamp_format/force_24hr", - _("_Force (traditional Gaim) 24-hour time format")); + _("_Force (traditional " PIDGIN_NAME ") 24-hour time format")); gaim_plugin_pref_frame_add(frame, ppref); ppref = gaim_plugin_pref_new_with_label(_("Show dates in...")); diff -r b2a8c5eca30a -r 9143191e021b po/POTFILES.in --- a/po/POTFILES.in Mon Jan 22 05:33:34 2007 +0000 +++ b/po/POTFILES.in Mon Jan 22 15:39:42 2007 +0000 @@ -28,177 +28,177 @@ console/plugins/gntgf.c console/plugins/gnthistory.c console/plugins/lastlog.c -gtk/eggtrayicon.c -gtk/gaimcombobox.c -gtk/gaimstock.c -gtk/gtkaccount.c -gtk/gtkblist.c -gtk/gtkcellview.c -gtk/gtkconn.c -gtk/gtkconv.c -gtk/gtkdebug.c -gtk/gtkdialogs.c -gtk/gtkdocklet.c -gtk/gtkexpander.c -gtk/gtkft.c -gtk/gtkimhtml.c -gtk/gtkimhtmltoolbar.c -gtk/gtklog.c -gtk/gtkmain.c -gtk/gtknotify.c -gtk/gtkplugin.c -gtk/gtkpounce.c -gtk/gtkprefs.c -gtk/gtkprivacy.c -gtk/gtkrequest.c -gtk/gtkroomlist.c -gtk/gtksavedstatuses.c -gtk/gtksound.c -gtk/gtkstatusbox.c -gtk/gtkutils.c -gtk/gtkwhiteboard.c -gtk/plugins/cap/cap.c -gtk/plugins/contact_priority.c -gtk/plugins/convcolors.c -gtk/plugins/extplacement.c -gtk/plugins/gaiminc.c -gtk/plugins/gaimrc.c -gtk/plugins/gestures/gestures.c -gtk/plugins/gevolution/add_buddy_dialog.c -gtk/plugins/gevolution/assoc-buddy.c -gtk/plugins/gevolution/eds-utils.c -gtk/plugins/gevolution/gevolution.c -gtk/plugins/gevolution/gevo-util.c -gtk/plugins/gevolution/new_person_dialog.c -gtk/plugins/gtk-signals-test.c -gtk/plugins/history.c -gtk/plugins/iconaway.c -gtk/plugins/mailchk.c -gtk/plugins/markerline.c -gtk/plugins/musicmessaging/musicmessaging.c -gtk/plugins/notify.c -gtk/plugins/raw.c -gtk/plugins/relnot.c -gtk/plugins/spellchk.c -gtk/plugins/ticker/ticker.c -gtk/plugins/timestamp.c -gtk/plugins/timestamp_format.c -gtk/plugins/win32/transparency/win2ktrans.c -gtk/plugins/win32/winprefs/winprefs.c -libgaim/account.c -libgaim/blist.c -libgaim/connection.c -libgaim/conversation.c -libgaim/desktopitem.c -libgaim/dbus-server.c -libgaim/dnsquery.c -libgaim/ft.c -libgaim/gconf/gaim.schemas.in -libgaim/log.c -libgaim/plugin.c -libgaim/plugins/autoaccept.c -libgaim/plugins/autoreply.c -libgaim/plugins/buddynote.c -libgaim/plugins/ciphertest.c -libgaim/plugins/dbus-example.c -libgaim/plugins/filectl.c -libgaim/plugins/idle.c -libgaim/plugins/ipc-test-client.c -libgaim/plugins/ipc-test-server.c -libgaim/plugins/log_reader.c -libgaim/plugins/mono/loader/mono.c -libgaim/plugins/newline.c -libgaim/plugins/offlinemsg.c -libgaim/plugins/perl/perl.c -libgaim/plugins/psychic.c -libgaim/plugins/signals-test.c -libgaim/plugins/simple.c -libgaim/plugins/ssl/ssl.c -libgaim/plugins/ssl/ssl-gnutls.c -libgaim/plugins/ssl/ssl-nss.c -libgaim/plugins/statenotify.c -libgaim/plugins/tcl/tcl.c -libgaim/protocols/bonjour/bonjour.c -libgaim/protocols/bonjour/bonjour.h -libgaim/protocols/bonjour/jabber.c -libgaim/protocols/gg/gg.c -libgaim/protocols/irc/cmds.c -libgaim/protocols/irc/dcc_send.c -libgaim/protocols/irc/irc.c -libgaim/protocols/irc/msgs.c -libgaim/protocols/irc/parse.c -libgaim/protocols/jabber/auth.c -libgaim/protocols/jabber/buddy.c -libgaim/protocols/jabber/chat.c -libgaim/protocols/jabber/jabber.c -libgaim/protocols/jabber/message.c -libgaim/protocols/jabber/parser.c -libgaim/protocols/jabber/presence.c -libgaim/protocols/jabber/roster.c -libgaim/protocols/jabber/si.c -libgaim/protocols/jabber/xdata.c -libgaim/protocols/msn/dialog.c -libgaim/protocols/msn/error.c -libgaim/protocols/msn/msn.c -libgaim/protocols/msn/nexus.c -libgaim/protocols/msn/notification.c -libgaim/protocols/msn/servconn.c -libgaim/protocols/msn/session.c -libgaim/protocols/msn/state.c -libgaim/protocols/msn/switchboard.c -libgaim/protocols/msn/userlist.c -libgaim/protocols/novell/nmuser.c -libgaim/protocols/novell/novell.c -libgaim/protocols/oscar/flap_connection.c -libgaim/protocols/oscar/libaim.c -libgaim/protocols/oscar/libicq.c -libgaim/protocols/oscar/odc.c -libgaim/protocols/oscar/oft.c -libgaim/protocols/oscar/oscar.c -libgaim/protocols/oscar/peer.c -libgaim/protocols/qq/buddy_info.c -libgaim/protocols/qq/buddy_list.c -libgaim/protocols/qq/buddy_opt.c -libgaim/protocols/qq/group.c -libgaim/protocols/qq/group_im.c -libgaim/protocols/qq/group_internal.c -libgaim/protocols/qq/group_join.c -libgaim/protocols/qq/group_network.c -libgaim/protocols/qq/group_opt.c -libgaim/protocols/qq/im.c -libgaim/protocols/qq/keep_alive.c -libgaim/protocols/qq/login_logout.c -libgaim/protocols/qq/qq.c -libgaim/protocols/qq/qq_proxy.c -libgaim/protocols/qq/recv_core.c -libgaim/protocols/qq/send_file.c -libgaim/protocols/qq/sendqueue.c -libgaim/protocols/qq/sys_msg.c -libgaim/protocols/qq/udp_proxy_s5.c -libgaim/protocols/sametime/sametime.c -libgaim/protocols/silc/buddy.c -libgaim/protocols/silc/chat.c -libgaim/protocols/silc/ft.c -libgaim/protocols/silc/ops.c -libgaim/protocols/silc/pk.c -libgaim/protocols/silc/silc.c -libgaim/protocols/silc/util.c -libgaim/protocols/silc/wb.c -libgaim/protocols/simple/simple.c -libgaim/protocols/toc/toc.c -libgaim/protocols/yahoo/yahoo.c -libgaim/protocols/yahoo/yahoochat.c -libgaim/protocols/yahoo/yahoo_doodle.c -libgaim/protocols/yahoo/yahoo_filexfer.c -libgaim/protocols/yahoo/yahoo_packet.c -libgaim/protocols/yahoo/yahoo_profile.c -libgaim/protocols/yahoo/ycht.c -libgaim/protocols/zephyr/zephyr.c -libgaim/proxy.c -libgaim/request.h -libgaim/savedstatuses.c -libgaim/server.c -libgaim/status.c -libgaim/util.c +pidgin/eggtrayicon.c +pidgin/gaimcombobox.c +pidgin/gaimstock.c +pidgin/gtkaccount.c +pidgin/gtkblist.c +pidgin/gtkcellview.c +pidgin/gtkconn.c +pidgin/gtkconv.c +pidgin/gtkdebug.c +pidgin/gtkdialogs.c +pidgin/gtkdocklet.c +pidgin/gtkexpander.c +pidgin/gtkft.c +pidgin/gtkimhtml.c +pidgin/gtkimhtmltoolbar.c +pidgin/gtklog.c +pidgin/gtkmain.c +pidgin/gtknotify.c +pidgin/gtkplugin.c +pidgin/gtkpounce.c +pidgin/gtkprefs.c +pidgin/gtkprivacy.c +pidgin/gtkrequest.c +pidgin/gtkroomlist.c +pidgin/gtksavedstatuses.c +pidgin/gtksound.c +pidgin/gtkstatusbox.c +pidgin/gtkutils.c +pidgin/gtkwhiteboard.c +pidgin/plugins/cap/cap.c +pidgin/plugins/contact_priority.c +pidgin/plugins/convcolors.c +pidgin/plugins/extplacement.c +pidgin/plugins/gaiminc.c +pidgin/plugins/gaimrc.c +pidgin/plugins/gestures/gestures.c +pidgin/plugins/gevolution/add_buddy_dialog.c +pidgin/plugins/gevolution/assoc-buddy.c +pidgin/plugins/gevolution/eds-utils.c +pidgin/plugins/gevolution/gevolution.c +pidgin/plugins/gevolution/gevo-util.c +pidgin/plugins/gevolution/new_person_dialog.c +pidgin/plugins/gtk-signals-test.c +pidgin/plugins/history.c +pidgin/plugins/iconaway.c +pidgin/plugins/mailchk.c +pidgin/plugins/markerline.c +pidgin/plugins/musicmessaging/musicmessaging.c +pidgin/plugins/notify.c +pidgin/plugins/raw.c +pidgin/plugins/relnot.c +pidgin/plugins/spellchk.c +pidgin/plugins/ticker/ticker.c +pidgin/plugins/timestamp.c +pidgin/plugins/timestamp_format.c +pidgin/plugins/win32/transparency/win2ktrans.c +pidgin/plugins/win32/winprefs/winprefs.c +libpurple/account.c +libpurple/blist.c +libpurple/connection.c +libpurple/conversation.c +libpurple/desktopitem.c +libpurple/dbus-server.c +libpurple/dnsquery.c +libpurple/ft.c +libpurple/gconf/gaim.schemas.in +libpurple/log.c +libpurple/plugin.c +libpurple/plugins/autoaccept.c +libpurple/plugins/autoreply.c +libpurple/plugins/buddynote.c +libpurple/plugins/ciphertest.c +libpurple/plugins/dbus-example.c +libpurple/plugins/filectl.c +libpurple/plugins/idle.c +libpurple/plugins/ipc-test-client.c +libpurple/plugins/ipc-test-server.c +libpurple/plugins/log_reader.c +libpurple/plugins/mono/loader/mono.c +libpurple/plugins/newline.c +libpurple/plugins/offlinemsg.c +libpurple/plugins/perl/perl.c +libpurple/plugins/psychic.c +libpurple/plugins/signals-test.c +libpurple/plugins/simple.c +libpurple/plugins/ssl/ssl.c +libpurple/plugins/ssl/ssl-gnutls.c +libpurple/plugins/ssl/ssl-nss.c +libpurple/plugins/statenotify.c +libpurple/plugins/tcl/tcl.c +libpurple/protocols/bonjour/bonjour.c +libpurple/protocols/bonjour/bonjour.h +libpurple/protocols/bonjour/jabber.c +libpurple/protocols/gg/gg.c +libpurple/protocols/irc/cmds.c +libpurple/protocols/irc/dcc_send.c +libpurple/protocols/irc/irc.c +libpurple/protocols/irc/msgs.c +libpurple/protocols/irc/parse.c +libpurple/protocols/jabber/auth.c +libpurple/protocols/jabber/buddy.c +libpurple/protocols/jabber/chat.c +libpurple/protocols/jabber/jabber.c +libpurple/protocols/jabber/message.c +libpurple/protocols/jabber/parser.c +libpurple/protocols/jabber/presence.c +libpurple/protocols/jabber/roster.c +libpurple/protocols/jabber/si.c +libpurple/protocols/jabber/xdata.c +libpurple/protocols/msn/dialog.c +libpurple/protocols/msn/error.c +libpurple/protocols/msn/msn.c +libpurple/protocols/msn/nexus.c +libpurple/protocols/msn/notification.c +libpurple/protocols/msn/servconn.c +libpurple/protocols/msn/session.c +libpurple/protocols/msn/state.c +libpurple/protocols/msn/switchboard.c +libpurple/protocols/msn/userlist.c +libpurple/protocols/novell/nmuser.c +libpurple/protocols/novell/novell.c +libpurple/protocols/oscar/flap_connection.c +libpurple/protocols/oscar/libaim.c +libpurple/protocols/oscar/libicq.c +libpurple/protocols/oscar/odc.c +libpurple/protocols/oscar/oft.c +libpurple/protocols/oscar/oscar.c +libpurple/protocols/oscar/peer.c +libpurple/protocols/qq/buddy_info.c +libpurple/protocols/qq/buddy_list.c +libpurple/protocols/qq/buddy_opt.c +libpurple/protocols/qq/group.c +libpurple/protocols/qq/group_im.c +libpurple/protocols/qq/group_internal.c +libpurple/protocols/qq/group_join.c +libpurple/protocols/qq/group_network.c +libpurple/protocols/qq/group_opt.c +libpurple/protocols/qq/im.c +libpurple/protocols/qq/keep_alive.c +libpurple/protocols/qq/login_logout.c +libpurple/protocols/qq/qq.c +libpurple/protocols/qq/qq_proxy.c +libpurple/protocols/qq/recv_core.c +libpurple/protocols/qq/send_file.c +libpurple/protocols/qq/sendqueue.c +libpurple/protocols/qq/sys_msg.c +libpurple/protocols/qq/udp_proxy_s5.c +libpurple/protocols/sametime/sametime.c +libpurple/protocols/silc/buddy.c +libpurple/protocols/silc/chat.c +libpurple/protocols/silc/ft.c +libpurple/protocols/silc/ops.c +libpurple/protocols/silc/pk.c +libpurple/protocols/silc/silc.c +libpurple/protocols/silc/util.c +libpurple/protocols/silc/wb.c +libpurple/protocols/simple/simple.c +libpurple/protocols/toc/toc.c +libpurple/protocols/yahoo/yahoo.c +libpurple/protocols/yahoo/yahoochat.c +libpurple/protocols/yahoo/yahoo_doodle.c +libpurple/protocols/yahoo/yahoo_filexfer.c +libpurple/protocols/yahoo/yahoo_packet.c +libpurple/protocols/yahoo/yahoo_profile.c +libpurple/protocols/yahoo/ycht.c +libpurple/protocols/zephyr/zephyr.c +libpurple/proxy.c +libpurple/request.h +libpurple/savedstatuses.c +libpurple/server.c +libpurple/status.c +libpurple/util.c