koishi-plugin-steam-info-check 1.0.1 → 1.0.4
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/locales/zh-CN.d.ts +80 -14
- package/dist/locales/zh-CN.js +80 -14
- package/package.json +1 -1
- package/src/locales/zh-CN.ts +80 -14
package/dist/locales/zh-CN.d.ts
CHANGED
|
@@ -1,17 +1,83 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
commands: {
|
|
3
|
+
steam: {
|
|
4
|
+
bind: {
|
|
5
|
+
bind_success: string;
|
|
6
|
+
invalid_id: string;
|
|
7
|
+
id_not_found: string;
|
|
8
|
+
error: string;
|
|
9
|
+
messages: {
|
|
10
|
+
invalid_id: string;
|
|
11
|
+
id_not_found: string;
|
|
12
|
+
bind_success: string;
|
|
13
|
+
error: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
unbind: {
|
|
17
|
+
unbind_success: string;
|
|
18
|
+
not_bound: string;
|
|
19
|
+
error: string;
|
|
20
|
+
messages: {
|
|
21
|
+
unbind_success: string;
|
|
22
|
+
not_bound: string;
|
|
23
|
+
error: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
info: {
|
|
27
|
+
user_not_found: string;
|
|
28
|
+
error: string;
|
|
29
|
+
messages: {
|
|
30
|
+
user_not_found: string;
|
|
31
|
+
error: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
check: {
|
|
35
|
+
no_binds: string;
|
|
36
|
+
api_error: string;
|
|
37
|
+
error: string;
|
|
38
|
+
messages: {
|
|
39
|
+
no_binds: string;
|
|
40
|
+
api_error: string;
|
|
41
|
+
error: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
enable: {
|
|
45
|
+
enable_success: string;
|
|
46
|
+
error: string;
|
|
47
|
+
messages: {
|
|
48
|
+
enable_success: string;
|
|
49
|
+
error: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
disable: {
|
|
53
|
+
disable_success: string;
|
|
54
|
+
error: string;
|
|
55
|
+
messages: {
|
|
56
|
+
disable_success: string;
|
|
57
|
+
error: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
update: {
|
|
61
|
+
args_missing: string;
|
|
62
|
+
update_success: string;
|
|
63
|
+
error: string;
|
|
64
|
+
messages: {
|
|
65
|
+
args_missing: string;
|
|
66
|
+
update_success: string;
|
|
67
|
+
error: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
nickname: {
|
|
71
|
+
not_bound: string;
|
|
72
|
+
nickname_set: string;
|
|
73
|
+
error: string;
|
|
74
|
+
messages: {
|
|
75
|
+
not_bound: string;
|
|
76
|
+
nickname_set: string;
|
|
77
|
+
error: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
16
82
|
};
|
|
17
83
|
export default _default;
|
package/dist/locales/zh-CN.js
CHANGED
|
@@ -1,18 +1,84 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.default = {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
4
|
+
commands: {
|
|
5
|
+
steam: {
|
|
6
|
+
bind: {
|
|
7
|
+
bind_success: '绑定成功!Steam ID: {0}',
|
|
8
|
+
invalid_id: '请输入有效的 Steam ID。',
|
|
9
|
+
id_not_found: '无法找到该 Steam ID。',
|
|
10
|
+
error: '发生错误。',
|
|
11
|
+
messages: {
|
|
12
|
+
invalid_id: '请输入有效的 Steam ID。',
|
|
13
|
+
id_not_found: '无法找到该 Steam ID。',
|
|
14
|
+
bind_success: '绑定成功!Steam ID: {0}',
|
|
15
|
+
error: '发生错误。',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
unbind: {
|
|
19
|
+
unbind_success: '解绑成功。',
|
|
20
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
21
|
+
error: '发生错误。',
|
|
22
|
+
messages: {
|
|
23
|
+
unbind_success: '解绑成功。',
|
|
24
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
25
|
+
error: '发生错误。',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
user_not_found: '未找到用户信息。',
|
|
30
|
+
error: '发生错误。',
|
|
31
|
+
messages: {
|
|
32
|
+
user_not_found: '未找到用户信息。',
|
|
33
|
+
error: '发生错误。',
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
check: {
|
|
37
|
+
no_binds: '本群尚无绑定用户。',
|
|
38
|
+
api_error: '连接 Steam API 失败。',
|
|
39
|
+
error: '发生错误。',
|
|
40
|
+
messages: {
|
|
41
|
+
no_binds: '本群尚无绑定用户。',
|
|
42
|
+
api_error: '连接 Steam API 失败。',
|
|
43
|
+
error: '发生错误。',
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
enable: {
|
|
47
|
+
enable_success: '已开启本群播报。',
|
|
48
|
+
error: '发生错误。',
|
|
49
|
+
messages: {
|
|
50
|
+
enable_success: '已开启本群播报。',
|
|
51
|
+
error: '发生错误。',
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
disable: {
|
|
55
|
+
disable_success: '已关闭本群播报。',
|
|
56
|
+
error: '发生错误。',
|
|
57
|
+
messages: {
|
|
58
|
+
disable_success: '已关闭本群播报。',
|
|
59
|
+
error: '发生错误。',
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
update: {
|
|
63
|
+
args_missing: '参数缺失。',
|
|
64
|
+
update_success: '更新群信息成功。',
|
|
65
|
+
error: '发生错误。',
|
|
66
|
+
messages: {
|
|
67
|
+
args_missing: '参数缺失。',
|
|
68
|
+
update_success: '更新群信息成功。',
|
|
69
|
+
error: '发生错误。',
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
nickname: {
|
|
73
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
74
|
+
nickname_set: '昵称已设置为 {0}。',
|
|
75
|
+
error: '发生错误。',
|
|
76
|
+
messages: {
|
|
77
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
78
|
+
nickname_set: '昵称已设置为 {0}。',
|
|
79
|
+
error: '发生错误。',
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
},
|
|
18
84
|
};
|
package/package.json
CHANGED
package/src/locales/zh-CN.ts
CHANGED
|
@@ -1,16 +1,82 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
commands: {
|
|
3
|
+
steam: {
|
|
4
|
+
bind: {
|
|
5
|
+
bind_success: '绑定成功!Steam ID: {0}',
|
|
6
|
+
invalid_id: '请输入有效的 Steam ID。',
|
|
7
|
+
id_not_found: '无法找到该 Steam ID。',
|
|
8
|
+
error: '发生错误。',
|
|
9
|
+
messages: {
|
|
10
|
+
invalid_id: '请输入有效的 Steam ID。',
|
|
11
|
+
id_not_found: '无法找到该 Steam ID。',
|
|
12
|
+
bind_success: '绑定成功!Steam ID: {0}',
|
|
13
|
+
error: '发生错误。',
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
unbind: {
|
|
17
|
+
unbind_success: '解绑成功。',
|
|
18
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
19
|
+
error: '发生错误。',
|
|
20
|
+
messages: {
|
|
21
|
+
unbind_success: '解绑成功。',
|
|
22
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
23
|
+
error: '发生错误。',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
info: {
|
|
27
|
+
user_not_found: '未找到用户信息。',
|
|
28
|
+
error: '发生错误。',
|
|
29
|
+
messages: {
|
|
30
|
+
user_not_found: '未找到用户信息。',
|
|
31
|
+
error: '发生错误。',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
check: {
|
|
35
|
+
no_binds: '本群尚无绑定用户。',
|
|
36
|
+
api_error: '连接 Steam API 失败。',
|
|
37
|
+
error: '发生错误。',
|
|
38
|
+
messages: {
|
|
39
|
+
no_binds: '本群尚无绑定用户。',
|
|
40
|
+
api_error: '连接 Steam API 失败。',
|
|
41
|
+
error: '发生错误。',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
enable: {
|
|
45
|
+
enable_success: '已开启本群播报。',
|
|
46
|
+
error: '发生错误。',
|
|
47
|
+
messages: {
|
|
48
|
+
enable_success: '已开启本群播报。',
|
|
49
|
+
error: '发生错误。',
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
disable: {
|
|
53
|
+
disable_success: '已关闭本群播报。',
|
|
54
|
+
error: '发生错误。',
|
|
55
|
+
messages: {
|
|
56
|
+
disable_success: '已关闭本群播报。',
|
|
57
|
+
error: '发生错误。',
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
update: {
|
|
61
|
+
args_missing: '参数缺失。',
|
|
62
|
+
update_success: '更新群信息成功。',
|
|
63
|
+
error: '发生错误。',
|
|
64
|
+
messages: {
|
|
65
|
+
args_missing: '参数缺失。',
|
|
66
|
+
update_success: '更新群信息成功。',
|
|
67
|
+
error: '发生错误。',
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
nickname: {
|
|
71
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
72
|
+
nickname_set: '昵称已设置为 {0}。',
|
|
73
|
+
error: '发生错误。',
|
|
74
|
+
messages: {
|
|
75
|
+
not_bound: '你还没有绑定 Steam ID。',
|
|
76
|
+
nickname_set: '昵称已设置为 {0}。',
|
|
77
|
+
error: '发生错误。',
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
16
82
|
}
|