[gaim-migrate @ 14759]

Sun, 11 Dec 2005 18:36:56 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Sun, 11 Dec 2005 18:36:56 +0000
changeset 12450
39c1b70f3997
parent 12449
c8064ff2bea5
child 12451
d9feea46dac4

[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)

mercurial