TF-4178 Implement create new label
This commit is contained in:
@@ -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',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user