mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 00:25:10 -04:00
8b92bc3836
Fixes Issue 1562 Issue 1474: Provide new facility to totally wipe all data for an account but leave settings intact. This is useful because sometimes storage is so full that SQLite cannot perform the usual VACUUM or message deletion. Add confirmation dialogs to destructive Clear and Recreate operations. Remove destructive Clear from FolderList so as not to have to duplicate the confirmation dialogs. Issue 1562: Suppress notifications when new messages arrive in Trash, Sent or Drafts special folders.
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:id="@+id/open"
|
|
android:title="@string/open_action" />
|
|
<item android:id="@+id/check_mail"
|
|
android:title="@string/check_mail_action" />
|
|
<item android:id="@+id/empty_trash"
|
|
android:title="@string/empty_trash_action" />
|
|
<item android:id="@+id/edit_account"
|
|
android:title="@string/account_settings_action" />
|
|
<item android:id="@+id/advanced"
|
|
android:title="@string/advanced">
|
|
<menu>
|
|
<item android:id="@+id/compact"
|
|
android:title="@string/compact_action" />
|
|
<item android:id="@+id/clear"
|
|
android:title="@string/clear_action" />
|
|
<item android:id="@+id/recreate"
|
|
android:title="@string/recreate_action" />
|
|
<item android:id="@+id/delete_account"
|
|
android:title="@string/remove_account_action" />
|
|
<item android:id="@+id/clear_pending"
|
|
android:title="@string/clear_pending_action" />
|
|
</menu>
|
|
</item>
|
|
</menu>
|