changeset 12450:a25babbba950

[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 <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 11 Dec 2005 18:36:56 +0000
parents 75ee52a292d2
children 933fda51587e
files src/gtkblist.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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)