shared_string_currently_recording_track (2)
This commit is contained in:
parent
4319b5de66
commit
32f565c27a
2 changed files with 1 additions and 2 deletions
|
@ -423,7 +423,6 @@
|
||||||
<string name="gpx_selection_route_points">%1$s \nRoute points %2$s</string>
|
<string name="gpx_selection_route_points">%1$s \nRoute points %2$s</string>
|
||||||
<string name="gpx_selection_points">%1$s \nPoints</string>
|
<string name="gpx_selection_points">%1$s \nPoints</string>
|
||||||
<string name="gpx_selection_track">%1$s \nTrack %2$s</string>
|
<string name="gpx_selection_track">%1$s \nTrack %2$s</string>
|
||||||
<string name="gpx_available_current_track">Current recording track</string>
|
|
||||||
<string name="gpx_file_is_empty">Gpx track is empty</string>
|
<string name="gpx_file_is_empty">Gpx track is empty</string>
|
||||||
<string name="osmo_user_joined">User %1$s joined group %2$s</string>
|
<string name="osmo_user_joined">User %1$s joined group %2$s</string>
|
||||||
<string name="osmo_user_left">User %1$s left group %2$s</string>
|
<string name="osmo_user_left">User %1$s left group %2$s</string>
|
||||||
|
|
|
@ -60,7 +60,7 @@ public class GpxSelectionHelper {
|
||||||
List<GpxDisplayGroup> dg = new ArrayList<GpxSelectionHelper.GpxDisplayGroup>();
|
List<GpxDisplayGroup> dg = new ArrayList<GpxSelectionHelper.GpxDisplayGroup>();
|
||||||
String name = g.path;
|
String name = g.path;
|
||||||
if(g.showCurrentTrack){
|
if(g.showCurrentTrack){
|
||||||
name = getString(R.string.gpx_available_current_track);
|
name = getString(R.string.shared_string_currently_recording_track);
|
||||||
} else {
|
} else {
|
||||||
int i = name.lastIndexOf('/');
|
int i = name.lastIndexOf('/');
|
||||||
if(i >= 0) {
|
if(i >= 0) {
|
||||||
|
|
Loading…
Reference in a new issue