[gnome-bluetooth] sendto: symbol for decimal kilobyte is kB according to the International System of Units (SI)



commit 8067279e75fb24f36a59bdf2d38f9ed2b7648ff2
Author: Daniele Forsi <dforsi src gnome org>
Date:   Sun May 6 15:38:51 2012 +0200

    sendto: symbol for decimal kilobyte is kB according to the International System of Units (SI)
    
    See http://en.wikipedia.org/wiki/Kilobyte
    Using the decimal unit because it's divided by 1000.

 sendto/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/sendto/main.c b/sendto/main.c
index de0e6ff..c27bce6 100644
--- a/sendto/main.c
+++ b/sendto/main.c
@@ -517,7 +517,7 @@ static gboolean progress_callback(GDBusMethodInvocation *invocation,
 	time = format_time(remaining_time);
 
 	if (transfer_rate >= 3000)
-		rate = g_strdup_printf(_("%d KB/s"), transfer_rate / 1000);
+		rate = g_strdup_printf(_("%d kB/s"), transfer_rate / 1000);
 	else
 		rate = g_strdup_printf(_("%d B/s"), transfer_rate);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]