@blocklet/payment-react 1.13.152 → 1.13.154
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 +3 -0
- package/es/locales/zh.js +4 -1
- package/lib/locales/en.js +3 -0
- package/lib/locales/zh.js +4 -1
- package/package.json +3 -3
- package/src/locales/en.tsx +3 -0
- package/src/locales/zh.tsx +4 -1
package/es/locales/en.js
CHANGED
package/es/locales/zh.js
CHANGED
|
@@ -213,7 +213,10 @@ export default flat({
|
|
|
213
213
|
empty: "\u6CA1\u6709\u4EFB\u4F55\u53D1\u7968"
|
|
214
214
|
},
|
|
215
215
|
payment: {
|
|
216
|
-
empty: "\u6CA1\u6709\
|
|
216
|
+
empty: "\u6CA1\u6709\u652F\u4ED8\u8BB0\u5F55"
|
|
217
|
+
},
|
|
218
|
+
refund: {
|
|
219
|
+
empty: "\u6CA1\u6709\u9000\u6B3E\u8BB0\u5F55"
|
|
217
220
|
},
|
|
218
221
|
subscriptions: {
|
|
219
222
|
plan: "\u8BA2\u9605",
|
package/lib/locales/en.js
CHANGED
package/lib/locales/zh.js
CHANGED
|
@@ -220,7 +220,10 @@ module.exports = (0, _flat.default)({
|
|
|
220
220
|
empty: "\u6CA1\u6709\u4EFB\u4F55\u53D1\u7968"
|
|
221
221
|
},
|
|
222
222
|
payment: {
|
|
223
|
-
empty: "\u6CA1\u6709\
|
|
223
|
+
empty: "\u6CA1\u6709\u652F\u4ED8\u8BB0\u5F55"
|
|
224
|
+
},
|
|
225
|
+
refund: {
|
|
226
|
+
empty: "\u6CA1\u6709\u9000\u6B3E\u8BB0\u5F55"
|
|
224
227
|
},
|
|
225
228
|
subscriptions: {
|
|
226
229
|
plan: "\u8BA2\u9605",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/payment-react",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.154",
|
|
4
4
|
"description": "Reusable react components for payment kit v2",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@babel/core": "^7.23.9",
|
|
90
90
|
"@babel/preset-env": "^7.23.9",
|
|
91
91
|
"@babel/preset-react": "^7.23.3",
|
|
92
|
-
"@blocklet/payment-types": "1.13.
|
|
92
|
+
"@blocklet/payment-types": "1.13.154",
|
|
93
93
|
"@storybook/addon-essentials": "^7.6.13",
|
|
94
94
|
"@storybook/addon-interactions": "^7.6.13",
|
|
95
95
|
"@storybook/addon-links": "^7.6.13",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"vite-plugin-babel": "^1.2.0",
|
|
119
119
|
"vite-plugin-node-polyfills": "^0.19.0"
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "a8afe51b21c4155ae14468c619dde09bfbda168d"
|
|
122
122
|
}
|
package/src/locales/en.tsx
CHANGED