src/protocols/irc/msgs.c

changeset 13546
0700f0c29e14
parent 13534
637a369ac8b0
child 13638
92172db48396
equal deleted inserted replaced
13545:4647ec0d8a83 13546:0700f0c29e14
225 } 225 }
226 if (irc->whois.userhost) { 226 if (irc->whois.userhost) {
227 tmp = g_markup_escape_text(irc->whois.name, strlen(irc->whois.name)); 227 tmp = g_markup_escape_text(irc->whois.name, strlen(irc->whois.name));
228 g_free(irc->whois.name); 228 g_free(irc->whois.name);
229 g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Username"), irc->whois.userhost); 229 g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Username"), irc->whois.userhost);
230 g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Realname"), tmp); 230 g_string_append_printf(info, _("<b>%s:</b> %s<br>"), _("Real name"), tmp);
231 g_free(irc->whois.userhost); 231 g_free(irc->whois.userhost);
232 g_free(tmp); 232 g_free(tmp);
233 } 233 }
234 if (irc->whois.server) { 234 if (irc->whois.server) {
235 g_string_append_printf(info, _("<b>%s:</b> %s"), _("Server"), irc->whois.server); 235 g_string_append_printf(info, _("<b>%s:</b> %s"), _("Server"), irc->whois.server);

mercurial