TF-4236 Implement remove a label from an thread

This commit is contained in:
dab246
2026-01-09 19:49:21 +07:00
committed by Dat H. Pham
parent b37359af03
commit 1058b94363
23 changed files with 402 additions and 47 deletions
@@ -5724,4 +5724,20 @@ class AppLocalizations {
args: [labelName],
);
}
String removeLabelFromThreadSuccessfullyMessage(String labelName) {
return Intl.message(
'All emails in thread removed from the "$labelName" label',
name: 'removeLabelFromThreadSuccessfullyMessage',
args: [labelName],
);
}
String removeLabelFromThreadFailureMessage(String labelName) {
return Intl.message(
'Cannot remove all emails from thread to the "$labelName" label',
name: 'removeLabelFromThreadFailureMessage',
args: [labelName],
);
}
}