From 25c1dcad7d4e022f600e4c1926a559f0fd0b9617 Mon Sep 17 00:00:00 2001
From: Benedikt Meurer <benny@xfce.org>
Date: Wed, 1 Feb 2006 13:50:40 +0000
Subject: [PATCH] 2006-02-01	Benedikt Meurer <benny@xfce.org>

	* thunar-vfs/thunar-vfs-util.c(thunar_vfs_humanize_size): Use "kB"
	  instead of "KB".




(Old svn revision: 19704)
---
 ChangeLog                    | 5 +++++
 thunar-vfs/thunar-vfs-util.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 2785d8efb..a476ba91b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-01	Benedikt Meurer <benny@xfce.org>
+
+	* thunar-vfs/thunar-vfs-util.c(thunar_vfs_humanize_size): Use "kB"
+	  instead of "KB".
+
 2006-01-31	Benedikt Meurer <benny@xfce.org>
 
 	* thunar/thunar-standard-view.c: Disable the "create-document" action
diff --git a/thunar-vfs/thunar-vfs-util.c b/thunar-vfs/thunar-vfs-util.c
index f0a40505f..c54d23dcd 100644
--- a/thunar-vfs/thunar-vfs-util.c
+++ b/thunar-vfs/thunar-vfs-util.c
@@ -145,7 +145,7 @@ thunar_vfs_humanize_size (ThunarVfsFileSize size,
   else if (size > 1024ul * 1024ul)
     g_snprintf (buffer, buflen, "%0.1f MB", size / (1024.0 * 1024.0));
   else if (size > 1024ul)
-    g_snprintf (buffer, buflen, "%0.1f KB", size / 1024.0);
+    g_snprintf (buffer, buflen, "%0.1f kB", size / 1024.0);
   else
     g_snprintf (buffer, buflen, "%lu B", (gulong) size);
 
-- 
GitLab