mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Understand remark
This commit is contained in:
parent
848370b0ca
commit
ae7aa4ee52
1 changed files with 4 additions and 2 deletions
|
@ -3352,8 +3352,10 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
Bundle aargs = new Bundle();
|
||||
aargs.putString("question", getResources()
|
||||
.getQuantityString(R.plurals.title_deleting_messages, ids.size(), ids.size()));
|
||||
if (!pop && !EntityFolder.TRASH.equals(type) && !EntityFolder.JUNK.equals(type))
|
||||
aargs.putString("confirm", getString(R.string.title_no_undo));
|
||||
boolean remark = (pop ||
|
||||
EntityFolder.TRASH.equals(type) ||
|
||||
EntityFolder.JUNK.equals(type));
|
||||
aargs.putString(remark ? "remark" : "confirm", getString(R.string.title_no_undo));
|
||||
aargs.putInt("faq", 160);
|
||||
aargs.putLongArray("ids", Helper.toLongArray(ids));
|
||||
aargs.putBoolean("warning", true);
|
||||
|
|
Loading…
Reference in a new issue