Mercurial > pidgin
comparison src/gtkblist.c @ 8591:f96795b786d2
[gaim-migrate @ 9342]
Alright, I had to get my tooltip construction deuglification on.
I removed the \n between the core's tooltip and the prpl's tooltip.
prpl's should PREpend a \n to each line they add to the tooltip
instead of APpending. This way you don't have to worry about
removing trailing newline... it makes a lot more sense to me.
I also changed oscar and trepia to use g_strings instead of
g_strdup_printf and g_strconcat. G strings are sexy.
And I apologize to the translators for changing some strings
(separated some html and some text).
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 06 Apr 2004 02:28:01 +0000 |
parents | 5af95c2b1179 |
children | 1dde34c45c5b |
comparison
equal
deleted
inserted
replaced
8590:de3d7eb3fc86 | 8591:f96795b786d2 |
---|---|
2440 aliastext ? _("\n<b>Alias:</b>") : "", aliastext ? aliastext : "", | 2440 aliastext ? _("\n<b>Alias:</b>") : "", aliastext ? aliastext : "", |
2441 nicktext ? _("\n<b>Nickname:</b>") : "", nicktext ? nicktext : "", | 2441 nicktext ? _("\n<b>Nickname:</b>") : "", nicktext ? nicktext : "", |
2442 loggedin ? _("\n<b>Logged In:</b>") : "", loggedin ? loggedin : "", | 2442 loggedin ? _("\n<b>Logged In:</b>") : "", loggedin ? loggedin : "", |
2443 idletime ? _("\n<b>Idle:</b>") : "", idletime ? idletime : "", | 2443 idletime ? _("\n<b>Idle:</b>") : "", idletime ? idletime : "", |
2444 b->evil ? _("\n<b>Warned:</b>") : "", b->evil ? warning : "", | 2444 b->evil ? _("\n<b>Warned:</b>") : "", b->evil ? warning : "", |
2445 statustext ? "\n" : "", statustext ? statustext : "", | 2445 statustext ? "" : "", statustext ? statustext : "", |
2446 !g_ascii_strcasecmp(b->name, "robflynn") ? _("\n<b>Description:</b> Spooky") : | 2446 !g_ascii_strcasecmp(b->name, "robflynn") ? _("\n<b>Description:</b> Spooky") : |
2447 !g_ascii_strcasecmp(b->name, "seanegn") ? _("\n<b>Status</b>: Awesome") : | 2447 !g_ascii_strcasecmp(b->name, "seanegn") ? _("\n<b>Status</b>: Awesome") : |
2448 !g_ascii_strcasecmp(b->name, "chipx86") ? _("\n<b>Status</b>: Rockin'") : ""); | 2448 !g_ascii_strcasecmp(b->name, "chipx86") ? _("\n<b>Status</b>: Rockin'") : ""); |
2449 | 2449 |
2450 if(warning) | 2450 if(warning) |