From 5444d7a3b50cdb80e64132ff11a31c9903540557 Mon Sep 17 00:00:00 2001 From: sonora Date: Tue, 5 Mar 2019 11:05:54 +0100 Subject: [PATCH] string improvement --- .../net/osmand/plus/routepreparationmenu/WaypointsFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/routepreparationmenu/WaypointsFragment.java b/OsmAnd/src/net/osmand/plus/routepreparationmenu/WaypointsFragment.java index 64e4238e7f..99ecdebd58 100644 --- a/OsmAnd/src/net/osmand/plus/routepreparationmenu/WaypointsFragment.java +++ b/OsmAnd/src/net/osmand/plus/routepreparationmenu/WaypointsFragment.java @@ -593,7 +593,7 @@ public class WaypointsFragment extends BaseOsmAndFragment implements ObservableS if (isAdded()) { final TextViewEx title = (TextViewEx) view.findViewById(R.id.title); int pointsSize = app.getTargetPointsHelper().getAllPoints().size(); - String text = getString(R.string.shared_string_waypoints) + ": " + (pointsSize != 0 ? pointsSize : 1); + String text = getString(R.string.shared_string_target_points) + ": " + (pointsSize != 0 ? pointsSize : 1); title.setText(text); } }