TF-4243 Implement delete a label in presentation layer

This commit is contained in:
dab246
2026-01-12 15:58:53 +07:00
committed by Dat H. Pham
parent 327d05d20b
commit 9760b6f077
11 changed files with 144 additions and 9 deletions
@@ -5754,4 +5754,19 @@ class AppLocalizations {
args: [labelName],
);
}
String deleteLabelSuccessfullyMessage(String labelName) {
return Intl.message(
'You successfully deleted the $labelName label',
name: 'deleteLabelSuccessfullyMessage',
args: [labelName],
);
}
String get deleteALabelFailure {
return Intl.message(
'Delete a label failure',
name: 'deleteALabelFailure',
);
}
}