Mercurial > pidgin
changeset 8781:d3c0203d4961
[gaim-migrate @ 9543]
Put the \n's before each additional line in the tooltip.
Someone should check this, as I don't think I can.
Also, is it bad that I'm separating the "Status" string from the
"<b>%s</b>: %s"? I'm pretty sure it's easier to translate this way...
But does it destroy right-to-left languages? And if so, what's
the best fix for that?
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 23 Apr 2004 23:08:11 +0000 |
parents | a34678b8beda |
children | 5a2b5e4abf3a |
files | src/protocols/novell/novell.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/novell/novell.c Fri Apr 23 23:04:25 2004 +0000 +++ b/src/protocols/novell/novell.c Fri Apr 23 23:08:11 2004 +0000 @@ -2161,11 +2161,13 @@ } if (text) - ret_text = g_strdup_printf(_("<b>Status:</b> %s\n" - "<b>Message:</b> %s"), - status_str, text); + ret_text = g_strdup_printf("\n<b>%s:</b> %s" + "\n<b>%s:</b> %s", + _("Status"), status_str, + _("Message"), text); else - ret_text = g_strdup_printf(_("<b>Status:</b> %s"), status_str); + ret_text = g_strdup_printf("\n<b>%s:</b> %s", + _("Status"), status_str); } }