comparison src/util.c @ 9220:f0488214826f

[gaim-migrate @ 10016] wing made yahoo profiles even better. They now include all the tooltip info, and also include a link to the profile, so you can open it in your browser with just a click. He also says: Note: I added _() to some "<b>%s:</b> %s" sort of strings, because otherwise the display would be very ugly. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Sun, 06 Jun 2004 18:01:32 +0000
parents 3e2ea5b69605
children 316b1afb5974
comparison
equal deleted inserted replaced
9219:ec2a51abcc71 9220:f0488214826f
784 784
785 if (q != NULL && (!no_value_token || 785 if (q != NULL && (!no_value_token ||
786 (no_value_token && strncmp(p, no_value_token, 786 (no_value_token && strncmp(p, no_value_token,
787 strlen(no_value_token))))) 787 strlen(no_value_token)))))
788 { 788 {
789 g_string_append(dest, "<b>"); 789 g_string_append_printf(dest, _("<b>%s:</b> "), display_name);
790 g_string_append(dest, display_name);
791 g_string_append(dest, ":</b> ");
792 790
793 if (is_link) 791 if (is_link)
794 { 792 {
795 g_string_append(dest, "<br><a href=\""); 793 g_string_append(dest, "<br><a href=\"");
796 794