string improvement

This commit is contained in:
sonora 2019-03-05 11:05:54 +01:00
parent b00c5ef730
commit 5444d7a3b5

View file

@ -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);
}
}