changeset 15388:937193bf17c3

Credit for icons
author Sean Egan <seanegan@gmail.com>
date Tue, 23 Jan 2007 01:09:06 +0000
parents 9143191e021b
children 81cfeef96dea 92ea7da581a1
files AUTHORS COPYRIGHT libpurple/win32/libpurplerc.rc.in pidgin/gtkdialogs.c pidgin/pixmaps/emotes/THEMES-HOWTO pidgin/win32/pidgin_dll_rc.rc.in pidgin/win32/pidgin_exe_rc.rc.in pidgin/win32/winpidgin.c
diffstat 8 files changed, 30 insertions(+), 695 deletions(-) [+]
line wrap: on
line diff
--- a/AUTHORS	Mon Jan 22 15:39:42 2007 +0000
+++ b/AUTHORS	Tue Jan 23 01:09:06 2007 +0000
@@ -55,6 +55,10 @@
 Mark Spencer <markster@marko.net> - original author
 Eric Warmenhoven <eric@warmenhoven.org> - lead developer
 
+Artists:
+-------
+Hylke Bons - Icons
+
 Other Contributions:
 -------------------
 Much thanks to Evan Martin <martine@cs.washington.edu> for writing 
--- a/COPYRIGHT	Mon Jan 22 15:39:42 2007 +0000
+++ b/COPYRIGHT	Tue Jan 23 01:09:06 2007 +0000
@@ -158,6 +158,7 @@
 Kevin Hunter
 Rian Hunter
 Thomas Huriaux
+Instant Messaging Freedom, Inc.
 Vitaliy Ischenko
 Scott Jackson
 Hans Petter Jansson
--- a/libpurple/win32/libpurplerc.rc.in	Mon Jan 22 15:39:42 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#include <winver.h>
-#include "version.h"
-
-VS_VERSION_INFO VERSIONINFO
-  FILEVERSION GAIM_MAJOR_VERSION,GAIM_MINOR_VERSION,GAIM_MICRO_VERSION,0
-  PRODUCTVERSION GAIM_MAJOR_VERSION,GAIM_MINOR_VERSION,GAIM_MICRO_VERSION,0
-  FILEFLAGSMASK 0
-  FILEFLAGS 0
-  FILEOS VOS__WINDOWS32
-  FILETYPE VFT_DLL
-  FILESUBTYPE VFT2_UNKNOWN
-  BEGIN
-    BLOCK "StringFileInfo"
-    BEGIN
-      BLOCK "040904B0"
-      BEGIN
-        VALUE "CompanyName", "The Gaim developer community"
-        VALUE "FileDescription", "Libgaim Library"
-        VALUE "FileVersion", "@GAIM_VERSION@"
-        VALUE "InternalName", "libgaim"
-        VALUE "LegalCopyright", "Copyright (C) 1998-2006 The Gaim developer community (See the COPYRIGHT file in the source distribution)."
-        VALUE "OriginalFilename", "libgaim.dll"
-        VALUE "ProductName", "Gaim"
-        VALUE "ProductVersion", "@GAIM_VERSION@"
-      END
-    END
-    BLOCK "VarFileInfo"
-    BEGIN
-      VALUE "Translation", 0x409, 1200
-    END
-  END
-
--- a/pidgin/gtkdialogs.c	Mon Jan 22 15:39:42 2007 +0000
+++ b/pidgin/gtkdialogs.c	Tue Jan 23 01:09:06 2007 +0000
@@ -61,6 +61,11 @@
 	char *email;
 };
 
+struct artist {
+	char *name;
+	char *email;
+};
+
 /* Order: Lead Developer, then Alphabetical by Last Name */
 static struct developer developers[] = {
 	{"Sean Egan",					N_("lead developer"), "sean.egan@gmail.com"},
@@ -222,6 +227,11 @@
 	{NULL, NULL, NULL, NULL}
 };
 
