comparison src/gtkconv.c @ 6089:97835d03f0bb

[gaim-migrate @ 6548] Claudio Satriano updated the it.po added some _() to gtkconv.c added some _() to server.c committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 11 Jul 2003 15:09:19 +0000
parents c99959f1bb73
children 00a251ad38af
comparison
equal deleted inserted replaced
6088:4314e6be74c4 6089:97835d03f0bb
3907 fd = open_log_file(filename, (conv_type == GAIM_CONV_CHAT)); 3907 fd = open_log_file(filename, (conv_type == GAIM_CONV_CHAT));
3908 3908
3909 if (fd) { 3909 if (fd) {
3910 if (!gaim_prefs_get_bool("/gaim/gtk/logging/strip_html")) 3910 if (!gaim_prefs_get_bool("/gaim/gtk/logging/strip_html"))
3911 fprintf(fd, 3911 fprintf(fd,
3912 "<HR><BR><H3 Align=Center> " 3912 _("<HR><BR><H3 Align=Center> "
3913 "---- New Conversation @ %s ----</H3><BR>\n", 3913 "---- New Conversation @ %s ----</H3><BR>\n"),
3914 full_date()); 3914 full_date());
3915 else 3915 else
3916 fprintf(fd, "---- New Conversation @ %s ----\n", 3916 fprintf(fd, _("---- New Conversation @ %s ----\n"),
3917 full_date()); 3917 full_date());
3918 3918
3919 fclose(fd); 3919 fclose(fd);
3920 } 3920 }
3921 } 3921 }