Update locale default messages
This commit is contained in:
parent
055d3e63dd
commit
a29ac065a3
2 changed files with 9 additions and 3 deletions
|
@ -5401,4 +5401,4 @@
|
||||||
"context": "unassign product from voucher, button",
|
"context": "unassign product from voucher, button",
|
||||||
"string": "Unassign"
|
"string": "Unassign"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue