diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index 10b727b0a5..9efd9ad4d2 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -9,6 +9,7 @@ 3. All your modified/created strings are in the top of the file (to make easier find what\'s translated). PLEASE: Have a look at http://code.google.com/p/osmand/wiki/UIConsistency, it may really improve your and our work :-) Thx - Hardy --> + Address is not known yet Gpx file with note locations Locations Plugins diff --git a/OsmAnd/src/net/osmand/plus/mapcontextmenu/MapContextMenu.java b/OsmAnd/src/net/osmand/plus/mapcontextmenu/MapContextMenu.java index 1f696ba148..8f6872b852 100644 --- a/OsmAnd/src/net/osmand/plus/mapcontextmenu/MapContextMenu.java +++ b/OsmAnd/src/net/osmand/plus/mapcontextmenu/MapContextMenu.java @@ -62,7 +62,7 @@ public class MapContextMenu { this.object = object; foundStreetName = null; - acquireStretName(mapActivity, new LatLon(pointDescription.getLat(), pointDescription.getLon())); + acquireStreetName(mapActivity, new LatLon(pointDescription.getLat(), pointDescription.getLon())); MapContextMenuFragment.showInstance(mapActivity); @@ -142,7 +142,7 @@ public class MapContextMenu { return foundStreetName; } - private void acquireStretName(final MapActivity activity, final LatLon loc) { + private void acquireStreetName(final MapActivity activity, final LatLon loc) { new AsyncTask() { Exception e = null;