--- xchat-2.8.0.orig/configure.in +++ xchat-2.8.0/configure.in @@ -724,12 +724,6 @@ AC_DEFINE(socklen_t, int) fi -dnl Mac OS X and Darwin use lookupd, which caches DNS queries by default -AC_EGREP_CPP(lookupd, dnl -[#if (defined(__APPLE__) && defined(__MACH__)) - lookupd -#endif], AC_DEFINE([LOOKUPD],1,[Define to 1 if the system uses lookupd])) - dnl freebsd needs this LIBS="$LIBS $INTLLIBS" CFLAGS="$CFLAGS $CPPFLAGS" --- xchat-2.8.0.orig/src/common/network.c +++ xchat-2.8.0/src/common/network.c @@ -104,16 +104,13 @@ return NULL; memset (&ns->addr, 0, sizeof (ns->addr)); -#ifdef LOOKUPD + int count = 0; while (ns->ip4_hostent->h_addr_list[count]) count++; memcpy (&ns->addr.sin_addr, ns->ip4_hostent->h_addr_list[RAND_INT(count)], ns->ip4_hostent->h_length); -#else - memcpy (&ns->addr.sin_addr, ns->ip4_hostent->h_addr, - ns->ip4_hostent->h_length); -#endif + ns->addr.sin_port = htons (port); ns->addr.sin_family = AF_INET; @@ -211,7 +208,6 @@ if (ret != 0) return NULL; -#ifdef LOOKUPD /* See note about lookupd above the IPv4 version of net_resolve. */ struct addrinfo *tmp; int count = 0; @@ -221,7 +217,6 @@ count = RAND_INT(count); while (count--) ns->ip6_hostent = ns->ip6_hostent->ai_next; -#endif /* find the numeric IP number */ ipstring[0] = 0; --- xchat-2.8.0.orig/src/common/server.c +++ xchat-2.8.0/src/common/server.c @@ -1706,9 +1706,7 @@ (LPTHREAD_START_ROUTINE)server_child, serv, 0, (DWORD *)&pid)); #else -#ifdef LOOKUPD - rand(); /* CL: net_resolve calls rand() when LOOKUPD is set, so prepare a different seed for each child. This method giver a bigger variation in seed values than calling srand(time(0)) in the child itself. */ -#endif + rand(); /* CL: net_resolve calls rand(), so prepare a different seed for each child. This method giver a bigger variation in seed values than calling srand(time(0)) in the child itself. */ switch (pid = fork ()) { case -1: --- xchat-2.8.0.orig/debian/watch +++ xchat-2.8.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/xchat/xchat-(.*)\.tar\.bz2 --- xchat-2.8.0.orig/debian/xchat.postinst +++ xchat-2.8.0/debian/xchat.postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +if [ -d /usr/share/doc/xchat -a ! -L /usr/share/doc/xchat ]; then + rm -rf /usr/share/doc/xchat + ln -sf xchat-common /usr/share/doc/xchat +fi + +#DEBHELPER# --- xchat-2.8.0.orig/debian/xchat.lintian.overrides +++ xchat-2.8.0/debian/xchat.lintian.overrides @@ -0,0 +1 @@ +xchat: menu-icon-missing /usr/share/icons/xchat_mini.xpm --- xchat-2.8.0.orig/debian/patches/38_autoconf.dpatch +++ xchat-2.8.0/debian/patches/38_autoconf.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 38_autoconf.dpatch by Daniel Holbach +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad xchat-2.6.0~/configure xchat-2.6.0/configure +--- xchat-2.6.0~/configure 2005-11-10 12:38:45.000000000 +0100 ++++ xchat-2.6.0/configure 2005-11-15 00:24:58.000000000 +0100 +@@ -27281,7 +27281,7 @@ + fi + + +-GUI_LIBS="$GUI_LIBS $GTK_LIBS" ++GUI_LIBS="$GUI_LIBS $GTK_LIBS -llaunchpad-integration" + GUI_CFLAGS="$GUI_CFLAGS $GTK_CFLAGS" + + gnome=no --- xchat-2.8.0.orig/debian/patches/11_fix_dcc_close_message.dpatch +++ xchat-2.8.0/debian/patches/11_fix_dcc_close_message.dpatch @@ -0,0 +1,55 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 11_fix_dcc_close_message.dpatch by Pedro Villavicencio Garrido +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix incorrect Warning message when quitting with DCC chat active (207929) + +@DPATCH@ +diff -Naur xchat-2.6.4foo/src/fe-gtk/maingui.c xchat-2.6.4/src/fe-gtk/maingui.c +--- xchat-2.6.4foo/src/fe-gtk/maingui.c 2006-05-01 10:40:00.000000000 +0200 ++++ xchat-2.6.4/src/fe-gtk/maingui.c 2006-06-23 23:13:12.000000000 +0200 +@@ -1645,6 +1645,24 @@ + return 0; + } + ++static int ++mg_dcc_ischat(void) ++{ ++ GSList *list; ++ struct DCC *dcc; ++ ++ list = dcc_list; ++ while(list) ++ { ++ dcc = list->data; ++ if(!dcc->file) ++ return 1; ++ list = list->next; ++ } ++ ++ return 0; ++} ++ + void + mg_safe_quit (void) + { +@@ -1652,9 +1670,16 @@ + + if (mg_dcc_active ()) + { +- dialog = gtk_message_dialog_new (NULL, 0, +- GTK_MESSAGE_WARNING, GTK_BUTTONS_YES_NO, +- _("Some file transfers still active, quit xchat?")); ++ if(mg_dcc_ischat()){ ++ dialog = gtk_message_dialog_new (NULL, 0, ++ GTK_MESSAGE_WARNING, GTK_BUTTONS_YES_NO, ++ _("Some DCC Chats still active, quit xchat?")); ++ }else{ ++ dialog = gtk_message_dialog_new(NULL, 0, ++ GTK_MESSAGE_WARNING, GTK_BUTTONS_YES_NO, ++ _("Some file transfers still active, quit xchat?")); ++ } ++ + g_signal_connect (G_OBJECT (dialog), "response", + G_CALLBACK (mg_dcc_cb), NULL); + gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE); --- xchat-2.8.0.orig/debian/patches/45_ctcp_version_less_information.dpatch +++ xchat-2.8.0/debian/patches/45_ctcp_version_less_information.dpatch @@ -0,0 +1,20 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 45_ctcp_version_less_information.dpatch by Daniel Holbach +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad xchat-2.6.0~/src/common/ctcp.c xchat-2.6.0/src/common/ctcp.c +--- xchat-2.6.0~/src/common/ctcp.c 2005-10-21 11:50:58.000000000 +0200 ++++ xchat-2.6.0/src/common/ctcp.c 2005-12-20 09:48:11.000000000 +0100 +@@ -129,8 +129,7 @@ + + if (!strcasecmp (msg, "VERSION") && !prefs.hidever) + { +- snprintf (outbuf, sizeof (outbuf), "VERSION xchat "PACKAGE_VERSION" %s", +- get_cpu_str ()); ++ snprintf (outbuf, sizeof (outbuf), "VERSION xchat "PACKAGE_VERSION" Ubuntu"); + serv->p_nctcp (serv, nick, outbuf); + } + --- xchat-2.8.0.orig/debian/patches/41_casecomp.dpatch +++ xchat-2.8.0/debian/patches/41_casecomp.dpatch @@ -0,0 +1,81 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 41_casecomp.dpatch by ??? +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Downloaded from http://www.phys.ethz.ch/~mweyland/casecomp.patch +## DP: this will modify tab completion so that uppercase letters will +## DP: only match to uppercase, while lowercase match bot + +@DPATCH@ +diff -Naur xchat-2.6.4foo/src/common/cfgfiles.c xchat-2.6.4/src/common/cfgfiles.c +--- xchat-2.6.4foo/src/common/cfgfiles.c 2006-05-22 16:27:09.000000000 +0200 ++++ xchat-2.6.4/src/common/cfgfiles.c 2006-06-24 10:46:14.000000000 +0200 +@@ -383,6 +383,8 @@ + {"completion_sort", P_OFFINT (completion_sort), TYPE_INT}, + {"completion_suffix", P_OFFSET (nick_suffix), TYPE_STR}, + ++ {"completion_cinsens", P_OFFINT (completion_cinsens), TYPE_BOOL}, ++ + {"dcc_auto_chat", P_OFFINT (autodccchat), TYPE_INT}, + {"dcc_auto_resume", P_OFFINT (autoresume), TYPE_BOOL}, + {"dcc_auto_send", P_OFFINT (autodccsend), TYPE_INT}, +diff -Naur xchat-2.6.4foo/src/common/util.c xchat-2.6.4/src/common/util.c +--- xchat-2.6.4foo/src/common/util.c 2006-05-08 08:17:58.000000000 +0200 ++++ xchat-2.6.4/src/common/util.c 2006-06-24 10:49:14.000000000 +0200 +@@ -1316,7 +1316,7 @@ + register unsigned char *s2 = (unsigned char *) str2; + register int res; + +- while ((res = rfc_tolower (*s1) - rfc_tolower (*s2)) == 0) ++ while ((res = hal_casecomp(s1,s2)) == 0) + { + s1++; + s2++; +@@ -1327,6 +1327,25 @@ + return (res); + } + ++int ++hal_casecomp ( char *s1, char *s2) ++{ ++ ++/* This function, called by rfc_ncasecmp, enables enhanced tab ++ * completition: It completes te to Test but not Te to ++ * test2. (This is useful if you have two users Test1 and test2 in ++ * the channel. Can be toggeled wit /set completion_cinsens (0|1) ++ * ++ * -- Mathias Weyland , 6.9.2004 ++ */ ++ if((*s2 - rfc_tolower (*s2)) || prefs.completion_cinsens) ++ { ++ return (rfc_tolower (*s1) - rfc_tolower (*s2)); ++ } else { ++ return (*s1 - *s2); ++ } ++} ++ + const unsigned char rfc_tolowertab[] = + { 0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, + 0xb, 0xc, 0xd, 0xe, 0xf, 0x10, 0x11, 0x12, 0x13, 0x14, +diff -Naur xchat-2.6.4foo/src/common/util.h xchat-2.6.4/src/common/util.h +--- xchat-2.6.4foo/src/common/util.h 2006-03-12 16:03:10.000000000 +0100 ++++ xchat-2.6.4/src/common/util.h 2006-06-24 10:50:57.000000000 +0200 +@@ -26,6 +26,7 @@ + void for_files (char *dirname, char *mask, void callback (char *file)); + int rfc_casecmp (const char *, const char *); + int rfc_ncasecmp (char *, char *, int); ++int hal_casecomp ( char *s1, char *s2); + int buf_get_line (char *, char **, int *, int len); + char *nocasestrstr (char *text, char *tofind); + char *country (char *); +diff -Naur xchat-2.6.4foo/src/common/xchat.h xchat-2.6.4/src/common/xchat.h +--- xchat-2.6.4foo/src/common/xchat.h 2006-05-16 17:24:04.000000000 +0200 ++++ xchat-2.6.4/src/common/xchat.h 2006-06-24 10:51:31.000000000 +0200 +@@ -210,6 +210,7 @@ + unsigned int userlistbuttons; + unsigned int showhostname_in_userlist; + unsigned int nickcompletion; ++ unsigned int completion_cinsens; + unsigned int completion_amount; + unsigned int tabchannels; + unsigned int paned_userlist; --- xchat-2.8.0.orig/debian/patches/01_serverlist.dpatch +++ xchat-2.8.0/debian/patches/01_serverlist.dpatch @@ -0,0 +1,43 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_serverlist.dpatch by evo, edited by bartm +## +## DP: Add debian and chillfactory irc servers. +## DP: Make Debian servers default. + +@DPATCH@ +diff -ruN orig/xchat-2.6.8/src/common/servlist.c xchat-2.6.8/src/common/servlist.c +--- orig/xchat-2.6.8/src/common/servlist.c 2006-10-10 06:44:22.000000000 +0200 ++++ xchat-2.6.8/src/common/servlist.c 2006-11-02 18:37:40.000000000 +0100 +@@ -46,6 +46,13 @@ + + static const struct defaultserver def[] = + { ++ {"Debian Servers", 0, "#debian"}, ++ {0, "irc.debian.org"}, ++ {0, "irc.oftc.net"}, ++ ++ {"Ubuntu Servers", 0, "#ubuntu"}, ++ {0, "irc.ubuntu.com"}, ++ + {"2600net", 0}, + {0, "irc.2600.net"}, + +@@ -137,6 +144,9 @@ + {"ChatSpike", 0}, + {0, "irc.chatspike.net"}, + ++ {"ChillFactory", 0}, ++ {0, "irc.chillfactory.net"}, ++ + {"CoolChat", 0}, + {0, "irc.coolchat.net"}, + /* {0, "unix.coolchat.net"}, +@@ -878,7 +888,7 @@ + #endif + net->encoding = strdup (def[i].charset); + } +- if (g_str_hash (def[i].network) == 0x8e1b96f7) ++ if (g_str_hash (def[i].network) == 0x1571bd57) + prefs.slist_select = j; + j++; + } else --- xchat-2.8.0.orig/debian/patches/10_fix_unchecked_mallocs.dpatch +++ xchat-2.8.0/debian/patches/10_fix_unchecked_mallocs.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 10_fix_unchecked_mallocs.dpatch by Paul Wise +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix unchecked mallocs throughout the source code. + +@DPATCH@ +diff -Naur xchat-2.6.4foo/src/common/xchat.c xchat-2.6.4/src/common/xchat.c +--- xchat-2.6.4foo/src/common/xchat.c 2006-06-23 22:58:57.000000000 +0200 ++++ xchat-2.6.4/src/common/xchat.c 2006-06-23 23:00:19.000000000 +0200 +@@ -319,6 +319,8 @@ + session *sess; + + sess = malloc (sizeof (struct session)); ++ if(sess == NULL) ++ return NULL; + memset (sess, 0, sizeof (struct session)); + + sess->server = serv; --- xchat-2.8.0.orig/debian/patches/00list +++ xchat-2.8.0/debian/patches/00list @@ -0,0 +1,13 @@ +01_serverlist +02_terminal +03_patch397312 +04_patch361525 +10_fix_unchecked_mallocs +11_fix_dcc_close_message +20_url_pattern +37_lpi +38_autoconf +41_casecomp +45_ctcp_version_less_information +60_hig_desktop +90_xc280_fix_back --- xchat-2.8.0.orig/debian/patches/09_browser.dpatch +++ xchat-2.8.0/debian/patches/09_browser.dpatch @@ -0,0 +1,52 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 09_browser.dpatch by evo +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix browser menus. + +@DPATCH@ +diff -ruN orig/xchat-2.6.8/src/common/xchat.c xchat-2.6.8/src/common/xchat.c +--- orig/xchat-2.6.8/src/common/xchat.c 2006-10-11 11:04:55.000000000 +0200 ++++ xchat-2.6.8/src/common/xchat.c 2006-10-30 20:08:14.000000000 +0100 +@@ -598,11 +598,7 @@ + "NAME Open in new tab\n" "CMD !epiphany -n '%s'\n\n"\ + "NAME Open in new window\n" "CMD !epiphany -w '%s'\n\n"\ + "NAME ENDSUB\n" "CMD \n\n"\ +- "NAME SUB\n" "CMD Netscape...\n\n"\ +- "NAME Open in existing\n" "CMD !netscape -remote 'openURL(%s)'\n\n"\ +- "NAME Open in new window\n" "CMD !netscape -remote 'openURL(%s,new-window)'\n\n"\ +- "NAME Run new Netscape\n" "CMD !netscape %s\n\n"\ +- "NAME ENDSUB\n" "CMD \n\n"\ ++ "NAME Open in web browser\n" "CMD !sensible-browser '%s'\n\n" \ + "NAME SUB\n" "CMD Mozilla...\n\n"\ + "NAME Open in existing\n" "CMD !mozilla -remote 'openURL(%s)'\n\n"\ + "NAME Open in new window\n" "CMD !mozilla -remote 'openURL(%s,new-window)'\n\n"\ +diff -ruN orig/xchat-2.6.8/src/fe-gtk/fe-gtk.c xchat-2.6.8/src/fe-gtk/fe-gtk.c +--- orig/xchat-2.6.8/src/fe-gtk/fe-gtk.c 2006-10-15 13:57:19.000000000 +0200 ++++ xchat-2.6.8/src/fe-gtk/fe-gtk.c 2006-10-30 20:10:02.000000000 +0100 +@@ -882,7 +882,7 @@ + it user friendly, by letting the user change their browser in Gnome: + System -> Preferences -> More Preferences -> Preferred Applications. + More info at http://xchat.org/faq/#q221 */ +- moz = g_find_program_in_path ("gnome-open"); /* Gnome 2.4+ has this */ ++ moz = g_find_program_in_path ("sensible-browser"); + if (moz) + { + snprintf (tbuf, sizeof (tbuf), "%s %s", moz, url); +@@ -891,14 +891,14 @@ + return; + } + +- moz = g_find_program_in_path ("firefox"); ++ moz = g_find_program_in_path ("sensible-browser"); + if (moz) + { + snprintf (tbuf, sizeof (tbuf), "%s %s", moz, url); + g_free (moz); + } else + { +- snprintf (tbuf, sizeof (tbuf), "mozilla -remote 'openURL(%s)'", url); ++ snprintf (tbuf, sizeof (tbuf), "sensible-browser '%s'", url); + } + xchat_exec (tbuf); + #endif --- xchat-2.8.0.orig/debian/patches/51_spanish_translation.dpatch +++ xchat-2.8.0/debian/patches/51_spanish_translation.dpatch @@ -0,0 +1,2614 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## +## DP: Fixes many spelling and grammatical errors and inconsistencies in +## DP: spanish translation. + +@DPATCH@ +diff -Naur xchat-2.6.8foo/po/es.po xchat-2.6.8/po/es.po +--- xchat-2.6.8foo/po/es.po 2006-10-16 11:53:53.000000000 -0300 ++++ xchat-2.6.8/po/es.po 2006-11-04 16:45:54.000000000 -0300 +@@ -7,6 +7,7 @@ + # Ramón Rey Vicente , 2003,2004 + # Rafael Bermúdez , 2006 + # Rubén C. Díaz Alonso , 2006 ++# Martín Ferrari , 2006 + # + msgid "" + msgstr "" +@@ -37,7 +38,7 @@ + "* Running IRC as root is stupid! You should\n" + " create a User Account and use that to login.\n" + msgstr "" +-"* ¡Ejecutar IRC como root es peligroso!. Debería crear una\n" ++"* ¡Ejecutar IRC como root es estúpido!. Debería crear una\n" + " cuenta de usuario normal y usarla para conectarse.\n" + + #: src/common/dcc.c:67 +@@ -78,7 +79,7 @@ + #: src/common/dcc.c:2381 + #, c-format + msgid "%s is offering \"%s\". Do you want to accept?" +-msgstr "%s está ofreciendo \"%s\". ¿Deseas aceptar?" ++msgstr "%s está ofreciendo \"%s\". ¿Desea aceptar?" + + #: src/common/dcc.c:2592 + msgid "No active DCCs\n" +@@ -88,7 +89,7 @@ + #: src/common/ignore.c:132 src/common/ignore.c:136 src/common/ignore.c:140 + #: src/common/ignore.c:144 + msgid "YES " +-msgstr "SÍ " ++msgstr "SÍ " + + #: src/common/ignore.c:122 src/common/ignore.c:126 src/common/ignore.c:130 + #: src/common/ignore.c:134 src/common/ignore.c:138 src/common/ignore.c:142 +@@ -126,7 +127,7 @@ + + #: src/common/outbound.c:1730 + msgid "I need /bin/sh to run!\n" +-msgstr "¡Se necesita /bin/sh para poder ejecutarse!\n" ++msgstr "¡Necesito /bin/sh para poder ejecutarme!\n" + + #: src/common/outbound.c:2100 + msgid "Commands Available:" +@@ -142,7 +143,7 @@ + + #: src/common/outbound.c:2141 + msgid "Type /HELP for more information, or /HELP -l" +-msgstr "Escriba /HELP para obtener más información, ó /HELP -l" ++msgstr "Escriba /HELP para obtener más información, o /HELP -l" + + #: src/common/outbound.c:2216 + #, c-format +@@ -165,22 +166,21 @@ + #: src/common/outbound.c:3390 + msgid "ALLCHAN , sends a command to all channels you're in" + msgstr "" +-"ALLCHAN , envía una orden a todos los canales a los que se ha unido" ++"ALLCHAN , envía una orden a todos los canales en los que se encuentra" + + #: src/common/outbound.c:3392 + msgid "ALLCHANL , sends a command to all channels you're in" + msgstr "" +-"ALLCHAN , envía una orden a todos los canales a los que se ha unido" ++"ALLCHAN , envía una orden a todos los canales en los que se encuentra" + + #: src/common/outbound.c:3394 + msgid "ALLSERV , sends a command to all servers you're in" + msgstr "" +-"ALLSERV , envía una orden a todos los servidores a los que se ha " +-"conectado" ++"ALLSERV , envía una orden a todos los servidores en los que se encuentra" + + #: src/common/outbound.c:3395 + msgid "AWAY [], sets you away" +-msgstr "AWAY [], establece su ausencia" ++msgstr "AWAY [], lo marca como ausente" + + #: src/common/outbound.c:3397 + msgid "" +@@ -188,7 +188,7 @@ + "channel. If they are already on the channel this doesn't kick them (needs " + "chanop)" + msgstr "" +-"BAN [], banea a todos aquellos que concuerden con la " ++"BAN [], veta a todos aquellos que concuerden con la " + "máscara del canal actual. Si ya están en el canal esto no les expulsa (es " + "necesario ser operador del canal)" + +@@ -200,11 +200,15 @@ + "CHANOPT COLORPASTE ON|OFF - Toggle color paste\n" + "CHANOPT BEEP ON|OFF - Toggle beep on message" + msgstr "" ++"Establece opciones para cada canal\n" ++"CHANOPT CONFMODE ON|OFF - Cambia a modo conferencia (mostrar mensajes de " ++"entrar/marchar)" ++"CHANOPT COLORPASTE ON|OFF - Cambia el pegado de colores\n" ++"CHANOPT BEEP ON|OFF - Camibia el pitar ante mensajes" + + #: src/common/outbound.c:3405 +-#, fuzzy + msgid "CLEAR [ALL|HISTORY], Clears the current text window or command history" +-msgstr "CLEAR, Limpia la ventana de texto actual" ++msgstr "CLEAR [ALL|HISTORY], Limpia la ventana de texto o historial de órdenes actual" + + #: src/common/outbound.c:3406 + msgid "CLOSE, Closes the current window/tab" +@@ -249,7 +253,7 @@ + "DCC PCHAT - ofrece el DCC CHAT usando modo " + "pasivo\n" + "DCC CLOSE - ejemplo:\n" +-" /dcc close send juanperez archivo.tar.gz" ++" /dcc close send juanperez archivo.tar.gz" + + #: src/common/outbound.c:3427 + msgid "" +@@ -276,7 +280,7 @@ + "DEVOICE , removes voice status from the nick on the current channel " + "(needs chanop)" + msgstr "" +-"DEVOICE , quita el estado de voz del apodo en el canal actual " ++"DEVOICE , quita el estado de voz al apodo en el canal actual " + "(necesita ser operador del canal)" + + #: src/common/outbound.c:3434 +@@ -296,25 +300,25 @@ + "EXEC [-o] , runs the command. If -o flag is used then output is " + "sent to current channel, else is printed to current text box" + msgstr "" +-"EXEC [-o] , ejecuta la orden. Si se usa la bandera -o entonces la " ++"EXEC [-o] , ejecuta la orden. Si se usa la opción -o entonces la " + "salida es enviada al canal actual, si no, se imprime en la caja de texto " + "actual" + + #: src/common/outbound.c:3441 + msgid "EXECCONT, sends the process SIGCONT" +-msgstr "EXECCONT, envía al proceso la señal de continuar" ++msgstr "EXECCONT, envía SIGCONT (señal de continuar) al proceso" + + #: src/common/outbound.c:3444 + msgid "" + "EXECKILL [-9], kills a running exec in the current session. If -9 is given " + "the process is SIGKILL'ed" + msgstr "" +-"EXECKILL [-9], mata un ejecutable corriendo en la sesión actual. Si de " +-"indica -9 el proceso es matado por la fuerza" ++"EXECKILL [-9], mata un ejecutable corriendo en la sesión actual. Si se " ++"indica -9 el proceso es matado con SIGKILL (por la fuerza)" + + #: src/common/outbound.c:3446 + msgid "EXECSTOP, sends the process SIGSTOP" +-msgstr "EXECSTOP, envía al proceso la señal de detenerse" ++msgstr "EXECSTOP, envía al proceso SIGSTOP (señal de detenerse)" + + #: src/common/outbound.c:3447 + msgid "EXECWRITE, sends data to the processes stdin" +@@ -332,7 +336,7 @@ + + #: src/common/outbound.c:3457 + msgid "GHOST , Kills a ghosted nickname" +-msgstr "GHOST , desconecta un nick fantasma" ++msgstr "GHOST , mata un nick fantasma" + + #: src/common/outbound.c:3462 + msgid "HOP , gives chanhalf-op status to the nick (needs chanop)" +@@ -342,7 +346,7 @@ + + #: src/common/outbound.c:3463 + msgid "ID , identifies yourself to nickserv" +-msgstr "ID , identificación de nickserv" ++msgstr "ID , lo indentifica ante nickserv" + + #: src/common/outbound.c:3465 + msgid "" +@@ -381,7 +385,7 @@ + "KICKBAN , bans then kicks the nick from the current channel (needs " + "chanop)" + msgstr "" +-"KICKBAN , banea y luego expulsa al apodo del canal actual (necesita " ++"KICKBAN , veta y luego expulsa al apodo del canal actual (necesita " + "ser operador del canal)" + + #: src/common/outbound.c:3480 +@@ -414,8 +418,8 @@ + "ME , sends the action to the current channel (actions are written in " + "the 3rd person, like /me jumps)" + msgstr "" +-"ME , envía la acción al canal actual (las acciones están escritas en " +-"tercera persona del inglés, como /me jumps)" ++"ME , envía la acción al canal actual (las acciones se escriben en " ++"tercera persona, ej. /me salta)" + + #: src/common/outbound.c:3494 + msgid "" +@@ -455,16 +459,16 @@ + "NOTICE , sends a notice. Notices are a type of " + "message that should be auto reacted to" + msgstr "" +-"NOTICE , envía una noticia. Las noticias son una " +-"especie de mensaje que debería ser auto publicado" ++"NOTICE , envía una noticia. Las noticias son un " ++"tipo de mensaje ante el cual se debería reaccionar automáticamente" + + #: src/common/outbound.c:3510 +-#, fuzzy + msgid "" + "NOTIFY [-n network1[,network2,...]] [], displays your notify list or " + "adds someone to it" + msgstr "" +-"NOTIFY [], lista su lista de notificaciones o agrega a alguien a ella" ++"NOTIFY [-n network1[,network2,...]] [], muestra su lista de " ++"notificaciones o agrega alguien a ella" + + #: src/common/outbound.c:3512 + msgid "OP , gives chanop status to the nick (needs chanop)" +@@ -480,13 +484,13 @@ + + #: src/common/outbound.c:3516 + msgid "PING , CTCP pings nick or channel" +-msgstr "PING , Envía pings CTCP al apodo o canal" ++msgstr "PING , envía pings CTCP al apodo o canal" + + #: src/common/outbound.c:3518 +-#, fuzzy + msgid "QUERY [-nofocus] , opens up a new privmsg window to someone" + msgstr "" +-"QUERY , abre una nueva ventana privada de mensajes hacia alguien" ++"QUERY [-nofocus] , abre una nueva ventana privada de mensajes hacia " ++"alguien" + + #: src/common/outbound.c:3520 + msgid "QUIT [], disconnects from the current server" +@@ -502,8 +506,8 @@ + "RECONNECT to reconnect to the current server or with /RECONNECT ALL to " + "reconnect to all the open servers" + msgstr "" +-"RECONNECT [-ssl] [] [] [], Puede ser llamado " +-"sólo como /RECONNECT para reconectarse al servidor actual o con /" ++"RECONNECT [-ssl] [] [] [], puede ser usado " ++"sólo como /RECONNECT para reconectarse al servidor actual o como /" + "RECONNECT_ALL para reconectarse a todos los servidores abiertos" + + #: src/common/outbound.c:3528 +@@ -512,8 +516,8 @@ + "to reconnect to the current server or with /RECONNECT ALL to reconnect to " + "all the open servers" + msgstr "" +-"RECONNECT [] [] [], Puede ser llamado sólo como /" +-"RECONNECT para reconectarse al servidor actual o con /RECONNECT ALL para " ++"RECONNECT [] [] [], puede ser usado sólo como /" ++"RECONNECT para reconectarse al servidor actual o como /RECONNECT ALL para " + "reconectarse a todos los servidores abiertos" + + #: src/common/outbound.c:3530 +@@ -526,7 +530,7 @@ + + #: src/common/outbound.c:3533 + msgid "SAY , sends the text to the object in the current window" +-msgstr "SAY , envía el texto hacia un objeto de la ventana actual" ++msgstr "SAY , envía el texto hacia el objeto de la ventana actual" + + #: src/common/outbound.c:3534 + msgid "SEND []" +@@ -535,19 +539,19 @@ + #: src/common/outbound.c:3537 + msgid "SERVCHAN [-ssl] , connects and joins a channel" + msgstr "" +-"SERVCHAN [-ssl] , Lo conecta y entra en un canal" ++"SERVCHAN [-ssl] , lo conecta y entra en un canal" + + #: src/common/outbound.c:3540 + msgid "SERVCHAN , connects and joins a channel" +-msgstr "SERVCHAN , Le conecta y entra en un canal" ++msgstr "SERVCHAN , lo conecta y entra en un canal" + + #: src/common/outbound.c:3544 + msgid "" + "SERVER [-ssl] [] [], connects to a server, the " + "default port is 6667 for normal connections, and 9999 for ssl connections" + msgstr "" +-"SERVER [-ssl] [] [], lo conecta al servidor, el " +-"puerto predeterminado es 6667 para conexiones normales y 9999 para " ++"SERVER [-ssl] [] [], lo conecta a un servidor, " ++"el puerto predeterminado es 6667 para conexiones normales y 9999 para " + "conexiones ssl" + + #: src/common/outbound.c:3547 +@@ -559,9 +563,8 @@ + "puerto predeterminado es 6667" + + #: src/common/outbound.c:3549 +-#, fuzzy + msgid "SET [-e] [-quiet] []" +-msgstr "SET [-quite] []" ++msgstr "SET [-e] [-quiet] []" + + #: src/common/outbound.c:3550 + msgid "SETCURSOR [-|+]" +@@ -571,13 +574,13 @@ + msgid "" + "TOPIC [], sets the topic if one is given, else shows the current topic" + msgstr "" +-"TOPIC [], Establece el asunto si se provee uno, si no, muestra el " ++"TOPIC [], establece el topic si se provee uno, si no, muestra el " + "topic actual" + + #: src/common/outbound.c:3557 + msgid "UNBAN [...], unbans the specified masks." + msgstr "" +-"UNBAN [...], reincorpora las máscaras especificadas." ++"UNBAN [...], quita el veto a las máscaras especificadas." + + #: src/common/outbound.c:3558 + msgid "UNIGNORE [QUIET]" +@@ -612,7 +615,7 @@ + msgid "" + "WALLCHOP , sends the message to all chanops on the current channel" + msgstr "" +-"WALLCHOP , envía el mensaje a todos los operadores del canal en el " ++"WALLCHOP , envía el mensaje a todos los operadores de canal en el " + "canal actual" + + #: src/common/outbound.c:3602 +@@ -647,11 +650,11 @@ + #: src/common/plugin.c:356 src/common/plugin.c:397 + msgid "No xchat_plugin_init symbol; is this really an xchat plugin?" + msgstr "" +-"No tiene el símbolo xchat_plugin_init. ¿Es de verdad una extensiçon de xchat?" ++"No tiene el símbolo xchat_plugin_init. ¿Es realmente una extensión de xchat?" + + #: src/common/server.c:627 + msgid "Are you sure this is a SSL capable server and port?\n" +-msgstr "¿Está seguro de que es un servidor y un puerto con SSL?\n" ++msgstr "¿Está seguro de que es un servidor y puerto que soporta SSL?\n" + + #: src/common/server.c:1018 + #, c-format +@@ -686,11 +689,11 @@ + + #: src/common/textevents.h:9 + msgid "%C22*%O$t$1 Banlist:%C19 $4%C20 $2%C21 $3" +-msgstr "%C22*%O$t$1 Lista de bans:%C19 $4%C20 $2%C21 $3" ++msgstr "%C22*%O$t$1 Lista de vetos:%C19 $4%C20 $2%C21 $3" + + #: src/common/textevents.h:12 + msgid "%C22*%O$tCannot join%C26 %B$1 %O(You are banned)." +-msgstr "%C22*%O$tNo puede entrar%C26 %B$1 %O(Estás baneado)." ++msgstr "%C22*%O$tNo puede entrar%C26 %B$1 %O(está vetado)." + + #: src/common/textevents.h:18 + msgid "%C22*%O$t$1 is now known as $2" +@@ -698,7 +701,7 @@ + + #: src/common/textevents.h:27 + msgid "%C22*%O$t$1 sets ban on $2" +-msgstr "%C22*%O$t$1 banea a $2" ++msgstr "%C22*%O$t$1 veta a $2" + + #: src/common/textevents.h:30 + msgid "%C22*%O$tChannel $1 created on $2" +@@ -706,11 +709,11 @@ + + #: src/common/textevents.h:33 + msgid "%C22*%O$t%C26$1%O removes channel half-operator status from%C26 $2" +-msgstr "%C22*%O$t%C26$1%O quita semi-OP a%C26 $2" ++msgstr "%C22*%O$t%C26$1%O quita el estado de semi-operador de canal a%C26 $2" + + #: src/common/textevents.h:36 + msgid "%C22*%O$t%C26$1%O removes channel operator status from%C26 $2" +-msgstr "%C22*%O$t%C26$1%O quita OP de a%C26 $2" ++msgstr "%C22*%O$t%C26$1%O quita el estado de semi-operador de canal a%C26 $2" + + #: src/common/textevents.h:39 + msgid "%C22*%O$t%C26$1%O removes voice from%C26 $2" +@@ -722,7 +725,7 @@ + + #: src/common/textevents.h:45 + msgid "%C22*%O$t%C26$1%O gives channel half-operator status to%C26 $2" +-msgstr "%C22*%O$t%C26$1%O da estado de semi-OP a%C26 $2" ++msgstr "%C22*%O$t%C26$1%O otorga estado de semi-operador de canal a%C26 $2" + + #: src/common/textevents.h:48 + msgid "%C22*%O$t$1 sets invite on $2" +@@ -730,19 +733,19 @@ + + #: src/common/textevents.h:51 + msgid "%UChannel Users Topic" +-msgstr "%UTema de los usuarios del canal" ++msgstr "%UCanal Nro. Usu Topic" + + #: src/common/textevents.h:57 + msgid "%C22*%O$t$1 sets mode $2$3 $4" +-msgstr "%C22*%O$t$1 establece modo $2$3 $4" ++msgstr "%C22*%O$t$1 establece el modo $2$3 $4" + + #: src/common/textevents.h:60 + msgid "%C22*%O$t%C22Channel $1 modes: $2" +-msgstr "%C22*%O$t%C22Canal $1 modos: $2" ++msgstr "%C22*%O$t%C22Modos del canal $1: $2" + + #: src/common/textevents.h:69 + msgid "%C22*%O$t%C26$1%O gives channel operator status to%C26 $2" +-msgstr "%C22*%O$t%C26$1%O da OP a%C26 $2" ++msgstr "%C22*%O$t%C26$1%O otorga estado de operador de canal a%C26 $2" + + #: src/common/textevents.h:72 + msgid "%C22*%O$t$1 removes exempt on $2" +@@ -750,31 +753,31 @@ + + #: src/common/textevents.h:75 + msgid "%C22*%O$t$1 removes invite on $2" +-msgstr "%C22*%O$t$1 quita invitación a $2" ++msgstr "%C22*%O$t$1 quita la invitación a $2" + + #: src/common/textevents.h:78 + msgid "%C22*%O$t$1 removes channel keyword" +-msgstr "%C22*%O$t$1 quita contraseña del canal" ++msgstr "%C22*%O$t$1 quita la contraseña del canal" + + #: src/common/textevents.h:81 + msgid "%C22*%O$t$1 removes user limit" +-msgstr "%C22*%O$t$1 quita límite de usuarios" ++msgstr "%C22*%O$t$1 quita el límite de usuarios" + + #: src/common/textevents.h:84 + msgid "%C22*%O$t$1 sets channel keyword to $2" +-msgstr "%C22*%O$t$1 establece contraseña del canal del canal como $2" ++msgstr "%C22*%O$t$1 establece la contraseña del canal del canal como $2" + + #: src/common/textevents.h:87 + msgid "%C22*%O$t$1 sets channel limit to $2" +-msgstr "%C22*%O$t$1 establece límite del canal a $2" ++msgstr "%C22*%O$t$1 establece el límite del canal a $2" + + #: src/common/textevents.h:90 + msgid "%C22*%O$t$1 removes ban on $2" +-msgstr "%C22*%O$t$1 quita veto a $2" ++msgstr "%C22*%O$t$1 quita el veto a $2" + + #: src/common/textevents.h:93 + msgid "%C22*%O$t%C26$1%O gives voice to%C26 $2" +-msgstr "%C22*%O$t%C26$1%O da voz a%C26 $2" ++msgstr "%C22*%O$t%C26$1%O otorga voz a%C26 $2" + + #: src/common/textevents.h:96 + msgid "%C22*%O$t%C22Connected. Now logging in..." +@@ -806,24 +809,23 @@ + + #: src/common/textevents.h:117 + msgid "%C22*%O$tReceived a CTCP Sound $1 from $2 (to $3)" +-msgstr "%C22*%O$tSe ha recibido un CTCP $1 de $2 (a $3)" ++msgstr "%C22*%O$tSe ha recibido un sonido CTCP $1 de $2 (a $3)" + + #: src/common/textevents.h:120 + msgid "%C22*%O$tDCC CHAT to %C26$1%O aborted." +-msgstr "%C22*%O$tCharla DCC para %C26$1%O abortada." ++msgstr "%C22*%O$tCharla DCC con %C26$1%O abortada." + + #: src/common/textevents.h:123 + msgid "%C22*%O$tDCC CHAT connection established to %C26$1 %C30[%O$2%C30]" +-msgstr "" +-"%C22*%O$tConexión para charla DCC establecida con %C26$1 %C30[%O$2%C30]" ++msgstr "%C22*%O$tConexión para charla DCC establecida con %C26$1 %C30[%O$2%C30]" + + #: src/common/textevents.h:126 + msgid "%C22*%O$tDCC CHAT to %C26$1%O lost ($4)." +-msgstr "%C22*%O$tCharla DCC con %C26$1%O perdida. $4." ++msgstr "%C22*%O$tCharla DCC con %C26$1%O perdida. ($4)." + + #: src/common/textevents.h:129 + msgid "%C22*%O$tReceived a DCC CHAT offer from $1" +-msgstr "%C22*%O$tSe ha recibido una oferta de charla DCC de $1" ++msgstr "%C22*%O$tSe ha recibido un ofrecimiento de charla DCC de $1" + + #: src/common/textevents.h:132 + msgid "%C22*%O$tOffering DCC CHAT to $1" +@@ -844,19 +846,19 @@ + #: src/common/textevents.h:144 + #, c-format + msgid "%C24,18 Type To/From Status Size Pos File " +-msgstr "%C24,18 Tipo De/Para Estado Tamaño Pos Archivo " ++msgstr "%C24,18 Tipo De/Para Estado Tamaño Pos Archivo " + + #: src/common/textevents.h:147 + msgid "" + "%C22*%O$tReceived a malformed DCC request from %C26$1%O.%010%C22*%O" + "$tContents of packet: $2" + msgstr "" +-"%C22*%O$tSe ha recibido una petición DCC errónea de %C26$1%O.%010%C22*%O" +-"$tContenidos del paquete: $2" ++"%C22*%O$tSe ha recibido una petición DCC mal formada de %C26$1%O.%010%C22*%O" ++"$tContenido del paquete: $2" + + #: src/common/textevents.h:150 + msgid "%C22*%O$tOffering%C26 $1%O to%C26 $2" +-msgstr "%C22*%O$tOfrece%C26 $1%O a%C26 $2" ++msgstr "%C22*%O$tOfreciendo%C26 $1%O a%C26 $2" + + #: src/common/textevents.h:153 + msgid "%C22*%O$tNo such DCC offer." +@@ -864,13 +866,13 @@ + + #: src/common/textevents.h:156 + msgid "%C22*%O$tDCC RECV%C26 $2%O to%C26 $1%O aborted." +-msgstr "-%C10-%C11-%O$tRecepción DCC %C11$2%O para %C11$1%O abortado." ++msgstr "%C22*%O$tRecepción DCC%C26 $2%O para%C26 $1%O abortada." + + #: src/common/textevents.h:159 + msgid "" + "%C22*%O$tDCC RECV%C26 $1%O from%C26 $3%O complete %C30[%C26$4%O cps%C30]%O." + msgstr "" +-"%C22*%O$tRecepción DCC %C26 $1%O de%C26 $3%O completada %C30[%C26$4%O cps%" ++"%C22*%O$tRecepción DCC%C26 $1%O de%C26 $3%O completada %C30[%C26$4%O cps%" + "C30]%O." + + #: src/common/textevents.h:162 +@@ -880,7 +882,7 @@ + + #: src/common/textevents.h:165 + msgid "%C22*%O$tDCC RECV%C26 $1%O from%C26 $3%O failed ($4)." +-msgstr "%C22*%O$tRecepción DCC %C26 $1%O de%C26 $3%O falló ($4)." ++msgstr "%C22*%O$tFalló la recepción DCC %C26 $1%O de%C26 $3%O ($4)." + + #: src/common/textevents.h:168 + msgid "%C22*%O$tDCC RECV: Cannot open $1 for writing ($2)." +@@ -895,7 +897,7 @@ + + #: src/common/textevents.h:174 + msgid "%C22*%O$t%C26$1 %Ohas requested to resume%C26 $2 %Cfrom%C26 $3%C." +-msgstr "%C22*%O$t%C26$1 %Oha pedido retomar %C26 $2 %Cde%C26 $3%C." ++msgstr "%C22*%O$t%C26$1 %Oha pedido retomar%C26 $2 %Cde%C26 $3%C." + + #: src/common/textevents.h:177 + msgid "%C22*%O$tDCC SEND%C26 $2%O to%C26 $1%O aborted." +@@ -922,7 +924,7 @@ + + #: src/common/textevents.h:192 + msgid "%C22*%O$tDCC $1%C26 $2 %Oto%C26 $3 %Cstalled - aborting." +-msgstr "%C22*%O$tDCC $1%C26 $2 %Opara%C26 $3 %Cse paró - abortando." ++msgstr "%C22*%O$tDCC $1%C26 $2 %Ocon%C26 $3 %Cse atascó - abortando." + + #: src/common/textevents.h:195 + msgid "%C22*%O$tDCC $1%C26 $2 %Oto%C26 $3 %Otimed out - aborting." +@@ -947,7 +949,7 @@ + + #: src/common/textevents.h:213 + msgid "Ignore on %C26$1%O changed." +-msgstr "Ignorar a %C26$1%O cambió" ++msgstr "Se ha cambiado %C26$1%O en la lista de ignorados." + + #: src/common/textevents.h:216 + #, c-format +@@ -957,11 +959,11 @@ + #: src/common/textevents.h:219 + #, c-format + msgid "%C24,18 Hostmask PRIV NOTI CHAN CTCP DCC INVI UNIG " +-msgstr "%C24,18 Máscara PRIV NOTI CAN CTCP DCC INVI UNIG " ++msgstr "%C24,18 Máscara PRIV NOTI CANL CTCP DCC INVI UNIG " + + #: src/common/textevents.h:222 + msgid "%O%C26$1%O removed from ignore list." +-msgstr "%O%C26$1%O se quitó de la lista de ignorados." ++msgstr "%O%C26$1%O ha sido quitado de la lista de ignorados." + + #: src/common/textevents.h:225 + msgid " Ignore list is empty." +@@ -982,7 +984,7 @@ + + #: src/common/textevents.h:237 + msgid "%C22*%O$tCannot join%C26 %B$1 %O(Requires keyword)." +-msgstr "%C22*%O$tNo pudo entrar%C26 %B$1 %O(Requiere palabra clave)." ++msgstr "%C22*%O$tNo se pudo entrar a%C26 %B$1 %O(Requiere contraseña)." + + #: src/common/textevents.h:240 + msgid "%C21*%O$t%C21$1 has kicked $2 from $3 ($4%O%C21)" +@@ -990,15 +992,15 @@ + + #: src/common/textevents.h:243 + msgid "%C22*%O$tYou have been killed by $1 ($2%O%C22)" +-msgstr "%C22*%O$tHa sido eliminado por $1 ($2%O%C22)" ++msgstr "%C22*%O$tHa sido matado por $1 ($2%O%C22)" + + #: src/common/textevents.h:252 + msgid "%C22*%O$t%C22MOTD Skipped." +-msgstr "%C22*%O$t%C22Se saltó el mensaje del día (MOTD)." ++msgstr "%C22*%O$t%C22Se salteó el mensaje del día (MOTD)." + + #: src/common/textevents.h:255 + msgid "%C22*%O$t$1 already in use. Retrying with $2..." +-msgstr "%C22*%O$t$1 ya está en uso. Reintentando con $2.." ++msgstr "%C22*%O$t$1 ya está en uso. Reintentando con $2..." + + #: src/common/textevents.h:258 + msgid "%C22*%O$tNickname already in use. Use /NICK to try another." +@@ -1019,21 +1021,19 @@ + + #: src/common/textevents.h:276 + msgid "%C24,18 %B Notify List " +-msgstr "%C24,18 %B Lista de notificación " ++msgstr "%C24,18 %B Lista de notificación " + + #: src/common/textevents.h:279 + msgid "%C22*%O$t$1 users in notify list." + msgstr "%C22*%O$t$1 usuarios en la lista de notificaciones." + + #: src/common/textevents.h:282 +-#, fuzzy + msgid "%C22*%O$tNotify: $1 is offline ($3)." +-msgstr "-%C10-%C11-%O$tNotificación: $1 se ha desconectado ($2)." ++msgstr "%C22*%O$tNotificación: $1 se ha desconectado ($3)." + + #: src/common/textevents.h:285 +-#, fuzzy + msgid "%C22*%O$tNotify: $1 is online ($3)." +-msgstr "%C22*%O$tNotificación: $1 se ha conectado ($2)." ++msgstr "%C22*%O$tNotificación: $1 se ha conectado ($3)." + + #: src/common/textevents.h:291 + msgid "%C23*%O$t%C23$1 (%O%C23$2) has left $3" +@@ -1045,7 +1045,7 @@ + + #: src/common/textevents.h:297 + msgid "%C22*%O$tPing reply from $1: $2 second(s)" +-msgstr "%C22*%O$tRespuesta al Ping de $1 : $2 segundo(s)" ++msgstr "%C22*%O$tRespuesta de $1 al ping: $2 segundo(s)" + + #: src/common/textevents.h:300 + msgid "%C22*%O$tNo ping reply for $1 seconds, disconnecting." +@@ -1081,7 +1081,7 @@ + + #: src/common/textevents.h:339 + msgid "%C22*%O$tStopped previous connection attempt (pid=$1)" +-msgstr "%C22*%O$tSe paró el anterior intento de conexión (pid=$1)" ++msgstr "%C22*%O$tSe detuvo el anterior intento de conexión (pid=$1)" + + #: src/common/textevents.h:342 + msgid "%C29*%O$t%C29Topic for $1%C %C29is: $2" +@@ -1139,17 +1139,15 @@ + + #: src/common/textevents.h:384 + msgid "%C22*%O$t%C28[%O$1%C28] %Oreal user@host%C27 $2%O, real IP%C27 $3" +-msgstr "" +-"%C22*%O$t%C28[%O$1%C28] %Overdadero usuario@equipo%C27 $2%O, verdadera IP%" +-"C27 $3" ++msgstr "%C22*%O$t%C28[%O$1%C28] %Ousuario real@equipo%C27 $2%O, IP real%C27 $3" + + #: src/common/textevents.h:393 + msgid "%C19*%O$t%C19Now talking on $2" +-msgstr "%C19*%O$t%C19Has entrado en $2" ++msgstr "%C19*%O$t%C19Ha entrado en $2" + + #: src/common/textevents.h:396 + msgid "%C23*$tYou have been kicked from $2 by $3 ($4%O%C23)" +-msgstr "%C23*$tSe le ha echado de $2 por $3 ($4%O%C23)" ++msgstr "%C23*$t$3 lo ha echado de $2 ($4%O%C23)" + + #: src/common/textevents.h:399 + #, c-format +@@ -1162,7 +1160,7 @@ + + #: src/common/textevents.h:405 + msgid "%C22*%O$tYou've invited%C26 $1%O to%C26 $2%O (%C26$3%O)" +-msgstr "%C22*%O$tEstá invitando%C26 $1%O a%C26 $2%O (%C26$3%O)" ++msgstr "%C22*%O$tHa invitado a%C26 $1%O a%C26 $2%O (%C26$3%O)" + + #: src/common/textevents.h:411 + msgid "%C22*%O$tYou are now known as $2" +@@ -1171,12 +1169,12 @@ + #: src/common/text.c:61 + #, c-format + msgid "**** ENDING LOGGING AT %s\n" +-msgstr "**** FINALIZANDO CONEXIÓN EN %s\n" ++msgstr "**** FINALIZANDO REGISTRO EN %s\n" + + #: src/common/text.c:263 + #, c-format + msgid "**** BEGIN LOGGING AT %s\n" +-msgstr "**** INICIANDO CONEXIÓN EN %s\n" ++msgstr "**** INICIANDO REGISTRO EN %s\n" + + #: src/common/text.c:282 + #, c-format +@@ -1185,15 +1183,15 @@ + " permissions on %s/xchatlogs" + msgstr "" + "* No se pudo abrir el archivo de registro para escritura. Compruebe los\n" +-" persisos de %s/xchatlogs" ++" permisos de %s/xchatlogs" + + #: src/common/text.c:618 + msgid "Left message" +-msgstr "Mensaje de ausencia" ++msgstr "Mensaje a la izquierda" + + #: src/common/text.c:619 + msgid "Right message" +-msgstr "El mensaje" ++msgstr "Mensaje a la derecha" + + #: src/common/text.c:623 + msgid "The nick of the joining person" +@@ -1228,7 +1226,7 @@ + + #: src/common/text.c:631 src/common/text.c:637 + msgid "Mode char" +-msgstr "Modo carácter" ++msgstr "Carácter de modo" + + #: src/common/text.c:636 + msgid "The text" +@@ -1236,7 +1234,7 @@ + + #: src/common/text.c:638 src/common/text.c:711 + msgid "Identified text" +-msgstr "Texto de info" ++msgstr "Texto identificado" + + #: src/common/text.c:643 src/common/text.c:699 src/common/text.c:705 + #: src/common/text.c:710 +@@ -1272,7 +1270,7 @@ + + #: src/common/text.c:664 src/common/text.c:720 + msgid "The person being kicked" +-msgstr "La persona que esta siendo expulsada" ++msgstr "La persona que está siendo expulsada" + + #: src/common/text.c:665 src/common/text.c:672 src/common/text.c:676 + #: src/common/text.c:681 src/common/text.c:721 src/common/text.c:729 +@@ -1290,7 +1288,7 @@ + + #: src/common/text.c:677 src/common/text.c:683 + msgid "The time" +-msgstr "El tiempo" ++msgstr "La hora" + + #: src/common/text.c:682 + msgid "The creator" +@@ -1314,11 +1312,11 @@ + + #: src/common/text.c:694 + msgid "The time in x.x format (see below)" +-msgstr "El tiempo en el formato x.x (vea debajo)" ++msgstr "Segundos en el formato x.x (vea debajo)" + + #: src/common/text.c:704 src/common/text.c:747 + msgid "The Channel it's going to" +-msgstr "El canal se va a" ++msgstr "El canal al que va" + + #: src/common/text.c:734 + msgid "The sound" +@@ -1334,11 +1332,11 @@ + + #: src/common/text.c:751 + msgid "The nick of the person who set the key" +-msgstr "El apodo de la persona que establece la clave" ++msgstr "El apodo de la persona que establece la contraseña" + + #: src/common/text.c:752 + msgid "The key" +-msgstr "La clave" ++msgstr "La contraseña" + + #: src/common/text.c:756 + msgid "The nick of the person who set the limit" +@@ -1346,35 +1344,35 @@ + + #: src/common/text.c:757 + msgid "The limit" +-msgstr "El limite" ++msgstr "El límite" + + #: src/common/text.c:761 + msgid "The nick of the person who did the op'ing" +-msgstr "El apodo de la persona que otorgó los permisos de operador" ++msgstr "El apodo de la persona que otorgó el permiso de operador" + + #: src/common/text.c:762 + msgid "The nick of the person who has been op'ed" +-msgstr "El apodo de la persona que ha sido convertida en operador" ++msgstr "El apodo de la persona que recibió el permiso de operador" + + #: src/common/text.c:766 + msgid "The nick of the person who has been halfop'ed" +-msgstr "El apodo de la persona que ha sido convertida en semi-operador" ++msgstr "El apodo de la persona que recibió el permiso de semi-operador" + + #: src/common/text.c:767 + msgid "The nick of the person who did the halfop'ing" +-msgstr "El apodo de la persona que otorgó los permisos de semi-operador" ++msgstr "El apodo de la persona que otorgó el permiso de semi-operador" + + #: src/common/text.c:771 + msgid "The nick of the person who did the voice'ing" +-msgstr "El apodo de la persona que otorgó los permisos de voz" ++msgstr "El apodo de la persona que otorgó el permiso de voz" + + #: src/common/text.c:772 + msgid "The nick of the person who has been voice'ed" +-msgstr "El apodo de la persona que ha sido convertida en voz" ++msgstr "El apodo de la persona que recibió el permiso de voz" + + #: src/common/text.c:776 + msgid "The nick of the person who did the banning" +-msgstr "El apodo de la persona que realizó el veto (banning)" ++msgstr "El apodo de la persona que realizó el veto" + + #: src/common/text.c:777 src/common/text.c:804 + msgid "The ban mask" +@@ -1382,7 +1380,7 @@ + + #: src/common/text.c:781 + msgid "The nick who removed the key" +-msgstr "El apodo de quien ha eliminado la clave" ++msgstr "El apodo de quien ha eliminado la contraseña" + + #: src/common/text.c:785 + msgid "The nick who removed the limit" +@@ -1390,28 +1388,28 @@ + + #: src/common/text.c:789 + msgid "The nick of the person of did the deop'ing" +-msgstr "El apodo de la persona que ha revocado los permisos de operador" ++msgstr "El apodo de la persona que ha quitado el permiso de operador" + + #: src/common/text.c:790 + msgid "The nick of the person who has been deop'ed" +-msgstr "El apodo de la persona a la que se la quitado el permiso de operador" ++msgstr "El apodo de la persona a la que se han quitado el permiso de operador" + + #: src/common/text.c:793 + msgid "The nick of the person of did the dehalfop'ing" +-msgstr "El apodo de la persona que ha removido los permisos de semi-operador" ++msgstr "El apodo de la persona que ha removido el permiso de semi-operador" + + #: src/common/text.c:794 + msgid "The nick of the person who has been dehalfop'ed" + msgstr "" +-"El apodo de la persona a la que se la quitado los permisos de semi-operador" ++"El apodo de la persona a la que se ha quitado el permiso de semi-operador" + + #: src/common/text.c:798 + msgid "The nick of the person of did the devoice'ing" +-msgstr "El apodo de la persona que ha revocado lo permisos de voz" ++msgstr "El apodo de la persona a la que se ha quitado el permiso de voz" + + #: src/common/text.c:799 + msgid "The nick of the person who has been devoice'ed" +-msgstr "El apodo de la persona a la que se la quitado los permisos de voz" ++msgstr "El apodo de la persona a la que se ha quitado el permiso de voz" + + #: src/common/text.c:803 + msgid "The nick of the person of did the unban'ing" +@@ -1423,11 +1421,11 @@ + + #: src/common/text.c:809 src/common/text.c:814 + msgid "The exempt mask" +-msgstr "La máscara de excención" ++msgstr "La máscara de excepción" + + #: src/common/text.c:813 + msgid "The nick of the person removed the exempt" +-msgstr "El apodo de la persona que ha quitado la exención" ++msgstr "El apodo de la persona que ha quitado la excepción" + + #: src/common/text.c:818 + msgid "The nick of the person who did the invite" +@@ -1439,7 +1437,7 @@ + + #: src/common/text.c:823 + msgid "The nick of the person removed the invite" +-msgstr "El apodo de la persona que ha removido la invitación" ++msgstr "El apodo de la persona que ha quitado la invitación" + + #: src/common/text.c:828 + msgid "The nick of the person setting the mode" +@@ -1455,7 +1453,7 @@ + + #: src/common/text.c:831 + msgid "The channel it's being set on" +-msgstr "El canal esta siendo configurado" ++msgstr "El canal que está siendo configurado" + + #: src/common/text.c:836 + msgid "Username" +@@ -1467,7 +1465,7 @@ + + #: src/common/text.c:843 + msgid "Channel Membership/\"is an IRC operator\"" +-msgstr "Membresía de canal/es un operador de IRC" ++msgstr "Membresía de canal/\"es un operador de IRC\"" + + #: src/common/text.c:848 + msgid "Server Information" +@@ -1479,7 +1477,7 @@ + + #: src/common/text.c:859 + msgid "Signon time" +-msgstr "Tiempo de conexión" ++msgstr "Hora de conexión" + + #: src/common/text.c:864 + msgid "Away reason" +@@ -1496,11 +1494,11 @@ + + #: src/common/text.c:885 + msgid "Real user@host" +-msgstr "Verdadero usuario@equipo" ++msgstr "usuario real@equipo" + + #: src/common/text.c:886 + msgid "Real IP" +-msgstr "Verdadera IP" ++msgstr "IP real" + + #: src/common/text.c:891 src/common/text.c:900 src/common/text.c:906 + #: src/common/text.c:936 src/common/text.c:1090 +@@ -1531,7 +1529,7 @@ + + #: src/common/text.c:912 + msgid "Nick being tried" +-msgstr "Intentando usar el apodo" ++msgstr "Apodo intentando usarse" + + #: src/common/text.c:921 src/common/text.c:1057 + msgid "IP" +@@ -1644,7 +1642,7 @@ + "Loading default." + msgstr "" + "Error al analizar el evento %s.\n" +-"Cargando el predeterminado" ++"Cargando el predeterminado." + + #: src/common/text.c:1819 + #, c-format +@@ -1657,7 +1655,7 @@ + + #: src/common/util.c:296 + msgid "Remote host closed socket" +-msgstr "Puerto cerrado en el equipo remoto" ++msgstr "Conexión cerrada por el equipo remoto" + + #: src/common/util.c:301 + msgid "Connection refused" +@@ -1681,7 +1679,7 @@ + + #: src/common/util.c:839 + msgid "Ascension Island" +-msgstr "Islas Cocos" ++msgstr "Isla Ascensión" + + #: src/common/util.c:840 + msgid "Andorra" +@@ -1753,7 +1751,7 @@ + + #: src/common/util.c:857 + msgid "Aland Islands" +-msgstr "Islas Malvinas" ++msgstr "Islas de Aland" + + #: src/common/util.c:858 + msgid "Azerbaijan" +@@ -1849,7 +1847,7 @@ + + #: src/common/util.c:881 + msgid "Democratic Republic of Congo" +-msgstr "" ++msgstr "República Democrática del Congo" + + #: src/common/util.c:882 + msgid "Central African Republic" +@@ -1889,7 +1887,7 @@ + + #: src/common/util.c:891 + msgid "Internic Commercial" +-msgstr "Anuncio de Internic" ++msgstr "Internic Comercial" + + #: src/common/util.c:892 + msgid "Costa Rica" +@@ -1977,7 +1975,7 @@ + + #: src/common/util.c:913 + msgid "European Union" +-msgstr "" ++msgstr "Unión Europea" + + #: src/common/util.c:914 + msgid "Finland" +@@ -2121,7 +2119,7 @@ + + #: src/common/util.c:949 + msgid "Isle of Man" +-msgstr "" ++msgstr "Isla de Man" + + #: src/common/util.c:950 + msgid "India" +@@ -2157,7 +2155,7 @@ + + #: src/common/util.c:958 + msgid "Jersey" +-msgstr "" ++msgstr "Jersey" + + #: src/common/util.c:959 + msgid "Jamaica" +@@ -2481,7 +2479,7 @@ + + #: src/common/util.c:1039 + msgid "Old School ARPAnet" +-msgstr "Vieja escuela de ARPAnet" ++msgstr "Antigua ARPAnet" + + #: src/common/util.c:1040 + msgid "Russian Federation" +@@ -2649,7 +2647,7 @@ + + #: src/common/util.c:1082 + msgid "US Minor Outlying Islands" +-msgstr "Islas Americanas Menores del Exterior" ++msgstr "Islas ultramarinas de Estados Unidos" + + #: src/common/util.c:1083 + msgid "United States of America" +@@ -2743,15 +2741,15 @@ + + #: src/common/xchat.c:769 + msgid "Operator Actions" +-msgstr "Opciones" ++msgstr "Acciones del operador" + + #: src/common/xchat.c:771 src/common/xchat.c:862 + msgid "Give Ops" +-msgstr "Dar Op" ++msgstr "Dar permiso de operador" + + #: src/common/xchat.c:772 src/common/xchat.c:863 + msgid "Take Ops" +-msgstr "Tomar Op" ++msgstr "Quitar permiso de operador" + + #: src/common/xchat.c:773 src/common/xchat.c:866 + msgid "Give Voice" +@@ -2759,11 +2757,11 @@ + + #: src/common/xchat.c:774 src/common/xchat.c:867 + msgid "Take Voice" +-msgstr "Tomar voz" ++msgstr "Quitar voz" + + #: src/common/xchat.c:776 src/common/xchat.c:871 + msgid "Kick/Ban" +-msgstr "Echar/Banear" ++msgstr "Echar/Vetar" + + #: src/common/xchat.c:777 src/common/xchat.c:872 src/common/xchat.c:921 + msgid "Kick" +@@ -2774,17 +2772,17 @@ + #: src/common/xchat.c:874 src/common/xchat.c:875 src/common/xchat.c:876 + #: src/common/xchat.c:877 src/common/xchat.c:920 + msgid "Ban" +-msgstr "Banear" ++msgstr "Vetar" + + #: src/common/xchat.c:783 src/common/xchat.c:784 src/common/xchat.c:785 + #: src/common/xchat.c:786 src/common/xchat.c:878 src/common/xchat.c:879 + #: src/common/xchat.c:880 src/common/xchat.c:881 + msgid "KickBan" +-msgstr "Echar y banear" ++msgstr "Echar y vetar" + + #: src/common/xchat.c:849 + msgid "Direct client-to-client" +-msgstr "Cliente a cliente directamente" ++msgstr "Directo cliente a cliente" + + #: src/common/xchat.c:850 + msgid "Send File" +@@ -2828,7 +2826,7 @@ + + #: src/common/xchat.c:860 + msgid "Kill this user" +-msgstr "Eliminar a este usuario" ++msgstr "Matar a este usuario" + + #: src/common/xchat.c:861 + msgid "Mode" +@@ -2836,11 +2834,11 @@ + + #: src/common/xchat.c:864 + msgid "Give Half-Ops" +-msgstr "Dar Op" ++msgstr "Dar permiso de semi-operador" + + #: src/common/xchat.c:865 + msgid "Take Half-Ops" +-msgstr "Tomar Op" ++msgstr "Quitar permiso de semi-operador" + + #: src/common/xchat.c:868 + msgid "Ignore" +@@ -2876,7 +2874,7 @@ + + #: src/common/xchat.c:887 + msgid "UserHost" +-msgstr "Máquina del usuario" ++msgstr "Equipo del usuario" + + #: src/common/xchat.c:888 + msgid "External" +@@ -2904,7 +2902,7 @@ + + #: src/common/xchat.c:906 + msgid "Server Links" +-msgstr "Enlaces del servidor" ++msgstr "Enlaces entre servidor" + + #: src/common/xchat.c:907 + msgid "Ping Server" +@@ -2920,20 +2918,20 @@ + + #: src/common/xchat.c:919 + msgid "DeOp" +-msgstr "Quitar Op" ++msgstr "NoOp" + + #: src/common/xchat.c:922 + msgid "bye" +-msgstr "adiós" ++msgstr "Adiós" + + #: src/common/xchat.c:923 + #, c-format + msgid "Enter reason to kick %s:" +-msgstr "Introduzca razón para expulsar a %s:" ++msgstr "Introduzca razón para echar a %s:" + + #: src/common/xchat.c:924 + msgid "Sendfile" +-msgstr "Enviar archivo" ++msgstr "EnvArch" + + #: src/common/xchat.c:925 + msgid "Dialog" +@@ -2957,28 +2955,25 @@ + msgstr "No se ha podido conectar al bus de la sesión" + + #: src/common/dbus/dbus-client.c:85 +-#, fuzzy + msgid "Failed to complete NameHasOwner" +-msgstr "Imposible completar comando" ++msgstr "Imposible completar NameHasOwner" + + #: src/common/dbus/dbus-client.c:106 +-#, fuzzy + msgid "Failed to complete Command" + msgstr "Imposible completar comando" + + #: src/common/dbus/dbus-plugin.c:30 +-#, fuzzy + msgid "remote access" +-msgstr "acceso remoto xchat" ++msgstr "acceso remoto" + + #: src/common/dbus/dbus-plugin.c:31 + msgid "plugin for remote access using DBUS" + msgstr "complemento para acceso remoto usando DBUS" + + #: src/common/dbus/dbus-plugin.c:897 +-#, fuzzy, c-format ++#, c-format + msgid "Couldn't connect to session bus: %s\n" +-msgstr "No se ha podido conectar al bus de la sesión : %s\n" ++msgstr "No se ha podido conectar al bus de la sesión: %s\n" + + #: src/common/dbus/dbus-plugin.c:914 + #, c-format +@@ -3000,7 +2995,7 @@ + + #: src/fe-gtk/ascii.c:135 + msgid "Character Chart" +-msgstr "Lista de caracteres" ++msgstr "Cartilla de caracteres" + + #: src/fe-gtk/banlist.c:113 src/fe-gtk/chanlist.c:301 + msgid "Not connected." +@@ -3008,12 +3003,12 @@ + + #: src/fe-gtk/banlist.c:154 src/fe-gtk/banlist.c:257 + msgid "You must select some bans." +-msgstr "Debe seleccionar algún baneado" ++msgstr "Debe seleccionar algún veto." + + #: src/fe-gtk/banlist.c:206 + #, c-format + msgid "Are you sure you want to remove all bans in %s?" +-msgstr "" ++msgstr "¿Está seguro que desea borrar todos los vetos en %s?" + + #: src/fe-gtk/banlist.c:272 src/fe-gtk/ignoregui.c:175 + msgid "Mask" +@@ -3029,12 +3024,12 @@ + + #: src/fe-gtk/banlist.c:317 + msgid "You can only open the Ban List window while in a channel tab." +-msgstr "Sólo puedes abrir la lista de bans mientras hay pestaña de canal." ++msgstr "Sólo puede abrir la ventana de la lista de vetos mientras está en una pestaña de canal." + + #: src/fe-gtk/banlist.c:321 + #, c-format + msgid "XChat: Ban List (%s)" +-msgstr "XChat: Lista de bans (%s)" ++msgstr "XChat: Lista de vetos (%s)" + + #: src/fe-gtk/banlist.c:337 + msgid "Unban" +@@ -3080,7 +3075,7 @@ + + #: src/fe-gtk/chanlist.c:673 + msgid "Pattern Match:" +-msgstr "Filtro de exp. regular:" ++msgstr "Coincidir con patrón:" + + #: src/fe-gtk/chanlist.c:675 + msgid "Regex Match:" +@@ -3113,7 +3108,7 @@ + + #: src/fe-gtk/dccgui.c:496 + msgid "That file is not resumable." +-msgstr "Ese archivo no se puede retomar" ++msgstr "Ese archivo no se puede retomar." + + #: src/fe-gtk/dccgui.c:500 + #, c-format +@@ -3132,16 +3127,15 @@ + "possible." + msgstr "" + "El archivo en el directorio de descarga es más grande que el archivo " +-"afrecido. No es posible retomar." ++"ofrecido. No es posible retomar." + + #: src/fe-gtk/dccgui.c:511 + msgid "Cannot resume the same file from two people." + msgstr "No se puede retomar el mismo archivo de dos personas." + + #: src/fe-gtk/dccgui.c:740 +-#, fuzzy + msgid "XChat: Uploads and Downloads" +-msgstr "XChat: Uploads y Downloads" ++msgstr "XChat: Subidas y bajadas" + + #: src/fe-gtk/dccgui.c:756 src/fe-gtk/dccgui.c:993 src/fe-gtk/notifygui.c:138 + msgid "Status" +@@ -3153,7 +3147,7 @@ + + #: src/fe-gtk/dccgui.c:762 + msgid "ETA" +-msgstr "Tiempo" ++msgstr "T. Estimado" + + #: src/fe-gtk/dccgui.c:784 src/fe-gtk/menu.c:1363 + msgid "Both" +@@ -3161,11 +3155,11 @@ + + #: src/fe-gtk/dccgui.c:790 + msgid "Uploads" +-msgstr "Subidos" ++msgstr "Subidas" + + #: src/fe-gtk/dccgui.c:796 + msgid "Downloads" +-msgstr "Descargas" ++msgstr "Bajadas" + + #: src/fe-gtk/dccgui.c:801 + msgid "Details" +@@ -3176,9 +3170,8 @@ + msgstr "Archivo:" + + #: src/fe-gtk/dccgui.c:813 +-#, fuzzy + msgid "Address:" +-msgstr "Dirección" ++msgstr "Dirección:" + + #: src/fe-gtk/dccgui.c:819 src/fe-gtk/dccgui.c:1014 + msgid "Abort" +@@ -3198,7 +3191,7 @@ + + #: src/fe-gtk/dccgui.c:982 + msgid "XChat: DCC Chat List" +-msgstr "XChat: Lista de conversación DCC" ++msgstr "XChat: Lista de charlas DCC" + + #: src/fe-gtk/dccgui.c:995 + msgid "Recv" +@@ -3266,15 +3259,15 @@ + + #: src/fe-gtk/fe-gtk.c:123 + msgid "Use a different config directory" +-msgstr "usar un directorio de configuración diferente" ++msgstr "Usar un directorio de configuración diferente" + + #: src/fe-gtk/fe-gtk.c:124 + msgid "Don't auto load any plugins" +-msgstr "No activar automáticamente ningún complemento" ++msgstr "No cargar automáticamente ningún complemento" + + #: src/fe-gtk/fe-gtk.c:125 + msgid "Show plugin auto-load directory" +-msgstr "Mostrar complemento autocargar directorio" ++msgstr "Mostrar directorio de autocarga de complementos" + + #: src/fe-gtk/fe-gtk.c:126 + msgid "Show user config directory" +@@ -3286,7 +3279,7 @@ + + #: src/fe-gtk/fe-gtk.c:128 + msgid "Open URL in an existing XChat" +-msgstr "" ++msgstr "Abrir una URL en un XChat existente" + + #: src/fe-gtk/fe-gtk.c:129 + msgid "Show version information" +@@ -3299,13 +3292,13 @@ + "\n" + "%s" + msgstr "" +-"ha fallado la apertura de la tipografía:\n" ++"Ha fallado la apertura de la tipografía:\n" + "\n" + "%s" + + #: src/fe-gtk/fe-gtk.c:608 + msgid "Search buffer is empty.\n" +-msgstr "El buffer de búsqueda esta vacio.\n" ++msgstr "El buffer de búsqueda está vacío.\n" + + #: src/fe-gtk/fe-gtk.c:704 + #, c-format +@@ -3315,7 +3308,7 @@ + #: src/fe-gtk/fe-gtk.c:705 + #, c-format + msgid "Network send queue: %d bytes" +-msgstr "" ++msgstr "Cola de envío de la red: %d bytes" + + #: src/fe-gtk/fkeys.c:159 + msgid "" +@@ -3326,13 +3319,13 @@ + "it is possible to run more than one command. If you want a \\ in the actual " + "text run then enter \\\\" + msgstr "" +-"La acción ^BRun Command^B ejecuta los datos en Data 1 como si hubiesen sido " +-"escritos en la caja de texto donde presionó la secuencia de teclas. No " +-"obstante puede contener comandos de texto (los cuales serán enviados al " +-"canal o persona), o comandos de usuario. Cuando se ejecuten todos los " +-"caracteres en Data 1 son usados para delimitar comandos separados de ese " +-"modo es posible ejecutar más de un comando. Si quiere un \\ en el texto de " +-"ejecución actual ejecutelo y luego presione Intro \\\\" ++"La acción Run Command ejecuta los datos en Dato 1 como si hubiesen sido " ++"escritos en la caja de texto donde presionó la secuencia de teclas. Por lo " ++"tanto puede contener texto (el cual será enviado al canal o persona), " ++"comandos o comandos de usuario. Cuando se ejecuta todos los caracteres " ++"\\n en Dato 1 son usados para separar comandos, de ese modo es posible " ++"ejecutar más de un comando. Si quiere un \\ en el texto de a ejecutar, " ++"utilice \\\\" + + #: src/fe-gtk/fkeys.c:161 + msgid "" +@@ -3340,9 +3333,9 @@ + "to the page you want to switch to. If Data 2 is set to anything then the " + "switch will be relative to the current position" + msgstr "" +-"El comando ^BChange Page^B cambia entre las paginas del bloc de notas. " +-"Inicialice Data 1 con la página a la que desea cambiar. Si Data 2 está " +-"configurado para cualquiera entonces el cambio será relativo a la posición " ++"El comando Change Page cambia entre las paginas del bloc de notas. " ++"Inicialice Dato 1 con la página a la que desea cambiar. Si Dato 2 está " ++"configurado a cualquier valor, entonces el cambio será relativo a la posición " + "actual." + + #: src/fe-gtk/fkeys.c:163 +@@ -3350,44 +3343,43 @@ + "The Insert in Buffer command will insert the contents of Data 1 into the " + "entry where the key sequence was pressed at the current cursor position" + msgstr "" +-"El comando ^BInsert in Buffer^B insertará el contenido de Data 1 en la " +-"entrada donde la secuencia de teclas fué presionada en la posición actual " +-"del cursor" ++"El comando Insert in Buffer insertará el contenido de Dato 1 en la " ++"la caja de texto donde la secuencia de teclas fué presionada en la posición " ++"actual del cursor" + + #: src/fe-gtk/fkeys.c:165 + msgid "" + "The Scroll Page command scrolls the text widget up or down one page or one " + "line. Set Data 1 to either Up, Down, +1 or -1." + msgstr "" +-"El comando ^BScroll Page^B desplaza el control de texto hacia arriba o abajo " +-"un página. Si Data 1 esta configurado como cualquiera la página se " +-"desplazará hacia arriba, sino se desplazará hacia abajo." ++"El comando Scroll Page desplaza el control de texto hacia arriba o abajo " ++"una página o una línea. Configure Dato 1 a Up, Down, +1 ó -1." + + #: src/fe-gtk/fkeys.c:167 + msgid "" + "The Set Buffer command sets the entry where the key sequence was entered to " + "the contents of Data 1" + msgstr "" +-"El comando ^BSet Buffer^B establece la entrada donde la secuencia de teclas " +-"fué introducida a los contenidos de Data 1" ++"El comando Set Buffer establece la caja de texto donde la secuencia de " ++"teclas fué introducida a los contenidos de Dato 1" + + #: src/fe-gtk/fkeys.c:169 + msgid "" + "The Last Command command sets the entry to contain the last command entered " + "- the same as pressing up in a shell" + msgstr "" +-"El comando ^BLast Command^B establece la entrada para contener el último " +-"comando ingresado al igual que presionar la tecla arriba en la línea de " +-"comandos" ++"El comando Last Command cambia la caja de texto para contener el " ++"último comando ingresado. De modo idéntico que presionar la tecla arriba en " ++"la línea de comandos" + + #: src/fe-gtk/fkeys.c:171 + msgid "" + "The Next Command command sets the entry to contain the next command entered " + "- the same as pressing down in a shell" + msgstr "" +-"El comando ^BNext Command^B establece la entrada para que contenga el " +-"siguiente comando ingresado al igual que al presionar la tecla abajo en la " +-"línea de comandos" ++"El comando Last Command cambia la caja de texto para contener el " ++"último comando ingresado. De modo idéntico que presionar la tecla abajo en " ++"la línea de comandos" + + #: src/fe-gtk/fkeys.c:173 + msgid "" +@@ -3396,7 +3388,7 @@ + "last nick, not the next" + msgstr "" + "Este comando cambia el texto en la entrada para completar un apodo " +-"incompleto o un comando. Si Data 1 esta establecido entonces al presionar " ++"incompleto o un comando. Si Dato 1 está configurado entonces al presionar " + "dos veces la tecla TAB sobre una cadena seleccionará el último apodo, no el " + "siguiente." + +@@ -3405,9 +3397,9 @@ + "This command scrolls up and down through the list of nicks. If Data 1 is set " + "to anything it will scroll up, else it scrolls down" + msgstr "" +-"Este comando desplaza hacia arriba y abajo la lista de apodos. Si Data 1 " +-"esta establecido a cualquiera entonces se desplazará hacia arriba, sino se " +-"desplazará hacia abajo" ++"Este comando desplaza hacia arriba y abajo la lista de apodos. Si Dato 1 " ++"está configurado a cualquier valor entonces se desplazará hacia arriba, " ++"sino se desplazará hacia abajo" + + #: src/fe-gtk/fkeys.c:177 + msgid "" +@@ -3419,7 +3411,7 @@ + + #: src/fe-gtk/fkeys.c:179 + msgid "This command moves the front tab left by one" +-msgstr "Este comando mueve una vez la solapa superior hacia la izquierda" ++msgstr "Este comando mueve una posición la solapa superior hacia la izquierda" + + #: src/fe-gtk/fkeys.c:181 + msgid "This command moves the front tab right by one" +@@ -3431,7 +3423,7 @@ + + #: src/fe-gtk/fkeys.c:185 + msgid "This command moves the current tab family to the right" +-msgstr "Este comando mueve la familia actual de solapas hacia la izquierda" ++msgstr "Este comando mueve la familia actual de solapas hacia la derecha" + + #: src/fe-gtk/fkeys.c:187 + msgid "Push input line into history but doesn't send to server" +@@ -3481,11 +3473,11 @@ + + #: src/fe-gtk/fkeys.c:807 + msgid "Data 1" +-msgstr "Data 1" ++msgstr "Dato 1" + + #: src/fe-gtk/fkeys.c:810 + msgid "Data 2" +-msgstr "Data 2" ++msgstr "Dato 2" + + #: src/fe-gtk/fkeys.c:852 + msgid "Error opening keys config file\n" +@@ -3497,7 +3489,7 @@ + "Unknown keyname %s in key bindings config file\n" + "Load aborted, please fix %s/keybindings.conf\n" + msgstr "" +-"Nombre de tecla desconocido %s en el archivo de configuración de " ++"Nombre de tecla %s desconocido en el archivo de configuración de " + "combinaciones de teclas\n" + "Carga abortada, por favor corrija %s/.xchat/keybindings.conf\n" + +@@ -3507,7 +3499,7 @@ + "Unknown action %s in key bindings config file\n" + "Load aborted, Please fix %s/keybindings\n" + msgstr "" +-"Acción desconocida %s en el archivo de configuración de combinaciones de " ++"Acción %s desconocida en el archivo de configuración de combinaciones de " + "teclas\n" + "Carga abortada, por favor corrija %s/.xchat/keybindings\n" + +@@ -3536,7 +3528,7 @@ + + #: src/fe-gtk/gtkutil.c:131 + msgid "Cannot write to that file." +-msgstr "No se puede escribir hacia ese archivo." ++msgstr "No se puede escribir en ese archivo." + + #: src/fe-gtk/gtkutil.c:133 + msgid "Cannot read that file." +@@ -3637,7 +3629,7 @@ + + #: src/fe-gtk/joind.c:179 + msgid "_Join this channel:" +-msgstr "Entrar a este canal:" ++msgstr "_Entrar a este canal:" + + #: src/fe-gtk/joind.c:191 + msgid "If you know the name of the channel you want to join, enter it here." +@@ -3645,7 +3637,7 @@ + + #: src/fe-gtk/joind.c:198 + msgid "O_pen the Channel-List window." +-msgstr "Abrir la ventana de lista de canales." ++msgstr "_Abrir la ventana de lista de canales." + + #: src/fe-gtk/joind.c:205 + msgid "Retrieving the Channel-List may take a minute or two." +@@ -3653,7 +3645,7 @@ + + #: src/fe-gtk/joind.c:212 + msgid "_Always show this dialog after connecting." +-msgstr "Siempre mostrar este diálogo después de la conexión." ++msgstr "_Siempre mostrar este diálogo después de la conexión." + + #: src/fe-gtk/maingui.c:466 + msgid "Dialog with" +@@ -3662,7 +3654,7 @@ + #: src/fe-gtk/maingui.c:744 + #, c-format + msgid "Topic for %s is: %s" +-msgstr "Topic para %s es: %s" ++msgstr "El topic para %s es: %s" + + #: src/fe-gtk/maingui.c:749 + msgid "No topic is set" +@@ -3727,7 +3719,7 @@ + + #: src/fe-gtk/maingui.c:1434 src/fe-gtk/menu.c:1786 + msgid "_Detach Tab" +-msgstr "Separar solapa" ++msgstr "_Separar solapa" + + #: src/fe-gtk/maingui.c:1673 + msgid "Some file transfers still active, quit xchat?" +@@ -3744,7 +3736,7 @@ + + #: src/fe-gtk/maingui.c:1970 + msgid "No outside messages" +-msgstr "No hay mensajes externos" ++msgstr "Sin mensajes externos" + + #: src/fe-gtk/maingui.c:1971 + msgid "Secret" +@@ -3764,7 +3756,7 @@ + + #: src/fe-gtk/maingui.c:1977 + msgid "Keyword" +-msgstr "Palabra clave" ++msgstr "Contraseña" + + #: src/fe-gtk/maingui.c:1989 + msgid "User Limit" +@@ -3834,7 +3826,7 @@ + "clicking in a blank part of the main text area." + msgstr "" + "La barra de menú ahora está oculta. Puede mostrarla otra vez presionando F9 " +-"o pulsando el botón derecho en una parte en blanco de área de texto " ++"o pulsando el botón derecho en una parte en blanco del área de texto " + "principal." + + #: src/fe-gtk/menu.c:755 +@@ -3847,11 +3839,11 @@ + + #: src/fe-gtk/menu.c:816 + msgid "Part Channel" +-msgstr "Invitar Canal" ++msgstr "Salir del canal" + + #: src/fe-gtk/menu.c:818 + msgid "Cycle Channel" +-msgstr "Ciclar canal" ++msgstr "Salir y volver a entrar al canal" + + #: src/fe-gtk/menu.c:841 + msgid "XChat: User menu" +@@ -3863,10 +3855,9 @@ + + #: src/fe-gtk/menu.c:1045 + msgid "Retrieve channel list..." +-msgstr "Recuperar lista de canales..." ++msgstr "Obtener lista de canales..." + + #: src/fe-gtk/menu.c:1113 +-#, fuzzy + msgid "" + "User Commands - Special codes:\n" + "\n" +@@ -3890,7 +3881,8 @@ + "Órdenes de usuario - Códigos especiales:\n" + "\n" + "%c = canal actual\n" +-"%m = información de la máquina\n" ++"%e = nombre de la red actual\n" ++"%m = información del equipo\n" + "%n = su apodo\n" + "%t = hora/fecha\n" + "%v = versión de xchat\n" +@@ -3899,14 +3891,13 @@ + "&2 = palabra 2 hasta el fin de línea\n" + "&3 = palabra 3 hasta el fin de línea\n" + "\n" +-"ejemplo:\n" +-"/cmd john hello\n" ++"ej:\n" ++"/cmd juan hola\n" + "\n" +-"%2 podría ser \"john\"\n" +-"&2 podría ser \"john hello\"." ++"%2 sería \"juan\"\n" ++"&2 sería \"juan hola\"." + + #: src/fe-gtk/menu.c:1129 +-#, fuzzy + msgid "" + "Userlist Buttons - Special codes:\n" + "\n" +@@ -3923,14 +3914,14 @@ + "\n" + "%a = todos los apodos seleccionados\n" + "%c = canal actual\n" ++"%e = nombre de la red actual\n" + "%h = nombre del equipo del apodo seleccionado\n" +-"%m = información de la maquina\n" ++"%m = información del equipo\n" + "%n = su apodo\n" + "%s = apodo seleccionado\n" + "%t = hora/fecha\n" + + #: src/fe-gtk/menu.c:1139 +-#, fuzzy + msgid "" + "Dialog Buttons - Special codes:\n" + "\n" +@@ -3943,18 +3934,18 @@ + "%s = selected nick\n" + "%t = time/date\n" + msgstr "" +-"Botones del dialogo - Códigos especiales:\n" ++"Botones de diálogo - Códigos especiales:\n" + "\n" + "%a = todos los apodos seleccionados\n" + "%c = canal actual\n" ++"%e = nombre de la red actual\n" + "%h = nombre del equipo del apodo seleccionado\n" +-"%m = información de la maquina\n" ++"%m = información del equipo\n" + "%n = su apodo\n" + "%s = apodo seleccionado\n" + "%t = hora/fecha\n" + + #: src/fe-gtk/menu.c:1149 +-#, fuzzy + msgid "" + "CTCP Replies - Special codes:\n" + "\n" +@@ -3972,7 +3963,8 @@ + "Respuestas CTCP -Códigos especiales:\n" + "\n" + "%d = datos (el ctcp completo)\n" +-"%m = información de la máquina\n" ++"%e = nombre de la red actual\n" ++"%m = información del equipo\n" + "%s = apodo de quien envió el ctcp\n" + "%t = hora/fecha\n" + "%2 = palabra 2\n" +@@ -3996,9 +3988,9 @@ + "\n" + "%s = La cadena de la URL\n" + "\n" +-"Poner un ! enfrente del comando indica \n" +-"que debería ser enviado hacia un shell \n" +-"en vez de hacia XChat" ++"Poner un ! enfrente del comando indica\n" ++"que debería ser enviado hacia un shell\n" ++"en lugar de hacia XChat" + + #: src/fe-gtk/menu.c:1169 + msgid "XChat: User Defined Commands" +@@ -4038,7 +4030,7 @@ + + #: src/fe-gtk/menu.c:1322 + msgid "Network Li_st..." +-msgstr "Li_sta de servidores" ++msgstr "Li_sta de redes..." + + #: src/fe-gtk/menu.c:1325 + msgid "_New" +@@ -4062,7 +4054,7 @@ + + #: src/fe-gtk/menu.c:1334 src/fe-gtk/menu.c:1336 + msgid "_Load Plugin or Script..." +-msgstr "Cargar guión o complemento..." ++msgstr "Cargar guión o comp_lemento..." + + #: src/fe-gtk/menu.c:1344 + msgid "_Quit" +@@ -4074,19 +4066,19 @@ + + #: src/fe-gtk/menu.c:1348 + msgid "_Menubar" +-msgstr "Barra del menú" ++msgstr "Barra del _menú" + + #: src/fe-gtk/menu.c:1349 + msgid "_Topicbar" +-msgstr "Barra del topic" ++msgstr "Barra del _topic" + + #: src/fe-gtk/menu.c:1350 + msgid "_Userlist Buttons" +-msgstr "Botones de lista de usuarios" ++msgstr "Botones de lista de _usuarios" + + #: src/fe-gtk/menu.c:1351 + msgid "M_ode Buttons" +-msgstr "Botones del modo del canal" ++msgstr "Botones del _modo del canal" + + #: src/fe-gtk/menu.c:1353 + msgid "_Layout" +@@ -4094,19 +4086,19 @@ + + #: src/fe-gtk/menu.c:1355 + msgid "_Tabs" +-msgstr "Solapas" ++msgstr "_Solapas" + + #: src/fe-gtk/menu.c:1356 + msgid "T_ree" +-msgstr "Árbol" ++msgstr "_Árbol" + + #: src/fe-gtk/menu.c:1358 + msgid "_Network Meters" +-msgstr "_Medidor de red" ++msgstr "_Medidores de red" + + #: src/fe-gtk/menu.c:1360 + msgid "Off" +-msgstr "Apagar" ++msgstr "Apagado" + + #: src/fe-gtk/menu.c:1361 + msgid "Graph" +@@ -4126,15 +4118,15 @@ + + #: src/fe-gtk/menu.c:1372 + msgid "Marked Away" +-msgstr "Ausencia marcada" ++msgstr "Marcado como ausente" + + #: src/fe-gtk/menu.c:1374 + msgid "_Usermenu" +-msgstr "Menú de usuario" ++msgstr "Menú de _usuario" + + #: src/fe-gtk/menu.c:1376 + msgid "S_ettings" +-msgstr "C_onfiguración" ++msgstr "_Configuración" + + #: src/fe-gtk/menu.c:1377 + msgid "_Preferences" +@@ -4142,11 +4134,11 @@ + + #: src/fe-gtk/menu.c:1379 + msgid "Advanced" +-msgstr "Avanzado" ++msgstr "_Avanzado" + + #: src/fe-gtk/menu.c:1380 + msgid "Auto Replace..." +-msgstr "Reemplazar automáticamente.." ++msgstr "Auto-reemplazo..." + + #: src/fe-gtk/menu.c:1381 + msgid "CTCP Replies..." +@@ -4162,7 +4154,7 @@ + + #: src/fe-gtk/menu.c:1384 + msgid "Text Events..." +-msgstr "Textos de eventos..." ++msgstr "Eventos de texto..." + + #: src/fe-gtk/menu.c:1385 + msgid "URL Handlers..." +@@ -4174,19 +4166,19 @@ + + #: src/fe-gtk/menu.c:1387 + msgid "Userlist Buttons..." +-msgstr "Botones de lista de usuarios..." ++msgstr "Botones de la lista de usuarios..." + + #: src/fe-gtk/menu.c:1388 + msgid "Userlist Popup..." +-msgstr "Ventana de lista de usuarios..." ++msgstr "Ventana emergente de la lista de usuarios..." + + #: src/fe-gtk/menu.c:1391 + msgid "_Window" +-msgstr "_Ventana" ++msgstr "V_entana" + + #: src/fe-gtk/menu.c:1392 + msgid "Ban List..." +-msgstr "Lista de bans..." ++msgstr "Lista de vetos..." + + #: src/fe-gtk/menu.c:1393 + msgid "Channel List..." +@@ -4194,7 +4186,7 @@ + + #: src/fe-gtk/menu.c:1394 + msgid "Character Chart..." +-msgstr "Lista de caracteres..." ++msgstr "Cartilla de caracteres..." + + #: src/fe-gtk/menu.c:1395 + msgid "Direct Chat..." +@@ -4226,7 +4218,7 @@ + + #: src/fe-gtk/menu.c:1403 + msgid "Reset Marker Line" +-msgstr "Reiniciar la línea de marcado" ++msgstr "Reiniciar el señalador" + + #: src/fe-gtk/menu.c:1404 + msgid "C_lear Text" +@@ -4254,7 +4246,7 @@ + + #: src/fe-gtk/menu.c:1791 + msgid "_Attach Window" +-msgstr "_Ventana adjunta" ++msgstr "_Adjuntar ventana" + + #: src/fe-gtk/menu.c:1792 + msgid "_Close Window" +@@ -4277,9 +4269,9 @@ + msgstr "Nunca" + + #: src/fe-gtk/notifygui.c:204 src/fe-gtk/notifygui.c:229 +-#, fuzzy, c-format ++#, c-format + msgid "%d minutes ago" +-msgstr "hace %u minutos" ++msgstr "hace %d minutos" + + #: src/fe-gtk/notifygui.c:219 + msgid "Online" +@@ -4291,11 +4283,11 @@ + + #: src/fe-gtk/notifygui.c:376 + msgid "Notify on these networks:" +-msgstr "" ++msgstr "Notificar en estas redes:" + + #: src/fe-gtk/notifygui.c:387 + msgid "Comma separated list of networks is accepted." +-msgstr "" ++msgstr "Se acepta una lista separada por comas de redes." + + #: src/fe-gtk/notifygui.c:407 + msgid "XChat: Notify List" +@@ -4307,7 +4299,7 @@ + + #: src/fe-gtk/notifygui.c:428 + msgid "Open Dialog" +-msgstr "Abrir privado" ++msgstr "Abrir diálogo" + + #: src/fe-gtk/plugingui.c:76 src/fe-gtk/textgui.c:421 + msgid "Description" +@@ -4319,15 +4311,15 @@ + + #: src/fe-gtk/plugingui.c:223 + msgid "XChat: Plugins and Scripts" +-msgstr "XChat: complementos y guiones" ++msgstr "XChat: Complementos y guiones" + + #: src/fe-gtk/plugingui.c:229 + msgid "_Load..." +-msgstr "_Cargar..." ++msgstr "C_argar..." + + #: src/fe-gtk/plugingui.c:232 + msgid "_UnLoad" +-msgstr "_Desactivar" ++msgstr "_Eliminar" + + #: src/fe-gtk/plugingui.c:236 src/fe-gtk/search.c:144 + msgid "_Close" +@@ -4349,7 +4341,7 @@ + + #: src/fe-gtk/search.c:57 + msgid "The window you opened this Search for doesn't exist anymore." +-msgstr "La ventana que ha abierto esta búsqueda no existe mas." ++msgstr "La ventana para la que ha abierto esta búsqueda no existe mas." + + #: src/fe-gtk/search.c:65 + msgid "Search hit end, not found." +@@ -4365,15 +4357,15 @@ + + #: src/fe-gtk/search.c:127 + msgid "_Match case" +-msgstr "" ++msgstr "Coincidir _mayúsculas y minúsculas" + + #: src/fe-gtk/search.c:133 + msgid "Search _backwards" +-msgstr "" ++msgstr "Buscar hacia _atrás" + + #: src/fe-gtk/search.c:146 + msgid "_Find" +-msgstr "Buscar" ++msgstr "_Buscar" + + #: src/fe-gtk/servlistgui.c:170 src/fe-gtk/servlistgui.c:269 + msgid "New Network" +@@ -4386,7 +4378,7 @@ + + #: src/fe-gtk/servlistgui.c:678 + msgid "User name and Real name cannot be left blank." +-msgstr "EL nombre y el nombre real no pueden estar en blanco." ++msgstr "EL nombre de usuario y el nombre real no pueden estar en blanco." + + #: src/fe-gtk/servlistgui.c:978 + #, c-format +@@ -4416,7 +4408,7 @@ + + #: src/fe-gtk/servlistgui.c:1020 src/fe-gtk/servlistgui.c:1252 + msgid "_Nick name:" +-msgstr "Apodo:" ++msgstr "A_podo:" + + #: src/fe-gtk/servlistgui.c:1024 src/fe-gtk/servlistgui.c:1259 + msgid "Second choice:" +@@ -4436,7 +4428,7 @@ + + #: src/fe-gtk/servlistgui.c:1041 + msgid "Auto connect to this network at startup" +-msgstr "Conectarse automáticamente al inicio" ++msgstr "Conectarse a esta red automáticamente al inicio" + + #: src/fe-gtk/servlistgui.c:1043 + msgid "Use a proxy server" +@@ -4448,11 +4440,11 @@ + + #: src/fe-gtk/servlistgui.c:1050 + msgid "Accept invalid SSL certificate" +-msgstr "Aceptar certificado inválido" ++msgstr "Aceptar certificado SSL inválido" + + #: src/fe-gtk/servlistgui.c:1056 + msgid "C_hannels to join:" +-msgstr "Canales a los que unirse:" ++msgstr "Ca_nales a los que unirse:" + + #: src/fe-gtk/servlistgui.c:1058 + msgid "Channels to join, separated by commas, but not spaces!" +@@ -4469,12 +4461,12 @@ + "to execute." + msgstr "" + "Orden extra para ejecutar después de conectarse. Si necesita más de una, " +-"póngala como «LOAD -e », donde es un archivo " +-"de texto con ordenes a ejecutar." ++"especifique «LOAD -e », donde es un archivo " ++"de texto con órdenes a ejecutar." + + #: src/fe-gtk/servlistgui.c:1066 + msgid "Nickserv password:" +-msgstr "Contraseña del «nickserv»:" ++msgstr "Contraseña de «nickserv»:" + + #: src/fe-gtk/servlistgui.c:1068 + msgid "" +@@ -4502,7 +4494,7 @@ + + #: src/fe-gtk/servlistgui.c:1230 + msgid "XChat: Network List" +-msgstr "XChat: Lista de servidores" ++msgstr "XChat: Lista de redes" + + #: src/fe-gtk/servlistgui.c:1242 + msgid "User Information" +@@ -4518,7 +4510,7 @@ + + #: src/fe-gtk/servlistgui.c:1367 + msgid "Skip network list on startup" +-msgstr "No mostrar servidores al inicio" ++msgstr "Saltear lista de redes al inicio" + + #: src/fe-gtk/servlistgui.c:1399 + msgid "_Edit..." +@@ -4526,7 +4518,7 @@ + + #: src/fe-gtk/servlistgui.c:1406 + msgid "_Sort" +-msgstr "Ordenar" ++msgstr "Or_denar" + + #: src/fe-gtk/servlistgui.c:1430 + msgid "C_onnect" +@@ -4546,7 +4538,7 @@ + + #: src/fe-gtk/setup.c:103 + msgid "Scrollback lines:" +-msgstr "Líneas de desplazamiento:" ++msgstr "Líneas almacenadas:" + + #: src/fe-gtk/setup.c:104 + msgid "Colored nick names" +@@ -4562,7 +4554,7 @@ + + #: src/fe-gtk/setup.c:107 + msgid "Make nick names right-justified" +-msgstr "Justificar los apodos a la derecha." ++msgstr "Alinear los apodos a la derecha." + + #: src/fe-gtk/setup.c:108 + msgid "Transparent background" +@@ -4578,7 +4570,7 @@ + + #: src/fe-gtk/setup.c:111 + msgid "Transparency Settings" +-msgstr "Configuración de trasparencia" ++msgstr "Configuraciones de trasparencia" + + #: src/fe-gtk/setup.c:112 + msgid "Red:" +@@ -4598,11 +4590,11 @@ + + #: src/fe-gtk/setup.c:117 + msgid "Enable time stamps" +-msgstr "Habilitar marcas de hora" ++msgstr "Habilitar marcas de fecha/hora" + + #: src/fe-gtk/setup.c:118 + msgid "Time stamp format:" +-msgstr "Formato de inserción de hora:" ++msgstr "Formato de inserción de fecha/hora:" + + #: src/fe-gtk/setup.c:119 src/fe-gtk/setup.c:339 + msgid "See strftime manpage for details." +@@ -4614,7 +4606,7 @@ + + #: src/fe-gtk/setup.c:127 + msgid "Last-spoke order" +-msgstr "" ++msgstr "Quien habló último" + + #: src/fe-gtk/setup.c:133 src/fe-gtk/setup.c:1515 + msgid "Input box" +@@ -4630,20 +4622,19 @@ + + #: src/fe-gtk/setup.c:139 + msgid "Nick Completion" +-msgstr "Completar apodo" ++msgstr "Completar apodos" + + #: src/fe-gtk/setup.c:140 + msgid "Automatic nick completion (without TAB key)" +-msgstr "Completar apodo automáticamente (sin TAB)" ++msgstr "Completar apodos automáticamente (sin TAB)" + + #: src/fe-gtk/setup.c:142 + msgid "Nick completion suffix:" + msgstr "Sufijo al completar el apodo:" + + #: src/fe-gtk/setup.c:143 +-#, fuzzy + msgid "Nick completion sorted:" +-msgstr "Sufijo al completar el apodo:" ++msgstr "Completar apodos en orden:" + + #: src/fe-gtk/setup.c:146 + msgid "Input Box Codes" +@@ -4680,7 +4671,7 @@ + + #: src/fe-gtk/setup.c:176 + msgid "Show hostnames in user list" +-msgstr "Mostrar equipos en la lista de usuarios" ++msgstr "Mostrar nombres de equipo en la lista de usuarios" + + #: src/fe-gtk/setup.c:178 + msgid "Resizable user list" +@@ -4692,7 +4683,7 @@ + + #: src/fe-gtk/setup.c:181 + msgid "Away tracking" +-msgstr "Razón de ausencia" ++msgstr "Seguimiento de ausencias" + + #: src/fe-gtk/setup.c:182 + msgid "Track the Away status of users and mark them in a different color" +@@ -4756,9 +4747,8 @@ + msgstr "Abrir solapa extra para las noticias del servidor" + + #: src/fe-gtk/setup.c:225 +-#, fuzzy + msgid "Open a new tab when you receive a private message" +-msgstr "Abrir solapa extra para los mensajes del servidor" ++msgstr "Abrir solapa extra al recibir un mensaje privado" + + #: src/fe-gtk/setup.c:226 + msgid "Sort tabs in alphabetical order" +@@ -4770,15 +4760,15 @@ + + #: src/fe-gtk/setup.c:228 + msgid "Focus new tabs:" +-msgstr "Centrarse en nuevas solapas:" ++msgstr "Dar foco a solapas nuevas:" + + #: src/fe-gtk/setup.c:229 + msgid "Show tabs at:" +-msgstr "Mostrar solapas:" ++msgstr "Mostrar solapas en:" + + #: src/fe-gtk/setup.c:230 + msgid "Shorten tab labels to:" +-msgstr "Reducir solapas a:" ++msgstr "Reducir etiquetas de solapas a:" + + #: src/fe-gtk/setup.c:230 + msgid "letters." +@@ -4786,7 +4776,7 @@ + + #: src/fe-gtk/setup.c:232 + msgid "Tabs or Windows" +-msgstr "Ventana del último registro" ++msgstr "Solapas o ventanas" + + #: src/fe-gtk/setup.c:233 + msgid "Open channels in:" +@@ -4802,7 +4792,7 @@ + + #: src/fe-gtk/setup.c:235 + msgid "Open DCC, Ignore, Notify etc, in tabs or windows?" +-msgstr "¿Abrir DCC, Ignorar, Notificar etc en solapas o en ventanas?" ++msgstr "¿Abrir DCC, Ignorar, Notificar, etc. en solapas o en ventanas?" + + #: src/fe-gtk/setup.c:242 + msgid "No" +@@ -4849,12 +4839,12 @@ + "Asks the IRC server for your real address. Use this if you have a 192.168.*." + "* address!" + msgstr "" +-"Pregunta su dirección real al servidor IRC. ¡Úselo si tiene una dirección " +-"del tipo 192.168.*.*!" ++"Pregunta su dirección real al servidor IRC. Úse esto si tiene una dirección " ++"del tipo 192.168.*.* ó 10.*.*.*" + + #: src/fe-gtk/setup.c:259 + msgid "DCC IP address:" +-msgstr "Dirección IP DCC:" ++msgstr "Dirección IP para DCC:" + + #: src/fe-gtk/setup.c:260 + msgid "Claim you are at this address when offering files." +@@ -4870,11 +4860,11 @@ + + #: src/fe-gtk/setup.c:263 + msgid "!Leave ports at zero for full range." +-msgstr "!Dejar los puertos en cero para el rango completo." ++msgstr "!Deje los puertos en cero para usar el rango completo." + + #: src/fe-gtk/setup.c:265 + msgid "Maximum File Transfer Speeds (bytes per second)" +-msgstr "Velocidad máxima de transferencia de archivos (B/s)" ++msgstr "Velocidad máxima de transferencia de archivos (bytes por segundo)" + + #: src/fe-gtk/setup.c:266 + msgid "One upload:" +@@ -4882,7 +4872,7 @@ + + #: src/fe-gtk/setup.c:267 src/fe-gtk/setup.c:269 + msgid "Maximum speed for one transfer" +-msgstr "Velocidad máx. para una transferencia" ++msgstr "Velocidad máxima para una transferencia" + + #: src/fe-gtk/setup.c:268 + msgid "One download:" +@@ -4894,7 +4884,7 @@ + + #: src/fe-gtk/setup.c:271 src/fe-gtk/setup.c:273 + msgid "Maximum speed for all files" +-msgstr "Velocidad máx. para todo el tráfico" ++msgstr "Velocidad máxima para todos los archivos" + + #: src/fe-gtk/setup.c:272 + msgid "All downloads combined:" +@@ -4902,7 +4892,7 @@ + + #: src/fe-gtk/setup.c:280 + msgid "Default Messages" +-msgstr "Mensajes predeterminados:" ++msgstr "Mensajes predeterminados" + + #: src/fe-gtk/setup.c:281 + msgid "Quit:" +@@ -4926,11 +4916,11 @@ + + #: src/fe-gtk/setup.c:287 + msgid "Announce your away messages to all channels" +-msgstr "Anunciar sus mensajes ausencia a todos los canales" ++msgstr "Anunciar sus mensajes de ausencia a todos los canales" + + #: src/fe-gtk/setup.c:288 + msgid "Show away once" +-msgstr "Mostrar fuera de linea (away) sólo una vez" ++msgstr "Mostrar mensaje de ausencia sólo una vez" + + #: src/fe-gtk/setup.c:288 + msgid "Show identical away messages only once" +@@ -4942,7 +4932,7 @@ + + #: src/fe-gtk/setup.c:289 + msgid "Unmark yourself as away before sending messages" +-msgstr "Desmarcarse como ausente antes de enviar mensajes" ++msgstr "Quitar la marca de ausencia antes de enviar mensajes" + + #: src/fe-gtk/setup.c:292 + msgid "(Can be a text file relative to ~/.xchat2/)." +@@ -4959,12 +4949,11 @@ + + #: src/fe-gtk/setup.c:300 + msgid "Flash taskbar on highlighted messages" +-msgstr "Iluminar barra de tareas en mensajes resaltados" ++msgstr "Parpadear barra de tareas en mensajes resaltados" + + #: src/fe-gtk/setup.c:301 +-#, fuzzy + msgid "Flash taskbar on any private messages" +-msgstr "Iluminar barra de tareas en mensajes resaltados" ++msgstr "Parpadear barra de tareas ante cualquier mensaje privado" + + #: src/fe-gtk/setup.c:303 + msgid "Beep on highlighted messages" +@@ -4988,7 +4977,7 @@ + + #: src/fe-gtk/setup.c:308 + msgid "Separate multiple words with commas." +-msgstr "separar palabras múltiples con comas." ++msgstr "Separe palabras múltiples con comas." + + #: src/fe-gtk/setup.c:315 + msgid "Advanced Settings" +@@ -5000,11 +4989,11 @@ + + #: src/fe-gtk/setup.c:317 + msgid "Display MODEs in raw form" +-msgstr "Mostrar los MODOs en forma plana" ++msgstr "Mostrar los MODE en forma plana" + + #: src/fe-gtk/setup.c:318 + msgid "Whois on notify" +-msgstr "Ejecutar Whois en las notificaciones" ++msgstr "Ejecutar Whois al notificar" + + #: src/fe-gtk/setup.c:318 + msgid "Sends a /WHOIS when a user comes online in your notify list" +@@ -5017,7 +5006,7 @@ + + #: src/fe-gtk/setup.c:319 + msgid "Hide channel join/part messages by default" +-msgstr "Ocultar mensajes de entrar/marcharse del canal por defecto" ++msgstr "Ocultar por defecto los mensajes de entrar/marchar del canal" + + #: src/fe-gtk/setup.c:320 + msgid "Auto Open DCC Windows" +@@ -5033,7 +5022,7 @@ + + #: src/fe-gtk/setup.c:323 + msgid "Chat window" +-msgstr "Ventana de canal" ++msgstr "Ventana de charla" + + #: src/fe-gtk/setup.c:331 src/fe-gtk/setup.c:1522 + msgid "Logging" +@@ -5050,7 +5039,7 @@ + #: src/fe-gtk/setup.c:334 + #, c-format + msgid "%s=Server %c=Channel %n=Network." +-msgstr "(%s=Servidor %c=Canal %n=Red)." ++msgstr "%s=Servidor %c=Canal %n=Red." + + #: src/fe-gtk/setup.c:337 + msgid "Insert timestamps in logs" +@@ -5082,7 +5071,7 @@ + + #: src/fe-gtk/setup.c:352 + msgid "MS Proxy (ISA)" +-msgstr "" ++msgstr "MS Proxy (ISA)" + + #: src/fe-gtk/setup.c:359 + msgid "All Connections" +@@ -5090,7 +5079,7 @@ + + #: src/fe-gtk/setup.c:360 + msgid "IRC Server Only" +-msgstr "Sólo servidor IRC" ++msgstr "Sólo para el servidor IRC" + + #: src/fe-gtk/setup.c:361 + msgid "DCC Get Only" +@@ -5126,7 +5115,7 @@ + + #: src/fe-gtk/setup.c:375 + msgid "Use proxy for:" +-msgstr "Usar un servidor proxy para:" ++msgstr "Usar servidor proxy para:" + + #: src/fe-gtk/setup.c:377 + msgid "Proxy Authentication" +@@ -5134,11 +5123,11 @@ + + #: src/fe-gtk/setup.c:379 + msgid "Use Authentication (MS Proxy, HTTP or Socks5 only)" +-msgstr "Usar autenticación (sólo HTTP, MS Proxy o Socks5)" ++msgstr "Usar autenticación (sólo MS Proxy, HTTP o Socks5)" + + #: src/fe-gtk/setup.c:381 + msgid "Use Authentication (HTTP or Socks5 only)" +-msgstr "Usar autenticación (solo HTTP o Socks5)" ++msgstr "Usar autenticación (solo Socks5 o HTTP)" + + #: src/fe-gtk/setup.c:383 + msgid "Username:" +@@ -5173,9 +5162,8 @@ + msgstr "Marcar usuarios no identificados con:" + + #: src/fe-gtk/setup.c:975 +-#, fuzzy + msgid "Open Data Folder" +-msgstr "Abrir carpeta..." ++msgstr "Abrir carpeta de datos" + + #: src/fe-gtk/setup.c:1029 + msgid "Select color" +@@ -5247,11 +5235,11 @@ + + #: src/fe-gtk/setup.c:1358 + msgid "External sound playing _program:" +-msgstr "Programa externo de _reproducción de sonido:" ++msgstr "_Programa externo de reproducción de sonido:" + + #: src/fe-gtk/setup.c:1376 + msgid "_External program" +-msgstr "_Programa externo" ++msgstr "Programa _externo" + + #: src/fe-gtk/setup.c:1386 + msgid "_Automatic" +@@ -5259,7 +5247,7 @@ + + #: src/fe-gtk/setup.c:1399 + msgid "Sound files _directory:" +-msgstr "_Carpeta de archivos de sonido:" ++msgstr "Carpe_ta de archivos de sonido:" + + #: src/fe-gtk/setup.c:1438 + msgid "Sound file:" +@@ -5267,7 +5255,7 @@ + + #: src/fe-gtk/setup.c:1453 + msgid "_Browse..." +-msgstr "_Explorar..." ++msgstr "E_xplorar..." + + #: src/fe-gtk/setup.c:1464 + msgid "_Play" +@@ -5291,7 +5279,7 @@ + + #: src/fe-gtk/setup.c:1520 + msgid "Chatting" +-msgstr "Conversación" ++msgstr "Charlando" + + #: src/fe-gtk/setup.c:1521 + msgid "General" +@@ -5392,189 +5380,3 @@ + msgid "%d ops, %d total" + msgstr "%d ops, %d total" + +-#~ msgid "%C18*$t$1%O $2" +-#~ msgstr "%C18*$t$1%O $2" +- +-#~ msgid "%C21*%O$t%C21%B$1%O%C21 $2" +-#~ msgstr "%C21*%O$t%C21%B$1%O%C21 $2" +- +-#~ msgid "%C18%H<%H$4$1%H>%H%O$t$2" +-#~ msgstr "%C18%H<%H$4$1%H>%H%O$t$2" +- +-#~ msgid "$4%C21%B%H<%H$1%H>%H%O%C21$t$2" +-#~ msgstr "$4%C21%B%H<%H$1%H>%H%O%C21$t$2" +- +-#~ msgid "%C28-%C29$1/$2%C28-%O$t$3" +-#~ msgstr "%C28-%C29$1/$2%C28-%O$t$3" +- +-#~ msgid "$1$t$2" +-#~ msgstr "$1$t$2" +- +-#~ msgid "%C19>%O$1%C19<%O$t$2" +-#~ msgstr "%C19>%O$1%C19<%O$t$2" +- +-#~ msgid "%C16*%O$t$1%O" +-#~ msgstr "%C16*%O$t$1%O" +- +-#~ msgid "%C28-%C29$1%C28-%O$t$2" +-#~ msgstr "%C28-%C29$1%C28-%O$t$2" +- +-#~ msgid "%C28*%C29$3$1%C28*$t%O$2" +-#~ msgstr "%C28*%C29$3$1%C28*$t%O$2" +- +-#~ msgid "%C18%H<%H$3$1%H>%H%O$t$2" +-#~ msgstr "%C18%H<%H$3$1%H>%H%O$t$2" +- +-#~ msgid "%C22*%O$t$1" +-#~ msgstr "%C22*%O$t$1" +- +-#~ msgid "%C31%H<%H$4$1%H>%H%O%C30$t$2" +-#~ msgstr "%C31%H<%H$4$1%H>%H%O%C30$t$2" +- +-#~ msgid "PID" +-#~ msgstr "PID" +- +-#~ msgid "None" +-#~ msgstr "Ninguno" +- +-#~ msgid "To" +-#~ msgstr "Para" +- +-#~ msgid "Started" +-#~ msgstr "Iniciado" +- +-#~ msgid "Speed limit" +-#~ msgstr "Límite de velocidad" +- +-#~ msgid "XChat: File Receive List" +-#~ msgstr "XChat: Lista de recepción de archivos" +- +-#~ msgid "Open" +-#~ msgstr "Abrir" +- +-#~ msgid "Ack" +-#~ msgstr "Aceptado" +- +-#~ msgid "XChat: File Send List" +-#~ msgstr "XChat: Lista de archivos a enviar" +- +-#~ msgid "To/From" +-#~ msgstr "Para/De" +- +-#~ msgid "Server" +-#~ msgstr "Servidor" +- +-#~ msgid "Tabs Location" +-#~ msgstr "Solapas colocadas en:" +- +-#~ msgid "Open an irc:// url" +-#~ msgstr "Abrir una url irc://" +- +-#~ msgid "irc://server:port/channel" +-#~ msgstr "irc://servidor:puerto/canal" +- +-#~ msgid "Execute a xchat command" +-#~ msgstr "Ejecutar una orden de xchat" +- +-#~ msgid "\"Command to execute\"" +-#~ msgstr "\"Orden a ejecutar\"" +- +-#~ msgid "Prints some text to the current tab/window" +-#~ msgstr "Imprime textos en la ventana/solapa actual" +- +-#~ msgid "\"Text to print\"" +-#~ msgstr "\"Texto a imprimir\"" +- +-#~ msgid "Change the context to the channel" +-#~ msgstr "Cambiar el contexto al canal" +- +-#~ msgid "channel" +-#~ msgstr "canal" +- +-#~ msgid "Change the context to the server" +-#~ msgstr "Cambiar el contexto al servidor" +- +-#~ msgid "server" +-#~ msgstr "servidor" +- +-#~ msgid "Get some informations from xchat" +-#~ msgstr "Obtener información desde xchat" +- +-#~ msgid "id" +-#~ msgstr "id" +- +-#~ msgid "Get settings from xchat" +-#~ msgstr "Obtener configuraciones de xchat" +- +-#~ msgid "name" +-#~ msgstr "nombre" +- +-#~ msgid "" +-#~ "xchat-remote: %s\n" +-#~ "Try `xchat-remote --help' for more information\n" +-#~ msgstr "" +-#~ "xchat-remote: %s\n" +-#~ "Intente `xchat-remote --help' para más información\n" +- +-#~ msgid "Failed to complete SetContext" +-#~ msgstr "Imposible completar SetContext" +- +-#~ msgid "Failed to complete print" +-#~ msgstr "Imposible completar la impresión" +- +-#~ msgid "Failed to complete GetInfo" +-#~ msgstr "Imposible completar GetInfo" +- +-#~ msgid "Failed to complete GetPrefs" +-#~ msgstr "Imposible completar GetPrefs" +- +-#~ msgid "%s doesn't exist\n" +-#~ msgstr "no existe %s\n" +- +-#~ msgid "_Server List..." +-#~ msgstr "Lista de servidores..." +- +-#~ msgid "Add" +-#~ msgstr "Agregar" +- +-#~ msgid "Convert spaces to underscore before sending" +-#~ msgstr "Convertir espacios a guiones bajos" +- +-#~ msgid "France, Metropolitan" +-#~ msgstr "Francia Metropolitana" +- +-#~ msgid "Neutral Zone" +-#~ msgstr "Zona Neutral" +- +-#~ msgid "From:" +-#~ msgstr "De:" +- +-#~ msgid "To:" +-#~ msgstr "Para:" +- +-#~ msgid "Size:" +-#~ msgstr "Tamaño:" +- +-#~ msgid "MIME Type" +-#~ msgstr "Tipo MIME" +- +-#~ msgid "Settings saved." +-#~ msgstr "Configuraciones guardadas." +- +-#~ msgid "Save rawlog" +-#~ msgstr "Guardar registro plano" +- +-#~ msgid "Save rawlog..." +-#~ msgstr "Guardar registro plano..." +- +-#~ msgid "XChat: Server List" +-#~ msgstr "XChat: Lista de servidores" +- +-#~ msgid "Completes nick names without using the TAB key" +-#~ msgstr "Completar apodos sin usar el tabulador" +- +-#~ msgid "Input Box Appearance" +-#~ msgstr "Apariencia" +- +-#~ msgid "(See strftime manpage for details)." +-#~ msgstr "(Vea la página del manual de strftime para obtener mas detalles)." --- xchat-2.8.0.orig/debian/patches/04_patch361525.dpatch +++ xchat-2.8.0/debian/patches/04_patch361525.dpatch @@ -0,0 +1,12 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## +## DP: activate the busy cursor while xchat is loading + +@DPATCH@ +--- orig/xchat-2.6.8/xchat.desktop 2005-06-06 08:05:29.000000000 +0200 ++++ xchat-2.6.8/xchat.desktop 2006-12-08 19:19:49.000000000 +0100 +@@ -20,3 +20,4 @@ + Terminal=false + Type=Application + Categories=Application;Network; ++StartupNotify=true --- xchat-2.8.0.orig/debian/patches/60_hig_desktop.dpatch +++ xchat-2.8.0/debian/patches/60_hig_desktop.dpatch @@ -0,0 +1,26 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 60_hig_desktop.dpatch by Michael Bienia +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Update xchat.desktop to match the Gnome HIG + +@DPATCH@ +--- xchat-2.6.8/xchat.desktop.orig 2006-11-30 21:29:14.000000000 +0100 ++++ xchat-2.6.8/xchat.desktop 2006-11-30 21:38:18.000000000 +0100 +@@ -1,6 +1,6 @@ + [Desktop Entry] + Encoding=UTF-8 +-Name=XChat IRC ++Name=XChat IRC Client + Name[zh_TW]=網路清談 + Comment[de]=IRC-Client + Comment[es]=Aplicación de IRC +@@ -14,7 +14,7 @@ + Comment[sv]=IRC-klient + Comment[ro]=Client de IRC + Comment[zh_TW]=X-Chat 聊天程式 +-Comment=IRC Client ++Comment=Chat with other people using Internet Relay Chat + Exec=xchat + Icon=xchat.png + Terminal=false --- xchat-2.8.0.orig/debian/patches/20_url_pattern.dpatch +++ xchat-2.8.0/debian/patches/20_url_pattern.dpatch @@ -0,0 +1,21 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 20_url_pattern.dpatch by ??? +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix url patterns + +@DPATCH@ +diff -Naur xchat-2.6.4foo/src/fe-gtk/xtext.c xchat-2.6.4/src/fe-gtk/xtext.c +--- xchat-2.6.4foo/src/fe-gtk/xtext.c 2006-05-12 08:52:44.000000000 +0200 ++++ xchat-2.6.4/src/fe-gtk/xtext.c 2006-06-23 23:27:21.000000000 +0200 +@@ -1842,7 +1842,9 @@ + len++; + } + +- if (len > 0 && word[len-1]=='.') ++ /* ignore trailing dots and commas. */ ++ /* FIXME: locales? */ ++ while (len > 0 && (word[len-1]=='.' || word[len-1]==',' || word[len-1]==';')) + { + len--; + str--; --- xchat-2.8.0.orig/debian/patches/03_patch397312.dpatch +++ xchat-2.8.0/debian/patches/03_patch397312.dpatch @@ -0,0 +1,17 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## +## DP: Fix segfault. + +@DPATCH@ +diff -ruN orig/xchat-2.6.8/po/ja.po xchat-2.6.8/po/ja.po +--- orig/xchat-2.6.8/po/ja.po 2006-10-16 16:53:56.000000000 +0200 ++++ xchat-2.6.8/po/ja.po 2006-11-07 19:35:43.000000000 +0100 +@@ -1082,7 +1082,7 @@ + + #: src/common/textevents.h:318 + msgid "%C28-%C29$1/Wallops%C28-%O$t$2" +-msgstr "%C28-%C29$1/Wallops%C28-%O$t$" ++msgstr "%C28-%C29$1/Wallops%C28-%O$t$2" + + #: src/common/textevents.h:321 + #, fuzzy --- xchat-2.8.0.orig/debian/patches/37_lpi.dpatch +++ xchat-2.8.0/debian/patches/37_lpi.dpatch @@ -0,0 +1,43 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 37_lpi.dpatch by Daniel Holbach +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad xchat-2.6.1~/configure.in xchat-2.6.1/configure.in +--- xchat-2.6.1~/configure.in 2006-01-06 16:26:11.000000000 +0100 ++++ xchat-2.6.1/configure.in 2006-01-15 20:06:55.000000000 +0100 +@@ -160,7 +160,7 @@ + + if test "$gtkfe" != yes; then + gnome=no +- COMMON_LIBS="$GLIB_LIBS" ++ COMMON_LIBS="$GLIB_LIBS -llaunchpad-integration" + COMMON_CFLAGS="$GLIB_CFLAGS" + fi + +diff -urNad xchat-2.6.1~/src/fe-gtk/menu.c xchat-2.6.1/src/fe-gtk/menu.c +--- xchat-2.6.1~/src/fe-gtk/menu.c 2006-01-02 12:38:23.000000000 +0100 ++++ xchat-2.6.1/src/fe-gtk/menu.c 2006-01-15 20:05:51.000000000 +0100 +@@ -44,6 +44,8 @@ + #include + #include + ++#include ++ + #include "../common/xchat.h" + #include "../common/xchatc.h" + #include "../common/cfgfiles.h" +@@ -1934,7 +1936,11 @@ + if (submenu) + gtk_menu_shell_append (GTK_MENU_SHELL (submenu), item); + else ++ { + gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); ++ if (GTK_IS_MENU_BAR(menu_bar) && !strcmp(mymenu[i].text, "_About")) ++ launchpad_integration_add_items (menu, -1, TRUE, TRUE); ++ } + gtk_widget_show (item); + break; + --- xchat-2.8.0.orig/debian/patches/02_terminal.dpatch +++ xchat-2.8.0/debian/patches/02_terminal.dpatch @@ -0,0 +1,50 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_terminal.dpatch by evo +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: fix the menu for urls for debian. + +@DPATCH@ +diff -Naur xchat-2.6.4foo/src/common/xchat.c xchat-2.6.4/src/common/xchat.c +--- xchat-2.6.4foo/src/common/xchat.c 2006-05-27 17:06:26.000000000 +0200 ++++ xchat-2.6.4/src/common/xchat.c 2006-06-23 22:33:54.000000000 +0200 +@@ -531,7 +531,7 @@ + + + +-#define XTERM "gnome-terminal -x " ++#define XTERM "x-terminal-emulator" + + static char defaultconf_ctcp[] = + "NAME TIME\n" "CMD nctcp %s TIME %t\n\n"\ +@@ -596,6 +596,9 @@ + "NAME Open in new tab\n" "CMD !mozilla -remote 'openURL(%s,new-tab)'\n\n"\ + "NAME Run new Mozilla\n" "CMD !mozilla %s\n\n"\ + "NAME ENDSUB\n" "CMD \n\n"\ ++ "NAME SUB\n" "CMD Konqueror...\n\n"\ ++ "NAME Run new Konqueror\n" "CMD !konqueror %s\n\n"\ ++ "NAME ENDSUB\n" "CMD \n\n"\ + "NAME SUB\n" "CMD Mozilla FireFox...\n\n"\ + "NAME Open in existing\n" "CMD !firefox -a firefox -remote 'openURL(%s)'\n\n"\ + "NAME Open in new window\n" "CMD !firefox -a firefox -remote 'openURL(%s,new-window)'\n\n"\ +@@ -608,6 +611,12 @@ + "NAME Open in new tab\n" "CMD !galeon -n '%s'\n\n"\ + "NAME Run new Galeon\n" "CMD !galeon '%s'\n\n"\ + "NAME ENDSUB\n" "CMD \n\n"\ ++ "NAME SUB\n" "CMD Galeon Snapshot...\n\n"\ ++ "NAME Open in existing\n" "CMD !galeon-snapshot -x '%s'\n\n"\ ++ "NAME Open in new window\n" "CMD !galeon-snapshot -w '%s'\n\n"\ ++ "NAME Open in new tab\n" "CMD !galeon-snapshot -n '%s'\n\n"\ ++ "NAME Run new Galeon\n" "CMD !galeon-snapshot '%s'\n\n"\ ++ "NAME ENDSUB\n" "CMD \n\n"\ + "NAME SUB\n" "CMD Opera...\n\n"\ + "NAME Open in existing\n" "CMD !opera -remote 'openURL(%s)'\n\n"\ + "NAME Open in new window\n" "CMD !opera -remote 'openURL(%s,new-window)'\n\n"\ +@@ -618,6 +627,7 @@ + "NAME Gnome URL Handler\n" "CMD !gnome-open %s\n\n"\ + "NAME Lynx\n" "CMD !"XTERM"lynx %s\n\n"\ + "NAME Links\n" "CMD !"XTERM"links %s\n\n"\ ++ "NAME Mutt (for mail)\n" "CMD !x-terminal-emulator -e mutt %s\n\n"\ + "NAME w3m\n" "CMD !"XTERM"w3m %s\n\n"\ + "NAME lFTP\n" "CMD !"XTERM"lftp %s\n\n"\ + "NAME gFTP\n" "CMD !gftp %s\n\n"\ --- xchat-2.8.0.orig/debian/patches/90_xc280_fix_back.dpatch +++ xchat-2.8.0/debian/patches/90_xc280_fix_back.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 90_xc280_fix_back.dpatch by Christian Bjälevik +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad xchat-2.8.0~/src/common/cfgfiles.c xchat-2.8.0/src/common/cfgfiles.c +--- xchat-2.8.0~/src/common/cfgfiles.c 2007-01-01 11:58:02.000000000 +0100 ++++ xchat-2.8.0/src/common/cfgfiles.c 2007-01-04 03:25:16.311420299 +0100 +@@ -45,7 +45,7 @@ + int cmd_len = 1, name_len; + + /* remove <2.8.0 stuff */ +- if (!strcmp (cmd, "AWAY") & !strcmp (name, "BACK")) ++ if (!strcmp (cmd, "away") & !strcmp (name, "BACK")) + return; + + if (cmd) --- xchat-2.8.0.orig/debian/xchat.1 +++ xchat-2.8.0/debian/xchat.1 @@ -0,0 +1,32 @@ +.TH XCHAT "1" "August 2004" "xchat 2.0.10" "User Commands" +.SH NAME +xchat \- IRC client for X similar to AmIRC +.SH SYNOPSIS +.B xchat +[\fIOPTIONS\fR]... [\fIURL\fR] +.SH DESCRIPTION +\fBxchat\fR is a client for the Internet Relay Chat with a GTK user interface. +It is extensible using scripts in various languages such as perl. +It can be used to connect to multiple IRC networks at the same time. +.SH OPTIONS +.TP +\fB\-d\fR, \fB\-\-cfgdir\fR DIRECTORY +use a different config dir +.TP +\fB\-a\fR, \fB\-\-no\-auto\fR +don't auto connect +.TP +\fB\-n\fR, \fB\-\-no\-plugins\fR +don't auto load any plugins +.TP +\fB\-v\fR, \fB\-\-version\fR +show version information +.SS "URL:" +.IP +irc://server:port/channel +.SH AUTHOR +This manual page was written for the Debian GNU/Linux distribution +because the original program does not have a manual page. +.PP +This manual page was written by Davide Puricelli , +for the Debian GNU/Linux system (but may be used by others). --- xchat-2.8.0.orig/debian/xchat.dirs +++ xchat-2.8.0/debian/xchat.dirs @@ -0,0 +1,6 @@ +usr/bin +usr/share/man/man1 +usr/share/doc +usr/lib/menu +usr/share/pixmaps +usr/share/lintian/overrides --- xchat-2.8.0.orig/debian/changelog +++ xchat-2.8.0/debian/changelog @@ -0,0 +1,1260 @@ +xchat (2.8.0-0ubuntu1) feisty; urgency=low + + * New upstream release. + * debian/control: + - Bump libgtk2.0-dev Build-Dep to >=2.10.0. + * debian/patches/09_browser.dpatch: + - Dropped. Upstream fixed the browserlaunching. + * debian/patches/51_spanish_translation.dpatch: + - Dropped. Didn't apply any more. + * debian/patches/90_xc280_fix_back.dpatch: + - Added late fix from upstream. + + -- Christian Bjälevik Thu, 4 Jan 2007 03:25:43 +0100 + +xchat (2.6.8-0.3ubuntu1) feisty; urgency=low + + * Merge from debian unstable, remaining changes: + + Update patch 01_serverlist.dpatch to use irc.ubuntu.com and make it the + default + + debian/patches/37_lpi.dpatch, + debian/patches/38_autoconf.dpatch, + debian/patches/45_ctcp_version_less_information.dpatch: + - added again + + debian/control: + - added liblaunchpad-integration-dev to Build-Depends + - added Recommends: esound-clients | alsa-utils | libarts1c2 + - remove Conflicts on xchat-gnome as it is unneeded + + debian/patches/60_hig_desktop.dpatch: Update xchat.desktop to match the + Gnome HIG + + -- Michael Bienia Mon, 11 Dec 2006 19:40:24 +0100 + +xchat (2.6.8-0.3) unstable; urgency=low + + * NMU. + * debian/rules, debian/control: Fixed spell checking. Closes: #399143. + Removed the option --enable-spell and build-depends on libsexy-dev to use + the by default enabled spell checking using libsexy2. + * debian/rules: Removed obsolete --enable-japanese-conv and --enable-zvt + switches. Closes: #353007. + * debian/patches/04_patch361525.dpatch: Added. Activates the busy cursor + while xchat is loading. Closes: #361525. + * debian/rules: Clean some more in the clean rule. + + -- Bart Martens Fri, 8 Dec 2006 19:03:50 +0100 + +xchat (2.6.8-0.2ubuntu1) feisty; urgency=low + + * Merge from Debian unstable. Remaining changes: + + Update patch 01_serverlist.dpatch to use irc.ubuntu.com and make it the + default + + debian/patches/37_lpi.dpatch, + debian/patches/38_autoconf.dpatch, + debian/patches/45_ctcp_version_less_information.dpatch: + - added again + + debian/control: + - added libsexy-dev to Build-Depends and enable it for the spellchecker + - added liblaunchpad-integration-dev to Build-Depends + - added Recommends: esound-clients | alsa-utils | libarts1c2 + - remove Conflicts on xchat-gnome as it is unneeded + * debian/patches/60_hig_desktop.dpatch: Update xchat.desktop to match the + Gnome HIG (Closes Ubuntu: #11071) + + -- Michael Bienia Thu, 30 Nov 2006 21:46:10 +0100 + +xchat (2.6.8-0.2) unstable; urgency=medium + + * NMU. + * debian/patches/03_patch397312.dpatch: Fix segfault. Closes: #397312. + Thanks to Masami Ichikawa . + * debian/patches/51_spanish_translation.dpatch: Corrected spanish + translation. Closes: #378273. Thanks to Martín Ferrari + . + * debian/patches/01_serverlist.dpatch: Updated to make "Debian servers" the + default irc network. Closes: #393698. + + -- Bart Martens Tue, 7 Nov 2006 19:32:42 +0100 + +xchat (2.6.8-0.1) unstable; urgency=low + + * NMU. + * New upstream release. Closes: #393498. + * debian/patches/09_browser.dpatch: Updated. + * debian/patches/45_fix_cursor.dpatch: Removed. + * debian/patches/46_fix_proxy.dpatch: Removed. + * debian/rules: Added "servicedir=" for dbus. + * debian/xchat.install: No more xchat-remote. Closes: #392526. + * debian/xchat.1: Fixed lintian's manpage-has-useless-whatis-entry. + * debian/watch: Updated. Closes: #378660. + * debian/control: Updated standards version, and added homepage. + + -- Bart Martens Mon, 30 Oct 2006 19:55:32 +0100 + +xchat (2.6.6-0ubuntu3) edgy; urgency=low + + * Update patch 01_serverlist.dpatch to use irc.ubuntu.com. + (Closes Ubuntu: #52690) + + -- Fabio M. Di Nitto Mon, 02 Oct 2006 08:57:55 +0200 + +xchat (2.6.6-0ubuntu2) edgy; urgency=low + + * Rebuild against dbus 0.90 + + -- Sebastian Dröge Thu, 24 Aug 2006 16:56:38 +0200 + +xchat (2.6.6-0ubuntu1) edgy; urgency=low + + * New upstream release + * debian/patches/45_fix_cursor.dpatch + debian/patches/46_fix_proxy.dpatch + - dropped, merged upstream + * Add libsexy-dev to Build-Depends and enable it for the spellchecker + * Fix bashism in debian/rules + + -- Sebastian Dröge Mon, 24 Jul 2006 15:34:59 +0200 + +xchat (2.6.4-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Make binNMUable (Closes: #387063, #387705). + * Remove bashisms from debian/rules (Closes: #331267, #376375). + * Pick random server out of rotations in all cases (Closes: #385374). + + -- Luk Claes Sat, 16 Sep 2006 13:33:46 +0200 + +xchat (2.6.4-2ubuntu1) edgy; urgency=low + + * Sync with Debian: + + debian/patches/36_default_to_freenode.dpatch, + debian/patches/37_lpi.dpatch, + debian/patches/38_autoconf.dpatch, + debian/patches/43_fix_te_notify.dpatch, + debian/patches/45_ctcp_version_less_information.dpatch: + - added again + + debian/control: + - added liblaunchpad-integration-dev to Build-Depends + - added Recommends: esound-clients | alsa-utils | libarts1c2 + - remove Conflicts on xchat-gnome as it is unneeded + + -- Sebastian Dröge Sun, 25 Jun 2006 23:20:50 +0200 + +xchat (2.6.4-2) unstable; urgency=low + + * The "End of a nightmare" release. + * Added a missing build-depends on gconf2. + + -- Davide Puricelli (evo) Sat, 24 Jun 2006 18:58:23 +0200 + +xchat (2.6.4-1) unstable; urgency=low + + * The "Monads" release. + * New upstream version; closes: #373877. + * Added 45_fix_cursor.dpatch to fix a problem with invisible cursor + and gtkspell and 46_fix_proxy.dpatch to resolve a proxy issue. + * Updated 02_serverlist.dpatch to point to irc.oftc.net instead of + irc.freenode.net; closes: #374174. + * Enabled dbus support; closes: #353008. + - updated Build-Depends because of libdbus-glib-1-dev. + - updated xchat package to include xchat-remote. + * Updated Build-Depends and Depends to use python2.4. + * Fixed debian/control to let new xchat-gnome package coexist peacefully + with xchat. + * I have not finished my bugs review yet, hopefully summer will help me .. + + -- Davide Puricelli (evo) Fri, 23 Jun 2006 21:40:50 +0200 + +xchat (2.6.1-1) unstable; urgency=medium + + * The "Clifden" release. + * Removed 43_fix_te_notify and 44_fix_alignment_endianess patches, now + shipped upstream. + * Fixed a problem with circular depends: closes: #339915. + * I still have to integrate some patches and finish my investigation + on old bugs .. work in progress. + + -- Davide Puricelli (evo) Mon, 13 Feb 2006 15:53:48 +0100 + +xchat (2.4.5-2) unstable; urgency=high + + * The "Little endian versus big endian" release. + * Added 44_fix_alignment_endianess.dpatch to resolve issues on some + archs, like powerpc; closes: #330466. + + -- Davide Puricelli (evo) Sat, 1 Oct 2005 12:42:20 +0200 + +xchat (2.4.5-1) unstable; urgency=medium + + * The "Graduation" release. + * New upstream version, closes: #327660. + + -- Davide Puricelli (evo) Fri, 23 Sep 2005 21:52:59 +0200 + +xchat (2.4.4-0.1) unstable; urgency=low + + * Non-maintainer upload. + + [ Paul Wise ] + * New upstream release. + - Fixes auto-join when not connecting to 1st server (Closes: #316617) + * Update debian/watch + * Fix debian/*.menu to prevent some linda/lintian warnings + * Override lintian menu-icon-missing warning (in xchat-common) + * Update Standards-Version (no changes needed) + * Switch to dpatch (merge 01-serverlist and 32_add_chillfactory.net) + * Apply late-breaking upsteam patch (50_latefix_fixpluginns) + * Patch before configuring (Closes: #296290) + * Update description for xchat-text (Closes: #311468, #211547) + * New patch: 10_fix_unchecked_mallocs (Closes: #106942) + * Merge in a patch from Ubuntu: + - Update server list to include an entry for Ubuntu (01_serverlist) + * Add pt_BR translation update from Gustavo Noronha Silva + - 90_translation_update_pt_BR (Closes: #244891) + * Add patch from Pedro Villavicencio Garrido + - 11_fix_dcc_close_message (Closes: #207929) + + [ Erich Schubert ] + * Sponsor upload for Paul who did all the work + * Remove xchat-text, which is not working too well anyway + * Disable nick autocompletion by default. (Yes, this is egostic, but + I'm annoyed by E: apt-errors being completed to my nick!) + + -- Erich Schubert Mon, 25 Jul 2005 23:31:03 +0200 + +xchat (2.4.3-0.2) unstable; urgency=low + + * Non-maintainer upload. + * Update config.{guess,sub} from autotools-dev before running configure + (closes: bug#313559). + + -- Aurelien Jarno Sat, 2 Jul 2005 12:10:01 +0200 + +xchat (2.4.3-0.1) unstable; urgency=medium + + * Non-maintainer upload. + * Urgency medium in hope to still get this into sarge. + * New upstream version, including these bugfixes: + + xchat segfaults when opening plugin dialog on IA64 (Closes: #293521) + + XChat 2.4 breaks input methods (for CJK languages) after + switching tabs (Closes: #302617) + * removed 10_fix_fe_text.patch included upstream. + + -- Ingo Saitz Tue, 3 May 2005 12:06:04 +0200 + +xchat (2.4.1-0.1) unstable; urgency=low + + * Non-maintainer upload. + * New upstream version + * removed patches included upstream + * updated watch file + * got patch from CVS to build text frontend. Note that this apparently + is unmaintained and pretty useless. The xchat-text package might be + removed soon. + + -- Erich Schubert Sun, 28 Nov 2004 23:41:18 +0100 + +xchat (2.4.0-0.2) unstable; urgency=low + + * NMU + * Upload to unstable. Positive feedback from experimental (Closes: #265997) + * added casecomp patch, so that Te doesn't match test in tab + completion + * Removed Freenode regional rotation lists (fixed in 2.0.10-0.3) + * Added irc.chillfactory.net (fixed in 2.0.10-0.3) + + -- Erich Schubert Fri, 8 Oct 2004 23:50:57 +0200 + +xchat (2.4.0-0.1) experimental; urgency=low + + * NMU + * New upstream version for experimental (would close: #265997) + - New color scheme + - sorted tabs + - HIGgyfied, so probably easier to use + * fixed a small translation glitch for .de (missing "t" char) + + -- Erich Schubert Tue, 17 Aug 2004 01:13:29 +0200 + +xchat (2.0.10-0.2) unstable; urgency=low + + * NMU + * re-added the bugfix for archived bug #147832 (losing server list on + disk full) but fixed an uninitialized variable, + causing the list not to be saved at all (closes: #251546) + * added proper description to man page (closes: #224957) + * Added "fix focus" patch by upstream + * Added "fix tab completion" patch by upstream + * Added "Provides: irc" (closes: #262772) + IMHO this should be "irc-client", but see "apt-cache showpkg irc" + * Made xchat-common depend on one of the xchat frontends, so it gets + uninstalled when one chooses to uninstall the frontends + + -- Erich Schubert Mon, 2 Aug 2004 12:47:48 +0200 + +xchat (2.0.10-0.1) unstable; urgency=low + + * NMU + * New upstream release. closes: #252923, #257264. + - fixes tab juggling on reconnect. closes: #256866. + * Bump to Standards-Version 3.6.1. + * Add debian/watch file for DEHS. closes: #258814. + * Update config.guess and config.sub. + + -- Clint Adams Fri, 16 Jul 2004 00:07:33 -0400 + +xchat (2.0.8-2) unstable; urgency=high + + * The "Fidarsi e' bene, non fidarsi e' meglio" release. + * Added back locales; closes: #244656. + + -- Davide Puricelli (evo) Mon, 19 Apr 2004 13:56:04 +0200 + +xchat (2.0.8-1) unstable; urgency=high + + * The "E633 108" release. + * I'd like to thank Erich Schubert for his great work, without him + this release wouldn't be possible. + * New upstream version: + - added 19_socks5-fix.patch to fix a + "Stack-based buffer overflow in the Socks-5 proxy code" + (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0409) + closes: #244184. + - added 20_url-pattern.patch to fix a problem on clicking onto words with + trailing dots; closes: #242539. + - added 21_serverlist-bug.patch to fix an issue on losing serverlist upon + disk full; closes: #147832. + - fixed an issue with po files displayed on /help call, closes: #228243. + - removed useless 18_topic.patch. + + -- Davide Puricelli (evo) Sat, 17 Apr 2004 22:44:16 +0200 + +xchat (2.0.7-1) unstable; urgency=medium + + * The "kill(evo, SIGURG);" release. + * New upstream version, closes: #225971, #225096. + * Built with libtool, libtool1.4 is gone; closes: #228165. + * Removed 17_64bit-fix.patch, now shipped upstream and added + 18_topic.patch to enhance empty topic tooltip, closes: #225851. + + -- Davide Puricelli (evo) Thu, 29 Jan 2004 19:40:57 +0100 + +xchat (2.0.5-3) unstable; urgency=medium + + * The "Amigoooos!" release. + * Added 17_64bit-fix.patch to fix 64 bit issues (where a pointer to int + was given, instead of gsize), closes: #207700. + + -- Davide Puricelli (evo) Sun, 12 Oct 2003 15:42:19 +0200 + +xchat (2.0.5-2) unstable; urgency=high + + * The "I really need a vacation" release. + * Of course I was totally wrong, added back libtoolize stuff .. + + -- Davide Puricelli (evo) Mon, 6 Oct 2003 16:15:01 +0200 + +xchat (2.0.5-1) unstable; urgency=medium + + * The "Ex absurdo sequitur quodlibet" release. + * New upstream version: + - enhanced code for dccsend/dccrecv windows, closes: #214265. + - removed 07_misc.patch and 16_hppa-palette.patch, now shipped upstream. + - removed broken 15_color.patch, closes: #211045, #210412. + * Partially acknowledge NMU, closes: #213970, #210195. + According to libtool maintainer we don't need to run libtoolize before + build process, now libtool is using pass_all on Linux ELF. + Anyway thanks a lot for your work J.H.M.! + * Recompiled against perl-dev 5.8.1, closes: #213626. + + -- Davide Puricelli (evo) Mon, 6 Oct 2003 12:08:31 +0200 + +xchat (2.0.4-1.1) unstable; urgency=low + + * The "Auto* erant dependantes aedificia praeter necessitatem" NMU. + * Redid build system to get libtool update needed for ARM: (Closes: #210195) + * libtoolize --force --copy (from libtool1.4) + * aclocal-1.7 && autoheader && automake-1.7 -a && autoconf + * [debian/control] Removed Build-Depends: autoconf, libtool, autotools-dev. + * [po/Makefile.in.in] "Hardwire" mkinstalldirs setting to allow things to + build. + + -- J.H.M. Dassen (Ray) Fri, 3 Oct 2003 18:03:35 +0200 + +xchat (2.0.4-1) unstable; urgency=medium + + * The "Entia non sunt multiplicanda praeter necessitatem" release. + * New upstream version, closes: #204351. + - added 15_color.patch to improve nick color selection algorithm, + closes: #208316. Thanks Phil Edwards! + - added 16_hppa-palette.patch to fix a color map problem under hppa, + closes: #200903. Thanks Grant Grundler! + - removed 13_cps.patch and 14_fixtint.patch, now shipped upstream. + * debian/control: Build-Depends on python2.3-dev, closes: #205640. + + -- Davide Puricelli (evo) Mon, 8 Sep 2003 18:32:31 +0200 + +xchat (2.0.3-1) unstable; urgency=low + + * The "A night with Sartoz" release. + * New upstream version: + - fixed ChannelList crash on invalid regex match string; closes: #197257. + - updated manpages; closes: #194559. + - removed 11_urlgui.patch and 12_detach.patch, now shipped upstream. + - added 13_cps.patch and 14_fixtint.patch to fix issues with DCC file + position and text rendering. + + -- Davide Puricelli (evo) Thu, 17 Jul 2003 14:50:34 +0200 + +xchat (2.0.2-1) unstable; urgency=low + + * The "Praha" release. + * New upstream version: + - added WM Roles for better WM support; closes: #186105. + - added ja.po, kudos to Junichi Uekawa; closes: #189681. + - removed 10_speedup.patch, now shipped upstream. + - added 11_urlgui.patch and 12_detach.patch to resolve troubles with + url gui and detaching tabs. + + -- Davide Puricelli (evo) Fri, 2 May 2003 17:49:58 +0200 + +xchat (2.0.1-3) unstable; urgency=high + + * The "Io son di tutti voi signora e padrona" release. + * Added 10_speedup.patch to avoid slowness on big channels; + closes: #188836. + + -- Davide Puricelli (evo) Sun, 13 Apr 2003 16:33:18 +0200 + +xchat (2.0.1-2) unstable; urgency=high + + * The "Yes, I *really* love mips!" release. + * Updated configure to properly support mips|mipsel; closes: #188736. + + -- Davide Puricelli (evo) Sun, 13 Apr 2003 13:15:20 +0200 + +xchat (2.0.1-1) unstable; urgency=medium + + * The "Non chiedermi nulla" release. + * First release of new stable branch, based on GTK+ 2.0/2.2: + - removed xchat-gnome package, upstream removed Gnome support because + GTK+ 2.* can really do what we need without using Gnome. + - removed all non-upstream perl scripts, they need small updates to work + with new xchat (yes, I already asked their authors to fix them). + - debian/patches: 01_serverlist.patch, 02_terminal.patch, 07_misc.patch, + 09_browser.patch updated for new xchat branch. + - removed obsolete debconf note, we don't need it anymore. + * And now, the fixed bugs: + - url handling problems fixed: closes: #106465. + - underlying window show-through on minimize problem solved; + closes: #144097. + - [perl-interface], IRC::add_command_handler fixed; closes: #161698. + - channel list window works fine now, this fixed: + 1. xchat uses 100% cpu time on channel listing, closes: #180890. + 2. channel search causes xchat to crash; closes: #185003. + - added a tcl plugin. + - added utf support, closes: #172422. + - upstream removed it.po because it was really old, someone should + translate the new one .. go Frankie, go! :) closes: #181339. + - added a "set conference mode by default" option, closes: #122834. + - removed the "save settings" confirmation dialog, closes: #164572. + - last, but not the least, this is new upstream version, closes: #160672. + + -- Davide Puricelli (evo) Fri, 11 Apr 2003 19:12:18 +0200 + +xchat (1.8.11-2) unstable; urgency=high + + * The "The world was waiting for 2.0.0 and I broke 1.8.11 upload" release. + * Removing useless CVS directories to let build daemons build the package + on archs != i386; closes: #180636. + + -- Davide Puricelli (evo) Tue, 11 Feb 2003 22:06:14 +0100 + +xchat (1.8.11-1) unstable; urgency=low + + * The "The world is waiting for 2.0.0 and I'm giving it 1.8.11 .. + I'm such a bastard!" release. + * New upstream version: + - compiled against libssl0.9.7, closes: #179509. + - support up to 4GB files in dcc, closes: #179344. + - removed 06_me.patch and 08_regex.patch, now shipped upstream. + - added 10_tint.patch, to fix slow tab switch with tints on. + - 07_misc.patch now sets "Use a fontset" to false .. yep, the previous + patch was lost by accident. + * debian/control: Suggests www-browser, not web-browser. + + -- Davide Puricelli (evo) Tue, 11 Feb 2003 15:29:01 +0100 + +xchat (1.8.10-5) unstable; urgency=low + + * The "Cramer" release. + * Added 09_browser.patch to add sensible-browser support; + closes: #170086. + * Renamed 07_fontset.patch to 07_misc.patch, now: + - xchat real name defaults to GECOS user name; closes: #171814 + - away messages aren't announced by default; closes: #171462. + + -- Davide Puricelli (evo) Mon, 9 Dec 2002 20:34:10 +0100 + +xchat (1.8.10-4) unstable; urgency=high + + * The "NETDEV WATCHDOG: eth0: transmit timed out" release aka + The "I hate my pcmcia card" release. + * Config.guess and config.sub are updated before building the package. + closes: #168073. + * Added konqueror to URL handlers; closes: #168159. + + -- Davide Puricelli (evo) Sat, 9 Nov 2002 22:40:58 +0100 + +xchat (1.8.10-3) unstable; urgency=low + + * The "Seamisai" release. + * Added 08_regex.patch to fix a crash on using channel list window with + glibc 2.3.1; closes: #165407. + + -- Davide Puricelli (evo) Tue, 5 Nov 2002 14:33:57 +0100 + +xchat (1.8.10-2) unstable; urgency=low + + * The "Yes Sir, docs are currently missing in action" release. + * xchat-common.docs: using "doc" directory instead of "manual" one. + + -- Davide Puricelli (evo) Fri, 27 Sep 2002 19:24:17 +0200 + +xchat (1.8.10-1) unstable; urgency=medium + + * The "Vertex cover" release. + * New upstream version: + - removed 04_catalan.patch and 05_notify.patch, now shipped upstream. + - added 06_me.patch to fix /me breakdown. + - fixed selection handling; closes: #111180. + * Building against perl5.8 solved all these problems: + - xchat segfault when LC_CTYPE in unset; closes: #156813. + - Perl scripts in ~/.xchat cause segfaults on startup; closes: #149660. + - xchat-gnome (1.8.9-1) crash with perl script; closes: #149872. + - xchat crashes due to segmentation fault after clicking on Connect + button; closes: #157418. + * Finally working packages with umlauts, accented letters and so on: + - added 07_fontset.patch to always set "Use a fontset" option to false. + - added a debconf note and a README.Debian file to explain what I changed + and what users should change to avoid problems. + - these problems are now solved: + - xchat crash when pasting an url to mozilla; closes: #146978 + - pasting text triggers assertion; closes: #150236. + - xchat-gnome has display problems with accented chars; closes: #159889. + + -- Davide Puricelli (evo) Thu, 26 Sep 2002 19:17:49 +0200 + +xchat (1.8.9-4) unstable; urgency=low + + * The "Transition in progress" release. + * debian/control: Build-Depends on gdk-imlib1-dev; closes: #159051. + * Built against python2.2; closes: #159255. + + -- Davide Puricelli (evo) Mon, 2 Sep 2002 11:18:11 +0200 + +xchat (1.8.9-3) unstable; urgency=low + + * The "To NMU or not to NMU, this is the question" release. + * debian/control: Build-Depends on perl (>= 5.8.0). + + -- Davide Puricelli (evo) Sat, 3 Aug 2002 15:26:32 +0000 + +xchat (1.8.9-2) unstable; urgency=low + + * The "Alexander Platz" release. + * Added Tint Transparency to non-gnome package, too; closes: #152108. + + -- Davide Puricelli (evo) Fri, 12 Jul 2002 18:27:17 +0200 + +xchat (1.8.9-1) unstable; urgency=medium + + * The "Crypto in main" release. + * New upstream version: + - fixed "XChat DNS Command Character Stripping EXECL Vulnerability" + (http://online.securityfocus.com/bid/4376) closes: #149101. + * Enabled ssl support; closes: #106853, #128502, #137322. + - debian/control: added libssl-dev to Build-Depends. + - debian/rules: added --enable-openssl. + - debian/copyright: updated. + * Rewritten debian/rules, now we apply patches on the fly (l33t) + - 01_serverlist.patch, Debian servers added at the top of the serverlist + - 02_terminal.patch, we use "!x-terminal-emulator" instead of "!rxvt" + - 03_gopher.patch, added gopher support, closes: #130203. + - 04_catalan.patch, new Catalan po, closes: #149035. + Thanks Antoni Bella . + - 05_notify.patch, patch to fix notify breakdown. + * Added xchat.h and plugin.h to xchat-common package: closes: #148189. + * Added scripts-perl/xchat-debab-to-url.pl, a cool script to convert all + those foo.d.o to foo.debian.org (useful for Debian developers); + closes: #128534. Kudos to Eduard Bloch . + * Added scripts-perl/forShare.pl, a funny script that implements a + /whereis command and Google searches :) + - debian/control: added a Suggests on libnet-google-perl. + + -- Davide Puricelli (evo) Sun, 26 May 2002 19:26:38 +0200 + +xchat (1.8.9-0woody1) testing-security; urgency=high + + * The "I hate security uploads" release. + * New upstream version: + - fixed "XChat DNS Command Character Stripping EXECL Vulnerability" + (http://online.securityfocus.com/bid/4376) closes: #149101. + + -- Davide Puricelli (evo) Mon, 10 Jun 2002 21:58:32 +0200 + +xchat (1.8.8-3) unstable; urgency=medium + + * The "Oh my God, they killed Python, you bastards!" release. + * debian/rules: added "--enable-python", it was removed by accident. + closes: #143056. + + -- Davide Puricelli (evo) Mon, 15 Apr 2002 22:35:24 +0200 + +xchat (1.8.8-2) unstable; urgency=medium + + * The "Evo, use nnn-close@bugs.d.o to close your xchat bugs!!" release aka + The "Wow, this changelog seems pretty popular" release. + * Updated Brazilian po, thanks to + Gleydson Mazioli da Silva . + * Updated scripts-perl/alias.pl, kudos to Hanno Hecker . + + -- Davide Puricelli (evo) Sat, 13 Apr 2002 12:11:49 +0200 + +xchat (1.8.8-1) unstable; urgency=medium + + * The "Binary only" release. + * New upstream version: + - fixed history of windows, closes: #131340. + - fixed recursive wildcard match in /dcc send, closes: #135348. + * This segfault is generated by a user's misconfiguration; closes: #131888 + * Strange issue with locale that I can safely close, according to + submitter; closes: #133958. + * The command you're looking for is /close; closes: #135371. + * Just /set inputgad_superfocus OFF, restart and it fixed; closes: #136207 + * Stupid non-bug that we can safely close; closes: #138305, #138306. + * You're wrong, we have a menu entry into GNOME's Programs menu, + closes: #131670. + + -- Davide Puricelli (evo) Sun, 17 Mar 2002 17:56:59 +0100 + +xchat (1.8.7-2) unstable; urgency=high + + * The "Crocodile rock" release. + * Made upgrade smooth even when you're upgrading from an ancient + package; closes: #129707. + + -- Davide Puricelli (evo) Sun, 20 Jan 2002 17:20:21 +0100 + +xchat (1.8.7-1) unstable; urgency=high + + * The "Hurry up evo, there's a security hole!" release. + * New upstream version: + - fixed a serious CTCP reply vulnerability. + - fixed the need for signed chars (e.g. on PPC and s390). + - immediately abort file transfers when out of space. closes: #127095. + + -- Davide Puricelli (evo) Thu, 10 Jan 2002 12:26:46 +0100 + +xchat (1.8.6-3) unstable; urgency=high + + * The "Ok, wrong patch, excuse me guys :)" release. + * Removed the stupid hack from debian/rules and applied the patch provided + by Colin Walters ; closes: #126207. + + -- Davide Puricelli (evo) Sun, 23 Dec 2001 20:25:01 +0100 + +xchat (1.8.6-2) unstable; urgency=medium + + * The "Merry Christmas, mine beloved Xchat users!" release. + * Added -funsigned-char=no to CFLAGS to avoid some troubles with ppc arch. + * Added a funny script to /usr/share/doc/xchat-common/scripts-perl; + thanks to Samuele Tonon + + -- Davide Puricelli (evo) Sat, 22 Dec 2001 18:32:17 +0100 + +xchat (1.8.6-1) unstable; urgency=low + + * The "Cantantessa" release. + * New upstream version. + * Just /set inputgad_superfocus OFF, restart and it fixed; + closes: #115281. + * Syntax is not /ignore all, but /ignore all; + you're using it in a wrong way. closes: #118146. + * You can disable flood protection with /set msg_number_limit 9999, + anyway you can turn auto-dialog windows popup back under UserModes + menu; closes: #123209. + * This memory leak isn't reproducible by me, upstream author or other + people and it's probably related with the pixmap theme you're using, + not with xchat; if you want you can provide the irssi workaround to + xchat upstream author, he'll give a look at it; closes: #123255. + + -- Davide Puricelli (evo) Sun, 16 Dec 2001 22:50:24 +0100 + +xchat (1.8.5-3) unstable; urgency=low + + * The "Creme Caramel" release. + * Now we use "IRC" hint for menu files; closes: #120998. + + -- Davide Puricelli (evo) Sun, 25 Nov 2001 11:44:58 +0100 + +xchat (1.8.5-2) unstable; urgency=high + + * The "Desperately seeking a house" release. + * Ok, forget last upload, python2.2 is a beta version, now + we will depend and build-depend on last stable version, 2.1 + closes: #118249. + + -- Davide Puricelli (evo) Sun, 4 Nov 2001 22:14:55 +0100 + +xchat (1.8.5-1) unstable; urgency=high + + * The "Underlab kicks ass" release. + * New upstream version (with two upstream patches). + * debian/control: fixed Build-Depends and Depends for python2.2; + closes: #117754, #117879. + * Please read 1.6.3-2 changelog entry, I won't compile xchat with + --enable-panel, so I fixed extended description; closes: #116778. + + -- Davide Puricelli (evo) Fri, 2 Nov 2001 19:34:58 +0100 + +xchat (1.8.4-2) unstable; urgency=low + + * The "Welcome back Natalie" release. + * Applied a patch to fix DCC Resume; closes: #115505. + + -- Davide Puricelli (evo) Sun, 14 Oct 2001 12:36:03 +0200 + +xchat (1.8.4-1) unstable; urgency=low + + * The "Abraham de Moivre" release. + * New upstream version. + * Fixed traceroute path, closes: #114636, #114637. + + -- Davide Puricelli (evo) Mon, 8 Oct 2001 11:45:06 +0200 + +xchat (1.8.3-1) unstable; urgency=low + + * The "Kimagure Orange Road" release. + * New upstream version. + * *.menu: added icons; closes: #110523. + + -- Davide Puricelli (evo) Fri, 31 Aug 2001 23:57:00 +0200 + +xchat (1.8.2-1) unstable; urgency=low + + * New upstream version, closes: #104465, #107544. + * Added alias.pl and unban.pl in /usr/share/doc/xchat-common/scripts-perl, + thanks to Vetinari + * These memory leaks aren't reproducible by me, upstream author and other + people, so they're probably related with specific kernel/configuration; + closes: #107076, #105335. + * This isn't true, it doesn't require an extra press; closes: #106044. + * Now struct module_cmd_set *mod_cmds' isn't static; closes: #106848. + * Upstream author said: + "I just dont check them, if you run out of memory, it mayaswell just + crash; besides, all os'es have virtual memory and mallocs hardly ever + fail. If you dont have enough memory to alloca the TINNY amounts xchat + allocates, there wont be enough memory to make an error message anyway" + closes: #106942. + * Now our default terminal is x-terminal-emulator; closes: #107784, #107789. + Thanks to Eduard Bloch + * Well, now this is the normal behaviour; an easy workaround could be this: + make a UserCommand, Name "myreconnect" Command "/join 0 /reconnect" + Try to use alias.pl (/usr/share/doc/xchat-common/scripts-perl/alias.pl) + * Sorry, I prefer to use conflicts between xchat and xchat-gnome packages + because xchat-text isn't very used like the other two. closes: #98773. + * Ircd doesn't support PRIVMSG #chan1,#chan2; closes: #100757. + * Upstream author's words: + 104768- this is wishlist, i guess he should mail me about this.. + or create a patch.. the plugin interface is very rarely used (and not + changed in 1+ years). + closes: #104768. + + -- Davide Puricelli (evo) Mon, 6 Aug 2001 17:49:39 +0200 + +xchat (1.8.1-2) unstable; urgency=low + + * Applied a patch to fix bug in closing dialog windows and another + patch to fix /kick breakdown, closes: #105775. + + -- Davide Puricelli (evo) Sat, 21 Jul 2001 21:16:34 +0200 + +xchat (1.8.1-1) unstable; urgency=medium + + * New upstream version. + * Fixed src/fe-gtk/serverlist.h patch, closes: #104367. + * Built with --enable-japanese-conv, closes: #103267. + + -- Davide Puricelli (evo) Thu, 12 Jul 2001 10:36:54 +0200 + +xchat (1.8.0-1) unstable; urgency=high + + * New upstream version, closes: #101660, #101121, #78716, #97536, #100075. + * debian/rules: added configure/configure-stamp support; closes: #94218. + * Added a lot of docs and rewritten manpages from scratch (except the + xchat-text one); closes: #97403. + * Now xchat depends on python2-base and builds against python2-dev; + closes: #99483. + * Enabled ipv6 support. + + -- Davide Puricelli (evo) Sun, 1 Jul 2001 17:46:10 +0200 + +xchat (1.6.4-3) unstable; urgency=high + + * Depends on libgtk1.2 (>= 1.2.10-1); closes: #90785, #90405, #90894. + * Fixed Build-Depends; closes: #90887. + * Added w3m to URL Menu, anyway remember that this menu is editable and + you can add or remove things; closes: #89625. + * You can make a UserCommand for that, .e.g: + Name Command + ALLAWAY /ALLSERV /away + Then just type /allaway; closes: #90589. + * Sorry, upstream said that it's too hard to do; closes: #92877. + + -- Davide Puricelli (evo) Tue, 10 Apr 2001 19:56:46 +0200 + +xchat (1.6.4-2) unstable; urgency=high + + * Hacked debian/rules, now we can use dpkg-buildpackage with -B again. + closes: #86221. + + -- Davide Puricelli (evo) Fri, 16 Feb 2001 22:19:52 +0100 + +xchat (1.6.4-1) unstable; urgency=low + + * New upstream version, closes: #85471. + Richards Fuchs' patches and Anthony Fok's po are now shipped upstream. + * Peter said that this is too hard to implement and he won't add it. + closes: #56387. + + -- Davide Puricelli (evo) Mon, 12 Feb 2001 16:06:35 +0100 + +xchat (1.6.3-2) unstable; urgency=low + + * Added "Hints" to menu files; closes: #82317. + * Now actions cause a beep for PM windows (if you enable it). + Patch provided by Richard Fuchs ; closes: #78484. + * After a discussion with upstream author I've decided to remove + panel applet support from xchat-gnome package; Peter said that + "it's not really a maintained piece of code" and I think that it's + useless to provide a broken applet (of course if someone would like + to take care of code I'll readd it.) closes: #82113, #84723, #84729. + * Now messaging channels or nicknames works a bit like in mIRC now, + i.e. when there's an open tab for the destination, the message shows + up there (usefull for logs); closes: #60104. + Patch provided by Richard Fuchs . + * Peter's words: + " #69765 - with the suggested solution the client could be too + easily fooled by people having some fun :) xchat doesnt "handle" + netsplits anyway, it just prints out what the server says." + " the netsplit message is no different to a quitmessage unluckily". + closes: #69765. + * Peter dixit: "thats the way it is", it's not a bug but, a feature. + closes: #78494. + + -- Davide Puricelli (evo) Sun, 4 Feb 2001 15:05:42 +0100 + +xchat (1.6.3-1) unstable; urgency=low + + * New upstream version.(closes: #81031, #79674). + * xchat-gnome: now built with --enable-panel. + * Added zh_CN and zh_TW.Big5 po files; thanks to Anthony Fok . + * Upstream author said that all GTK+ apps do this and he can't fix them; + closes: #79647, #81385. + * That perl script isn't included into xchat upstream tarball and we don't know + what it should do, submitter doesn't provide any other info, so we can close + it; closes: #79641. + * xchat doesn't come with a en_DK po, anyway it should ignore it; I tried to + export en_DK and I used xchat 1.6.3 both with and without libc6-i686: + it works. closes: #78710. + + -- Davide Puricelli (evo) Wed, 10 Jan 2001 19:13:40 +0100 + +xchat (1.6.2-1) unstable; urgency=low + + * New upstream version (closes: #70905, #79138, #76122). + * Now xchat, xchat-gnome and xchat-text depend on xchat-common + (= ${Source-Version}); closes: #79331. + + -- Davide Puricelli (evo) Mon, 11 Dec 2000 19:41:51 +0100 + +xchat (1.6.0-2) unstable; urgency=low + + * Scrollbar position doesn't depend on your wm theme (it will be forever + on the right); closes: #45510. + * "Edit event texts menu" works, you need to type enter after having done + some changes; closes: #59904. + * Socks4 support works, just use "Proxy server" menu; closes: #72952. + * Only previous version was affected by this; closes: #78007. + * Docs troubles are fixed; closes: #78008, #78230. + + -- Davide Puricelli (evo) Tue, 28 Nov 2000 18:48:03 +0100 + +xchat (1.6.0-1) unstable; urgency=low + + * New upstream version (with upstream patch for xtext.c). + (closes: #47244, #50163, #60592, #65080, #66579, #72606, #72618, + #74894, #75203, #76208, #46540, #58897, #59320, #68895, #77390, + #44111, #44112, #56380, #56625, #56838, #57428, #57471, #57681, + #57683, #60826, #72191.) + * Fixed Build-Depends. (closes: #76911, #70408, #72402, #76265, #58293) + * Removed stupid depends on libc5 stuff; closes: #77672, #77447. + * Now pixmaps are into xchat-gnome package; closes: #58037. + * Some people want to use this button, sorry; closes: #69804. + * Autoconnect is now enabled by default (use -a to stop it); closes: #46354. + * "Ignore notifies" is only a visual thing, notifies are received but not + displayed; anyway don't worry, xchat flood protect works well. + (closes: #59320) + * We support python and perl scripts, sorry; closes: #60181. + * Edit key-bindings is your friend, closes: #65987. + * Added checks for DEB_BUILD_OPTIONS for Standards-Version: 3.2.1. + + + -- Davide Puricelli (evo) Sun, 19 Nov 2000 13:10:46 +0100 + +xchat (1.5.7-3) unstable; urgency=low + + * New maintainer release. + + -- Davide Puricelli (evo) Sat, 18 Nov 2000 20:35:21 +0100 + +xchat (1.5.7-2.1) unstable; urgency=low + + * Added --disable-zvt to gtk+ front ends configure call. Now it really is + GNOME free. + + -- Sean 'Shaleh' Perry Thu, 2 Nov 2000 10:34:48 -0800 + +xchat (1.5.7-2) unstable; urgency=low + + * Compiled xchat with --disable-{trans,gdk-pixbuf}. This should remove + the dependancy on all the GNOME stuff. (Closes: Bug#72191) + + -- Edward C. Lang Fri, 22 Sep 2000 17:31:08 +1100 + +xchat (1.5.7-1) unstable; urgency=low + + * New upstream version. + * Incoming DCC files needn't overwrite already existing files; this can + be contolled by selecting a specific download directory, and choosing + to appended the sender's nickname to the filename. (Closes: Bug#46527) + * Servers selected to be autoconnected to on startup now do + this. (Closes: Bug#50160) + * More than one channel can be specified to join on startup. + (Closes: Bug#50162) + * /usr/doc -> /usr/share/doc/ symlinks now exist. + (Closes: Bug#58343, Bug#58477) + * Compiled with GNOME support. (Closes: Bug#63994) + * URLs are quoted. (Closes: Bug#66776) + * Bugs still open: 45510 47244 50163 58037 59904 60592 65080 66597 + + -- Edward C. Lang Wed, 20 Sep 2000 20:34:31 +1100 + +xchat (1.4.3-0.1) stable unstable; urgency=high + + * Non-maintainer upload. + * New upstream release, which contains the security fix for Bugtraq + #1601: X-Chat Command Execution Via URLs Vulnerability. + (Closes: Bug#69982) + * Added libpanel-applet-dev to Build-Depends. (Closes: Bug#58293) + * Added Chinese support: Added zh_TW.Big5 and zh_CN po files, and + turned on fontset by default. + * Updated the Spanish and Portugese translations with the ones + provided by Conectiva: + * Thu Jun 08 2000 Rafael Rigues + - Added spanish (es_ES) 1.4.2 potfile. + * Mon Jun 05 2000 Rafael Rigues + - Added final portuguese (pt_BR) 1.4.2 potfile + * Revised the debian/copyright file. + + -- Anthony Fok Sun, 27 Aug 2000 03:57:26 -0600 + +xchat (1.4.2-1.1) frozen unstable; urgency=low + + * Non maintainer release. + + * Fix xchat, xchat-gnome and xchat-text to have symlinks from + /usr/doc/$pkg to /usr/share/doc/$pkg. Note that /usr/share/doc/$pkg + in these cases is itself a link to /usr/share/doc/xchat-common. + (Closes: Bug#60826) + * Correct spelling of "extension" in control file (lintian) + * Call dh_compress to compress the manpage and anything else (lintian) + + -- Anthony Towns Fri, 14 Apr 2000 21:13:25 +1000 + +xchat (1.4.2-1) frozen unstable; urgency=low + + * New upstream release. + * #56285 is a GTK problem. (Closes: #56285) + * Bigger topic buffer (in src/fe-gtk/chanlist.c). + (Closes: #37018,#52955). + * Hopefully deals with #60826. I'll close this in the next revision if + it does. + * Includes patch for text.c (Closes: #60719) + * Includes patch for fkeys.c (Closes: #58957). + * Problem with unexpected /nick behaviour fixed. (Closes: #53623) + * Unfortunately, to resolve #47343, I would need release n+1 versions + for each language. In the meantime, it's possible to override the + English autocomplete words by doing Settings -> Replace Popup - Delete + All. In the meantime, I'm going to close this bug. If you feel the + need to dicuss it further, don't hesitate mailing me. (Closes: #47343) + * Adam Klein split xchat{-gnome,-text} into xchat-common, xchat, + xchat-gnome, and xchat-text. This deals with #43760. (Closes: #43760) + * /recon now remembers what server to reconnect to. (Closes: #58050) + * After thinking long and hard about it (well, not really) I have come + to the conclusion that Joey Hess' proposed description is much more + appropriate. I've therefore decided to include it. (Closes: #61815) + + -- Edward C. Lang Fri, 24 Mar 2000 21:40:37 +1100 + +xchat (1.4.1-1) frozen unstable; urgency=low + + * The uber magic brand new "I got a new computer so I can maintain my + packages again" release. + * New upstream release, which should fix some miscellenous bugs. + (Closes: #60906). See the changelog for more info. + * They query window seems to have a decent buffer again. + (Closes: #56576) + * The widgets all redraw properly. (Closes: #56575, #56573) + * Man page doesn't overwrite between packages. + (Closes: #56567,#56420,#56389) + * Away message responds according to preferences. (Closes: #56447) + * Highlighting for a string now works. (Closes: #59905,#59898) + * I can't reproduce #59116, and it seems to be non-existant in this + release, so I'm going to close it. If you notice it again, please + reopen it. (Closes: #59116) + * As fair as I can tell, these bugs are still open: + Important: #60826 - Discussion is taking place between the reporter of + this bug (joeyh@varesearch.com) and Adam Klein, who kindly did a NMU + release when I was unable to. Many thanks to Adam :) + + Normal: #37018, #46527, #47244, #47343, #52955, #53623, #56285 + + Wishlist: #43760, #46354, #56387, #58050, #58897, #59320, #60104, + #60181 - this one will probably be closed quite soon. I'm still + thinking about whether or not to remove python support, or have an + xchat-thelot (or whatever) package that has gnome+python+perl+text+*. + + -- Edward C. Lang Fri, 24 Mar 2000 19:22:19 +1100 + +xchat (1.4.0-0.1) frozen unstable; urgency=low + + * Non maintainer upload by request of maintainer + * New (stable) upstream release. Probably closes the following bugs, + and maybe more: #56380,#56573,#56575,#56576,#56625,#56838,#57157,#57428, + #57471,#57681,#57683 + * No new features since 1.3.12, bugfixes only + * Uses pristine upstream source + * Split out documentation and examples and locale files into xchat-common + * Set prefix instead of DESTDIR, so i18n files are installed + * Install examples into subdirs + * Really complies with policy 3.1.1 now: + + Added Build-Depends + + Create /usr/doc/xchat-common symlink + * Added Replaces: lines to compliment the Conflicts: + + -- Adam Klein Sat, 12 Feb 2000 18:15:57 -0800 + +xchat (1.3.12-2) frozen unstable; urgency=low + + * No more zombied children for URLs. (Closes: #55962) + * Can now use mousewheel. (Closes: #52964) + * /who only shows up in server tab. (Closes: #55184) + * /exec -i now works. (Closes: #45143) + * Usability suggestions incorporated upstream. (Closes: #45519) + + -- Edward C. Lang Tue, 25 Jan 2000 16:29:47 +0100 + +xchat (1.3.12-1) frozen unstable; urgency=low + + * New upstream release. + + -- Edward C. Lang Sun, 23 Jan 2000 11:29:41 +0100 + +xchat (1.3.10-2) unstable; urgency=low + + * The "I'm too tired" Release. + * xchat-text manpage is really the xchat-text manpage. + * Still no message catalogues - unless someone tells me how to get gettext to play ball. + * Forgot to sign last upload. + + -- Edward C. Lang Sat, 8 Jan 2000 17:59:02 +0100 + +xchat (1.3.10-0.5) unstable; urgency=low + + * New upstream release. + * Closes: #37018, #45143, #52955. + * Message catalogues should be in this release, if not, the next one for sure. + + -- Edward C. Lang Thu, 6 Jan 2000 15:55:45 +0100 + +xchat (1.3.8-0.5) unstable; urgency=low + + * New upstream version. + * xchat-gnome now actually includes GNOME support. + + -- Edward C. Lang Fri, 3 Dec 1999 07:10:39 +0100 + +xchat (1.3.3-0) unstable; urgency=low + + * New upstream release. + + -- Edward C. Lang Wed, 29 Sep 1999 12:49:36 -0700 + +xchat (1.3.0-0) unstable; urgency=low + + * New upstream release. + * Text/console support added. + + -- Edward C. Lang Thu, 2 Sep 1999 22:10:17 +1000 + +xchat (1.2.0-1) unstable; urgency=low + + * New stable upstream release. + * Closes: #43760 (See email from Sean Perry, + + -- Edward C. Lang Thu, 2 Sep 1999 10:24:43 +1000 + +xchat (1.1.9-1) unstable; urgency=low + + * New upstream release + * DCC resume fixed. + * IRC Server can now be pre-selected (Closes: #35087) + + -- Edward C. Lang Sun, 29 Aug 1999 15:13:43 +1000 + +xchat (1.1.7-0) unstable; urgency=low + + * New upstream release. + + -- Edward C. Lang Fri, 13 Aug 1999 19:04:23 +1000 + +xchat (1.0.0-1) unstable; urgency=low + + * New upstream release. + * Error in types.h error for glibc-2.1 fixed. (Closes: #29550) + * Hardcoded i386 in make dependencies removed. (Closes: #29697) + * Same as above. (Closes: #32266) + * Segfault problem on starting fixed with new release. (Closes: #34430) + * Problem with with menu in same install run fixed. (Closes: #37088) + * #debian on irc.openprojects.net added as default channel. (Closes: #32857) + + -- Edward C. Lang Sun, 4 Jul 1999 00:29:38 +1000 + +xchat (0.9.10-1) unstable; urgency=low + + * New upstream release. + * NMU on behalf of Edward Lang from Feanor. + + -- Konstantinos Margaritis Fri, 25 Jun 1999 16:42:26 +0300 + +xchat (0.9.7-2) unstable; urgency=low + + * Closes: #39641 + + -- Edward C. Lang Fri, 18 Jun 1999 17:35:05 +1000 + +xchat (0.9.7-1) unstable; urgency=low + + * New upstream release. + * No longer crashes when run as root. + + -- Edward C. Lang Wed, 9 Jun 1999 18:26:59 +1000 + +xchat (0.9.6-0) unstable; urgency=low + + * New upstream release. + + -- Edward C. Lang Thu, 20 May 1999 18:07:28 +1000 + +xchat (0.9.5-0) unstable; urgency=low + + * New upstream Release + * HTML documentation now included. + * xdcc'n'stuff perl script included. + + -- Edward C. Lang Fri, 9 Apr 1999 17:24:26 +1000 + +xchat (0.9.4-0.1) unstable; urgency=low + + * Official maintainer release. + * Added GNOME support + + -- Edward C. Lang Fri, 9 Apr 1999 02:05:38 +1000 + +xchat (0.9.4-0) unstable; urgency=low + + * New upstream release + * docs for scripts now included, with examples + + -- Sean E. Perry Wed, 31 Mar 1999 00:51:18 -0500 + +xchat (0.9.1-0) unstable; urgency=low + + * new upstream release + * compiled against GTK+ 1.2 and Imlib 1.9.4 + * fixed the sys/types propblem for glibc2.1 (needs gnu/types) + + -- Sean E. Perry Sat, 6 Mar 1999 13:02:18 -0500 + +xchat (0.5.0-0.1) unstable; urgency=low + + * fixed the deps problem + + -- Sean E. Perry Thu, 28 Jan 1999 00:52:15 -0500 + +xchat (0.5.0-0) unstable; urgency=low + + * New upstream version + + -- Sean E. Perry Mon, 11 Jan 1999 23:45:23 -0500 + +xchat (0.4.2-0.1) unstable; urgency=low + + * non maintainer upload + * new upstream release + + -- Brian M. Almeida Thu, 10 Dec 1998 14:52:26 -0500 + +xchat (0.3.1-0) unstable; urgency=low + + * new upstream release + + -- Sean E. Perry Fri, 13 Nov 1998 00:06:26 -0500 + +xchat (0.3.0-2) unstable; urgency=low + + * Fixed bug in Perl #define + + -- Sean E. Perry Mon, 9 Nov 1998 13:56:49 -0500 + +xchat (0.3.0-0) unstable; urgency=low + + * new upstream release + + -- Sean E. Perry Fri, 6 Nov 1998 15:44:32 -0500 + +xchat (0.2.5-0) unstable; urgency=low + + * New upstream release + + -- Sean E. Perry Sat, 31 Oct 1998 16:57:24 -0500 + +xchat (0.2.1-0) unstable; urgency=low + + * new upstream version + * Official maintainer release + + -- Sean E. Perry Sun, 11 Oct 1998 23:15:17 -0400 + +xchat (0.2.0-1) unstable; urgency=low + + * Initial Release. + + -- David N. Welton Sun, 27 Sep 1998 14:15:53 -0700 + +Local variables: +mode: debian-changelog +End: + --- xchat-2.8.0.orig/debian/control +++ xchat-2.8.0/debian/control @@ -0,0 +1,31 @@ +Source: xchat +Section: net +Priority: optional +Maintainer: Davide Puricelli (evo) +Standards-Version: 3.7.2 +Build-Depends: debhelper (>> 4), bison, libssl-dev, libglib2.0-dev, libgtk2.0-dev (>= 2.10.0), libperl-dev, gettext (>= 0.10.37-1), libtool, zlib1g-dev, perl (>= 5.8), python2.4-dev, tcl8.4-dev, autotools-dev, dpatch, libdbus-glib-1-dev, libgtkspell-dev, gconf2, dpkg-dev (>= 1.13.19), liblaunchpad-integration-dev, libsexy-dev + +Package: xchat +Architecture: any +Provides: irc +Replaces: xchat-common (<< 1.6.0-1) +Depends: ${shlibs:Depends}, xchat-common (= ${source:Version}) +Recommends: esound-clients | alsa-utils | libarts1c2 +Suggests: libnet-google-perl +Description: IRC client for X similar to AmIRC + XChat is a graphical IRC Client with a GTK+ GUI. It has a look and feel + similar to AmIRC for the Amiga. Special features include the mIRC extension + DCC RESUME and mIRC color, multiple server/channel windows, dialog + windows, and a plugin API. + . + Homepage: http://www.xchat.org/ + +Package: xchat-common +Architecture: all +Recommends: xchat +Depends: ${misc:Depends} +Description: Common files for X-Chat + This package includes documentation, examples, and locale files for + the Debian X-Chat packages that are common for all architectures. + . + Homepage: http://www.xchat.org/ --- xchat-2.8.0.orig/debian/xchat-common.docs +++ xchat-2.8.0/debian/xchat-common.docs @@ -0,0 +1,3 @@ +faq.html +README +plugins/plugin20.html --- xchat-2.8.0.orig/debian/copyright +++ xchat-2.8.0/debian/copyright @@ -0,0 +1,23 @@ +This package was debianized by David N. Welton davidw@cks.com on +Sun, 27 Sep 1998 14:15:53 -0700. +Sean C. Perry then maintained this package +from Oct 1998 to March 1999. +Edward C. Lang maintained this package +from March 1999 to November 2000. +Davide Puricelli (evo) is the actual maintainer. + +It was downloaded from + +Upstream Author: Peter Zelezny + +Copyright: + +X-Chat Copyright (c) 1998-2002 By Peter Zelezny. + +This program is released under the GPL with the additional exemption +that compiling, linking, and/or using OpenSSL is allowed. You may +provide binary packages linked to the OpenSSL libraries, provided that +all other requirements of the GPL are met. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License may be found in `/usr/share/common-licenses/GPL'. --- xchat-2.8.0.orig/debian/xchat.install +++ xchat-2.8.0/debian/xchat.install @@ -0,0 +1,4 @@ +debian/tmp/usr/share/applications/xchat.desktop ../xchat/usr/share/applications +debian/tmp/usr/share/pixmaps/xchat.png +debian/tmp/usr/bin/xchat ../xchat/usr/bin +debian/tmp/usr/lib/xchat --- xchat-2.8.0.orig/debian/xchat-common.install +++ xchat-2.8.0/debian/xchat-common.install @@ -0,0 +1,2 @@ +debian/tmp/usr/share/locale +debian/tmp/etc/ --- xchat-2.8.0.orig/debian/xchat-common.dirs +++ xchat-2.8.0/debian/xchat-common.dirs @@ -0,0 +1,4 @@ +usr/share/doc/xchat-common/scripts-perl +usr/share/icons +usr/include/xchat +etc/gconf/schemas --- xchat-2.8.0.orig/debian/xchat.manpages +++ xchat-2.8.0/debian/xchat.manpages @@ -0,0 +1 @@ +debian/xchat.1 --- xchat-2.8.0.orig/debian/xchat.menu +++ xchat-2.8.0/debian/xchat.menu @@ -0,0 +1,3 @@ +?package(xchat):needs="X11" section="Apps/Net"\ + title="X Chat" command="/usr/bin/xchat" hints="IRC"\ + icon="/usr/share/icons/xchat_mini.xpm" --- xchat-2.8.0.orig/debian/rules +++ xchat-2.8.0/debian/rules @@ -0,0 +1,95 @@ +#!/usr/bin/make -f +# -*- Makefile -*- + +include /usr/share/dpatch/dpatch.make + +export pythonpath=/usr/bin/python2.4 +export DH_COMPAT=4 + +CFLAGS= -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 + else + CFLAGS += -O2 +endif + +configure: patch-stamp configure-stamp +configure-stamp: + cp -f /usr/share/misc/config.sub . + cp -f /usr/share/misc/config.guess . + CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --sysconfdir=/etc --enable-python --enable-ipv6 \ + --disable-mmx --enable-openssl --enable-tcl=/usr/lib/tcl8.4 \ + --enable-dbus --disable-rpath + touch configure-stamp + +build: configure build-stamp +build-stamp: + dh_testdir + $(MAKE) + mv src/fe-gtk/xchat xchat + touch build-stamp + +clean: clean-stamp unpatch +clean-stamp: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub + rm -f config.guess + rm -f config.log + rm -f xchat xchat-gnome + rm -f po/*.gmo + rm -f build-stamp install-stamp configure-stamp po/stamp-po + rm -rf debian/tmp debian/xchat debian/xchat-common + rm -f src/common/dbus/org.xchat.service.service + dh_clean + +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install bindir=$(CURDIR)/debian/tmp/usr/bin libdir=$(CURDIR)/debian/tmp/usr/lib/xchat/plugins prefix=$(CURDIR)/debian/tmp/usr sysconfdir=$(CURDIR)/debian/tmp/etc servicedir=$(CURDIR)/debian/tmp/usr/share/dbus-1/services + dh_install + install -o root -g root -m 755 xchat $(CURDIR)/debian/xchat/usr/bin + install -o root -g root -m 644 plugins/perl/*.pl $(CURDIR)/debian/xchat-common/usr/share/doc/xchat-common/scripts-perl/ + install -o root -g root -m 644 src/common/xchat-plugin.h $(CURDIR)/debian/xchat-common/usr/include/xchat/ + install -o root -g root -m 644 debian/xchat_mini.xpm $(CURDIR)/debian/xchat-common/usr/share/icons/ + ln -s xchat-common $(CURDIR)/debian/xchat/usr/share/doc/xchat + cp debian/xchat.lintian.overrides $(CURDIR)/debian/xchat/usr/share/lintian/overrides/xchat + +binary-indep: build install + dh_testdir -pxchat-common + dh_testroot -pxchat-common + dh_installdocs -pxchat-common + dh_installmenu -pxchat-common + dh_installchangelogs ChangeLog -pxchat-common + dh_installman -pxchat-common + dh_compress -X.pl -pxchat-common + dh_gconf -pxchat-common + dh_fixperms -pxchat-common + dh_installdeb -pxchat-common + dh_gencontrol -pxchat-common + dh_md5sums -pxchat-common + dh_builddeb -pxchat-common + +binary-arch: build install + dh_testdir -pxchat + dh_testroot -pxchat + dh_installmenu -pxchat + dh_installman -pxchat + dh_link -pxchat +ifeq "$(findstring nostrip,$(DEB_BUILD_OPTIONS))" "" + dh_strip -pxchat +endif + dh_compress -pxchat + dh_fixperms -pxchat + dh_installdeb -pxchat + dh_shlibdeps -pxchat + dh_gencontrol -pxchat + dh_md5sums -pxchat + dh_builddeb -pxchat +binary: binary-indep binary-arch + +.PHONY: build clean clean-stamp binary-indep binary-arch binary install --- xchat-2.8.0.orig/debian/xchat_mini.xpm +++ xchat-2.8.0/debian/xchat_mini.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * xchat_mini_xpm[] = { +"16 16 17 1", +" c None", +". c #F0EDE8", +"+ c #D2D1D4", +"@ c #BAB9C1", +"# c #58524B", +"$ c #A19FA6", +"% c #120E10", +"& c #FED606", +"* c #AA8506", +"= c #5E2A06", +"- c #FCB006", +"; c #FE8206", +"> c #FE4A06", +", c #AC2A06", +"' c #FE3606", +") c #762206", +"! c #DB2406", +" .. .. ", +" $%*$ $*=@ ", +" #&&*$ @$&&# ", +" #&&&*@ @*&&&# ", +" .#&&-*$@#&--#. ", +" .#---*=---#. ", +" .#;-;-;;#. ", +" .$;;;;#. $ ", +" @@@$@@@@@+@+++ ", +" +%%%+%%++%%+ .%", +" +.+>.;#+...+$+ ", +" $,>>'#..#'>>=$ ", +" #'''#. .#'''# ", +" #!!#. .#'!# ", +" .@@. .@@. ", +" "}; + --- xchat-2.8.0.orig/data +++ xchat-2.8.0/data @@ -0,0 +1,12 @@ +src/fe-gtk/maingui.c:78:#define TAG_UTIL 1 /* dcc, notify, chanlist */ +src/fe-gtk/maingui.c:1450: /* dcc_send() expects utf-8 */ +src/fe-gtk/maingui.c:1454: dcc_send (sess, target, p, prefs.dcc_max_send_cps, 0); +src/fe-gtk/maingui.c:1622:mg_dcc_cb (GtkDialog *dialog, gint arg1, gpointer userdata) +src/fe-gtk/maingui.c:1630:mg_dcc_active (void) +src/fe-gtk/maingui.c:1633: struct DCC *dcc; +src/fe-gtk/maingui.c:1635: list = dcc_list; +src/fe-gtk/maingui.c:1638: dcc = list->data; +src/fe-gtk/maingui.c:1639: if ((dcc->type == TYPE_SEND || dcc->type == TYPE_RECV) && +src/fe-gtk/maingui.c:1640: dcc->dccstat == STAT_ACTIVE) +src/fe-gtk/maingui.c:1653: if (mg_dcc_active ()) +src/fe-gtk/maingui.c:1659: G_CALLBACK (mg_dcc_cb), NULL);