Sun, 11 Dec 2005 18:36:56 +0000
[gaim-migrate @ 14759]
Get rid of a space when showing the idle time in the status text
when using the big list.
| src/gtkblist.c | file | annotate | diff | comparison | revisions |
--- a/src/gtkblist.c Sun Dec 11 18:36:26 2005 +0000 +++ b/src/gtkblist.c Sun Dec 11 18:36:56 2005 +0000 @@ -2972,12 +2972,12 @@ imin = ((t - idle_secs) / 60) % 60; if (ihrs) - idletime = g_strdup_printf(_("Idle %dh %02dm "), ihrs, imin); + idletime = g_strdup_printf(_("Idle %dh %02dm"), ihrs, imin); else - idletime = g_strdup_printf(_("Idle %dm "), imin); + idletime = g_strdup_printf(_("Idle %dm"), imin); } else - idletime = g_strdup(_("Idle ")); + idletime = g_strdup(_("Idle")); } if(!GAIM_BUDDY_IS_ONLINE(b) && !statustext)