# HG changeset patch # User Mark Doliner # Date 1134326216 0 # Node ID a25babbba950a74663103dd06b99ba9e20d8196b # Parent 75ee52a292d2aed626703a02492dbdb83d3f02cf [gaim-migrate @ 14759] Get rid of a space when showing the idle time in the status text when using the big list. committer: Tailor Script diff -r 75ee52a292d2 -r a25babbba950 src/gtkblist.c --- 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)