more detailed message about reassigned different tag types (#479)
This commit is contained in:
Родитель
76945df3bd
Коммит
cc9e9bfc8f
|
@ -243,7 +243,7 @@ export const english: IAppStrings = {
|
|||
existingName: "Tag name already exists. Choose another name",
|
||||
emptyName: "Cannot have an empty tag name",
|
||||
unknownTagName: "Unknown",
|
||||
notCompatibleTagType: "Tag type is not compatible with this feature",
|
||||
notCompatibleTagType: "Tag type is not compatible with this feature. If you want to change type of this tag, please remove or reassign all labels which using this tag in your project.",
|
||||
checkboxPerTagLimit: "Cannot assign more than one checkbox per tag",
|
||||
},
|
||||
toolbar: {
|
||||
|
|
|
@ -243,7 +243,7 @@ export const spanish: IAppStrings = {
|
|||
existingName: "Nombre de etiqueta ya existe. Elige otro nombre",
|
||||
emptyName: "El nombre de etiqueta no puede ser vacío",
|
||||
unknownTagName: "Desconocido",
|
||||
notCompatibleTagType: "El tipo de etiqueta no es compatible con esta función",
|
||||
notCompatibleTagType: "El tipo de etiqueta no es compatible con esta función. Si desea cambiar el tipo de esta etiqueta, elimine o reasigne todas las etiquetas que utilizan esta etiqueta en su proyecto.",
|
||||
checkboxPerTagLimit: "No se puede asignar más de una casilla de verificación por etiqueta",
|
||||
},
|
||||
toolbar: {
|
||||
|
|
|
@ -487,7 +487,7 @@ export class TagInput extends React.Component<ITagInputProps, ITagInputState> {
|
|||
onTagClick(tag);
|
||||
deselect = false;
|
||||
} else {
|
||||
toast.warn(strings.tags.warnings.notCompatibleTagType);
|
||||
toast.warn(strings.tags.warnings.notCompatibleTagType, {autoClose: 7000});
|
||||
}
|
||||
}
|
||||
this.setState({
|
||||
|
|
Загрузка…
Ссылка в новой задаче