comparison src/log.c @ 7539:d519d7940db5

[gaim-migrate @ 8152] "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" committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 17 Nov 2003 15:23:45 +0000
parents f771759739c1
children 60a3721eed2a
comparison
equal deleted inserted replaced
7538:357eb1c39b72 7539:d519d7940db5
444 else if (type & GAIM_MESSAGE_WHISPER) 444 else if (type & GAIM_MESSAGE_WHISPER)
445 fprintf(log->logger_data, "<font color=\"#6C2585\">(%s)<b> %s:</b></font> %s<br/>\n", 445 fprintf(log->logger_data, "<font color=\"#6C2585\">(%s)<b> %s:</b></font> %s<br/>\n",
446 date, from, message); 446 date, from, message);
447 else if (type & GAIM_MESSAGE_AUTO_RESP) { 447 else if (type & GAIM_MESSAGE_AUTO_RESP) {
448 if (type & GAIM_MESSAGE_SEND) 448 if (type & GAIM_MESSAGE_SEND)
449 fprintf(log->logger_data, _("<font color=\"#16569E\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n"), date, from, message); 449 fprintf(log->logger_data, "<font color=\"#16569E\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n", date, from, message);
450 else if (type & GAIM_MESSAGE_RECV) 450 else if (type & GAIM_MESSAGE_RECV)
451 fprintf(log->logger_data, _("<font color=\"#A82F2F\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n"), date, from, message); 451 fprintf(log->logger_data, "<font color=\"#A82F2F\">(%s) <b>%s <AUTO-REPLY>:</b></font> %s<br/>\n", date, from, message);
452 } else if (type & GAIM_MESSAGE_RECV) 452 } else if (type & GAIM_MESSAGE_RECV)
453 fprintf(log->logger_data, "<font color=\"#A82F2F\">(%s) <b>%s:</b></font> <font sml=\"%s\">%s</font><br/>\n", 453 fprintf(log->logger_data, "<font color=\"#A82F2F\">(%s) <b>%s:</b></font> <font sml=\"%s\">%s</font><br/>\n",
454 date, from, gc->prpl->info->name, message); 454 date, from, gc->prpl->info->name, message);
455 else if (type & GAIM_MESSAGE_SEND) 455 else if (type & GAIM_MESSAGE_SEND)
456 fprintf(log->logger_data, "<font color=\"#16569E\">(%s) <b>%s:</b></font> <font sml=\"%s\">%s</font><br/>\n", 456 fprintf(log->logger_data, "<font color=\"#16569E\">(%s) <b>%s:</b></font> <font sml=\"%s\">%s</font><br/>\n",
568 type & GAIM_MESSAGE_RECV) 568 type & GAIM_MESSAGE_RECV)
569 fprintf(log->logger_data, "(%s) %s: %s\n", date, from, stripped); 569 fprintf(log->logger_data, "(%s) %s: %s\n", date, from, stripped);
570 else if (type & GAIM_MESSAGE_SYSTEM) 570 else if (type & GAIM_MESSAGE_SYSTEM)
571 fprintf(log->logger_data, "(%s) %s\n", date, stripped); 571 fprintf(log->logger_data, "(%s) %s\n", date, stripped);
572 else if (type & GAIM_MESSAGE_AUTO_RESP) 572 else if (type & GAIM_MESSAGE_AUTO_RESP)
573 fprintf(log->logger_data, _("(%s) %s <AUTO-REPLY>: %s\n"), date, from, stripped); 573 fprintf(log->logger_data, "(%s) %s <AUTO-REPLY>: %s\n", date, from, stripped);
574 else if (type & GAIM_MESSAGE_NO_LOG) { 574 else if (type & GAIM_MESSAGE_NO_LOG) {
575 /* This shouldn't happen */ 575 /* This shouldn't happen */
576 g_free(stripped); 576 g_free(stripped);
577 return; 577 return;
578 } else if (type & GAIM_MESSAGE_WHISPER) 578 } else if (type & GAIM_MESSAGE_WHISPER)