@ray-js/ray-ipc-player 2.0.20-beta-2 → 2.0.20-beta-3
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/lib/config/errCodeConfig.d.ts +43 -0
- package/lib/config/errCodeConfig.js +136 -0
- package/lib/config/index.d.ts +14 -0
- package/lib/config/index.js +19 -0
- package/lib/constant.d.ts +1 -1
- package/lib/constant.js +1 -1
- package/lib/i18n/index.d.ts +404 -4
- package/lib/i18n/strings.d.ts +202 -2
- package/lib/i18n/strings.js +230 -6
- package/lib/index.js +349 -71
- package/lib/index.module.less +92 -6
- package/lib/svg/errIcon.svg +7 -0
- package/lib/svg/index.d.ts +2 -0
- package/lib/svg/index.js +1 -0
- package/lib/utils.d.ts +30 -1
- package/lib/utils.js +112 -18
- package/package.json +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 获取错误码对应文本
|
|
3
|
+
*/
|
|
4
|
+
export declare const getErrCodeText: (code: string) => string;
|
|
5
|
+
/**
|
|
6
|
+
* errCode配置集合
|
|
7
|
+
*/
|
|
8
|
+
export declare const errCodeLabs: ({
|
|
9
|
+
type: string;
|
|
10
|
+
try: boolean;
|
|
11
|
+
help: boolean;
|
|
12
|
+
feedBack: boolean;
|
|
13
|
+
suggestedText: any;
|
|
14
|
+
helpFeedBack: boolean;
|
|
15
|
+
codes: string[];
|
|
16
|
+
helpNum?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
type: string;
|
|
19
|
+
try: boolean;
|
|
20
|
+
help: boolean;
|
|
21
|
+
helpNum: number;
|
|
22
|
+
feedBack: boolean;
|
|
23
|
+
suggestedText: string;
|
|
24
|
+
helpFeedBack: boolean;
|
|
25
|
+
codes: string[];
|
|
26
|
+
} | {
|
|
27
|
+
type: string;
|
|
28
|
+
try: boolean;
|
|
29
|
+
help: boolean;
|
|
30
|
+
feedBack: boolean;
|
|
31
|
+
helpFeedBack: boolean;
|
|
32
|
+
codes: string[];
|
|
33
|
+
suggestedText?: undefined;
|
|
34
|
+
helpNum?: undefined;
|
|
35
|
+
})[];
|
|
36
|
+
/**
|
|
37
|
+
* 获取对应错误码配置详情
|
|
38
|
+
*/
|
|
39
|
+
export declare const getErrCodeDetailDataByCode: (code: string) => any;
|
|
40
|
+
/**
|
|
41
|
+
* 将errCode转化为正整数
|
|
42
|
+
*/
|
|
43
|
+
export declare const codeCoverToInt: (code: number) => number;
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import "core-js/modules/esnext.iterator.constructor.js";
|
|
2
|
+
import "core-js/modules/esnext.iterator.find.js";
|
|
3
|
+
import Strings from '../i18n';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 获取错误码对应文本
|
|
7
|
+
*/
|
|
8
|
+
export const getErrCodeText = code => {
|
|
9
|
+
return String.getLang("ipc_player_error_".concat(code));
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* errCode配置集合
|
|
14
|
+
*/
|
|
15
|
+
export const errCodeLabs = [{
|
|
16
|
+
type: 'feedBackDirectly',
|
|
17
|
+
try: true,
|
|
18
|
+
help: false,
|
|
19
|
+
feedBack: true,
|
|
20
|
+
suggestedText: '',
|
|
21
|
+
helpFeedBack: false,
|
|
22
|
+
codes: ['-1000', '-1300', '-1001', '-1301', '-1302', '-30', '-1002', '-1303', '-20003', '-5', '-1010', '-1310', '-20002', '-40001', '-1011', '-1311', '-40002', '-1020', '-1350', '-1', '-1360', '-10000', '-1361', '-40000', '-40200', '-40300', '-40400', '-20005', '-30012', '-1320', '-1364']
|
|
23
|
+
}, {
|
|
24
|
+
type: 'feedBackDirectly',
|
|
25
|
+
try: true,
|
|
26
|
+
help: false,
|
|
27
|
+
feedBack: false,
|
|
28
|
+
suggestedText: Strings.getLang('ipc_player_suggest_feed_back_err_factory_text'),
|
|
29
|
+
helpFeedBack: false,
|
|
30
|
+
codes: ['-1021', '-10008', '-41001', '-39', '-30082', '-30083', '-40301', '-40302', '-40303', '-41000', '-40206']
|
|
31
|
+
}, {
|
|
32
|
+
type: 'reset',
|
|
33
|
+
try: false,
|
|
34
|
+
help: true,
|
|
35
|
+
helpNum: 1,
|
|
36
|
+
feedBack: false,
|
|
37
|
+
suggestedText: '',
|
|
38
|
+
helpFeedBack: true,
|
|
39
|
+
codes: ['-1362', '-10001', '-10004']
|
|
40
|
+
}, {
|
|
41
|
+
type: 'reStart',
|
|
42
|
+
try: true,
|
|
43
|
+
help: true,
|
|
44
|
+
helpNum: 2,
|
|
45
|
+
feedBack: false,
|
|
46
|
+
suggestedText: '',
|
|
47
|
+
helpFeedBack: true,
|
|
48
|
+
codes: ['-11', '-10002', '-20001', '-12', '-13', '-14', '-100', '-23', '-104', '-103', '-114']
|
|
49
|
+
}, {
|
|
50
|
+
type: 'reStart',
|
|
51
|
+
try: true,
|
|
52
|
+
help: true,
|
|
53
|
+
helpNum: 2,
|
|
54
|
+
feedBack: false,
|
|
55
|
+
suggestedText: '',
|
|
56
|
+
helpFeedBack: false,
|
|
57
|
+
codes: ['-20007', '-30060']
|
|
58
|
+
}, {
|
|
59
|
+
type: 'reStartDeviceAndApp',
|
|
60
|
+
try: true,
|
|
61
|
+
help: true,
|
|
62
|
+
helpNum: 3,
|
|
63
|
+
feedBack: false,
|
|
64
|
+
suggestedText: '',
|
|
65
|
+
helpFeedBack: true,
|
|
66
|
+
codes: ['-30061']
|
|
67
|
+
}, {
|
|
68
|
+
type: 'checkAppAndReStartDevice',
|
|
69
|
+
try: true,
|
|
70
|
+
help: true,
|
|
71
|
+
helpNum: 4,
|
|
72
|
+
feedBack: false,
|
|
73
|
+
suggestedText: '',
|
|
74
|
+
helpFeedBack: true,
|
|
75
|
+
codes: ['-3', '-10003', '-40201', '-40203', '-40202', '-33', '-38', '-55', '-56', '-57', '-58']
|
|
76
|
+
}, {
|
|
77
|
+
type: 'reStartApp',
|
|
78
|
+
try: false,
|
|
79
|
+
help: false,
|
|
80
|
+
feedBack: false,
|
|
81
|
+
suggestedText: Strings.getLang('ipc_player_suggest_re_start_app_text'),
|
|
82
|
+
helpFeedBack: false,
|
|
83
|
+
codes: ['-20004', '-40205', '-20008', '-29', '-24', '-25', '-105', '-108']
|
|
84
|
+
}, {
|
|
85
|
+
type: 'closePrivate',
|
|
86
|
+
try: false,
|
|
87
|
+
help: false,
|
|
88
|
+
feedBack: false,
|
|
89
|
+
suggestedText: Strings.getLang('ipc_player_suggest_close_private_text'),
|
|
90
|
+
helpFeedBack: false,
|
|
91
|
+
codes: ['-102']
|
|
92
|
+
}, {
|
|
93
|
+
type: 'checkCameraAndMobileNetwork',
|
|
94
|
+
try: true,
|
|
95
|
+
help: false,
|
|
96
|
+
feedBack: true,
|
|
97
|
+
suggestedText: Strings.getLang('ipc_player_suggest_check_camera_and_mobile_network_text'),
|
|
98
|
+
helpFeedBack: false,
|
|
99
|
+
codes: ['-50', '-52', '-53', '-54']
|
|
100
|
+
}, {
|
|
101
|
+
type: 'upDataApp',
|
|
102
|
+
try: false,
|
|
103
|
+
help: false,
|
|
104
|
+
feedBack: false,
|
|
105
|
+
suggestedText: Strings.getLang('ipc_player_suggest_update_app_version_text'),
|
|
106
|
+
helpFeedBack: false,
|
|
107
|
+
codes: ['-20006']
|
|
108
|
+
}, {
|
|
109
|
+
type: 'limitTraffic',
|
|
110
|
+
try: false,
|
|
111
|
+
help: false,
|
|
112
|
+
feedBack: false,
|
|
113
|
+
helpFeedBack: false,
|
|
114
|
+
codes: ['-115', '-60000']
|
|
115
|
+
}, {
|
|
116
|
+
type: 'other',
|
|
117
|
+
try: true,
|
|
118
|
+
help: false,
|
|
119
|
+
feedBack: false,
|
|
120
|
+
helpFeedBack: false,
|
|
121
|
+
codes: []
|
|
122
|
+
}];
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* 获取对应错误码配置详情
|
|
126
|
+
*/
|
|
127
|
+
export const getErrCodeDetailDataByCode = code => {
|
|
128
|
+
return errCodeLabs.find(item => item.codes.includes(code)) || {};
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* 将errCode转化为正整数
|
|
133
|
+
*/
|
|
134
|
+
export const codeCoverToInt = code => {
|
|
135
|
+
return Math.abs(parseInt(String(code), 10));
|
|
136
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Strings from '../i18n';
|
|
2
|
+
/**
|
|
3
|
+
* 4G设备冻结的原因
|
|
4
|
+
*/
|
|
5
|
+
export const deviceFreezeReasonStore = {
|
|
6
|
+
1: Strings.getLang('ipc_player_sim_err_of_traffic'),
|
|
7
|
+
2: Strings.getLang('ipc_player_sim_err_system')
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 小程序ID集合
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
export const miniIdLabs = {
|
|
15
|
+
// IPC帮助小程序
|
|
16
|
+
ipcHelpMini: 'tybxwaylc6inpkrgeu',
|
|
17
|
+
// 通用帮助小程序
|
|
18
|
+
helpMini: 'tynxbsaqmkp28eanwp'
|
|
19
|
+
};
|
package/lib/constant.d.ts
CHANGED
package/lib/constant.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export let IpcFailCode = /*#__PURE__*/function (IpcFailCode) {
|
|
2
|
-
IpcFailCode[IpcFailCode["
|
|
2
|
+
IpcFailCode[IpcFailCode["ipc_player_unknown"] = -1000] = "ipc_player_unknown";
|
|
3
3
|
IpcFailCode[IpcFailCode["ipc_player_connect_fail"] = -1001] = "ipc_player_connect_fail";
|
|
4
4
|
IpcFailCode[IpcFailCode["ipc_player_preview_fail"] = -1002] = "ipc_player_preview_fail";
|
|
5
5
|
IpcFailCode[IpcFailCode["ipc_player_network_fail"] = -1010] = "ipc_player_network_fail";
|
package/lib/i18n/index.d.ts
CHANGED
|
@@ -18,12 +18,112 @@ declare const _default: kit.I18N<{
|
|
|
18
18
|
ipc_player_connect_fail: string;
|
|
19
19
|
ipc_player_unknown: string;
|
|
20
20
|
ipc_player_network_fail: string;
|
|
21
|
-
|
|
21
|
+
ipc_player_device_offline: string;
|
|
22
22
|
ipc_player_attr_invalid: string;
|
|
23
23
|
ipc_player_device_removed: string;
|
|
24
24
|
ipc_player_retry: string;
|
|
25
|
+
ipc_player_help: string;
|
|
26
|
+
ipc_player_feedback: string;
|
|
25
27
|
ipc_player_re_wake_camera: string;
|
|
26
28
|
ipc_player_device_sleep: string;
|
|
29
|
+
ipc_player_basic_private_not_exist: string;
|
|
30
|
+
ipc_player_error_1000: string;
|
|
31
|
+
ipc_player_error_1300: string;
|
|
32
|
+
ipc_player_error_1001: string;
|
|
33
|
+
ipc_player_error_1301: string;
|
|
34
|
+
ipc_player_error_1302: string;
|
|
35
|
+
ipc_player_error_30: string;
|
|
36
|
+
ipc_player_error_1002: string;
|
|
37
|
+
ipc_player_error_1303: string;
|
|
38
|
+
ipc_player_error_20003: string;
|
|
39
|
+
ipc_player_error_5: string;
|
|
40
|
+
ipc_player_error_1010: string;
|
|
41
|
+
ipc_player_error_1310: string;
|
|
42
|
+
ipc_player_error_20002: string;
|
|
43
|
+
ipc_player_error_40001: string;
|
|
44
|
+
ipc_player_error_1011: string;
|
|
45
|
+
ipc_player_error_1311: string;
|
|
46
|
+
ipc_player_error_40002: string;
|
|
47
|
+
ipc_player_error_1020: string;
|
|
48
|
+
ipc_player_error_1350: string;
|
|
49
|
+
ipc_player_error_1: string;
|
|
50
|
+
ipc_player_error_1360: string;
|
|
51
|
+
ipc_player_error_10000: string;
|
|
52
|
+
ipc_player_error_1361: string;
|
|
53
|
+
ipc_player_error_40000: string;
|
|
54
|
+
ipc_player_error_40200: string;
|
|
55
|
+
ipc_player_error_40300: string;
|
|
56
|
+
ipc_player_error_40400: string;
|
|
57
|
+
ipc_player_error_20005: string;
|
|
58
|
+
ipc_player_error_30012: string;
|
|
59
|
+
ipc_player_error_1320: string;
|
|
60
|
+
ipc_player_error_1364: string;
|
|
61
|
+
ipc_player_error_1021: string;
|
|
62
|
+
ipc_player_error_10008: string;
|
|
63
|
+
ipc_player_error_41001: string;
|
|
64
|
+
ipc_player_error_39: string;
|
|
65
|
+
ipc_player_error_30082: string;
|
|
66
|
+
ipc_player_error_1362: string;
|
|
67
|
+
ipc_player_error_10001: string;
|
|
68
|
+
ipc_player_error_10004: string;
|
|
69
|
+
ipc_player_error_11: string;
|
|
70
|
+
ipc_player_error_10002: string;
|
|
71
|
+
ipc_player_error_20001: string;
|
|
72
|
+
ipc_player_error_12: string;
|
|
73
|
+
ipc_player_error_13: string;
|
|
74
|
+
ipc_player_error_14: string;
|
|
75
|
+
ipc_player_error_100: string;
|
|
76
|
+
ipc_player_error_23: string;
|
|
77
|
+
ipc_player_error_104: string;
|
|
78
|
+
ipc_player_error_103: string;
|
|
79
|
+
ipc_player_error_114: string;
|
|
80
|
+
ipc_player_error_20007: string;
|
|
81
|
+
ipc_player_error_30060: string;
|
|
82
|
+
ipc_player_error_30061: string;
|
|
83
|
+
ipc_player_error_3: string;
|
|
84
|
+
ipc_player_error_10003: string;
|
|
85
|
+
ipc_player_error_40201: string;
|
|
86
|
+
ipc_player_error_40203: string;
|
|
87
|
+
ipc_player_error_40202: string;
|
|
88
|
+
ipc_player_error_33: string;
|
|
89
|
+
ipc_player_error_38: string;
|
|
90
|
+
ipc_player_error_55: string;
|
|
91
|
+
ipc_player_error_56: string;
|
|
92
|
+
ipc_player_error_57: string;
|
|
93
|
+
ipc_player_error_58: string;
|
|
94
|
+
ipc_player_error_20004: string;
|
|
95
|
+
ipc_player_error_40205: string;
|
|
96
|
+
ipc_player_error_20008: string;
|
|
97
|
+
ipc_player_error_29: string;
|
|
98
|
+
ipc_player_error_24: string;
|
|
99
|
+
ipc_player_error_25: string;
|
|
100
|
+
ipc_player_error_105: string;
|
|
101
|
+
ipc_player_error_108: string;
|
|
102
|
+
ipc_player_error_102: string;
|
|
103
|
+
ipc_player_error_50: string;
|
|
104
|
+
ipc_player_error_52: string;
|
|
105
|
+
ipc_player_error_53: string;
|
|
106
|
+
ipc_player_error_54: string;
|
|
107
|
+
ipc_player_error_115: string;
|
|
108
|
+
ipc_player_error_20006: string;
|
|
109
|
+
ipc_player_error_30083: string;
|
|
110
|
+
ipc_player_error_40301: string;
|
|
111
|
+
ipc_player_error_40302: string;
|
|
112
|
+
ipc_player_error_40303: string;
|
|
113
|
+
ipc_player_error_41000: string;
|
|
114
|
+
ipc_player_error_40206: string;
|
|
115
|
+
ipc_player_error_60000: string;
|
|
116
|
+
ipc_player_error_60001: string;
|
|
117
|
+
ipc_player_error_15: string;
|
|
118
|
+
ipc_player_error_common: string;
|
|
119
|
+
ipc_player_suggest_feed_back_err_factory_text: string;
|
|
120
|
+
ipc_player_suggest_re_start_app_text: string;
|
|
121
|
+
ipc_player_suggest_close_private_text: string;
|
|
122
|
+
ipc_player_suggest_check_camera_and_mobile_network_text: string;
|
|
123
|
+
ipc_player_suggest_update_app_version_text: string;
|
|
124
|
+
ipc_sim_err_system: string;
|
|
125
|
+
ipc_sim_err_of_traffic: string;
|
|
126
|
+
ipc_player_traffic_load_online_zero_tip: string;
|
|
27
127
|
};
|
|
28
128
|
zh: {
|
|
29
129
|
ipc_player_get_video_stream: string;
|
|
@@ -43,12 +143,112 @@ declare const _default: kit.I18N<{
|
|
|
43
143
|
ipc_player_connect_fail: string;
|
|
44
144
|
ipc_player_unknown: string;
|
|
45
145
|
ipc_player_network_fail: string;
|
|
46
|
-
|
|
146
|
+
ipc_player_device_offline: string;
|
|
47
147
|
ipc_player_attr_invalid: string;
|
|
48
148
|
ipc_player_device_removed: string;
|
|
49
149
|
ipc_player_retry: string;
|
|
150
|
+
ipc_player_help: string;
|
|
151
|
+
ipc_player_feedback: string;
|
|
50
152
|
ipc_player_re_wake_camera: string;
|
|
51
153
|
ipc_player_device_sleep: string;
|
|
154
|
+
ipc_player_basic_private_not_exist: string;
|
|
155
|
+
ipc_player_error_1000: string;
|
|
156
|
+
ipc_player_error_1300: string;
|
|
157
|
+
ipc_player_error_1001: string;
|
|
158
|
+
ipc_player_error_1301: string;
|
|
159
|
+
ipc_player_error_1302: string;
|
|
160
|
+
ipc_player_error_30: string;
|
|
161
|
+
ipc_player_error_1002: string;
|
|
162
|
+
ipc_player_error_1303: string;
|
|
163
|
+
ipc_player_error_20003: string;
|
|
164
|
+
ipc_player_error_5: string;
|
|
165
|
+
ipc_player_error_1010: string;
|
|
166
|
+
ipc_player_error_1310: string;
|
|
167
|
+
ipc_player_error_20002: string;
|
|
168
|
+
ipc_player_error_40001: string;
|
|
169
|
+
ipc_player_error_1011: string;
|
|
170
|
+
ipc_player_error_1311: string;
|
|
171
|
+
ipc_player_error_40002: string;
|
|
172
|
+
ipc_player_error_1020: string;
|
|
173
|
+
ipc_player_error_1350: string;
|
|
174
|
+
ipc_player_error_1: string;
|
|
175
|
+
ipc_player_error_1360: string;
|
|
176
|
+
ipc_player_error_10000: string;
|
|
177
|
+
ipc_player_error_1361: string;
|
|
178
|
+
ipc_player_error_40000: string;
|
|
179
|
+
ipc_player_error_40200: string;
|
|
180
|
+
ipc_player_error_40300: string;
|
|
181
|
+
ipc_player_error_40400: string;
|
|
182
|
+
ipc_player_error_20005: string;
|
|
183
|
+
ipc_player_error_30012: string;
|
|
184
|
+
ipc_player_error_1320: string;
|
|
185
|
+
ipc_player_error_1364: string;
|
|
186
|
+
ipc_player_error_1021: string;
|
|
187
|
+
ipc_player_error_10008: string;
|
|
188
|
+
ipc_player_error_41001: string;
|
|
189
|
+
ipc_player_error_39: string;
|
|
190
|
+
ipc_player_error_30082: string;
|
|
191
|
+
ipc_player_error_1362: string;
|
|
192
|
+
ipc_player_error_10001: string;
|
|
193
|
+
ipc_player_error_10004: string;
|
|
194
|
+
ipc_player_error_11: string;
|
|
195
|
+
ipc_player_error_10002: string;
|
|
196
|
+
ipc_player_error_20001: string;
|
|
197
|
+
ipc_player_error_12: string;
|
|
198
|
+
ipc_player_error_13: string;
|
|
199
|
+
ipc_player_error_14: string;
|
|
200
|
+
ipc_player_error_100: string;
|
|
201
|
+
ipc_player_error_23: string;
|
|
202
|
+
ipc_player_error_104: string;
|
|
203
|
+
ipc_player_error_103: string;
|
|
204
|
+
ipc_player_error_114: string;
|
|
205
|
+
ipc_player_error_20007: string;
|
|
206
|
+
ipc_player_error_30060: string;
|
|
207
|
+
ipc_player_error_30061: string;
|
|
208
|
+
ipc_player_error_3: string;
|
|
209
|
+
ipc_player_error_10003: string;
|
|
210
|
+
ipc_player_error_40201: string;
|
|
211
|
+
ipc_player_error_40203: string;
|
|
212
|
+
ipc_player_error_40202: string;
|
|
213
|
+
ipc_player_error_33: string;
|
|
214
|
+
ipc_player_error_38: string;
|
|
215
|
+
ipc_player_error_55: string;
|
|
216
|
+
ipc_player_error_56: string;
|
|
217
|
+
ipc_player_error_57: string;
|
|
218
|
+
ipc_player_error_58: string;
|
|
219
|
+
ipc_player_error_20004: string;
|
|
220
|
+
ipc_player_error_40205: string;
|
|
221
|
+
ipc_player_error_20008: string;
|
|
222
|
+
ipc_player_error_29: string;
|
|
223
|
+
ipc_player_error_24: string;
|
|
224
|
+
ipc_player_error_25: string;
|
|
225
|
+
ipc_player_error_105: string;
|
|
226
|
+
ipc_player_error_108: string;
|
|
227
|
+
ipc_player_error_102: string;
|
|
228
|
+
ipc_player_error_50: string;
|
|
229
|
+
ipc_player_error_52: string;
|
|
230
|
+
ipc_player_error_53: string;
|
|
231
|
+
ipc_player_error_54: string;
|
|
232
|
+
ipc_player_error_115: string;
|
|
233
|
+
ipc_player_error_20006: string;
|
|
234
|
+
ipc_player_error_30083: string;
|
|
235
|
+
ipc_player_error_40301: string;
|
|
236
|
+
ipc_player_error_40302: string;
|
|
237
|
+
ipc_player_error_40303: string;
|
|
238
|
+
ipc_player_error_41000: string;
|
|
239
|
+
ipc_player_error_40206: string;
|
|
240
|
+
ipc_player_error_60000: string;
|
|
241
|
+
ipc_player_error_60001: string;
|
|
242
|
+
ipc_player_error_15: string;
|
|
243
|
+
ipc_player_error_common: string;
|
|
244
|
+
ipc_player_suggest_feed_back_err_factory_text: string;
|
|
245
|
+
ipc_player_suggest_re_start_app_text: string;
|
|
246
|
+
ipc_player_suggest_close_private_text: string;
|
|
247
|
+
ipc_player_suggest_check_camera_and_mobile_network_text: string;
|
|
248
|
+
ipc_player_suggest_update_app_version_text: string;
|
|
249
|
+
ipc_player_sim_err_system: string;
|
|
250
|
+
ipc_player_sim_err_of_traffic: string;
|
|
251
|
+
ipc_player_traffic_load_online_zero_tip: string;
|
|
52
252
|
};
|
|
53
253
|
}, {
|
|
54
254
|
ipc_player_get_video_stream: string;
|
|
@@ -68,12 +268,112 @@ declare const _default: kit.I18N<{
|
|
|
68
268
|
ipc_player_connect_fail: string;
|
|
69
269
|
ipc_player_unknown: string;
|
|
70
270
|
ipc_player_network_fail: string;
|
|
71
|
-
|
|
271
|
+
ipc_player_device_offline: string;
|
|
72
272
|
ipc_player_attr_invalid: string;
|
|
73
273
|
ipc_player_device_removed: string;
|
|
74
274
|
ipc_player_retry: string;
|
|
275
|
+
ipc_player_help: string;
|
|
276
|
+
ipc_player_feedback: string;
|
|
75
277
|
ipc_player_re_wake_camera: string;
|
|
76
278
|
ipc_player_device_sleep: string;
|
|
279
|
+
ipc_player_basic_private_not_exist: string;
|
|
280
|
+
ipc_player_error_1000: string;
|
|
281
|
+
ipc_player_error_1300: string;
|
|
282
|
+
ipc_player_error_1001: string;
|
|
283
|
+
ipc_player_error_1301: string;
|
|
284
|
+
ipc_player_error_1302: string;
|
|
285
|
+
ipc_player_error_30: string;
|
|
286
|
+
ipc_player_error_1002: string;
|
|
287
|
+
ipc_player_error_1303: string;
|
|
288
|
+
ipc_player_error_20003: string;
|
|
289
|
+
ipc_player_error_5: string;
|
|
290
|
+
ipc_player_error_1010: string;
|
|
291
|
+
ipc_player_error_1310: string;
|
|
292
|
+
ipc_player_error_20002: string;
|
|
293
|
+
ipc_player_error_40001: string;
|
|
294
|
+
ipc_player_error_1011: string;
|
|
295
|
+
ipc_player_error_1311: string;
|
|
296
|
+
ipc_player_error_40002: string;
|
|
297
|
+
ipc_player_error_1020: string;
|
|
298
|
+
ipc_player_error_1350: string;
|
|
299
|
+
ipc_player_error_1: string;
|
|
300
|
+
ipc_player_error_1360: string;
|
|
301
|
+
ipc_player_error_10000: string;
|
|
302
|
+
ipc_player_error_1361: string;
|
|
303
|
+
ipc_player_error_40000: string;
|
|
304
|
+
ipc_player_error_40200: string;
|
|
305
|
+
ipc_player_error_40300: string;
|
|
306
|
+
ipc_player_error_40400: string;
|
|
307
|
+
ipc_player_error_20005: string;
|
|
308
|
+
ipc_player_error_30012: string;
|
|
309
|
+
ipc_player_error_1320: string;
|
|
310
|
+
ipc_player_error_1364: string;
|
|
311
|
+
ipc_player_error_1021: string;
|
|
312
|
+
ipc_player_error_10008: string;
|
|
313
|
+
ipc_player_error_41001: string;
|
|
314
|
+
ipc_player_error_39: string;
|
|
315
|
+
ipc_player_error_30082: string;
|
|
316
|
+
ipc_player_error_1362: string;
|
|
317
|
+
ipc_player_error_10001: string;
|
|
318
|
+
ipc_player_error_10004: string;
|
|
319
|
+
ipc_player_error_11: string;
|
|
320
|
+
ipc_player_error_10002: string;
|
|
321
|
+
ipc_player_error_20001: string;
|
|
322
|
+
ipc_player_error_12: string;
|
|
323
|
+
ipc_player_error_13: string;
|
|
324
|
+
ipc_player_error_14: string;
|
|
325
|
+
ipc_player_error_100: string;
|
|
326
|
+
ipc_player_error_23: string;
|
|
327
|
+
ipc_player_error_104: string;
|
|
328
|
+
ipc_player_error_103: string;
|
|
329
|
+
ipc_player_error_114: string;
|
|
330
|
+
ipc_player_error_20007: string;
|
|
331
|
+
ipc_player_error_30060: string;
|
|
332
|
+
ipc_player_error_30061: string;
|
|
333
|
+
ipc_player_error_3: string;
|
|
334
|
+
ipc_player_error_10003: string;
|
|
335
|
+
ipc_player_error_40201: string;
|
|
336
|
+
ipc_player_error_40203: string;
|
|
337
|
+
ipc_player_error_40202: string;
|
|
338
|
+
ipc_player_error_33: string;
|
|
339
|
+
ipc_player_error_38: string;
|
|
340
|
+
ipc_player_error_55: string;
|
|
341
|
+
ipc_player_error_56: string;
|
|
342
|
+
ipc_player_error_57: string;
|
|
343
|
+
ipc_player_error_58: string;
|
|
344
|
+
ipc_player_error_20004: string;
|
|
345
|
+
ipc_player_error_40205: string;
|
|
346
|
+
ipc_player_error_20008: string;
|
|
347
|
+
ipc_player_error_29: string;
|
|
348
|
+
ipc_player_error_24: string;
|
|
349
|
+
ipc_player_error_25: string;
|
|
350
|
+
ipc_player_error_105: string;
|
|
351
|
+
ipc_player_error_108: string;
|
|
352
|
+
ipc_player_error_102: string;
|
|
353
|
+
ipc_player_error_50: string;
|
|
354
|
+
ipc_player_error_52: string;
|
|
355
|
+
ipc_player_error_53: string;
|
|
356
|
+
ipc_player_error_54: string;
|
|
357
|
+
ipc_player_error_115: string;
|
|
358
|
+
ipc_player_error_20006: string;
|
|
359
|
+
ipc_player_error_30083: string;
|
|
360
|
+
ipc_player_error_40301: string;
|
|
361
|
+
ipc_player_error_40302: string;
|
|
362
|
+
ipc_player_error_40303: string;
|
|
363
|
+
ipc_player_error_41000: string;
|
|
364
|
+
ipc_player_error_40206: string;
|
|
365
|
+
ipc_player_error_60000: string;
|
|
366
|
+
ipc_player_error_60001: string;
|
|
367
|
+
ipc_player_error_15: string;
|
|
368
|
+
ipc_player_error_common: string;
|
|
369
|
+
ipc_player_suggest_feed_back_err_factory_text: string;
|
|
370
|
+
ipc_player_suggest_re_start_app_text: string;
|
|
371
|
+
ipc_player_suggest_close_private_text: string;
|
|
372
|
+
ipc_player_suggest_check_camera_and_mobile_network_text: string;
|
|
373
|
+
ipc_player_suggest_update_app_version_text: string;
|
|
374
|
+
ipc_sim_err_system: string;
|
|
375
|
+
ipc_sim_err_of_traffic: string;
|
|
376
|
+
ipc_player_traffic_load_online_zero_tip: string;
|
|
77
377
|
} | {
|
|
78
378
|
ipc_player_get_video_stream: string;
|
|
79
379
|
ipc_player_preview_fail: string;
|
|
@@ -92,11 +392,111 @@ declare const _default: kit.I18N<{
|
|
|
92
392
|
ipc_player_connect_fail: string;
|
|
93
393
|
ipc_player_unknown: string;
|
|
94
394
|
ipc_player_network_fail: string;
|
|
95
|
-
|
|
395
|
+
ipc_player_device_offline: string;
|
|
96
396
|
ipc_player_attr_invalid: string;
|
|
97
397
|
ipc_player_device_removed: string;
|
|
98
398
|
ipc_player_retry: string;
|
|
399
|
+
ipc_player_help: string;
|
|
400
|
+
ipc_player_feedback: string;
|
|
99
401
|
ipc_player_re_wake_camera: string;
|
|
100
402
|
ipc_player_device_sleep: string;
|
|
403
|
+
ipc_player_basic_private_not_exist: string;
|
|
404
|
+
ipc_player_error_1000: string;
|
|
405
|
+
ipc_player_error_1300: string;
|
|
406
|
+
ipc_player_error_1001: string;
|
|
407
|
+
ipc_player_error_1301: string;
|
|
408
|
+
ipc_player_error_1302: string;
|
|
409
|
+
ipc_player_error_30: string;
|
|
410
|
+
ipc_player_error_1002: string;
|
|
411
|
+
ipc_player_error_1303: string;
|
|
412
|
+
ipc_player_error_20003: string;
|
|
413
|
+
ipc_player_error_5: string;
|
|
414
|
+
ipc_player_error_1010: string;
|
|
415
|
+
ipc_player_error_1310: string;
|
|
416
|
+
ipc_player_error_20002: string;
|
|
417
|
+
ipc_player_error_40001: string;
|
|
418
|
+
ipc_player_error_1011: string;
|
|
419
|
+
ipc_player_error_1311: string;
|
|
420
|
+
ipc_player_error_40002: string;
|
|
421
|
+
ipc_player_error_1020: string;
|
|
422
|
+
ipc_player_error_1350: string;
|
|
423
|
+
ipc_player_error_1: string;
|
|
424
|
+
ipc_player_error_1360: string;
|
|
425
|
+
ipc_player_error_10000: string;
|
|
426
|
+
ipc_player_error_1361: string;
|
|
427
|
+
ipc_player_error_40000: string;
|
|
428
|
+
ipc_player_error_40200: string;
|
|
429
|
+
ipc_player_error_40300: string;
|
|
430
|
+
ipc_player_error_40400: string;
|
|
431
|
+
ipc_player_error_20005: string;
|
|
432
|
+
ipc_player_error_30012: string;
|
|
433
|
+
ipc_player_error_1320: string;
|
|
434
|
+
ipc_player_error_1364: string;
|
|
435
|
+
ipc_player_error_1021: string;
|
|
436
|
+
ipc_player_error_10008: string;
|
|
437
|
+
ipc_player_error_41001: string;
|
|
438
|
+
ipc_player_error_39: string;
|
|
439
|
+
ipc_player_error_30082: string;
|
|
440
|
+
ipc_player_error_1362: string;
|
|
441
|
+
ipc_player_error_10001: string;
|
|
442
|
+
ipc_player_error_10004: string;
|
|
443
|
+
ipc_player_error_11: string;
|
|
444
|
+
ipc_player_error_10002: string;
|
|
445
|
+
ipc_player_error_20001: string;
|
|
446
|
+
ipc_player_error_12: string;
|
|
447
|
+
ipc_player_error_13: string;
|
|
448
|
+
ipc_player_error_14: string;
|
|
449
|
+
ipc_player_error_100: string;
|
|
450
|
+
ipc_player_error_23: string;
|
|
451
|
+
ipc_player_error_104: string;
|
|
452
|
+
ipc_player_error_103: string;
|
|
453
|
+
ipc_player_error_114: string;
|
|
454
|
+
ipc_player_error_20007: string;
|
|
455
|
+
ipc_player_error_30060: string;
|
|
456
|
+
ipc_player_error_30061: string;
|
|
457
|
+
ipc_player_error_3: string;
|
|
458
|
+
ipc_player_error_10003: string;
|
|
459
|
+
ipc_player_error_40201: string;
|
|
460
|
+
ipc_player_error_40203: string;
|
|
461
|
+
ipc_player_error_40202: string;
|
|
462
|
+
ipc_player_error_33: string;
|
|
463
|
+
ipc_player_error_38: string;
|
|
464
|
+
ipc_player_error_55: string;
|
|
465
|
+
ipc_player_error_56: string;
|
|
466
|
+
ipc_player_error_57: string;
|
|
467
|
+
ipc_player_error_58: string;
|
|
468
|
+
ipc_player_error_20004: string;
|
|
469
|
+
ipc_player_error_40205: string;
|
|
470
|
+
ipc_player_error_20008: string;
|
|
471
|
+
ipc_player_error_29: string;
|
|
472
|
+
ipc_player_error_24: string;
|
|
473
|
+
ipc_player_error_25: string;
|
|
474
|
+
ipc_player_error_105: string;
|
|
475
|
+
ipc_player_error_108: string;
|
|
476
|
+
ipc_player_error_102: string;
|
|
477
|
+
ipc_player_error_50: string;
|
|
478
|
+
ipc_player_error_52: string;
|
|
479
|
+
ipc_player_error_53: string;
|
|
480
|
+
ipc_player_error_54: string;
|
|
481
|
+
ipc_player_error_115: string;
|
|
482
|
+
ipc_player_error_20006: string;
|
|
483
|
+
ipc_player_error_30083: string;
|
|
484
|
+
ipc_player_error_40301: string;
|
|
485
|
+
ipc_player_error_40302: string;
|
|
486
|
+
ipc_player_error_40303: string;
|
|
487
|
+
ipc_player_error_41000: string;
|
|
488
|
+
ipc_player_error_40206: string;
|
|
489
|
+
ipc_player_error_60000: string;
|
|
490
|
+
ipc_player_error_60001: string;
|
|
491
|
+
ipc_player_error_15: string;
|
|
492
|
+
ipc_player_error_common: string;
|
|
493
|
+
ipc_player_suggest_feed_back_err_factory_text: string;
|
|
494
|
+
ipc_player_suggest_re_start_app_text: string;
|
|
495
|
+
ipc_player_suggest_close_private_text: string;
|
|
496
|
+
ipc_player_suggest_check_camera_and_mobile_network_text: string;
|
|
497
|
+
ipc_player_suggest_update_app_version_text: string;
|
|
498
|
+
ipc_player_sim_err_system: string;
|
|
499
|
+
ipc_player_sim_err_of_traffic: string;
|
|
500
|
+
ipc_player_traffic_load_online_zero_tip: string;
|
|
101
501
|
}>;
|
|
102
502
|
export default _default;
|