Added text constant

This commit is contained in:
Alexey Kulish 2015-09-21 10:40:24 +03:00
parent 9610923dbc
commit 24fe7e5358
2 changed files with 3 additions and 2 deletions

View file

@ -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
-->
<string name="address_unknown">Address is not known yet</string>
<string name="av_locations_descr">Gpx file with note locations</string>
<string name="av_locations">Locations</string>
<string name="plugin_settings">Plugins</string>

View file

@ -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<LatLon, Void, RouteDataObject>() {
Exception e = null;