Quickfix
This commit is contained in:
parent
6eb05f2367
commit
fe57528820
2 changed files with 3 additions and 3 deletions
|
@ -37,11 +37,11 @@ const AttributeDeleteDialog: React.FC<AttributeDeleteDialogProps> = ({
|
|||
>
|
||||
<DialogContentText>
|
||||
<FormattedMessage
|
||||
defaultMessage="Are you sure you want to delete {name}?"
|
||||
defaultMessage="Are you sure you want to delete {attributeName}?"
|
||||
description="dialog content"
|
||||
id="attributeDeleteDialogContent"
|
||||
values={{
|
||||
name: <strong>{name}</strong>
|
||||
attributeName: <strong>{name}</strong>
|
||||
}}
|
||||
/>
|
||||
</DialogContentText>
|
||||
|
|
|
@ -42,7 +42,7 @@ const AttributeValueDeleteDialog: React.FC<AttributeValueDeleteDialogProps> = ({
|
|||
<DialogContentText>
|
||||
{useName ? (
|
||||
<FormattedMessage
|
||||
defaultMessage='Are you sure you want to delete "{ name }" value? If you remove it you won’t be able to assign it to any of the products with "{ attributeName }" attribute.'
|
||||
defaultMessage='Are you sure you want to delete "{ name }" value? If you delete it you won’t be able to assign it to any of the products with "{ attributeName }" attribute.'
|
||||
id="attributeValueDeleteDialogContentWithAttributeName"
|
||||
values={{
|
||||
attributeName,
|
||||
|
|
Loading…
Reference in a new issue