Update locale default messages

This commit is contained in:
Dawid Tarasiuk 2020-06-18 11:37:55 +02:00
parent 055d3e63dd
commit a29ac065a3
2 changed files with 9 additions and 3 deletions

View file

@ -5401,4 +5401,4 @@
"context": "unassign product from voucher, button", "context": "unassign product from voucher, button",
"string": "Unassign" "string": "Unassign"
} }
} }

View file

@ -350,9 +350,15 @@ export const ProductList: React.FC<ProductListProps> = props => {
{product?.productType && ( {product?.productType && (
<Typography variant="caption"> <Typography variant="caption">
{product.productType.hasVariants ? ( {product.productType.hasVariants ? (
<FormattedMessage defaultMessage="Configurable" /> <FormattedMessage
defaultMessage="Configurable"
description="product type"
/>
) : ( ) : (
<FormattedMessage defaultMessage="Simple" /> <FormattedMessage
defaultMessage="Simple"
description="product type"
/>
)} )}
</Typography> </Typography>
)} )}