TF-80 Move email to Mailbox in Email Detailed view

This commit is contained in:
dab246
2021-09-21 01:26:50 +07:00
committed by Dat H. Pham
parent c227df8df2
commit afc8c0fe77
18 changed files with 222 additions and 16 deletions
@@ -393,5 +393,20 @@ class AppLocalizations {
name: 'browse',
);
}
String moved_to_mailbox(String destinationMailboxPath) {
return Intl.message(
'Moved to $destinationMailboxPath',
name: 'moved_to_mailbox',
args: [destinationMailboxPath]
);
}
String get undo_action {
return Intl.message(
'UNDO',
name: 'undo_action'
);
}
}