comparison src/conversation.c @ 4309:5978e3d53f29

[gaim-migrate @ 4563] Nicola's Lichtmaier (niqueco) provided more _() and a new es.po committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 13 Jan 2003 16:56:33 +0000
parents 650454171e0e
children f38956587637
comparison
equal deleted inserted replaced
4308:b3a14484fc2f 4309:5978e3d53f29
148 148
149 fd = open_log_file(c->name, c->is_chat); 149 fd = open_log_file(c->name, c->is_chat);
150 if (fd) { 150 if (fd) {
151 if (!(logging_options & OPT_LOG_STRIP_HTML)) 151 if (!(logging_options & OPT_LOG_STRIP_HTML))
152 fprintf(fd, 152 fprintf(fd,
153 "<HR><BR><H3 Align=Center> ---- New Conversation @ %s ----</H3><BR>\n", 153 _("<HR><BR><H3 Align=Center> ---- New Conversation @ %s ----</H3><BR>\n"),
154 full_date()); 154 full_date());
155 else 155 else
156 fprintf(fd, " ---- New Conversation @ %s ----\n", full_date()); 156 fprintf(fd, _(" ---- New Conversation @ %s ----\n"), full_date());
157 fclose(fd); 157 fclose(fd);
158 } else 158 } else
159 /* do we want to do something here? */ ; 159 /* do we want to do something here? */ ;
160 } 160 }
161 161