This commit is contained in:
dominik-zeglen 2019-08-20 12:51:18 +02:00
parent 6eb05f2367
commit fe57528820
2 changed files with 3 additions and 3 deletions

View file

@ -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>

View file

@ -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 wont 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 wont be able to assign it to any of the products with "{ attributeName }" attribute.'
id="attributeValueDeleteDialogContentWithAttributeName"
values={{
attributeName,