shared_string_favorite
This commit is contained in:
parent
6c71044220
commit
e374ec426f
2 changed files with 2 additions and 3 deletions
|
@ -597,7 +597,6 @@
|
|||
<string name="select_gpx">Select GPX…</string>
|
||||
<string name="route_descr_select_destination">Select Destination</string>
|
||||
<string name="route_descr_select_on_map">Select on map…</string>
|
||||
<string name="route_descr_favorite">Favorite…</string>
|
||||
<string name="route_preferences">Route preferences</string>
|
||||
<string name="route_info">Route information</string>
|
||||
<string name="routing_attr_prefer_motorway_name">Prefer motorways</string>
|
||||
|
|
|
@ -384,7 +384,7 @@ public class MapRouteInfoControl extends MapControls implements IRouteInformatio
|
|||
private Spinner setupFromSpinner( View view) {
|
||||
ArrayList<String> fromActions = new ArrayList<String>();
|
||||
fromActions.add(mapActivity.getString(R.string.route_descr_current_location));
|
||||
fromActions.add(mapActivity.getString(R.string.route_descr_favorite));
|
||||
fromActions.add(mapActivity.getString(R.string.shared_string_favorite) + mapActivity.getString(R.string.shared_string_ellipsis));
|
||||
fromActions.add(mapActivity.getString(R.string.route_descr_select_on_map));
|
||||
|
||||
TargetPoint start = getTargets().getPointToStart();
|
||||
|
@ -423,7 +423,7 @@ public class MapRouteInfoControl extends MapControls implements IRouteInformatio
|
|||
toSpinner.setPromptId(R.string.route_descr_select_destination);
|
||||
toActions.add(mapActivity.getString(R.string.route_descr_select_destination));
|
||||
}
|
||||
toActions.add(mapActivity.getString(R.string.route_descr_favorite));
|
||||
toActions.add(mapActivity.getString(R.string.shared_string_favorite) + mapActivity.getString(R.string.shared_string_ellipsis));
|
||||
toActions.add(mapActivity.getString(R.string.route_descr_select_on_map));
|
||||
|
||||
ArrayAdapter<String> toAdapter = new ArrayAdapter<String>(view.getContext(),
|
||||
|
|
Loading…
Reference in a new issue