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>
|
<DialogContentText>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
defaultMessage="Are you sure you want to delete {name}?"
|
defaultMessage="Are you sure you want to delete {attributeName}?"
|
||||||
description="dialog content"
|
description="dialog content"
|
||||||
id="attributeDeleteDialogContent"
|
id="attributeDeleteDialogContent"
|
||||||
values={{
|
values={{
|
||||||
name: <strong>{name}</strong>
|
attributeName: <strong>{name}</strong>
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
|
|
|
@ -42,7 +42,7 @@ const AttributeValueDeleteDialog: React.FC<AttributeValueDeleteDialogProps> = ({
|
||||||
<DialogContentText>
|
<DialogContentText>
|
||||||
{useName ? (
|
{useName ? (
|
||||||
<FormattedMessage
|
<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"
|
id="attributeValueDeleteDialogContentWithAttributeName"
|
||||||
values={{
|
values={{
|
||||||
attributeName,
|
attributeName,
|
||||||
|
|
Loading…
Reference in a new issue