@treely/strapi-slices 5.11.0 → 5.11.2
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/dist/rootMessages.de.d.ts +2 -2
- package/dist/slices/ShopCheckout/messages.de.d.ts +2 -2
- package/dist/strapi-slices.cjs.development.js +4 -4
- package/dist/strapi-slices.cjs.development.js.map +1 -1
- package/dist/strapi-slices.cjs.production.min.js +1 -1
- package/dist/strapi-slices.cjs.production.min.js.map +1 -1
- package/dist/strapi-slices.esm.js +5 -5
- package/dist/strapi-slices.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/portfolio/SmallCheckout/SmallCheckout.tsx +3 -2
- package/src/slices/ShopCheckout/messages.de.ts +2 -2
package/package.json
CHANGED
|
@@ -28,7 +28,6 @@ import {
|
|
|
28
28
|
import { CDN_URI, FPM_API_URI } from '../../../constants/api';
|
|
29
29
|
import StrapiLinkButton from '../../StrapiLinkButton';
|
|
30
30
|
import SmallCheckoutForm from '../../../models/forms/SmallCheckoutForm';
|
|
31
|
-
import { FormattedMessage } from 'react-intl';
|
|
32
31
|
|
|
33
32
|
export interface SmallCheckoutProps {
|
|
34
33
|
batchId: string;
|
|
@@ -126,7 +125,9 @@ const SmallCheckout = ({
|
|
|
126
125
|
)}
|
|
127
126
|
</Text>
|
|
128
127
|
<Text size="smLowNormal">
|
|
129
|
-
|
|
128
|
+
{formatMessage({
|
|
129
|
+
id: 'portfolio.smallCheckout.price.taxNotIncluded',
|
|
130
|
+
})}
|
|
130
131
|
</Text>
|
|
131
132
|
</Flex>
|
|
132
133
|
|
|
@@ -18,8 +18,8 @@ const messagesDe = {
|
|
|
18
18
|
|
|
19
19
|
'sections.shopCheckout.summary.kg': 'Menge',
|
|
20
20
|
'sections.shopCheckout.summary.price': 'Preis',
|
|
21
|
-
'sections.shopCheckout.summary.taxNotIncluded': 'ohne Steuern',
|
|
22
|
-
'sections.shopCheckout.summary.taxIncluded':
|
|
21
|
+
'sections.shopCheckout.summary.price.taxNotIncluded': 'ohne Steuern',
|
|
22
|
+
'sections.shopCheckout.summary.price.taxIncluded':
|
|
23
23
|
'Preis inklusive Steuern: {number}',
|
|
24
24
|
|
|
25
25
|
'sections.shopCheckout.submit': 'Kaufen',
|