diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml
index 8f8780bcba..e9276ef47b 100644
--- a/OsmAnd/res/values/strings.xml
+++ b/OsmAnd/res/values/strings.xml
@@ -35,7 +35,7 @@
Major part of the income goes back to OSM community and is paid out per each OSM contribution.
In case you love OsmAnd and OSM and want to support it, this is a perfect way to do it.
- Select Map marker
+ Select map marker
Other markers
Upload anonymously
Show transparency seekbar
@@ -50,15 +50,15 @@
Currently, there are {2} MB available.
You can upload your OSM Note anonymously if you use your OpenStreetMap.org profile.
Upload OSM Note
- First Map marker
- Second Map marker
+ First map marker
+ Second map marker
Toolbar
Widgets
- Do you want to add all points to Map markers?
- Add to Map markers
- Select Map markers
+ Do you want to add all points to map markers?
+ Add to map markers
+ Select map markers
Reverse order
- Activate Map markers feature
+ Activate map markers feature
Do you want to delete all active markers?
Do you want to clear markers history?
Active markers
diff --git a/OsmAnd/src/net/osmand/plus/OsmandSettings.java b/OsmAnd/src/net/osmand/plus/OsmandSettings.java
index 8cc8957754..fa9972e181 100644
--- a/OsmAnd/src/net/osmand/plus/OsmandSettings.java
+++ b/OsmAnd/src/net/osmand/plus/OsmandSettings.java
@@ -1143,7 +1143,7 @@ public class OsmandSettings {
public final OsmandPreference SHOULD_SHOW_FREE_VERSION_BANNER = new BooleanPreference("should_show_free_version_banner", false).makeGlobal().cache();
- public final OsmandPreference USE_MAP_MARKERS = new BooleanPreference("use_map_markers", true).makeGlobal().cache();
+ public final OsmandPreference USE_MAP_MARKERS = new BooleanPreference("use_map_markers", false).makeGlobal().cache();
public final CommonPreference MAP_MARKERS_MODE =
new EnumIntPreference<>("map_markers_mode", MapMarkersMode.TOOLBAR, MapMarkersMode.values());