Added support for agent help requests.
Ylian Saint-Hilaire committed
Oct 1, 2020 at 15:45 UTC
038c61c1f1ffbbb40c62c22b50868c20892f6c9d
8 files changed
+2326
-2228
agents/meshcore.js
+14
-1
@@ -138,7 +138,7 @@ function createMeshCore(agent) {
138
obj.DAIPC = require('net').createServer();
139
if (process.platform != 'win32') { try { require('fs').unlinkSync(process.cwd() + '/DAIPC'); } catch (e) { } }
140
obj.DAIPC.IPCPATH = process.platform == 'win32' ? ('\\\\.\\pipe\\' + require('_agentNodeId')() + '-DAIPC') : (process.cwd() + '/DAIPC');
141
- try { obj.DAIPC.listen({ path: obj.DAIPC.IPCPATH }); } catch (e) { }
141
+ try { obj.DAIPC.listen({ path: obj.DAIPC.IPCPATH, writableAll: true }); } catch (e) { }
142
obj.DAIPC.on('connection', function (c) {
143
c._send = function (j) {
144
var data = JSON.stringify(j);
@@ -166,6 +166,19 @@ function createMeshCore(agent) {
166
167
try {
168
switch (data.cmd) {
169
+ case 'requesthelp':
170
+ if (this._registered == null) return;
171
+ sendConsoleText('Request Help (' + this._registered + '): ' + data.value);
172
+ var help = {};
173
+ help[this._registered] = data.value;
174
+ try { mesh.SendCommand({ action: 'sessions', type: 'help', value: help }); } catch (e) { }
175
+ MeshServerLogEx(98, [this._registered, data.value], "Help Requested, user: " + this._registered + ", details: " + data.value, null);
176
+ break;
177
+ case 'cancelhelp':
178
+ if (this._registered == null) return;
179
+ sendConsoleText('Cancel Help (' + this._registered + ')');
180
+ try { mesh.SendCommand({ action: 'sessions', type: 'help', value: {} }); } catch (e) { }
181
+ break;
182
case 'register':
183
if (typeof data.value == 'string') {
184
this._registered = data.value;
meshagent.js
+1
@@ -1382,6 +1382,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1382
if (command.type == 'kvm') { obj.sessions.kvm = command.value; }
1383
else if (command.type == 'terminal') { obj.sessions.terminal = command.value; }
1384
else if (command.type == 'files') { obj.sessions.files = command.value; }
1385
+ else if (command.type == 'help') { obj.sessions.help = command.value; }
1386
else if (command.type == 'tcp') { obj.sessions.tcp = command.value; }
1387
else if (command.type == 'udp') { obj.sessions.udp = command.value; }
1388
else if (command.type == 'msg') { obj.sessions.msg = command.value; }
public/images/icon-help-notify-10.png
Binary files /dev/null and b/public/images/icon-help-notify-10.png differ
public/images/icon-help-notify-16.png
Binary files /dev/null and b/public/images/icon-help-notify-16.png differ
public/images/icon-help-notify-40.png
Binary files /dev/null and b/public/images/icon-help-notify-40.png differ
translate/translate.json
+2249
-2224
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->27->1340",
21
- "default.handlebars->27->1342"
20
+ "default.handlebars->27->1342",
21
+ "default.handlebars->27->1344"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->27->1253"
207
+ "default.handlebars->27->1255"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->27->1417",
228
- "default.handlebars->27->1871"
227
+ "default.handlebars->27->1419",
228
+ "default.handlebars->27->1874"
229
]
230
},
231
{
@@ -245,7 +245,7 @@
245
"zh-chs": " 并使用该用户名和任何密码对服务器进行身份验证。",
246
"zh-cht": " 並使用此用戶名和任何密碼對伺服器進行身份驗證。",
247
"xloc": [
248
- "default.handlebars->27->317"
248
+ "default.handlebars->27->319"
249
]
250
},
251
{
@@ -265,7 +265,7 @@
265
"zh-chs": " 并使用该用户名和密码向服务器验证身份。",
266
"zh-cht": " 並使用此用戶名和密碼向伺服器驗證身份。",
267
"xloc": [
268
- "default.handlebars->27->316"
268
+ "default.handlebars->27->318"
269
]
270
},
271
{
@@ -285,7 +285,7 @@
285
"zh-chs": " 节点",
286
"zh-cht": " 節點",
287
"xloc": [
288
- "default-mobile.handlebars->9->205"
288
+ "default-mobile.handlebars->9->206"
289
]
290
},
291
{
@@ -305,7 +305,7 @@
305
"zh-chs": " 节点",
306
"zh-cht": " 節點",
307
"xloc": [
308
- "default-mobile.handlebars->9->206"
308
+ "default-mobile.handlebars->9->207"
309
]
310
},
311
{
@@ -325,7 +325,7 @@
325
"zh-chs": " TLS。",
326
"zh-cht": " TLS。",
327
"xloc": [
328
- "default.handlebars->27->170"
328
+ "default.handlebars->27->171"
329
]
330
},
331
{
@@ -345,7 +345,7 @@
345
"zh-chs": " 没有TLS。",
346
"zh-cht": " 沒有TLS。",
347
"xloc": [
348
- "default.handlebars->27->171"
348
+ "default.handlebars->27->172"
349
]
350
},
351
{
@@ -401,7 +401,7 @@
401
"zh-chs": "(可选的)",
402
"zh-cht": "(可選的)",
403
"xloc": [
404
- "default.handlebars->27->356"
404
+ "default.handlebars->27->358"
405
]
406
},
407
{
@@ -438,7 +438,7 @@
438
"zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
439
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
440
"xloc": [
441
- "default.handlebars->27->395"
441
+ "default.handlebars->27->397"
442
]
443
},
444
{
@@ -458,7 +458,7 @@
458
"zh-chs": "*保留空白可为每个设备分配一个随机密码。",
459
"zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。",
460
"xloc": [
461
- "default.handlebars->27->1387"
461
+ "default.handlebars->27->1389"
462
]
463
},
464
{
@@ -495,8 +495,8 @@
495
"zh-chs": ",",
496
"zh-cht": ",",
497
"xloc": [
498
- "default-mobile.handlebars->9->449",
499
- "default.handlebars->27->1484"
498
+ "default-mobile.handlebars->9->450",
499
+ "default.handlebars->27->1486"
500
]
501
},
502
{
@@ -517,7 +517,7 @@
517
"zh-cht": ",只適用於Intel®AMT",
518
"xloc": [
519
"default-mobile.handlebars->9->147",
520
- "default.handlebars->27->203"
520
+ "default.handlebars->27->204"
521
]
522
},
523
{
@@ -537,7 +537,7 @@
537
"zh-chs": ",MQTT在线",
538
"zh-cht": ",MQTT在線",
539
"xloc": [
540
- "default.handlebars->27->995"
540
+ "default.handlebars->27->997"
541
]
542
},
543
{
@@ -557,7 +557,7 @@
557
"zh-chs": ",软体KVM",
558
"zh-cht": ",軟體KVM",
559
"xloc": [
560
- "default.handlebars->27->821",
560
+ "default.handlebars->27->823",
561
"desktop.handlebars->3->13"
562
]
563
},
@@ -578,11 +578,11 @@
578
"zh-chs": ",WebRTC",
579
"zh-cht": ",WebRTC",
580
"xloc": [
581
- "default-mobile.handlebars->9->284",
582
- "default-mobile.handlebars->9->293",
583
- "default.handlebars->27->828",
584
- "default.handlebars->27->861",
585
- "default.handlebars->27->873",
581
+ "default-mobile.handlebars->9->285",
582
+ "default-mobile.handlebars->9->294",
583
+ "default.handlebars->27->830",
584
+ "default.handlebars->27->863",
585
+ "default.handlebars->27->875",
586
"desktop.handlebars->3->20",
587
"xterm.handlebars->9->6"
588
]
@@ -703,7 +703,7 @@
703
"zh-chs": ",{0}观看",
704
"zh-cht": ",{0}觀看",
705
"xloc": [
706
- "default.handlebars->27->822",
706
+ "default.handlebars->27->824",
707
"desktop.handlebars->3->14"
708
]
709
},
@@ -767,10 +767,10 @@
767
"zh-cht": "...",
768
"xloc": [
769
"default-mobile.handlebars->9->108",
770
- "default-mobile.handlebars->9->295",
771
- "default.handlebars->27->1525",
772
- "default.handlebars->27->2026",
773
- "default.handlebars->27->878"
770
+ "default-mobile.handlebars->9->296",
771
+ "default.handlebars->27->1527",
772
+ "default.handlebars->27->2029",
773
+ "default.handlebars->27->880"
774
]
775
},
776
{
@@ -826,7 +826,7 @@
826
"zh-chs": "1个活跃时段",
827
"zh-cht": "1個活躍時段",
828
"xloc": [
829
- "default.handlebars->27->1940"
829
+ "default.handlebars->27->1943"
830
]
831
},
832
{
@@ -847,8 +847,8 @@
847
"zh-cht": "1個位元組",
848
"xloc": [
849
"default-mobile.handlebars->9->118",
850
- "default-mobile.handlebars->9->453",
851
- "default.handlebars->27->1549",
850
+ "default-mobile.handlebars->9->454",
851
+ "default.handlebars->27->1551",
852
"download.handlebars->3->1",
853
"download2.handlebars->5->1"
854
]
@@ -870,7 +870,7 @@
870
"zh-chs": "1条连接",
871
"zh-cht": "1位聯絡文",
872
"xloc": [
873
- "default.handlebars->27->824",
873
+ "default.handlebars->27->826",
874
"desktop.handlebars->3->16"
875
]
876
},
@@ -891,9 +891,9 @@
891
"zh-chs": "1天",
892
"zh-cht": "1天",
893
"xloc": [
894
- "default.handlebars->27->178",
895
- "default.handlebars->27->347",
896
- "default.handlebars->27->361"
894
+ "default.handlebars->27->179",
895
+ "default.handlebars->27->349",
896
+ "default.handlebars->27->363"
897
]
898
},
899
{
@@ -913,7 +913,7 @@
913
"zh-chs": "1组",
914
"zh-cht": "1群",
915
"xloc": [
916
- "default.handlebars->27->1905"
916
+ "default.handlebars->27->1908"
917
]
918
},
919
{
@@ -933,9 +933,9 @@
933
"zh-chs": "1小时",
934
"zh-cht": "1小時",
935
"xloc": [
936
- "default.handlebars->27->176",
937
- "default.handlebars->27->345",
938
- "default.handlebars->27->359"
936
+ "default.handlebars->27->177",
937
+ "default.handlebars->27->347",
938
+ "default.handlebars->27->361"
939
]
940
},
941
{
@@ -955,7 +955,7 @@
955
"zh-chs": "1分钟",
956
"zh-cht": "1分鐘",
957
"xloc": [
958
- "default.handlebars->27->718"
958
+ "default.handlebars->27->720"
959
]
960
},
961
{
@@ -995,9 +995,9 @@
995
"zh-chs": "1个月",
996
"zh-cht": "1個月",
997
"xloc": [
998
- "default.handlebars->27->180",
999
- "default.handlebars->27->349",
1000
- "default.handlebars->27->363"
998
+ "default.handlebars->27->181",
999
+ "default.handlebars->27->351",
1000
+ "default.handlebars->27->365"
1001
]
1002
},
1003
{
@@ -1017,7 +1017,7 @@
1017
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1018
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1019
"xloc": [
1020
- "default.handlebars->27->1695"
1020
+ "default.handlebars->27->1698"
1021
]
1022
},
1023
{
@@ -1037,7 +1037,7 @@
1037
"zh-chs": "1个节点",
1038
"zh-cht": "1個節點",
1039
"xloc": [
1040
- "default.handlebars->27->415"
1040
+ "default.handlebars->27->417"
1041
]
1042
},
1043
{
@@ -1077,19 +1077,19 @@
1077
"zh-chs": "1节",
1078
"zh-cht": "1節",
1079
"xloc": [
1080
- "default-mobile.handlebars->9->159",
1081
- "default-mobile.handlebars->9->162",
1082
- "default-mobile.handlebars->9->165",
1083
- "default-mobile.handlebars->9->168",
1084
- "default-mobile.handlebars->9->171",
1085
- "default-mobile.handlebars->9->174",
1086
- "default.handlebars->27->1699",
1087
- "default.handlebars->27->245",
1088
- "default.handlebars->27->248",
1089
- "default.handlebars->27->251",
1090
- "default.handlebars->27->254",
1091
- "default.handlebars->27->257",
1092
- "default.handlebars->27->260"
1080
+ "default-mobile.handlebars->9->160",
1081
+ "default-mobile.handlebars->9->163",
1082
+ "default-mobile.handlebars->9->166",
1083
+ "default-mobile.handlebars->9->169",
1084
+ "default-mobile.handlebars->9->172",
1085
+ "default-mobile.handlebars->9->175",
1086
+ "default.handlebars->27->1702",
1087
+ "default.handlebars->27->247",
1088
+ "default.handlebars->27->250",
1089
+ "default.handlebars->27->253",
1090
+ "default.handlebars->27->256",
1091
+ "default.handlebars->27->259",
1092
+ "default.handlebars->27->262"
1093
]
1094
},
1095
{
@@ -1109,9 +1109,9 @@
1109
"zh-chs": "1周",
1110
"zh-cht": "1週",
1111
"xloc": [
1112
- "default.handlebars->27->179",
1113
- "default.handlebars->27->348",
1114
- "default.handlebars->27->362"
1112
+ "default.handlebars->27->180",
1113
+ "default.handlebars->27->350",
1114
+ "default.handlebars->27->364"
1115
]
1116
},
1117
{
@@ -1215,7 +1215,7 @@
1215
"zh-chs": "10分钟",
1216
"zh-cht": "10分鐘",
1217
"xloc": [
1218
- "default.handlebars->27->720"
1218
+ "default.handlebars->27->722"
1219
]
1220
},
1221
{
@@ -1284,7 +1284,7 @@
1284
"en": "12 hours",
1285
"nl": "12 uur",
1286
"xloc": [
1287
- "default.handlebars->27->728"
1287
+ "default.handlebars->27->730"
1288
]
1289
},
1290
{
@@ -1326,28 +1326,28 @@
1326
"zh-chs": "15分钟",
1327
"zh-cht": "15分鐘",
1328
"xloc": [
1329
- "default.handlebars->27->721"
1329
+ "default.handlebars->27->723"
1330
]
1331
},
1332
{
1333
"en": "16 hours",
1334
"nl": "16 uur",
1335
"xloc": [
1336
- "default.handlebars->27->729"
1336
+ "default.handlebars->27->731"
1337
]
1338
},
1339
{
1340
"en": "2 days",
1341
"nl": "2 dagen",
1342
"xloc": [
1343
- "default.handlebars->27->731"
1343
+ "default.handlebars->27->733"
1344
]
1345
},
1346
{
1347
"en": "2 hours",
1348
"nl": "2 uur",
1349
"xloc": [
1350
- "default.handlebars->27->725"
1350
+ "default.handlebars->27->727"
1351
]
1352
},
1353
{
@@ -1438,7 +1438,7 @@
1438
"en": "24 hours",
1439
"nl": "24 uur",
1440
"xloc": [
1441
- "default.handlebars->27->730"
1441
+ "default.handlebars->27->732"
1442
]
1443
},
1444
{
@@ -1500,7 +1500,7 @@
1500
"zh-chs": "2FA备份代码已清除",
1501
"zh-cht": "2FA備份代碼已清除",
1502
"xloc": [
1503
- "default.handlebars->27->1660"
1503
+ "default.handlebars->27->1662"
1504
]
1505
},
1506
{
@@ -1520,8 +1520,8 @@
1520
"zh-chs": "启用第二因素身份验证",
1521
"zh-cht": "啟用第二因素身份驗證",
1522
"xloc": [
1523
- "default.handlebars->27->1712",
1524
- "default.handlebars->27->1927"
1523
+ "default.handlebars->27->1715",
1524
+ "default.handlebars->27->1930"
1525
]
1526
},
1527
{
@@ -1557,7 +1557,7 @@
1557
"pt": "3",
1558
"ru": "3",
1559
"xloc": [
1560
- "default-mobile.handlebars->9->321"
1560
+ "default-mobile.handlebars->9->322"
1561
]
1562
},
1563
{
@@ -1640,7 +1640,7 @@
1640
"zh-chs": "30分钟",
1641
"zh-cht": "30分鐘",
1642
"xloc": [
1643
- "default.handlebars->27->722"
1643
+ "default.handlebars->27->724"
1644
]
1645
},
1646
{
@@ -1660,8 +1660,8 @@
1660
"zh-chs": "MeshAgent的32位版本",
1661
"zh-cht": "MeshAgent的32位版本",
1662
"xloc": [
1663
- "default.handlebars->27->385",
1664
- "default.handlebars->27->402"
1663
+ "default.handlebars->27->387",
1664
+ "default.handlebars->27->404"
1665
]
1666
},
1667
{
@@ -1690,14 +1690,14 @@
1690
"en": "4 days",
1691
"nl": "4 dagen",
1692
"xloc": [
1693
- "default.handlebars->27->732"
1693
+ "default.handlebars->27->734"
1694
]
1695
},
1696
{
1697
"en": "4 hours",
1698
"nl": "4 uur",
1699
"xloc": [
1700
- "default.handlebars->27->726"
1700
+ "default.handlebars->27->728"
1701
]
1702
},
1703
{
@@ -1780,7 +1780,7 @@
1780
"zh-chs": "45分钟",
1781
"zh-cht": "45分鐘",
1782
"xloc": [
1783
- "default.handlebars->27->723"
1783
+ "default.handlebars->27->725"
1784
]
1785
},
1786
{
@@ -1820,7 +1820,7 @@
1820
"zh-chs": "5分钟",
1821
"zh-cht": "5分鐘",
1822
"xloc": [
1823
- "default.handlebars->27->719"
1823
+ "default.handlebars->27->721"
1824
]
1825
},
1826
{
@@ -1933,7 +1933,7 @@
1933
"en": "60 minutes",
1934
"nl": "60 minuten",
1935
"xloc": [
1936
- "default.handlebars->27->724"
1936
+ "default.handlebars->27->726"
1937
]
1938
},
1939
{
@@ -1975,7 +1975,7 @@
1975
"zh-chs": "64位版本的macOS Mesh Agent",
1976
"zh-cht": "64位版本的macOS Mesh Agent",
1977
"xloc": [
1978
- "default.handlebars->27->398"
1978
+ "default.handlebars->27->400"
1979
]
1980
},
1981
{
@@ -1995,8 +1995,8 @@
1995
"zh-chs": "MeshAgent的64位版本",
1996
"zh-cht": "MeshAgent的64位版本",
1997
"xloc": [
1998
- "default.handlebars->27->389",
1999
- "default.handlebars->27->405"
1998
+ "default.handlebars->27->391",
1999
+ "default.handlebars->27->407"
2000
]
2001
},
2002
{
@@ -2053,7 +2053,7 @@
2053
"zh-chs": "7天电源状态",
2054
"zh-cht": "7天電源狀態",
2055
"xloc": [
2056
- "default.handlebars->27->754"
2056
+ "default.handlebars->27->756"
2057
]
2058
},
2059
{
@@ -2116,9 +2116,9 @@
2116
"zh-chs": "8小時",
2117
"zh-cht": "8小時",
2118
"xloc": [
2119
- "default.handlebars->27->346",
2120
- "default.handlebars->27->360",
2121
- "default.handlebars->27->727"
2119
+ "default.handlebars->27->348",
2120
+ "default.handlebars->27->362",
2121
+ "default.handlebars->27->729"
2122
]
2123
},
2124
{
@@ -2335,8 +2335,8 @@
2335
"zh-chs": "ACM",
2336
"zh-cht": "ACM",
2337
"xloc": [
2338
- "default-mobile.handlebars->9->231",
2339
- "default.handlebars->27->577"
2338
+ "default-mobile.handlebars->9->232",
2339
+ "default.handlebars->27->579"
2340
]
2341
},
2342
{
@@ -2356,8 +2356,8 @@
2356
"zh-chs": "AMT",
2357
"zh-cht": "AMT",
2358
"xloc": [
2359
- "default.handlebars->27->214",
2360
- "default.handlebars->27->443"
2359
+ "default.handlebars->27->215",
2360
+ "default.handlebars->27->445"
2361
]
2362
},
2363
{
@@ -2461,7 +2461,7 @@
2461
"zh-chs": "拒绝访问",
2462
"zh-cht": "拒絕存取",
2463
"xloc": [
2464
- "default.handlebars->27->996"
2464
+ "default.handlebars->27->998"
2465
]
2466
},
2467
{
@@ -2503,7 +2503,7 @@
2503
"zh-chs": "访问服务器档案",
2504
"zh-cht": "存取伺服器檔案",
2505
"xloc": [
2506
- "default.handlebars->27->1877"
2506
+ "default.handlebars->27->1880"
2507
]
2508
},
2509
{
@@ -2587,15 +2587,15 @@
2587
"zh-chs": "账户安全",
2588
"zh-cht": "帳號安全",
2589
"xloc": [
2590
- "default-mobile.handlebars->9->207",
2591
- "default-mobile.handlebars->9->209",
2590
+ "default-mobile.handlebars->9->208",
2591
+ "default-mobile.handlebars->9->210",
2592
"default-mobile.handlebars->9->93",
2593
"default-mobile.handlebars->9->95",
2594
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2595
- "default.handlebars->27->1262",
2595
"default.handlebars->27->1264",
2597
- "default.handlebars->27->546",
2598
- "default.handlebars->27->548"
2596
+ "default.handlebars->27->1266",
2597
+ "default.handlebars->27->548",
2598
+ "default.handlebars->27->550"
2599
]
2600
},
2601
{
@@ -2656,7 +2656,7 @@
2656
"zh-chs": "帐户已更改:{0}",
2657
"zh-cht": "帳戶已更改:{0}",
2658
"xloc": [
2659
- "default.handlebars->27->1633"
2659
+ "default.handlebars->27->1635"
2660
]
2661
},
2662
{
@@ -2676,7 +2676,7 @@
2676
"zh-chs": "创建帐户,电子邮件为{0}",
2677
"zh-cht": "創建帳戶,電子郵件為{0}",
2678
"xloc": [
2679
- "default.handlebars->27->1632"
2679
+ "default.handlebars->27->1634"
2680
]
2681
},
2682
{
@@ -2696,7 +2696,7 @@
2696
"zh-chs": "创建帐户,用户名是{0}",
2697
"zh-cht": "帳戶已創建,用戶名是{0}",
2698
"xloc": [
2699
- "default.handlebars->27->1631"
2699
+ "default.handlebars->27->1633"
2700
]
2701
},
2702
{
@@ -2716,8 +2716,8 @@
2716
"zh-chs": "帐户已被锁定",
2717
"zh-cht": "帳戶已被鎖定",
2718
"xloc": [
2719
- "default.handlebars->27->1714",
2720
- "default.handlebars->27->1874"
2719
+ "default.handlebars->27->1717",
2720
+ "default.handlebars->27->1877"
2721
]
2722
},
2723
{
@@ -2781,7 +2781,7 @@
2781
"zh-chs": "帐号登录",
2782
"zh-cht": "帳號登錄",
2783
"xloc": [
2784
- "default.handlebars->27->1568"
2784
+ "default.handlebars->27->1570"
2785
]
2786
},
2787
{
@@ -2801,7 +2801,7 @@
2801
"zh-chs": "帐户登出",
2802
"zh-cht": "帳戶登出",
2803
"xloc": [
2804
- "default.handlebars->27->1569"
2804
+ "default.handlebars->27->1571"
2805
]
2806
},
2807
{
@@ -2843,7 +2843,7 @@
2843
"zh-chs": "帐户密码已更改:{0}",
2844
"zh-cht": "帳戶密碼已更改:{0}",
2845
"xloc": [
2846
- "default.handlebars->27->1641"
2846
+ "default.handlebars->27->1643"
2847
]
2848
},
2849
{
@@ -2863,7 +2863,7 @@
2863
"zh-chs": "帐户已删除",
2864
"zh-cht": "帳戶已刪除",
2865
"xloc": [
2866
- "default.handlebars->27->1630"
2866
+ "default.handlebars->27->1632"
2867
]
2868
},
2869
{
@@ -2903,7 +2903,7 @@
2903
"zh-chs": "指令",
2904
"zh-cht": "指令",
2905
"xloc": [
2906
- "default.handlebars->27->1001",
2906
+ "default.handlebars->27->1003",
2907
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2908
]
2909
},
@@ -2924,8 +2924,8 @@
2924
"zh-chs": "动作档案",
2925
"zh-cht": "動作檔案",
2926
"xloc": [
2927
- "default.handlebars->27->797",
2928
- "default.handlebars->27->799"
2927
+ "default.handlebars->27->799",
2928
+ "default.handlebars->27->801"
2929
]
2930
},
2931
{
@@ -2945,10 +2945,10 @@
2945
"zh-chs": "动作",
2946
"zh-cht": "動作",
2947
"xloc": [
2948
- "default-mobile.handlebars->9->248",
2948
+ "default-mobile.handlebars->9->249",
2949
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2950
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2951
- "default.handlebars->27->622",
2951
+ "default.handlebars->27->624",
2952
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2953
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2954
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3011,12 +3011,12 @@
3011
"zh-chs": "已激活",
3012
"zh-cht": "已啟動",
3013
"xloc": [
3014
- "default-mobile.handlebars->9->226",
3015
- "default-mobile.handlebars->9->228",
3016
- "default-mobile.handlebars->9->358",
3017
- "default.handlebars->27->570",
3014
+ "default-mobile.handlebars->9->227",
3015
+ "default-mobile.handlebars->9->229",
3016
+ "default-mobile.handlebars->9->359",
3017
"default.handlebars->27->572",
3019
- "default.handlebars->27->959"
3018
+ "default.handlebars->27->574",
3019
+ "default.handlebars->27->961"
3020
]
3021
},
3022
{
@@ -3036,11 +3036,11 @@
3036
"zh-chs": "激活",
3037
"zh-cht": "啟動",
3038
"xloc": [
3039
- "default.handlebars->27->1353",
3039
"default.handlebars->27->1355",
3041
- "default.handlebars->27->199",
3042
- "default.handlebars->27->278",
3043
- "default.handlebars->27->280"
3040
+ "default.handlebars->27->1357",
3041
+ "default.handlebars->27->200",
3042
+ "default.handlebars->27->280",
3043
+ "default.handlebars->27->282"
3044
]
3045
},
3046
{
@@ -3060,7 +3060,7 @@
3060
"zh-chs": "活跃用户{0}",
3061
"zh-cht": "活躍用戶{0}",
3062
"xloc": [
3063
- "default.handlebars->27->597"
3063
+ "default.handlebars->27->599"
3064
]
3065
},
3066
{
@@ -3080,8 +3080,8 @@
3080
"zh-chs": "添加代理",
3081
"zh-cht": "新增代理",
3082
"xloc": [
3083
- "default.handlebars->27->1357",
3084
- "default.handlebars->27->282"
3083
+ "default.handlebars->27->1359",
3084
+ "default.handlebars->27->284"
3085
]
3086
},
3087
{
@@ -3101,7 +3101,7 @@
3101
"zh-chs": "添加CIRA",
3102
"zh-cht": "新增CIRA",
3103
"xloc": [
3104
- "default.handlebars->27->272"
3104
+ "default.handlebars->27->274"
3105
]
3106
},
3107
{
@@ -3121,8 +3121,8 @@
3121
"zh-chs": "添加设备",
3122
"zh-cht": "新增裝置",
3123
"xloc": [
3124
- "default.handlebars->27->1851",
3125
- "default.handlebars->27->1975"
3124
+ "default.handlebars->27->1854",
3125
+ "default.handlebars->27->1978"
3126
]
3127
},
3128
{
@@ -3142,7 +3142,7 @@
3142
"zh-chs": "添加设备日志",
3143
"zh-cht": "新增裝置日誌",
3144
"xloc": [
3145
- "default.handlebars->27->708"
3145
+ "default.handlebars->27->710"
3146
]
3147
},
3148
{
@@ -3162,10 +3162,10 @@
3162
"zh-chs": "添加设备组",
3163
"zh-cht": "新增裝置群",
3164
"xloc": [
3165
- "default.handlebars->27->1450",
3166
- "default.handlebars->27->1845",
3167
- "default.handlebars->27->1963",
3168
- "default.handlebars->27->233"
3165
+ "default.handlebars->27->1452",
3166
+ "default.handlebars->27->1848",
3167
+ "default.handlebars->27->1966",
3168
+ "default.handlebars->27->234"
3169
]
3170
},
3171
{
@@ -3185,7 +3185,7 @@
3185
"zh-chs": "添加设备组权限",
3186
"zh-cht": "新增裝置群權限",
3187
"xloc": [
3188
- "default.handlebars->27->1447"
3188
+ "default.handlebars->27->1449"
3189
]
3190
},
3191
{
@@ -3205,8 +3205,8 @@
3205
"zh-chs": "添加设备权限",
3206
"zh-cht": "新增裝置權限",
3207
"xloc": [
3208
- "default.handlebars->27->1452",
3209
- "default.handlebars->27->1454"
3208
+ "default.handlebars->27->1454",
3209
+ "default.handlebars->27->1456"
3210
]
3211
},
3212
{
@@ -3226,7 +3226,7 @@
3226
"zh-chs": "添加英特尔®AMT CIRA设备",
3227
"zh-cht": "新增Intel® AMT CIRA裝置",
3228
"xloc": [
3229
- "default.handlebars->27->330"
3229
+ "default.handlebars->27->332"
3230
]
3231
},
3232
{
@@ -3246,7 +3246,7 @@
3246
"zh-chs": "添加英特尔®AMT设备",
3247
"zh-cht": "新增Intel® AMT裝置",
3248
"xloc": [
3249
- "default.handlebars->27->295"
3249
+ "default.handlebars->27->297"
3250
]
3251
},
3252
{
@@ -3286,7 +3286,7 @@
3286
"zh-chs": "添加本地",
3287
"zh-cht": "新增本地",
3288
"xloc": [
3289
- "default.handlebars->27->274"
3289
+ "default.handlebars->27->276"
3290
]
3291
},
3292
{
@@ -3306,7 +3306,7 @@
3306
"zh-chs": "添加成员身份",
3307
"zh-cht": "新增成員身份",
3308
"xloc": [
3309
- "default.handlebars->27->1993"
3309
+ "default.handlebars->27->1996"
3310
]
3311
},
3312
{
@@ -3326,7 +3326,7 @@
3326
"zh-chs": "添加 Mesh Agent",
3327
"zh-cht": "新增 Mesh Agent",
3328
"xloc": [
3329
- "default.handlebars->27->414"
3329
+ "default.handlebars->27->416"
3330
]
3331
},
3332
{
@@ -3346,8 +3346,8 @@
3346
"zh-chs": "添加安全密钥",
3347
"zh-cht": "新增安全密鑰",
3348
"xloc": [
3349
- "default.handlebars->27->1029",
3350
- "default.handlebars->27->1030",
3349
+ "default.handlebars->27->1031",
3350
+ "default.handlebars->27->1032",
3351
"default.handlebars->27->149",
3352
"default.handlebars->27->151",
3353
"default.handlebars->27->154",
@@ -3371,8 +3371,8 @@
3371
"zh-chs": "添加用户",
3372
"zh-cht": "新增用戶",
3373
"xloc": [
3374
- "default-mobile.handlebars->9->398",
3375
- "default.handlebars->27->665"
3374
+ "default-mobile.handlebars->9->399",
3375
+ "default.handlebars->27->667"
3376
]
3377
},
3378
{
@@ -3392,7 +3392,7 @@
3392
"zh-chs": "添加用户设备权限",
3393
"zh-cht": "新增用戶裝置權限",
3394
"xloc": [
3395
- "default.handlebars->27->1457"
3395
+ "default.handlebars->27->1459"
3396
]
3397
},
3398
{
@@ -3412,10 +3412,10 @@
3412
"zh-chs": "添加用户组",
3413
"zh-cht": "新增用戶群",
3414
"xloc": [
3415
- "default.handlebars->27->1347",
3416
- "default.handlebars->27->1449",
3417
- "default.handlebars->27->1969",
3418
- "default.handlebars->27->666"
3415
+ "default.handlebars->27->1349",
3416
+ "default.handlebars->27->1451",
3417
+ "default.handlebars->27->1972",
3418
+ "default.handlebars->27->668"
3419
]
3420
},
3421
{
@@ -3435,7 +3435,7 @@
3435
"zh-chs": "添加用户组设备权限",
3436
"zh-cht": "新增用戶群裝置權限",
3437
"xloc": [
3438
- "default.handlebars->27->1459"
3438
+ "default.handlebars->27->1461"
3439
]
3440
},
3441
{
@@ -3455,7 +3455,7 @@
3455
"zh-chs": "将用户添加到设备组",
3456
"zh-cht": "將用戶新增到裝置群",
3457
"xloc": [
3458
- "default-mobile.handlebars->9->427"
3458
+ "default-mobile.handlebars->9->428"
3459
]
3460
},
3461
{
@@ -3492,8 +3492,8 @@
3492
"zh-chs": "添加用户",
3493
"zh-cht": "新增用戶",
3494
"xloc": [
3495
- "default.handlebars->27->1346",
3496
- "default.handlebars->27->1840"
3495
+ "default.handlebars->27->1348",
3496
+ "default.handlebars->27->1843"
3497
]
3498
},
3499
{
@@ -3513,7 +3513,7 @@
3513
"zh-chs": "将用户添加到设备组",
3514
"zh-cht": "將用戶新增到裝置群",
3515
"xloc": [
3516
- "default.handlebars->27->1446"
3516
+ "default.handlebars->27->1448"
3517
]
3518
},
3519
{
@@ -3533,7 +3533,7 @@
3533
"zh-chs": "将用户添加到用户组",
3534
"zh-cht": "將用戶新增到用戶群",
3535
"xloc": [
3536
- "default.handlebars->27->1873"
3536
+ "default.handlebars->27->1876"
3537
]
3538
},
3539
{
@@ -3573,7 +3573,7 @@
3573
"zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。",
3574
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
3575
"xloc": [
3576
- "default.handlebars->27->275"
3576
+ "default.handlebars->27->277"
3577
]
3578
},
3579
{
@@ -3593,8 +3593,8 @@
3593
"zh-chs": "添加位于互联网上的新英特尔®AMT计算机。",
3594
"zh-cht": "新增位於互聯網上的新Intel® AMT電腦。",
3595
"xloc": [
3596
- "default.handlebars->27->1348",
3597
- "default.handlebars->27->271"
3596
+ "default.handlebars->27->1350",
3597
+ "default.handlebars->27->273"
3598
]
3599
},
3600
{
@@ -3614,8 +3614,8 @@
3614
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
3615
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
3616
"xloc": [
3617
- "default.handlebars->27->1350",
3618
- "default.handlebars->27->273"
3617
+ "default.handlebars->27->1352",
3618
+ "default.handlebars->27->275"
3619
]
3620
},
3621
{
@@ -3635,7 +3635,7 @@
3635
"zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。",
3636
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
3637
"xloc": [
3638
- "default.handlebars->27->285"
3638
+ "default.handlebars->27->287"
3639
]
3640
},
3641
{
@@ -3655,8 +3655,8 @@
3655
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3656
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3657
"xloc": [
3658
- "default.handlebars->27->1356",
3659
- "default.handlebars->27->281"
3658
+ "default.handlebars->27->1358",
3659
+ "default.handlebars->27->283"
3660
]
3661
},
3662
{
@@ -3676,7 +3676,7 @@
3676
"zh-chs": "添加标签",
3677
"zh-cht": "新增標籤",
3678
"xloc": [
3679
- "default.handlebars->27->479"
3679
+ "default.handlebars->27->481"
3680
]
3681
},
3682
{
@@ -3696,7 +3696,7 @@
3696
"zh-chs": "添加了身份验证应用程序",
3697
"zh-cht": "添加了身份驗證應用程序",
3698
"xloc": [
3699
- "default.handlebars->27->1657"
3699
+ "default.handlebars->27->1659"
3700
]
3701
},
3702
{
@@ -3716,8 +3716,8 @@
3716
"zh-chs": "已将设备{0}添加到设备组{1}",
3717
"zh-cht": "已將設備{0}添加到設備組{1}",
3718
"xloc": [
3719
- "default.handlebars->27->1624",
3720
- "default.handlebars->27->1651"
3719
+ "default.handlebars->27->1626",
3720
+ "default.handlebars->27->1653"
3721
]
3722
},
3723
{
@@ -3737,7 +3737,7 @@
3737
"zh-chs": "添加了安全密钥",
3738
"zh-cht": "添加了安全密鑰",
3739
"xloc": [
3740
- "default.handlebars->27->1662"
3740
+ "default.handlebars->27->1664"
3741
]
3742
},
3743
{
@@ -3757,7 +3757,7 @@
3757
"zh-chs": "已将用户组{0}添加到设备组{1}",
3758
"zh-cht": "已將用戶組{0}添加到設備組{1}",
3759
"xloc": [
3760
- "default.handlebars->27->1635"
3760
+ "default.handlebars->27->1637"
3761
]
3762
},
3763
{
@@ -3777,8 +3777,8 @@
3777
"zh-chs": "已将用户{0}添加到用户组{1}",
3778
"zh-cht": "已將用戶{0}添加到用戶組{1}",
3779
"xloc": [
3780
- "default.handlebars->27->1638",
3781
- "default.handlebars->27->1647"
3780
+ "default.handlebars->27->1640",
3781
+ "default.handlebars->27->1649"
3782
]
3783
},
3784
{
@@ -3798,7 +3798,7 @@
3798
"zh-chs": "地址",
3799
"zh-cht": "地址",
3800
"xloc": [
3801
- "default.handlebars->27->229"
3801
+ "default.handlebars->27->230"
3802
]
3803
},
3804
{
@@ -3838,8 +3838,8 @@
3838
"zh-chs": "管理员控制模式(ACM)",
3839
"zh-cht": "管理員控制模式(ACM)",
3840
"xloc": [
3841
- "default-mobile.handlebars->9->360",
3842
- "default.handlebars->27->961"
3841
+ "default-mobile.handlebars->9->361",
3842
+ "default.handlebars->27->963"
3843
]
3844
},
3845
{
@@ -3859,8 +3859,8 @@
3859
"zh-chs": "管理员凭证",
3860
"zh-cht": "管理員憑證",
3861
"xloc": [
3862
- "default-mobile.handlebars->9->366",
3863
- "default.handlebars->27->967"
3862
+ "default-mobile.handlebars->9->367",
3863
+ "default.handlebars->27->969"
3864
]
3865
},
3866
{
@@ -3901,7 +3901,7 @@
3901
"zh-chs": "管理领域",
3902
"zh-cht": "管理領域",
3903
"xloc": [
3904
- "default.handlebars->27->1909"
3904
+ "default.handlebars->27->1912"
3905
]
3906
},
3907
{
@@ -3942,7 +3942,7 @@
3942
"zh-chs": "管理领域",
3943
"zh-cht": "管理領域",
3944
"xloc": [
3945
- "default.handlebars->27->1777"
3945
+ "default.handlebars->27->1780"
3946
]
3947
},
3948
{
@@ -3962,7 +3962,7 @@
3962
"zh-chs": "管理员",
3963
"zh-cht": "管理員",
3964
"xloc": [
3965
- "default.handlebars->27->1706"
3965
+ "default.handlebars->27->1709"
3966
]
3967
},
3968
{
@@ -3982,7 +3982,7 @@
3982
"zh-chs": "南非文",
3983
"zh-cht": "南非文",
3984
"xloc": [
3985
- "default.handlebars->27->1032"
3985
+ "default.handlebars->27->1034"
3986
]
3987
},
3988
{
@@ -4002,13 +4002,13 @@
4002
"zh-chs": "代理",
4003
"zh-cht": "代理",
4004
"xloc": [
4005
- "default-mobile.handlebars->9->199",
4006
- "default-mobile.handlebars->9->223",
4007
- "default-mobile.handlebars->9->239",
4008
- "default.handlebars->27->1511",
4009
- "default.handlebars->27->1519",
4010
- "default.handlebars->27->210",
4011
- "default.handlebars->27->439",
4005
+ "default-mobile.handlebars->9->200",
4006
+ "default-mobile.handlebars->9->224",
4007
+ "default-mobile.handlebars->9->240",
4008
+ "default.handlebars->27->1513",
4009
+ "default.handlebars->27->1521",
4010
+ "default.handlebars->27->211",
4011
+ "default.handlebars->27->441",
4012
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
4013
]
4014
},
@@ -4029,8 +4029,8 @@
4029
"zh-chs": "代理+英特尔AMT",
4030
"zh-cht": "代理+Intel® AMT",
4031
"xloc": [
4032
- "default.handlebars->27->1513",
4033
- "default.handlebars->27->1521"
4032
+ "default.handlebars->27->1515",
4033
+ "default.handlebars->27->1523"
4034
]
4035
},
4036
{
@@ -4070,8 +4070,8 @@
4070
"zh-chs": "代理控制台",
4071
"zh-cht": "代理控制台",
4072
"xloc": [
4073
- "default-mobile.handlebars->9->433",
4074
- "default.handlebars->27->1467"
4073
+ "default-mobile.handlebars->9->434",
4074
+ "default.handlebars->27->1469"
4075
]
4076
},
4077
{
@@ -4091,7 +4091,7 @@
4091
"zh-chs": "代理错误计数器",
4092
"zh-cht": "代理錯誤計數器",
4093
"xloc": [
4094
- "default.handlebars->27->2036"
4094
+ "default.handlebars->27->2039"
4095
]
4096
},
4097
{
@@ -4131,8 +4131,8 @@
4131
"zh-chs": "代理消息",
4132
"zh-cht": "代理訊息",
4133
"xloc": [
4134
- "default-mobile.handlebars->9->177",
4135
- "default.handlebars->27->263"
4134
+ "default-mobile.handlebars->9->178",
4135
+ "default.handlebars->27->265"
4136
]
4137
},
4138
{
@@ -4152,7 +4152,7 @@
4152
"zh-chs": "代理中继",
4153
"zh-cht": "代理中繼",
4154
"xloc": [
4155
- "default-mobile.handlebars->9->242"
4155
+ "default-mobile.handlebars->9->243"
4156
]
4157
},
4158
{
@@ -4194,7 +4194,7 @@
4194
"zh-chs": "代理时段",
4195
"zh-cht": "代理時段",
4196
"xloc": [
4197
- "default.handlebars->27->2052"
4197
+ "default.handlebars->27->2055"
4198
]
4199
},
4200
{
@@ -4214,8 +4214,8 @@
4214
"zh-chs": "代理标签",
4215
"zh-cht": "代理標籤",
4216
"xloc": [
4217
- "default-mobile.handlebars->9->238",
4218
- "default.handlebars->27->590"
4217
+ "default-mobile.handlebars->9->239",
4218
+ "default.handlebars->27->592"
4219
]
4220
},
4221
{
@@ -4235,7 +4235,7 @@
4235
"zh-chs": "代理类型",
4236
"zh-cht": "代理類型",
4237
"xloc": [
4238
- "default.handlebars->27->1517",
4238
+ "default.handlebars->27->1519",
4239
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4240
]
4241
},
@@ -4256,7 +4256,7 @@
4256
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4257
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4258
"xloc": [
4259
- "default.handlebars->27->1621"
4259
+ "default.handlebars->27->1623"
4260
]
4261
},
4262
{
@@ -4276,9 +4276,9 @@
4276
"zh-chs": "代理已连接",
4277
"zh-cht": "代理已連接",
4278
"xloc": [
4279
- "default.handlebars->27->160",
4280
- "default.handlebars->27->656",
4281
- "default.handlebars->27->657"
4279
+ "default.handlebars->27->161",
4280
+ "default.handlebars->27->658",
4281
+ "default.handlebars->27->659"
4282
]
4283
},
4284
{
@@ -4298,7 +4298,7 @@
4298
"zh-chs": "代理已断开连接",
4299
"zh-cht": "代理已斷開連接",
4300
"xloc": [
4301
- "default.handlebars->27->164"
4301
+ "default.handlebars->27->165"
4302
]
4303
},
4304
{
@@ -4318,7 +4318,7 @@
4318
"zh-chs": "代理离线",
4319
"zh-cht": "代理離線",
4320
"xloc": [
4321
- "default.handlebars->27->994"
4321
+ "default.handlebars->27->996"
4322
]
4323
},
4324
{
@@ -4338,7 +4338,7 @@
4338
"zh-chs": "代理在线",
4339
"zh-cht": "代理在線",
4340
"xloc": [
4341
- "default.handlebars->27->993"
4341
+ "default.handlebars->27->995"
4342
]
4343
},
4344
{
@@ -4358,7 +4358,7 @@
4358
"zh-chs": "代理",
4359
"zh-cht": "代理",
4360
"xloc": [
4361
- "default.handlebars->27->2068"
4361
+ "default.handlebars->27->2071"
4362
]
4363
},
4364
{
@@ -4378,7 +4378,7 @@
4378
"zh-chs": "阿尔巴尼亚文",
4379
"zh-cht": "阿爾巴尼亞文",
4380
"xloc": [
4381
- "default.handlebars->27->1033"
4381
+ "default.handlebars->27->1035"
4382
]
4383
},
4384
{
@@ -4399,8 +4399,8 @@
4399
"zh-cht": "所有",
4400
"xloc": [
4401
"default-mobile.handlebars->9->117",
4402
- "default-mobile.handlebars->9->296",
4403
- "default-mobile.handlebars->9->298",
4402
+ "default-mobile.handlebars->9->297",
4403
+ "default-mobile.handlebars->9->299",
4404
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4405
]
4406
},
@@ -4421,7 +4421,7 @@
4421
"zh-chs": "全部可用",
4422
"zh-cht": "全部可用",
4423
"xloc": [
4424
- "default.handlebars->27->1669"
4424
+ "default.handlebars->27->1672"
4425
]
4426
},
4427
{
@@ -4458,7 +4458,7 @@
4458
"zh-chs": "所有事件",
4459
"zh-cht": "所有事件",
4460
"xloc": [
4461
- "default.handlebars->27->1667"
4461
+ "default.handlebars->27->1670"
4462
]
4463
},
4464
{
@@ -4478,9 +4478,9 @@
4478
"zh-chs": "全部聚焦",
4479
"zh-cht": "全部聚焦",
4480
"xloc": [
4481
- "default.handlebars->27->829",
4481
"default.handlebars->27->831",
4483
- "default.handlebars->27->832"
4482
+ "default.handlebars->27->833",
4483
+ "default.handlebars->27->834"
4484
]
4485
},
4486
{
@@ -4500,8 +4500,8 @@
4500
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4501
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4502
"xloc": [
4503
- "default.handlebars->27->1415",
4504
- "default.handlebars->27->1870"
4503
+ "default.handlebars->27->1417",
4504
+ "default.handlebars->27->1873"
4505
]
4506
},
4507
{
@@ -4521,7 +4521,7 @@
4521
"zh-chs": "允许用户管理此设备。",
4522
"zh-cht": "允許用戶管理此裝置。",
4523
"xloc": [
4524
- "default.handlebars->27->1416"
4524
+ "default.handlebars->27->1418"
4525
]
4526
},
4527
{
@@ -4585,7 +4585,7 @@
4585
"zh-chs": "备用(F10 = ESC + 0)",
4586
"zh-cht": "備用(F10 = ESC + 0)",
4587
"xloc": [
4588
- "default.handlebars->27->866"
4588
+ "default.handlebars->27->868"
4589
]
4590
},
4591
{
@@ -4626,10 +4626,10 @@
4626
"zh-chs": "一直通知",
4627
"zh-cht": "一直通知",
4628
"xloc": [
4629
- "default.handlebars->27->1327",
4630
- "default.handlebars->27->1831",
4631
- "default.handlebars->27->1918",
4632
- "default.handlebars->27->606"
4629
+ "default.handlebars->27->1329",
4630
+ "default.handlebars->27->1834",
4631
+ "default.handlebars->27->1921",
4632
+ "default.handlebars->27->608"
4633
]
4634
},
4635
{
@@ -4649,10 +4649,10 @@
4649
"zh-chs": "一直提示",
4650
"zh-cht": "一直提示",
4651
"xloc": [
4652
- "default.handlebars->27->1328",
4653
- "default.handlebars->27->1832",
4654
- "default.handlebars->27->1919",
4655
- "default.handlebars->27->607"
4652
+ "default.handlebars->27->1330",
4653
+ "default.handlebars->27->1835",
4654
+ "default.handlebars->27->1922",
4655
+ "default.handlebars->27->609"
4656
]
4657
},
4658
{
@@ -4794,7 +4794,7 @@
4794
"zh-chs": "杀毒软件",
4795
"zh-cht": "防毒軟體",
4796
"xloc": [
4797
- "default.handlebars->27->596"
4797
+ "default.handlebars->27->598"
4798
]
4799
},
4800
{
@@ -4814,7 +4814,7 @@
4814
"zh-chs": "任何可支持的",
4815
"zh-cht": "任何可支持的",
4816
"xloc": [
4817
- "default.handlebars->27->340"
4817
+ "default.handlebars->27->342"
4818
]
4819
},
4820
{
@@ -4834,7 +4834,7 @@
4834
"zh-chs": "苹果macOS",
4835
"zh-cht": "蘋果macOS",
4836
"xloc": [
4837
- "default.handlebars->27->375"
4837
+ "default.handlebars->27->377"
4838
]
4839
},
4840
{
@@ -4854,7 +4854,7 @@
4854
"zh-chs": "仅限Apple macOS",
4855
"zh-cht": "僅限Apple macOS",
4856
"xloc": [
4857
- "default.handlebars->27->342"
4857
+ "default.handlebars->27->344"
4858
]
4859
},
4860
{
@@ -4894,7 +4894,7 @@
4894
"zh-chs": "阿拉伯文(阿尔及利亚)",
4895
"zh-cht": "阿拉伯文(阿爾及利亞)",
4896
"xloc": [
4897
- "default.handlebars->27->1035"
4897
+ "default.handlebars->27->1037"
4898
]
4899
},
4900
{
@@ -4914,7 +4914,7 @@
4914
"zh-chs": "阿拉伯文(巴林)",
4915
"zh-cht": "阿拉伯文(巴林)",
4916
"xloc": [
4917
- "default.handlebars->27->1036"
4917
+ "default.handlebars->27->1038"
4918
]
4919
},
4920
{
@@ -4934,7 +4934,7 @@
4934
"zh-chs": "阿拉伯文(埃及)",
4935
"zh-cht": "阿拉伯文(埃及)",
4936
"xloc": [
4937
- "default.handlebars->27->1037"
4937
+ "default.handlebars->27->1039"
4938
]
4939
},
4940
{
@@ -4954,7 +4954,7 @@
4954
"zh-chs": "阿拉伯文(伊拉克)",
4955
"zh-cht": "阿拉伯文(伊拉克)",
4956
"xloc": [
4957
- "default.handlebars->27->1038"
4957
+ "default.handlebars->27->1040"
4958
]
4959
},
4960
{
@@ -4974,7 +4974,7 @@
4974
"zh-chs": "阿拉伯文(约旦)",
4975
"zh-cht": "阿拉伯文(約旦)",
4976
"xloc": [
4977
- "default.handlebars->27->1039"
4977
+ "default.handlebars->27->1041"
4978
]
4979
},
4980
{
@@ -4994,7 +4994,7 @@
4994
"zh-chs": "阿拉伯文(科威特)",
4995
"zh-cht": "阿拉伯文(科威特)",
4996
"xloc": [
4997
- "default.handlebars->27->1040"
4997
+ "default.handlebars->27->1042"
4998
]
4999
},
5000
{
@@ -5014,7 +5014,7 @@
5014
"zh-chs": "阿拉伯文(黎巴嫩)",
5015
"zh-cht": "阿拉伯文(黎巴嫩)",
5016
"xloc": [
5017
- "default.handlebars->27->1041"
5017
+ "default.handlebars->27->1043"
5018
]
5019
},
5020
{
@@ -5034,7 +5034,7 @@
5034
"zh-chs": "阿拉伯文(利比亚)",
5035
"zh-cht": "阿拉伯文(利比亞)",
5036
"xloc": [
5037
- "default.handlebars->27->1042"
5037
+ "default.handlebars->27->1044"
5038
]
5039
},
5040
{
@@ -5054,7 +5054,7 @@
5054
"zh-chs": "阿拉伯文(摩洛哥)",
5055
"zh-cht": "阿拉伯文(摩洛哥)",
5056
"xloc": [
5057
- "default.handlebars->27->1043"
5057
+ "default.handlebars->27->1045"
5058
]
5059
},
5060
{
@@ -5074,7 +5074,7 @@
5074
"zh-chs": "阿拉伯文(阿曼)",
5075
"zh-cht": "阿拉伯文(阿曼)",
5076
"xloc": [
5077
- "default.handlebars->27->1044"
5077
+ "default.handlebars->27->1046"
5078
]
5079
},
5080
{
@@ -5094,7 +5094,7 @@
5094
"zh-chs": "阿拉伯文(卡塔尔)",
5095
"zh-cht": "阿拉伯文(卡塔爾)",
5096
"xloc": [
5097
- "default.handlebars->27->1045"
5097
+ "default.handlebars->27->1047"
5098
]
5099
},
5100
{
@@ -5114,7 +5114,7 @@
5114
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5115
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5116
"xloc": [
5117
- "default.handlebars->27->1046"
5117
+ "default.handlebars->27->1048"
5118
]
5119
},
5120
{
@@ -5134,7 +5134,7 @@
5134
"zh-chs": "阿拉伯文(标准)",
5135
"zh-cht": "阿拉伯文(標準)",
5136
"xloc": [
5137
- "default.handlebars->27->1034"
5137
+ "default.handlebars->27->1036"
5138
]
5139
},
5140
{
@@ -5154,7 +5154,7 @@
5154
"zh-chs": "阿拉伯文(叙利亚)",
5155
"zh-cht": "阿拉伯文(敘利亞)",
5156
"xloc": [
5157
- "default.handlebars->27->1047"
5157
+ "default.handlebars->27->1049"
5158
]
5159
},
5160
{
@@ -5174,7 +5174,7 @@
5174
"zh-chs": "阿拉伯文(突尼斯)",
5175
"zh-cht": "阿拉伯文(突尼斯)",
5176
"xloc": [
5177
- "default.handlebars->27->1048"
5177
+ "default.handlebars->27->1050"
5178
]
5179
},
5180
{
@@ -5194,7 +5194,7 @@
5194
"zh-chs": "阿拉伯文(阿联酋)",
5195
"zh-cht": "阿拉伯文(阿聯酋)",
5196
"xloc": [
5197
- "default.handlebars->27->1049"
5197
+ "default.handlebars->27->1051"
5198
]
5199
},
5200
{
@@ -5214,7 +5214,7 @@
5214
"zh-chs": "阿拉伯文(也门)",
5215
"zh-cht": "阿拉伯文(也門)",
5216
"xloc": [
5217
- "default.handlebars->27->1050"
5217
+ "default.handlebars->27->1052"
5218
]
5219
},
5220
{
@@ -5234,7 +5234,7 @@
5234
"zh-chs": "阿拉贡文",
5235
"zh-cht": "阿拉貢文",
5236
"xloc": [
5237
- "default.handlebars->27->1051"
5237
+ "default.handlebars->27->1053"
5238
]
5239
},
5240
{
@@ -5254,8 +5254,8 @@
5254
"zh-chs": "架构",
5255
"zh-cht": "結構",
5256
"xloc": [
5257
- "default-mobile.handlebars->9->330",
5258
- "default.handlebars->27->921"
5257
+ "default-mobile.handlebars->9->331",
5258
+ "default.handlebars->27->923"
5259
]
5260
},
5261
{
@@ -5275,7 +5275,7 @@
5275
"zh-chs": "您确定要连接到{0}设备吗?",
5276
"zh-cht": "你確定要連接到{0}裝置嗎?",
5277
"xloc": [
5278
- "default.handlebars->27->266"
5278
+ "default.handlebars->27->268"
5279
]
5280
},
5281
{
@@ -5295,8 +5295,8 @@
5295
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5296
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5297
"xloc": [
5298
- "default-mobile.handlebars->9->404",
5299
- "default.handlebars->27->1391"
5298
+ "default-mobile.handlebars->9->405",
5299
+ "default.handlebars->27->1393"
5300
]
5301
},
5302
{
@@ -5316,7 +5316,7 @@
5316
"zh-chs": "您确定要删除节点{0}吗?",
5317
"zh-cht": "你確定要刪除節點{0}嗎?",
5318
"xloc": [
5319
- "default.handlebars->27->776"
5319
+ "default.handlebars->27->778"
5320
]
5321
},
5322
{
@@ -5336,7 +5336,7 @@
5336
"zh-chs": "您确定要卸载所选代理吗?",
5337
"zh-cht": "你確定要卸載所選代理嗎?",
5338
"xloc": [
5339
- "default.handlebars->27->765"
5339
+ "default.handlebars->27->767"
5340
]
5341
},
5342
{
@@ -5356,7 +5356,7 @@
5356
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5357
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5358
"xloc": [
5359
- "default.handlebars->27->764"
5359
+ "default.handlebars->27->766"
5360
]
5361
},
5362
{
@@ -5376,7 +5376,7 @@
5376
"zh-chs": "您确定要{0}插件吗:{1}",
5377
"zh-cht": "你確定要{0}外掛嗎:{1}",
5378
"xloc": [
5379
- "default.handlebars->27->2108"
5379
+ "default.handlebars->27->2111"
5380
]
5381
},
5382
{
@@ -5396,7 +5396,7 @@
5396
"zh-chs": "亚美尼亚文",
5397
"zh-cht": "亞美尼亞文",
5398
"xloc": [
5399
- "default.handlebars->27->1052"
5399
+ "default.handlebars->27->1054"
5400
]
5401
},
5402
{
@@ -5456,7 +5456,7 @@
5456
"zh-chs": "阿萨姆文",
5457
"zh-cht": "阿薩姆文",
5458
"xloc": [
5459
- "default.handlebars->27->1053"
5459
+ "default.handlebars->27->1055"
5460
]
5461
},
5462
{
@@ -5476,7 +5476,7 @@
5476
"zh-chs": "阿斯图里亚斯文",
5477
"zh-cht": "阿斯圖里亞斯文",
5478
"xloc": [
5479
- "default.handlebars->27->1054"
5479
+ "default.handlebars->27->1056"
5480
]
5481
},
5482
{
@@ -5496,7 +5496,7 @@
5496
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5497
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5498
"xloc": [
5499
- "default.handlebars->27->1590"
5499
+ "default.handlebars->27->1592"
5500
]
5501
},
5502
{
@@ -5516,7 +5516,7 @@
5516
"zh-chs": "认证软件",
5517
"zh-cht": "認證軟體",
5518
"xloc": [
5519
- "default.handlebars->27->1922"
5519
+ "default.handlebars->27->1925"
5520
]
5521
},
5522
{
@@ -5540,8 +5540,8 @@
5540
"default-mobile.handlebars->9->52",
5541
"default-mobile.handlebars->9->71",
5542
"default-mobile.handlebars->9->73",
5543
- "default.handlebars->27->1018",
5543
"default.handlebars->27->1020",
5544
+ "default.handlebars->27->1022",
5545
"default.handlebars->27->125",
5546
"default.handlebars->27->130"
5547
]
@@ -5623,7 +5623,7 @@
5623
"zh-chs": "自动删除",
5624
"zh-cht": "自動刪除",
5625
"xloc": [
5626
- "default.handlebars->27->1314"
5626
+ "default.handlebars->27->1316"
5627
]
5628
},
5629
{
@@ -5687,7 +5687,7 @@
5687
"zh-chs": "可用內存",
5688
"zh-cht": "可用內存",
5689
"xloc": [
5690
- "default.handlebars->27->2061"
5690
+ "default.handlebars->27->2064"
5691
]
5692
},
5693
{
@@ -5707,7 +5707,7 @@
5707
"zh-chs": "阿塞拜疆文",
5708
"zh-cht": "阿塞拜疆文",
5709
"xloc": [
5710
- "default.handlebars->27->1055"
5710
+ "default.handlebars->27->1057"
5711
]
5712
},
5713
{
@@ -5727,8 +5727,8 @@
5727
"zh-chs": "的BIOS",
5728
"zh-cht": "的BIOS",
5729
"xloc": [
5730
- "default-mobile.handlebars->9->372",
5731
- "default.handlebars->27->973"
5730
+ "default-mobile.handlebars->9->373",
5731
+ "default.handlebars->27->975"
5732
]
5733
},
5734
{
@@ -5823,7 +5823,7 @@
5823
"zh-chs": "背景与互动",
5824
"zh-cht": "背景與互動",
5825
"xloc": [
5826
- "default.handlebars->27->380"
5826
+ "default.handlebars->27->382"
5827
]
5828
},
5829
{
@@ -5843,10 +5843,10 @@
5843
"zh-chs": "背景与互动",
5844
"zh-cht": "背景與互動",
5845
"xloc": [
5846
- "default.handlebars->27->1494",
5847
- "default.handlebars->27->1501",
5848
- "default.handlebars->27->352",
5849
- "default.handlebars->27->366"
5846
+ "default.handlebars->27->1496",
5847
+ "default.handlebars->27->1503",
5848
+ "default.handlebars->27->354",
5849
+ "default.handlebars->27->368"
5850
]
5851
},
5852
{
@@ -5866,11 +5866,11 @@
5866
"zh-chs": "仅背景",
5867
"zh-cht": "僅背景",
5868
"xloc": [
5869
- "default.handlebars->27->1495",
5870
- "default.handlebars->27->1502",
5871
- "default.handlebars->27->353",
5872
- "default.handlebars->27->367",
5873
- "default.handlebars->27->381"
5869
+ "default.handlebars->27->1497",
5870
+ "default.handlebars->27->1504",
5871
+ "default.handlebars->27->355",
5872
+ "default.handlebars->27->369",
5873
+ "default.handlebars->27->383"
5874
]
5875
},
5876
{
@@ -5910,7 +5910,7 @@
5910
"zh-chs": "备用码",
5911
"zh-cht": "備用碼",
5912
"xloc": [
5913
- "default.handlebars->27->1924"
5913
+ "default.handlebars->27->1927"
5914
]
5915
},
5916
{
@@ -5930,7 +5930,7 @@
5930
"zh-chs": "错误的签名",
5931
"zh-cht": "錯誤的簽名",
5932
"xloc": [
5933
- "default.handlebars->27->2043"
5933
+ "default.handlebars->27->2046"
5934
]
5935
},
5936
{
@@ -5950,7 +5950,7 @@
5950
"zh-chs": "错误的网络证书",
5951
"zh-cht": "錯誤的網絡憑證",
5952
"xloc": [
5953
- "default.handlebars->27->2042"
5953
+ "default.handlebars->27->2045"
5954
]
5955
},
5956
{
@@ -5970,7 +5970,7 @@
5970
"zh-chs": "巴斯克",
5971
"zh-cht": "巴斯克",
5972
"xloc": [
5973
- "default.handlebars->27->1056"
5973
+ "default.handlebars->27->1058"
5974
]
5975
},
5976
{
@@ -6010,7 +6010,7 @@
6010
"zh-chs": "白俄罗斯文",
6011
"zh-cht": "白俄羅斯文",
6012
"xloc": [
6013
- "default.handlebars->27->1058"
6013
+ "default.handlebars->27->1060"
6014
]
6015
},
6016
{
@@ -6030,7 +6030,7 @@
6030
"zh-chs": "孟加拉",
6031
"zh-cht": "孟加拉",
6032
"xloc": [
6033
- "default.handlebars->27->1059"
6033
+ "default.handlebars->27->1061"
6034
]
6035
},
6036
{
@@ -6073,7 +6073,7 @@
6073
"zh-chs": "波斯尼亚文",
6074
"zh-cht": "波斯尼亞文",
6075
"xloc": [
6076
- "default.handlebars->27->1060"
6076
+ "default.handlebars->27->1062"
6077
]
6078
},
6079
{
@@ -6093,7 +6093,7 @@
6093
"zh-chs": "布列塔尼",
6094
"zh-cht": "布列塔尼",
6095
"xloc": [
6096
- "default.handlebars->27->1061"
6096
+ "default.handlebars->27->1063"
6097
]
6098
},
6099
{
@@ -6113,7 +6113,7 @@
6113
"zh-chs": "广播",
6114
"zh-cht": "廣播",
6115
"xloc": [
6116
- "default.handlebars->27->1838",
6116
+ "default.handlebars->27->1841",
6117
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6118
]
6119
},
@@ -6134,7 +6134,7 @@
6134
"zh-chs": "广播消息",
6135
"zh-cht": "廣播消息",
6136
"xloc": [
6137
- "default.handlebars->27->1759"
6137
+ "default.handlebars->27->1762"
6138
]
6139
},
6140
{
@@ -6154,7 +6154,7 @@
6154
"zh-chs": "向所有连接的用户广播消息。",
6155
"zh-cht": "向所有連接的用戶廣播消息。",
6156
"xloc": [
6157
- "default.handlebars->27->1754"
6157
+ "default.handlebars->27->1757"
6158
]
6159
},
6160
{
@@ -6174,7 +6174,7 @@
6174
"zh-chs": "保加利亚文",
6175
"zh-cht": "保加利亞文",
6176
"xloc": [
6177
- "default.handlebars->27->1057"
6177
+ "default.handlebars->27->1059"
6178
]
6179
},
6180
{
@@ -6194,7 +6194,7 @@
6194
"zh-chs": "缅甸文",
6195
"zh-cht": "緬甸文",
6196
"xloc": [
6197
- "default.handlebars->27->1062"
6197
+ "default.handlebars->27->1064"
6198
]
6199
},
6200
{
@@ -6214,8 +6214,8 @@
6214
"zh-chs": "CCM",
6215
"zh-cht": "CCM",
6216
"xloc": [
6217
- "default-mobile.handlebars->9->230",
6218
- "default.handlebars->27->575"
6217
+ "default-mobile.handlebars->9->231",
6218
+ "default.handlebars->27->577"
6219
]
6220
},
6221
{
@@ -6235,11 +6235,11 @@
6235
"zh-chs": "CIRA",
6236
"zh-cht": "CIRA",
6237
"xloc": [
6238
- "default-mobile.handlebars->9->200",
6239
- "default.handlebars->27->1379",
6240
- "default.handlebars->27->1384",
6241
- "default.handlebars->27->212",
6242
- "default.handlebars->27->441"
6238
+ "default-mobile.handlebars->9->201",
6239
+ "default.handlebars->27->1381",
6240
+ "default.handlebars->27->1386",
6241
+ "default.handlebars->27->213",
6242
+ "default.handlebars->27->443"
6243
]
6244
},
6245
{
@@ -6259,7 +6259,7 @@
6259
"zh-chs": "CIRA服务器",
6260
"zh-cht": "CIRA伺服器",
6261
"xloc": [
6262
- "default.handlebars->27->2096"
6262
+ "default.handlebars->27->2099"
6263
]
6264
},
6265
{
@@ -6279,7 +6279,7 @@
6279
"zh-chs": "CIRA服务器命令",
6280
"zh-cht": "CIRA伺服器指令",
6281
"xloc": [
6282
- "default.handlebars->27->2097"
6282
+ "default.handlebars->27->2100"
6283
]
6284
},
6285
{
@@ -6299,8 +6299,8 @@
6299
"zh-chs": "CPU",
6300
"zh-cht": "CPU",
6301
"xloc": [
6302
- "default-mobile.handlebars->9->378",
6303
- "default.handlebars->27->979"
6302
+ "default-mobile.handlebars->9->379",
6303
+ "default.handlebars->27->981"
6304
]
6305
},
6306
{
@@ -6320,7 +6320,7 @@
6320
"zh-chs": "CPU负载",
6321
"zh-cht": "CPU負載",
6322
"xloc": [
6323
- "default.handlebars->27->2057"
6323
+ "default.handlebars->27->2060"
6324
]
6325
},
6326
{
@@ -6340,7 +6340,7 @@
6340
"zh-chs": "最近15分钟的CPU负载",
6341
"zh-cht": "最近15分鐘的CPU負載",
6342
"xloc": [
6343
- "default.handlebars->27->2060"
6343
+ "default.handlebars->27->2063"
6344
]
6345
},
6346
{
@@ -6360,7 +6360,7 @@
6360
"zh-chs": "最近5分钟的CPU负载",
6361
"zh-cht": "最近5分鐘的CPU負載",
6362
"xloc": [
6363
- "default.handlebars->27->2059"
6363
+ "default.handlebars->27->2062"
6364
]
6365
},
6366
{
@@ -6380,7 +6380,7 @@
6380
"zh-chs": "最近一分钟的CPU负载",
6381
"zh-cht": "最近一分鐘的CPU負載",
6382
"xloc": [
6383
- "default.handlebars->27->2058"
6383
+ "default.handlebars->27->2061"
6384
]
6385
},
6386
{
@@ -6400,8 +6400,8 @@
6400
"zh-chs": "CR+LF",
6401
"zh-cht": "CR+LF",
6402
"xloc": [
6403
- "default.handlebars->27->859",
6404
- "default.handlebars->27->868",
6403
+ "default.handlebars->27->861",
6404
+ "default.handlebars->27->870",
6405
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
6406
]
6407
},
@@ -6422,7 +6422,7 @@
6422
"zh-chs": "CSV",
6423
"zh-cht": "CSV",
6424
"xloc": [
6425
- "default.handlebars->27->1677"
6425
+ "default.handlebars->27->1680"
6426
]
6427
},
6428
{
@@ -6442,9 +6442,9 @@
6442
"zh-chs": "CSV格式",
6443
"zh-cht": "CSV格式",
6444
"xloc": [
6445
- "default.handlebars->27->1681",
6446
- "default.handlebars->27->1746",
6447
- "default.handlebars->27->491"
6445
+ "default.handlebars->27->1684",
6446
+ "default.handlebars->27->1749",
6447
+ "default.handlebars->27->493"
6448
]
6449
},
6450
{
@@ -6464,7 +6464,7 @@
6464
"zh-chs": "呼叫错误",
6465
"zh-cht": "呼叫錯誤",
6466
"xloc": [
6467
- "default.handlebars->27->2109"
6467
+ "default.handlebars->27->2112"
6468
]
6469
},
6470
{
@@ -6486,7 +6486,7 @@
6486
"xloc": [
6487
"default-mobile.handlebars->9->82",
6488
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
6489
- "default.handlebars->27->1292",
6489
+ "default.handlebars->27->1294",
6490
"default.handlebars->container->dialog->idx_dlgButtonBar",
6491
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6492
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6513,10 +6513,10 @@
6513
"zh-chs": "容量",
6514
"zh-cht": "容量",
6515
"xloc": [
6516
- "default-mobile.handlebars->9->386",
6517
- "default-mobile.handlebars->9->388",
6518
- "default.handlebars->27->987",
6519
- "default.handlebars->27->989"
6516
+ "default-mobile.handlebars->9->387",
6517
+ "default-mobile.handlebars->9->389",
6518
+ "default.handlebars->27->989",
6519
+ "default.handlebars->27->991"
6520
]
6521
},
6522
{
@@ -6536,8 +6536,8 @@
6536
"zh-chs": "容量/速度",
6537
"zh-cht": "容量/速度",
6538
"xloc": [
6539
- "default-mobile.handlebars->9->381",
6540
- "default.handlebars->27->982"
6539
+ "default-mobile.handlebars->9->382",
6540
+ "default.handlebars->27->984"
6541
]
6542
},
6543
{
@@ -6557,7 +6557,7 @@
6557
"zh-chs": "加泰罗尼亚文",
6558
"zh-cht": "加泰羅尼亞文",
6559
"xloc": [
6560
- "default.handlebars->27->1063"
6560
+ "default.handlebars->27->1065"
6561
]
6562
},
6563
{
@@ -6577,7 +6577,7 @@
6577
"zh-chs": "在这里为中心显示地图",
6578
"zh-cht": "在這裡為中心顯示地圖",
6579
"xloc": [
6580
- "default.handlebars->27->537"
6580
+ "default.handlebars->27->539"
6581
]
6582
},
6583
{
@@ -6597,7 +6597,7 @@
6597
"zh-chs": "查莫罗",
6598
"zh-cht": "查莫羅",
6599
"xloc": [
6600
- "default.handlebars->27->1064"
6600
+ "default.handlebars->27->1066"
6601
]
6602
},
6603
{
@@ -6639,7 +6639,7 @@
6639
"zh-chs": "更改{0}的电邮",
6640
"zh-cht": "更改{0}的電郵",
6641
"xloc": [
6642
- "default.handlebars->27->1952"
6642
+ "default.handlebars->27->1955"
6643
]
6644
},
6645
{
@@ -6659,9 +6659,9 @@
6659
"zh-chs": "更改组",
6660
"zh-cht": "更改群",
6661
"xloc": [
6662
- "default.handlebars->27->633",
6663
- "default.handlebars->27->773",
6664
- "default.handlebars->27->774"
6662
+ "default.handlebars->27->635",
6663
+ "default.handlebars->27->775",
6664
+ "default.handlebars->27->776"
6665
]
6666
},
6667
{
@@ -6682,8 +6682,8 @@
6682
"zh-cht": "更改密碼",
6683
"xloc": [
6684
"default-mobile.handlebars->9->90",
6685
- "default.handlebars->27->1259",
6686
- "default.handlebars->27->1939"
6685
+ "default.handlebars->27->1261",
6686
+ "default.handlebars->27->1942"
6687
]
6688
},
6689
{
@@ -6703,7 +6703,7 @@
6703
"zh-chs": "更改{0}的密码",
6704
"zh-cht": "更改{0}的密碼",
6705
"xloc": [
6706
- "default.handlebars->27->1959"
6706
+ "default.handlebars->27->1962"
6707
]
6708
},
6709
{
@@ -6723,7 +6723,7 @@
6723
"zh-chs": "更改{0}的真实名称",
6724
"zh-cht": "更改{0}的真實名稱",
6725
"xloc": [
6726
- "default.handlebars->27->1947"
6726
+ "default.handlebars->27->1950"
6727
]
6728
},
6729
{
@@ -6805,7 +6805,7 @@
6805
"zh-chs": "更改该用户的密码",
6806
"zh-cht": "更改該用戶的密碼",
6807
"xloc": [
6808
- "default.handlebars->27->1938"
6808
+ "default.handlebars->27->1941"
6809
]
6810
},
6811
{
@@ -6845,7 +6845,7 @@
6845
"zh-chs": "在此处更改您的帐户电邮地址。",
6846
"zh-cht": "在此處更改你的帳戶電郵地址。",
6847
"xloc": [
6848
- "default.handlebars->27->1246"
6848
+ "default.handlebars->27->1248"
6849
]
6850
},
6851
{
@@ -6865,7 +6865,7 @@
6865
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6866
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6867
"xloc": [
6868
- "default.handlebars->27->1252"
6868
+ "default.handlebars->27->1254"
6869
]
6870
},
6871
{
@@ -6885,7 +6885,7 @@
6885
"zh-chs": "更改帐户凭据",
6886
"zh-cht": "帳戶憑證已更改",
6887
"xloc": [
6888
- "default.handlebars->27->1642"
6888
+ "default.handlebars->27->1644"
6889
]
6890
},
6891
{
@@ -6905,7 +6905,7 @@
6905
"zh-chs": "{1}组中的设备{0}已更改:{2}",
6906
"zh-cht": "{1}組中的設備{0}已更改:{2}",
6907
"xloc": [
6908
- "default.handlebars->27->1626"
6908
+ "default.handlebars->27->1628"
6909
]
6910
},
6911
{
@@ -6925,7 +6925,7 @@
6925
"zh-chs": "语言从{1}更改为{2}",
6926
"zh-cht": "語言從{1}更改為{2}",
6927
"xloc": [
6928
- "default.handlebars->27->1570"
6928
+ "default.handlebars->27->1572"
6929
]
6930
},
6931
{
@@ -6945,8 +6945,8 @@
6945
"zh-chs": "已更改{0}的用户设备权限",
6946
"zh-cht": "已更改{0}的用戶設備權限",
6947
"xloc": [
6948
- "default.handlebars->27->1628",
6949
- "default.handlebars->27->1649"
6948
+ "default.handlebars->27->1630",
6949
+ "default.handlebars->27->1651"
6950
]
6951
},
6952
{
@@ -6966,7 +6966,7 @@
6966
"zh-chs": "更改语言将需要刷新页面。",
6967
"zh-cht": "更改語言將需要刷新頁面。",
6968
"xloc": [
6969
- "default.handlebars->27->1231"
6969
+ "default.handlebars->27->1233"
6970
]
6971
},
6972
{
@@ -6986,9 +6986,9 @@
6986
"zh-chs": "聊天",
6987
"zh-cht": "聊天",
6988
"xloc": [
6989
- "default.handlebars->27->1698",
6990
- "default.handlebars->27->686",
6991
- "default.handlebars->27->705"
6989
+ "default.handlebars->27->1701",
6990
+ "default.handlebars->27->688",
6991
+ "default.handlebars->27->707"
6992
]
6993
},
6994
{
@@ -7008,10 +7008,10 @@
7008
"zh-chs": "聊天并通知",
7009
"zh-cht": "聊天並通知",
7010
"xloc": [
7011
- "default-mobile.handlebars->9->425",
7012
- "default-mobile.handlebars->9->443",
7013
- "default.handlebars->27->1443",
7014
- "default.handlebars->27->1478"
7011
+ "default-mobile.handlebars->9->426",
7012
+ "default-mobile.handlebars->9->444",
7013
+ "default.handlebars->27->1445",
7014
+ "default.handlebars->27->1480"
7015
]
7016
},
7017
{
@@ -7051,7 +7051,7 @@
7051
"zh-chs": "车臣",
7052
"zh-cht": "車臣",
7053
"xloc": [
7054
- "default.handlebars->27->1065"
7054
+ "default.handlebars->27->1067"
7055
]
7056
},
7057
{
@@ -7151,8 +7151,8 @@
7151
"zh-chs": "检查...",
7152
"zh-cht": "檢查...",
7153
"xloc": [
7154
- "default.handlebars->27->1031",
7155
- "default.handlebars->27->2103"
7154
+ "default.handlebars->27->1033",
7155
+ "default.handlebars->27->2106"
7156
]
7157
},
7158
{
@@ -7172,7 +7172,7 @@
7172
"zh-chs": "中文",
7173
"zh-cht": "中文",
7174
"xloc": [
7175
- "default.handlebars->27->1066"
7175
+ "default.handlebars->27->1068"
7176
]
7177
},
7178
{
@@ -7192,7 +7192,7 @@
7192
"zh-chs": "中文(香港)",
7193
"zh-cht": "中文(香港)",
7194
"xloc": [
7195
- "default.handlebars->27->1067"
7195
+ "default.handlebars->27->1069"
7196
]
7197
},
7198
{
@@ -7212,7 +7212,7 @@
7212
"zh-chs": "中文(中国)",
7213
"zh-cht": "中文(中國)",
7214
"xloc": [
7215
- "default.handlebars->27->1068"
7215
+ "default.handlebars->27->1070"
7216
]
7217
},
7218
{
@@ -7232,7 +7232,7 @@
7232
"zh-chs": "简体中文",
7233
"zh-cht": "簡體中文",
7234
"xloc": [
7235
- "default.handlebars->27->1228"
7235
+ "default.handlebars->27->1230"
7236
]
7237
},
7238
{
@@ -7252,7 +7252,7 @@
7252
"zh-chs": "中文(新加坡)",
7253
"zh-cht": "中文(新加坡)",
7254
"xloc": [
7255
- "default.handlebars->27->1069"
7255
+ "default.handlebars->27->1071"
7256
]
7257
},
7258
{
@@ -7272,7 +7272,7 @@
7272
"zh-chs": "中文(台湾)",
7273
"zh-cht": "中文(台灣)",
7274
"xloc": [
7275
- "default.handlebars->27->1070"
7275
+ "default.handlebars->27->1072"
7276
]
7277
},
7278
{
@@ -7292,7 +7292,7 @@
7292
"zh-chs": "繁体中文",
7293
"zh-cht": "繁體中文",
7294
"xloc": [
7295
- "default.handlebars->27->1229"
7295
+ "default.handlebars->27->1231"
7296
]
7297
},
7298
{
@@ -7333,7 +7333,7 @@
7333
"zh-chs": "楚瓦什",
7334
"zh-cht": "楚瓦什",
7335
"xloc": [
7336
- "default.handlebars->27->1071"
7336
+ "default.handlebars->27->1073"
7337
]
7338
},
7339
{
@@ -7353,7 +7353,7 @@
7353
"zh-chs": "清理CIRA",
7354
"zh-cht": "清理CIRA",
7355
"xloc": [
7356
- "default.handlebars->27->314"
7356
+ "default.handlebars->27->316"
7357
]
7358
},
7359
{
@@ -7374,16 +7374,16 @@
7374
"zh-cht": "清除",
7375
"xloc": [
7376
"default-mobile.handlebars->9->132",
7377
- "default-mobile.handlebars->9->314",
7378
- "default-mobile.handlebars->9->316",
7379
- "default-mobile.handlebars->9->318",
7380
- "default-mobile.handlebars->9->320",
7377
+ "default-mobile.handlebars->9->315",
7378
+ "default-mobile.handlebars->9->317",
7379
+ "default-mobile.handlebars->9->319",
7380
+ "default-mobile.handlebars->9->321",
7381
"default-mobile.handlebars->9->59",
7382
- "default.handlebars->27->1564",
7383
- "default.handlebars->27->898",
7382
+ "default.handlebars->27->1566",
7383
"default.handlebars->27->900",
7384
"default.handlebars->27->902",
7385
"default.handlebars->27->904",
7386
+ "default.handlebars->27->906",
7387
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7388
"default.handlebars->container->column_l->p41->3->1",
7389
"messenger.handlebars->xbottom"
@@ -7426,7 +7426,7 @@
7426
"zh-chs": "全部清除",
7427
"zh-cht": "全部清除",
7428
"xloc": [
7429
- "default.handlebars->27->2030"
7429
+ "default.handlebars->27->2033"
7430
]
7431
},
7432
{
@@ -7446,7 +7446,7 @@
7446
"zh-chs": "清除核心",
7447
"zh-cht": "清除核心",
7448
"xloc": [
7449
- "default.handlebars->27->1003"
7449
+ "default.handlebars->27->1005"
7450
]
7451
},
7452
{
@@ -7486,7 +7486,7 @@
7486
"zh-chs": "清除此通知",
7487
"zh-cht": "清除此通知",
7488
"xloc": [
7489
- "default.handlebars->27->2029"
7489
+ "default.handlebars->27->2032"
7490
]
7491
},
7492
{
@@ -7546,8 +7546,8 @@
7546
"zh-chs": "单击此处编辑设备组名称",
7547
"zh-cht": "單擊此處編輯裝置群名稱",
7548
"xloc": [
7549
- "default.handlebars->27->1303",
7550
- "default.handlebars->27->1515"
7549
+ "default.handlebars->27->1305",
7550
+ "default.handlebars->27->1517"
7551
]
7552
},
7553
{
@@ -7567,7 +7567,7 @@
7567
"zh-chs": "单击此处编辑服务器端设备名称",
7568
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
7569
"xloc": [
7570
- "default.handlebars->27->553"
7570
+ "default.handlebars->27->555"
7571
]
7572
},
7573
{
@@ -7587,7 +7587,7 @@
7587
"zh-chs": "单击此处编辑用户组名称",
7588
"zh-cht": "單擊此處編輯用戶群名稱",
7589
"xloc": [
7590
- "default.handlebars->27->1815"
7590
+ "default.handlebars->27->1818"
7591
]
7592
},
7593
{
@@ -7648,7 +7648,7 @@
7648
"zh-cht": "單擊確定將驗證電郵發送到:",
7649
"xloc": [
7650
"default-mobile.handlebars->9->75",
7651
- "default.handlebars->27->1243"
7651
+ "default.handlebars->27->1245"
7652
]
7653
},
7654
{
@@ -7688,8 +7688,8 @@
7688
"zh-chs": "客户端控制模式(CCM)",
7689
"zh-cht": "客戶端控制模式(CCM)",
7690
"xloc": [
7691
- "default-mobile.handlebars->9->359",
7692
- "default.handlebars->27->960"
7691
+ "default-mobile.handlebars->9->360",
7692
+ "default.handlebars->27->962"
7693
]
7694
},
7695
{
@@ -7709,7 +7709,7 @@
7709
"zh-chs": "客户编号",
7710
"zh-cht": "客戶編號",
7711
"xloc": [
7712
- "default.handlebars->27->1285"
7712
+ "default.handlebars->27->1287"
7713
]
7714
},
7715
{
@@ -7729,8 +7729,8 @@
7729
"zh-chs": "客户端启动的远程访问",
7730
"zh-cht": "客戶端啟動的遠程訪問",
7731
"xloc": [
7732
- "default.handlebars->27->1378",
7733
- "default.handlebars->27->1383"
7732
+ "default.handlebars->27->1380",
7733
+ "default.handlebars->27->1385"
7734
]
7735
},
7736
{
@@ -7750,7 +7750,7 @@
7750
"zh-chs": "客户机密",
7751
"zh-cht": "客戶機密",
7752
"xloc": [
7753
- "default.handlebars->27->1286"
7753
+ "default.handlebars->27->1288"
7754
]
7755
},
7756
{
@@ -7794,7 +7794,7 @@
7794
"default-mobile.handlebars->9->57",
7795
"default.handlebars->27->137",
7796
"default.handlebars->27->145",
7797
- "default.handlebars->27->850"
7797
+ "default.handlebars->27->852"
7798
]
7799
},
7800
{
@@ -7814,7 +7814,7 @@
7814
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
7815
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
7816
"xloc": [
7817
- "default.handlebars->27->1575"
7817
+ "default.handlebars->27->1577"
7818
]
7819
},
7820
{
@@ -7834,7 +7834,7 @@
7834
"zh-chs": "码",
7835
"zh-cht": "碼",
7836
"xloc": [
7837
- "default.handlebars->27->200"
7837
+ "default.handlebars->27->201"
7838
]
7839
},
7840
{
@@ -7883,7 +7883,7 @@
7883
"en": "Command",
7884
"nl": "Opdracht",
7885
"xloc": [
7886
- "default.handlebars->27->412"
7886
+ "default.handlebars->27->414"
7887
]
7888
},
7889
{
@@ -7903,8 +7903,8 @@
7903
"zh-chs": "通用设备组",
7904
"zh-cht": "通用裝置群",
7905
"xloc": [
7906
- "default.handlebars->27->1846",
7907
- "default.handlebars->27->1964"
7906
+ "default.handlebars->27->1849",
7907
+ "default.handlebars->27->1967"
7908
]
7909
},
7910
{
@@ -7924,8 +7924,8 @@
7924
"zh-chs": "通用设备",
7925
"zh-cht": "通用裝置",
7926
"xloc": [
7927
- "default.handlebars->27->1852",
7928
- "default.handlebars->27->1976"
7927
+ "default.handlebars->27->1855",
7928
+ "default.handlebars->27->1979"
7929
]
7930
},
7931
{
@@ -7945,7 +7945,7 @@
7945
"zh-chs": "压缩档案...",
7946
"zh-cht": "壓縮檔案...",
7947
"xloc": [
7948
- "default.handlebars->27->875"
7948
+ "default.handlebars->27->877"
7949
]
7950
},
7951
{
@@ -7966,7 +7966,7 @@
7966
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
7967
"xloc": [
7968
"default-mobile.handlebars->9->127",
7969
- "default.handlebars->27->1559"
7969
+ "default.handlebars->27->1561"
7970
]
7971
},
7972
{
@@ -7986,16 +7986,16 @@
7986
"zh-chs": "确认",
7987
"zh-cht": "確認",
7988
"xloc": [
7989
- "default-mobile.handlebars->9->276",
7990
- "default-mobile.handlebars->9->405",
7991
- "default.handlebars->27->1392",
7992
- "default.handlebars->27->1726",
7993
- "default.handlebars->27->1805",
7994
- "default.handlebars->27->1866",
7995
- "default.handlebars->27->1962",
7996
- "default.handlebars->27->467",
7997
- "default.handlebars->27->768",
7998
- "default.handlebars->27->777"
7989
+ "default-mobile.handlebars->9->277",
7990
+ "default-mobile.handlebars->9->406",
7991
+ "default.handlebars->27->1394",
7992
+ "default.handlebars->27->1729",
7993
+ "default.handlebars->27->1808",
7994
+ "default.handlebars->27->1869",
7995
+ "default.handlebars->27->1965",
7996
+ "default.handlebars->27->469",
7997
+ "default.handlebars->27->770",
7998
+ "default.handlebars->27->779"
7999
]
8000
},
8001
{
@@ -8015,8 +8015,8 @@
8015
"zh-chs": "确认将1个副本复制到此位置?",
8016
"zh-cht": "確認將1個副本複製到此位置?",
8017
"xloc": [
8018
- "default-mobile.handlebars->9->309",
8019
- "default.handlebars->27->893"
8018
+ "default-mobile.handlebars->9->310",
8019
+ "default.handlebars->27->895"
8020
]
8021
},
8022
{
@@ -8036,7 +8036,7 @@
8036
"zh-chs": "确认{0}个条目的复制到此位置?",
8037
"zh-cht": "確認{0}個條目的複製到此位置?",
8038
"xloc": [
8039
- "default.handlebars->27->892"
8039
+ "default.handlebars->27->894"
8040
]
8041
},
8042
{
@@ -8056,7 +8056,7 @@
8056
"zh-chs": "确认{0}个条目的副本到此位置?",
8057
"zh-cht": "確認{0}個條目的副本到此位置?",
8058
"xloc": [
8059
- "default-mobile.handlebars->9->308"
8059
+ "default-mobile.handlebars->9->309"
8060
]
8061
},
8062
{
@@ -8076,7 +8076,7 @@
8076
"zh-chs": "确认删除选定的帐户?",
8077
"zh-cht": "確認刪除所選帳戶?",
8078
"xloc": [
8079
- "default.handlebars->27->1725"
8079
+ "default.handlebars->27->1728"
8080
]
8081
},
8082
{
@@ -8096,7 +8096,7 @@
8096
"zh-chs": "确认删除选定的设备?",
8097
"zh-cht": "確認刪除所選裝置?",
8098
"xloc": [
8099
- "default.handlebars->27->466"
8099
+ "default.handlebars->27->468"
8100
]
8101
},
8102
{
@@ -8116,7 +8116,7 @@
8116
"zh-chs": "确认删除选定的用户组?",
8117
"zh-cht": "確認刪除所選用戶群?",
8118
"xloc": [
8119
- "default.handlebars->27->1804"
8119
+ "default.handlebars->27->1807"
8120
]
8121
},
8122
{
@@ -8136,7 +8136,7 @@
8136
"zh-chs": "确认删除用户{0}?",
8137
"zh-cht": "確認刪除用戶{0}?",
8138
"xloc": [
8139
- "default.handlebars->27->1961"
8139
+ "default.handlebars->27->1964"
8140
]
8141
},
8142
{
@@ -8156,7 +8156,7 @@
8156
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8157
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8158
"xloc": [
8159
- "default.handlebars->27->1869"
8159
+ "default.handlebars->27->1872"
8160
]
8161
},
8162
{
@@ -8176,7 +8176,7 @@
8176
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8177
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8178
"xloc": [
8179
- "default.handlebars->27->1991"
8179
+ "default.handlebars->27->1994"
8180
]
8181
},
8182
{
@@ -8196,8 +8196,8 @@
8196
"zh-chs": "确认将1个条目移动到此位置?",
8197
"zh-cht": "確認將1個條目移動到此位置?",
8198
"xloc": [
8199
- "default-mobile.handlebars->9->311",
8200
- "default.handlebars->27->895"
8199
+ "default-mobile.handlebars->9->312",
8200
+ "default.handlebars->27->897"
8201
]
8202
},
8203
{
@@ -8217,7 +8217,7 @@
8217
"zh-chs": "确认将{0}个条目移到此位置?",
8218
"zh-cht": "確認將{0}個條目移到該位置?",
8219
"xloc": [
8220
- "default.handlebars->27->894"
8220
+ "default.handlebars->27->896"
8221
]
8222
},
8223
{
@@ -8237,7 +8237,7 @@
8237
"zh-chs": "确认将{0}个条目移到该位置?",
8238
"zh-cht": "確認將{0}個條目移到該位置?",
8239
"xloc": [
8240
- "default-mobile.handlebars->9->310"
8240
+ "default-mobile.handlebars->9->311"
8241
]
8242
},
8243
{
@@ -8257,7 +8257,7 @@
8257
"zh-chs": "确认覆盖?",
8258
"zh-cht": "確認覆蓋?",
8259
"xloc": [
8260
- "default.handlebars->27->1558"
8260
+ "default.handlebars->27->1560"
8261
]
8262
},
8263
{
@@ -8277,8 +8277,8 @@
8277
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
8278
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8279
"xloc": [
8280
- "default.handlebars->27->1859",
8281
- "default.handlebars->27->1982"
8280
+ "default.handlebars->27->1862",
8281
+ "default.handlebars->27->1985"
8282
]
8283
},
8284
{
@@ -8298,8 +8298,8 @@
8298
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8299
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8300
"xloc": [
8301
- "default.handlebars->27->1861",
8302
- "default.handlebars->27->1995"
8301
+ "default.handlebars->27->1864",
8302
+ "default.handlebars->27->1998"
8303
]
8304
},
8305
{
@@ -8319,7 +8319,7 @@
8319
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
8320
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8321
"xloc": [
8322
- "default.handlebars->27->1984"
8322
+ "default.handlebars->27->1987"
8323
]
8324
},
8325
{
@@ -8339,7 +8339,7 @@
8339
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8340
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8341
"xloc": [
8342
- "default.handlebars->27->1987"
8342
+ "default.handlebars->27->1990"
8343
]
8344
},
8345
{
@@ -8359,8 +8359,8 @@
8359
"zh-chs": "确认删除访问权限?",
8360
"zh-cht": "確認刪除訪問權限?",
8361
"xloc": [
8362
- "default.handlebars->27->1985",
8363
- "default.handlebars->27->1988"
8362
+ "default.handlebars->27->1988",
8363
+ "default.handlebars->27->1991"
8364
]
8365
},
8366
{
@@ -8381,7 +8381,7 @@
8381
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
8382
"xloc": [
8383
"default-mobile.handlebars->9->74",
8384
- "default.handlebars->27->1021"
8384
+ "default.handlebars->27->1023"
8385
]
8386
},
8387
{
@@ -8452,7 +8452,7 @@
8452
"zh-chs": "确认删除用户“ {0} ”的权限?",
8453
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
8454
"xloc": [
8455
- "default.handlebars->27->1487"
8455
+ "default.handlebars->27->1489"
8456
]
8457
},
8458
{
@@ -8472,7 +8472,7 @@
8472
"zh-chs": "确认删除用户组“ {0} ”的权限?",
8473
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8474
"xloc": [
8475
- "default.handlebars->27->1489"
8475
+ "default.handlebars->27->1491"
8476
]
8477
},
8478
{
@@ -8509,7 +8509,7 @@
8509
"zh-chs": "确认删除用户{0}?",
8510
"zh-cht": "確認刪除用戶{0}?",
8511
"xloc": [
8512
- "default-mobile.handlebars->9->452"
8512
+ "default-mobile.handlebars->9->453"
8513
]
8514
},
8515
{
@@ -8529,11 +8529,11 @@
8529
"zh-chs": "连接",
8530
"zh-cht": "連接",
8531
"xloc": [
8532
- "default-mobile.handlebars->9->291",
8532
+ "default-mobile.handlebars->9->292",
8533
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8534
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8535
- "default.handlebars->27->1331",
8536
- "default.handlebars->27->871",
8535
+ "default.handlebars->27->1333",
8536
+ "default.handlebars->27->873",
8537
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8538
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
8539
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -8559,7 +8559,7 @@
8559
"zh-chs": "全部连接",
8560
"zh-cht": "全部連接",
8561
"xloc": [
8562
- "default.handlebars->27->265",
8562
+ "default.handlebars->27->267",
8563
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
8564
]
8565
},
@@ -8580,8 +8580,8 @@
8580
"zh-chs": "连接到服务器",
8581
"zh-cht": "連接到伺服器",
8582
"xloc": [
8583
- "default.handlebars->27->1382",
8584
- "default.handlebars->27->1386"
8583
+ "default.handlebars->27->1384",
8584
+ "default.handlebars->27->1388"
8585
]
8586
},
8587
{
@@ -8702,7 +8702,7 @@
8702
"zh-chs": "已连接的英特尔®AMT",
8703
"zh-cht": "已連接的Intel® AMT",
8704
"xloc": [
8705
- "default.handlebars->27->2048"
8705
+ "default.handlebars->27->2051"
8706
]
8707
},
8708
{
@@ -8722,7 +8722,7 @@
8722
"zh-chs": "已连接的用户",
8723
"zh-cht": "已连接的用户",
8724
"xloc": [
8725
- "default.handlebars->27->2053"
8725
+ "default.handlebars->27->2056"
8726
]
8727
},
8728
{
@@ -8742,8 +8742,8 @@
8742
"zh-chs": "现在已连接",
8743
"zh-cht": "現在已連接",
8744
"xloc": [
8745
- "default-mobile.handlebars->9->334",
8746
- "default.handlebars->27->925"
8745
+ "default-mobile.handlebars->9->335",
8746
+ "default.handlebars->27->927"
8747
]
8748
},
8749
{
@@ -8784,13 +8784,13 @@
8784
"zh-cht": "正在連線...",
8785
"xloc": [
8786
"default-mobile.handlebars->9->2",
8787
- "default-mobile.handlebars->9->327",
8787
+ "default-mobile.handlebars->9->328",
8788
"default-mobile.handlebars->9->37",
8789
- "default.handlebars->27->239",
8790
- "default.handlebars->27->242",
8791
- "default.handlebars->27->268",
8789
+ "default.handlebars->27->240",
8790
+ "default.handlebars->27->243",
8791
+ "default.handlebars->27->270",
8792
"default.handlebars->27->9",
8793
- "default.handlebars->27->916",
8793
+ "default.handlebars->27->918",
8794
"desktop.handlebars->3->2",
8795
"xterm.handlebars->9->2"
8796
]
@@ -8812,7 +8812,7 @@
8812
"zh-chs": "连接数量",
8813
"zh-cht": "連接數量",
8814
"xloc": [
8815
- "default.handlebars->27->2067"
8815
+ "default.handlebars->27->2070"
8816
]
8817
},
8818
{
@@ -8832,7 +8832,7 @@
8832
"zh-chs": "连接转发器",
8833
"zh-cht": "連接轉發器",
8834
"xloc": [
8835
- "default.handlebars->27->2095"
8835
+ "default.handlebars->27->2098"
8836
]
8837
},
8838
{
@@ -8892,10 +8892,10 @@
8892
"zh-chs": "连接性",
8893
"zh-cht": "連接性",
8894
"xloc": [
8895
- "default-mobile.handlebars->9->244",
8896
- "default.handlebars->27->1522",
8897
- "default.handlebars->27->230",
8898
- "default.handlebars->27->620",
8895
+ "default-mobile.handlebars->9->245",
8896
+ "default.handlebars->27->1524",
8897
+ "default.handlebars->27->231",
8898
+ "default.handlebars->27->622",
8899
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
8900
]
8901
},
@@ -8916,8 +8916,8 @@
8916
"zh-chs": "控制台",
8917
"zh-cht": "控制台",
8918
"xloc": [
8919
- "default.handlebars->27->681",
8920
- "default.handlebars->27->700",
8919
+ "default.handlebars->27->683",
8920
+ "default.handlebars->27->702",
8921
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
8922
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
8923
"default.handlebars->contextMenu->cxconsole"
@@ -8940,7 +8940,7 @@
8940
"zh-chs": "控制台 -",
8941
"zh-cht": "控制台 -",
8942
"xloc": [
8943
- "default.handlebars->27->554"
8943
+ "default.handlebars->27->556"
8944
]
8945
},
8946
{
@@ -8960,8 +8960,8 @@
8960
"zh-chs": "控制",
8961
"zh-cht": "控制",
8962
"xloc": [
8963
- "default.handlebars->27->680",
8964
- "default.handlebars->27->699",
8963
+ "default.handlebars->27->682",
8964
+ "default.handlebars->27->701",
8965
"messenger.handlebars->13->1"
8966
]
8967
},
@@ -8982,7 +8982,7 @@
8982
"zh-chs": "Cookie编码器",
8983
"zh-cht": "Cookie編碼器",
8984
"xloc": [
8985
- "default.handlebars->27->2081"
8985
+ "default.handlebars->27->2084"
8986
]
8987
},
8988
{
@@ -9047,7 +9047,7 @@
9047
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
9048
"zh-cht": "將Windows 32位代理URL複製到剪貼板",
9049
"xloc": [
9050
- "default.handlebars->27->387"
9050
+ "default.handlebars->27->389"
9051
]
9052
},
9053
{
@@ -9067,7 +9067,7 @@
9067
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
9068
"zh-cht": "將Windows 64位代理URL複製到剪貼板",
9069
"xloc": [
9070
- "default.handlebars->27->391"
9070
+ "default.handlebars->27->393"
9071
]
9072
},
9073
{
@@ -9118,8 +9118,8 @@
9118
"zh-chs": "将代理URL复制到剪贴板",
9119
"zh-cht": "將代理URL複製到剪貼板",
9120
"xloc": [
9121
- "default.handlebars->27->411",
9122
- "default.handlebars->27->413"
9121
+ "default.handlebars->27->413",
9122
+ "default.handlebars->27->415"
9123
]
9124
},
9125
{
@@ -9139,10 +9139,10 @@
9139
"zh-chs": "复制连结到剪贴板",
9140
"zh-cht": "複製連結到剪貼板",
9141
"xloc": [
9142
- "default.handlebars->27->1527",
9143
- "default.handlebars->27->1546",
9144
- "default.handlebars->27->192",
9145
- "default.handlebars->27->369"
9142
+ "default.handlebars->27->1529",
9143
+ "default.handlebars->27->1548",
9144
+ "default.handlebars->27->193",
9145
+ "default.handlebars->27->371"
9146
]
9147
},
9148
{
@@ -9162,7 +9162,7 @@
9162
"zh-chs": "将macOS代理URL复制到剪贴板",
9163
"zh-cht": "將macOS代理URL複製到剪貼板",
9164
"xloc": [
9165
- "default.handlebars->27->399"
9165
+ "default.handlebars->27->401"
9166
]
9167
},
9168
{
@@ -9243,7 +9243,7 @@
9243
"zh-chs": "复制:“{0}”到“{1}”",
9244
"zh-cht": "複製:“{0}”到“{1}”",
9245
"xloc": [
9246
- "default.handlebars->27->1618"
9246
+ "default.handlebars->27->1620"
9247
]
9248
},
9249
{
@@ -9389,7 +9389,7 @@
9389
"zh-chs": "核心服务器",
9390
"zh-cht": "核心伺服器",
9391
"xloc": [
9392
- "default.handlebars->27->2080"
9392
+ "default.handlebars->27->2083"
9393
]
9394
},
9395
{
@@ -9409,7 +9409,7 @@
9409
"zh-chs": "科西嘉文",
9410
"zh-cht": "科西嘉文",
9411
"xloc": [
9412
- "default.handlebars->27->1072"
9412
+ "default.handlebars->27->1074"
9413
]
9414
},
9415
{
@@ -9429,7 +9429,7 @@
9429
"zh-chs": "创建帐号",
9430
"zh-cht": "創建帳號",
9431
"xloc": [
9432
- "default.handlebars->27->1773",
9432
+ "default.handlebars->27->1776",
9433
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9434
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9435
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9472,7 +9472,7 @@
9472
"zh-chs": "创建用户组",
9473
"zh-cht": "創建用戶群",
9474
"xloc": [
9475
- "default.handlebars->27->1812"
9475
+ "default.handlebars->27->1815"
9476
]
9477
},
9478
{
@@ -9492,7 +9492,7 @@
9492
"zh-chs": "创建连结以与访客共享此设备",
9493
"zh-cht": "創建鏈結以與訪客共享此裝置",
9494
"xloc": [
9495
- "default.handlebars->27->631"
9495
+ "default.handlebars->27->633"
9496
]
9497
},
9498
{
@@ -9512,7 +9512,7 @@
9512
"zh-chs": "使用以下选项创建一个新的设备组。",
9513
"zh-cht": "使用以下選項創建一個新的裝置群。",
9514
"xloc": [
9515
- "default.handlebars->27->1266"
9515
+ "default.handlebars->27->1268"
9516
]
9517
},
9518
{
@@ -9532,7 +9532,7 @@
9532
"zh-chs": "创建一个新的设备组。",
9533
"zh-cht": "創建一個新的裝置群。",
9534
"xloc": [
9535
- "default.handlebars->27->232"
9535
+ "default.handlebars->27->233"
9536
]
9537
},
9538
{
@@ -9552,7 +9552,7 @@
9552
"zh-chs": "创建文件夹:“{0}”",
9553
"zh-cht": "創建文件夾:“{0}”",
9554
"xloc": [
9555
- "default.handlebars->27->1611"
9555
+ "default.handlebars->27->1613"
9556
]
9557
},
9558
{
@@ -9572,7 +9572,7 @@
9572
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9573
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9574
"xloc": [
9575
- "default.handlebars->27->1737"
9575
+ "default.handlebars->27->1740"
9576
]
9577
},
9578
{
@@ -9614,7 +9614,7 @@
9614
"zh-chs": "创建的设备组:{0}",
9615
"zh-cht": "創建的設備組:{0}",
9616
"xloc": [
9617
- "default.handlebars->27->1622"
9617
+ "default.handlebars->27->1624"
9618
]
9619
},
9620
{
@@ -9634,7 +9634,7 @@
9634
"zh-chs": "创建一个连结,该连结允许没有帐户的访客将远程桌面访问此设备最多1小时。",
9635
"zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。",
9636
"xloc": [
9637
- "default.handlebars->27->716"
9637
+ "default.handlebars->27->718"
9638
]
9639
},
9640
{
@@ -9654,7 +9654,7 @@
9654
"zh-chs": "创建",
9655
"zh-cht": "創建",
9656
"xloc": [
9657
- "default.handlebars->27->1898"
9657
+ "default.handlebars->27->1901"
9658
]
9659
},
9660
{
@@ -9674,7 +9674,7 @@
9674
"zh-chs": "创建时间",
9675
"zh-cht": "創作時間",
9676
"xloc": [
9677
- "default.handlebars->27->1313"
9677
+ "default.handlebars->27->1315"
9678
]
9679
},
9680
{
@@ -9716,8 +9716,8 @@
9716
"zh-chs": "创建者",
9717
"zh-cht": "創作者",
9718
"xloc": [
9719
- "default.handlebars->27->1311",
9720
- "default.handlebars->27->1312"
9719
+ "default.handlebars->27->1313",
9720
+ "default.handlebars->27->1314"
9721
]
9722
},
9723
{
@@ -9737,7 +9737,7 @@
9737
"zh-chs": "证书",
9738
"zh-cht": "證書",
9739
"xloc": [
9740
- "default.handlebars->27->1283"
9740
+ "default.handlebars->27->1285"
9741
]
9742
},
9743
{
@@ -9757,7 +9757,7 @@
9757
"zh-chs": "克里语",
9758
"zh-cht": "克里語",
9759
"xloc": [
9760
- "default.handlebars->27->1073"
9760
+ "default.handlebars->27->1075"
9761
]
9762
},
9763
{
@@ -9777,7 +9777,7 @@
9777
"zh-chs": "克罗地亚文",
9778
"zh-cht": "克羅地亞文",
9779
"xloc": [
9780
- "default.handlebars->27->1074"
9780
+ "default.handlebars->27->1076"
9781
]
9782
},
9783
{
@@ -9944,7 +9944,7 @@
9944
"zh-chs": "捷克文",
9945
"zh-cht": "捷克文",
9946
"xloc": [
9947
- "default.handlebars->27->1075"
9947
+ "default.handlebars->27->1077"
9948
]
9949
},
9950
{
@@ -9984,7 +9984,7 @@
9984
"zh-chs": "丹麦文",
9985
"zh-cht": "丹麥文",
9986
"xloc": [
9987
- "default.handlebars->27->1076"
9987
+ "default.handlebars->27->1078"
9988
]
9989
},
9990
{
@@ -10004,7 +10004,7 @@
10004
"zh-chs": "数据通道",
10005
"zh-cht": "數據通道",
10006
"xloc": [
10007
- "default.handlebars->27->820",
10007
+ "default.handlebars->27->822",
10008
"desktop.handlebars->3->12"
10009
]
10010
},
@@ -10025,7 +10025,7 @@
10025
"zh-chs": "日期和时间",
10026
"zh-cht": "日期和時間",
10027
"xloc": [
10028
- "default.handlebars->27->1234"
10028
+ "default.handlebars->27->1236"
10029
]
10030
},
10031
{
@@ -10045,8 +10045,8 @@
10045
"zh-chs": "天",
10046
"zh-cht": "天",
10047
"xloc": [
10048
- "default-mobile.handlebars->9->266",
10049
- "default.handlebars->27->752"
10048
+ "default-mobile.handlebars->9->267",
10049
+ "default.handlebars->27->754"
10050
]
10051
},
10052
{
@@ -10066,7 +10066,7 @@
10066
"zh-chs": "停用客户端控制模式(CCM)",
10067
"zh-cht": "停用客戶端控制模式(CCM)",
10068
"xloc": [
10069
- "default.handlebars->27->1370"
10069
+ "default.handlebars->27->1372"
10070
]
10071
},
10072
{
@@ -10086,8 +10086,8 @@
10086
"zh-chs": "沉睡",
10087
"zh-cht": "沉睡",
10088
"xloc": [
10089
- "default-mobile.handlebars->9->188",
10090
- "default.handlebars->27->424"
10089
+ "default-mobile.handlebars->9->189",
10090
+ "default.handlebars->27->426"
10091
]
10092
},
10093
{
@@ -10107,10 +10107,10 @@
10107
"zh-chs": "默认",
10108
"zh-cht": "默認",
10109
"xloc": [
10110
- "default.handlebars->27->1760",
10111
- "default.handlebars->27->1808",
10112
- "default.handlebars->27->1819",
10113
- "default.handlebars->27->1887"
10110
+ "default.handlebars->27->1763",
10111
+ "default.handlebars->27->1811",
10112
+ "default.handlebars->27->1822",
10113
+ "default.handlebars->27->1890"
10114
]
10115
},
10116
{
@@ -10131,12 +10131,12 @@
10131
"zh-cht": "刪除",
10132
"xloc": [
10133
"default-mobile.handlebars->9->122",
10134
- "default-mobile.handlebars->9->301",
10134
+ "default-mobile.handlebars->9->302",
10135
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10136
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10137
- "default.handlebars->27->1553",
10138
- "default.handlebars->27->524",
10139
- "default.handlebars->27->884",
10137
+ "default.handlebars->27->1555",
10138
+ "default.handlebars->27->526",
10139
+ "default.handlebars->27->886",
10140
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10141
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10142
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10164,7 +10164,7 @@
10164
"zh-cht": "刪除帳戶",
10165
"xloc": [
10166
"default-mobile.handlebars->9->84",
10167
- "default.handlebars->27->1251"
10167
+ "default.handlebars->27->1253"
10168
]
10169
},
10170
{
@@ -10184,7 +10184,7 @@
10184
"zh-chs": "删除帐户",
10185
"zh-cht": "刪除帳戶",
10186
"xloc": [
10187
- "default.handlebars->27->1727"
10187
+ "default.handlebars->27->1730"
10188
]
10189
},
10190
{
@@ -10204,8 +10204,8 @@
10204
"zh-chs": "删除设备",
10205
"zh-cht": "刪除裝置",
10206
"xloc": [
10207
- "default-mobile.handlebars->9->249",
10208
- "default.handlebars->27->635"
10207
+ "default-mobile.handlebars->9->250",
10208
+ "default.handlebars->27->637"
10209
]
10210
},
10211
{
@@ -10225,10 +10225,10 @@
10225
"zh-chs": "删除群组",
10226
"zh-cht": "刪除群組",
10227
"xloc": [
10228
- "default-mobile.handlebars->9->403",
10229
- "default-mobile.handlebars->9->406",
10230
- "default.handlebars->27->1363",
10231
- "default.handlebars->27->1393"
10228
+ "default-mobile.handlebars->9->404",
10229
+ "default-mobile.handlebars->9->407",
10230
+ "default.handlebars->27->1365",
10231
+ "default.handlebars->27->1395"
10232
]
10233
},
10234
{
@@ -10248,8 +10248,8 @@
10248
"zh-chs": "删除节点",
10249
"zh-cht": "刪除節點",
10250
"xloc": [
10251
- "default-mobile.handlebars->9->274",
10252
- "default.handlebars->27->778"
10251
+ "default-mobile.handlebars->9->275",
10252
+ "default.handlebars->27->780"
10253
]
10254
},
10255
{
@@ -10269,7 +10269,7 @@
10269
"zh-chs": "删除节点",
10270
"zh-cht": "刪除節點",
10271
"xloc": [
10272
- "default.handlebars->27->468"
10272
+ "default.handlebars->27->470"
10273
]
10274
},
10275
{
@@ -10289,7 +10289,7 @@
10289
"zh-chs": "删除用户",
10290
"zh-cht": "刪除用戶",
10291
"xloc": [
10292
- "default.handlebars->27->1937"
10292
+ "default.handlebars->27->1940"
10293
]
10294
},
10295
{
@@ -10309,8 +10309,8 @@
10309
"zh-chs": "删除用户群组",
10310
"zh-cht": "刪除用戶群組",
10311
"xloc": [
10312
- "default.handlebars->27->1857",
10313
- "default.handlebars->27->1867"
10312
+ "default.handlebars->27->1860",
10313
+ "default.handlebars->27->1870"
10314
]
10315
},
10316
{
@@ -10330,7 +10330,7 @@
10330
"zh-chs": "删除用户群组",
10331
"zh-cht": "刪除用戶群組",
10332
"xloc": [
10333
- "default.handlebars->27->1806"
10333
+ "default.handlebars->27->1809"
10334
]
10335
},
10336
{
@@ -10350,7 +10350,7 @@
10350
"zh-chs": "删除用户{0}",
10351
"zh-cht": "刪除用戶{0}",
10352
"xloc": [
10353
- "default.handlebars->27->1960"
10353
+ "default.handlebars->27->1963"
10354
]
10355
},
10356
{
@@ -10371,7 +10371,7 @@
10371
"zh-cht": "刪除帳戶",
10372
"xloc": [
10373
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10374
- "default.handlebars->27->1723",
10374
+ "default.handlebars->27->1726",
10375
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10376
]
10377
},
@@ -10392,7 +10392,7 @@
10392
"zh-chs": "删除设备",
10393
"zh-cht": "刪除裝置",
10394
"xloc": [
10395
- "default.handlebars->27->464"
10395
+ "default.handlebars->27->466"
10396
]
10397
},
10398
{
@@ -10412,7 +10412,7 @@
10412
"zh-chs": "删除群组",
10413
"zh-cht": "刪除群組",
10414
"xloc": [
10415
- "default.handlebars->27->1802"
10415
+ "default.handlebars->27->1805"
10416
]
10417
},
10418
{
@@ -10432,7 +10432,7 @@
10432
"zh-chs": "删除项目?",
10433
"zh-cht": "刪除項目?",
10434
"xloc": [
10435
- "default.handlebars->27->525"
10435
+ "default.handlebars->27->527"
10436
]
10437
},
10438
{
@@ -10452,7 +10452,7 @@
10452
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10453
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10454
"xloc": [
10455
- "default.handlebars->27->1613"
10455
+ "default.handlebars->27->1615"
10456
]
10457
},
10458
{
@@ -10473,9 +10473,9 @@
10473
"zh-cht": "刪除所選項目?",
10474
"xloc": [
10475
"default-mobile.handlebars->9->124",
10476
- "default-mobile.handlebars->9->303",
10477
- "default.handlebars->27->1555",
10478
- "default.handlebars->27->886"
10476
+ "default-mobile.handlebars->9->304",
10477
+ "default.handlebars->27->1557",
10478
+ "default.handlebars->27->888"
10479
]
10480
},
10481
{
@@ -10495,7 +10495,7 @@
10495
"zh-chs": "删除用户群组{0}?",
10496
"zh-cht": "刪除用戶群組{0}?",
10497
"xloc": [
10498
- "default.handlebars->27->1865"
10498
+ "default.handlebars->27->1868"
10499
]
10500
},
10501
{
@@ -10516,9 +10516,9 @@
10516
"zh-cht": "刪除{0}個所選項目?",
10517
"xloc": [
10518
"default-mobile.handlebars->9->123",
10519
- "default-mobile.handlebars->9->302",
10520
- "default.handlebars->27->1554",
10521
- "default.handlebars->27->885"
10519
+ "default-mobile.handlebars->9->303",
10520
+ "default.handlebars->27->1556",
10521
+ "default.handlebars->27->887"
10522
]
10523
},
10524
{
@@ -10538,7 +10538,7 @@
10538
"zh-chs": "删除{0}?",
10539
"zh-cht": "刪除{0}?",
10540
"xloc": [
10541
- "default-mobile.handlebars->9->275"
10541
+ "default-mobile.handlebars->9->276"
10542
]
10543
},
10544
{
@@ -10558,7 +10558,7 @@
10558
"zh-chs": "删除:“{0}”",
10559
"zh-cht": "刪除:“{0}”",
10560
"xloc": [
10561
- "default.handlebars->27->1612"
10561
+ "default.handlebars->27->1614"
10562
]
10563
},
10564
{
@@ -10578,7 +10578,7 @@
10578
"zh-chs": "删除:“{0}”,{1}个元素已删除",
10579
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10580
"xloc": [
10581
- "default.handlebars->27->1614"
10581
+ "default.handlebars->27->1616"
10582
]
10583
},
10584
{
@@ -10598,7 +10598,7 @@
10598
"zh-chs": "被拒绝",
10599
"zh-cht": "被拒絕",
10600
"xloc": [
10601
- "default.handlebars->27->816",
10601
+ "default.handlebars->27->818",
10602
"desktop.handlebars->3->8"
10603
]
10604
},
@@ -10689,25 +10689,25 @@
10689
"zh-cht": "描述",
10690
"xloc": [
10691
"default-mobile.handlebars->9->101",
10692
- "default-mobile.handlebars->9->221",
10692
"default-mobile.handlebars->9->222",
10694
- "default-mobile.handlebars->9->280",
10695
- "default-mobile.handlebars->9->340",
10696
- "default-mobile.handlebars->9->395",
10697
- "default-mobile.handlebars->9->408",
10698
- "default.handlebars->27->1271",
10699
- "default.handlebars->27->1308",
10700
- "default.handlebars->27->1395",
10701
- "default.handlebars->27->1811",
10702
- "default.handlebars->27->1821",
10703
- "default.handlebars->27->1822",
10704
- "default.handlebars->27->1863",
10705
- "default.handlebars->27->565",
10706
- "default.handlebars->27->566",
10693
+ "default-mobile.handlebars->9->223",
10694
+ "default-mobile.handlebars->9->281",
10695
+ "default-mobile.handlebars->9->341",
10696
+ "default-mobile.handlebars->9->396",
10697
+ "default-mobile.handlebars->9->409",
10698
+ "default.handlebars->27->1273",
10699
+ "default.handlebars->27->1310",
10700
+ "default.handlebars->27->1397",
10701
+ "default.handlebars->27->1814",
10702
+ "default.handlebars->27->1824",
10703
+ "default.handlebars->27->1825",
10704
+ "default.handlebars->27->1866",
10705
+ "default.handlebars->27->567",
10706
+ "default.handlebars->27->568",
10707
"default.handlebars->27->77",
10708
- "default.handlebars->27->811",
10709
- "default.handlebars->27->931",
10710
- "default.handlebars->27->941",
10708
+ "default.handlebars->27->813",
10709
+ "default.handlebars->27->933",
10710
+ "default.handlebars->27->943",
10711
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
10712
]
10713
},
@@ -10745,11 +10745,11 @@
10745
"zh-chs": "桌面",
10746
"zh-cht": "桌面",
10747
"xloc": [
10748
- "default-mobile.handlebars->9->256",
10749
- "default.handlebars->27->1401",
10750
- "default.handlebars->27->2007",
10751
- "default.handlebars->27->530",
10752
- "default.handlebars->27->856",
10748
+ "default-mobile.handlebars->9->257",
10749
+ "default.handlebars->27->1403",
10750
+ "default.handlebars->27->2010",
10751
+ "default.handlebars->27->532",
10752
+ "default.handlebars->27->858",
10753
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
10754
"default.handlebars->contextMenu->cxdesktop",
10755
"desktop.handlebars->3->24"
@@ -10792,10 +10792,10 @@
10792
"zh-chs": "桌面通知",
10793
"zh-cht": "桌面通知",
10794
"xloc": [
10795
- "default.handlebars->27->1322",
10796
- "default.handlebars->27->1826",
10797
- "default.handlebars->27->1913",
10798
- "default.handlebars->27->601"
10795
+ "default.handlebars->27->1324",
10796
+ "default.handlebars->27->1829",
10797
+ "default.handlebars->27->1916",
10798
+ "default.handlebars->27->603"
10799
]
10800
},
10801
{
@@ -10815,10 +10815,10 @@
10815
"zh-chs": "桌面提示",
10816
"zh-cht": "桌面提示",
10817
"xloc": [
10818
- "default.handlebars->27->1321",
10819
- "default.handlebars->27->1825",
10820
- "default.handlebars->27->1912",
10821
- "default.handlebars->27->600"
10818
+ "default.handlebars->27->1323",
10819
+ "default.handlebars->27->1828",
10820
+ "default.handlebars->27->1915",
10821
+ "default.handlebars->27->602"
10822
]
10823
},
10824
{
@@ -10838,10 +10838,10 @@
10838
"zh-chs": "桌面提示+工具栏",
10839
"zh-cht": "桌面提示+工具欄",
10840
"xloc": [
10841
- "default.handlebars->27->1319",
10842
- "default.handlebars->27->1823",
10843
- "default.handlebars->27->1910",
10844
- "default.handlebars->27->598"
10841
+ "default.handlebars->27->1321",
10842
+ "default.handlebars->27->1826",
10843
+ "default.handlebars->27->1913",
10844
+ "default.handlebars->27->600"
10845
]
10846
},
10847
{
@@ -10882,10 +10882,10 @@
10882
"zh-chs": "桌面工具栏",
10883
"zh-cht": "桌面工具欄",
10884
"xloc": [
10885
- "default.handlebars->27->1320",
10886
- "default.handlebars->27->1824",
10887
- "default.handlebars->27->1911",
10888
- "default.handlebars->27->599"
10885
+ "default.handlebars->27->1322",
10886
+ "default.handlebars->27->1827",
10887
+ "default.handlebars->27->1914",
10888
+ "default.handlebars->27->601"
10889
]
10890
},
10891
{
@@ -10905,7 +10905,7 @@
10905
"zh-chs": "桌面时段",
10906
"zh-cht": "桌面時段",
10907
"xloc": [
10908
- "default.handlebars->27->855"
10908
+ "default.handlebars->27->857"
10909
]
10910
},
10911
{
@@ -10946,7 +10946,7 @@
10946
"zh-chs": "细节",
10947
"zh-cht": "細節",
10948
"xloc": [
10949
- "default-mobile.handlebars->9->258",
10949
+ "default-mobile.handlebars->9->259",
10950
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
10951
"default.handlebars->contextMenu->cxdetails"
10952
]
@@ -10988,9 +10988,9 @@
10988
"zh-chs": "设备",
10989
"zh-cht": "裝置",
10990
"xloc": [
10991
- "default.handlebars->27->1424",
10992
- "default.handlebars->27->183",
10993
- "default.handlebars->27->1979",
10991
+ "default.handlebars->27->1426",
10992
+ "default.handlebars->27->184",
10993
+ "default.handlebars->27->1982",
10994
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
10995
]
10996
},
@@ -11011,8 +11011,8 @@
11011
"zh-chs": "设备指令",
11012
"zh-cht": "裝置指令",
11013
"xloc": [
11014
- "default-mobile.handlebars->9->265",
11015
- "default.handlebars->27->747"
11014
+ "default-mobile.handlebars->9->266",
11015
+ "default.handlebars->27->749"
11016
]
11017
},
11018
{
@@ -11039,14 +11039,14 @@
11039
"zh-chs": "设备组",
11040
"zh-cht": "裝置群",
11041
"xloc": [
11042
- "default.handlebars->27->1419",
11043
- "default.handlebars->27->1422",
11044
- "default.handlebars->27->1423",
11045
- "default.handlebars->27->1674",
11046
- "default.handlebars->27->1849",
11047
- "default.handlebars->27->1855",
11048
- "default.handlebars->27->1967",
11049
- "default.handlebars->27->2016"
11042
+ "default.handlebars->27->1421",
11043
+ "default.handlebars->27->1424",
11044
+ "default.handlebars->27->1425",
11045
+ "default.handlebars->27->1677",
11046
+ "default.handlebars->27->1852",
11047
+ "default.handlebars->27->1858",
11048
+ "default.handlebars->27->1970",
11049
+ "default.handlebars->27->2019"
11050
]
11051
},
11052
{
@@ -11066,8 +11066,8 @@
11066
"zh-chs": "设备组用户",
11067
"zh-cht": "裝置群用戶",
11068
"xloc": [
11069
- "default-mobile.handlebars->9->450",
11070
- "default.handlebars->27->1485"
11069
+ "default-mobile.handlebars->9->451",
11070
+ "default.handlebars->27->1487"
11071
]
11072
},
11073
{
@@ -11088,11 +11088,11 @@
11088
"zh-cht": "裝置群",
11089
"xloc": [
11090
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11091
- "default.handlebars->27->1690",
11092
- "default.handlebars->27->1796",
11093
- "default.handlebars->27->1836",
11094
- "default.handlebars->27->1907",
11095
- "default.handlebars->27->2051",
11091
+ "default.handlebars->27->1693",
11092
+ "default.handlebars->27->1799",
11093
+ "default.handlebars->27->1839",
11094
+ "default.handlebars->27->1910",
11095
+ "default.handlebars->27->2054",
11096
"default.handlebars->container->column_l->p2->p2info->7"
11097
]
11098
},
@@ -11113,7 +11113,7 @@
11113
"zh-chs": "设备信息导出",
11114
"zh-cht": "裝置訊息輸出",
11115
"xloc": [
11116
- "default.handlebars->27->495"
11116
+ "default.handlebars->27->497"
11117
]
11118
},
11119
{
@@ -11133,7 +11133,7 @@
11133
"zh-chs": "设备位置",
11134
"zh-cht": "裝置位置",
11135
"xloc": [
11136
- "default.handlebars->27->779"
11136
+ "default.handlebars->27->781"
11137
]
11138
},
11139
{
@@ -11153,7 +11153,7 @@
11153
"zh-chs": "设备消息",
11154
"zh-cht": "裝置訊息",
11155
"xloc": [
11156
- "default.handlebars->27->713"
11156
+ "default.handlebars->27->715"
11157
]
11158
},
11159
{
@@ -11173,10 +11173,10 @@
11173
"zh-chs": "设备名称",
11174
"zh-cht": "裝置名稱",
11175
"xloc": [
11176
- "default-mobile.handlebars->9->278",
11177
- "default.handlebars->27->2015",
11178
- "default.handlebars->27->286",
11179
- "default.handlebars->27->809",
11176
+ "default-mobile.handlebars->9->279",
11177
+ "default.handlebars->27->2018",
11178
+ "default.handlebars->27->288",
11179
+ "default.handlebars->27->811",
11180
"player.handlebars->3->9"
11181
]
11182
},
@@ -11197,8 +11197,8 @@
11197
"zh-chs": "设备通知",
11198
"zh-cht": "裝置通知",
11199
"xloc": [
11200
- "default.handlebars->27->489",
11201
- "default.handlebars->27->715"
11200
+ "default.handlebars->27->491",
11201
+ "default.handlebars->27->717"
11202
]
11203
},
11204
{
@@ -11218,7 +11218,7 @@
11218
"zh-chs": "设备提示",
11219
"zh-cht": "裝置吐司",
11220
"xloc": [
11221
- "default-mobile.handlebars->9->254"
11221
+ "default-mobile.handlebars->9->255"
11222
]
11223
},
11224
{
@@ -11238,8 +11238,8 @@
11238
"zh-chs": "设备连接。",
11239
"zh-cht": "裝置連接。",
11240
"xloc": [
11241
- "default.handlebars->27->1239",
11242
- "default.handlebars->27->1506"
11241
+ "default.handlebars->27->1241",
11242
+ "default.handlebars->27->1508"
11243
]
11244
},
11245
{
@@ -11259,8 +11259,8 @@
11259
"zh-chs": "设备断开连接。",
11260
"zh-cht": "裝置斷開連接。",
11261
"xloc": [
11262
- "default.handlebars->27->1240",
11263
- "default.handlebars->27->1507"
11262
+ "default.handlebars->27->1242",
11263
+ "default.handlebars->27->1509"
11264
]
11265
},
11266
{
@@ -11280,7 +11280,7 @@
11280
"zh-chs": "创建的设备组:{0}",
11281
"zh-cht": "設備組已創建:{0}",
11282
"xloc": [
11283
- "default.handlebars->27->1643"
11283
+ "default.handlebars->27->1645"
11284
]
11285
},
11286
{
@@ -11300,7 +11300,7 @@
11300
"zh-chs": "设备组已删除:{0}",
11301
"zh-cht": "設備組已刪除:{0}",
11302
"xloc": [
11303
- "default.handlebars->27->1644"
11303
+ "default.handlebars->27->1646"
11304
]
11305
},
11306
{
@@ -11320,7 +11320,7 @@
11320
"zh-chs": "设备组成员身份已更改:{0}",
11321
"zh-cht": "設備組成員身份已更改:{0}",
11322
"xloc": [
11323
- "default.handlebars->27->1645"
11323
+ "default.handlebars->27->1647"
11324
]
11325
},
11326
{
@@ -11340,7 +11340,7 @@
11340
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
11341
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
11342
"xloc": [
11343
- "default.handlebars->27->710"
11343
+ "default.handlebars->27->712"
11344
]
11345
},
11346
{
@@ -11360,7 +11360,7 @@
11360
"zh-chs": "设备组通知已更改",
11361
"zh-cht": "設備組通知已更改",
11362
"xloc": [
11363
- "default.handlebars->27->1640"
11363
+ "default.handlebars->27->1642"
11364
]
11365
},
11366
{
@@ -11380,7 +11380,7 @@
11380
"zh-chs": "未删除的设备组:{0}",
11381
"zh-cht": "未刪除的設備組:{0}",
11382
"xloc": [
11383
- "default.handlebars->27->1623"
11383
+ "default.handlebars->27->1625"
11384
]
11385
},
11386
{
@@ -11401,9 +11401,9 @@
11401
"zh-cht": "裝置由電池供電",
11402
"xloc": [
11403
"default-mobile.handlebars->9->157",
11404
- "default-mobile.handlebars->9->212",
11405
- "default.handlebars->27->208",
11406
- "default.handlebars->27->551"
11404
+ "default-mobile.handlebars->9->213",
11405
+ "default.handlebars->27->209",
11406
+ "default.handlebars->27->553"
11407
]
11408
},
11409
{
@@ -11423,7 +11423,7 @@
11423
"zh-chs": "检测到设备,但无法获得电源状态。",
11424
"zh-cht": "檢測到裝置,但無法獲得電源狀態。",
11425
"xloc": [
11426
- "default.handlebars->27->429"
11426
+ "default.handlebars->27->431"
11427
]
11428
},
11429
{
@@ -11443,8 +11443,8 @@
11443
"zh-chs": "设备正在休眠(S4)",
11444
"zh-cht": "裝置正在休眠(S4)",
11445
"xloc": [
11446
- "default-mobile.handlebars->9->196",
11447
- "default.handlebars->27->435"
11446
+ "default-mobile.handlebars->9->197",
11447
+ "default.handlebars->27->437"
11448
]
11449
},
11450
{
@@ -11464,8 +11464,8 @@
11464
"zh-chs": "设备处于深度睡眠状态(S3)",
11465
"zh-cht": "裝置處於深度睡眠狀態(S3)",
11466
"xloc": [
11467
- "default-mobile.handlebars->9->195",
11468
- "default.handlebars->27->434"
11467
+ "default-mobile.handlebars->9->196",
11468
+ "default.handlebars->27->436"
11469
]
11470
},
11471
{
@@ -11485,7 +11485,7 @@
11485
"zh-chs": "设备处于深度睡眠状态(S3)。",
11486
"zh-cht": "裝置處於深度睡眠狀態(S3)。",
11487
"xloc": [
11488
- "default.handlebars->27->423"
11488
+ "default.handlebars->27->425"
11489
]
11490
},
11491
{
@@ -11505,7 +11505,7 @@
11505
"zh-chs": "设备处于休眠状态(S4)。",
11506
"zh-cht": "裝置處於休眠狀態(S4)。",
11507
"xloc": [
11508
- "default.handlebars->27->425"
11508
+ "default.handlebars->27->427"
11509
]
11510
},
11511
{
@@ -11525,7 +11525,7 @@
11525
"zh-chs": "设备处于关机状态(S5)。",
11526
"zh-cht": "裝置處於關機狀態(S5)。",
11527
"xloc": [
11528
- "default.handlebars->27->427"
11528
+ "default.handlebars->27->429"
11529
]
11530
},
11531
{
@@ -11545,8 +11545,8 @@
11545
"zh-chs": "设备处于睡眠状态(S1)",
11546
"zh-cht": "裝置處於睡眠狀態(S1)",
11547
"xloc": [
11548
- "default-mobile.handlebars->9->193",
11549
- "default.handlebars->27->432"
11548
+ "default-mobile.handlebars->9->194",
11549
+ "default.handlebars->27->434"
11550
]
11551
},
11552
{
@@ -11566,7 +11566,7 @@
11566
"zh-chs": "设备处于睡眠状态(S1)。",
11567
"zh-cht": "裝置處於睡眠狀態(S1)。",
11568
"xloc": [
11569
- "default.handlebars->27->419"
11569
+ "default.handlebars->27->421"
11570
]
11571
},
11572
{
@@ -11586,8 +11586,8 @@
11586
"zh-chs": "设备处于睡眠状态(S2)",
11587
"zh-cht": "裝置處於睡眠狀態(S2)",
11588
"xloc": [
11589
- "default-mobile.handlebars->9->194",
11590
- "default.handlebars->27->433"
11589
+ "default-mobile.handlebars->9->195",
11590
+ "default.handlebars->27->435"
11591
]
11592
},
11593
{
@@ -11607,7 +11607,7 @@
11607
"zh-chs": "设备处于睡眠状态(S2)。",
11608
"zh-cht": "裝置處於睡眠狀態(S2)。",
11609
"xloc": [
11610
- "default.handlebars->27->421"
11610
+ "default.handlebars->27->423"
11611
]
11612
},
11613
{
@@ -11627,8 +11627,8 @@
11627
"zh-chs": "设备处于软关机状态(S5)",
11628
"zh-cht": "裝置處於軟關機狀態(S5)",
11629
"xloc": [
11630
- "default-mobile.handlebars->9->197",
11631
- "default.handlebars->27->436"
11630
+ "default-mobile.handlebars->9->198",
11631
+ "default.handlebars->27->438"
11632
]
11633
},
11634
{
@@ -11649,9 +11649,9 @@
11649
"zh-cht": "裝置已插入",
11650
"xloc": [
11651
"default-mobile.handlebars->9->156",
11652
- "default-mobile.handlebars->9->211",
11653
- "default.handlebars->27->207",
11654
- "default.handlebars->27->550"
11652
+ "default-mobile.handlebars->9->212",
11653
+ "default.handlebars->27->208",
11654
+ "default.handlebars->27->552"
11655
]
11656
},
11657
{
@@ -11671,8 +11671,8 @@
11671
"zh-chs": "设备已连接电源",
11672
"zh-cht": "裝置已連接電源",
11673
"xloc": [
11674
- "default-mobile.handlebars->9->192",
11675
- "default.handlebars->27->431"
11674
+ "default-mobile.handlebars->9->193",
11675
+ "default.handlebars->27->433"
11676
]
11677
},
11678
{
@@ -11692,7 +11692,7 @@
11692
"zh-chs": "设备已连接电源。",
11693
"zh-cht": "裝置已連接電源。",
11694
"xloc": [
11695
- "default.handlebars->27->417"
11695
+ "default.handlebars->27->419"
11696
]
11697
},
11698
{
@@ -11712,8 +11712,8 @@
11712
"zh-chs": "设备存在,但无法确定电源状态",
11713
"zh-cht": "裝置存在,但無法確定電源狀態",
11714
"xloc": [
11715
- "default-mobile.handlebars->9->198",
11716
- "default.handlebars->27->437"
11715
+ "default-mobile.handlebars->9->199",
11716
+ "default.handlebars->27->439"
11717
]
11718
},
11719
{
@@ -11733,7 +11733,7 @@
11733
"zh-chs": "设备名称",
11734
"zh-cht": "裝置名稱",
11735
"xloc": [
11736
- "default.handlebars->27->542"
11736
+ "default.handlebars->27->544"
11737
]
11738
},
11739
{
@@ -11753,7 +11753,7 @@
11753
"zh-chs": "设备通知",
11754
"zh-cht": "設備通知",
11755
"xloc": [
11756
- "default.handlebars->27->463"
11756
+ "default.handlebars->27->465"
11757
]
11758
},
11759
{
@@ -11773,7 +11773,7 @@
11773
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11774
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11775
"xloc": [
11776
- "default.handlebars->27->1625"
11776
+ "default.handlebars->27->1627"
11777
]
11778
},
11779
{
@@ -11810,8 +11810,8 @@
11810
"zh-chs": "设备",
11811
"zh-cht": "裝置",
11812
"xloc": [
11813
- "default.handlebars->27->1797",
11814
- "default.handlebars->27->1837"
11813
+ "default.handlebars->27->1800",
11814
+ "default.handlebars->27->1840"
11815
]
11816
},
11817
{
@@ -11831,7 +11831,7 @@
11831
"zh-chs": "已禁用",
11832
"zh-cht": "已禁用",
11833
"xloc": [
11834
- "default.handlebars->27->593"
11834
+ "default.handlebars->27->595"
11835
]
11836
},
11837
{
@@ -11851,7 +11851,7 @@
11851
"zh-chs": "禁用的电子邮件两因素身份验证",
11852
"zh-cht": "禁用的電子郵件兩因素身份驗證",
11853
"xloc": [
11854
- "default.handlebars->27->1656"
11854
+ "default.handlebars->27->1658"
11855
]
11856
},
11857
{
@@ -11871,10 +11871,10 @@
11871
"zh-chs": "断线",
11872
"zh-cht": "斷線",
11873
"xloc": [
11874
- "default-mobile.handlebars->9->292",
11874
+ "default-mobile.handlebars->9->293",
11875
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11876
- "default.handlebars->27->1332",
11877
- "default.handlebars->27->872",
11876
+ "default.handlebars->27->1334",
11877
+ "default.handlebars->27->874",
11878
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11879
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
11880
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -11921,10 +11921,10 @@
11921
"default-mobile.handlebars->9->1",
11922
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
11923
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
11924
- "default.handlebars->27->219",
11925
- "default.handlebars->27->238",
11926
- "default.handlebars->27->241",
11927
- "default.handlebars->27->267",
11924
+ "default.handlebars->27->220",
11925
+ "default.handlebars->27->239",
11926
+ "default.handlebars->27->242",
11927
+ "default.handlebars->27->269",
11928
"default.handlebars->27->8",
11929
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
11930
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -11951,7 +11951,7 @@
11951
"zh-chs": "在远程设备上显示一个消息框。",
11952
"zh-cht": "在遠程裝置上顯示一個訊息框。",
11953
"xloc": [
11954
- "default.handlebars->27->714"
11954
+ "default.handlebars->27->716"
11955
]
11956
},
11957
{
@@ -11991,7 +11991,7 @@
11991
"zh-chs": "在远程设备上显示短信",
11992
"zh-cht": "在遠程裝置上顯示短信",
11993
"xloc": [
11994
- "default.handlebars->27->629"
11994
+ "default.handlebars->27->631"
11995
]
11996
},
11997
{
@@ -12011,7 +12011,7 @@
12011
"zh-chs": "显示设备组名称",
12012
"zh-cht": "顯示裝置群名稱",
12013
"xloc": [
12014
- "default.handlebars->27->1238"
12014
+ "default.handlebars->27->1240"
12015
]
12016
},
12017
{
@@ -12031,7 +12031,7 @@
12031
"zh-chs": "显示名称",
12032
"zh-cht": "顯示名稱",
12033
"xloc": [
12034
- "default.handlebars->27->841"
12034
+ "default.handlebars->27->843"
12035
]
12036
},
12037
{
@@ -12051,7 +12051,7 @@
12051
"zh-chs": "显示公共连结",
12052
"zh-cht": "顯示公共鏈結",
12053
"xloc": [
12054
- "default.handlebars->27->1526"
12054
+ "default.handlebars->27->1528"
12055
]
12056
},
12057
{
@@ -12071,7 +12071,7 @@
12071
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12072
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12073
"xloc": [
12074
- "default.handlebars->27->1585"
12074
+ "default.handlebars->27->1587"
12075
]
12076
},
12077
{
@@ -12091,7 +12091,7 @@
12091
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12092
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12093
"xloc": [
12094
- "default.handlebars->27->1593"
12094
+ "default.handlebars->27->1595"
12095
]
12096
},
12097
{
@@ -12111,7 +12111,7 @@
12111
"zh-chs": "什么都不做",
12112
"zh-cht": "什麼都不做",
12113
"xloc": [
12114
- "default.handlebars->27->1376"
12114
+ "default.handlebars->27->1378"
12115
]
12116
},
12117
{
@@ -12131,10 +12131,10 @@
12131
"zh-chs": "域",
12132
"zh-cht": "域",
12133
"xloc": [
12134
- "default.handlebars->27->1761",
12135
- "default.handlebars->27->1809",
12136
- "default.handlebars->27->1818",
12137
- "default.handlebars->27->1886",
12134
+ "default.handlebars->27->1764",
12135
+ "default.handlebars->27->1812",
12136
+ "default.handlebars->27->1821",
12137
+ "default.handlebars->27->1889",
12138
"mstsc.handlebars->main->1->3->1->2->1->0",
12139
"mstsc.handlebars->main->1->3->1->2->3"
12140
]
@@ -12156,8 +12156,8 @@
12156
"zh-chs": "不要配置",
12157
"zh-cht": "不要配置",
12158
"xloc": [
12159
- "default.handlebars->27->1380",
12160
- "default.handlebars->27->1385"
12159
+ "default.handlebars->27->1382",
12160
+ "default.handlebars->27->1387"
12161
]
12162
},
12163
{
@@ -12177,7 +12177,7 @@
12177
"zh-chs": "不要连接到服务器",
12178
"zh-cht": "不要連接到伺服器",
12179
"xloc": [
12180
- "default.handlebars->27->1381"
12180
+ "default.handlebars->27->1383"
12181
]
12182
},
12183
{
@@ -12296,8 +12296,8 @@
12296
"zh-chs": "下载档案",
12297
"zh-cht": "下載檔案",
12298
"xloc": [
12299
- "default-mobile.handlebars->9->322",
12300
- "default.handlebars->27->905"
12299
+ "default-mobile.handlebars->9->323",
12300
+ "default.handlebars->27->907"
12301
]
12302
},
12303
{
@@ -12317,7 +12317,7 @@
12317
"zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。",
12318
"zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
12319
"xloc": [
12320
- "default.handlebars->27->236"
12320
+ "default.handlebars->27->237"
12321
]
12322
},
12323
{
@@ -12337,7 +12337,7 @@
12337
"zh-chs": "下载MeshCmd",
12338
"zh-cht": "下載MeshCmd",
12339
"xloc": [
12340
- "default.handlebars->27->801"
12340
+ "default.handlebars->27->803"
12341
]
12342
},
12343
{
@@ -12357,7 +12357,7 @@
12357
"zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。",
12358
"zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。",
12359
"xloc": [
12360
- "default.handlebars->27->234"
12360
+ "default.handlebars->27->235"
12361
]
12362
},
12363
{
@@ -12397,7 +12397,7 @@
12397
"zh-chs": "下载报告",
12398
"zh-cht": "下載報告",
12399
"xloc": [
12400
- "default.handlebars->27->1679",
12400
+ "default.handlebars->27->1682",
12401
"default.handlebars->container->column_l->p3->3->1->0->3"
12402
]
12403
},
@@ -12418,7 +12418,7 @@
12418
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
12419
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
12420
"xloc": [
12421
- "default.handlebars->27->794"
12421
+ "default.handlebars->27->796"
12422
]
12423
},
12424
{
@@ -12498,7 +12498,7 @@
12498
"zh-chs": "下载电源事件",
12499
"zh-cht": "下載電源事件",
12500
"xloc": [
12501
- "default.handlebars->27->753"
12501
+ "default.handlebars->27->755"
12502
]
12503
},
12504
{
@@ -12578,7 +12578,7 @@
12578
"zh-chs": "使用以下一种档案格式下载设备列表。",
12579
"zh-cht": "使用以下一種檔案格式下載裝置列表。",
12580
"xloc": [
12581
- "default.handlebars->27->490"
12581
+ "default.handlebars->27->492"
12582
]
12583
},
12584
{
@@ -12598,7 +12598,7 @@
12598
"zh-chs": "使用以下一种档案格式下载事件列表。",
12599
"zh-cht": "使用以下一種檔案格式下載事件列表。",
12600
"xloc": [
12601
- "default.handlebars->27->1680"
12601
+ "default.handlebars->27->1683"
12602
]
12603
},
12604
{
@@ -12618,7 +12618,7 @@
12618
"zh-chs": "使用以下一种档案格式下载用户列表。",
12619
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
12620
"xloc": [
12621
- "default.handlebars->27->1745"
12621
+ "default.handlebars->27->1748"
12622
]
12623
},
12624
{
@@ -12699,7 +12699,7 @@
12699
"zh-chs": "下载:“{0}”",
12700
"zh-cht": "下載:“{0}”",
12701
"xloc": [
12702
- "default.handlebars->27->1616"
12702
+ "default.handlebars->27->1618"
12703
]
12704
},
12705
{
@@ -12739,7 +12739,7 @@
12739
"zh-chs": "代理重复",
12740
"zh-cht": "代理重複",
12741
"xloc": [
12742
- "default.handlebars->27->2047"
12742
+ "default.handlebars->27->2050"
12743
]
12744
},
12745
{
@@ -12779,7 +12779,7 @@
12779
"zh-chs": "复制用户组",
12780
"zh-cht": "複製用戶群",
12781
"xloc": [
12782
- "default.handlebars->27->1813"
12782
+ "default.handlebars->27->1816"
12783
]
12784
},
12785
{
@@ -12816,8 +12816,8 @@
12816
"zh-chs": "持续时间",
12817
"zh-cht": "持續時間",
12818
"xloc": [
12819
- "default.handlebars->27->2001",
12820
- "default.handlebars->27->2021",
12819
+ "default.handlebars->27->2004",
12820
+ "default.handlebars->27->2024",
12821
"player.handlebars->3->2"
12822
]
12823
},
@@ -12838,7 +12838,7 @@
12838
"zh-chs": "在激活期间,代理将有权取得管理员密码信息。",
12839
"zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。",
12840
"xloc": [
12841
- "default.handlebars->27->1390"
12841
+ "default.handlebars->27->1392"
12842
]
12843
},
12844
{
@@ -12858,7 +12858,7 @@
12858
"zh-chs": "荷兰文(比利时)",
12859
"zh-cht": "荷蘭文(比利時)",
12860
"xloc": [
12861
- "default.handlebars->27->1078"
12861
+ "default.handlebars->27->1080"
12862
]
12863
},
12864
{
@@ -12878,7 +12878,7 @@
12878
"zh-chs": "荷兰文(标准)",
12879
"zh-cht": "荷蘭文(標準)",
12880
"xloc": [
12881
- "default.handlebars->27->1077"
12881
+ "default.handlebars->27->1079"
12882
]
12883
},
12884
{
@@ -13147,8 +13147,8 @@
13147
"zh-chs": "编辑设备",
13148
"zh-cht": "編輯裝置",
13149
"xloc": [
13150
- "default-mobile.handlebars->9->283",
13151
- "default.handlebars->27->814"
13150
+ "default-mobile.handlebars->9->284",
13151
+ "default.handlebars->27->816"
13152
]
13153
},
13154
{
@@ -13168,13 +13168,13 @@
13168
"zh-chs": "编辑设备组",
13169
"zh-cht": "編輯裝置群",
13170
"xloc": [
13171
- "default-mobile.handlebars->9->409",
13172
- "default-mobile.handlebars->9->411",
13173
- "default-mobile.handlebars->9->429",
13174
- "default.handlebars->27->1396",
13175
- "default.handlebars->27->1428",
13176
- "default.handlebars->27->1451",
13177
- "default.handlebars->27->1463"
13171
+ "default-mobile.handlebars->9->410",
13172
+ "default-mobile.handlebars->9->412",
13173
+ "default-mobile.handlebars->9->430",
13174
+ "default.handlebars->27->1398",
13175
+ "default.handlebars->27->1430",
13176
+ "default.handlebars->27->1453",
13177
+ "default.handlebars->27->1465"
13178
]
13179
},
13180
{
@@ -13194,7 +13194,7 @@
13194
"zh-chs": "编辑设备组功能",
13195
"zh-cht": "編輯裝置群功能",
13196
"xloc": [
13197
- "default.handlebars->27->1414"
13197
+ "default.handlebars->27->1416"
13198
]
13199
},
13200
{
@@ -13214,8 +13214,8 @@
13214
"zh-chs": "编辑设备组权限",
13215
"zh-cht": "編輯裝置群權限",
13216
"xloc": [
13217
- "default.handlebars->27->1448",
13218
- "default.handlebars->27->1460"
13217
+ "default.handlebars->27->1450",
13218
+ "default.handlebars->27->1462"
13219
]
13220
},
13221
{
@@ -13235,7 +13235,7 @@
13235
"zh-chs": "编辑设备组用户同意",
13236
"zh-cht": "編輯裝置群用戶同意",
13237
"xloc": [
13238
- "default.handlebars->27->1397"
13238
+ "default.handlebars->27->1399"
13239
]
13240
},
13241
{
@@ -13255,8 +13255,8 @@
13255
"zh-chs": "编辑设备笔记",
13256
"zh-cht": "編輯裝置筆記",
13257
"xloc": [
13258
- "default-mobile.handlebars->9->423",
13259
- "default.handlebars->27->1441"
13258
+ "default-mobile.handlebars->9->424",
13259
+ "default.handlebars->27->1443"
13260
]
13261
},
13262
{
@@ -13276,8 +13276,8 @@
13276
"zh-chs": "编辑设备权限",
13277
"zh-cht": "編輯裝置權限",
13278
"xloc": [
13279
- "default.handlebars->27->1453",
13280
- "default.handlebars->27->1455"
13279
+ "default.handlebars->27->1455",
13280
+ "default.handlebars->27->1457"
13281
]
13282
},
13283
{
@@ -13297,7 +13297,7 @@
13297
"zh-chs": "编辑设备标签",
13298
"zh-cht": "編輯裝置標籤",
13299
"xloc": [
13300
- "default.handlebars->27->484"
13300
+ "default.handlebars->27->486"
13301
]
13302
},
13303
{
@@ -13317,7 +13317,7 @@
13317
"zh-chs": "编辑设备用户同意",
13318
"zh-cht": "編輯裝置用戶同意",
13319
"xloc": [
13320
- "default.handlebars->27->1399"
13320
+ "default.handlebars->27->1401"
13321
]
13322
},
13323
{
@@ -13337,7 +13337,7 @@
13337
"zh-chs": "编辑群组",
13338
"zh-cht": "編輯群組",
13339
"xloc": [
13340
- "default.handlebars->27->690"
13340
+ "default.handlebars->27->692"
13341
]
13342
},
13343
{
@@ -13357,10 +13357,10 @@
13357
"zh-chs": "编辑英特尔®AMT凭证",
13358
"zh-cht": "編輯Intel® AMT憑證",
13359
"xloc": [
13360
- "default-mobile.handlebars->9->273",
13361
- "default.handlebars->27->580",
13362
- "default.handlebars->27->583",
13363
- "default.handlebars->27->760"
13360
+ "default-mobile.handlebars->9->274",
13361
+ "default.handlebars->27->582",
13362
+ "default.handlebars->27->585",
13363
+ "default.handlebars->27->762"
13364
]
13365
},
13366
{
@@ -13380,8 +13380,8 @@
13380
"zh-chs": "编辑笔记",
13381
"zh-cht": "編輯筆記",
13382
"xloc": [
13383
- "default-mobile.handlebars->9->436",
13384
- "default.handlebars->27->1470"
13383
+ "default-mobile.handlebars->9->437",
13384
+ "default.handlebars->27->1472"
13385
]
13386
},
13387
{
@@ -13401,7 +13401,7 @@
13401
"zh-chs": "编辑用户同意",
13402
"zh-cht": "編輯用戶同意",
13403
"xloc": [
13404
- "default.handlebars->27->1398"
13404
+ "default.handlebars->27->1400"
13405
]
13406
},
13407
{
@@ -13421,7 +13421,7 @@
13421
"zh-chs": "编辑用户设备组权限",
13422
"zh-cht": "編輯用戶裝置群權限",
13423
"xloc": [
13424
- "default.handlebars->27->1461"
13424
+ "default.handlebars->27->1463"
13425
]
13426
},
13427
{
@@ -13441,7 +13441,7 @@
13441
"zh-chs": "编辑用户设备权限",
13442
"zh-cht": "編輯用戶裝置權限",
13443
"xloc": [
13444
- "default.handlebars->27->1456"
13444
+ "default.handlebars->27->1458"
13445
]
13446
},
13447
{
@@ -13461,7 +13461,7 @@
13461
"zh-chs": "编辑用户组",
13462
"zh-cht": "編輯用戶群",
13463
"xloc": [
13464
- "default.handlebars->27->1864"
13464
+ "default.handlebars->27->1867"
13465
]
13466
},
13467
{
@@ -13481,13 +13481,13 @@
13481
"zh-chs": "编辑用户组设备权限",
13482
"zh-cht": "編輯用戶群裝置權限",
13483
"xloc": [
13484
- "default.handlebars->27->1458"
13484
+ "default.handlebars->27->1460"
13485
]
13486
},
13487
{
13488
"en": "Edit User Group User Consent",
13489
"xloc": [
13490
- "default.handlebars->27->1400"
13490
+ "default.handlebars->27->1402"
13491
]
13492
},
13493
{
@@ -13528,7 +13528,7 @@
13528
"zh-chs": "编辑标签",
13529
"zh-cht": "編輯標籤",
13530
"xloc": [
13531
- "default.handlebars->27->462"
13531
+ "default.handlebars->27->464"
13532
]
13533
},
13534
{
@@ -13549,12 +13549,12 @@
13549
"zh-cht": "電郵",
13550
"xloc": [
13551
"default-mobile.handlebars->9->78",
13552
- "default.handlebars->27->1763",
13553
- "default.handlebars->27->1890",
13554
- "default.handlebars->27->1892",
13555
- "default.handlebars->27->1932",
13556
- "default.handlebars->27->1948",
13557
- "default.handlebars->27->336",
13552
+ "default.handlebars->27->1766",
13553
+ "default.handlebars->27->1893",
13554
+ "default.handlebars->27->1895",
13555
+ "default.handlebars->27->1935",
13556
+ "default.handlebars->27->1951",
13557
+ "default.handlebars->27->338",
13558
"login-mobile.handlebars->5->42",
13559
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
13560
"login.handlebars->5->43",
@@ -13586,7 +13586,7 @@
13586
"zh-cht": "電郵地址變更",
13587
"xloc": [
13588
"default-mobile.handlebars->9->79",
13589
- "default.handlebars->27->1247"
13589
+ "default.handlebars->27->1249"
13590
]
13591
},
13592
{
@@ -13607,7 +13607,7 @@
13607
"zh-cht": "電郵認證",
13608
"xloc": [
13609
"default-mobile.handlebars->9->68",
13610
- "default.handlebars->27->1015"
13610
+ "default.handlebars->27->1017"
13611
]
13612
},
13613
{
@@ -13667,7 +13667,7 @@
13667
"zh-cht": "電郵驗證",
13668
"xloc": [
13669
"default-mobile.handlebars->9->77",
13670
- "default.handlebars->27->1245"
13670
+ "default.handlebars->27->1247"
13671
]
13672
},
13673
{
@@ -13687,7 +13687,7 @@
13687
"zh-chs": "电邮邀请",
13688
"zh-cht": "電郵邀請",
13689
"xloc": [
13690
- "default.handlebars->27->333"
13690
+ "default.handlebars->27->335"
13691
]
13692
},
13693
{
@@ -13707,7 +13707,7 @@
13707
"zh-chs": "电邮未验证",
13708
"zh-cht": "電郵未驗證",
13709
"xloc": [
13710
- "default.handlebars->27->1709"
13710
+ "default.handlebars->27->1712"
13711
]
13712
},
13713
{
@@ -13727,8 +13727,8 @@
13727
"zh-chs": "电邮已验证",
13728
"zh-cht": "電郵已驗證",
13729
"xloc": [
13730
- "default.handlebars->27->1710",
13731
- "default.handlebars->27->1884"
13730
+ "default.handlebars->27->1713",
13731
+ "default.handlebars->27->1887"
13732
]
13733
},
13734
{
@@ -13748,7 +13748,7 @@
13748
"zh-chs": "电邮已验证。",
13749
"zh-cht": "電郵已驗證。",
13750
"xloc": [
13751
- "default.handlebars->27->1769"
13751
+ "default.handlebars->27->1772"
13752
]
13753
},
13754
{
@@ -13768,7 +13768,7 @@
13768
"zh-chs": "电邮未验证",
13769
"zh-cht": "電郵未驗證",
13770
"xloc": [
13771
- "default.handlebars->27->1885"
13771
+ "default.handlebars->27->1888"
13772
]
13773
},
13774
{
@@ -13832,7 +13832,7 @@
13832
"zh-chs": "已通过电邮验证,并且需要重置密码。",
13833
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13834
"xloc": [
13835
- "default.handlebars->27->1770"
13835
+ "default.handlebars->27->1773"
13836
]
13837
},
13838
{
@@ -13852,7 +13852,7 @@
13852
"zh-chs": "电邮/短信流量",
13853
"zh-cht": "電郵/短信流量",
13854
"xloc": [
13855
- "default.handlebars->27->2089"
13855
+ "default.handlebars->27->2092"
13856
]
13857
},
13858
{
@@ -13898,7 +13898,7 @@
13898
"zh-chs": "启用邀请代码",
13899
"zh-cht": "啟用邀請代碼",
13900
"xloc": [
13901
- "default.handlebars->27->1491"
13901
+ "default.handlebars->27->1493"
13902
]
13903
},
13904
{
@@ -13939,7 +13939,7 @@
13939
"zh-cht": "啟用電郵二因子鑑別。",
13940
"xloc": [
13941
"default-mobile.handlebars->9->70",
13942
- "default.handlebars->27->1017"
13942
+ "default.handlebars->27->1019"
13943
]
13944
},
13945
{
@@ -13979,7 +13979,7 @@
13979
"zh-chs": "已启用",
13980
"zh-cht": "已啟用",
13981
"xloc": [
13982
- "default.handlebars->27->2023"
13982
+ "default.handlebars->27->2026"
13983
]
13984
},
13985
{
@@ -13999,7 +13999,7 @@
13999
"zh-chs": "启用电子邮件两因素身份验证",
14000
"zh-cht": "啟用電子郵件兩因素身份驗證",
14001
"xloc": [
14002
- "default.handlebars->27->1655"
14002
+ "default.handlebars->27->1657"
14003
]
14004
},
14005
{
@@ -14039,7 +14039,7 @@
14039
"zh-chs": "时间结束",
14040
"zh-cht": "時間結束",
14041
"xloc": [
14042
- "default.handlebars->27->2020"
14042
+ "default.handlebars->27->2023"
14043
]
14044
},
14045
{
@@ -14059,7 +14059,7 @@
14059
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14060
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14061
"xloc": [
14062
- "default.handlebars->27->1578"
14062
+ "default.handlebars->27->1580"
14063
]
14064
},
14065
{
@@ -14079,7 +14079,7 @@
14079
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14080
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14081
"xloc": [
14082
- "default.handlebars->27->1579"
14082
+ "default.handlebars->27->1581"
14083
]
14084
},
14085
{
@@ -14099,7 +14099,7 @@
14099
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14100
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14101
"xloc": [
14102
- "default.handlebars->27->1576"
14102
+ "default.handlebars->27->1578"
14103
]
14104
},
14105
{
@@ -14119,7 +14119,7 @@
14119
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14120
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14121
"xloc": [
14122
- "default.handlebars->27->1577"
14122
+ "default.handlebars->27->1579"
14123
]
14124
},
14125
{
@@ -14139,7 +14139,7 @@
14139
"zh-chs": "英文",
14140
"zh-cht": "英文",
14141
"xloc": [
14142
- "default.handlebars->27->1079"
14142
+ "default.handlebars->27->1081"
14143
]
14144
},
14145
{
@@ -14159,7 +14159,7 @@
14159
"zh-chs": "英文(澳洲)",
14160
"zh-cht": "英文(澳洲)",
14161
"xloc": [
14162
- "default.handlebars->27->1080"
14162
+ "default.handlebars->27->1082"
14163
]
14164
},
14165
{
@@ -14179,7 +14179,7 @@
14179
"zh-chs": "英文(伯利茲)",
14180
"zh-cht": "英文(伯利茲)",
14181
"xloc": [
14182
- "default.handlebars->27->1081"
14182
+ "default.handlebars->27->1083"
14183
]
14184
},
14185
{
@@ -14199,7 +14199,7 @@
14199
"zh-chs": "英文(加拿大)",
14200
"zh-cht": "英文(加拿大)",
14201
"xloc": [
14202
- "default.handlebars->27->1082"
14202
+ "default.handlebars->27->1084"
14203
]
14204
},
14205
{
@@ -14219,7 +14219,7 @@
14219
"zh-chs": "英文(爱尔兰)",
14220
"zh-cht": "英文(愛爾蘭)",
14221
"xloc": [
14222
- "default.handlebars->27->1083"
14222
+ "default.handlebars->27->1085"
14223
]
14224
},
14225
{
@@ -14239,7 +14239,7 @@
14239
"zh-chs": "英文(牙买加)",
14240
"zh-cht": "英文(牙買加)",
14241
"xloc": [
14242
- "default.handlebars->27->1084"
14242
+ "default.handlebars->27->1086"
14243
]
14244
},
14245
{
@@ -14259,7 +14259,7 @@
14259
"zh-chs": "英文(纽西兰)",
14260
"zh-cht": "英文(紐西蘭)",
14261
"xloc": [
14262
- "default.handlebars->27->1085"
14262
+ "default.handlebars->27->1087"
14263
]
14264
},
14265
{
@@ -14279,7 +14279,7 @@
14279
"zh-chs": "英文(菲律宾)",
14280
"zh-cht": "英文(菲律賓)",
14281
"xloc": [
14282
- "default.handlebars->27->1086"
14282
+ "default.handlebars->27->1088"
14283
]
14284
},
14285
{
@@ -14299,7 +14299,7 @@
14299
"zh-chs": "英语(南非)",
14300
"zh-cht": "英語(南非)",
14301
"xloc": [
14302
- "default.handlebars->27->1087"
14302
+ "default.handlebars->27->1089"
14303
]
14304
},
14305
{
@@ -14319,7 +14319,7 @@
14319
"zh-chs": "英文(特立尼达和多巴哥)",
14320
"zh-cht": "英文(特立尼達和多巴哥)",
14321
"xloc": [
14322
- "default.handlebars->27->1088"
14322
+ "default.handlebars->27->1090"
14323
]
14324
},
14325
{
@@ -14339,7 +14339,7 @@
14339
"zh-chs": "英文(英国)",
14340
"zh-cht": "英文(英國)",
14341
"xloc": [
14342
- "default.handlebars->27->1089"
14342
+ "default.handlebars->27->1091"
14343
]
14344
},
14345
{
@@ -14359,7 +14359,7 @@
14359
"zh-chs": "美国英文",
14360
"zh-cht": "美國英語",
14361
"xloc": [
14362
- "default.handlebars->27->1090"
14362
+ "default.handlebars->27->1092"
14363
]
14364
},
14365
{
@@ -14379,7 +14379,7 @@
14379
"zh-chs": "英文(津巴布韦)",
14380
"zh-cht": "英文(津巴布韋)",
14381
"xloc": [
14382
- "default.handlebars->27->1091"
14382
+ "default.handlebars->27->1093"
14383
]
14384
},
14385
{
@@ -14399,8 +14399,8 @@
14399
"zh-chs": "输入",
14400
"zh-cht": "輸入",
14401
"xloc": [
14402
- "default.handlebars->27->1273",
14403
- "default.handlebars->27->1274"
14402
+ "default.handlebars->27->1275",
14403
+ "default.handlebars->27->1276"
14404
]
14405
},
14406
{
@@ -14420,7 +14420,7 @@
14420
"zh-chs": "输入管理领域名称的逗号分隔列表。",
14421
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14422
"xloc": [
14423
- "default.handlebars->27->1774"
14423
+ "default.handlebars->27->1777"
14424
]
14425
},
14426
{
@@ -14440,7 +14440,7 @@
14440
"zh-chs": "输入IP地址范围以扫描英特尔AMT设备。",
14441
"zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。",
14442
"xloc": [
14443
- "default.handlebars->27->301"
14443
+ "default.handlebars->27->303"
14444
]
14445
},
14446
{
@@ -14460,7 +14460,7 @@
14460
"zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。",
14461
"zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
14462
"xloc": [
14463
- "default.handlebars->27->835",
14463
+ "default.handlebars->27->837",
14464
"desktop.handlebars->3->22"
14465
]
14466
},
@@ -14523,7 +14523,7 @@
14523
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14524
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14525
"xloc": [
14526
- "default.handlebars->27->1012"
14526
+ "default.handlebars->27->1014"
14527
]
14528
},
14529
{
@@ -14583,7 +14583,7 @@
14583
"zh-chs": "世界文",
14584
"zh-cht": "世界語",
14585
"xloc": [
14586
- "default.handlebars->27->1092"
14586
+ "default.handlebars->27->1094"
14587
]
14588
},
14589
{
@@ -14603,7 +14603,7 @@
14603
"zh-chs": "爱沙尼亚文",
14604
"zh-cht": "愛沙尼亞語",
14605
"xloc": [
14606
- "default.handlebars->27->1093"
14606
+ "default.handlebars->27->1095"
14607
]
14608
},
14609
{
@@ -14623,7 +14623,7 @@
14623
"zh-chs": "事件详情",
14624
"zh-cht": "事件詳情",
14625
"xloc": [
14626
- "default.handlebars->27->918"
14626
+ "default.handlebars->27->920"
14627
]
14628
},
14629
{
@@ -14643,7 +14643,7 @@
14643
"zh-chs": "事件列表输出",
14644
"zh-cht": "事件列表輸出",
14645
"xloc": [
14646
- "default.handlebars->27->1685"
14646
+ "default.handlebars->27->1688"
14647
]
14648
},
14649
{
@@ -14728,8 +14728,8 @@
14728
"zh-chs": "到期时间",
14729
"zh-cht": "到期時間",
14730
"xloc": [
14731
- "default.handlebars->27->185",
14732
- "default.handlebars->27->733"
14731
+ "default.handlebars->27->186",
14732
+ "default.handlebars->27->735"
14733
]
14734
},
14735
{
@@ -14769,7 +14769,7 @@
14769
"zh-chs": "输出设备信息",
14770
"zh-cht": "輸出裝置訊息",
14771
"xloc": [
14772
- "default.handlebars->27->461"
14772
+ "default.handlebars->27->463"
14773
]
14774
},
14775
{
@@ -14789,7 +14789,7 @@
14789
"zh-chs": "扩充式ASCII",
14790
"zh-cht": "擴充式ASCII",
14791
"xloc": [
14792
- "default.handlebars->27->863"
14792
+ "default.handlebars->27->865"
14793
]
14794
},
14795
{
@@ -14829,7 +14829,7 @@
14829
"zh-chs": "外部",
14830
"zh-cht": "外部",
14831
"xloc": [
14832
- "default.handlebars->27->2074"
14832
+ "default.handlebars->27->2077"
14833
]
14834
},
14835
{
@@ -14869,7 +14869,7 @@
14869
"zh-chs": "FYRO马其顿语",
14870
"zh-cht": "FYRO馬其頓語",
14871
"xloc": [
14872
- "default.handlebars->27->1143"
14872
+ "default.handlebars->27->1145"
14873
]
This file is too large to show in full.
views/default-mobile.handlebars
+21
@@ -570,6 +570,7 @@
570
<img id="p10deviceStar" class=deviceNotifyLargeDotSub src=images/icon-star-notify-40.png width=35 height=35>
571
<div id="p10deviceMsg" onclick=showDeviceMessages(null,null,event) class=deviceNotifyLargeDotSub></div>
572
<img id="p10deviceNotify" onclick=showDeviceSessions() class=deviceNotifyLargeDotSub src=images/icon-relay-notify-40.png width=35 height=35>
573
+ <img id="p10deviceHelp" onclick=showDeviceHelpRequests(null,null,event) class=deviceNotifyLargeDotSub src=images/icon-help-notify-40.png width=35 height=35>
574
</div>
575
<div id="p10deviceBattery" class="deviceBatteryLarge deviceBatteryLarge1"></div>
576
<div id=p10html style="margin-left:8px;margin-right:8px"></div>
@@ -1488,6 +1489,8 @@
1489
1490
// If we are looking at the sessions dialog box for this device now, update it
1491
//if (xxdialogTag == ('SESSIONS-' + message.event.nodeid)) { showDeviceSessions(message.event.nodeid, true); }
1492
+ //if (xxdialogTag == ('MESSAGES-' + message.event.nodeid)) { showDeviceMessages(message.event.nodeid, true); }
1493
+ if (xxdialogTag == ('HELPREQ-' + message.event.nodeid)) { showDeviceHelpRequests(message.event.nodeid, true); }
1494
1495
break;
1496
}
@@ -2319,6 +2322,11 @@
2322
devNotifySub += '<img class=deviceNotifyDotSub src=images/icon-relay-notify.png width=16 height=16>';
2323
}
2324
2325
+ // Help is required
2326
+ if (node.sessions.help != null) {
2327
+ devNotifySub += '<img class=deviceNotifyDotSub src=images/icon-help-notify-16.png width=16 height=16>';
2328
+ }
2329
+
2330
// Battery state
2331
if (node.sessions.battery != null) {
2332
var bat = node.sessions.battery;
@@ -2353,6 +2361,18 @@
2361
}
2362
}
2363
2364
+ // Show device help requests
2365
+ function showDeviceHelpRequests(nodeid, force, e) {
2366
+ if (e) haltEvent(e);
2367
+ if (xxdialogMode && !force) return false;
2368
+ var node = null, x = '';
2369
+ if (nodeid == null) { node = currentNode; } else { node = getNodeFromId(nodeid); }
2370
+ if ((node == null) || (node.sessions == null)) { setDialogMode(0); return false; }
2371
+ if (node.sessions.help != null) { for (var j in node.sessions.help) { x += '<div style=margin-bottom:6px><b>' + EscapeHtml(j) + '</b></div><div style=margin-bottom:6px>' + EscapeHtml(node.sessions.help[j]) + '</div>'; } }
2372
+ if (x != '') { setDialogMode(2, "Help Requests" + ' - ' + EscapeHtml(node.name), 1, null, x, 'HELPREQ-' + node._id); } else { setDialogMode(0); }
2373
+ return false;
2374
+ }
2375
+
2376
// Show currently active sessions on this device
2377
function showDeviceSessions() {
2378
if (xxdialogMode || (currentNode == null)) return;
@@ -2485,6 +2505,7 @@
2505
// Setup session notification
2506
QV('p10deviceNotify', (currentNode.sessions != null) && ((node.sessions.kvm != null) || (node.sessions.terminal != null) || (node.sessions.files != null) || (node.sessions.tcp != null) || (node.sessions.udp != null)));
2507
QV('p10deviceStar', stars[currentNode._id] == 1);
2508
+ QV('p10deviceHelp', (currentNode.sessions != null) && (currentNode.sessions.help != null))
2509
if ((currentNode.sessions != null) && (currentNode.sessions.msg != null)) { QV('p10deviceMsg', true); QH('p10deviceMsg', Object.keys(currentNode.sessions.msg).length); } else { QV('p10deviceMsg', false); }
2510
2511
// Device Battery
views/default.handlebars
+41
-3
@@ -244,6 +244,7 @@
244
<option value=2>Sessions</option>
245
<option value=3>Starred</option>
246
<option value=4>Intel® AMT</option>
247
+ <option value=6>Help</option>
248
</select>
249
<label><input type=checkbox id=RealNameCheckBox onclick=onRealNameCheckBox() /><span title="Show devices operating system name">OS Name</span></label>
250
<label style="display:none"><input type=checkbox id=OnlineCheckBox onclick=onOnlineCheckBox(event) /><span title="Only show devices that are online">Online</span></label>
@@ -511,6 +512,7 @@
512
<div id="p10deviceMsg" onclick=showDeviceMessages(null,null,event) class=deviceNotifyDotSub></div>
513
<img id="p10deviceStar" class=deviceNotifyDotSub src=images/icon-star-notify-16.png width=16 height=16>
514
<img id="p10deviceNotify" onclick=showDeviceSessions(null,null,event) class=deviceNotifyDotSub src=images/icon-relay-notify.png width=16 height=16>
515
+ <img id="p10deviceHelp" onclick=showDeviceHelpRequests(null,null,event) class=deviceNotifyDotSub src=images/icon-help-notify-16.png width=16 height=16>
516
</div>
517
<div id="p10deviceBattery" class="deviceBatteryLarge deviceBatteryLarge1"></div>
518
<a href=# onclick=p10showiconselector()><img id=MainComputerImage></a>
@@ -2496,7 +2498,18 @@
2498
mainUpdate(32);
2499
}
2500
if (message.event.noact) break; // Take no action on this event
2501
+
2502
switch (message.event.action) {
2503
+ case 'agentlog': {
2504
+ if (message.event.msgid == 98) {
2505
+ // This is a agent help request, popup a notification.
2506
+ if (GetNodeRights(message.event.nodeid) > 0) {
2507
+ var n = getNodeFromId(message.event.nodeid);
2508
+ addNotification({ text: format("Help requested from {0}: {1}", message.event.msgArgs[0], message.event.msgArgs[1]), title: n.name, icon: n.icon, nodeid: message.event.nodeid });
2509
+ }
2510
+ }
2511
+ break;
2512
+ }
2513
case 'recording': {
2514
if (p52recordings != null) { p52recordings.unshift(message.event); message.event.present = 1; updateRecordings(); }
2515
break;
@@ -2953,9 +2966,10 @@
2966
// If we are looking at the sessions dialog box for this device now, update it
2967
if (xxdialogTag == ('SESSIONS-' + message.event.nodeid)) { showDeviceSessions(message.event.nodeid, true); }
2968
if (xxdialogTag == ('MESSAGES-' + message.event.nodeid)) { showDeviceMessages(message.event.nodeid, true); }
2969
+ if (xxdialogTag == ('HELPREQ-' + message.event.nodeid)) { showDeviceHelpRequests(message.event.nodeid, true); }
2970
2957
- // If we are filtering on sessions, update the visible devices
2958
- if (Q('DevFilterSelect').value == 2) { mainUpdate(1); }
2971
+ // If we are filtering on sessions or help, update the visible devices
2972
+ if ((Q('DevFilterSelect').value == 2) || (Q('DevFilterSelect').value == 6)) { mainUpdate(1); }
2973
break;
2974
}
2975
case 'stopped': { // Server is stopping.
@@ -3459,6 +3473,15 @@
3473
}
3474
}
3475
3476
+ // Help is required
3477
+ if (node.sessions.help != null) {
3478
+ if (view == 2) {
3479
+ devNotifySub += '<img onclick=showDeviceHelpRequests(\'' + node._id + '\',null,event) class=deviceNotifySmallDotSub src=images/icon-help-notify-10.png width=10 height=10>';
3480
+ } else {
3481
+ devNotifySub += '<img onclick=showDeviceHelpRequests(\'' + node._id + '\',null,event) class=deviceNotifyDotSub src=images/icon-help-notify-16.png width=16 height=16>';
3482
+ }
3483
+ }
3484
+
3485
// Battery state
3486
if ((node.sessions.battery != null) && (view == 1)) {
3487
var bat = node.sessions.battery;
@@ -3732,6 +3755,18 @@
3755
oldviewmode = view;
3756
}
3757
3758
+ // Show device help requests
3759
+ function showDeviceHelpRequests(nodeid, force, e) {
3760
+ if (e) haltEvent(e);
3761
+ if (xxdialogMode && !force) return false;
3762
+ var node = null, x = '';
3763
+ if (nodeid == null) { node = currentNode; } else { node = getNodeFromId(nodeid); }
3764
+ if ((node == null) || (node.sessions == null)) { setDialogMode(0); return false; }
3765
+ if (node.sessions.help != null) { for (var j in node.sessions.help) { x += '<div style=margin-bottom:6px><b>' + EscapeHtml(j) + '</b></div><div style=margin-bottom:6px>' + EscapeHtml(node.sessions.help[j]) + '</div>'; } }
3766
+ if (x != '') { setDialogMode(2, "Help Requests" + ' - ' + EscapeHtml(node.name), 1, null, x, 'HELPREQ-' + node._id); } else { setDialogMode(0); }
3767
+ return false;
3768
+ }
3769
+
3770
// Show currently active sessions on this device
3771
function showDeviceSessions(nodeid, force, e) {
3772
if (e) haltEvent(e);
@@ -4634,6 +4669,7 @@
4669
if (devFilter == 3) { for (var d in nodes) { if (stars[nodes[d]._id] != 1) { nodes[d].v = false; } } } // Starred
4670
if (devFilter == 4) { for (var d in nodes) { if (nodes[d].intelamt == null) { nodes[d].v = false; } } } // Intel AMT
4671
if (devFilter == 5) { for (var d in nodes) { if ((nodes[d].conn != null) && (nodes[d].conn != 0)) { nodes[d].v = false; } } } // Offline
4672
+ if (devFilter == 6) { for (var d in nodes) { var n = nodes[d]; if ((n.sessions == null) || (n.sessions.help == null)) { n.v = false; } } } // Sessions
4673
}
4674
4675
var contextelement = null;
@@ -5498,6 +5534,7 @@
5534
// Device Notification
5535
QV('p10deviceNotify', (currentNode.sessions != null) && ((currentNode.sessions.kvm != null) || (currentNode.sessions.terminal != null) || (currentNode.sessions.files != null) || (currentNode.sessions.tcp != null) || (currentNode.sessions.udp != null)));
5536
QV('p10deviceStar', stars[currentNode._id] == 1);
5537
+ QV('p10deviceHelp', (currentNode.sessions != null) && (currentNode.sessions.help != null))
5538
if ((currentNode.sessions != null) && (currentNode.sessions.msg != null)) { QV('p10deviceMsg', true); QH('p10deviceMsg', Object.keys(currentNode.sessions.msg).length); } else { QV('p10deviceMsg', false); }
5539
5540
// Device Battery
@@ -10699,7 +10736,8 @@
10736
94: "Removed security key",
10737
95: "Added security key",
10738
96: "Verified phone number of user {0}",
10702
- 97: "Removed phone number of user {0}"
10739
+ 97: "Removed phone number of user {0}",
10740
+ 98: "Help Requested, user: {0}, details: {1}"
10741
};
10742
10743
// Highlights the device being hovered