#8 Change "Okay" to "Stop"

This commit is contained in:
jannis 2019-08-20 14:34:25 +02:00
parent 6eb1bfea5e
commit 8eabe26b07
3 changed files with 3 additions and 3 deletions

View File

@ -182,7 +182,7 @@ public class RecordWorkoutActivity extends FitoTrackActivity implements Location
new AlertDialog.Builder(this) new AlertDialog.Builder(this)
.setTitle(R.string.stopRecordingQuestion) .setTitle(R.string.stopRecordingQuestion)
.setMessage(R.string.stopRecordingQuestionMessage) .setMessage(R.string.stopRecordingQuestionMessage)
.setPositiveButton(R.string.okay, (dialog, which) -> stop()) .setPositiveButton(R.string.stop, (dialog, which) -> stop())
.setNegativeButton(R.string.continue_, null) .setNegativeButton(R.string.continue_, null)
.create().show(); .create().show();
} }

View File

@ -23,5 +23,5 @@
<item <item
android:id="@+id/actionRecordingStop" android:id="@+id/actionRecordingStop"
android:showAsAction="ifRoom" android:showAsAction="ifRoom"
android:title="@string/workoutStopRecording" /> android:title="@string/stop" />
</menu> </menu>

View File

@ -20,7 +20,7 @@
<resources> <resources>
<string name="app_name">FitoTrack</string> <string name="app_name">FitoTrack</string>
<string name="workout_add">Add</string> <string name="workout_add">Add</string>
<string name="workoutStopRecording">Stop</string> <string name="stop">Stop</string>
<string name="delete">Delete</string> <string name="delete">Delete</string>
<string name="workoutTime">Time</string> <string name="workoutTime">Time</string>