@blocklet/launcher-util 2.3.77 → 2.3.79
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/locale/en.js +31 -1
- package/es/locale/zh.js +31 -1
- package/lib/locale/en.js +30 -0
- package/lib/locale/zh.js +30 -0
- package/package.json +2 -2
package/es/locale/en.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import flat from "flat";
|
|
2
|
-
import { INSTANCE_STATUS, PAYMENT_METHODS, CURRENCY_TYPE } from "../constant";
|
|
2
|
+
import { INSTANCE_STATUS, PAYMENT_METHODS, CURRENCY_TYPE, LAUNCH_STATUS, LAUNCH_ACTIVITY_TYPE } from "../constant";
|
|
3
3
|
const en = flat({
|
|
4
4
|
common: {
|
|
5
5
|
app: "App",
|
|
@@ -52,6 +52,36 @@ const en = flat({
|
|
|
52
52
|
[PAYMENT_METHODS.stripe]: "Credit",
|
|
53
53
|
[CURRENCY_TYPE.fiat]: "Credit",
|
|
54
54
|
[CURRENCY_TYPE.crypto]: "Crypto"
|
|
55
|
+
},
|
|
56
|
+
launchSession: {
|
|
57
|
+
installSource: "Install Source",
|
|
58
|
+
status: {
|
|
59
|
+
[LAUNCH_STATUS.created]: "In Progress",
|
|
60
|
+
[LAUNCH_STATUS.selected]: "In Progress",
|
|
61
|
+
[LAUNCH_STATUS.connected]: "In Progress",
|
|
62
|
+
[LAUNCH_STATUS.paid]: "Paid",
|
|
63
|
+
[LAUNCH_STATUS.nftMinted]: "NFT Minted",
|
|
64
|
+
[LAUNCH_STATUS.allocated]: "Paid",
|
|
65
|
+
[LAUNCH_STATUS.consuming]: "Handling",
|
|
66
|
+
[LAUNCH_STATUS.installed]: "Installed",
|
|
67
|
+
[LAUNCH_STATUS.timeout]: "Timeout",
|
|
68
|
+
[LAUNCH_STATUS.pastDue]: "PastDue",
|
|
69
|
+
[LAUNCH_STATUS.canceled]: "Canceled",
|
|
70
|
+
[LAUNCH_STATUS.terminated]: "Terminated",
|
|
71
|
+
[LAUNCH_STATUS.transferred]: "Transferred",
|
|
72
|
+
[LAUNCH_STATUS.blocked]: "Blocked"
|
|
73
|
+
},
|
|
74
|
+
activity: {
|
|
75
|
+
[LAUNCH_ACTIVITY_TYPE.canceled]: "Canceled",
|
|
76
|
+
[LAUNCH_ACTIVITY_TYPE.pastDue]: "PastDue",
|
|
77
|
+
[LAUNCH_ACTIVITY_TYPE.terminated]: "Terminated",
|
|
78
|
+
[LAUNCH_ACTIVITY_TYPE.transferred]: "Transferred"
|
|
79
|
+
},
|
|
80
|
+
steps: {
|
|
81
|
+
create: "Create",
|
|
82
|
+
paid: "Paid",
|
|
83
|
+
installed: "Installed"
|
|
84
|
+
}
|
|
55
85
|
}
|
|
56
86
|
});
|
|
57
87
|
export {
|
package/es/locale/zh.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import flat from "flat";
|
|
2
|
-
import { INSTANCE_STATUS, PAYMENT_METHODS, CURRENCY_TYPE } from "../constant";
|
|
2
|
+
import { INSTANCE_STATUS, PAYMENT_METHODS, CURRENCY_TYPE, LAUNCH_STATUS, LAUNCH_ACTIVITY_TYPE } from "../constant";
|
|
3
3
|
const zh = flat({
|
|
4
4
|
common: {
|
|
5
5
|
app: "应用",
|
|
@@ -54,6 +54,36 @@ const zh = flat({
|
|
|
54
54
|
// TODO: 统一管理支付方式和货币类型
|
|
55
55
|
[CURRENCY_TYPE.crypto]: "加密货币"
|
|
56
56
|
// TODO: 统一管理支付方式和货币类型
|
|
57
|
+
},
|
|
58
|
+
launchSession: {
|
|
59
|
+
installSource: "安装源",
|
|
60
|
+
status: {
|
|
61
|
+
[LAUNCH_STATUS.created]: "进行中",
|
|
62
|
+
[LAUNCH_STATUS.selected]: "进行中",
|
|
63
|
+
[LAUNCH_STATUS.connected]: "进行中",
|
|
64
|
+
[LAUNCH_STATUS.paid]: "已付款",
|
|
65
|
+
[LAUNCH_STATUS.nftMinted]: "已铸造NFT",
|
|
66
|
+
[LAUNCH_STATUS.allocated]: "已付款",
|
|
67
|
+
[LAUNCH_STATUS.consuming]: "处理中",
|
|
68
|
+
[LAUNCH_STATUS.installed]: "已安装",
|
|
69
|
+
[LAUNCH_STATUS.timeout]: "已超时",
|
|
70
|
+
[LAUNCH_STATUS.pastDue]: "已欠费",
|
|
71
|
+
[LAUNCH_STATUS.canceled]: "已取消",
|
|
72
|
+
[LAUNCH_STATUS.terminated]: "已终止",
|
|
73
|
+
[LAUNCH_STATUS.transferred]: "已转移",
|
|
74
|
+
[LAUNCH_STATUS.blocked]: "已禁用"
|
|
75
|
+
},
|
|
76
|
+
activity: {
|
|
77
|
+
[LAUNCH_ACTIVITY_TYPE.canceled]: "已取消",
|
|
78
|
+
[LAUNCH_ACTIVITY_TYPE.pastDue]: "已欠费",
|
|
79
|
+
[LAUNCH_ACTIVITY_TYPE.terminated]: "已终止",
|
|
80
|
+
[LAUNCH_ACTIVITY_TYPE.transferred]: "已转移"
|
|
81
|
+
},
|
|
82
|
+
steps: {
|
|
83
|
+
create: "创建",
|
|
84
|
+
paid: "已付款",
|
|
85
|
+
installed: "已安装"
|
|
86
|
+
}
|
|
57
87
|
}
|
|
58
88
|
});
|
|
59
89
|
export {
|
package/lib/locale/en.js
CHANGED
|
@@ -53,6 +53,36 @@ const en = flat({
|
|
|
53
53
|
[constant.PAYMENT_METHODS.stripe]: "Credit",
|
|
54
54
|
[constant.CURRENCY_TYPE.fiat]: "Credit",
|
|
55
55
|
[constant.CURRENCY_TYPE.crypto]: "Crypto"
|
|
56
|
+
},
|
|
57
|
+
launchSession: {
|
|
58
|
+
installSource: "Install Source",
|
|
59
|
+
status: {
|
|
60
|
+
[constant.LAUNCH_STATUS.created]: "In Progress",
|
|
61
|
+
[constant.LAUNCH_STATUS.selected]: "In Progress",
|
|
62
|
+
[constant.LAUNCH_STATUS.connected]: "In Progress",
|
|
63
|
+
[constant.LAUNCH_STATUS.paid]: "Paid",
|
|
64
|
+
[constant.LAUNCH_STATUS.nftMinted]: "NFT Minted",
|
|
65
|
+
[constant.LAUNCH_STATUS.allocated]: "Paid",
|
|
66
|
+
[constant.LAUNCH_STATUS.consuming]: "Handling",
|
|
67
|
+
[constant.LAUNCH_STATUS.installed]: "Installed",
|
|
68
|
+
[constant.LAUNCH_STATUS.timeout]: "Timeout",
|
|
69
|
+
[constant.LAUNCH_STATUS.pastDue]: "PastDue",
|
|
70
|
+
[constant.LAUNCH_STATUS.canceled]: "Canceled",
|
|
71
|
+
[constant.LAUNCH_STATUS.terminated]: "Terminated",
|
|
72
|
+
[constant.LAUNCH_STATUS.transferred]: "Transferred",
|
|
73
|
+
[constant.LAUNCH_STATUS.blocked]: "Blocked"
|
|
74
|
+
},
|
|
75
|
+
activity: {
|
|
76
|
+
[constant.LAUNCH_ACTIVITY_TYPE.canceled]: "Canceled",
|
|
77
|
+
[constant.LAUNCH_ACTIVITY_TYPE.pastDue]: "PastDue",
|
|
78
|
+
[constant.LAUNCH_ACTIVITY_TYPE.terminated]: "Terminated",
|
|
79
|
+
[constant.LAUNCH_ACTIVITY_TYPE.transferred]: "Transferred"
|
|
80
|
+
},
|
|
81
|
+
steps: {
|
|
82
|
+
create: "Create",
|
|
83
|
+
paid: "Paid",
|
|
84
|
+
installed: "Installed"
|
|
85
|
+
}
|
|
56
86
|
}
|
|
57
87
|
});
|
|
58
88
|
module.exports = en;
|
package/lib/locale/zh.js
CHANGED
|
@@ -55,6 +55,36 @@ const zh = flat({
|
|
|
55
55
|
// TODO: 统一管理支付方式和货币类型
|
|
56
56
|
[constant.CURRENCY_TYPE.crypto]: "加密货币"
|
|
57
57
|
// TODO: 统一管理支付方式和货币类型
|
|
58
|
+
},
|
|
59
|
+
launchSession: {
|
|
60
|
+
installSource: "安装源",
|
|
61
|
+
status: {
|
|
62
|
+
[constant.LAUNCH_STATUS.created]: "进行中",
|
|
63
|
+
[constant.LAUNCH_STATUS.selected]: "进行中",
|
|
64
|
+
[constant.LAUNCH_STATUS.connected]: "进行中",
|
|
65
|
+
[constant.LAUNCH_STATUS.paid]: "已付款",
|
|
66
|
+
[constant.LAUNCH_STATUS.nftMinted]: "已铸造NFT",
|
|
67
|
+
[constant.LAUNCH_STATUS.allocated]: "已付款",
|
|
68
|
+
[constant.LAUNCH_STATUS.consuming]: "处理中",
|
|
69
|
+
[constant.LAUNCH_STATUS.installed]: "已安装",
|
|
70
|
+
[constant.LAUNCH_STATUS.timeout]: "已超时",
|
|
71
|
+
[constant.LAUNCH_STATUS.pastDue]: "已欠费",
|
|
72
|
+
[constant.LAUNCH_STATUS.canceled]: "已取消",
|
|
73
|
+
[constant.LAUNCH_STATUS.terminated]: "已终止",
|
|
74
|
+
[constant.LAUNCH_STATUS.transferred]: "已转移",
|
|
75
|
+
[constant.LAUNCH_STATUS.blocked]: "已禁用"
|
|
76
|
+
},
|
|
77
|
+
activity: {
|
|
78
|
+
[constant.LAUNCH_ACTIVITY_TYPE.canceled]: "已取消",
|
|
79
|
+
[constant.LAUNCH_ACTIVITY_TYPE.pastDue]: "已欠费",
|
|
80
|
+
[constant.LAUNCH_ACTIVITY_TYPE.terminated]: "已终止",
|
|
81
|
+
[constant.LAUNCH_ACTIVITY_TYPE.transferred]: "已转移"
|
|
82
|
+
},
|
|
83
|
+
steps: {
|
|
84
|
+
create: "创建",
|
|
85
|
+
paid: "已付款",
|
|
86
|
+
installed: "已安装"
|
|
87
|
+
}
|
|
58
88
|
}
|
|
59
89
|
});
|
|
60
90
|
module.exports = zh;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/launcher-util",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.79",
|
|
4
4
|
"description": "Common constants",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"constant"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"vite": "^5.4.11",
|
|
50
50
|
"vite-plugin-build": "^0.10.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "ee7faaf044f303d3e9962cc14cb363af79889813"
|
|
53
53
|
}
|