Merge pull request #459 from rododevr/patch-54

Update LocalIndexesActivity.java
This commit is contained in:
Hardy 2013-06-19 06:13:10 -07:00
commit 39f88d546b

View file

@ -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 {