kopia lustrzana https://github.com/ryukoposting/Signal-Android
Delete Selected Message button strings "No"/"Yes" -> "Cancel"/"Delete"
Closes #4705 Fixes #4704 // FREEBIEfork-5.53.8
rodzic
ec58132b25
commit
a8f4dadaf5
|
@ -263,7 +263,7 @@ public class ConversationFragment extends Fragment
|
||||||
builder.setMessage(getActivity().getResources().getQuantityString(R.plurals.ConversationFragment_this_will_permanently_delete_all_n_selected_messages, messagesCount, messagesCount));
|
builder.setMessage(getActivity().getResources().getQuantityString(R.plurals.ConversationFragment_this_will_permanently_delete_all_n_selected_messages, messagesCount, messagesCount));
|
||||||
builder.setCancelable(true);
|
builder.setCancelable(true);
|
||||||
|
|
||||||
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
builder.setPositiveButton(R.string.delete, new DialogInterface.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
new ProgressDialogAsyncTask<MessageRecord, Void, Void>(getActivity(),
|
new ProgressDialogAsyncTask<MessageRecord, Void, Void>(getActivity(),
|
||||||
|
@ -293,7 +293,7 @@ public class ConversationFragment extends Fragment
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
builder.setNegativeButton(R.string.no, null);
|
builder.setNegativeButton(android.R.string.cancel, null);
|
||||||
builder.show();
|
builder.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue