From dab43c59022ffed64491a489eee8a25a19e94969 Mon Sep 17 00:00:00 2001 From: Rodolfo Date: Wed, 19 Jun 2013 15:15:26 +0300 Subject: [PATCH] Update LocalIndexesActivity.java typo --- OsmAnd/src/net/osmand/plus/activities/LocalIndexesActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/activities/LocalIndexesActivity.java b/OsmAnd/src/net/osmand/plus/activities/LocalIndexesActivity.java index 9ff4e9517d..aed5f53ff5 100644 --- a/OsmAnd/src/net/osmand/plus/activities/LocalIndexesActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/LocalIndexesActivity.java @@ -937,7 +937,7 @@ public class LocalIndexesActivity extends OsmandExpandableListActivity { if (child.getSize() > 100) { size = formatMb.format(new Object[] { (float) child.getSize() / (1 << 10) }); } else { - size = child.getSize() + " Kb"; + size = child.getSize() + " kB"; } ((TextView) v.findViewById(R.id.local_index_size)).setText(size); } else {