Updated Spanish and Galego

This commit is contained in:
Michiel Broek 2003-04-07 20:18:16 +00:00
parent f01d13146e
commit 03f3cb1c12
3 changed files with 21 additions and 14 deletions

View File

@ -9,12 +9,12 @@ SN|
|Password: |Password:
|Sobrepasouse o n£mero m ximo de erros permitido... |Sobrepasouse o n£mero m ximo de erros permitido...
|O teu nome ou a tua PASSWORD son incorrectos |O teu nome ou a tua PASSWORD son incorrectos
HR|Export to (H)ome or (R)ules directory: HR|Exportar ¢ directrio (P)ersoal ou ¢ de (R)egras:
|Message exported to rules directory as |Mesaxe exportada ¢ directorio de regras coma
|No rules found for this area |Non se atopan regras pra esta  rea
|You are not allowed to delete that message |No podes borrar esta mensaxe.
|Offline Reader: Extended Info turned ON |Lector Offline: Informaci¢n extendida ACTIVADA
|Offline Reader: Extended Info turned OFF |Lector Offline: Informaci¢n extendida DESACTIVADA
|Tempo retirado hoxe : |Tempo retirado hoxe :
|Bytes retirados hoxe : |Bytes retirados hoxe :
DRS|(D)epositar, (R)etirar, (S)air : DRS|(D)epositar, (R)etirar, (S)air :
@ -477,4 +477,4 @@ YN|Adxuntar ficheiro [s/N]:
|Enderezo vello: |Enderezo vello:
|¨Queres usa-lo alias ( |¨Queres usa-lo alias (
SN|) nesta mensaxe? [S/n]: SN|) nesta mensaxe? [S/n]:
|No more areas with unread messages |Non hai mais  reas con mensaxes sen ler.

View File

@ -9,12 +9,12 @@ SN|
|Password: |Password:
|El n£mero de errores permitidos se ha sobrepasado ... |El n£mero de errores permitidos se ha sobrepasado ...
|Tu nombre o tu PASSWORD son incorrectos |Tu nombre o tu PASSWORD son incorrectos
HR|Export to (H)ome or (R)ules directory: PR|Exportar al directorio (P)ersonal o de (R)eglas:
|Message exported to rules directory as |Mensaje exportado al deirectorio de reglas como
|No rules found for this area |No se encuentran reglas para este  rea.
|You are not allowed to delete that message |No puedes borrar este Mensaje.
|Offline Reader: Extended Info turned ON |Lector Offline: Informaci¢n extendida ACTIVADA
|Offline Reader: Extended Info turned OFF |Lector Offline: Informaci¢n extendida DESACTIVADA
|Tiempo retirado hoy : |Tiempo retirado hoy :
|Bytes retirados hoy : |Bytes retirados hoy :
DRS|(D)epositar, (R)etirar, (S)alir : DRS|(D)epositar, (R)etirar, (S)alir :

View File

@ -348,12 +348,19 @@ void chat_cleanuser(pid_t pid)
void chat_msg(int channel, char *nick, char *msg) void chat_msg(int channel, char *nick, char *msg)
{ {
int i; int i;
char buf[128]; char buf[128], *log;
if (nick == NULL) if (nick == NULL)
sprintf(buf, "%s", msg); sprintf(buf, "%s", msg);
else else
sprintf(buf, "<%s> %s", nick, msg); sprintf(buf, "<%s> %s", nick, msg);
if (CFG.iAutoLog && strlen(CFG.chat_log)) {
log = calloc(PATH_MAX, sizeof(char));
sprintf(log, "%s/log/%s", getenv("MBSE_ROOT"), CFG.chat_log);
ulog(log, (char *)"+", chat_channels[channel].name, (char *)"-1", buf);
free(log);
}
buf[79] = '\0'; buf[79] = '\0';
for (i = 0; i < MAXCLIENT; i++) { for (i = 0; i < MAXCLIENT; i++) {