diff pidgin/gtkft.c @ 18129:16f3919b78f5

Use the IEC binary units to match our math. Fixes #1684
author Richard Laager <rlaager@wiktel.com>
date Sat, 16 Jun 2007 22:32:54 +0000
parents 40d51793f2d7
children 44b4e8bd759b
line wrap: on
line diff
--- a/pidgin/gtkft.c	Sat Jun 16 22:01:53 2007 +0000
+++ b/pidgin/gtkft.c	Sat Jun 16 22:32:54 2007 +0000
@@ -130,7 +130,7 @@
 	kbps    = (elapsed > 0 ? (kb_sent / elapsed) : 0);
 
 	if (kbsec != NULL) {
-		*kbsec = g_strdup_printf(_("%.2f KB/s"), kbps);
+		*kbsec = g_strdup_printf(_("%.2f KiB/s"), kbps);
 	}
 
 	if (time_elapsed != NULL)