TF-4236 Implement remove a label from an email when unselect in context menu Label as

This commit is contained in:
dab246
2026-01-09 09:34:04 +07:00
committed by Dat H. Pham
parent 36e573db23
commit 3ef66bbbda
11 changed files with 376 additions and 29 deletions
@@ -5709,4 +5709,19 @@ class AppLocalizations {
name: 'editLabelFailure',
);
}
String removeLabelFromEmailSuccessfullyMessage(String labelName) {
return Intl.message(
'Email removed from the "$labelName" label',
name: 'removeLabelFromEmailSuccessfullyMessage',
args: [labelName],
);
}
String removeLabelFromEmailFailureMessage(String labelName) {
return Intl.message(
'Cannot remove email from the "$labelName" label',
name: 'removeLabelFromEmailFailureMessage',
args: [labelName],
);
}
}