Changed titles

This commit is contained in:
M66B 2021-12-01 19:18:17 +01:00
parent e2cdafa3cc
commit e80b21f4fd
1 changed files with 2 additions and 2 deletions

View File

@ -85,13 +85,13 @@ public class FragmentDialogStill extends FragmentDialogBase {
AlertDialog.Builder builder = new AlertDialog.Builder(context) AlertDialog.Builder builder = new AlertDialog.Builder(context)
.setView(dview) .setView(dview)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() { .setPositiveButton(R.string.title_fix, new DialogInterface.OnClickListener() {
@Override @Override
public void onClick(DialogInterface dialog, int which) { public void onClick(DialogInterface dialog, int which) {
sendResult(Activity.RESULT_OK); sendResult(Activity.RESULT_OK);
} }
}) })
.setNegativeButton(android.R.string.cancel, null); .setNegativeButton(R.string.title_dismiss, null);
return builder.create(); return builder.create();
} }