diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml
index 392fcdfff0..79792e8533 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
-->
+
Route points
Track segments
Track points
@@ -1588,7 +1589,8 @@ Afghanistan, Albania, Algeria, Andorra, Angola, Anguilla, Antigua and Barbuda, A
No, thanks
Base world map (covering the whole world at small zooms) is missing. Please consider downloading World_basemap_x.obf for a complete environment.
On board (\'offline\') data is missing on SD card. Please consider to download it in order to use maps offline.
- Edition
+ Released
+ Local version
%1$d of %2$d item(s) successfully deactivated.
%1$d of %2$d item(s) successfully deleted.
%1$d of %2$d item(s) successfully activated.
diff --git a/OsmAnd/src/net/osmand/plus/activities/SettingsActivity.java b/OsmAnd/src/net/osmand/plus/activities/SettingsActivity.java
index e4f8874bd5..15aef3361d 100644
--- a/OsmAnd/src/net/osmand/plus/activities/SettingsActivity.java
+++ b/OsmAnd/src/net/osmand/plus/activities/SettingsActivity.java
@@ -169,7 +169,7 @@ public class SettingsActivity extends SettingsBaseActivity {
String vt = this.getString(R.string.about_version) + "\t";
String edition = "";
if (!this.getString(R.string.app_edition).equals("")) {
- edition = this.getString(R.string.local_index_installed) + " : \t" + this.getString(R.string.app_edition);
+ edition = this.getString(R.string.shared_string_release) + " : \t" + this.getString(R.string.app_edition);
}
tv.setText(vt + version + "\n" +
edition + "\n\n" +