@blocklet/payment-react 1.17.0 → 1.17.1
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/es/locales/en.js +2 -1
- package/es/locales/zh.js +2 -1
- package/lib/locales/en.js +2 -1
- package/lib/locales/zh.js +2 -1
- package/package.json +3 -3
- package/src/locales/en.tsx +1 -0
- package/src/locales/zh.tsx +1 -0
package/es/locales/en.js
CHANGED
|
@@ -294,7 +294,8 @@ export default flat({
|
|
|
294
294
|
viewAll: "View all",
|
|
295
295
|
empty: "There are no subscriptions here",
|
|
296
296
|
changePayment: "Change payment method",
|
|
297
|
-
trialLeft: "Trail Left"
|
|
297
|
+
trialLeft: "Trail Left",
|
|
298
|
+
owner: "Subscription Owner"
|
|
298
299
|
}
|
|
299
300
|
},
|
|
300
301
|
invoice: {
|
package/es/locales/zh.js
CHANGED
|
@@ -294,7 +294,8 @@ export default flat({
|
|
|
294
294
|
viewAll: "\u67E5\u770B\u6240\u6709",
|
|
295
295
|
empty: "\u6CA1\u6709\u4EFB\u4F55\u8BA2\u9605",
|
|
296
296
|
changePayment: "\u5207\u6362\u652F\u4ED8\u65B9\u5F0F",
|
|
297
|
-
trialLeft: "\u5269\u4F59\u8BD5\u7528\u65F6\u957F"
|
|
297
|
+
trialLeft: "\u5269\u4F59\u8BD5\u7528\u65F6\u957F",
|
|
298
|
+
owner: "\u8BA2\u9605\u62E5\u6709\u8005"
|
|
298
299
|
}
|
|
299
300
|
},
|
|
300
301
|
invoice: {
|
package/lib/locales/en.js
CHANGED
|
@@ -301,7 +301,8 @@ module.exports = (0, _flat.default)({
|
|
|
301
301
|
viewAll: "View all",
|
|
302
302
|
empty: "There are no subscriptions here",
|
|
303
303
|
changePayment: "Change payment method",
|
|
304
|
-
trialLeft: "Trail Left"
|
|
304
|
+
trialLeft: "Trail Left",
|
|
305
|
+
owner: "Subscription Owner"
|
|
305
306
|
}
|
|
306
307
|
},
|
|
307
308
|
invoice: {
|
package/lib/locales/zh.js
CHANGED
|
@@ -301,7 +301,8 @@ module.exports = (0, _flat.default)({
|
|
|
301
301
|
viewAll: "\u67E5\u770B\u6240\u6709",
|
|
302
302
|
empty: "\u6CA1\u6709\u4EFB\u4F55\u8BA2\u9605",
|
|
303
303
|
changePayment: "\u5207\u6362\u652F\u4ED8\u65B9\u5F0F",
|
|
304
|
-
trialLeft: "\u5269\u4F59\u8BD5\u7528\u65F6\u957F"
|
|
304
|
+
trialLeft: "\u5269\u4F59\u8BD5\u7528\u65F6\u957F",
|
|
305
|
+
owner: "\u8BA2\u9605\u62E5\u6709\u8005"
|
|
305
306
|
}
|
|
306
307
|
},
|
|
307
308
|
invoice: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/payment-react",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"description": "Reusable react components for payment kit v2",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@babel/core": "^7.25.2",
|
|
93
93
|
"@babel/preset-env": "^7.25.2",
|
|
94
94
|
"@babel/preset-react": "^7.24.7",
|
|
95
|
-
"@blocklet/payment-types": "1.17.
|
|
95
|
+
"@blocklet/payment-types": "1.17.1",
|
|
96
96
|
"@storybook/addon-essentials": "^7.6.20",
|
|
97
97
|
"@storybook/addon-interactions": "^7.6.20",
|
|
98
98
|
"@storybook/addon-links": "^7.6.20",
|
|
@@ -123,5 +123,5 @@
|
|
|
123
123
|
"vite-plugin-babel": "^1.2.0",
|
|
124
124
|
"vite-plugin-node-polyfills": "^0.21.0"
|
|
125
125
|
},
|
|
126
|
-
"gitHead": "
|
|
126
|
+
"gitHead": "fe7302197bbf98d5490f8bc0d6738d9c51c53646"
|
|
127
127
|
}
|
package/src/locales/en.tsx
CHANGED