+static struct artist artists[] = {
+	{"Hylke Bons",	"h.bons@student.rug.nl"},
+	{NULL, NULL}
+};
+
 void
 gaim_gtkdialogs_destroy_all()
 {
@@ -399,6 +409,21 @@
 	}
 	g_string_append(str, "<BR/>");
 
+	/* Artists */
+        g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
+                                                   _("Artists"));
+        for (i = 0; artists[i].name != NULL; i++) {
+        	if (artists[i].email != NULL) {
+			g_string_append_printf(str, "  %s &lt;<a href=\"mailto:%s\">%s</a>&gt;<br/>",
+			                           artists[i].name,
+			                           artists[i].email, artists[i].email);
+	        } else {
+	                g_string_append_printf(str, "  %s<br/>",
+	                                      artists[i].name);
+	        }
+	}
+	g_string_append(str, "<BR/>");
+			
 	/* Current Translators */
 	g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>",
 						   _("Current Translators"));
--- a/pidgin/pixmaps/emotes/THEMES-HOWTO	Mon Jan 22 15:39:42 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	:-/	:-\\
-
--- a/pidgin/win32/pidgin_dll_rc.rc.in	Mon Jan 22 15:39:42 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#include <winver.h>
-#include "version.h"
-
-VS_VERSION_INFO VERSIONINFO
-  FILEVERSION GAIM_MAJOR_VERSION,GAIM_MINOR_VERSION,GAIM_MICRO_VERSION,0
-  PRODUCTVERSION GAIM_MAJOR_VERSION,GAIM_MINOR_VERSION,GAIM_MICRO_VERSION,0
-  FILEFLAGSMASK 0
-  FILEFLAGS 0
-  FILEOS VOS__WINDOWS32
-  FILETYPE VFT_DLL
-  FILESUBTYPE VFT2_UNKNOWN
-  BEGIN
-    BLOCK "StringFileInfo"
-    BEGIN
-      BLOCK "040904B0"
-      BEGIN
-        VALUE "CompanyName", "The Gaim developer community"
-        VALUE "FileDescription", "GTK+ Gaim Library"
-        VALUE "FileVersion", "@GAIM_VERSION@"
-        VALUE "InternalName", "gtkgaim"
-        VALUE "LegalCopyright", "Copyright (C) 1998-2006 The Gaim developer community (See the COPYRIGHT file in the source distribution)."
-        VALUE "OriginalFilename", "gtkgaim.dll"
-        VALUE "ProductName", "Gaim"
-        VALUE "ProductVersion", "@GAIM_VERSION@"
-      END
-    END
-    BLOCK "VarFileInfo"
-    BEGIN
-      VALUE "Translation", 0x409, 1200
-    END
-  END
-
--- a/pidgin/win32/pidgin_exe_rc.rc.in	Mon Jan 22 15:39:42 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,47 +0,0 @@
-#include <winver.h>
-#include "resource.h"
-#include "version.h"
-
-#define PIXMAPDIR "pixmaps/"
-
-VS_VERSION_INFO VERSIONINFO
-  FILEVERSION GAIM_MAJOR_VERSION,GAIM_MINOR_VERSION,GAIM_MICRO_VERSION,0
-  PRODUCTVERSION GAIM_MAJOR_VERSION,GAIM_MINOR_VERSION,GAIM_MICRO_VERSION,0
-  FILEFLAGSMASK 0
-  FILEFLAGS 0
-  FILEOS VOS__WINDOWS32
-  FILETYPE VFT_APP
-  FILESUBTYPE VFT2_UNKNOWN
-  BEGIN
-    BLOCK "StringFileInfo"
-    BEGIN
-      BLOCK "040904B0"
-      BEGIN
-        VALUE "CompanyName", "The Gaim developer community"
-        VALUE "FileDescription", "Gaim"
-        VALUE "FileVersion", "@GAIM_VERSION@"
-        VALUE "InternalName", "gaim"
-        VALUE "LegalCopyright", "Copyright (C) 1998-2006 The Gaim developer community (See the COPYRIGHT file in the source distribution)."
-        VALUE "OriginalFilename", "@ORIGINAL_FILENAME@"
-        VALUE "ProductName", "Gaim"
-        VALUE "ProductVersion", "@GAIM_VERSION@"
-      END
-    END
-    BLOCK "VarFileInfo"
-    BEGIN
-      VALUE "Translation", 0x409, 1200
-    END
-  END
-
-GAIM_ICON			ICON PIXMAPDIR "gaim.ico"
-GAIM_TRAY_ICON			ICON PIXMAPDIR "gaim_16.ico"
-GAIM_OFFLINE_TRAY_ICON		ICON PIXMAPDIR "gaim_offline_16.ico"
-GAIM_AWAY_TRAY_ICON		ICON PIXMAPDIR "gaim_away_16.ico"
-GAIM_PEND_TRAY_ICON		ICON PIXMAPDIR "gaim_msgunread_16.ico"
-GAIM_AWAYPEND_TRAY_ICON 	ICON PIXMAPDIR "gaim_msgpend_16.ico"
-GAIM_BLANK_TRAY_ICON		ICON PIXMAPDIR "gaim_blank_4bit_16.ico"
-GAIM_TRAY_ICON_4BIT		ICON PIXMAPDIR "gaim_4bit_16.ico"
-GAIM_OFFLINE_TRAY_ICON_4BIT	ICON PIXMAPDIR "gaim_offline_4bit_16.ico"
-GAIM_AWAY_TRAY_ICON_4BIT	ICON PIXMAPDIR "gaim_away_4bit_16.ico"
-GAIM_PEND_TRAY_ICON_4BIT	ICON PIXMAPDIR "gaim_msgunread_4bit_16.ico"
-GAIM_AWAYPEND_TRAY_ICON_4BIT	ICON PIXMAPDIR "gaim_msgpend_4bit_16.ico"
--- a/pidgin/win32/winpidgin.c	Mon Jan 22 15:39:42 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,552 +0,0 @@
-/*
- *  winpidgin.c
- *
- *  Date: June, 2002
- *  Description: Entry point for win32 pidgin, and various win32 dependant
- *  routines.
- *
- * Gaim is the legal property of its developers, whose names are too numerous
- * to list here.  Please refer to the COPYRIGHT file distributed with this
- * source distribution.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- */
-
-/* This is for ATTACH_PARENT_PROCESS */
-#ifndef _WIN32_WINNT
-#define _WIN32_WINNT 0x501
-#endif
-#include <windows.h>
-#include <fcntl.h>
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-
-/* These will hopefully be in the win32api next time it is updated - at which point, we'll remove them */
-#ifndef LANG_PERSIAN
-#define LANG_PERSIAN 0x29
-#endif
-#ifndef LANG_BOSNIAN
-#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN	0x05
-#define SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC	0x08
-#endif
-#ifndef SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN
-#define SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN	0x04
-#endif
-#ifndef LANG_XHOSA
-#define LANG_XHOSA 0x34
-#endif
-
-
-typedef int (CALLBACK* LPFNGAIMMAIN)(HINSTANCE, int, char**);
-typedef void (CALLBACK* LPFNSETDLLDIRECTORY)(LPCTSTR);
-typedef BOOL (CALLBACK* LPFNATTACHCONSOLE)(DWORD);
-
-/*
- *  PROTOTYPES
- */
-static LPFNGAIMMAIN gaim_main = NULL;
-static LPFNSETDLLDIRECTORY MySetDllDirectory = NULL;
-
-static const char *get_win32_error_message(DWORD err) {
-	static char err_msg[512];
-
-	FormatMessage(
-		FORMAT_MESSAGE_FROM_SYSTEM,
-		NULL, err,
-		MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
-		(LPTSTR) &err_msg, sizeof(err_msg), NULL);
-
-	return err_msg;
-}
-
-static BOOL read_reg_string(HKEY key, char* sub_key, char* val_name, LPBYTE data, LPDWORD data_len) {
-	HKEY hkey;
-	BOOL ret = FALSE;
-	LONG retv;
-
-	if (ERROR_SUCCESS == (retv = RegOpenKeyEx(key, sub_key, 0,
-					KEY_QUERY_VALUE, &hkey))) {
-		if (ERROR_SUCCESS == (retv = RegQueryValueEx(hkey, val_name,
-						NULL, NULL, data, data_len)))
-			ret = TRUE;
-		else {
-			const char *err_msg = get_win32_error_message(retv);
-
-			printf("Could not read reg key '%s' subkey '%s' value: '%s'.\nMessage: (%ld) %s\n",
-					((key == HKEY_LOCAL_MACHINE) ? "HKLM" :
-					 (key == HKEY_CURRENT_USER) ? "HKCU" :
-					 "???"),
-					sub_key, val_name, retv, err_msg);
-		}
-		RegCloseKey(hkey);
-	}
-	else {
-		TCHAR szBuf[80];
-
-		FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, retv, 0,
-				(LPTSTR) &szBuf, sizeof(szBuf), NULL);
-		printf("Could not open reg subkey: %s\nError: (%ld) %s\n",
-				sub_key, retv, szBuf);
-	}
-
-	return ret;
-}
-
-static void dll_prep() {
-	char path[MAX_PATH + 1];
-	HMODULE hmod;
-	HKEY hkey;
-#ifdef PORTABLE
-	/* We assume that GTK+ is installed under \\path\to\Gaim\..\GTK
-	 * First we find \\path\to
-	 */
-	if (GetModuleFileName(NULL, path, MAX_PATH) != 0) {
-		char *tmp = path;
-		char *prev = NULL;
-		char *prev2 = NULL;
-
-		while ((tmp = strchr(tmp, '\\'))) {
-			prev2 = prev;
-			prev = tmp;
-			tmp++;
-		}
-
-		if (prev2) {
-			prev2[0] = '\0';
-		}
-	} else {
-		printf("Unable to determine current executable path. \n"
-			"This will prevent the settings dir from being set.\n"
-			"Assuming GTK+ is in the PATH.\n");
-	}
-
-	if (path) {
-		/* Set up the settings dir base to be \\path\to
-		 * The actual settings dir will be \\path\to\.gaim */
-		char settingsdir[strlen(path) + strlen("GAIMHOME=") + 1];
-		char aspelldir[strlen(path) + strlen("GAIM_ASPELL_DIR=\\Aspell\\bin") + 1];
-
-		snprintf(settingsdir, sizeof(settingsdir), "GAIMHOME=%s", path);
-		printf("Setting settings dir: %s\n", settingsdir);
-		putenv(settingsdir);
-
-		snprintf(aspelldir, sizeof(aspelldir), "GAIM_ASPELL_DIR=%s\\Aspell\\bin", path);
-		printf("%s", aspelldir);
-		putenv(aspelldir);
-
-		/* set the GTK+ path to be \\path\to\GTK\bin */
-		strcat(path, "\\GTK\\bin");
-	} else
-		return;
-#else /* PORTABLE */
-	char gtkpath[MAX_PATH + 1];
-	DWORD plen;
-
-	plen = sizeof(gtkpath);
-	hkey = HKEY_CURRENT_USER;
-	if (!read_reg_string(hkey, "SOFTWARE\\GTK\\2.0", "Path",
-			(LPBYTE) &gtkpath, &plen)) {
-		hkey = HKEY_LOCAL_MACHINE;
-		if (!read_reg_string(hkey, "SOFTWARE\\GTK\\2.0", "Path",
-				(LPBYTE) &gtkpath, &plen)) {
-			printf("GTK+ Path Registry Key not found. "
-				"Assuming GTK+ is in the PATH.\n");
-			return;
-		}
-	}
-
-	/* this value is replaced during a successful RegQueryValueEx() */
-	plen = sizeof(path);
-	/* Determine GTK+ dll path .. */
-	if (!read_reg_string(hkey, "SOFTWARE\\GTK\\2.0", "DllPath",
-				(LPBYTE) &path, &plen)) {
-		strcpy(path, gtkpath);
-		strcat(path, "\\bin");
-	}
-#endif
-	printf("GTK+ path found: %s\n", path);
-
-	if ((hmod = GetModuleHandle("kernel32.dll"))) {
-		MySetDllDirectory = (LPFNSETDLLDIRECTORY) GetProcAddress(
-			hmod, "SetDllDirectoryA");
-		if (!MySetDllDirectory)
-			printf("SetDllDirectory not supported\n");
-	} else
-		printf("Error getting kernel32.dll module handle\n");
-
-	/* For Windows XP SP1+ / Server 2003 we use SetDllDirectory to avoid dll hell */
-	if (MySetDllDirectory) {
-		printf("Using SetDllDirectory\n");
-		MySetDllDirectory(path);
-	}
-
-	/* For the rest, we set the current directory and make sure
-	 * SafeDllSearch is set to 0 where needed. */
-	else {
-		OSVERSIONINFO osinfo;
-
-		printf("Setting current directory to GTK+ dll directory\n");
-		SetCurrentDirectory(path);
-		/* For Windows 2000 (SP3+) / WinXP (No SP):
-		 * If SafeDllSearchMode is set to 1, Windows system directories are
-		 * searched for dlls before the current directory. Therefore we set it
-		 * to 0.
-		 */
-		osinfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
-		GetVersionEx(&osinfo);
-		if ((osinfo.dwMajorVersion == 5 &&
-			osinfo.dwMinorVersion == 0 &&
-			strcmp(osinfo.szCSDVersion, "Service Pack 3") >= 0) ||
-			(osinfo.dwMajorVersion == 5 &&
-			osinfo.dwMinorVersion == 1 &&
-			strcmp(osinfo.szCSDVersion, "") >= 0)
-		) {
-			DWORD regval = 1;
-			DWORD reglen = sizeof(DWORD);
-
-			printf("Using Win2k (SP3+) / WinXP (No SP)... Checking SafeDllSearch\n");
-			read_reg_string(HKEY_LOCAL_MACHINE,
-				"System\\CurrentControlSet\\Control\\Session Manager",
-				"SafeDllSearchMode",
-				(LPBYTE) &regval,
-				&reglen);
-
-			if (regval != 0) {
-				printf("Trying to set SafeDllSearchMode to 0\n");
-				regval = 0;
-				if (RegOpenKeyEx(HKEY_LOCAL_MACHINE,
-					"System\\CurrentControlSet\\Control\\Session Manager",
-					0,  KEY_SET_VALUE, &hkey
-				) == ERROR_SUCCESS) {
-					if (RegSetValueEx(hkey,
-						"SafeDllSearchMode", 0,
-						REG_DWORD, (LPBYTE) &regval,
-						sizeof(DWORD)
-					) != ERROR_SUCCESS)
-						printf("Error writing SafeDllSearchMode. Error: %u\n",
-						(UINT) GetLastError());
-					RegCloseKey(hkey);
-				} else
-					printf("Error opening Session Manager key for writing. Error: %u\n",
-						(UINT) GetLastError());
-			} else
-				printf("SafeDllSearchMode is set to 0\n");
-		}/*end else*/
-	}
-}
-
-static char* wgaim_lcid_to_posix(LCID lcid) {
-	char *posix = NULL;
-	int lang_id = PRIMARYLANGID(lcid);
-	int sub_id = SUBLANGID(lcid);
-
-	switch (lang_id) {
-		case LANG_ARABIC: posix = "ar"; break;
-		case LANG_AZERI: posix = "az"; break;
-		case LANG_BENGALI: posix = "bn"; break;
-		case LANG_BULGARIAN: posix = "bg"; break;
-		case LANG_CATALAN: posix = "ca"; break;
-		case LANG_CHINESE:
-			switch (sub_id) {
-				case SUBLANG_CHINESE_SIMPLIFIED:
-					posix = "zh_CN"; break;
-				case SUBLANG_CHINESE_TRADITIONAL:
-					posix = "zh_TW"; break;
-				default:
-					posix = "zh"; break;
-			}
-			break;
-		case LANG_CZECH: posix = "cs"; break;
-		case LANG_DANISH: posix = "da"; break;
-		case LANG_ESTONIAN: posix = "et"; break;
-		case LANG_PERSIAN: posix = "fa"; break;
-		case LANG_GERMAN: posix = "de"; break;
-		case LANG_GREEK: posix = "el"; break;
-		case LANG_ENGLISH:
-			switch (sub_id) {
-				case SUBLANG_ENGLISH_UK:
-					posix = "en_GB"; break;
-				case SUBLANG_ENGLISH_AUS:
-					posix = "en_AU"; break;
-				case SUBLANG_ENGLISH_CAN:
-					posix = "en_CA"; break;
-				default:
-					posix = "en"; break;
-			}
-			break;
-		case LANG_SPANISH: posix = "es"; break;
-		case LANG_BASQUE: posix = "eu"; break;
-		case LANG_FINNISH: posix = "fi"; break;
-		case LANG_FRENCH: posix = "fr"; break;
-		case LANG_GALICIAN: posix = "gl"; break;
-		case LANG_GUJARATI: posix = "gu"; break;
-		case LANG_HEBREW: posix = "he"; break;
-		case LANG_HINDI: posix = "hi"; break;
-		case LANG_HUNGARIAN: posix = "hu"; break;
-		case LANG_ICELANDIC: break;
-		case LANG_ITALIAN: posix = "it"; break;
-		case LANG_JAPANESE: posix = "ja"; break;
-		case LANG_GEORGIAN: posix = "ka"; break;
-		case LANG_KOREAN: posix = "ko"; break;
-		case LANG_LITHUANIAN: posix = "lt"; break;
-		case LANG_MACEDONIAN: posix = "mk"; break;
-		case LANG_DUTCH: posix = "nl"; break;
-		case LANG_NEPALI: posix = "ne"; break;
-		case LANG_NORWEGIAN:
-			switch (sub_id) {
-				case SUBLANG_NORWEGIAN_BOKMAL:
-					posix = "nb"; break;
-				case SUBLANG_NORWEGIAN_NYNORSK:
-					posix = "nn"; break;
-			}
-			break;
-		case LANG_PUNJABI: posix = "pa"; break;
-		case LANG_POLISH: posix = "pl"; break;
-		case LANG_PORTUGUESE:
-			switch (sub_id) {
-				case SUBLANG_PORTUGUESE_BRAZILIAN:
-					posix = "pt_BR"; break;
-				default:
-				posix = "pt"; break;
-			}
-			break;
-		case LANG_ROMANIAN: posix = "ro"; break;
-		case LANG_RUSSIAN: posix = "ru"; break;
-		/* LANG_CROATIAN == LANG_SERBIAN == LANG_BOSNIAN */
-		case LANG_SERBIAN:
-			switch (sub_id) {
-				case SUBLANG_SERBIAN_LATIN:
-					posix = "sr@Latn"; break;
-				case SUBLANG_SERBIAN_CYRILLIC:
-					posix = "sr"; break;
-				case SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC:
-				case SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN:
-					posix = "bs"; break;
-				case SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN:
-					posix = "hr"; break;
-			}
-			break;
-		case LANG_SLOVAK: posix = "sk"; break;
-		case LANG_SLOVENIAN: posix = "sl"; break;
-		case LANG_ALBANIAN: posix = "sq"; break;
-		case LANG_SWEDISH: posix = "sv"; break;
-		case LANG_TAMIL: posix = "ta"; break;
-		case LANG_TELUGU: posix = "te"; break;
-		case LANG_THAI: posix = "th"; break;
-		case LANG_TURKISH: posix = "tr"; break;
-		case LANG_UKRAINIAN: posix = "uk"; break;
-		case LANG_VIETNAMESE: posix = "vi"; break;
-		case LANG_XHOSA: posix = "xh"; break;
-		case LANG_URDU: break;
-		case LANG_INDONESIAN: break;
-		case LANG_BELARUSIAN: break;
-		case LANG_LATVIAN: break;
-		case LANG_ARMENIAN: break;
-		case LANG_AFRIKAANS: break;
-		case LANG_FAEROESE: break;
-		case LANG_MALAY: break;
-		case LANG_KAZAK: break;
-		case LANG_KYRGYZ: break;
-		case LANG_SWAHILI: break;
-		case LANG_UZBEK: break;
-		case LANG_TATAR: break;
-		case LANG_ORIYA: break;
-		case LANG_KANNADA: break;
-		case LANG_MALAYALAM: break;
-		case LANG_ASSAMESE: break;
-		case LANG_MARATHI: break;
-		case LANG_SANSKRIT: break;
-		case LANG_MONGOLIAN: break;
-		case LANG_KONKANI: break;
-		case LANG_MANIPURI: break;
-		case LANG_SINDHI: break;
-		case LANG_SYRIAC: break;
-		case LANG_KASHMIRI: break;
-		case LANG_DIVEHI: break;
-	}
-
-	/* Deal with exceptions */
-	if (posix == NULL) {
-		switch (lcid) {
-			case 0x0455: posix = "my_MM"; break; /* Myanmar (Burmese) */
-			case 9999: posix = "ku"; break; /* Kurdish (from NSIS) */
-		}
-	}
-
-	return posix;
-}
-
-/* Determine and set Gaim locale as follows (in order of priority):
-   - Check GAIMLANG env var
-   - Check NSIS Installer Language reg value
-   - Use default user locale
-*/
-static const char *wgaim_get_locale() {
-	const char *locale = NULL;
-	LCID lcid;
-#ifndef PORTABLE
-	char data[10];
-	DWORD datalen = 10;
-#endif
-
-	/* Check if user set GAIMLANG env var */
-	if ((locale = getenv("GAIMLANG")))
-		return locale;
-
-#ifndef PORTABLE
-	if (read_reg_string(HKEY_CURRENT_USER, "SOFTWARE\\gaim",
-			"Installer Language", (LPBYTE) &data, &datalen)) {
-		if ((locale = wgaim_lcid_to_posix(atoi(data))))
-			return locale;
-	}
-#endif
-
-	lcid = GetUserDefaultLCID();
-	if ((locale = wgaim_lcid_to_posix(lcid)))
-		return locale;
-
-	return "en";
-}
-
-static void wgaim_set_locale() {
-	const char *locale = NULL;
-	char envstr[25];
-
-	locale = wgaim_get_locale();
-
-	snprintf(envstr, 25, "LANG=%s", locale);
-	printf("Setting locale: %s\n", envstr);
-	putenv(envstr);
-}
-
-#define WM_FOCUS_REQUEST (WM_APP + 13)
-
-static BOOL wgaim_set_running() {
-	HANDLE h;
-
-	if ((h = CreateMutex(NULL, FALSE, "gaim_is_running"))) {
-		if (GetLastError() == ERROR_ALREADY_EXISTS) {
-			HWND msg_win;
-
-			if((msg_win = FindWindow(TEXT("WingaimMsgWinCls"), NULL)))
-				if(SendMessage(msg_win, WM_FOCUS_REQUEST, (WPARAM) NULL, (LPARAM) NULL))
-					return FALSE;
-
-			/* If we get here, the focus request wasn't successful */
-
-			MessageBox(NULL,
-				"An instance of Gaim is already running",
-				NULL, MB_OK | MB_TOPMOST);
-
-			return FALSE;
-		}
-	}
-	return TRUE;
-}
-
-
-#ifdef __GNUC__
-#  ifndef _stdcall
-#    define _stdcall  __attribute__((stdcall))
-#  endif
-#endif
-
-int _stdcall
-WinMain (struct HINSTANCE__ *hInstance, struct HINSTANCE__ *hPrevInstance,
-		char *lpszCmdLine, int nCmdShow) {
-	char errbuf[512];
-	char gaimdir[MAX_PATH];
-	HMODULE hmod;
-
-	/* If debug or help or version flag used, create console for output */
-	if (strstr(lpszCmdLine, "-d") || strstr(lpszCmdLine, "-h") || strstr(lpszCmdLine, "-v")) {
-		/* If stdout hasn't been redirected to a file, alloc a console
-		 *  (_istty() doesn't work for stuff using the GUI subsystem) */
-		if (_fileno(stdout) == -1) {
-			LPFNATTACHCONSOLE MyAttachConsole = NULL;
-			if ((hmod = GetModuleHandle("kernel32.dll"))) {
-				MyAttachConsole =
-					(LPFNATTACHCONSOLE)
-					GetProcAddress(hmod, "AttachConsole");
-			}
-			if ((MyAttachConsole && MyAttachConsole(ATTACH_PARENT_PROCESS))
-					|| AllocConsole()) {
-				freopen("CONOUT$", "w", stdout);
-				freopen("CONOUT$", "w", stderr);
-			}
-		}
-	}
-
-	/* Load exception handler if we have it */
-	if (GetModuleFileName(NULL, gaimdir, MAX_PATH) != 0) {
-		char *tmp = gaimdir;
-		char *prev = NULL;
-
-		while ((tmp = strchr(tmp, '\\'))) {
-			prev = tmp;
-			tmp++;
-		}
-
-		if (prev) {
-			prev[0] = '\0';
-			strcat(gaimdir, "\\exchndl.dll");
-			if (LoadLibrary(gaimdir))
-				printf("Loaded exchndl.dll\n");
-		}
-	} else {
-		DWORD dw = GetLastError();
-		const char *err_msg = get_win32_error_message(dw);
-		snprintf(errbuf, 512,
-			"Error getting module filename.\nError: (%u) %s",
-			(UINT) dw, err_msg);
-		printf("%s", errbuf);
-		MessageBox(NULL, errbuf, NULL, MB_OK | MB_TOPMOST);
-	}
-
-#ifndef PORTABLE
-	if (!getenv("GAIM_NO_DLL_CHECK"))
-#endif
-		dll_prep();
-
-	wgaim_set_locale();
-	/* If help or version flag used, do not check Mutex */
-	if (!strstr(lpszCmdLine, "-h") && !strstr(lpszCmdLine, "-v"))
-		if (!getenv("GAIM_MULTI_INST") && !wgaim_set_running())
-			return 0;
-
-	/* Now we are ready for Gaim .. */
-	if ((hmod = LoadLibrary("pidgin.dll"))) {
-		gaim_main = (LPFNGAIMMAIN) GetProcAddress(hmod, "gaim_main");
-	}
-
-	if (!gaim_main) {
-		DWORD dw = GetLastError();
-		BOOL mod_not_found = (dw == ERROR_MOD_NOT_FOUND || dw == ERROR_DLL_NOT_FOUND);
-		const char *err_msg = get_win32_error_message(dw);
-
-		snprintf(errbuf, 512, "Error loading pidgin.dll.\nError: (%u) %s%s%s",
-			(UINT) dw, err_msg,
-			mod_not_found ? "\n" : "",
-			mod_not_found ? "This probably means that GTK+ can't be found." : "");
-		printf("%s", errbuf);
-		MessageBox(NULL, errbuf, TEXT("Error"), MB_OK | MB_TOPMOST);
-
-		return 0;
-	}
-
-	return gaim_main (hInstance, __argc, __argv);
-}