mirror of https://github.com/M66B/FairEmail.git
Added text
This commit is contained in:
parent
35993af770
commit
d02d2d3255
|
@ -299,7 +299,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> {
|
|||
popupMenu.getMenu().add(Menu.NONE, R.string.title_rule_execute, 2, R.string.title_rule_execute)
|
||||
.setEnabled(ActivityBilling.isPro(context));
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_reset, 3, R.string.title_reset);
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_rule_group, 4, R.string.title_rule_group);
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_rule_edit_group, 4, R.string.title_rule_edit_group);
|
||||
if (protocol == EntityAccount.TYPE_IMAP) {
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_move_to_folder, 5, R.string.title_move_to_folder);
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_copy, 6, R.string.title_copy);
|
||||
|
@ -318,7 +318,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> {
|
|||
} else if (itemId == R.string.title_reset) {
|
||||
onActionReset();
|
||||
return true;
|
||||
} else if (itemId == R.string.title_rule_group) {
|
||||
} else if (itemId == R.string.title_rule_edit_group) {
|
||||
onActionGroup();
|
||||
return true;
|
||||
} else if (itemId == R.string.title_move_to_folder) {
|
||||
|
|
|
@ -1911,6 +1911,7 @@
|
|||
<string name="title_rule_automation_hint">This will send the intent \'%1$s\' with the extras \'%2$s\'</string>
|
||||
<string name="title_rule_delete_hint">Permanent deletion is irreversible, so make sure the rule conditions are correct!</string>
|
||||
<string name="title_rule_local_only_hint" translatable="false">Try to avoid bridging notifications to other devices, such as smartwatches. Not all devices support this.</string>
|
||||
<string name="title_rule_edit_group">Edit group …</string>
|
||||
|
||||
<string name="title_rule_execute">Execute now</string>
|
||||
<string name="title_rule_applied">Affected messages: %1$d</string>
|
||||
|
|
Loading…
Reference in New Issue