diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml
index 6abc19baf2..7da72138f3 100644
--- a/OsmAnd/res/values/strings.xml
+++ b/OsmAnd/res/values/strings.xml
@@ -17,7 +17,7 @@
Sort
Coordinate input
is saved
- OsmAnd will save all your markers to a separate file, you can enter filename:
+ Export your markers to a file you can specify here:
Save as track
Move to history
Group will be removed after restart
@@ -26,8 +26,8 @@
Show \'Last used\' date
Hide \'Last used\' date
Remove from Map Markers
- Descendingly
- Ascendingly
+ Descending
+ Ascending
Date added
Order by:
Select how to indicate distance and direction to Map markers on the map screen:
diff --git a/OsmAnd/src/net/osmand/plus/mapmarkers/SaveAsTrackBottomSheetDialogFragment.java b/OsmAnd/src/net/osmand/plus/mapmarkers/SaveAsTrackBottomSheetDialogFragment.java
index f625f5b7e5..0b918466ba 100644
--- a/OsmAnd/src/net/osmand/plus/mapmarkers/SaveAsTrackBottomSheetDialogFragment.java
+++ b/OsmAnd/src/net/osmand/plus/mapmarkers/SaveAsTrackBottomSheetDialogFragment.java
@@ -69,7 +69,7 @@ public class SaveAsTrackBottomSheetDialogFragment extends BottomSheetDialogFragm
dir.mkdirs();
}
Date date = new Date();
- final String suggestedName = mapActivity.getString(R.string.markers) + "_" + DateFormat.format("dd_MM_yyyy", date).toString();
+ final String suggestedName = mapActivity.getString(R.string.markers) + "_" + DateFormat.format("yyyy-MM-dd", date).toString();
String displayedName = suggestedName;
File fout = new File(dir, suggestedName + GPX_SUFFIX);
int ind = 1;