@graphcommerce/magento-review 3.0.6 → 3.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1310](https://github.com/graphcommerce-org/graphcommerce/pull/1310) [`bcae21cfa`](https://github.com/graphcommerce-org/graphcommerce/commit/bcae21cfafe5bf8e0768f9b52028e0e3195cd3b7) Thanks [@LaurensFranken](https://github.com/LaurensFranken)! - Make texts in product reviews component translatable
8
+
3
9
  ## 3.0.6
4
10
 
5
11
  ### Patch Changes
@@ -148,7 +148,9 @@ export function ProductReviews(props: ProductReviewsProps) {
148
148
  alignItems: 'center',
149
149
  })}
150
150
  >
151
- <Typography variant='subtitle1'>Be the first to write a review!</Typography>
151
+ <Typography variant='subtitle1'>
152
+ <Trans>Be the first to write a review!</Trans>
153
+ </Typography>
152
154
  </Box>
153
155
  </Box>
154
156
  {actions}
@@ -241,7 +243,7 @@ export function ProductReviews(props: ProductReviewsProps) {
241
243
  })}
242
244
  >
243
245
  <Box className={classes.nickname} sx={{ typography: 'body2' }}>
244
- Written by {review?.nickname}
246
+ <Trans>Written by</Trans> {review?.nickname}
245
247
  </Box>
246
248
  <Box
247
249
  component='time'
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-review",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.0.6",
5
+ "version": "3.0.7",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {