Use verbs instead of yes/no for lost password dialog.

This commit is contained in:
akwizgran
2016-01-13 17:17:19 +00:00
parent 1a01fc4631
commit 42d1f6ded0
2 changed files with 6 additions and 8 deletions

View File

@@ -113,8 +113,8 @@ public class PasswordActivity extends BaseActivity {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(R.string.dialog_title_lost_password);
builder.setMessage(R.string.dialog_message_lost_password);
builder.setNegativeButton(R.string.no, null);
builder.setPositiveButton(R.string.yes,
builder.setNegativeButton(R.string.cancel_button, null);
builder.setPositiveButton(R.string.delete_button,
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {