|
From: Luke S. <lsc...@us...> - 2003-11-17 15:24:28
|
Update of /cvsroot/gaim/gaim/src
In directory sc8-pr-cvs1:/tmp/cvs-serv27756/src
Modified Files:
log.c
Log Message:
"I have updated the German translation.
i18n39.patch contains:
- updated German translation
- removed some i18n strings from src/log.c as I see only HTML and
the pseudo HTML-Tag <AUTO-REPLY>
Regards, Bjoern"
Index: log.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/log.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -p -r1.53 -r1.54
--- log.c 17 Nov 2003 03:40:17 -0000 1.53
+++ log.c 17 Nov 2003 15:23:45 -0000 1.54
@@ -446,9 +446,9 @@ static void html_logger_write(GaimLog *l
date, from, message);
else if (type & GAIM_MESSAGE_AUTO_RESP) {
if (type & GAIM_MESSAGE_SEND)
- fprintf(log->logger_data, _("<font color=\"#16569E\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n"), date, from, message);
+ fprintf(log->logger_data, "<font color=\"#16569E\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n", date, from, message);
else if (type & GAIM_MESSAGE_RECV)
- fprintf(log->logger_data, _("<font color=\"#A82F2F\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n"), date, from, message);
+ fprintf(log->logger_data, "<font color=\"#A82F2F\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n", date, from, message);
} else if (type & GAIM_MESSAGE_RECV)
fprintf(log->logger_data, "<font color=\"#A82F2F\">(%s) <b>%s:</b></font> <font sml=\"%s\">%s</font><br/>\n",
date, from, gc->prpl->info->name, message);
@@ -570,7 +570,7 @@ static void txt_logger_write(GaimLog *lo
else if (type & GAIM_MESSAGE_SYSTEM)
fprintf(log->logger_data, "(%s) %s\n", date, stripped);
else if (type & GAIM_MESSAGE_AUTO_RESP)
- fprintf(log->logger_data, _("(%s) %s <AUTO-REPLY>: %s\n"), date, from, stripped);
+ fprintf(log->logger_data, "(%s) %s <AUTO-REPLY>: %s\n", date, from, stripped);
else if (type & GAIM_MESSAGE_NO_LOG) {
/* This shouldn't happen */
g_free(stripped);
|