TF-4178 Implement create new label

This commit is contained in:
dab246
2025-12-09 14:34:06 +07:00
committed by Dat H. Pham
parent 38c47ca373
commit 6c959fcf81
12 changed files with 163 additions and 39 deletions
+15 -7
View File
@@ -5556,13 +5556,6 @@ class AppLocalizations {
);
}
String get tagNameCannotContainSpecialCharacters {
return Intl.message(
'Tag name cannot contain special characters',
name: 'tagNameCannotContainSpecialCharacters',
);
}
String get tagNameAlreadyExists {
return Intl.message(
'A tag with this name already exists. Please choose a different name.',
@@ -5583,4 +5576,19 @@ class AppLocalizations {
name: 'chooseAColourForThisLabel',
);
}
String createLabelSuccessfullyMessage(String labelName) {
return Intl.message(
'You successfully created $labelName label',
name: 'createLabelSuccessfullyMessage',
args: [labelName],
);
}
String get createNewLabelFailure {
return Intl.message(
'Create new label failure',
name: 'createNewLabelFailure',
);
}
}