diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml
index 6142915ead..434445e3da 100644
--- a/OsmAnd/res/values/strings.xml
+++ b/OsmAnd/res/values/strings.xml
@@ -18,7 +18,7 @@
Favourites search
Search history
Osmand offline navigation is temporarily not available.
- Left-Hand Driving
+ Left-hand driving
Select for countries with left-hand traffic
Click here to download or update offline data. \nClick any existing item to see more details, press and hold to deactivate or delete. Current data on device (%1$s free):
Starting location is not yet determined
@@ -42,18 +42,12 @@
Configure the map display
This plugin facilitates using a variety of online or cached tile maps as base map or as overlay / underlay maps. These maps can also be prepared offline and copied to the Osmand folder.
- Online Maps
- This plugin allows tracking or navigation in power saving (screen off) mode by periodically waking up the GPS device to record a track point or play a voice prompt.
- Screen Off Features
+ This plugin allows tracking or navigation in sleep (screen off) mode by periodically waking up the GPS device to record a track point or play a voice prompt.
This plugin configures special accessibility features.
- Accessibility
Advanced settings
This plugin facilitates recording your trips to GPX files or live tracking using a web service.
- Tracking
This plugin provides advanced map configuration and some device-specific settings.
- Advanced Settings
This plugin enables development and debugging features like animated navigation or rendering performance display.
- Osmand Development
Plugin Manager
Touch a Plugin to activate or deactivate it. (Restarting Osmand may be required.)
Plugins provide extra functionality bundled within the application like tracking, tile maps, screen off mode, accessibility settings, and others.
@@ -64,11 +58,10 @@
\n\t- Lots of bug fixes
This plugin facilitates OSM feedback like collecting / modifying OSM POI objects, opening / commenting OSM bugs, and contributing recorded GPX files (requires OSM credentials).
- OSM Editing
Vector maps likely display faster. May not work well on some devices.
Simulate route progression manually
Play commands of currently selected voice
- Osmand debugging and development
+ Osmand development
Native rendering
Animate navigation
Test voice prompts
@@ -224,7 +217,7 @@
User Profile
Select a user profile. Each profile contains the set of specific settings.
- - Tracking
+ Tracking
Specify tracking settings
- Navigation
Specify navigation options
@@ -237,7 +230,7 @@
Needed for openstreetmap.org submissions
Your OSM password
Needed for openstreetmap.org submissions
- Background Settings
+ Sleep Mode Functionality
Use to run Osmand while screen is off
@@ -263,7 +256,7 @@
Improving OSM Data
\tOsmand uses maps based on Openstreetmap.org (OSM) data and -besides map viewing and navigation- can be used to improve OSM data quality. You can easily create and upload new POI or OSM bug reports with just a few clicks!
- \n\tFor this you need to first provide your OSM login information in \'Settings\' -> \'General settings\' -> \'OSM\'.
+ \n\tFor this you need to first provide your OSM login information in \'Settings\' -> \'General settings\' -> \'OSM Editing\'.
\n\tTo add a new POI use option \'Create POI\' in the map context menu. Proceed with entering the information about the new POI in \'Create POI\' dialog and finally commit it.
\n\tErrors in maps can immediately be reported via OSM bug, and OSM community can then faster fix this problem.
\n\tTo add a OSM bug use option \'Open OSM bug\' in the map context menu. Then enter the detailed description of the problem and finally post it using the \'Add\' button.
@@ -852,7 +845,7 @@
Specify language, download/reload data
Data
Specify map settings: map source, rotation, marker position, screen orientation
- OSM
+ OSM Editing
Auto zoom map according to your speed
Auto zoom map
Additional settings
diff --git a/OsmAnd/src/net/osmand/access/AccessibilityPlugin.java b/OsmAnd/src/net/osmand/access/AccessibilityPlugin.java
index 7c8821e189..63a5fc2e3d 100644
--- a/OsmAnd/src/net/osmand/access/AccessibilityPlugin.java
+++ b/OsmAnd/src/net/osmand/access/AccessibilityPlugin.java
@@ -39,7 +39,7 @@ public class AccessibilityPlugin extends OsmandPlugin {
}
@Override
public String getName() {
- return app.getString(R.string.osmand_accessibility_name);
+ return app.getString(R.string.accessibility_preferences);
}
@Override
public void registerLayers(MapActivity activity) {
diff --git a/OsmAnd/src/net/osmand/plus/background/OsmandBackgroundServicePlugin.java b/OsmAnd/src/net/osmand/plus/background/OsmandBackgroundServicePlugin.java
index e79f73f4ab..97417745ed 100644
--- a/OsmAnd/src/net/osmand/plus/background/OsmandBackgroundServicePlugin.java
+++ b/OsmAnd/src/net/osmand/plus/background/OsmandBackgroundServicePlugin.java
@@ -46,7 +46,7 @@ public class OsmandBackgroundServicePlugin extends OsmandPlugin {
}
@Override
public String getName() {
- return app.getString(R.string.osmand_background_plugin_name);
+ return app.getString(R.string.osmand_service);
}
@Override
public void registerLayers(MapActivity activity) {
diff --git a/OsmAnd/src/net/osmand/plus/development/OsmandDevelopmentPlugin.java b/OsmAnd/src/net/osmand/plus/development/OsmandDevelopmentPlugin.java
index d1e2c0064b..a43d8d8623 100644
--- a/OsmAnd/src/net/osmand/plus/development/OsmandDevelopmentPlugin.java
+++ b/OsmAnd/src/net/osmand/plus/development/OsmandDevelopmentPlugin.java
@@ -38,7 +38,7 @@ public class OsmandDevelopmentPlugin extends OsmandPlugin {
}
@Override
public String getName() {
- return app.getString(R.string.osmand_development_plugin_name);
+ return app.getString(R.string.debugging_and_development);
}
@Override
public void registerLayers(MapActivity activity) {
diff --git a/OsmAnd/src/net/osmand/plus/extrasettings/OsmandExtraSettings.java b/OsmAnd/src/net/osmand/plus/extrasettings/OsmandExtraSettings.java
index 80f950df79..3b46a90ae1 100644
--- a/OsmAnd/src/net/osmand/plus/extrasettings/OsmandExtraSettings.java
+++ b/OsmAnd/src/net/osmand/plus/extrasettings/OsmandExtraSettings.java
@@ -39,7 +39,7 @@ public class OsmandExtraSettings extends OsmandPlugin {
}
@Override
public String getName() {
- return app.getString(R.string.osmand_extra_settings_name);
+ return app.getString(R.string.extra_settings);
}
@Override
public void registerLayers(MapActivity activity) {
diff --git a/OsmAnd/src/net/osmand/plus/monitoring/OsmandMonitoringPlugin.java b/OsmAnd/src/net/osmand/plus/monitoring/OsmandMonitoringPlugin.java
index 540eeebc50..dc18cd96b1 100644
--- a/OsmAnd/src/net/osmand/plus/monitoring/OsmandMonitoringPlugin.java
+++ b/OsmAnd/src/net/osmand/plus/monitoring/OsmandMonitoringPlugin.java
@@ -50,7 +50,7 @@ public class OsmandMonitoringPlugin extends OsmandPlugin {
}
@Override
public String getName() {
- return app.getString(R.string.osmand_monitoring_name);
+ return app.getString(R.string.monitor_preferences);
}
@Override
public void registerLayers(MapActivity activity) {
diff --git a/OsmAnd/src/net/osmand/plus/osmedit/OsmEditingPlugin.java b/OsmAnd/src/net/osmand/plus/osmedit/OsmEditingPlugin.java
index a70dc714d0..186794ec28 100644
--- a/OsmAnd/src/net/osmand/plus/osmedit/OsmEditingPlugin.java
+++ b/OsmAnd/src/net/osmand/plus/osmedit/OsmEditingPlugin.java
@@ -158,7 +158,7 @@ public class OsmEditingPlugin extends OsmandPlugin {
@Override
public String getName() {
- return app.getString(R.string.osm_editing_plugin_name);
+ return app.getString(R.string.osm_settings);
}
}
diff --git a/OsmAnd/src/net/osmand/plus/rastermaps/OsmandRasterMapsPlugin.java b/OsmAnd/src/net/osmand/plus/rastermaps/OsmandRasterMapsPlugin.java
index 79f562778d..0110f0ac5f 100644
--- a/OsmAnd/src/net/osmand/plus/rastermaps/OsmandRasterMapsPlugin.java
+++ b/OsmAnd/src/net/osmand/plus/rastermaps/OsmandRasterMapsPlugin.java
@@ -64,7 +64,7 @@ public class OsmandRasterMapsPlugin extends OsmandPlugin {
}
@Override
public String getName() {
- return app.getString(R.string.osmand_rastermaps_plugin_name);
+ return app.getString(R.string.online_map_settings);
}
@Override
public void registerLayers(MapActivity activity) {