TF-4243 Add Delete label action to context menu

This commit is contained in:
dab246
2026-01-27 12:38:58 +07:00
committed by Dat H. Pham
parent 6aab6f83eb
commit 5914877b1b
8 changed files with 88 additions and 14 deletions
@@ -5740,4 +5740,18 @@ class AppLocalizations {
args: [labelName],
);
}
String get deleteLabel {
return Intl.message(
'Delete label',
name: 'deleteLabel',
);
}
String areYouSureYouWantToDeleteTheLabel(String labelName) {
return Intl.message(
'Are you sure you want to delete the label "$labelName"?',
name: 'areYouSureYouWantToDeleteTheLabel',
args: [labelName],
);
}
}