Index: trunk/src/org/openstreetmap/josm/gui/preferences/imagery/CacheContentsPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/preferences/imagery/CacheContentsPanel.java	(revision 14630)
+++ trunk/src/org/openstreetmap/josm/gui/preferences/imagery/CacheContentsPanel.java	(revision 14631)
@@ -9,4 +9,5 @@
 import java.util.Comparator;
 import java.util.List;
+import java.util.Locale;
 import java.util.Map;
 import java.util.Map.Entry;
@@ -37,4 +38,5 @@
 import org.openstreetmap.josm.tools.Logging;
 import org.openstreetmap.josm.tools.Pair;
+import org.openstreetmap.josm.tools.Utils;
 
 /**
@@ -60,8 +62,9 @@
     private void addToPanel(final CacheAccess<String, BufferedImageCacheEntry> cache, final String name) {
         final Long cacheSize = getCacheSize(cache);
+        final String sizeString = Utils.getSizeString(cacheSize, Locale.getDefault());
         final TableModel tableModel = getTableModel(cache);
 
         GuiHelper.runInEDT(() -> {
-            add(new JLabel(tr("{0} cache, total cache size: {1} bytes", name, cacheSize)),
+            add(new JLabel(tr("{0} cache, total cache size: {1}", name, sizeString)),
                 GBC.eol().insets(5, 5, 0, 0));
             add(new JScrollPane(getTableForCache(cache, tableModel)),
