introducing clamav and ufw firewall detection for linux
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
May 16, 2026 at 17:05 UTC
ac94baff4e5b935261e5e35cbca392acc343f5ca
9 files changed
+5638
-5428
agents/meshcore.js
+14
@@ -5125,6 +5125,8 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
5125
if (process.platform == 'win32') {
5126
// Windows Command: "wmic /Namespace:\\root\SecurityCenter2 Path AntiVirusProduct get /FORMAT:CSV"
5127
response = JSON.stringify(require('win-info').av(), null, 1);
5128
+ } if (process.platform == 'linux') {
5129
+ response = JSON.stringify(require('linux-info').av(), null, 1);
5130
} else {
5131
response = 'Not supported on the platform';
5132
}
@@ -6376,6 +6378,18 @@ function sendPeriodicServerUpdate(flags, force) {
6378
try { meshCoreObj.av = require('win-info').av(); meshCoreObjChanged(); } catch (ex) { av = null; } // Antivirus
6379
//if (process.platform == 'win32') { try { meshCoreObj.pr = require('win-info').pendingReboot(); meshCoreObjChanged(); } catch (ex) { meshCoreObj.pr = null; } } // Pending reboot
6380
}
6381
+ // Update Linux AV/Firewall information
6382
+ if ((flags & 4) && (process.platform == 'linux')) {
6383
+ try {
6384
+ var lsc = {};
6385
+ var avResult = require('linux-info').av();
6386
+ if (avResult && avResult.length > 0) { meshCoreObj.av = avResult; lsc.antiVirus = 'OK'; }
6387
+ var fwResult = require('linux-info').firewall();
6388
+ if (fwResult && fwResult.installed) { lsc.firewall = fwResult.enabled ? 'OK' : 'BAD'; }
6389
+ if (Object.keys(lsc).length > 0) { meshCoreObj.lsc = lsc; meshCoreObjChanged(); }
6390
+ } catch (ex) { }
6391
+ }
6392
+
6393
if (process.platform == 'win32') {
6394
if (require('MeshAgent')._securitycenter == null) {
6395
try {
agents/modules_meshcore/linux-info.js
new
+100
@@ -0,0 +1,100 @@
1
+
2
+function dataHandler(data) { this.str += data.toString(); }
3
+
4
+function av()
5
+{
6
+ var result = [];
7
+ var child, version, dbDate, running;
8
+
9
+ // Check if clamscan binary exists
10
+ var clamBinaries = ['/usr/bin/clamscan', '/usr/local/bin/clamscan', '/bin/clamscan'];
11
+ var clamFound = false;
12
+ var fs = require('fs');
13
+ for (var i = 0; i < clamBinaries.length; ++i) {
14
+ try { if (fs.existsSync(clamBinaries[i])) { clamFound = true; break; } } catch (ex) { }
15
+ }
16
+ if (!clamFound) { return ([]); }
17
+
18
+ // Get ClamAV version
19
+ try {
20
+ child = require('child_process').execFile('/bin/sh', ['sh']);
21
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
22
+ child.stdin.write('clamscan --version 2>/dev/null | head -1\nexit\n');
23
+ child.waitExit();
24
+ version = child.stdout.str.trim();
25
+ } catch (ex) { version = ''; }
26
+
27
+ // Get virus database date from freshclam/clamd dat files
28
+ try {
29
+ child = require('child_process').execFile('/bin/sh', ['sh']);
30
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
31
+ child.stdin.write('stat -c "%y" /var/lib/clamav/main.cvd /var/lib/clamav/main.cld 2>/dev/null | sort -r | head -1 | cut -d" " -f1\nexit\n');
32
+ child.waitExit();
33
+ dbDate = child.stdout.str.trim();
34
+ } catch (ex) { dbDate = ''; }
35
+
36
+ // Check if clamd service is running (systemd, OpenRC, or process scan fallback)
37
+ try {
38
+ child = require('child_process').execFile('/bin/sh', ['sh']);
39
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
40
+ child.stdin.write(
41
+ 'if command -v systemctl >/dev/null 2>&1; then ' +
42
+ 'systemctl is-active clamav-daemon 2>/dev/null || systemctl is-active clamd 2>/dev/null || echo inactive; ' +
43
+ 'elif command -v rc-service >/dev/null 2>&1; then ' +
44
+ 'rc-service clamd status 2>/dev/null | grep -q started && echo active || echo inactive; ' +
45
+ 'else ' +
46
+ 'pgrep -x clamd >/dev/null 2>&1 && echo active || echo inactive; ' +
47
+ 'fi\nexit\n'
48
+ );
49
+ child.waitExit();
50
+ running = child.stdout.str.trim() === 'active';
51
+ } catch (ex) { running = false; }
52
+
53
+ var status = {};
54
+ status.product = version || 'ClamAV';
55
+ status.enabled = running;
56
+ status.updated = dbDate !== '';
57
+ if (dbDate) { status.definitionDate = dbDate; }
58
+ result.push(status);
59
+
60
+ return (result);
61
+}
62
+
63
+function firewall()
64
+{
65
+ var child, status, output;
66
+
67
+ // Check if ufw binary exists
68
+ var ufwBinaries = ['/usr/sbin/ufw', '/sbin/ufw', '/usr/bin/ufw'];
69
+ var ufwFound = false;
70
+ var fs = require('fs');
71
+ for (var i = 0; i < ufwBinaries.length; ++i) {
72
+ try { if (fs.existsSync(ufwBinaries[i])) { ufwFound = true; break; } } catch (ex) { }
73
+ }
74
+ if (!ufwFound) { return (null); }
75
+
76
+ // Get ufw status
77
+ try {
78
+ child = require('child_process').execFile('/bin/sh', ['sh']);
79
+ child.stdout.str = ''; child.stdout.on('data', dataHandler);
80
+ child.stdin.write('ufw status 2>/dev/null | head -1\nexit\n');
81
+ child.waitExit();
82
+ output = child.stdout.str.trim();
83
+ } catch (ex) { output = ''; }
84
+
85
+ return ({
86
+ product: 'UFW',
87
+ installed: true,
88
+ enabled: output.toLowerCase().indexOf('active') !== -1
89
+ });
90
+}
91
+
92
+if (process.platform == 'linux')
93
+{
94
+ module.exports = { av: av, firewall: firewall };
95
+}
96
+else
97
+{
98
+ var not_supported = function () { throw (process.platform + ' not supported'); };
99
+ module.exports = { av: not_supported, firewall: not_supported };
100
+}
\ No newline at end of file
meshagent.js
+4
@@ -1927,6 +1927,10 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1927
if (!device.wsc) { device.wsc = {}; }
1928
if (JSON.stringify(device.wsc) != JSON.stringify(command.wsc)) { /*changes.push('Windows Security Center status');*/ device.wsc = command.wsc; change = 1; log = 1; }
1929
}
1930
+ if (command.lsc != null) { // Linux Security Center
1931
+ if (!device.lsc) { device.lsc = {}; }
1932
+ if (JSON.stringify(device.lsc) != JSON.stringify(command.lsc)) { /*changes.push('Linux Security Center status');*/ device.lsc = command.lsc; change = 1; log = 1; }
1933
+ }
1934
if (command.defender != null) { // Defender For Windows Server
1935
if (!device.defender) { device.defender = {}; }
1936
if (JSON.stringify(device.defender) != JSON.stringify(command.defender)) { /*changes.push('Defender status');*/ device.defender = command.defender; change = 1; log = 1; }
meshctrl.js
+4
-1
@@ -2976,7 +2976,7 @@ function displayDeviceInfo(sysinfo, lastconnect, network, nodes) {
2976
if (node.desc != null) { output["Description"] = node.desc; outputCount++; }
2977
if (node.icon != null) { output["Icon"] = node.icon; outputCount++; }
2978
if (node.tags) { output["Tags"] = node.tags; outputCount++; }
2979
- if (node.av) {
2979
+ if (node.av && node.av.length > 0) {
2980
var av = [];
2981
for (var i in node.av) {
2982
if (typeof node.av[i]['product'] == 'string') {
@@ -2993,6 +2993,9 @@ function displayDeviceInfo(sysinfo, lastconnect, network, nodes) {
2993
if (typeof node.wsc == 'object') {
2994
output["WindowsSecurityCenter"] = node.wsc; outputCount++;
2995
}
2996
+ if (typeof node.lsc == 'object') {
2997
+ output["LinuxSecurityCenter"] = node.lsc; outputCount++;
2998
+ }
2999
if (outputCount > 0) { info["General"] = output; }
3000
3001
// Operating System
meshuser.js
+7
-1
@@ -2139,6 +2139,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2139
else if (((command.meshtype == 3) || (command.meshtype == 4)) && (parent.args.wanonly == true) && (typeof command.relayid != 'string')) { err = 'Invalid group type'; } // Local device group type wihtout relay is not allowed in WAN mode
2140
else if (((command.meshtype == 3) || (command.meshtype == 4)) && (parent.args.lanonly == true) && (typeof command.relayid == 'string')) { err = 'Invalid group type'; } // Local device group type with relay is not allowed in WAN mode
2141
else if ((domain.ipkvm == null) && (command.meshtype == 4)) { err = 'Invalid group type'; } // IP KVM device group type is not allowed unless enabled
2142
+ else if ((command.parent != null) && (typeof command.parent !== 'string' || !parent.meshes[command.parent] || parent.meshes[command.parent].domain !== domain.id)) { err = 'Invalid parent group'; }
2143
if ((err == null) && (command.meshtype == 4)) {
2144
if ((command.kvmmodel < 1) || (command.kvmmodel > 2)) { err = 'Invalid KVM model'; }
2145
else if (common.validateString(command.kvmhost, 1, 128) == false) { err = 'Invalid KVM hostname'; }
@@ -2163,6 +2164,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2164
links[user._id] = { name: user.name, rights: 4294967295 };
2165
mesh = { type: 'mesh', _id: meshid, name: command.meshname, mtype: command.meshtype, desc: command.desc, domain: domain.id, links: links, creation: Date.now(), creatorid: user._id, creatorname: user.name };
2166
2167
+ // Set parent mesh if provided
2168
+ if (command.parent && parent.meshes[command.parent]) { mesh.parent = command.parent; }
2169
+
2170
// Add flags and consent if present
2171
if (typeof command.flags == 'number') { mesh.flags = command.flags; }
2172
if (typeof command.consent == 'number') { mesh.consent = command.consent; }
@@ -4336,7 +4340,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4340
} else {
4341
// This share is ok, remove extra data we don't need to send.
4342
delete doc._id; delete doc.domain; delete doc.nodeid; delete doc.type; delete doc.xmeshid;
4339
- if (doc.userid != user._id) { delete doc.url; } // If this is not the user who created this link, don't give the link.
4343
+ if ((user.siteadmin !== SITERIGHT_ADMIN) && (doc.userid != user._id)) { delete doc.url; } // If this is not the user who created this link AND the user is not a site admin, don't give the link.
4344
okDocs.push(doc);
4345
}
4346
}
@@ -5281,6 +5285,8 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5285
output += csvClean(n._id) + ',' + csvClean(n.name) + ',' + csvClean(n.rname ? n.rname : '') + ',' + csvClean(n.host ? n.host : '') + ',' + (n.icon ? n.icon : 1) + ',' + (n.ip ? n.ip : '') + ',' + (n.osdesc ? csvClean(n.osdesc) : '') + ',' + csvClean(parent.meshes[n.meshid].name);
5286
if (typeof n.wsc == 'object') {
5287
output += ',' + csvClean(n.wsc.antiVirus ? n.wsc.antiVirus : '') + ',' + csvClean(n.wsc.autoUpdate ? n.wsc.autoUpdate : '') + ',' + csvClean(n.wsc.firewall ? n.wsc.firewall : '')
5288
+ } else if (typeof n.lsc == 'object') {
5289
+ output += ',' + csvClean(n.lsc.antiVirus ? n.lsc.antiVirus : '') + ',,' + csvClean(n.lsc.firewall ? n.lsc.firewall : '')
5290
} else { output += ',,,'; }
5291
if (typeof n.volumes == 'object') {
5292
var bitlockerdetails = '', firstbitlocker = true;
translate/translate.json
+5478
-5424
@@ -26,10 +26,10 @@
26
"zh-chs": " + CIRA",
27
"zh-cht": " + CIRA",
28
"xloc": [
29
- "default.handlebars->121->2283",
30
- "default.handlebars->121->2285",
31
- "default3.handlebars->121->2272",
32
- "default3.handlebars->121->2274"
29
+ "default.handlebars->121->2292",
30
+ "default.handlebars->121->2294",
31
+ "default3.handlebars->121->2281",
32
+ "default3.handlebars->121->2283"
33
]
34
},
35
{
@@ -278,8 +278,8 @@
278
"zh-chs": " 可以使用密码提示,但不建议使用。",
279
"zh-cht": " 可以使用密碼提示,但不建議使用。",
280
"xloc": [
281
- "default.handlebars->121->2151",
282
- "default3.handlebars->121->2126"
281
+ "default.handlebars->121->2160",
282
+ "default3.handlebars->121->2135"
283
]
284
},
285
{
@@ -308,10 +308,10 @@
308
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
309
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
310
"xloc": [
311
- "default.handlebars->121->2409",
312
- "default.handlebars->121->2998",
313
- "default3.handlebars->121->2399",
314
- "default3.handlebars->121->2986"
311
+ "default.handlebars->121->2418",
312
+ "default.handlebars->121->3007",
313
+ "default3.handlebars->121->2408",
314
+ "default3.handlebars->121->2995"
315
]
316
},
317
{
@@ -569,9 +569,9 @@
569
"zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。",
570
"zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
571
"xloc": [
572
- "default.handlebars->121->2367",
572
+ "default.handlebars->121->2376",
573
"default.handlebars->121->566",
574
- "default3.handlebars->121->2354",
574
+ "default3.handlebars->121->2363",
575
"default3.handlebars->121->557"
576
]
577
},
@@ -654,22 +654,22 @@
654
"zh-chs": ",",
655
"zh-cht": ",",
656
"xloc": [
657
- "default-mobile.handlebars->55->1063",
658
- "default-mobile.handlebars->55->819",
659
- "default-mobile.handlebars->55->821",
660
- "default-mobile.handlebars->55->823",
661
- "default.handlebars->121->1023",
662
- "default.handlebars->121->1677",
663
- "default.handlebars->121->1679",
664
- "default.handlebars->121->1681",
665
- "default.handlebars->121->2485",
666
- "default.handlebars->121->2771",
667
- "default3.handlebars->121->1014",
668
- "default3.handlebars->121->1657",
669
- "default3.handlebars->121->1659",
670
- "default3.handlebars->121->1661",
671
- "default3.handlebars->121->2475",
672
- "default3.handlebars->121->2761"
657
+ "default-mobile.handlebars->55->1072",
658
+ "default-mobile.handlebars->55->828",
659
+ "default-mobile.handlebars->55->830",
660
+ "default-mobile.handlebars->55->832",
661
+ "default.handlebars->121->1032",
662
+ "default.handlebars->121->1686",
663
+ "default.handlebars->121->1688",
664
+ "default.handlebars->121->1690",
665
+ "default.handlebars->121->2494",
666
+ "default.handlebars->121->2780",
667
+ "default3.handlebars->121->1023",
668
+ "default3.handlebars->121->1666",
669
+ "default3.handlebars->121->1668",
670
+ "default3.handlebars->121->1670",
671
+ "default3.handlebars->121->2484",
672
+ "default3.handlebars->121->2770"
673
]
674
},
675
{
@@ -817,9 +817,9 @@
817
"zh-chs": ",MQTT在线",
818
"zh-cht": ",MQTT在線",
819
"xloc": [
820
- "default-mobile.handlebars->55->964",
821
- "default.handlebars->121->1823",
822
- "default3.handlebars->121->1801"
820
+ "default-mobile.handlebars->55->973",
821
+ "default.handlebars->121->1832",
822
+ "default3.handlebars->121->1810"
823
]
824
},
825
{
@@ -848,10 +848,10 @@
848
"zh-chs": ", 不同意",
849
"zh-cht": ", 不同意",
850
"xloc": [
851
- "default.handlebars->121->1118",
852
- "default.handlebars->121->2325",
853
- "default3.handlebars->121->1109",
854
- "default3.handlebars->121->2314"
851
+ "default.handlebars->121->1127",
852
+ "default.handlebars->121->2334",
853
+ "default3.handlebars->121->1118",
854
+ "default3.handlebars->121->2323"
855
]
856
},
857
{
@@ -880,10 +880,10 @@
880
"zh-chs": ",提示同意",
881
"zh-cht": ",提示同意",
882
"xloc": [
883
- "default.handlebars->121->1119",
884
- "default.handlebars->121->2326",
885
- "default3.handlebars->121->1110",
886
- "default3.handlebars->121->2315"
883
+ "default.handlebars->121->1128",
884
+ "default.handlebars->121->2335",
885
+ "default3.handlebars->121->1119",
886
+ "default3.handlebars->121->2324"
887
]
888
},
889
{
@@ -911,8 +911,8 @@
911
"zh-chs": ", RDP",
912
"zh-cht": ", RDP",
913
"xloc": [
914
- "default.handlebars->121->1420",
915
- "default3.handlebars->121->1401"
914
+ "default.handlebars->121->1429",
915
+ "default3.handlebars->121->1410"
916
]
917
},
918
{
@@ -941,10 +941,10 @@
941
"zh-chs": ", 每天重复",
942
"zh-cht": ", 每天重複",
943
"xloc": [
944
- "default.handlebars->121->1115",
945
- "default.handlebars->121->2322",
946
- "default3.handlebars->121->1106",
947
- "default3.handlebars->121->2311"
944
+ "default.handlebars->121->1124",
945
+ "default.handlebars->121->2331",
946
+ "default3.handlebars->121->1115",
947
+ "default3.handlebars->121->2320"
948
]
949
},
950
{
@@ -973,10 +973,10 @@
973
"zh-chs": ", 每周重复一次",
974
"zh-cht": ", 每週重複一次",
975
"xloc": [
976
- "default.handlebars->121->1116",
977
- "default.handlebars->121->2323",
978
- "default3.handlebars->121->1107",
979
- "default3.handlebars->121->2312"
976
+ "default.handlebars->121->1125",
977
+ "default.handlebars->121->2332",
978
+ "default3.handlebars->121->1116",
979
+ "default3.handlebars->121->2321"
980
]
981
},
982
{
@@ -1035,8 +1035,8 @@
1035
"zh-cht": ", SFTP",
1036
"xloc": [
1037
"default-mobile.handlebars->55->696",
1038
- "default.handlebars->121->1542",
1039
- "default3.handlebars->121->1522"
1038
+ "default.handlebars->121->1551",
1039
+ "default3.handlebars->121->1531"
1040
]
1041
},
1042
{
@@ -1064,8 +1064,8 @@
1064
"zh-chs": ", SSH",
1065
"zh-cht": ", SSH",
1066
"xloc": [
1067
- "default.handlebars->121->1510",
1068
- "default3.handlebars->121->1490"
1067
+ "default.handlebars->121->1519",
1068
+ "default3.handlebars->121->1499"
1069
]
1070
},
1071
{
@@ -1093,8 +1093,8 @@
1093
"zh-chs": ",软体KVM",
1094
"zh-cht": ",軟體KVM",
1095
"xloc": [
1096
- "default.handlebars->121->1403",
1097
- "default3.handlebars->121->1384",
1096
+ "default.handlebars->121->1412",
1097
+ "default3.handlebars->121->1393",
1098
"sharing.handlebars->49->12"
1099
]
1100
},
@@ -1124,10 +1124,10 @@
1124
"zh-chs": ", 工具栏",
1125
"zh-cht": ", 工具欄",
1126
"xloc": [
1127
- "default.handlebars->121->1120",
1128
- "default.handlebars->121->2327",
1129
- "default3.handlebars->121->1111",
1130
- "default3.handlebars->121->2316"
1127
+ "default.handlebars->121->1129",
1128
+ "default.handlebars->121->2336",
1129
+ "default3.handlebars->121->1120",
1130
+ "default3.handlebars->121->2325"
1131
]
1132
},
1133
{
@@ -1156,10 +1156,10 @@
1156
"zh-chs": ", 仅查看桌面",
1157
"zh-cht": ", 僅查看桌面",
1158
"xloc": [
1159
- "default.handlebars->121->1117",
1160
- "default.handlebars->121->2324",
1161
- "default3.handlebars->121->1108",
1162
- "default3.handlebars->121->2313"
1159
+ "default.handlebars->121->1126",
1160
+ "default.handlebars->121->2333",
1161
+ "default3.handlebars->121->1117",
1162
+ "default3.handlebars->121->2322"
1163
]
1164
},
1165
{
@@ -1190,12 +1190,12 @@
1190
"default-mobile.handlebars->55->637",
1191
"default-mobile.handlebars->55->674",
1192
"default-mobile.handlebars->55->697",
1193
- "default.handlebars->121->1419",
1194
- "default.handlebars->121->1511",
1195
- "default.handlebars->121->1543",
1196
- "default3.handlebars->121->1400",
1197
- "default3.handlebars->121->1491",
1198
- "default3.handlebars->121->1523",
1193
+ "default.handlebars->121->1428",
1194
+ "default.handlebars->121->1520",
1195
+ "default.handlebars->121->1552",
1196
+ "default3.handlebars->121->1409",
1197
+ "default3.handlebars->121->1500",
1198
+ "default3.handlebars->121->1532",
1199
"sharing-mobile.handlebars->55->14",
1200
"sharing-mobile.handlebars->55->46",
1201
"sharing-mobile.handlebars->55->63",
@@ -1355,8 +1355,8 @@
1355
"zh-chs": ",{0}观看",
1356
"zh-cht": ",{0}觀看",
1357
"xloc": [
1358
- "default.handlebars->121->1414",
1359
- "default3.handlebars->121->1395",
1358
+ "default.handlebars->121->1423",
1359
+ "default3.handlebars->121->1404",
1360
"sharing.handlebars->49->13"
1361
]
1362
},
@@ -1456,8 +1456,8 @@
1456
"en": "0 bps",
1457
"xloc": [
1458
"default-mobile.handlebars->55->370",
1459
- "default.handlebars->121->2568",
1460
- "default3.handlebars->121->2558"
1459
+ "default.handlebars->121->2577",
1460
+ "default3.handlebars->121->2567"
1461
]
1462
},
1463
{
@@ -1514,8 +1514,8 @@
1514
"zh-chs": "1个活跃时段",
1515
"zh-cht": "1個活躍時段",
1516
"xloc": [
1517
- "default.handlebars->121->3093",
1518
- "default3.handlebars->121->3081"
1517
+ "default.handlebars->121->3102",
1518
+ "default3.handlebars->121->3090"
1519
]
1520
},
1521
{
@@ -1544,10 +1544,10 @@
1544
"zh-chs": "1个字节",
1545
"zh-cht": "1個位元組",
1546
"xloc": [
1547
- "default-mobile.handlebars->55->1107",
1547
+ "default-mobile.handlebars->55->1116",
1548
"default-mobile.handlebars->55->378",
1549
- "default.handlebars->121->2579",
1550
- "default3.handlebars->121->2569",
1549
+ "default.handlebars->121->2588",
1550
+ "default3.handlebars->121->2578",
1551
"download.handlebars->7->1",
1552
"download2.handlebars->11->1",
1553
"sharing-mobile.handlebars->55->111",
@@ -1609,8 +1609,8 @@
1609
"zh-chs": "1条连接",
1610
"zh-cht": "1位聯絡文",
1611
"xloc": [
1612
- "default.handlebars->121->1416",
1613
- "default3.handlebars->121->1397",
1612
+ "default.handlebars->121->1425",
1613
+ "default3.handlebars->121->1406",
1614
"sharing.handlebars->49->15"
1615
]
1616
},
@@ -1674,8 +1674,8 @@
1674
"zh-chs": "1组",
1675
"zh-cht": "1群",
1676
"xloc": [
1677
- "default.handlebars->121->3048",
1678
- "default3.handlebars->121->3036"
1677
+ "default.handlebars->121->3057",
1678
+ "default3.handlebars->121->3045"
1679
]
1680
},
1681
{
@@ -1738,10 +1738,10 @@
1738
"zh-chs": "1分钟",
1739
"zh-cht": "1分鐘",
1740
"xloc": [
1741
- "default.handlebars->121->1228",
1742
- "default.handlebars->121->2116",
1743
- "default3.handlebars->121->1217",
1744
- "default3.handlebars->121->2092"
1741
+ "default.handlebars->121->1237",
1742
+ "default.handlebars->121->2125",
1743
+ "default3.handlebars->121->1226",
1744
+ "default3.handlebars->121->2101"
1745
]
1746
},
1747
{
@@ -1859,8 +1859,8 @@
1859
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1860
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1861
"xloc": [
1862
- "default.handlebars->121->2803",
1863
- "default3.handlebars->121->2793"
1862
+ "default.handlebars->121->2812",
1863
+ "default3.handlebars->121->2802"
1864
]
1865
},
1866
{
@@ -1920,8 +1920,8 @@
1920
"zh-cht": "1秒",
1921
"xloc": [
1922
"default-mobile.handlebars->55->573",
1923
- "default.handlebars->121->1268",
1924
- "default3.handlebars->121->1257"
1923
+ "default.handlebars->121->1277",
1924
+ "default3.handlebars->121->1266"
1925
]
1926
},
1927
{
@@ -2072,7 +2072,7 @@
2072
"default-mobile.handlebars->55->425",
2073
"default-mobile.handlebars->55->429",
2074
"default-mobile.handlebars->55->433",
2075
- "default.handlebars->121->2807",
2075
+ "default.handlebars->121->2816",
2076
"default.handlebars->121->484",
2077
"default.handlebars->121->487",
2078
"default.handlebars->121->491",
@@ -2080,7 +2080,7 @@
2080
"default.handlebars->121->499",
2081
"default.handlebars->121->503",
2082
"default.handlebars->121->507",
2083
- "default3.handlebars->121->2797",
2083
+ "default3.handlebars->121->2806",
2084
"default3.handlebars->121->475",
2085
"default3.handlebars->121->478",
2086
"default3.handlebars->121->482",
@@ -2299,10 +2299,10 @@
2299
"zh-chs": "10分钟",
2300
"zh-cht": "10分鐘",
2301
"xloc": [
2302
- "default.handlebars->121->1230",
2303
- "default.handlebars->121->2118",
2304
- "default3.handlebars->121->1219",
2305
- "default3.handlebars->121->2094"
2302
+ "default.handlebars->121->1239",
2303
+ "default.handlebars->121->2127",
2304
+ "default3.handlebars->121->1228",
2305
+ "default3.handlebars->121->2103"
2306
]
2307
},
2308
{
@@ -2332,8 +2332,8 @@
2332
"zh-cht": "10 秒",
2333
"xloc": [
2334
"default-mobile.handlebars->55->575",
2335
- "default.handlebars->121->1270",
2336
- "default3.handlebars->121->1259"
2335
+ "default.handlebars->121->1279",
2336
+ "default3.handlebars->121->1268"
2337
]
2338
},
2339
{
@@ -2510,10 +2510,10 @@
2510
"zh-chs": "12小时",
2511
"zh-cht": "12小時",
2512
"xloc": [
2513
- "default.handlebars->121->1238",
2514
- "default.handlebars->121->2126",
2515
- "default3.handlebars->121->1227",
2516
- "default3.handlebars->121->2102"
2513
+ "default.handlebars->121->1247",
2514
+ "default.handlebars->121->2135",
2515
+ "default3.handlebars->121->1236",
2516
+ "default3.handlebars->121->2111"
2517
]
2518
},
2519
{
@@ -2632,10 +2632,10 @@
2632
"zh-chs": "15分钟",
2633
"zh-cht": "15分鐘",
2634
"xloc": [
2635
- "default.handlebars->121->1231",
2636
- "default.handlebars->121->2119",
2637
- "default3.handlebars->121->1220",
2638
- "default3.handlebars->121->2095"
2635
+ "default.handlebars->121->1240",
2636
+ "default.handlebars->121->2128",
2637
+ "default3.handlebars->121->1229",
2638
+ "default3.handlebars->121->2104"
2639
]
2640
},
2641
{
@@ -2664,10 +2664,10 @@
2664
"zh-chs": "16小时",
2665
"zh-cht": "16小時",
2666
"xloc": [
2667
- "default.handlebars->121->1239",
2668
- "default.handlebars->121->2127",
2669
- "default3.handlebars->121->1228",
2670
- "default3.handlebars->121->2103"
2667
+ "default.handlebars->121->1248",
2668
+ "default.handlebars->121->2136",
2669
+ "default3.handlebars->121->1237",
2670
+ "default3.handlebars->121->2112"
2671
]
2672
},
2673
{
@@ -2812,10 +2812,10 @@
2812
"zh-chs": "2天",
2813
"zh-cht": "2天",
2814
"xloc": [
2815
- "default.handlebars->121->1241",
2816
- "default.handlebars->121->2129",
2817
- "default3.handlebars->121->1230",
2818
- "default3.handlebars->121->2105"
2815
+ "default.handlebars->121->1250",
2816
+ "default.handlebars->121->2138",
2817
+ "default3.handlebars->121->1239",
2818
+ "default3.handlebars->121->2114"
2819
]
2820
},
2821
{
@@ -2844,10 +2844,10 @@
2844
"zh-chs": "2小时",
2845
"zh-cht": "2小時",
2846
"xloc": [
2847
- "default.handlebars->121->1235",
2848
- "default.handlebars->121->2123",
2849
- "default3.handlebars->121->1224",
2850
- "default3.handlebars->121->2099"
2847
+ "default.handlebars->121->1244",
2848
+ "default.handlebars->121->2132",
2849
+ "default3.handlebars->121->1233",
2850
+ "default3.handlebars->121->2108"
2851
]
2852
},
2853
{
@@ -3057,10 +3057,10 @@
3057
"zh-chs": "24小时",
3058
"zh-cht": "24小時",
3059
"xloc": [
3060
- "default.handlebars->121->1240",
3061
- "default.handlebars->121->2128",
3062
- "default3.handlebars->121->1229",
3063
- "default3.handlebars->121->2104"
3060
+ "default.handlebars->121->1249",
3061
+ "default.handlebars->121->2137",
3062
+ "default3.handlebars->121->1238",
3063
+ "default3.handlebars->121->2113"
3064
]
3065
},
3066
{
@@ -3121,8 +3121,8 @@
3121
"zh-chs": "2FA备份代码已清除",
3122
"zh-cht": "2FA備份代碼已清除",
3123
"xloc": [
3124
- "default.handlebars->121->2692",
3125
- "default3.handlebars->121->2682"
3124
+ "default.handlebars->121->2701",
3125
+ "default3.handlebars->121->2691"
3126
]
3127
},
3128
{
@@ -3182,8 +3182,8 @@
3182
"zh-chs": "第二个因素",
3183
"zh-cht": "第二個因素",
3184
"xloc": [
3185
- "default.handlebars->121->3280",
3186
- "default3.handlebars->121->3264"
3185
+ "default.handlebars->121->3289",
3186
+ "default3.handlebars->121->3273"
3187
]
3188
},
3189
{
@@ -3212,10 +3212,10 @@
3212
"zh-chs": "启用第二因素身份验证",
3213
"zh-cht": "啟用第二因素身份驗證",
3214
"xloc": [
3215
- "default.handlebars->121->2821",
3216
- "default.handlebars->121->3074",
3217
- "default3.handlebars->121->2811",
3218
- "default3.handlebars->121->3062"
3215
+ "default.handlebars->121->2830",
3216
+ "default.handlebars->121->3083",
3217
+ "default3.handlebars->121->2820",
3218
+ "default3.handlebars->121->3071"
3219
]
3220
},
3221
{
@@ -3386,10 +3386,10 @@
3386
"zh-chs": "30分钟",
3387
"zh-cht": "30分鐘",
3388
"xloc": [
3389
- "default.handlebars->121->1232",
3390
- "default.handlebars->121->2120",
3391
- "default3.handlebars->121->1221",
3392
- "default3.handlebars->121->2096"
3389
+ "default.handlebars->121->1241",
3390
+ "default.handlebars->121->2129",
3391
+ "default3.handlebars->121->1230",
3392
+ "default3.handlebars->121->2105"
3393
]
3394
},
3395
{
@@ -3420,10 +3420,10 @@
3420
"xloc": [
3421
"default-mobile.handlebars->55->741",
3422
"default-mobile.handlebars->55->753",
3423
- "default.handlebars->121->1621",
3424
- "default.handlebars->121->1636",
3425
- "default3.handlebars->121->1601",
3426
- "default3.handlebars->121->1613"
3423
+ "default.handlebars->121->1630",
3424
+ "default.handlebars->121->1645",
3425
+ "default3.handlebars->121->1610",
3426
+ "default3.handlebars->121->1622"
3427
]
3428
},
3429
{
@@ -3484,10 +3484,10 @@
3484
"zh-chs": "4天",
3485
"zh-cht": "4天",
3486
"xloc": [
3487
- "default.handlebars->121->1242",
3488
- "default.handlebars->121->2130",
3489
- "default3.handlebars->121->1231",
3490
- "default3.handlebars->121->2106"
3487
+ "default.handlebars->121->1251",
3488
+ "default.handlebars->121->2139",
3489
+ "default3.handlebars->121->1240",
3490
+ "default3.handlebars->121->2115"
3491
]
3492
},
3493
{
@@ -3516,10 +3516,10 @@
3516
"zh-chs": "4个小时",
3517
"zh-cht": "4個小時",
3518
"xloc": [
3519
- "default.handlebars->121->1236",
3520
- "default.handlebars->121->2124",
3521
- "default3.handlebars->121->1225",
3522
- "default3.handlebars->121->2100"
3519
+ "default.handlebars->121->1245",
3520
+ "default.handlebars->121->2133",
3521
+ "default3.handlebars->121->1234",
3522
+ "default3.handlebars->121->2109"
3523
]
3524
},
3525
{
@@ -3665,10 +3665,10 @@
3665
"zh-chs": "45分钟",
3666
"zh-cht": "45分鐘",
3667
"xloc": [
3668
- "default.handlebars->121->1233",
3669
- "default.handlebars->121->2121",
3670
- "default3.handlebars->121->1222",
3671
- "default3.handlebars->121->2097"
3668
+ "default.handlebars->121->1242",
3669
+ "default.handlebars->121->2130",
3670
+ "default3.handlebars->121->1231",
3671
+ "default3.handlebars->121->2106"
3672
]
3673
},
3674
{
@@ -3726,10 +3726,10 @@
3726
"zh-chs": "5分钟",
3727
"zh-cht": "5分鐘",
3728
"xloc": [
3729
- "default.handlebars->121->1229",
3730
- "default.handlebars->121->2117",
3731
- "default3.handlebars->121->1218",
3732
- "default3.handlebars->121->2093"
3729
+ "default.handlebars->121->1238",
3730
+ "default.handlebars->121->2126",
3731
+ "default3.handlebars->121->1227",
3732
+ "default3.handlebars->121->2102"
3733
]
3734
},
3735
{
@@ -3759,8 +3759,8 @@
3759
"zh-cht": "5秒",
3760
"xloc": [
3761
"default-mobile.handlebars->55->574",
3762
- "default.handlebars->121->1269",
3763
- "default3.handlebars->121->1258"
3762
+ "default.handlebars->121->1278",
3763
+ "default3.handlebars->121->1267"
3764
]
3765
},
3766
{
@@ -3940,10 +3940,10 @@
3940
"zh-chs": "60分钟",
3941
"zh-cht": "60分鐘",
3942
"xloc": [
3943
- "default.handlebars->121->1234",
3944
- "default.handlebars->121->2122",
3945
- "default3.handlebars->121->1223",
3946
- "default3.handlebars->121->2098"
3943
+ "default.handlebars->121->1243",
3944
+ "default.handlebars->121->2131",
3945
+ "default3.handlebars->121->1232",
3946
+ "default3.handlebars->121->2107"
3947
]
3948
},
3949
{
@@ -4033,10 +4033,10 @@
4033
"xloc": [
4034
"default-mobile.handlebars->55->743",
4035
"default-mobile.handlebars->55->752",
4036
- "default.handlebars->121->1623",
4037
- "default.handlebars->121->1635",
4038
- "default3.handlebars->121->1603",
4039
- "default3.handlebars->121->1612"
4036
+ "default.handlebars->121->1632",
4037
+ "default.handlebars->121->1644",
4038
+ "default3.handlebars->121->1612",
4039
+ "default3.handlebars->121->1621"
4040
]
4041
},
4042
{
@@ -4094,8 +4094,8 @@
4094
"zh-chs": "7天电源状态",
4095
"zh-cht": "7天電源狀態",
4096
"xloc": [
4097
- "default.handlebars->121->1315",
4098
- "default3.handlebars->121->1299"
4097
+ "default.handlebars->121->1324",
4098
+ "default3.handlebars->121->1308"
4099
]
4100
},
4101
{
@@ -4124,8 +4124,8 @@
4124
"zh-chs": "7天",
4125
"zh-cht": "7天",
4126
"xloc": [
4127
- "default.handlebars->121->2131",
4128
- "default3.handlebars->121->2107"
4127
+ "default.handlebars->121->2140",
4128
+ "default3.handlebars->121->2116"
4129
]
4130
},
4131
{
@@ -4216,12 +4216,12 @@
4216
"zh-chs": "8小時",
4217
"zh-cht": "8小時",
4218
"xloc": [
4219
- "default.handlebars->121->1237",
4220
- "default.handlebars->121->2125",
4219
+ "default.handlebars->121->1246",
4220
+ "default.handlebars->121->2134",
4221
"default.handlebars->121->594",
4222
"default.handlebars->121->608",
4223
- "default3.handlebars->121->1226",
4224
- "default3.handlebars->121->2101",
4223
+ "default3.handlebars->121->1235",
4224
+ "default3.handlebars->121->2110",
4225
"default3.handlebars->121->585",
4226
"default3.handlebars->121->599"
4227
]
@@ -4426,10 +4426,10 @@
4426
"zh-cht": "ACM",
4427
"xloc": [
4428
"default-mobile.handlebars->55->504",
4429
- "default.handlebars->121->2303",
4429
+ "default.handlebars->121->2312",
4430
"default.handlebars->121->472",
4431
"default.handlebars->121->928",
4432
- "default3.handlebars->121->2292",
4432
+ "default3.handlebars->121->2301",
4433
"default3.handlebars->121->463",
4434
"default3.handlebars->121->919"
4435
]
@@ -4511,8 +4511,8 @@
4511
"zh-chs": "操作系统",
4512
"zh-cht": "AMT操作系統",
4513
"xloc": [
4514
- "default.handlebars->121->3439",
4515
- "default3.handlebars->121->3423"
4514
+ "default.handlebars->121->3448",
4515
+ "default3.handlebars->121->3432"
4516
]
4517
},
4518
{
@@ -4540,10 +4540,10 @@
4540
"zh-chs": "AMT-Redir",
4541
"zh-cht": "AMT-Redir",
4542
"xloc": [
4543
- "default.handlebars->121->3290",
4544
- "default.handlebars->121->3343",
4545
- "default3.handlebars->121->3274",
4546
- "default3.handlebars->121->3327"
4543
+ "default.handlebars->121->3299",
4544
+ "default.handlebars->121->3352",
4545
+ "default3.handlebars->121->3283",
4546
+ "default3.handlebars->121->3336"
4547
]
4548
},
4549
{
@@ -4571,10 +4571,10 @@
4571
"zh-chs": "AMT-WSMAN",
4572
"zh-cht": "AMT-WSMAN",
4573
"xloc": [
4574
- "default.handlebars->121->3289",
4575
- "default.handlebars->121->3342",
4576
- "default3.handlebars->121->3273",
4577
- "default3.handlebars->121->3326"
4574
+ "default.handlebars->121->3298",
4575
+ "default.handlebars->121->3351",
4576
+ "default3.handlebars->121->3282",
4577
+ "default3.handlebars->121->3335"
4578
]
4579
},
4580
{
@@ -4594,7 +4594,7 @@
4594
"pl": "Wersja APK MeshAgent",
4595
"uk": "MeshAgent версія APK",
4596
"xloc": [
4597
- "default-mobile.handlebars->55->1016",
4597
+ "default-mobile.handlebars->55->1025",
4598
"default.handlebars->121->683",
4599
"default3.handlebars->121->674"
4600
]
@@ -4809,10 +4809,16 @@
4809
"xloc": [
4810
"default-mobile.handlebars->55->757",
4811
"default-mobile.handlebars->55->759",
4812
+ "default-mobile.handlebars->55->780",
4813
+ "default-mobile.handlebars->55->782",
4814
"default.handlebars->121->947",
4815
"default.handlebars->121->949",
4816
+ "default.handlebars->121->970",
4817
+ "default.handlebars->121->972",
4818
"default3.handlebars->121->938",
4815
- "default3.handlebars->121->940"
4819
+ "default3.handlebars->121->940",
4820
+ "default3.handlebars->121->961",
4821
+ "default3.handlebars->121->963"
4822
]
4823
},
4824
{
@@ -4841,9 +4847,9 @@
4847
"zh-chs": "拒绝访问",
4848
"zh-cht": "拒絕存取",
4849
"xloc": [
4844
- "default-mobile.handlebars->55->965",
4845
- "default.handlebars->121->1824",
4846
- "default3.handlebars->121->1802"
4850
+ "default-mobile.handlebars->55->974",
4851
+ "default.handlebars->121->1833",
4852
+ "default3.handlebars->121->1811"
4853
]
4854
},
4855
{
@@ -4932,8 +4938,8 @@
4938
"zh-chs": "访问服务器档案",
4939
"zh-cht": "存取伺服器檔案",
4940
"xloc": [
4935
- "default.handlebars->121->3004",
4936
- "default3.handlebars->121->2992"
4941
+ "default.handlebars->121->3013",
4942
+ "default3.handlebars->121->3001"
4943
]
4944
},
4945
{
@@ -5060,16 +5066,16 @@
5066
"default-mobile.handlebars->55->471",
5067
"default-mobile.handlebars->55->473",
5068
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5063
- "default.handlebars->121->2160",
5064
- "default.handlebars->121->2162",
5065
- "default.handlebars->121->3494",
5069
+ "default.handlebars->121->2169",
5070
+ "default.handlebars->121->2171",
5071
+ "default.handlebars->121->3503",
5072
"default.handlebars->121->765",
5073
"default.handlebars->121->888",
5074
"default.handlebars->121->890",
5069
- "default3.handlebars->121->2157",
5070
- "default3.handlebars->121->2158",
5071
- "default3.handlebars->121->3476",
5072
- "default3.handlebars->121->3478",
5075
+ "default3.handlebars->121->2166",
5076
+ "default3.handlebars->121->2167",
5077
+ "default3.handlebars->121->3485",
5078
+ "default3.handlebars->121->3487",
5079
"default3.handlebars->121->756",
5080
"default3.handlebars->121->879",
5081
"default3.handlebars->121->881"
@@ -5101,9 +5107,9 @@
5107
"zh-chs": "帐号设定",
5108
"zh-cht": "帳號設定",
5109
"xloc": [
5104
- "default-mobile.handlebars->55->1074",
5105
- "default.handlebars->121->3363",
5106
- "default3.handlebars->121->3347"
5110
+ "default-mobile.handlebars->55->1083",
5111
+ "default.handlebars->121->3372",
5112
+ "default3.handlebars->121->3356"
5113
]
5114
},
5115
{
@@ -5178,8 +5184,8 @@
5184
"pl": "Konto zmienione di synchronizacji z danymi LDAP.",
5185
"uk": "Акаунт змінено на синхронізацію з даними LDAP.",
5186
"xloc": [
5181
- "default.handlebars->121->2753",
5182
- "default3.handlebars->121->2743"
5187
+ "default.handlebars->121->2762",
5188
+ "default3.handlebars->121->2752"
5189
]
5190
},
5191
{
@@ -5208,8 +5214,8 @@
5214
"zh-chs": "帐户已更改:{0}",
5215
"zh-cht": "帳戶已更改:{0}",
5216
"xloc": [
5211
- "default.handlebars->121->2665",
5212
- "default3.handlebars->121->2655"
5217
+ "default.handlebars->121->2674",
5218
+ "default3.handlebars->121->2664"
5219
]
5220
},
5221
{
@@ -5238,8 +5244,8 @@
5244
"zh-chs": "创建帐户,电子邮件为{0}",
5245
"zh-cht": "創建帳戶,電子郵件為{0}",
5246
"xloc": [
5241
- "default.handlebars->121->2664",
5242
- "default3.handlebars->121->2654"
5247
+ "default.handlebars->121->2673",
5248
+ "default3.handlebars->121->2663"
5249
]
5250
},
5251
{
@@ -5268,8 +5274,8 @@
5274
"zh-chs": "已创建帐户,名称为 {0}。",
5275
"zh-cht": "已創建帳戶,名稱為 {0}。",
5276
"xloc": [
5271
- "default.handlebars->121->2727",
5272
- "default3.handlebars->121->2717"
5277
+ "default.handlebars->121->2736",
5278
+ "default3.handlebars->121->2726"
5279
]
5280
},
5281
{
@@ -5298,8 +5304,8 @@
5304
"zh-chs": "创建帐户,用户名是{0}",
5305
"zh-cht": "帳戶已創建,用戶名是{0}",
5306
"xloc": [
5301
- "default.handlebars->121->2663",
5302
- "default3.handlebars->121->2653"
5307
+ "default.handlebars->121->2672",
5308
+ "default3.handlebars->121->2662"
5309
]
5310
},
5311
{
@@ -5330,11 +5336,11 @@
5336
"xloc": [
5337
"default-mobile.handlebars->55->74",
5338
"default.handlebars->121->227",
5333
- "default.handlebars->121->2823",
5334
- "default.handlebars->121->3001",
5339
+ "default.handlebars->121->2832",
5340
+ "default.handlebars->121->3010",
5341
"default3.handlebars->121->224",
5336
- "default3.handlebars->121->2813",
5337
- "default3.handlebars->121->2989"
5342
+ "default3.handlebars->121->2822",
5343
+ "default3.handlebars->121->2998"
5344
]
5345
},
5346
{
@@ -5363,9 +5369,9 @@
5369
"zh-chs": "达到帐户限制。",
5370
"zh-cht": "達到帳戶限制。",
5371
"xloc": [
5366
- "default-mobile.handlebars->55->1086",
5367
- "default.handlebars->121->3375",
5368
- "default3.handlebars->121->3359",
5372
+ "default-mobile.handlebars->55->1095",
5373
+ "default.handlebars->121->3384",
5374
+ "default3.handlebars->121->3368",
5375
"login-mobile.handlebars->23->6",
5376
"login.handlebars->13->8",
5377
"login2.handlebars->17->206"
@@ -5428,8 +5434,8 @@
5434
"zh-chs": "帐号登录",
5435
"zh-cht": "帳號登錄",
5436
"xloc": [
5431
- "default.handlebars->121->2600",
5432
- "default3.handlebars->121->2590"
5437
+ "default.handlebars->121->2609",
5438
+ "default3.handlebars->121->2599"
5439
]
5440
},
5441
{
@@ -5458,8 +5464,8 @@
5464
"zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
5465
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
5466
"xloc": [
5461
- "default.handlebars->121->2706",
5462
- "default3.handlebars->121->2696"
5467
+ "default.handlebars->121->2715",
5468
+ "default3.handlebars->121->2705"
5469
]
5470
},
5471
{
@@ -5473,8 +5479,8 @@
5479
"pl": "Zapisy logowania tokenami użytkownika",
5480
"uk": "Записи токенів входу до акаунту",
5481
"xloc": [
5476
- "default.handlebars->121->3332",
5477
- "default3.handlebars->121->3316"
5482
+ "default.handlebars->121->3341",
5483
+ "default3.handlebars->121->3325"
5484
]
5485
},
5486
{
@@ -5503,8 +5509,8 @@
5509
"zh-chs": "帐户登出",
5510
"zh-cht": "帳戶登出",
5511
"xloc": [
5506
- "default.handlebars->121->2601",
5507
- "default3.handlebars->121->2591"
5512
+ "default.handlebars->121->2610",
5513
+ "default3.handlebars->121->2600"
5514
]
5515
},
5516
{
@@ -5564,8 +5570,8 @@
5570
"zh-chs": "帐户密码已更改:{0}",
5571
"zh-cht": "帳戶密碼已更改:{0}",
5572
"xloc": [
5567
- "default.handlebars->121->2673",
5568
- "default3.handlebars->121->2663"
5573
+ "default.handlebars->121->2682",
5574
+ "default3.handlebars->121->2672"
5575
]
5576
},
5577
{
@@ -5594,8 +5600,8 @@
5600
"zh-chs": "帐户已删除",
5601
"zh-cht": "帳戶已刪除",
5602
"xloc": [
5597
- "default.handlebars->121->2662",
5598
- "default3.handlebars->121->2652"
5603
+ "default.handlebars->121->2671",
5604
+ "default3.handlebars->121->2661"
5605
]
5606
},
5607
{
@@ -5654,10 +5660,10 @@
5660
"zh-chs": "指令",
5661
"zh-cht": "指令",
5662
"xloc": [
5657
- "default-mobile.handlebars->55->980",
5658
- "default.handlebars->121->1839",
5663
+ "default-mobile.handlebars->55->989",
5664
+ "default.handlebars->121->1848",
5665
"default.handlebars->container->column_l->p42->p42tbl->1->0->8",
5660
- "default3.handlebars->121->1817",
5666
+ "default3.handlebars->121->1826",
5667
"default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
5668
]
5669
},
@@ -5687,10 +5693,10 @@
5693
"zh-chs": "动作档案",
5694
"zh-cht": "動作檔案",
5695
"xloc": [
5690
- "default.handlebars->121->1362",
5691
- "default.handlebars->121->1364",
5692
- "default3.handlebars->121->1344",
5693
- "default3.handlebars->121->1346"
5696
+ "default.handlebars->121->1371",
5697
+ "default.handlebars->121->1373",
5698
+ "default3.handlebars->121->1353",
5699
+ "default3.handlebars->121->1355"
5700
]
5701
},
5702
{
@@ -5723,11 +5729,11 @@
5729
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
5730
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
5731
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
5726
- "default.handlebars->121->1024",
5732
+ "default.handlebars->121->1033",
5733
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
5734
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
5735
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
5730
- "default3.handlebars->121->1015",
5736
+ "default3.handlebars->121->1024",
5737
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
5738
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
5739
"default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -5847,8 +5853,8 @@
5853
"zh-chs": "如果ACM失败,则激活到CCM",
5854
"zh-cht": "如果ACM失敗,則激活到CCM",
5855
"xloc": [
5850
- "default.handlebars->121->2358",
5851
- "default3.handlebars->121->2345"
5856
+ "default.handlebars->121->2367",
5857
+ "default3.handlebars->121->2354"
5858
]
5859
},
5860
{
@@ -5879,14 +5885,14 @@
5885
"xloc": [
5886
"default-mobile.handlebars->55->499",
5887
"default-mobile.handlebars->55->501",
5882
- "default-mobile.handlebars->55->831",
5883
- "default-mobile.handlebars->55->865",
5884
- "default.handlebars->121->1689",
5885
- "default.handlebars->121->1723",
5888
+ "default-mobile.handlebars->55->840",
5889
+ "default-mobile.handlebars->55->874",
5890
+ "default.handlebars->121->1698",
5891
+ "default.handlebars->121->1732",
5892
"default.handlebars->121->921",
5893
"default.handlebars->121->923",
5888
- "default3.handlebars->121->1667",
5889
- "default3.handlebars->121->1701",
5894
+ "default3.handlebars->121->1676",
5895
+ "default3.handlebars->121->1710",
5896
"default3.handlebars->121->912",
5897
"default3.handlebars->121->914"
5898
]
@@ -5947,10 +5953,10 @@
5953
"zh-chs": "主动设备共享",
5954
"zh-cht": "主動設備共享",
5955
"xloc": [
5950
- "default.handlebars->121->1100",
5951
- "default.handlebars->121->2307",
5952
- "default3.handlebars->121->1091",
5953
- "default3.handlebars->121->2296"
5956
+ "default.handlebars->121->1109",
5957
+ "default.handlebars->121->2316",
5958
+ "default3.handlebars->121->1100",
5959
+ "default3.handlebars->121->2305"
5960
]
5961
},
5962
{
@@ -5979,8 +5985,8 @@
5985
"zh-chs": "活动登录令牌",
5986
"zh-cht": "活動登錄令牌",
5987
"xloc": [
5982
- "default.handlebars->121->2193",
5983
- "default3.handlebars->121->2186"
5988
+ "default.handlebars->121->2202",
5989
+ "default3.handlebars->121->2195"
5990
]
5991
},
5992
{
@@ -6009,9 +6015,9 @@
6015
"zh-chs": "活跃用户",
6016
"zh-cht": "活躍用戶",
6017
"xloc": [
6012
- "default-mobile.handlebars->55->787",
6013
- "default.handlebars->121->977",
6014
- "default3.handlebars->121->968"
6018
+ "default-mobile.handlebars->55->796",
6019
+ "default.handlebars->121->986",
6020
+ "default3.handlebars->121->977"
6021
]
6022
},
6023
{
@@ -6040,9 +6046,9 @@
6046
"zh-chs": "活跃用户",
6047
"zh-cht": "活躍用戶",
6048
"xloc": [
6043
- "default-mobile.handlebars->55->786",
6044
- "default.handlebars->121->976",
6045
- "default3.handlebars->121->967"
6049
+ "default-mobile.handlebars->55->795",
6050
+ "default.handlebars->121->985",
6051
+ "default3.handlebars->121->976"
6052
]
6053
},
6054
{
@@ -6072,10 +6078,10 @@
6078
"zh-cht": "添加",
6079
"xloc": [
6080
"default-mobile.handlebars->55->666",
6075
- "default.handlebars->121->1452",
6076
- "default.handlebars->121->1458",
6077
- "default3.handlebars->121->1434",
6078
- "default3.handlebars->121->1440",
6081
+ "default.handlebars->121->1461",
6082
+ "default.handlebars->121->1467",
6083
+ "default3.handlebars->121->1443",
6084
+ "default3.handlebars->121->1449",
6085
"sharing-mobile.handlebars->55->41"
6086
]
6087
},
@@ -6105,9 +6111,9 @@
6111
"zh-chs": "添加代理",
6112
"zh-cht": "新增代理",
6113
"xloc": [
6108
- "default.handlebars->121->2297",
6114
+ "default.handlebars->121->2306",
6115
"default.handlebars->121->526",
6110
- "default3.handlebars->121->2286",
6116
+ "default3.handlebars->121->2295",
6117
"default3.handlebars->121->517"
6118
]
6119
},
@@ -6137,13 +6143,13 @@
6143
"zh-chs": "添加设备",
6144
"zh-cht": "新增裝置",
6145
"xloc": [
6140
- "default.handlebars->121->2301",
6141
- "default.handlebars->121->2976",
6142
- "default.handlebars->121->3171",
6146
+ "default.handlebars->121->2310",
6147
+ "default.handlebars->121->2985",
6148
+ "default.handlebars->121->3180",
6149
"default.handlebars->121->530",
6144
- "default3.handlebars->121->2290",
6145
- "default3.handlebars->121->2964",
6146
- "default3.handlebars->121->3153",
6150
+ "default3.handlebars->121->2299",
6151
+ "default3.handlebars->121->2973",
6152
+ "default3.handlebars->121->3162",
6153
"default3.handlebars->121->521"
6154
]
6155
},
@@ -6173,8 +6179,8 @@
6179
"zh-chs": "添加设备日志",
6180
"zh-cht": "新增裝置日誌",
6181
"xloc": [
6176
- "default.handlebars->121->1186",
6177
- "default3.handlebars->121->1175"
6182
+ "default.handlebars->121->1195",
6183
+ "default3.handlebars->121->1184"
6184
]
6185
},
6186
{
@@ -6203,13 +6209,13 @@
6209
"zh-chs": "添加设备组",
6210
"zh-cht": "新增裝置群",
6211
"xloc": [
6206
- "default.handlebars->121->2446",
6207
- "default.handlebars->121->2970",
6208
- "default.handlebars->121->3159",
6212
+ "default.handlebars->121->2455",
6213
+ "default.handlebars->121->2979",
6214
+ "default.handlebars->121->3168",
6215
"default.handlebars->121->426",
6210
- "default3.handlebars->121->2436",
6211
- "default3.handlebars->121->2958",
6212
- "default3.handlebars->121->3141",
6216
+ "default3.handlebars->121->2445",
6217
+ "default3.handlebars->121->2967",
6218
+ "default3.handlebars->121->3150",
6219
"default3.handlebars->121->417"
6220
]
6221
},
@@ -6239,8 +6245,8 @@
6245
"zh-chs": "添加设备组权限",
6246
"zh-cht": "新增裝置群權限",
6247
"xloc": [
6242
- "default.handlebars->121->2443",
6243
- "default3.handlebars->121->2433"
6248
+ "default.handlebars->121->2452",
6249
+ "default3.handlebars->121->2442"
6250
]
6251
},
6252
{
@@ -6269,10 +6275,10 @@
6275
"zh-chs": "添加设备权限",
6276
"zh-cht": "新增裝置權限",
6277
"xloc": [
6272
- "default.handlebars->121->2448",
6273
- "default.handlebars->121->2450",
6274
- "default3.handlebars->121->2438",
6275
- "default3.handlebars->121->2440"
6278
+ "default.handlebars->121->2457",
6279
+ "default.handlebars->121->2459",
6280
+ "default3.handlebars->121->2447",
6281
+ "default3.handlebars->121->2449"
6282
]
6283
},
6284
{
@@ -6391,8 +6397,8 @@
6397
"zh-chs": "添加成员身份",
6398
"zh-cht": "新增成員身份",
6399
"xloc": [
6394
- "default.handlebars->121->3191",
6395
- "default3.handlebars->121->3173"
6400
+ "default.handlebars->121->3200",
6401
+ "default3.handlebars->121->3182"
6402
]
6403
},
6404
{
@@ -6451,14 +6457,14 @@
6457
"zh-chs": "添加安全密钥",
6458
"zh-cht": "新增安全密鑰",
6459
"xloc": [
6454
- "default.handlebars->121->1906",
6455
- "default.handlebars->121->1907",
6460
+ "default.handlebars->121->1915",
6461
+ "default.handlebars->121->1916",
6462
"default.handlebars->121->261",
6463
"default.handlebars->121->263",
6464
"default.handlebars->121->266",
6465
"default.handlebars->121->268",
6460
- "default3.handlebars->121->1882",
6461
- "default3.handlebars->121->1883",
6466
+ "default3.handlebars->121->1891",
6467
+ "default3.handlebars->121->1892",
6468
"default3.handlebars->121->256",
6469
"default3.handlebars->121->258",
6470
"default3.handlebars->121->261",
@@ -6491,9 +6497,9 @@
6497
"zh-chs": "添加用户",
6498
"zh-cht": "新增用戶",
6499
"xloc": [
6494
- "default-mobile.handlebars->55->998",
6495
- "default.handlebars->121->1092",
6496
- "default3.handlebars->121->1083"
6500
+ "default-mobile.handlebars->55->1007",
6501
+ "default.handlebars->121->1101",
6502
+ "default3.handlebars->121->1092"
6503
]
6504
},
6505
{
@@ -6522,8 +6528,8 @@
6528
"zh-chs": "添加用户设备权限",
6529
"zh-cht": "新增用戶裝置權限",
6530
"xloc": [
6525
- "default.handlebars->121->2453",
6526
- "default3.handlebars->121->2443"
6531
+ "default.handlebars->121->2462",
6532
+ "default3.handlebars->121->2452"
6533
]
6534
},
6535
{
@@ -6552,14 +6558,14 @@
6558
"zh-chs": "添加用户组",
6559
"zh-cht": "新增用戶群",
6560
"xloc": [
6555
- "default.handlebars->121->1093",
6556
- "default.handlebars->121->2291",
6557
- "default.handlebars->121->2445",
6558
- "default.handlebars->121->3165",
6559
- "default3.handlebars->121->1084",
6560
- "default3.handlebars->121->2280",
6561
- "default3.handlebars->121->2435",
6562
- "default3.handlebars->121->3147"
6561
+ "default.handlebars->121->1102",
6562
+ "default.handlebars->121->2300",
6563
+ "default.handlebars->121->2454",
6564
+ "default.handlebars->121->3174",
6565
+ "default3.handlebars->121->1093",
6566
+ "default3.handlebars->121->2289",
6567
+ "default3.handlebars->121->2444",
6568
+ "default3.handlebars->121->3156"
6569
]
6570
},
6571
{
@@ -6588,8 +6594,8 @@
6594
"zh-chs": "添加用户组设备权限",
6595
"zh-cht": "新增用戶群裝置權限",
6596
"xloc": [
6591
- "default.handlebars->121->2455",
6592
- "default3.handlebars->121->2445"
6597
+ "default.handlebars->121->2464",
6598
+ "default3.handlebars->121->2454"
6599
]
6600
},
6601
{
@@ -6618,7 +6624,7 @@
6624
"zh-chs": "将用户添加到设备组",
6625
"zh-cht": "將用戶新增到裝置群",
6626
"xloc": [
6621
- "default-mobile.handlebars->55->1039"
6627
+ "default-mobile.handlebars->55->1048"
6628
]
6629
},
6630
{
@@ -6647,10 +6653,10 @@
6653
"zh-chs": "添加用户",
6654
"zh-cht": "新增用戶",
6655
"xloc": [
6650
- "default.handlebars->121->2290",
6651
- "default.handlebars->121->2965",
6652
- "default3.handlebars->121->2279",
6653
- "default3.handlebars->121->2953"
6656
+ "default.handlebars->121->2299",
6657
+ "default.handlebars->121->2974",
6658
+ "default3.handlebars->121->2288",
6659
+ "default3.handlebars->121->2962"
6660
]
6661
},
6662
{
@@ -6679,8 +6685,8 @@
6685
"zh-chs": "将用户添加到设备组",
6686
"zh-cht": "將用戶新增到裝置群",
6687
"xloc": [
6682
- "default.handlebars->121->2442",
6683
- "default3.handlebars->121->2432"
6688
+ "default.handlebars->121->2451",
6689
+ "default3.handlebars->121->2441"
6690
]
6691
},
6692
{
@@ -6709,8 +6715,8 @@
6715
"zh-chs": "将用户添加到用户组",
6716
"zh-cht": "將用戶新增到用戶群",
6717
"xloc": [
6712
- "default.handlebars->121->3000",
6713
- "default3.handlebars->121->2988"
6718
+ "default.handlebars->121->3009",
6719
+ "default3.handlebars->121->2997"
6720
]
6721
},
6722
{
@@ -6889,9 +6895,9 @@
6895
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
6896
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
6897
"xloc": [
6892
- "default.handlebars->121->2296",
6898
+ "default.handlebars->121->2305",
6899
"default.handlebars->121->525",
6894
- "default3.handlebars->121->2285",
6900
+ "default3.handlebars->121->2294",
6901
"default3.handlebars->121->516"
6902
]
6903
},
@@ -6921,9 +6927,9 @@
6927
"zh-chs": "添加位于本地网络上的设备。",
6928
"zh-cht": "添加位於本地網絡上的設備。",
6929
"xloc": [
6924
- "default.handlebars->121->2300",
6930
+ "default.handlebars->121->2309",
6931
"default.handlebars->121->529",
6926
- "default3.handlebars->121->2289",
6932
+ "default3.handlebars->121->2298",
6933
"default3.handlebars->121->520"
6934
]
6935
},
@@ -7043,8 +7049,8 @@
7049
"zh-chs": "添加了身份验证应用程序",
7050
"zh-cht": "添加了身份驗證應用程序",
7051
"xloc": [
7046
- "default.handlebars->121->2689",
7047
- "default3.handlebars->121->2679"
7052
+ "default.handlebars->121->2698",
7053
+ "default3.handlebars->121->2688"
7054
]
7055
},
7056
{
@@ -7073,8 +7079,8 @@
7079
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
7080
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
7081
"xloc": [
7076
- "default.handlebars->121->2700",
7077
- "default3.handlebars->121->2690"
7082
+ "default.handlebars->121->2709",
7083
+ "default3.handlebars->121->2699"
7084
]
7085
},
7086
{
@@ -7103,8 +7109,8 @@
7109
"zh-chs": "添加了每天重复的设备共享 {0}。",
7110
"zh-cht": "添加了每天重複的設備共享 {0}。",
7111
"xloc": [
7106
- "default.handlebars->121->2737",
7107
- "default3.handlebars->121->2727"
7112
+ "default.handlebars->121->2746",
7113
+ "default3.handlebars->121->2736"
7114
]
7115
},
7116
{
@@ -7133,8 +7139,8 @@
7139
"zh-chs": "添加了每周重复的设备共享 {0}。",
7140
"zh-cht": "添加了每週重複的設備共享 {0}。",
7141
"xloc": [
7136
- "default.handlebars->121->2738",
7137
- "default3.handlebars->121->2728"
7142
+ "default.handlebars->121->2747",
7143
+ "default3.handlebars->121->2737"
7144
]
7145
},
7146
{
@@ -7163,8 +7169,8 @@
7169
"zh-chs": "添加了无限时间的设备共享 {0}。",
7170
"zh-cht": "添加了無限時間的設備共享 {0}。",
7171
"xloc": [
7166
- "default.handlebars->121->2730",
7167
- "default3.handlebars->121->2720"
7172
+ "default.handlebars->121->2739",
7173
+ "default3.handlebars->121->2729"
7174
]
7175
},
7176
{
@@ -7193,10 +7199,10 @@
7199
"zh-chs": "已将设备{0}添加到设备组{1}",
7200
"zh-cht": "已將設備{0}添加到設備組{1}",
7201
"xloc": [
7196
- "default.handlebars->121->2656",
7197
- "default.handlebars->121->2683",
7198
- "default3.handlebars->121->2646",
7199
- "default3.handlebars->121->2673"
7202
+ "default.handlebars->121->2665",
7203
+ "default.handlebars->121->2692",
7204
+ "default3.handlebars->121->2655",
7205
+ "default3.handlebars->121->2682"
7206
]
7207
},
7208
{
@@ -7225,8 +7231,8 @@
7231
"zh-chs": "添加登录令牌",
7232
"zh-cht": "添加了登錄令牌",
7233
"xloc": [
7228
- "default.handlebars->121->2714",
7229
- "default3.handlebars->121->2704"
7234
+ "default.handlebars->121->2723",
7235
+ "default3.handlebars->121->2713"
7236
]
7237
},
7238
{
@@ -7255,8 +7261,8 @@
7261
"zh-chs": "新增推送通知认证装置",
7262
"zh-cht": "增加推送通知認證設備",
7263
"xloc": [
7258
- "default.handlebars->121->2712",
7259
- "default3.handlebars->121->2702"
7264
+ "default.handlebars->121->2721",
7265
+ "default3.handlebars->121->2711"
7266
]
7267
},
7268
{
@@ -7285,8 +7291,8 @@
7291
"zh-chs": "添加了安全密钥",
7292
"zh-cht": "添加了安全密鑰",
7293
"xloc": [
7288
- "default.handlebars->121->2694",
7289
- "default3.handlebars->121->2684"
7294
+ "default.handlebars->121->2703",
7295
+ "default3.handlebars->121->2693"
7296
]
7297
},
7298
{
@@ -7315,8 +7321,8 @@
7321
"zh-chs": "已将用户组{0}添加到设备组{1}",
7322
"zh-cht": "已將用戶組{0}添加到設備組{1}",
7323
"xloc": [
7318
- "default.handlebars->121->2667",
7319
- "default3.handlebars->121->2657"
7324
+ "default.handlebars->121->2676",
7325
+ "default3.handlebars->121->2666"
7326
]
7327
},
7328
{
@@ -7345,10 +7351,10 @@
7351
"zh-chs": "已将用户{0}添加到用户组{1}",
7352
"zh-cht": "已將用戶{0}添加到用戶組{1}",
7353
"xloc": [
7348
- "default.handlebars->121->2670",
7354
"default.handlebars->121->2679",
7350
- "default3.handlebars->121->2660",
7351
- "default3.handlebars->121->2669"
7355
+ "default.handlebars->121->2688",
7356
+ "default3.handlebars->121->2669",
7357
+ "default3.handlebars->121->2678"
7358
]
7359
},
7360
{
@@ -7436,9 +7442,9 @@
7442
"zh-chs": "管理员控制模式(ACM)",
7443
"zh-cht": "管理員控制模式(ACM)",
7444
"xloc": [
7439
- "default-mobile.handlebars->55->833",
7440
- "default.handlebars->121->1691",
7441
- "default3.handlebars->121->1669"
7445
+ "default-mobile.handlebars->55->842",
7446
+ "default.handlebars->121->1700",
7447
+ "default3.handlebars->121->1678"
7448
]
7449
},
7450
{
@@ -7467,9 +7473,9 @@
7473
"zh-chs": "管理员凭证",
7474
"zh-cht": "管理員憑證",
7475
"xloc": [
7470
- "default-mobile.handlebars->55->839",
7471
- "default.handlebars->121->1697",
7472
- "default3.handlebars->121->1675"
7476
+ "default-mobile.handlebars->55->848",
7477
+ "default.handlebars->121->1706",
7478
+ "default3.handlebars->121->1684"
7479
]
7480
},
7481
{
@@ -7498,15 +7504,15 @@
7504
"zh-chs": "管理员PowerShell",
7505
"zh-cht": "管理員PowerShell",
7506
"xloc": [
7501
- "default.handlebars->121->3211",
7502
- "default.handlebars->121->3221",
7503
- "default.handlebars->121->3286",
7504
- "default.handlebars->121->3339",
7507
+ "default.handlebars->121->3220",
7508
+ "default.handlebars->121->3230",
7509
+ "default.handlebars->121->3295",
7510
+ "default.handlebars->121->3348",
7511
"default.handlebars->termShellContextMenu->3",
7506
- "default3.handlebars->121->3195",
7507
- "default3.handlebars->121->3205",
7508
- "default3.handlebars->121->3270",
7509
- "default3.handlebars->121->3323",
7512
+ "default3.handlebars->121->3204",
7513
+ "default3.handlebars->121->3214",
7514
+ "default3.handlebars->121->3279",
7515
+ "default3.handlebars->121->3332",
7516
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
7517
"player.handlebars->31->29",
7518
"xterm.handlebars->termShellContextMenu->cxtermps"
@@ -7538,8 +7544,8 @@
7544
"zh-chs": "管理领域",
7545
"zh-cht": "管理領域",
7546
"xloc": [
7541
- "default.handlebars->121->3052",
7542
- "default3.handlebars->121->3040"
7547
+ "default.handlebars->121->3061",
7548
+ "default3.handlebars->121->3049"
7549
]
7550
},
7551
{
@@ -7599,8 +7605,8 @@
7605
"zh-chs": "管理领域",
7606
"zh-cht": "管理領域",
7607
"xloc": [
7602
- "default.handlebars->121->2897",
7603
- "default3.handlebars->121->2885"
7608
+ "default.handlebars->121->2906",
7609
+ "default3.handlebars->121->2894"
7610
]
7611
},
7612
{
@@ -7629,8 +7635,8 @@
7635
"zh-chs": "管理员",
7636
"zh-cht": "管理員",
7637
"xloc": [
7632
- "default.handlebars->121->2815",
7633
- "default3.handlebars->121->2805"
7638
+ "default.handlebars->121->2824",
7639
+ "default3.handlebars->121->2814"
7640
]
7641
},
7642
{
@@ -7660,8 +7666,8 @@
7666
"zh-cht": "南非文",
7667
"xloc": [
7668
"default-mobile.handlebars->55->120",
7663
- "default.handlebars->121->1909",
7664
- "default3.handlebars->121->1885",
7669
+ "default.handlebars->121->1918",
7670
+ "default3.handlebars->121->1894",
7671
"login2.handlebars->17->1"
7672
]
7673
},
@@ -7695,16 +7701,16 @@
7701
"default-mobile.handlebars->55->463",
7702
"default-mobile.handlebars->55->520",
7703
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7698
- "default.handlebars->121->2526",
7699
- "default.handlebars->121->2539",
7700
- "default.handlebars->121->3437",
7704
+ "default.handlebars->121->2535",
7705
+ "default.handlebars->121->2548",
7706
+ "default.handlebars->121->3446",
7707
"default.handlebars->121->446",
7708
"default.handlebars->121->753",
7709
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7710
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
7705
- "default3.handlebars->121->2516",
7706
- "default3.handlebars->121->2529",
7707
- "default3.handlebars->121->3421",
7711
+ "default3.handlebars->121->2525",
7712
+ "default3.handlebars->121->2538",
7713
+ "default3.handlebars->121->3430",
7714
"default3.handlebars->121->437",
7715
"default3.handlebars->121->744",
7716
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -7737,10 +7743,10 @@
7743
"zh-chs": "代理+英特尔AMT",
7744
"zh-cht": "代理+Intel® AMT",
7745
"xloc": [
7740
- "default.handlebars->121->2528",
7741
- "default.handlebars->121->2541",
7742
- "default3.handlebars->121->2518",
7743
- "default3.handlebars->121->2531"
7746
+ "default.handlebars->121->2537",
7747
+ "default.handlebars->121->2550",
7748
+ "default3.handlebars->121->2527",
7749
+ "default3.handlebars->121->2540"
7750
]
7751
},
7752
{
@@ -7800,11 +7806,11 @@
7806
"zh-chs": "代理控制台",
7807
"zh-cht": "代理控制台",
7808
"xloc": [
7803
- "default-mobile.handlebars->55->1045",
7809
+ "default-mobile.handlebars->55->1054",
7810
"default-mobile.handlebars->55->602",
7805
- "default.handlebars->121->2463",
7811
+ "default.handlebars->121->2472",
7812
"default.handlebars->121->843",
7807
- "default3.handlebars->121->2453",
7813
+ "default3.handlebars->121->2462",
7814
"default3.handlebars->121->834"
7815
]
7816
},
@@ -7834,8 +7840,8 @@
7840
"zh-chs": "代理错误计数器",
7841
"zh-cht": "代理錯誤計數器",
7842
"xloc": [
7837
- "default.handlebars->121->3405",
7838
- "default3.handlebars->121->3389"
7843
+ "default.handlebars->121->3414",
7844
+ "default3.handlebars->121->3398"
7845
]
7846
},
7847
{
@@ -8031,10 +8037,10 @@
8037
"zh-chs": "代理自行共享",
8038
"zh-cht": "代理自行共享",
8039
"xloc": [
8034
- "default.handlebars->121->1121",
8035
- "default.handlebars->121->2328",
8036
- "default3.handlebars->121->1112",
8037
- "default3.handlebars->121->2317"
8040
+ "default.handlebars->121->1130",
8041
+ "default.handlebars->121->2337",
8042
+ "default3.handlebars->121->1121",
8043
+ "default3.handlebars->121->2326"
8044
]
8045
},
8046
{
@@ -8063,8 +8069,8 @@
8069
"zh-chs": "代理会话",
8070
"zh-cht": "代理時段",
8071
"xloc": [
8066
- "default.handlebars->121->3422",
8067
- "default3.handlebars->121->3406"
8072
+ "default.handlebars->121->3431",
8073
+ "default3.handlebars->121->3415"
8074
]
8075
},
8076
{
@@ -8156,9 +8162,9 @@
8162
"zh-chs": "代理类型",
8163
"zh-cht": "代理類型",
8164
"xloc": [
8159
- "default.handlebars->121->2537",
8165
+ "default.handlebars->121->2546",
8166
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
8161
- "default3.handlebars->121->2527",
8167
+ "default3.handlebars->121->2536",
8168
"default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8169
]
8170
},
@@ -8220,8 +8226,8 @@
8226
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
8227
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
8228
"xloc": [
8223
- "default.handlebars->121->2653",
8224
- "default3.handlebars->121->2643"
8229
+ "default.handlebars->121->2662",
8230
+ "default3.handlebars->121->2652"
8231
]
8232
},
8233
{
@@ -8250,11 +8256,11 @@
8256
"zh-chs": "代理已连接",
8257
"zh-cht": "代理已連接",
8258
"xloc": [
8253
- "default.handlebars->121->1079",
8254
- "default.handlebars->121->1080",
8259
+ "default.handlebars->121->1088",
8260
+ "default.handlebars->121->1089",
8261
"default.handlebars->121->277",
8256
- "default3.handlebars->121->1070",
8257
- "default3.handlebars->121->1071",
8262
+ "default3.handlebars->121->1079",
8263
+ "default3.handlebars->121->1080",
8264
"default3.handlebars->121->272"
8265
]
8266
},
@@ -8374,9 +8380,9 @@
8380
"zh-chs": "代理离线",
8381
"zh-cht": "代理離線",
8382
"xloc": [
8377
- "default-mobile.handlebars->55->963",
8378
- "default.handlebars->121->1822",
8379
- "default3.handlebars->121->1800"
8383
+ "default-mobile.handlebars->55->972",
8384
+ "default.handlebars->121->1831",
8385
+ "default3.handlebars->121->1809"
8386
]
8387
},
8388
{
@@ -8405,9 +8411,9 @@
8411
"zh-chs": "代理在线",
8412
"zh-cht": "代理在線",
8413
"xloc": [
8408
- "default-mobile.handlebars->55->962",
8409
- "default.handlebars->121->1821",
8410
- "default3.handlebars->121->1799"
8414
+ "default-mobile.handlebars->55->971",
8415
+ "default.handlebars->121->1830",
8416
+ "default3.handlebars->121->1808"
8417
]
8418
},
8419
{
@@ -8436,8 +8442,8 @@
8442
"zh-chs": "代理在特权降低的远程设备上运行。",
8443
"zh-cht": "代理在特權降低的遠程設備上運行。",
8444
"xloc": [
8439
- "default.handlebars->121->1073",
8440
- "default3.handlebars->121->1064"
8445
+ "default.handlebars->121->1082",
8446
+ "default3.handlebars->121->1073"
8447
]
8448
},
8449
{
@@ -8466,11 +8472,11 @@
8472
"zh-chs": "代理",
8473
"zh-cht": "代理",
8474
"xloc": [
8469
- "default.handlebars->121->2494",
8470
- "default.handlebars->121->3450",
8475
+ "default.handlebars->121->2503",
8476
+ "default.handlebars->121->3459",
8477
"default.handlebars->121->613",
8472
- "default3.handlebars->121->2484",
8473
- "default3.handlebars->121->3434",
8478
+ "default3.handlebars->121->2493",
8479
+ "default3.handlebars->121->3443",
8480
"default3.handlebars->121->604"
8481
]
8482
},
@@ -8501,8 +8507,8 @@
8507
"zh-cht": "阿爾巴尼亞文",
8508
"xloc": [
8509
"default-mobile.handlebars->55->121",
8504
- "default.handlebars->121->1910",
8505
- "default3.handlebars->121->1886",
8510
+ "default.handlebars->121->1919",
8511
+ "default3.handlebars->121->1895",
8512
"login2.handlebars->17->2"
8513
]
8514
},
@@ -8513,9 +8519,9 @@
8519
"pl": "Okno Powiadomienia",
8520
"uk": "Вікно Попередження",
8521
"xloc": [
8516
- "default.handlebars->121->1205",
8522
+ "default.handlebars->121->1214",
8523
"default.handlebars->121->806",
8518
- "default3.handlebars->121->1194",
8524
+ "default3.handlebars->121->1203",
8525
"default3.handlebars->121->797"
8526
]
8527
},
@@ -8548,9 +8554,9 @@
8554
"default-mobile.handlebars->55->377",
8555
"default-mobile.handlebars->55->703",
8556
"default-mobile.handlebars->55->705",
8551
- "default.handlebars->121->3254",
8557
+ "default.handlebars->121->3263",
8558
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
8553
- "default3.handlebars->121->3238",
8559
+ "default3.handlebars->121->3247",
8560
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
8561
"sharing-mobile.handlebars->55->79",
8562
"sharing-mobile.handlebars->55->81"
@@ -8582,8 +8588,8 @@
8588
"zh-chs": "全部可用",
8589
"zh-cht": "全部可用",
8590
"xloc": [
8585
- "default.handlebars->121->2777",
8586
- "default3.handlebars->121->2767"
8591
+ "default.handlebars->121->2786",
8592
+ "default3.handlebars->121->2776"
8593
]
8594
},
8595
{
@@ -8612,9 +8618,9 @@
8618
"zh-chs": "所有可用的代理",
8619
"zh-cht": "所有可用的代理",
8620
"xloc": [
8615
- "default.handlebars->121->2495",
8621
+ "default.handlebars->121->2504",
8622
"default.handlebars->121->614",
8617
- "default3.handlebars->121->2485",
8623
+ "default3.handlebars->121->2494",
8624
"default3.handlebars->121->605"
8625
]
8626
},
@@ -8644,8 +8650,8 @@
8650
"zh-chs": "所有显示",
8651
"zh-cht": "所有顯示",
8652
"xloc": [
8647
- "default.handlebars->121->1503",
8648
- "default3.handlebars->121->1483"
8653
+ "default.handlebars->121->1512",
8654
+ "default3.handlebars->121->1492"
8655
]
8656
},
8657
{
@@ -8674,8 +8680,8 @@
8680
"zh-chs": "所有事件",
8681
"zh-cht": "所有事件",
8682
"xloc": [
8677
- "default.handlebars->121->2775",
8678
- "default3.handlebars->121->2765"
8683
+ "default.handlebars->121->2784",
8684
+ "default3.handlebars->121->2774"
8685
]
8686
},
8687
{
@@ -8704,12 +8710,12 @@
8710
"zh-chs": "全部聚焦",
8711
"zh-cht": "全部聚焦",
8712
"xloc": [
8707
- "default.handlebars->121->1421",
8708
- "default.handlebars->121->1423",
8709
- "default.handlebars->121->1424",
8710
- "default3.handlebars->121->1402",
8711
- "default3.handlebars->121->1405",
8712
- "default3.handlebars->121->1406"
8713
+ "default.handlebars->121->1430",
8714
+ "default.handlebars->121->1432",
8715
+ "default.handlebars->121->1433",
8716
+ "default3.handlebars->121->1411",
8717
+ "default3.handlebars->121->1414",
8718
+ "default3.handlebars->121->1415"
8719
]
8720
},
8721
{
@@ -8750,7 +8756,7 @@
8756
"zh-chs": "所有主题",
8757
"zh-cht": "所有主題",
8758
"xloc": [
8753
- "default3.handlebars->121->2154"
8759
+ "default3.handlebars->121->2163"
8760
]
8761
},
8762
{
@@ -8785,8 +8791,8 @@
8791
{
8792
"en": "Allow to override server device name until next connection",
8793
"xloc": [
8788
- "default.handlebars->121->2400",
8789
- "default3.handlebars->121->2390"
8794
+ "default.handlebars->121->2409",
8795
+ "default3.handlebars->121->2399"
8796
]
8797
},
8798
{
@@ -8815,10 +8821,10 @@
8821
"zh-chs": "允许用户管理此设备组和该组中的设备。",
8822
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
8823
"xloc": [
8818
- "default.handlebars->121->2407",
8819
- "default.handlebars->121->2997",
8820
- "default3.handlebars->121->2397",
8821
- "default3.handlebars->121->2985"
8824
+ "default.handlebars->121->2416",
8825
+ "default.handlebars->121->3006",
8826
+ "default3.handlebars->121->2406",
8827
+ "default3.handlebars->121->2994"
8828
]
8829
},
8830
{
@@ -8847,8 +8853,8 @@
8853
"zh-chs": "允许用户管理此设备。",
8854
"zh-cht": "允許用戶管理此裝置。",
8855
"xloc": [
8850
- "default.handlebars->121->2408",
8851
- "default3.handlebars->121->2398"
8856
+ "default.handlebars->121->2417",
8857
+ "default3.handlebars->121->2407"
8858
]
8859
},
8860
{
@@ -8878,11 +8884,11 @@
8884
"zh-cht": "允許",
8885
"xloc": [
8886
"default.handlebars->121->306",
8881
- "default.handlebars->121->3513",
8882
- "default.handlebars->121->3516",
8887
+ "default.handlebars->121->3522",
8888
+ "default.handlebars->121->3525",
8889
"default3.handlebars->121->302",
8884
- "default3.handlebars->121->3497",
8885
- "default3.handlebars->121->3500"
8890
+ "default3.handlebars->121->3506",
8891
+ "default3.handlebars->121->3509"
8892
]
8893
},
8894
{
@@ -8944,10 +8950,10 @@
8950
"xloc": [
8951
"default-mobile.handlebars->55->659",
8952
"default-mobile.handlebars->55->663",
8947
- "default.handlebars->121->1445",
8948
- "default.handlebars->121->1449",
8949
- "default3.handlebars->121->1427",
8950
- "default3.handlebars->121->1431",
8953
+ "default.handlebars->121->1454",
8954
+ "default.handlebars->121->1458",
8955
+ "default3.handlebars->121->1436",
8956
+ "default3.handlebars->121->1440",
8957
"sharing-mobile.handlebars->55->34",
8958
"sharing-mobile.handlebars->55->38"
8959
]
@@ -8978,8 +8984,8 @@
8984
"zh-chs": "替代Shell",
8985
"zh-cht": "替代Shell",
8986
"xloc": [
8981
- "default.handlebars->121->1411",
8982
- "default3.handlebars->121->1392"
8987
+ "default.handlebars->121->1420",
8988
+ "default3.handlebars->121->1401"
8989
]
8990
},
8991
{
@@ -9070,8 +9076,8 @@
9076
"zh-chs": "备用(F10 = ESC + 0)",
9077
"zh-cht": "備用(F10 = ESC + 0)",
9078
"xloc": [
9073
- "default.handlebars->121->1537",
9074
- "default3.handlebars->121->1517",
9079
+ "default.handlebars->121->1546",
9080
+ "default3.handlebars->121->1526",
9081
"sharing.handlebars->49->37"
9082
]
9083
},
@@ -9142,14 +9148,14 @@
9148
"zh-chs": "一直通知",
9149
"zh-cht": "一直通知",
9150
"xloc": [
9145
- "default.handlebars->121->2267",
9146
- "default.handlebars->121->2956",
9147
- "default.handlebars->121->3061",
9148
- "default.handlebars->121->987",
9149
- "default3.handlebars->121->2256",
9150
- "default3.handlebars->121->2944",
9151
- "default3.handlebars->121->3049",
9152
- "default3.handlebars->121->978"
9151
+ "default.handlebars->121->2276",
9152
+ "default.handlebars->121->2965",
9153
+ "default.handlebars->121->3070",
9154
+ "default.handlebars->121->996",
9155
+ "default3.handlebars->121->2265",
9156
+ "default3.handlebars->121->2953",
9157
+ "default3.handlebars->121->3058",
9158
+ "default3.handlebars->121->987"
9159
]
9160
},
9161
{
@@ -9178,14 +9184,14 @@
9184
"zh-chs": "一直提示",
9185
"zh-cht": "一直提示",
9186
"xloc": [
9181
- "default.handlebars->121->2268",
9182
- "default.handlebars->121->2957",
9183
- "default.handlebars->121->3062",
9184
- "default.handlebars->121->988",
9185
- "default3.handlebars->121->2257",
9186
- "default3.handlebars->121->2945",
9187
- "default3.handlebars->121->3050",
9188
- "default3.handlebars->121->979"
9187
+ "default.handlebars->121->2277",
9188
+ "default.handlebars->121->2966",
9189
+ "default.handlebars->121->3071",
9190
+ "default.handlebars->121->997",
9191
+ "default3.handlebars->121->2266",
9192
+ "default3.handlebars->121->2954",
9193
+ "default3.handlebars->121->3059",
9194
+ "default3.handlebars->121->988"
9195
]
9196
},
9197
{
@@ -9266,8 +9272,8 @@
9272
"pl": "Wystąpił nieznany błąd.",
9273
"uk": "Сталася невідома помилка.",
9274
"xloc": [
9269
- "default.handlebars->121->3200",
9270
- "default3.handlebars->121->3184"
9275
+ "default.handlebars->121->3209",
9276
+ "default3.handlebars->121->3193"
9277
]
9278
},
9279
{
@@ -9332,7 +9338,7 @@
9338
"zh-chs": "Android APK",
9339
"zh-cht": "Android APK",
9340
"xloc": [
9335
- "default-mobile.handlebars->55->1017",
9341
+ "default-mobile.handlebars->55->1026",
9342
"default.handlebars->121->682",
9343
"default3.handlebars->121->673"
9344
]
@@ -9392,7 +9398,7 @@
9398
"zh-chs": "安卓安装",
9399
"zh-cht": "安卓安裝",
9400
"xloc": [
9395
- "default-mobile.handlebars->55->1019"
9401
+ "default-mobile.handlebars->55->1028"
9402
]
9403
},
9404
{
@@ -9411,9 +9417,9 @@
9417
"nl": "Android Versie",
9418
"uk": "Версія Android",
9419
"xloc": [
9414
- "default-mobile.handlebars->55->806",
9415
- "default.handlebars->121->1654",
9416
- "default3.handlebars->121->1634"
9420
+ "default-mobile.handlebars->55->815",
9421
+ "default.handlebars->121->1663",
9422
+ "default3.handlebars->121->1643"
9423
]
9424
},
9425
{
@@ -9473,10 +9479,10 @@
9479
"zh-chs": "杀毒软件未激活",
9480
"zh-cht": "殺毒軟件未激活",
9481
"xloc": [
9476
- "default.handlebars->121->2530",
9477
- "default.handlebars->121->2544",
9478
- "default3.handlebars->121->2520",
9479
- "default3.handlebars->121->2534"
9482
+ "default.handlebars->121->2539",
9483
+ "default.handlebars->121->2553",
9484
+ "default3.handlebars->121->2529",
9485
+ "default3.handlebars->121->2543"
9486
]
9487
},
9488
{
@@ -9505,9 +9511,9 @@
9511
"zh-chs": "杀毒软件",
9512
"zh-cht": "防毒軟體",
9513
"xloc": [
9508
- "default-mobile.handlebars->55->783",
9509
- "default.handlebars->121->973",
9510
- "default3.handlebars->121->964"
9514
+ "default-mobile.handlebars->55->792",
9515
+ "default.handlebars->121->982",
9516
+ "default3.handlebars->121->973"
9517
]
9518
},
9519
{
@@ -9795,8 +9801,8 @@
9801
"zh-cht": "阿拉伯文(阿爾及利亞)",
9802
"xloc": [
9803
"default-mobile.handlebars->55->123",
9798
- "default.handlebars->121->1912",
9799
- "default3.handlebars->121->1888",
9804
+ "default.handlebars->121->1921",
9805
+ "default3.handlebars->121->1897",
9806
"login2.handlebars->17->4"
9807
]
9808
},
@@ -9827,8 +9833,8 @@
9833
"zh-cht": "阿拉伯文(巴林)",
9834
"xloc": [
9835
"default-mobile.handlebars->55->124",
9830
- "default.handlebars->121->1913",
9831
- "default3.handlebars->121->1889",
9836
+ "default.handlebars->121->1922",
9837
+ "default3.handlebars->121->1898",
9838
"login2.handlebars->17->5"
9839
]
9840
},
@@ -9859,8 +9865,8 @@
9865
"zh-cht": "阿拉伯文(埃及)",
9866
"xloc": [
9867
"default-mobile.handlebars->55->125",
9862
- "default.handlebars->121->1914",
9863
- "default3.handlebars->121->1890",
9868
+ "default.handlebars->121->1923",
9869
+ "default3.handlebars->121->1899",
9870
"login2.handlebars->17->6"
9871
]
9872
},
@@ -9891,8 +9897,8 @@
9897
"zh-cht": "阿拉伯文(伊拉克)",
9898
"xloc": [
9899
"default-mobile.handlebars->55->126",
9894
- "default.handlebars->121->1915",
9895
- "default3.handlebars->121->1891",
9900
+ "default.handlebars->121->1924",
9901
+ "default3.handlebars->121->1900",
9902
"login2.handlebars->17->7"
9903
]
9904
},
@@ -9923,8 +9929,8 @@
9929
"zh-cht": "阿拉伯文(約旦)",
9930
"xloc": [
9931
"default-mobile.handlebars->55->127",
9926
- "default.handlebars->121->1916",
9927
- "default3.handlebars->121->1892",
9932
+ "default.handlebars->121->1925",
9933
+ "default3.handlebars->121->1901",
9934
"login2.handlebars->17->8"
9935
]
9936
},
@@ -9955,8 +9961,8 @@
9961
"zh-cht": "阿拉伯文(科威特)",
9962
"xloc": [
9963
"default-mobile.handlebars->55->128",
9958
- "default.handlebars->121->1917",
9959
- "default3.handlebars->121->1893",
9964
+ "default.handlebars->121->1926",
9965
+ "default3.handlebars->121->1902",
9966
"login2.handlebars->17->9"
9967
]
9968
},
@@ -9987,8 +9993,8 @@
9993
"zh-cht": "阿拉伯文(黎巴嫩)",
9994
"xloc": [
9995
"default-mobile.handlebars->55->129",
9990
- "default.handlebars->121->1918",
9991
- "default3.handlebars->121->1894",
9996
+ "default.handlebars->121->1927",
9997
+ "default3.handlebars->121->1903",
9998
"login2.handlebars->17->10"
9999
]
10000
},
@@ -10019,8 +10025,8 @@
10025
"zh-cht": "阿拉伯文(利比亞)",
10026
"xloc": [
10027
"default-mobile.handlebars->55->130",
10022
- "default.handlebars->121->1919",
10023
- "default3.handlebars->121->1895",
10028
+ "default.handlebars->121->1928",
10029
+ "default3.handlebars->121->1904",
10030
"login2.handlebars->17->11"
10031
]
10032
},
@@ -10051,8 +10057,8 @@
10057
"zh-cht": "阿拉伯文(摩洛哥)",
10058
"xloc": [
10059
"default-mobile.handlebars->55->131",
10054
- "default.handlebars->121->1920",
10055
- "default3.handlebars->121->1896",
10060
+ "default.handlebars->121->1929",
10061
+ "default3.handlebars->121->1905",
10062
"login2.handlebars->17->12"
10063
]
10064
},
@@ -10083,8 +10089,8 @@
10089
"zh-cht": "阿拉伯文(阿曼)",
10090
"xloc": [
10091
"default-mobile.handlebars->55->132",
10086
- "default.handlebars->121->1921",
10087
- "default3.handlebars->121->1897",
10092
+ "default.handlebars->121->1930",
10093
+ "default3.handlebars->121->1906",
10094
"login2.handlebars->17->13"
10095
]
10096
},
@@ -10115,8 +10121,8 @@
10121
"zh-cht": "阿拉伯文(卡塔爾)",
10122
"xloc": [
10123
"default-mobile.handlebars->55->133",
10118
- "default.handlebars->121->1922",
10119
- "default3.handlebars->121->1898",
10124
+ "default.handlebars->121->1931",
10125
+ "default3.handlebars->121->1907",
10126
"login2.handlebars->17->14"
10127
]
10128
},
@@ -10147,8 +10153,8 @@
10153
"zh-cht": "阿拉伯文(沙特阿拉伯)",
10154
"xloc": [
10155
"default-mobile.handlebars->55->134",
10150
- "default.handlebars->121->1923",
10151
- "default3.handlebars->121->1899",
10156
+ "default.handlebars->121->1932",
10157
+ "default3.handlebars->121->1908",
10158
"login2.handlebars->17->15"
10159
]
10160
},
@@ -10179,8 +10185,8 @@
10185
"zh-cht": "阿拉伯文(標準)",
10186
"xloc": [
10187
"default-mobile.handlebars->55->122",
10182
- "default.handlebars->121->1911",
10183
- "default3.handlebars->121->1887",
10188
+ "default.handlebars->121->1920",
10189
+ "default3.handlebars->121->1896",
10190
"login2.handlebars->17->3"
10191
]
10192
},
@@ -10211,8 +10217,8 @@
10217
"zh-cht": "阿拉伯文(敘利亞)",
10218
"xloc": [
10219
"default-mobile.handlebars->55->135",
10214
- "default.handlebars->121->1924",
10215
- "default3.handlebars->121->1900",
10220
+ "default.handlebars->121->1933",
10221
+ "default3.handlebars->121->1909",
10222
"login2.handlebars->17->16"
10223
]
10224
},
@@ -10243,8 +10249,8 @@
10249
"zh-cht": "阿拉伯文(突尼斯)",
10250
"xloc": [
10251
"default-mobile.handlebars->55->136",
10246
- "default.handlebars->121->1925",
10247
- "default3.handlebars->121->1901",
10252
+ "default.handlebars->121->1934",
10253
+ "default3.handlebars->121->1910",
10254
"login2.handlebars->17->17"
10255
]
10256
},
@@ -10275,8 +10281,8 @@
10281
"zh-cht": "阿拉伯文(阿聯酋)",
10282
"xloc": [
10283
"default-mobile.handlebars->55->137",
10278
- "default.handlebars->121->1926",
10279
- "default3.handlebars->121->1902",
10284
+ "default.handlebars->121->1935",
10285
+ "default3.handlebars->121->1911",
10286
"login2.handlebars->17->18"
10287
]
10288
},
@@ -10307,8 +10313,8 @@
10313
"zh-cht": "阿拉伯文(也門)",
10314
"xloc": [
10315
"default-mobile.handlebars->55->138",
10310
- "default.handlebars->121->1927",
10311
- "default3.handlebars->121->1903",
10316
+ "default.handlebars->121->1936",
10317
+ "default3.handlebars->121->1912",
10318
"login2.handlebars->17->19"
10319
]
10320
},
@@ -10339,8 +10345,8 @@
10345
"zh-cht": "阿拉貢文",
10346
"xloc": [
10347
"default-mobile.handlebars->55->139",
10342
- "default.handlebars->121->1928",
10343
- "default3.handlebars->121->1904",
10348
+ "default.handlebars->121->1937",
10349
+ "default3.handlebars->121->1913",
10350
"login2.handlebars->17->20"
10351
]
10352
},
@@ -10374,14 +10380,14 @@
10380
"default-mobile.handlebars->55->742",
10381
"default-mobile.handlebars->55->744",
10382
"default-mobile.handlebars->55->751",
10377
- "default.handlebars->121->1620",
10378
- "default.handlebars->121->1622",
10379
- "default.handlebars->121->1624",
10380
- "default.handlebars->121->1634",
10381
- "default3.handlebars->121->1600",
10382
- "default3.handlebars->121->1602",
10383
- "default3.handlebars->121->1604",
10384
- "default3.handlebars->121->1611"
10383
+ "default.handlebars->121->1629",
10384
+ "default.handlebars->121->1631",
10385
+ "default.handlebars->121->1633",
10386
+ "default.handlebars->121->1643",
10387
+ "default3.handlebars->121->1609",
10388
+ "default3.handlebars->121->1611",
10389
+ "default3.handlebars->121->1613",
10390
+ "default3.handlebars->121->1620"
10391
]
10392
},
10393
{
@@ -10440,9 +10446,9 @@
10446
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
10447
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
10448
"xloc": [
10443
- "default-mobile.handlebars->55->1005",
10444
- "default.handlebars->121->2372",
10445
- "default3.handlebars->121->2359"
10449
+ "default-mobile.handlebars->55->1014",
10450
+ "default.handlebars->121->2381",
10451
+ "default3.handlebars->121->2368"
10452
]
10453
},
10454
{
@@ -10471,8 +10477,8 @@
10477
"zh-chs": "您确定要删除节点{0}吗?",
10478
"zh-cht": "你確定要刪除節點{0}嗎?",
10479
"xloc": [
10474
- "default.handlebars->121->1337",
10475
- "default3.handlebars->121->1321"
10480
+ "default.handlebars->121->1346",
10481
+ "default3.handlebars->121->1330"
10482
]
10483
},
10484
{
@@ -10482,8 +10488,8 @@
10488
"nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?",
10489
"uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на робочому столі віддаленого пристрою?",
10490
"xloc": [
10485
- "default.handlebars->121->1558",
10486
- "default3.handlebars->121->1538"
10491
+ "default.handlebars->121->1567",
10492
+ "default3.handlebars->121->1547"
10493
]
10494
},
10495
{
@@ -10512,8 +10518,8 @@
10518
"zh-chs": "您确定要卸载所选代理吗?",
10519
"zh-cht": "你確定要卸載所選代理嗎?",
10520
"xloc": [
10515
- "default.handlebars->121->1326",
10516
- "default3.handlebars->121->1311"
10521
+ "default.handlebars->121->1335",
10522
+ "default3.handlebars->121->1320"
10523
]
10524
},
10525
{
@@ -10542,8 +10548,8 @@
10548
"zh-chs": "您确定要卸载所选的{0}代理吗?",
10549
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
10550
"xloc": [
10545
- "default.handlebars->121->1325",
10546
- "default3.handlebars->121->1310"
10551
+ "default.handlebars->121->1334",
10552
+ "default3.handlebars->121->1319"
10553
]
10554
},
10555
{
@@ -10572,8 +10578,8 @@
10578
"zh-chs": "您确定要{0}插件吗:{1}",
10579
"zh-cht": "你確定要{0}外掛嗎:{1}",
10580
"xloc": [
10575
- "default.handlebars->121->3503",
10576
- "default3.handlebars->121->3487"
10581
+ "default.handlebars->121->3512",
10582
+ "default3.handlebars->121->3496"
10583
]
10584
},
10585
{
@@ -10634,8 +10640,8 @@
10640
"zh-cht": "亞美尼亞文",
10641
"xloc": [
10642
"default-mobile.handlebars->55->140",
10637
- "default.handlebars->121->1929",
10638
- "default3.handlebars->121->1905",
10643
+ "default.handlebars->121->1938",
10644
+ "default3.handlebars->121->1914",
10645
"login2.handlebars->17->21"
10646
]
10647
},
@@ -10848,8 +10854,8 @@
10854
"zh-cht": "阿薩姆文",
10855
"xloc": [
10856
"default-mobile.handlebars->55->141",
10851
- "default.handlebars->121->1930",
10852
- "default3.handlebars->121->1906",
10857
+ "default.handlebars->121->1939",
10858
+ "default3.handlebars->121->1915",
10859
"login2.handlebars->17->22"
10860
]
10861
},
@@ -10879,9 +10885,9 @@
10885
"zh-chs": "资产标签",
10886
"zh-cht": "資產標籤",
10887
"xloc": [
10882
- "default-mobile.handlebars->55->860",
10883
- "default.handlebars->121->1718",
10884
- "default3.handlebars->121->1696"
10888
+ "default-mobile.handlebars->55->869",
10889
+ "default.handlebars->121->1727",
10890
+ "default3.handlebars->121->1705"
10891
]
10892
},
10893
{
@@ -11033,8 +11039,8 @@
11039
"zh-cht": "阿斯圖里亞斯文",
11040
"xloc": [
11041
"default-mobile.handlebars->55->142",
11036
- "default.handlebars->121->1931",
11037
- "default3.handlebars->121->1907",
11042
+ "default.handlebars->121->1940",
11043
+ "default3.handlebars->121->1916",
11044
"login2.handlebars->17->23"
11045
]
11046
},
@@ -11064,8 +11070,8 @@
11070
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
11071
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11072
"xloc": [
11067
- "default.handlebars->121->2622",
11068
- "default3.handlebars->121->2612"
11073
+ "default.handlebars->121->2631",
11074
+ "default3.handlebars->121->2621"
11075
]
11076
},
11077
{
@@ -11097,12 +11103,12 @@
11103
"default-mobile.handlebars->55->675",
11104
"default-mobile.handlebars->55->679",
11105
"default-mobile.handlebars->55->691",
11100
- "default.handlebars->121->1512",
11101
- "default.handlebars->121->1516",
11102
- "default.handlebars->121->1528",
11103
- "default3.handlebars->121->1492",
11104
- "default3.handlebars->121->1496",
11105
- "default3.handlebars->121->1508",
11106
+ "default.handlebars->121->1521",
11107
+ "default.handlebars->121->1525",
11108
+ "default.handlebars->121->1537",
11109
+ "default3.handlebars->121->1501",
11110
+ "default3.handlebars->121->1505",
11111
+ "default3.handlebars->121->1517",
11112
"sharing-mobile.handlebars->55->47",
11113
"sharing-mobile.handlebars->55->56",
11114
"sharing-mobile.handlebars->55->64",
@@ -11139,8 +11145,8 @@
11145
"zh-chs": "认证软件",
11146
"zh-cht": "認證軟體",
11147
"xloc": [
11142
- "default.handlebars->121->3065",
11143
- "default3.handlebars->121->3053"
11148
+ "default.handlebars->121->3074",
11149
+ "default3.handlebars->121->3062"
11150
]
11151
},
11152
{
@@ -11169,12 +11175,12 @@
11175
"zh-chs": "认证设备",
11176
"zh-cht": "認證設備",
11177
"xloc": [
11172
- "default.handlebars->121->1892",
11173
- "default.handlebars->121->1894",
11174
- "default.handlebars->121->1898",
11175
- "default3.handlebars->121->1869",
11176
- "default3.handlebars->121->1871",
11177
- "default3.handlebars->121->1874"
11178
+ "default.handlebars->121->1901",
11179
+ "default.handlebars->121->1903",
11180
+ "default.handlebars->121->1907",
11181
+ "default3.handlebars->121->1878",
11182
+ "default3.handlebars->121->1880",
11183
+ "default3.handlebars->121->1883"
11184
]
11185
},
11186
{
@@ -11205,10 +11211,10 @@
11211
"xloc": [
11212
"default-mobile.handlebars->55->692",
11213
"default-mobile.handlebars->55->698",
11208
- "default.handlebars->121->1530",
11209
- "default.handlebars->121->1545",
11210
- "default3.handlebars->121->1510",
11211
- "default3.handlebars->121->1525",
11214
+ "default.handlebars->121->1539",
11215
+ "default.handlebars->121->1554",
11216
+ "default3.handlebars->121->1519",
11217
+ "default3.handlebars->121->1534",
11218
"sharing-mobile.handlebars->55->57",
11219
"sharing-mobile.handlebars->55->74"
11220
]
@@ -11243,12 +11249,12 @@
11249
"default-mobile.handlebars->55->327",
11250
"default-mobile.handlebars->55->80",
11251
"default-mobile.handlebars->55->85",
11246
- "default.handlebars->121->1888",
11247
- "default.handlebars->121->1890",
11252
+ "default.handlebars->121->1897",
11253
+ "default.handlebars->121->1899",
11254
"default.handlebars->121->235",
11255
"default.handlebars->121->240",
11250
- "default3.handlebars->121->1865",
11251
- "default3.handlebars->121->1867",
11256
+ "default3.handlebars->121->1874",
11257
+ "default3.handlebars->121->1876",
11258
"default3.handlebars->121->232",
11259
"default3.handlebars->121->237"
11260
]
@@ -11400,10 +11406,10 @@
11406
"zh-chs": "自动删除",
11407
"zh-cht": "自動刪除",
11408
"xloc": [
11403
- "default.handlebars->121->2250",
11404
- "default.handlebars->121->2768",
11405
- "default3.handlebars->121->2239",
11406
- "default3.handlebars->121->2758"
11409
+ "default.handlebars->121->2259",
11410
+ "default.handlebars->121->2777",
11411
+ "default3.handlebars->121->2248",
11412
+ "default3.handlebars->121->2767"
11413
]
11414
},
11415
{
@@ -11469,8 +11475,8 @@
11475
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
11476
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
11477
"xloc": [
11472
- "default.handlebars->121->2703",
11473
- "default3.handlebars->121->2693"
11478
+ "default.handlebars->121->2712",
11479
+ "default3.handlebars->121->2702"
11480
]
11481
},
11482
{
@@ -11561,8 +11567,8 @@
11567
"zh-chs": "自动移除非活动设备",
11568
"zh-cht": "自動移除非活動設備",
11569
"xloc": [
11564
- "default.handlebars->121->2402",
11565
- "default3.handlebars->121->2392"
11570
+ "default.handlebars->121->2411",
11571
+ "default3.handlebars->121->2401"
11572
]
11573
},
11574
{
@@ -11591,8 +11597,8 @@
11597
"zh-chs": "可用內存",
11598
"zh-cht": "可用內存",
11599
"xloc": [
11594
- "default.handlebars->121->3431",
11595
- "default3.handlebars->121->3415"
11600
+ "default.handlebars->121->3440",
11601
+ "default3.handlebars->121->3424"
11602
]
11603
},
11604
{
@@ -11622,8 +11628,8 @@
11628
"zh-cht": "阿塞拜疆文",
11629
"xloc": [
11630
"default-mobile.handlebars->55->143",
11625
- "default.handlebars->121->1932",
11626
- "default3.handlebars->121->1908",
11631
+ "default.handlebars->121->1941",
11632
+ "default3.handlebars->121->1917",
11633
"login2.handlebars->17->24"
11634
]
11635
},
@@ -11664,18 +11670,24 @@
11670
"default-mobile.handlebars->55->760",
11671
"default-mobile.handlebars->55->764",
11672
"default-mobile.handlebars->55->768",
11673
+ "default-mobile.handlebars->55->783",
11674
+ "default-mobile.handlebars->55->787",
11675
"default.handlebars->121->460",
11676
"default.handlebars->121->462",
11677
"default.handlebars->121->464",
11678
"default.handlebars->121->950",
11679
"default.handlebars->121->954",
11680
"default.handlebars->121->958",
11681
+ "default.handlebars->121->973",
11682
+ "default.handlebars->121->977",
11683
"default3.handlebars->121->451",
11684
"default3.handlebars->121->453",
11685
"default3.handlebars->121->455",
11686
"default3.handlebars->121->941",
11687
"default3.handlebars->121->945",
11678
- "default3.handlebars->121->949"
11688
+ "default3.handlebars->121->949",
11689
+ "default3.handlebars->121->964",
11690
+ "default3.handlebars->121->968"
11691
]
11692
},
11693
{
@@ -11704,9 +11716,9 @@
11716
"zh-chs": "的BIOS",
11717
"zh-cht": "的BIOS",
11718
"xloc": [
11707
- "default-mobile.handlebars->55->848",
11708
- "default.handlebars->121->1706",
11709
- "default3.handlebars->121->1684"
11719
+ "default-mobile.handlebars->55->857",
11720
+ "default.handlebars->121->1715",
11721
+ "default3.handlebars->121->1693"
11722
]
11723
},
11724
{
@@ -11845,8 +11857,8 @@
11857
"zh-cht": "退格",
11858
"xloc": [
11859
"default-mobile.handlebars->55->640",
11848
- "default.handlebars->121->1427",
11849
- "default3.handlebars->121->1409",
11860
+ "default.handlebars->121->1436",
11861
+ "default3.handlebars->121->1418",
11862
"sharing-mobile.handlebars->55->17"
11863
]
11864
},
@@ -11907,12 +11919,12 @@
11919
"zh-chs": "后台运行与交互式运行",
11920
"zh-cht": "背景與互動",
11921
"xloc": [
11910
- "default.handlebars->121->2501",
11911
- "default.handlebars->121->2508",
11922
+ "default.handlebars->121->2510",
11923
+ "default.handlebars->121->2517",
11924
"default.handlebars->121->600",
11925
"default.handlebars->121->621",
11914
- "default3.handlebars->121->2491",
11915
- "default3.handlebars->121->2498",
11926
+ "default3.handlebars->121->2500",
11927
+ "default3.handlebars->121->2507",
11928
"default3.handlebars->121->591",
11929
"default3.handlebars->121->612"
11930
]
@@ -11944,13 +11956,13 @@
11956
"zh-cht": "僅背景",
11957
"xloc": [
11958
"agentinvite.handlebars->13->9",
11947
- "default.handlebars->121->2502",
11948
- "default.handlebars->121->2510",
11959
+ "default.handlebars->121->2511",
11960
+ "default.handlebars->121->2519",
11961
"default.handlebars->121->601",
11962
"default.handlebars->121->622",
11963
"default.handlebars->121->639",
11952
- "default3.handlebars->121->2492",
11953
- "default3.handlebars->121->2500",
11964
+ "default3.handlebars->121->2501",
11965
+ "default3.handlebars->121->2509",
11966
"default3.handlebars->121->592",
11967
"default3.handlebars->121->613",
11968
"default3.handlebars->121->630"
@@ -12013,10 +12025,10 @@
12025
"zh-chs": "备用码",
12026
"zh-cht": "備用碼",
12027
"xloc": [
12016
- "default.handlebars->121->3069",
12017
- "default.handlebars->121->3307",
12018
- "default3.handlebars->121->3057",
12019
- "default3.handlebars->121->3291"
12028
+ "default.handlebars->121->3078",
12029
+ "default.handlebars->121->3316",
12030
+ "default3.handlebars->121->3066",
12031
+ "default3.handlebars->121->3300"
12032
]
12033
},
12034
{
@@ -12106,8 +12118,8 @@
12118
"zh-chs": "错误的签名",
12119
"zh-cht": "錯誤的簽名",
12120
"xloc": [
12109
- "default.handlebars->121->3412",
12110
- "default3.handlebars->121->3396"
12121
+ "default.handlebars->121->3421",
12122
+ "default3.handlebars->121->3405"
12123
]
12124
},
12125
{
@@ -12136,8 +12148,8 @@
12148
"zh-chs": "错误的网络证书",
12149
"zh-cht": "錯誤的網絡憑證",
12150
"xloc": [
12139
- "default.handlebars->121->3411",
12140
- "default3.handlebars->121->3395"
12151
+ "default.handlebars->121->3420",
12152
+ "default3.handlebars->121->3404"
12153
]
12154
},
12155
{
@@ -12167,8 +12179,8 @@
12179
"zh-cht": "巴斯克",
12180
"xloc": [
12181
"default-mobile.handlebars->55->144",
12170
- "default.handlebars->121->1933",
12171
- "default3.handlebars->121->1909",
12182
+ "default.handlebars->121->1942",
12183
+ "default3.handlebars->121->1918",
12184
"login2.handlebars->17->25"
12185
]
12186
},
@@ -12273,8 +12285,8 @@
12285
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
12286
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
12287
"xloc": [
12276
- "default.handlebars->121->2702",
12277
- "default3.handlebars->121->2692"
12288
+ "default.handlebars->121->2711",
12289
+ "default3.handlebars->121->2701"
12290
]
12291
},
12292
{
@@ -12300,9 +12312,9 @@
12312
"zh-chs": "电池",
12313
"zh-cht": "電池",
12314
"xloc": [
12303
- "default-mobile.handlebars->55->905",
12304
- "default.handlebars->121->1763",
12305
- "default3.handlebars->121->1741"
12315
+ "default-mobile.handlebars->55->914",
12316
+ "default.handlebars->121->1772",
12317
+ "default3.handlebars->121->1750"
12318
]
12319
},
12320
{
@@ -12330,9 +12342,9 @@
12342
"zh-chs": "电池充电",
12343
"zh-cht": "電池充電",
12344
"xloc": [
12333
- "default-mobile.handlebars->55->903",
12334
- "default.handlebars->121->1761",
12335
- "default3.handlebars->121->1739"
12345
+ "default-mobile.handlebars->55->912",
12346
+ "default.handlebars->121->1770",
12347
+ "default3.handlebars->121->1748"
12348
]
12349
},
12350
{
@@ -12362,8 +12374,8 @@
12374
"zh-cht": "白俄羅斯文",
12375
"xloc": [
12376
"default-mobile.handlebars->55->146",
12365
- "default.handlebars->121->1935",
12366
- "default3.handlebars->121->1911",
12377
+ "default.handlebars->121->1944",
12378
+ "default3.handlebars->121->1920",
12379
"login2.handlebars->17->27"
12380
]
12381
},
@@ -12394,8 +12406,8 @@
12406
"zh-cht": "孟加拉",
12407
"xloc": [
12408
"default-mobile.handlebars->55->147",
12397
- "default.handlebars->121->1936",
12398
- "default3.handlebars->121->1912",
12409
+ "default.handlebars->121->1945",
12410
+ "default3.handlebars->121->1921",
12411
"login2.handlebars->17->28"
12412
]
12413
},
@@ -12437,9 +12449,9 @@
12449
"nl": "BitLocker",
12450
"uk": "BitLocker",
12451
"xloc": [
12440
- "default-mobile.handlebars->55->940",
12441
- "default.handlebars->121->1798",
12442
- "default3.handlebars->121->1776"
12452
+ "default-mobile.handlebars->55->949",
12453
+ "default.handlebars->121->1807",
12454
+ "default3.handlebars->121->1785"
12455
]
12456
},
12457
{
@@ -12449,9 +12461,9 @@
12461
"pl": "Informacje o BitLocker",
12462
"uk": "Інформація о BitLocker",
12463
"xloc": [
12452
- "default-mobile.handlebars->55->961",
12453
- "default.handlebars->121->1819",
12454
- "default3.handlebars->121->1797"
12464
+ "default-mobile.handlebars->55->970",
12465
+ "default.handlebars->121->1828",
12466
+ "default3.handlebars->121->1806"
12467
]
12468
},
12469
{
@@ -12480,9 +12492,9 @@
12492
"zh-chs": "引导加载程序",
12493
"zh-cht": "引導加載程序",
12494
"xloc": [
12483
- "default-mobile.handlebars->55->803",
12484
- "default.handlebars->121->1651",
12485
- "default3.handlebars->121->1631"
12495
+ "default-mobile.handlebars->55->812",
12496
+ "default.handlebars->121->1660",
12497
+ "default3.handlebars->121->1640"
12498
]
12499
},
12500
{
@@ -12512,8 +12524,8 @@
12524
"zh-cht": "波斯尼亞文",
12525
"xloc": [
12526
"default-mobile.handlebars->55->148",
12515
- "default.handlebars->121->1937",
12516
- "default3.handlebars->121->1913",
12527
+ "default.handlebars->121->1946",
12528
+ "default3.handlebars->121->1922",
12529
"login2.handlebars->17->29"
12530
]
12531
},
@@ -12544,8 +12556,8 @@
12556
"zh-cht": "布列塔尼",
12557
"xloc": [
12558
"default-mobile.handlebars->55->149",
12547
- "default.handlebars->121->1938",
12548
- "default3.handlebars->121->1914",
12559
+ "default.handlebars->121->1947",
12560
+ "default3.handlebars->121->1923",
12561
"login2.handlebars->17->30"
12562
]
12563
},
@@ -12575,9 +12587,9 @@
12587
"zh-chs": "广播",
12588
"zh-cht": "廣播",
12589
"xloc": [
12578
- "default.handlebars->121->2963",
12590
+ "default.handlebars->121->2972",
12591
"default.handlebars->container->column_l->p4->3->1->0->3->1",
12580
- "default3.handlebars->121->2951",
12592
+ "default3.handlebars->121->2960",
12593
"default3.handlebars->container->column_l->p4->3->1->0->1->3"
12594
]
12595
},
@@ -12607,8 +12619,8 @@
12619
"zh-chs": "广播消息",
12620
"zh-cht": "廣播消息",
12621
"xloc": [
12610
- "default.handlebars->121->2879",
12611
- "default3.handlebars->121->2869"
12622
+ "default.handlebars->121->2888",
12623
+ "default3.handlebars->121->2878"
12624
]
12625
},
12626
{
@@ -12637,8 +12649,8 @@
12649
"zh-chs": "向所有连接的用户广播消息。",
12650
"zh-cht": "向所有連接的用戶廣播消息。",
12651
"xloc": [
12640
- "default.handlebars->121->2874",
12641
- "default3.handlebars->121->2864"
12652
+ "default.handlebars->121->2883",
12653
+ "default3.handlebars->121->2873"
12654
]
12655
},
12656
{
@@ -12667,8 +12679,8 @@
12679
"zh-chs": "浏览器",
12680
"zh-cht": "瀏覽器",
12681
"xloc": [
12670
- "default.handlebars->121->3278",
12671
- "default3.handlebars->121->3262"
12682
+ "default.handlebars->121->3287",
12683
+ "default3.handlebars->121->3271"
12684
]
12685
},
12686
{
@@ -12759,8 +12771,8 @@
12771
"zh-cht": "內部版本號",
12772
"xloc": [
12773
"default-mobile.handlebars->55->739",
12762
- "default.handlebars->121->1619",
12763
- "default3.handlebars->121->1599"
12774
+ "default.handlebars->121->1628",
12775
+ "default3.handlebars->121->1608"
12776
]
12777
},
12778
{
@@ -12790,8 +12802,8 @@
12802
"zh-cht": "保加利亞文",
12803
"xloc": [
12804
"default-mobile.handlebars->55->145",
12793
- "default.handlebars->121->1934",
12794
- "default3.handlebars->121->1910",
12805
+ "default.handlebars->121->1943",
12806
+ "default3.handlebars->121->1919",
12807
"login2.handlebars->17->26"
12808
]
12809
},
@@ -12822,8 +12834,8 @@
12834
"zh-cht": "緬甸文",
12835
"xloc": [
12836
"default-mobile.handlebars->55->150",
12825
- "default.handlebars->121->1939",
12826
- "default3.handlebars->121->1915",
12837
+ "default.handlebars->121->1948",
12838
+ "default3.handlebars->121->1924",
12839
"login2.handlebars->17->31"
12840
]
12841
},
@@ -12853,8 +12865,8 @@
12865
"zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
12866
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
12867
"xloc": [
12856
- "default.handlebars->121->2404",
12857
- "default3.handlebars->121->2394"
12868
+ "default.handlebars->121->2413",
12869
+ "default3.handlebars->121->2403"
12870
]
12871
},
12872
{
@@ -12883,8 +12895,8 @@
12895
"zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
12896
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
12897
"xloc": [
12886
- "default.handlebars->121->2405",
12887
- "default3.handlebars->121->2395"
12898
+ "default.handlebars->121->2414",
12899
+ "default3.handlebars->121->2404"
12900
]
12901
},
12902
{
@@ -12926,8 +12938,8 @@
12938
"zh-chs": "字节输入",
12939
"zh-cht": "字節輸入",
12940
"xloc": [
12929
- "default.handlebars->121->3274",
12930
- "default3.handlebars->121->3258"
12941
+ "default.handlebars->121->3283",
12942
+ "default3.handlebars->121->3267"
12943
]
12944
},
12945
{
@@ -12956,8 +12968,8 @@
12968
"zh-chs": "字节输出",
12969
"zh-cht": "字節輸出",
12970
"xloc": [
12959
- "default.handlebars->121->3275",
12960
- "default3.handlebars->121->3259"
12971
+ "default.handlebars->121->3284",
12972
+ "default3.handlebars->121->3268"
12973
]
12974
},
12975
{
@@ -13066,8 +13078,8 @@
13078
"zh-chs": "CCM模式",
13079
"zh-cht": "CCM模式",
13080
"xloc": [
13069
- "default.handlebars->121->2355",
13070
- "default3.handlebars->121->2342"
13081
+ "default.handlebars->121->2364",
13082
+ "default3.handlebars->121->2351"
13083
]
13084
},
13085
{
@@ -13075,15 +13087,15 @@
13087
"en": "CD-ROM",
13088
"nl": "CD-ROM",
13089
"xloc": [
13078
- "default-mobile.handlebars->55->933",
13079
- "default-mobile.handlebars->55->945",
13080
- "default-mobile.handlebars->55->952",
13081
- "default.handlebars->121->1791",
13082
- "default.handlebars->121->1803",
13083
- "default.handlebars->121->1810",
13084
- "default3.handlebars->121->1769",
13085
- "default3.handlebars->121->1781",
13086
- "default3.handlebars->121->1788"
13090
+ "default-mobile.handlebars->55->942",
13091
+ "default-mobile.handlebars->55->954",
13092
+ "default-mobile.handlebars->55->961",
13093
+ "default.handlebars->121->1800",
13094
+ "default.handlebars->121->1812",
13095
+ "default.handlebars->121->1819",
13096
+ "default3.handlebars->121->1778",
13097
+ "default3.handlebars->121->1790",
13098
+ "default3.handlebars->121->1797"
13099
]
13100
},
13101
{
@@ -13113,10 +13125,10 @@
13125
"zh-cht": "CIRA",
13126
"xloc": [
13127
"default-mobile.handlebars->55->464",
13116
- "default.handlebars->121->3438",
13128
+ "default.handlebars->121->3447",
13129
"default.handlebars->121->448",
13130
"default.handlebars->121->755",
13119
- "default3.handlebars->121->3422",
13131
+ "default3.handlebars->121->3431",
13132
"default3.handlebars->121->439",
13133
"default3.handlebars->121->746"
13134
]
@@ -13147,8 +13159,8 @@
13159
"zh-chs": "CIRA服务器",
13160
"zh-cht": "CIRA伺服器",
13161
"xloc": [
13150
- "default.handlebars->121->3487",
13151
- "default3.handlebars->121->3471"
13162
+ "default.handlebars->121->3496",
13163
+ "default3.handlebars->121->3480"
13164
]
13165
},
13166
{
@@ -13177,8 +13189,8 @@
13189
"zh-chs": "CIRA服务器命令",
13190
"zh-cht": "CIRA伺服器指令",
13191
"xloc": [
13180
- "default.handlebars->121->3488",
13181
- "default3.handlebars->121->3472"
13192
+ "default.handlebars->121->3497",
13193
+ "default3.handlebars->121->3481"
13194
]
13195
},
13196
{
@@ -13237,8 +13249,8 @@
13249
"zh-chs": "CIRA设置",
13250
"zh-cht": "CIRA設置",
13251
"xloc": [
13240
- "default.handlebars->121->2363",
13241
- "default3.handlebars->121->2349"
13252
+ "default.handlebars->121->2372",
13253
+ "default3.handlebars->121->2358"
13254
]
13255
},
13256
{
@@ -13267,14 +13279,14 @@
13279
"zh-chs": "CPU",
13280
"zh-cht": "CPU",
13281
"xloc": [
13270
- "default-mobile.handlebars->55->854",
13271
- "default.handlebars->121->1614",
13272
- "default.handlebars->121->1712",
13273
- "default.handlebars->121->3463",
13282
+ "default-mobile.handlebars->55->863",
13283
+ "default.handlebars->121->1623",
13284
+ "default.handlebars->121->1721",
13285
+ "default.handlebars->121->3472",
13286
"default.handlebars->container->column_l->p40->3->1->p40type->5",
13275
- "default3.handlebars->121->1594",
13276
- "default3.handlebars->121->1690",
13277
- "default3.handlebars->121->3447",
13287
+ "default3.handlebars->121->1603",
13288
+ "default3.handlebars->121->1699",
13289
+ "default3.handlebars->121->3456",
13290
"default3.handlebars->container->column_l->p40->3->3->p40type->5"
13291
]
13292
},
@@ -13304,8 +13316,8 @@
13316
"zh-chs": "CPU负载",
13317
"zh-cht": "CPU負載",
13318
"xloc": [
13307
- "default.handlebars->121->3427",
13308
- "default3.handlebars->121->3411"
13319
+ "default.handlebars->121->3436",
13320
+ "default3.handlebars->121->3420"
13321
]
13322
},
13323
{
@@ -13334,8 +13346,8 @@
13346
"zh-chs": "最近15分钟的CPU负载",
13347
"zh-cht": "最近15分鐘的CPU負載",
13348
"xloc": [
13337
- "default.handlebars->121->3430",
13338
- "default3.handlebars->121->3414"
13349
+ "default.handlebars->121->3439",
13350
+ "default3.handlebars->121->3423"
13351
]
13352
},
13353
{
@@ -13364,8 +13376,8 @@
13376
"zh-chs": "最近5分钟的CPU负载",
13377
"zh-cht": "最近5分鐘的CPU負載",
13378
"xloc": [
13367
- "default.handlebars->121->3429",
13368
- "default3.handlebars->121->3413"
13379
+ "default.handlebars->121->3438",
13380
+ "default3.handlebars->121->3422"
13381
]
13382
},
13383
{
@@ -13394,8 +13406,8 @@
13406
"zh-chs": "最近一分钟的CPU负载",
13407
"zh-cht": "最近一分鐘的CPU負載",
13408
"xloc": [
13397
- "default.handlebars->121->3428",
13398
- "default3.handlebars->121->3412"
13409
+ "default.handlebars->121->3437",
13410
+ "default3.handlebars->121->3421"
13411
]
13412
},
13413
{
@@ -13424,11 +13436,11 @@
13436
"zh-chs": "CR+LF",
13437
"zh-cht": "CR+LF",
13438
"xloc": [
13427
- "default.handlebars->121->1508",
13428
- "default.handlebars->121->1539",
13439
+ "default.handlebars->121->1517",
13440
+ "default.handlebars->121->1548",
13441
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
13430
- "default3.handlebars->121->1488",
13431
- "default3.handlebars->121->1519",
13442
+ "default3.handlebars->121->1497",
13443
+ "default3.handlebars->121->1528",
13444
"default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
13445
"sharing.handlebars->49->25",
13446
"sharing.handlebars->49->39",
@@ -13461,8 +13473,8 @@
13473
"zh-chs": "CSV",
13474
"zh-cht": "CSV",
13475
"xloc": [
13464
- "default.handlebars->121->2785",
13465
- "default3.handlebars->121->2775"
13476
+ "default.handlebars->121->2794",
13477
+ "default3.handlebars->121->2784"
13478
]
13479
},
13480
{
@@ -13491,11 +13503,11 @@
13503
"zh-chs": "CSV格式",
13504
"zh-cht": "CSV格式",
13505
"xloc": [
13494
- "default.handlebars->121->2789",
13495
- "default.handlebars->121->2866",
13506
+ "default.handlebars->121->2798",
13507
+ "default.handlebars->121->2875",
13508
"default.handlebars->121->828",
13497
- "default3.handlebars->121->2779",
13498
- "default3.handlebars->121->2856",
13509
+ "default3.handlebars->121->2788",
13510
+ "default3.handlebars->121->2865",
13511
"default3.handlebars->121->819"
13512
]
13513
},
@@ -13505,8 +13517,8 @@
13517
"nl": "Het CSV bestandsformaat is als volgt:",
13518
"uk": "Формат файлу CSV нижче:",
13519
"xloc": [
13508
- "default.handlebars->121->2852",
13509
- "default3.handlebars->121->2842"
13520
+ "default.handlebars->121->2861",
13521
+ "default3.handlebars->121->2851"
13522
]
13523
},
13524
{
@@ -13535,8 +13547,8 @@
13547
"zh-chs": "呼叫错误",
13548
"zh-cht": "呼叫錯誤",
13549
"xloc": [
13538
- "default.handlebars->121->3522",
13539
- "default3.handlebars->121->3507"
13550
+ "default.handlebars->121->3531",
13551
+ "default3.handlebars->121->3516"
13552
]
13553
},
13554
{
@@ -13549,10 +13561,10 @@
13561
"pl": "CallMeBot",
13562
"uk": "CallMeBot",
13563
"xloc": [
13552
- "default.handlebars->121->1857",
13553
- "default.handlebars->121->3104",
13554
- "default3.handlebars->121->1834",
13555
- "default3.handlebars->121->3092"
13564
+ "default.handlebars->121->1866",
13565
+ "default.handlebars->121->3113",
13566
+ "default3.handlebars->121->1843",
13567
+ "default3.handlebars->121->3101"
13568
]
13569
},
13570
{
@@ -13614,12 +13626,12 @@
13626
"agent-translations.json",
13627
"default-mobile.handlebars->55->336",
13628
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
13617
- "default.handlebars->121->2215",
13618
- "default.handlebars->121->3493",
13619
- "default.handlebars->121->3507",
13629
+ "default.handlebars->121->2224",
13630
+ "default.handlebars->121->3502",
13631
+ "default.handlebars->121->3516",
13632
"default.handlebars->121->573",
13633
"default.handlebars->container->dialog->idx_dlgButtonBar",
13622
- "default3.handlebars->121->3491",
13634
+ "default3.handlebars->121->3500",
13635
"default3.handlebars->121->564",
13636
"default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton",
13637
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -13688,30 +13700,30 @@
13700
"zh-chs": "容量",
13701
"zh-cht": "容量",
13702
"xloc": [
13691
- "default-mobile.handlebars->55->908",
13692
- "default-mobile.handlebars->55->914",
13693
- "default-mobile.handlebars->55->920",
13694
- "default-mobile.handlebars->55->925",
13695
- "default-mobile.handlebars->55->927",
13696
- "default-mobile.handlebars->55->930",
13697
- "default-mobile.handlebars->55->942",
13698
- "default-mobile.handlebars->55->949",
13699
- "default.handlebars->121->1766",
13700
- "default.handlebars->121->1772",
13701
- "default.handlebars->121->1778",
13702
- "default.handlebars->121->1783",
13703
- "default.handlebars->121->1785",
13704
- "default.handlebars->121->1788",
13705
- "default.handlebars->121->1800",
13706
- "default.handlebars->121->1807",
13707
- "default3.handlebars->121->1744",
13708
- "default3.handlebars->121->1750",
13709
- "default3.handlebars->121->1756",
13710
- "default3.handlebars->121->1761",
13711
- "default3.handlebars->121->1763",
13712
- "default3.handlebars->121->1766",
13713
- "default3.handlebars->121->1778",
13714
- "default3.handlebars->121->1785"
13703
+ "default-mobile.handlebars->55->917",
13704
+ "default-mobile.handlebars->55->923",
13705
+ "default-mobile.handlebars->55->929",
13706
+ "default-mobile.handlebars->55->934",
13707
+ "default-mobile.handlebars->55->936",
13708
+ "default-mobile.handlebars->55->939",
13709
+ "default-mobile.handlebars->55->951",
13710
+ "default-mobile.handlebars->55->958",
13711
+ "default.handlebars->121->1775",
13712
+ "default.handlebars->121->1781",
13713
+ "default.handlebars->121->1787",
13714
+ "default.handlebars->121->1792",
13715
+ "default.handlebars->121->1794",
13716
+ "default.handlebars->121->1797",
13717
+ "default.handlebars->121->1809",
13718
+ "default.handlebars->121->1816",
13719
+ "default3.handlebars->121->1753",
13720
+ "default3.handlebars->121->1759",
13721
+ "default3.handlebars->121->1765",
13722
+ "default3.handlebars->121->1770",
13723
+ "default3.handlebars->121->1772",
13724
+ "default3.handlebars->121->1775",
13725
+ "default3.handlebars->121->1787",
13726
+ "default3.handlebars->121->1794"
13727
]
13728
},
13729
{
@@ -13740,15 +13752,15 @@
13752
"zh-chs": "容量/速度",
13753
"zh-cht": "容量/速度",
13754
"xloc": [
13743
- "default-mobile.handlebars->55->906",
13744
- "default-mobile.handlebars->55->912",
13745
- "default-mobile.handlebars->55->918",
13746
- "default.handlebars->121->1764",
13747
- "default.handlebars->121->1770",
13748
- "default.handlebars->121->1776",
13749
- "default3.handlebars->121->1742",
13750
- "default3.handlebars->121->1748",
13751
- "default3.handlebars->121->1754"
13755
+ "default-mobile.handlebars->55->915",
13756
+ "default-mobile.handlebars->55->921",
13757
+ "default-mobile.handlebars->55->927",
13758
+ "default.handlebars->121->1773",
13759
+ "default.handlebars->121->1779",
13760
+ "default.handlebars->121->1785",
13761
+ "default3.handlebars->121->1751",
13762
+ "default3.handlebars->121->1757",
13763
+ "default3.handlebars->121->1763"
13764
]
13765
},
13766
{
@@ -13776,15 +13788,15 @@
13788
"zh-chs": "剩余容量",
13789
"zh-cht": "剩餘容量",
13790
"xloc": [
13779
- "default-mobile.handlebars->55->931",
13780
- "default-mobile.handlebars->55->943",
13781
- "default-mobile.handlebars->55->950",
13782
- "default.handlebars->121->1789",
13783
- "default.handlebars->121->1801",
13784
- "default.handlebars->121->1808",
13785
- "default3.handlebars->121->1767",
13786
- "default3.handlebars->121->1779",
13787
- "default3.handlebars->121->1786"
13791
+ "default-mobile.handlebars->55->940",
13792
+ "default-mobile.handlebars->55->952",
13793
+ "default-mobile.handlebars->55->959",
13794
+ "default.handlebars->121->1798",
13795
+ "default.handlebars->121->1810",
13796
+ "default.handlebars->121->1817",
13797
+ "default3.handlebars->121->1776",
13798
+ "default3.handlebars->121->1788",
13799
+ "default3.handlebars->121->1795"
13800
]
13801
},
13802
{
@@ -13814,8 +13826,8 @@
13826
"zh-cht": "加泰羅尼亞文",
13827
"xloc": [
13828
"default-mobile.handlebars->55->151",
13817
- "default.handlebars->121->1940",
13818
- "default3.handlebars->121->1916",
13829
+ "default.handlebars->121->1949",
13830
+ "default3.handlebars->121->1925",
13831
"login2.handlebars->17->32"
13832
]
13833
},
@@ -13886,7 +13898,7 @@
13898
"en": "Cerulean",
13899
"nl": "Hemelsblauw",
13900
"xloc": [
13889
- "default3.handlebars->121->2130"
13901
+ "default3.handlebars->121->2139"
13902
]
13903
},
13904
{
@@ -13916,8 +13928,8 @@
13928
"zh-cht": "查莫羅",
13929
"xloc": [
13930
"default-mobile.handlebars->55->152",
13919
- "default.handlebars->121->1941",
13920
- "default3.handlebars->121->1917",
13931
+ "default.handlebars->121->1950",
13932
+ "default3.handlebars->121->1926",
13933
"login2.handlebars->17->33"
13934
]
13935
},
@@ -13978,8 +13990,8 @@
13990
"zh-chs": "更改{0}的邮箱",
13991
"zh-cht": "更改{0}的電郵",
13992
"xloc": [
13981
- "default.handlebars->121->3146",
13982
- "default3.handlebars->121->3132"
13993
+ "default.handlebars->121->3155",
13994
+ "default3.handlebars->121->3141"
13995
]
13996
},
13997
{
@@ -14008,12 +14020,12 @@
14020
"zh-chs": "更改组",
14021
"zh-cht": "更改群",
14022
"xloc": [
14011
- "default.handlebars->121->1045",
14012
- "default.handlebars->121->1334",
14013
- "default.handlebars->121->1335",
14014
- "default3.handlebars->121->1036",
14015
- "default3.handlebars->121->1319",
14016
- "default3.handlebars->121->1320"
14023
+ "default.handlebars->121->1054",
14024
+ "default.handlebars->121->1343",
14025
+ "default.handlebars->121->1344",
14026
+ "default3.handlebars->121->1045",
14027
+ "default3.handlebars->121->1328",
14028
+ "default3.handlebars->121->1329"
14029
]
14030
},
14031
{
@@ -14058,10 +14070,10 @@
14070
"zh-cht": "更改密碼",
14071
"xloc": [
14072
"default-mobile.handlebars->55->344",
14061
- "default.handlebars->121->2157",
14062
- "default.handlebars->121->3090",
14063
- "default3.handlebars->121->2128",
14064
- "default3.handlebars->121->3078"
14073
+ "default.handlebars->121->2166",
14074
+ "default.handlebars->121->3099",
14075
+ "default3.handlebars->121->2137",
14076
+ "default3.handlebars->121->3087"
14077
]
14078
},
14079
{
@@ -14090,8 +14102,8 @@
14102
"zh-chs": "更改{0}的密码",
14103
"zh-cht": "更改{0}的密碼",
14104
"xloc": [
14093
- "default.handlebars->121->3155",
14094
- "default3.handlebars->121->3137"
14105
+ "default.handlebars->121->3164",
14106
+ "default3.handlebars->121->3146"
14107
]
14108
},
14109
{
@@ -14120,8 +14132,8 @@
14132
"zh-chs": "更改{0}的真实名称",
14133
"zh-cht": "更改{0}的真實名稱",
14134
"xloc": [
14123
- "default.handlebars->121->3141",
14124
- "default3.handlebars->121->3128"
14135
+ "default.handlebars->121->3150",
14136
+ "default3.handlebars->121->3137"
14137
]
14138
},
14139
{
@@ -14272,8 +14284,8 @@
14284
"zh-chs": "更改该用户的密码",
14285
"zh-cht": "更改該用戶的密碼",
14286
"xloc": [
14275
- "default.handlebars->121->3089",
14276
- "default3.handlebars->121->3077"
14287
+ "default.handlebars->121->3098",
14288
+ "default3.handlebars->121->3086"
14289
]
14290
},
14291
{
@@ -14332,8 +14344,8 @@
14344
"zh-chs": "更改您的邮件地址。",
14345
"zh-cht": "在此處更改你的帳戶電郵地址。",
14346
"xloc": [
14335
- "default.handlebars->121->2144",
14336
- "default3.handlebars->121->2121"
14347
+ "default.handlebars->121->2153",
14348
+ "default3.handlebars->121->2130"
14349
]
14350
},
14351
{
@@ -14362,8 +14374,8 @@
14374
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
14375
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14376
"xloc": [
14365
- "default.handlebars->121->2150",
14366
- "default3.handlebars->121->2125"
14377
+ "default.handlebars->121->2159",
14378
+ "default3.handlebars->121->2134"
14379
]
14380
},
14381
{
@@ -14392,8 +14404,8 @@
14404
"zh-chs": "更改帐户凭据",
14405
"zh-cht": "帳戶憑證已更改",
14406
"xloc": [
14395
- "default.handlebars->121->2674",
14396
- "default3.handlebars->121->2664"
14407
+ "default.handlebars->121->2683",
14408
+ "default3.handlebars->121->2673"
14409
]
14410
},
14411
{
@@ -14422,8 +14434,8 @@
14434
"zh-chs": "将帐户显示名称更改为 {0}。",
14435
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
14436
"xloc": [
14425
- "default.handlebars->121->2726",
14426
- "default3.handlebars->121->2716"
14437
+ "default.handlebars->121->2735",
14438
+ "default3.handlebars->121->2725"
14439
]
14440
},
14441
{
@@ -14452,10 +14464,10 @@
14464
"zh-chs": "{1}组中的设备{0}已更改:{2}",
14465
"zh-cht": "{1}組中的設備{0}已更改:{2}",
14466
"xloc": [
14455
- "default.handlebars->121->2658",
14456
- "default.handlebars->121->2739",
14457
- "default3.handlebars->121->2648",
14458
- "default3.handlebars->121->2729"
14467
+ "default.handlebars->121->2667",
14468
+ "default.handlebars->121->2748",
14469
+ "default3.handlebars->121->2657",
14470
+ "default3.handlebars->121->2738"
14471
]
14472
},
14473
{
@@ -14484,8 +14496,8 @@
14496
"zh-chs": "语言从{1}更改为{2}",
14497
"zh-cht": "語言從{1}更改為{2}",
14498
"xloc": [
14487
- "default.handlebars->121->2602",
14488
- "default3.handlebars->121->2592"
14499
+ "default.handlebars->121->2611",
14500
+ "default3.handlebars->121->2601"
14501
]
14502
},
14503
{
@@ -14514,10 +14526,10 @@
14526
"zh-chs": "已更改{0}的用户设备权限",
14527
"zh-cht": "已更改{0}的用戶設備權限",
14528
"xloc": [
14517
- "default.handlebars->121->2660",
14518
- "default.handlebars->121->2681",
14519
- "default3.handlebars->121->2650",
14520
- "default3.handlebars->121->2671"
14529
+ "default.handlebars->121->2669",
14530
+ "default.handlebars->121->2690",
14531
+ "default3.handlebars->121->2659",
14532
+ "default3.handlebars->121->2680"
14533
]
14534
},
14535
{
@@ -14547,8 +14559,8 @@
14559
"zh-cht": "更改語言將需要刷新頁面。",
14560
"xloc": [
14561
"default-mobile.handlebars->55->319",
14550
- "default.handlebars->121->2108",
14551
- "default3.handlebars->121->2084"
14562
+ "default.handlebars->121->2117",
14563
+ "default3.handlebars->121->2093"
14564
]
14565
},
14566
{
@@ -14574,9 +14586,9 @@
14586
"zh-chs": "收费率",
14587
"zh-cht": "收費率",
14588
"xloc": [
14577
- "default-mobile.handlebars->55->887",
14578
- "default.handlebars->121->1745",
14579
- "default3.handlebars->121->1723"
14589
+ "default-mobile.handlebars->55->896",
14590
+ "default.handlebars->121->1754",
14591
+ "default3.handlebars->121->1732"
14592
]
14593
},
14594
{
@@ -14602,9 +14614,9 @@
14614
"zh-chs": "收费",
14615
"zh-cht": "收費",
14616
"xloc": [
14605
- "default-mobile.handlebars->55->889",
14606
- "default.handlebars->121->1747",
14607
- "default3.handlebars->121->1725"
14617
+ "default-mobile.handlebars->55->898",
14618
+ "default.handlebars->121->1756",
14619
+ "default3.handlebars->121->1734"
14620
]
14621
},
14622
{
@@ -14633,18 +14645,18 @@
14645
"zh-chs": "聊天",
14646
"zh-cht": "聊天",
14647
"xloc": [
14636
- "default.handlebars->121->1034",
14637
- "default.handlebars->121->1153",
14638
- "default.handlebars->121->1178",
14639
- "default.handlebars->121->2806",
14640
- "default.handlebars->121->3085",
14641
- "default.handlebars->121->3086",
14642
- "default3.handlebars->121->1025",
14643
- "default3.handlebars->121->1142",
14644
- "default3.handlebars->121->1167",
14645
- "default3.handlebars->121->2796",
14646
- "default3.handlebars->121->3073",
14647
- "default3.handlebars->121->3074"
14648
+ "default.handlebars->121->1043",
14649
+ "default.handlebars->121->1162",
14650
+ "default.handlebars->121->1187",
14651
+ "default.handlebars->121->2815",
14652
+ "default.handlebars->121->3094",
14653
+ "default.handlebars->121->3095",
14654
+ "default3.handlebars->121->1034",
14655
+ "default3.handlebars->121->1151",
14656
+ "default3.handlebars->121->1176",
14657
+ "default3.handlebars->121->2805",
14658
+ "default3.handlebars->121->3082",
14659
+ "default3.handlebars->121->3083"
14660
]
14661
},
14662
{
@@ -14673,12 +14685,12 @@
14685
"zh-chs": "聊天并通知",
14686
"zh-cht": "聊天並通知",
14687
"xloc": [
14676
- "default-mobile.handlebars->55->1035",
14677
- "default-mobile.handlebars->55->1055",
14678
- "default.handlebars->121->2436",
14679
- "default.handlebars->121->2474",
14680
- "default3.handlebars->121->2426",
14681
- "default3.handlebars->121->2464"
14688
+ "default-mobile.handlebars->55->1044",
14689
+ "default-mobile.handlebars->55->1064",
14690
+ "default.handlebars->121->2445",
14691
+ "default.handlebars->121->2483",
14692
+ "default3.handlebars->121->2435",
14693
+ "default3.handlebars->121->2473"
14694
]
14695
},
14696
{
@@ -14707,9 +14719,9 @@
14719
"zh-chs": "聊天请求,点击这里接受。",
14720
"zh-cht": "聊天請求,點擊這裡接受。",
14721
"xloc": [
14710
- "default-mobile.handlebars->55->1087",
14711
- "default.handlebars->121->3376",
14712
- "default3.handlebars->121->3360"
14722
+ "default-mobile.handlebars->55->1096",
14723
+ "default.handlebars->121->3385",
14724
+ "default3.handlebars->121->3369"
14725
]
14726
},
14727
{
@@ -14768,8 +14780,8 @@
14780
"zh-cht": "車臣",
14781
"xloc": [
14782
"default-mobile.handlebars->55->153",
14771
- "default.handlebars->121->1942",
14772
- "default3.handlebars->121->1918",
14783
+ "default.handlebars->121->1951",
14784
+ "default3.handlebars->121->1927",
14785
"login2.handlebars->17->34"
14786
]
14787
},
@@ -14934,10 +14946,10 @@
14946
"zh-chs": "检查...",
14947
"zh-cht": "檢查...",
14948
"xloc": [
14937
- "default.handlebars->121->1908",
14938
- "default.handlebars->121->3498",
14939
- "default3.handlebars->121->1884",
14940
- "default3.handlebars->121->3482"
14949
+ "default.handlebars->121->1917",
14950
+ "default.handlebars->121->3507",
14951
+ "default3.handlebars->121->1893",
14952
+ "default3.handlebars->121->3491"
14953
]
14954
},
14955
{
@@ -14963,9 +14975,9 @@
14975
"zh-chs": "化学",
14976
"zh-cht": "化學",
14977
"xloc": [
14966
- "default-mobile.handlebars->55->881",
14967
- "default.handlebars->121->1739",
14968
- "default3.handlebars->121->1717"
14978
+ "default-mobile.handlebars->55->890",
14979
+ "default.handlebars->121->1748",
14980
+ "default3.handlebars->121->1726"
14981
]
14982
},
14983
{
@@ -14995,8 +15007,8 @@
15007
"zh-cht": "中文",
15008
"xloc": [
15009
"default-mobile.handlebars->55->154",
14998
- "default.handlebars->121->1943",
14999
- "default3.handlebars->121->1919",
15010
+ "default.handlebars->121->1952",
15011
+ "default3.handlebars->121->1928",
15012
"login2.handlebars->17->35"
15013
]
15014
},
@@ -15027,8 +15039,8 @@
15039
"zh-cht": "中文(香港)",
15040
"xloc": [
15041
"default-mobile.handlebars->55->155",
15030
- "default.handlebars->121->1944",
15031
- "default3.handlebars->121->1920",
15042
+ "default.handlebars->121->1953",
15043
+ "default3.handlebars->121->1929",
15044
"login2.handlebars->17->36"
15045
]
15046
},
@@ -15059,8 +15071,8 @@
15071
"zh-cht": "中文(中國)",
15072
"xloc": [
15073
"default-mobile.handlebars->55->156",
15062
- "default.handlebars->121->1945",
15063
- "default3.handlebars->121->1921",
15074
+ "default.handlebars->121->1954",
15075
+ "default3.handlebars->121->1930",
15076
"login2.handlebars->17->37"
15077
]
15078
},
@@ -15091,8 +15103,8 @@
15103
"zh-cht": "簡體中文",
15104
"xloc": [
15105
"default-mobile.handlebars->55->316",
15094
- "default.handlebars->121->2105",
15095
- "default3.handlebars->121->2081",
15106
+ "default.handlebars->121->2114",
15107
+ "default3.handlebars->121->2090",
15108
"login2.handlebars->17->197"
15109
]
15110
},
@@ -15123,8 +15135,8 @@
15135
"zh-cht": "中文(新加坡)",
15136
"xloc": [
15137
"default-mobile.handlebars->55->157",
15126
- "default.handlebars->121->1946",
15127
- "default3.handlebars->121->1922",
15138
+ "default.handlebars->121->1955",
15139
+ "default3.handlebars->121->1931",
15140
"login2.handlebars->17->38"
15141
]
15142
},
@@ -15155,8 +15167,8 @@
15167
"zh-cht": "中文(台灣)",
15168
"xloc": [
15169
"default-mobile.handlebars->55->158",
15158
- "default.handlebars->121->1947",
15159
- "default3.handlebars->121->1923",
15170
+ "default.handlebars->121->1956",
15171
+ "default3.handlebars->121->1932",
15172
"login2.handlebars->17->39"
15173
]
15174
},
@@ -15187,8 +15199,8 @@
15199
"zh-cht": "繁體中文",
15200
"xloc": [
15201
"default-mobile.handlebars->55->317",
15190
- "default.handlebars->121->2106",
15191
- "default3.handlebars->121->2082",
15202
+ "default.handlebars->121->2115",
15203
+ "default3.handlebars->121->2091",
15204
"login2.handlebars->17->198"
15205
]
15206
},
@@ -15250,8 +15262,8 @@
15262
"zh-cht": "楚瓦什",
15263
"xloc": [
15264
"default-mobile.handlebars->55->159",
15253
- "default.handlebars->121->1948",
15254
- "default3.handlebars->121->1924",
15265
+ "default.handlebars->121->1957",
15266
+ "default3.handlebars->121->1933",
15267
"login2.handlebars->17->40"
15268
]
15269
},
@@ -15295,18 +15307,18 @@
15307
"default-mobile.handlebars->55->728",
15308
"default-mobile.handlebars->55->94",
15309
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15298
- "default.handlebars->121->1587",
15299
- "default.handlebars->121->1589",
15300
- "default.handlebars->121->1591",
15301
- "default.handlebars->121->1593",
15302
- "default.handlebars->121->2596",
15310
+ "default.handlebars->121->1596",
15311
+ "default.handlebars->121->1598",
15312
+ "default.handlebars->121->1600",
15313
+ "default.handlebars->121->1602",
15314
+ "default.handlebars->121->2605",
15315
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15316
"default.handlebars->container->column_l->p41->3->1",
15305
- "default3.handlebars->121->1567",
15306
- "default3.handlebars->121->1569",
15307
- "default3.handlebars->121->1571",
15308
- "default3.handlebars->121->1573",
15309
- "default3.handlebars->121->2586",
15317
+ "default3.handlebars->121->1576",
15318
+ "default3.handlebars->121->1578",
15319
+ "default3.handlebars->121->1580",
15320
+ "default3.handlebars->121->1582",
15321
+ "default3.handlebars->121->2595",
15322
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15323
"default3.handlebars->container->column_l->p41->3->3",
15324
"messenger.handlebars->xbottom->1->1->0->5",
@@ -15347,7 +15359,7 @@
15359
"zh-cht": "清除 RDP 憑據?",
15360
"xloc": [
15361
"default-mobile.handlebars->55->625",
15350
- "default.handlebars->121->1380"
15362
+ "default.handlebars->121->1389"
15363
]
15364
},
15365
{
@@ -15377,7 +15389,7 @@
15389
"zh-cht": "清除 SSH 憑據?",
15390
"xloc": [
15391
"default-mobile.handlebars->55->623",
15380
- "default.handlebars->121->1378"
15392
+ "default.handlebars->121->1387"
15393
]
15394
},
15395
{
@@ -15498,9 +15510,9 @@
15510
"zh-chs": "全部清除",
15511
"zh-cht": "全部清除",
15512
"xloc": [
15501
- "default-mobile.handlebars->55->1070",
15502
- "default.handlebars->121->3359",
15503
- "default3.handlebars->121->3343"
15513
+ "default-mobile.handlebars->55->1079",
15514
+ "default.handlebars->121->3368",
15515
+ "default3.handlebars->121->3352"
15516
]
15517
},
15518
{
@@ -15560,9 +15572,9 @@
15572
"zh-chs": "清除核心",
15573
"zh-cht": "清除核心",
15574
"xloc": [
15563
- "default-mobile.handlebars->55->971",
15564
- "default.handlebars->121->1830",
15565
- "default3.handlebars->121->1808"
15575
+ "default-mobile.handlebars->55->980",
15576
+ "default.handlebars->121->1839",
15577
+ "default3.handlebars->121->1817"
15578
]
15579
},
15580
{
@@ -15622,9 +15634,9 @@
15634
"zh-chs": "清除此通知",
15635
"zh-cht": "清除此通知",
15636
"xloc": [
15625
- "default-mobile.handlebars->55->1069",
15626
- "default.handlebars->121->3358",
15627
- "default3.handlebars->121->3342"
15637
+ "default-mobile.handlebars->55->1078",
15638
+ "default.handlebars->121->3367",
15639
+ "default3.handlebars->121->3351"
15640
]
15641
},
15642
{
@@ -15740,10 +15752,10 @@
15752
"zh-chs": "单击此处编辑设备组名称",
15753
"zh-cht": "單擊此處編輯裝置群名稱",
15754
"xloc": [
15743
- "default.handlebars->121->2229",
15744
- "default.handlebars->121->2535",
15745
- "default3.handlebars->121->2218",
15746
- "default3.handlebars->121->2525"
15755
+ "default.handlebars->121->2238",
15756
+ "default.handlebars->121->2544",
15757
+ "default3.handlebars->121->2227",
15758
+ "default3.handlebars->121->2534"
15759
]
15760
},
15761
{
@@ -15802,8 +15814,8 @@
15814
"zh-chs": "单击此处编辑用户组名称",
15815
"zh-cht": "單擊此處編輯用戶群名稱",
15816
"xloc": [
15805
- "default.handlebars->121->2936",
15806
- "default3.handlebars->121->2924"
15817
+ "default.handlebars->121->2945",
15818
+ "default3.handlebars->121->2933"
15819
]
15820
},
15821
{
@@ -15922,8 +15934,8 @@
15934
"zh-cht": "單擊確定將驗證電郵發送到:",
15935
"xloc": [
15936
"default-mobile.handlebars->55->329",
15925
- "default.handlebars->121->2141",
15926
- "default3.handlebars->121->2118"
15937
+ "default.handlebars->121->2150",
15938
+ "default3.handlebars->121->2127"
15939
]
15940
},
15941
{
@@ -16012,9 +16024,9 @@
16024
"zh-chs": "客户端控制模式(CCM)",
16025
"zh-cht": "客戶端控制模式(CCM)",
16026
"xloc": [
16015
- "default-mobile.handlebars->55->832",
16016
- "default.handlebars->121->1690",
16017
- "default3.handlebars->121->1668"
16027
+ "default-mobile.handlebars->55->841",
16028
+ "default.handlebars->121->1699",
16029
+ "default3.handlebars->121->1677"
16030
]
16031
},
16032
{
@@ -16043,8 +16055,8 @@
16055
"zh-chs": "客户编号",
16056
"zh-cht": "客戶編號",
16057
"xloc": [
16046
- "default.handlebars->121->2206",
16047
- "default3.handlebars->121->2199"
16058
+ "default.handlebars->121->2215",
16059
+ "default3.handlebars->121->2208"
16060
]
16061
},
16062
{
@@ -16073,8 +16085,8 @@
16085
"zh-chs": "客户端启动的远程访问",
16086
"zh-cht": "客戶端啟動的遠程訪問",
16087
"xloc": [
16076
- "default.handlebars->121->2362",
16077
- "default3.handlebars->121->2350"
16088
+ "default.handlebars->121->2371",
16089
+ "default3.handlebars->121->2359"
16090
]
16091
},
16092
{
@@ -16103,8 +16115,8 @@
16115
"zh-chs": "客户机密",
16116
"zh-cht": "客戶機密",
16117
"xloc": [
16106
- "default.handlebars->121->2207",
16107
- "default3.handlebars->121->2200"
16118
+ "default.handlebars->121->2216",
16119
+ "default3.handlebars->121->2209"
16120
]
16121
},
16122
{
@@ -16166,13 +16178,13 @@
16178
"xloc": [
16179
"agent-translations.json",
16180
"default-mobile.handlebars->55->92",
16169
- "default.handlebars->121->1492",
16170
- "default.handlebars->121->1561",
16181
+ "default.handlebars->121->1501",
16182
+ "default.handlebars->121->1570",
16183
"default.handlebars->121->247",
16184
"default.handlebars->121->256",
16173
- "default.handlebars->121->3492",
16174
- "default3.handlebars->121->1473",
16175
- "default3.handlebars->121->1541",
16185
+ "default.handlebars->121->3501",
16186
+ "default3.handlebars->121->1482",
16187
+ "default3.handlebars->121->1550",
16188
"default3.handlebars->121->354",
16189
"sharing.handlebars->49->51"
16190
]
@@ -16203,8 +16215,8 @@
16215
"zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
16216
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16217
"xloc": [
16206
- "default.handlebars->121->2746",
16207
- "default3.handlebars->121->2736"
16218
+ "default.handlebars->121->2755",
16219
+ "default3.handlebars->121->2745"
16220
]
16221
},
16222
{
@@ -16233,8 +16245,8 @@
16245
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
16246
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
16247
"xloc": [
16236
- "default.handlebars->121->2607",
16237
- "default3.handlebars->121->2597"
16248
+ "default.handlebars->121->2616",
16249
+ "default3.handlebars->121->2606"
16250
]
16251
},
16252
{
@@ -16420,13 +16432,13 @@
16432
"zh-chs": "指令",
16433
"zh-cht": "指令",
16434
"xloc": [
16423
- "default-mobile.handlebars->55->1057",
16424
- "default.handlebars->121->1155",
16425
- "default.handlebars->121->1180",
16426
- "default.handlebars->121->2476",
16427
- "default3.handlebars->121->1144",
16428
- "default3.handlebars->121->1169",
16429
- "default3.handlebars->121->2466"
16435
+ "default-mobile.handlebars->55->1066",
16436
+ "default.handlebars->121->1164",
16437
+ "default.handlebars->121->1189",
16438
+ "default.handlebars->121->2485",
16439
+ "default3.handlebars->121->1153",
16440
+ "default3.handlebars->121->1178",
16441
+ "default3.handlebars->121->2475"
16442
]
16443
},
16444
{
@@ -16509,10 +16521,10 @@
16521
"zh-chs": "通用设备组",
16522
"zh-cht": "通用裝置群",
16523
"xloc": [
16512
- "default.handlebars->121->2971",
16513
- "default.handlebars->121->3160",
16514
- "default3.handlebars->121->2959",
16515
- "default3.handlebars->121->3142"
16524
+ "default.handlebars->121->2980",
16525
+ "default.handlebars->121->3169",
16526
+ "default3.handlebars->121->2968",
16527
+ "default3.handlebars->121->3151"
16528
]
16529
},
16530
{
@@ -16541,10 +16553,10 @@
16553
"zh-chs": "通用设备",
16554
"zh-cht": "通用裝置",
16555
"xloc": [
16544
- "default.handlebars->121->2977",
16545
- "default.handlebars->121->3172",
16546
- "default3.handlebars->121->2965",
16547
- "default3.handlebars->121->3154"
16556
+ "default.handlebars->121->2986",
16557
+ "default.handlebars->121->3181",
16558
+ "default3.handlebars->121->2974",
16559
+ "default3.handlebars->121->3163"
16560
]
16561
},
16562
{
@@ -16573,9 +16585,9 @@
16585
"zh-chs": "编译时间",
16586
"zh-cht": "編譯時間",
16587
"xloc": [
16576
- "default-mobile.handlebars->55->798",
16577
- "default.handlebars->121->1646",
16578
- "default3.handlebars->121->1626"
16588
+ "default-mobile.handlebars->55->807",
16589
+ "default.handlebars->121->1655",
16590
+ "default3.handlebars->121->1635"
16591
]
16592
},
16593
{
@@ -16604,8 +16616,8 @@
16616
"zh-chs": "压缩档案...",
16617
"zh-cht": "壓縮檔案...",
16618
"xloc": [
16607
- "default.handlebars->121->1550",
16608
- "default3.handlebars->121->1530",
16619
+ "default.handlebars->121->1559",
16620
+ "default3.handlebars->121->1539",
16621
"sharing.handlebars->49->47"
16622
]
16623
},
@@ -16621,8 +16633,8 @@
16633
"pl": "Zapisy pliku konfiguracyjnego",
16634
"uk": "Записи файлу конфігурації",
16635
"xloc": [
16624
- "default.handlebars->121->3325",
16625
- "default3.handlebars->121->3309"
16636
+ "default.handlebars->121->3334",
16637
+ "default3.handlebars->121->3318"
16638
]
16639
},
16640
{
@@ -16651,23 +16663,23 @@
16663
"zh-chs": "确认",
16664
"zh-cht": "確認",
16665
"xloc": [
16654
- "default-mobile.handlebars->55->1006",
16666
+ "default-mobile.handlebars->55->1015",
16667
"default-mobile.handlebars->55->620",
16656
- "default.handlebars->121->1329",
16668
"default.handlebars->121->1338",
16658
- "default.handlebars->121->2373",
16659
- "default.handlebars->121->2836",
16660
- "default.handlebars->121->2926",
16661
- "default.handlebars->121->2993",
16662
- "default.handlebars->121->3158",
16669
+ "default.handlebars->121->1347",
16670
+ "default.handlebars->121->2382",
16671
+ "default.handlebars->121->2845",
16672
+ "default.handlebars->121->2935",
16673
+ "default.handlebars->121->3002",
16674
+ "default.handlebars->121->3167",
16675
"default.handlebars->121->792",
16664
- "default3.handlebars->121->1314",
16665
- "default3.handlebars->121->1322",
16666
- "default3.handlebars->121->2360",
16667
- "default3.handlebars->121->2826",
16668
- "default3.handlebars->121->2914",
16669
- "default3.handlebars->121->2981",
16670
- "default3.handlebars->121->3140",
16676
+ "default3.handlebars->121->1323",
16677
+ "default3.handlebars->121->1331",
16678
+ "default3.handlebars->121->2369",
16679
+ "default3.handlebars->121->2835",
16680
+ "default3.handlebars->121->2923",
16681
+ "default3.handlebars->121->2990",
16682
+ "default3.handlebars->121->3149",
16683
"default3.handlebars->121->783"
16684
]
16685
},
@@ -16675,7 +16687,7 @@
16687
"en": "Confirm Password",
16688
"nl": "Bevestig wachtwoord",
16689
"xloc": [
16678
- "default3.handlebars->121->2875"
16690
+ "default3.handlebars->121->2884"
16691
]
16692
},
16693
{
@@ -16705,8 +16717,8 @@
16717
"zh-cht": "確認將1個副本複製到此位置?",
16718
"xloc": [
16719
"default-mobile.handlebars->55->717",
16708
- "default.handlebars->121->1582",
16709
- "default3.handlebars->121->1562",
16720
+ "default.handlebars->121->1591",
16721
+ "default3.handlebars->121->1571",
16722
"sharing-mobile.handlebars->55->92",
16723
"sharing.handlebars->49->69"
16724
]
@@ -16737,8 +16749,8 @@
16749
"zh-chs": "确认{0}个条目的复制到此位置?",
16750
"zh-cht": "確認{0}個條目的複製到此位置?",
16751
"xloc": [
16740
- "default.handlebars->121->1581",
16741
- "default3.handlebars->121->1561",
16752
+ "default.handlebars->121->1590",
16753
+ "default3.handlebars->121->1570",
16754
"sharing.handlebars->49->68"
16755
]
16756
},
@@ -16798,8 +16810,8 @@
16810
"zh-chs": "确认删除选定的帐户?",
16811
"zh-cht": "確認刪除所選帳戶?",
16812
"xloc": [
16801
- "default.handlebars->121->2835",
16802
- "default3.handlebars->121->2825"
16813
+ "default.handlebars->121->2844",
16814
+ "default3.handlebars->121->2834"
16815
]
16816
},
16817
{
@@ -16828,8 +16840,8 @@
16840
"zh-chs": "确认删除选定的用户组?",
16841
"zh-cht": "確認刪除所選用戶群?",
16842
"xloc": [
16831
- "default.handlebars->121->2925",
16832
- "default3.handlebars->121->2913"
16843
+ "default.handlebars->121->2934",
16844
+ "default3.handlebars->121->2922"
16845
]
16846
},
16847
{
@@ -16858,24 +16870,24 @@
16870
"zh-chs": "确认删除用户{0}?",
16871
"zh-cht": "確認刪除用戶{0}?",
16872
"xloc": [
16861
- "default.handlebars->121->3157",
16862
- "default3.handlebars->121->3139"
16873
+ "default.handlebars->121->3166",
16874
+ "default3.handlebars->121->3148"
16875
]
16876
},
16877
{
16878
"en": "Confirm disabling 2FA Duo login security.",
16879
"nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
16880
"xloc": [
16869
- "default.handlebars->121->1887",
16870
- "default3.handlebars->121->1864"
16881
+ "default.handlebars->121->1896",
16882
+ "default3.handlebars->121->1873"
16883
]
16884
},
16885
{
16886
"en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.",
16887
"nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.",
16888
"xloc": [
16877
- "default.handlebars->121->1885",
16878
- "default3.handlebars->121->1862"
16889
+ "default.handlebars->121->1894",
16890
+ "default3.handlebars->121->1871"
16891
]
16892
},
16893
{
@@ -16904,8 +16916,8 @@
16916
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
16917
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
16918
"xloc": [
16907
- "default.handlebars->121->2996",
16908
- "default3.handlebars->121->2984"
16919
+ "default.handlebars->121->3005",
16920
+ "default3.handlebars->121->2993"
16921
]
16922
},
16923
{
@@ -16934,8 +16946,8 @@
16946
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
16947
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
16948
"xloc": [
16937
- "default.handlebars->121->3189",
16938
- "default3.handlebars->121->3171"
16949
+ "default.handlebars->121->3198",
16950
+ "default3.handlebars->121->3180"
16951
]
16952
},
16953
{
@@ -16965,8 +16977,8 @@
16977
"zh-cht": "確認將1個條目移動到此位置?",
16978
"xloc": [
16979
"default-mobile.handlebars->55->719",
16968
- "default.handlebars->121->1584",
16969
- "default3.handlebars->121->1564",
16980
+ "default.handlebars->121->1593",
16981
+ "default3.handlebars->121->1573",
16982
"sharing-mobile.handlebars->55->94",
16983
"sharing.handlebars->49->71"
16984
]
@@ -16997,8 +17009,8 @@
17009
"zh-chs": "确认将{0}个条目移到此位置?",
17010
"zh-cht": "確認將{0}個條目移到該位置?",
17011
"xloc": [
17000
- "default.handlebars->121->1583",
17001
- "default3.handlebars->121->1563",
17012
+ "default.handlebars->121->1592",
17013
+ "default3.handlebars->121->1572",
17014
"sharing.handlebars->49->70"
17015
]
17016
},
@@ -17058,8 +17070,8 @@
17070
"zh-chs": "确认覆盖?",
17071
"zh-cht": "確認覆蓋?",
17072
"xloc": [
17061
- "default.handlebars->121->2588",
17062
- "default3.handlebars->121->2578"
17073
+ "default.handlebars->121->2597",
17074
+ "default3.handlebars->121->2587"
17075
]
17076
},
17077
{
@@ -17088,10 +17100,10 @@
17100
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
17101
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17102
"xloc": [
17091
- "default.handlebars->121->2986",
17092
- "default.handlebars->121->3180",
17093
- "default3.handlebars->121->2974",
17094
- "default3.handlebars->121->3162"
17103
+ "default.handlebars->121->2995",
17104
+ "default.handlebars->121->3189",
17105
+ "default3.handlebars->121->2983",
17106
+ "default3.handlebars->121->3171"
17107
]
17108
},
17109
{
@@ -17120,10 +17132,10 @@
17132
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
17133
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17134
"xloc": [
17123
- "default.handlebars->121->2988",
17124
- "default.handlebars->121->3193",
17125
- "default3.handlebars->121->2976",
17126
- "default3.handlebars->121->3175"
17135
+ "default.handlebars->121->2997",
17136
+ "default.handlebars->121->3202",
17137
+ "default3.handlebars->121->2985",
17138
+ "default3.handlebars->121->3184"
17139
]
17140
},
17141
{
@@ -17152,8 +17164,8 @@
17164
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
17165
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17166
"xloc": [
17155
- "default.handlebars->121->3182",
17156
- "default3.handlebars->121->3164"
17167
+ "default.handlebars->121->3191",
17168
+ "default3.handlebars->121->3173"
17169
]
17170
},
17171
{
@@ -17182,8 +17194,8 @@
17194
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
17195
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
17196
"xloc": [
17185
- "default.handlebars->121->3185",
17186
- "default3.handlebars->121->3167"
17197
+ "default.handlebars->121->3194",
17198
+ "default3.handlebars->121->3176"
17199
]
17200
},
17201
{
@@ -17212,10 +17224,10 @@
17224
"zh-chs": "确认删除访问权限?",
17225
"zh-cht": "確認刪除訪問權限?",
17226
"xloc": [
17215
- "default.handlebars->121->3183",
17216
- "default.handlebars->121->3186",
17217
- "default3.handlebars->121->3165",
17218
- "default3.handlebars->121->3168"
17227
+ "default.handlebars->121->3192",
17228
+ "default.handlebars->121->3195",
17229
+ "default3.handlebars->121->3174",
17230
+ "default3.handlebars->121->3177"
17231
]
17232
},
17233
{
@@ -17245,8 +17257,8 @@
17257
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
17258
"xloc": [
17259
"default-mobile.handlebars->55->328",
17248
- "default.handlebars->121->1891",
17249
- "default3.handlebars->121->1868"
17260
+ "default.handlebars->121->1900",
17261
+ "default3.handlebars->121->1877"
17262
]
17263
},
17264
{
@@ -17275,8 +17287,8 @@
17287
"zh-chs": "确认删除设备共享“{0}”?",
17288
"zh-cht": "確認刪除設備共享“{0}”?",
17289
"xloc": [
17278
- "default.handlebars->121->3178",
17279
- "default3.handlebars->121->3160"
17290
+ "default.handlebars->121->3187",
17291
+ "default3.handlebars->121->3169"
17292
]
17293
},
17294
{
@@ -17305,8 +17317,8 @@
17317
"zh-chs": "确认移除推送认证设备?",
17318
"zh-cht": "確認移除推送認證設備?",
17319
"xloc": [
17308
- "default.handlebars->121->1893",
17309
- "default3.handlebars->121->1870"
17320
+ "default.handlebars->121->1902",
17321
+ "default3.handlebars->121->1879"
17322
]
17323
},
17324
{
@@ -17335,8 +17347,8 @@
17347
"zh-chs": "确认删除用户“ {0} ”的权限?",
17348
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
17349
"xloc": [
17338
- "default.handlebars->121->2488",
17339
- "default3.handlebars->121->2478"
17350
+ "default.handlebars->121->2497",
17351
+ "default3.handlebars->121->2487"
17352
]
17353
},
17354
{
@@ -17365,8 +17377,8 @@
17377
"zh-chs": "确认删除用户组“ {0} ”的权限?",
17378
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
17379
"xloc": [
17368
- "default.handlebars->121->2490",
17369
- "default3.handlebars->121->2480"
17380
+ "default.handlebars->121->2499",
17381
+ "default3.handlebars->121->2489"
17382
]
17383
},
17384
{
@@ -17425,8 +17437,8 @@
17437
"zh-chs": "确认删除此登录令牌?",
17438
"zh-cht": "確認刪除此登錄令牌?",
17439
"xloc": [
17428
- "default.handlebars->121->2199",
17429
- "default3.handlebars->121->2192"
17440
+ "default.handlebars->121->2208",
17441
+ "default3.handlebars->121->2201"
17442
]
17443
},
17444
{
@@ -17455,7 +17467,7 @@
17467
"zh-chs": "确认删除用户{0}?",
17468
"zh-cht": "確認刪除用戶{0}?",
17469
"xloc": [
17458
- "default-mobile.handlebars->55->1066"
17470
+ "default-mobile.handlebars->55->1075"
17471
]
17472
},
17473
{
@@ -17515,8 +17527,8 @@
17527
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
17528
"xloc": [
17529
"default-mobile.handlebars->55->387",
17518
- "default.handlebars->121->2591",
17519
- "default3.handlebars->121->2581"
17530
+ "default.handlebars->121->2600",
17531
+ "default3.handlebars->121->2590"
17532
]
17533
},
17534
{
@@ -17549,13 +17561,13 @@
17561
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
17562
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
17563
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
17552
- "default.handlebars->121->2271",
17553
- "default.handlebars->121->991",
17564
+ "default.handlebars->121->1000",
17565
+ "default.handlebars->121->2280",
17566
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
17567
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
17568
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
17557
- "default3.handlebars->121->2260",
17558
- "default3.handlebars->121->982",
17569
+ "default3.handlebars->121->2269",
17570
+ "default3.handlebars->121->991",
17571
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
17572
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
17573
"default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect",
@@ -17630,8 +17642,8 @@
17642
"zh-chs": "连接到服务器",
17643
"zh-cht": "連接到伺服器",
17644
"xloc": [
17633
- "default.handlebars->121->2366",
17634
- "default3.handlebars->121->2353"
17645
+ "default.handlebars->121->2375",
17646
+ "default3.handlebars->121->2362"
17647
]
17648
},
17649
{
@@ -17879,8 +17891,8 @@
17891
"zh-chs": "已连接的英特尔®AMT",
17892
"zh-cht": "已連接的Intel® AMT",
17893
"xloc": [
17882
- "default.handlebars->121->3417",
17883
- "default3.handlebars->121->3401"
17894
+ "default.handlebars->121->3426",
17895
+ "default3.handlebars->121->3410"
17896
]
17897
},
17898
{
@@ -17909,8 +17921,8 @@
17921
"zh-chs": "已连接的英特尔®AMT CIRA",
17922
"zh-cht": "已連接的Intel® AMT CIRA",
17923
"xloc": [
17912
- "default.handlebars->121->3418",
17913
- "default3.handlebars->121->3402"
17924
+ "default.handlebars->121->3427",
17925
+ "default3.handlebars->121->3411"
17926
]
17927
},
17928
{
@@ -17939,8 +17951,8 @@
17951
"zh-chs": "已连接的用户",
17952
"zh-cht": "已连接的用户",
17953
"xloc": [
17942
- "default.handlebars->121->3423",
17943
- "default3.handlebars->121->3407"
17954
+ "default.handlebars->121->3432",
17955
+ "default3.handlebars->121->3416"
17956
]
17957
},
17958
{
@@ -17999,9 +18011,9 @@
18011
"zh-chs": "现在已连接",
18012
"zh-cht": "現在已連接",
18013
"xloc": [
18002
- "default-mobile.handlebars->55->793",
18003
- "default.handlebars->121->1641",
18004
- "default3.handlebars->121->1621"
18014
+ "default-mobile.handlebars->55->802",
18015
+ "default.handlebars->121->1650",
18016
+ "default3.handlebars->121->1630"
18017
]
18018
},
18019
{
@@ -18091,12 +18103,12 @@
18103
"default-mobile.handlebars->55->2",
18104
"default-mobile.handlebars->55->57",
18105
"default-mobile.handlebars->55->735",
18094
- "default.handlebars->121->1610",
18106
+ "default.handlebars->121->1619",
18107
"default.handlebars->121->432",
18108
"default.handlebars->121->435",
18109
"default.handlebars->121->516",
18110
"default.handlebars->121->9",
18099
- "default3.handlebars->121->1590",
18111
+ "default3.handlebars->121->1599",
18112
"default3.handlebars->121->423",
18113
"default3.handlebars->121->426",
18114
"default3.handlebars->121->507",
@@ -18135,8 +18147,8 @@
18147
"zh-chs": "连接数量",
18148
"zh-cht": "連接數量",
18149
"xloc": [
18138
- "default.handlebars->121->3449",
18139
- "default3.handlebars->121->3433"
18150
+ "default.handlebars->121->3458",
18151
+ "default3.handlebars->121->3442"
18152
]
18153
},
18154
{
@@ -18172,10 +18184,10 @@
18184
"zh-cht": "連接錯誤",
18185
"xloc": [
18186
"default-mobile.handlebars->55->699",
18175
- "default.handlebars->121->1529",
18176
- "default.handlebars->121->1546",
18177
- "default3.handlebars->121->1509",
18178
- "default3.handlebars->121->1526",
18187
+ "default.handlebars->121->1538",
18188
+ "default.handlebars->121->1555",
18189
+ "default3.handlebars->121->1518",
18190
+ "default3.handlebars->121->1535",
18191
"login2.handlebars->17->232",
18192
"sharing-mobile.handlebars->55->75"
18193
]
@@ -18206,8 +18218,8 @@
18218
"zh-chs": "连接转发器",
18219
"zh-cht": "連接轉發器",
18220
"xloc": [
18209
- "default.handlebars->121->3486",
18210
- "default3.handlebars->121->3470"
18221
+ "default.handlebars->121->3495",
18222
+ "default3.handlebars->121->3479"
18223
]
18224
},
18225
{
@@ -18296,13 +18308,13 @@
18308
"zh-cht": "連接性",
18309
"xloc": [
18310
"default-mobile.handlebars->55->525",
18299
- "default.handlebars->121->1008",
18300
- "default.handlebars->121->2542",
18311
+ "default.handlebars->121->1017",
18312
+ "default.handlebars->121->2551",
18313
"default.handlebars->121->420",
18314
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
18303
- "default3.handlebars->121->2532",
18315
+ "default3.handlebars->121->1008",
18316
+ "default3.handlebars->121->2541",
18317
"default3.handlebars->121->411",
18305
- "default3.handlebars->121->999",
18318
"default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
18319
]
18320
},
@@ -18332,8 +18344,8 @@
18344
"zh-chs": "同意",
18345
"zh-cht": "同意",
18346
"xloc": [
18335
- "default.handlebars->121->2767",
18336
- "default3.handlebars->121->2757"
18347
+ "default.handlebars->121->2776",
18348
+ "default3.handlebars->121->2766"
18349
]
18350
},
18351
{
@@ -18363,13 +18375,13 @@
18375
"zh-cht": "控制台",
18376
"xloc": [
18377
"default-mobile.handlebars->55->568",
18366
- "default.handlebars->121->1148",
18367
- "default.handlebars->121->1173",
18378
+ "default.handlebars->121->1157",
18379
+ "default.handlebars->121->1182",
18380
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
18381
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
18382
"default.handlebars->contextMenu->cxconsole",
18371
- "default3.handlebars->121->1137",
18372
- "default3.handlebars->121->1162",
18383
+ "default3.handlebars->121->1146",
18384
+ "default3.handlebars->121->1171",
18385
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
18386
"default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
18387
"default3.handlebars->contextMenu->cxconsole"
@@ -18431,10 +18443,10 @@
18443
"zh-chs": "控制",
18444
"zh-cht": "控制",
18445
"xloc": [
18434
- "default.handlebars->121->1147",
18435
- "default.handlebars->121->1172",
18436
- "default3.handlebars->121->1136",
18437
- "default3.handlebars->121->1161",
18446
+ "default.handlebars->121->1156",
18447
+ "default.handlebars->121->1181",
18448
+ "default3.handlebars->121->1145",
18449
+ "default3.handlebars->121->1170",
18450
"messenger.handlebars->remoteImage->3->2"
18451
]
18452
},
@@ -18494,8 +18506,8 @@
18506
"zh-chs": "Cookie编码器",
18507
"zh-cht": "Cookie編碼器",
18508
"xloc": [
18497
- "default.handlebars->121->3469",
18498
- "default3.handlebars->121->3453"
18509
+ "default.handlebars->121->3478",
18510
+ "default3.handlebars->121->3462"
18511
]
18512
},
18513
{
@@ -18773,14 +18785,14 @@
18785
"zh-chs": "复制连结到剪贴板",
18786
"zh-cht": "複製連結到剪貼板",
18787
"xloc": [
18776
- "default.handlebars->121->2552",
18777
- "default.handlebars->121->2576",
18788
+ "default.handlebars->121->2561",
18789
+ "default.handlebars->121->2585",
18790
"default.handlebars->121->332",
18791
"default.handlebars->121->354",
18792
"default.handlebars->121->356",
18793
"default.handlebars->121->624",
18782
- "default3.handlebars->121->2542",
18783
- "default3.handlebars->121->2566",
18794
+ "default3.handlebars->121->2551",
18795
+ "default3.handlebars->121->2575",
18796
"default3.handlebars->121->328",
18797
"default3.handlebars->121->350",
18798
"default3.handlebars->121->352",
@@ -18943,8 +18955,8 @@
18955
"zh-chs": "复制:“{0}”到“{1}”",
18956
"zh-cht": "複製:“{0}”到“{1}”",
18957
"xloc": [
18946
- "default.handlebars->121->2650",
18947
- "default3.handlebars->121->2640"
18958
+ "default.handlebars->121->2659",
18959
+ "default3.handlebars->121->2649"
18960
]
18961
},
18962
{
@@ -19153,8 +19165,8 @@
19165
"zh-chs": "核心服务器",
19166
"zh-cht": "核心伺服器",
19167
"xloc": [
19156
- "default.handlebars->121->3468",
19157
- "default3.handlebars->121->3452"
19168
+ "default.handlebars->121->3477",
19169
+ "default3.handlebars->121->3461"
19170
]
19171
},
19172
{
@@ -19184,8 +19196,8 @@
19196
"zh-cht": "科西嘉文",
19197
"xloc": [
19198
"default-mobile.handlebars->55->160",
19187
- "default.handlebars->121->1949",
19188
- "default3.handlebars->121->1925",
19199
+ "default.handlebars->121->1958",
19200
+ "default3.handlebars->121->1934",
19201
"login2.handlebars->17->41"
19202
]
19203
},
@@ -19193,7 +19205,7 @@
19205
"en": "Cosmo",
19206
"nl": "Cosmo",
19207
"xloc": [
19196
- "default3.handlebars->121->2131"
19208
+ "default3.handlebars->121->2140"
19209
]
19210
},
19211
{
@@ -19222,8 +19234,8 @@
19234
"zh-chs": "创建帐号",
19235
"zh-cht": "創建帳號",
19236
"xloc": [
19225
- "default.handlebars->121->2893",
19226
- "default3.handlebars->121->2883",
19237
+ "default.handlebars->121->2902",
19238
+ "default3.handlebars->121->2892",
19239
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
19240
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
19241
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -19284,9 +19296,9 @@
19296
"zh-chs": "创建登录令牌",
19297
"zh-cht": "創建登錄令牌",
19298
"xloc": [
19287
- "default.handlebars->121->2134",
19299
+ "default.handlebars->121->2143",
19300
"default.handlebars->121->357",
19289
- "default3.handlebars->121->2111"
19301
+ "default3.handlebars->121->2120"
19302
]
19303
},
19304
{
@@ -19315,8 +19327,8 @@
19327
"zh-chs": "创建用户组",
19328
"zh-cht": "創建用戶群",
19329
"xloc": [
19318
- "default.handlebars->121->2933",
19319
- "default3.handlebars->121->2921"
19330
+ "default.handlebars->121->2942",
19331
+ "default3.handlebars->121->2930"
19332
]
19333
},
19334
{
@@ -19345,8 +19357,8 @@
19357
"zh-chs": "创建连结以与访客共享此设备",
19358
"zh-cht": "創建鏈結以與訪客共享此裝置",
19359
"xloc": [
19348
- "default.handlebars->121->1037",
19349
- "default3.handlebars->121->1028"
19360
+ "default.handlebars->121->1046",
19361
+ "default3.handlebars->121->1037"
19362
]
19363
},
19364
{
@@ -19375,8 +19387,8 @@
19387
"zh-chs": "使用以下选项创建一个新的设备组。",
19388
"zh-cht": "使用以下選項創建一個新的裝置群。",
19389
"xloc": [
19378
- "default.handlebars->121->2164",
19379
- "default3.handlebars->121->2159"
19390
+ "default.handlebars->121->2173",
19391
+ "default3.handlebars->121->2168"
19392
]
19393
},
19394
{
@@ -19435,8 +19447,8 @@
19447
"zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
19448
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
19449
"xloc": [
19438
- "default.handlebars->121->2114",
19439
- "default3.handlebars->121->2090"
19450
+ "default.handlebars->121->2123",
19451
+ "default3.handlebars->121->2099"
19452
]
19453
},
19454
{
@@ -19465,8 +19477,8 @@
19477
"zh-chs": "创建文件:“{0}”",
19478
"zh-cht": "創建文件:“{0}”",
19479
"xloc": [
19468
- "default.handlebars->121->2763",
19469
- "default3.handlebars->121->2753"
19480
+ "default.handlebars->121->2772",
19481
+ "default3.handlebars->121->2762"
19482
]
19483
},
19484
{
@@ -19525,8 +19537,8 @@
19537
"zh-chs": "创建文件夹:“{0}”",
19538
"zh-cht": "創建文件夾:“{0}”",
19539
"xloc": [
19528
- "default.handlebars->121->2643",
19529
- "default3.handlebars->121->2633"
19540
+ "default.handlebars->121->2652",
19541
+ "default3.handlebars->121->2642"
19542
]
19543
},
19544
{
@@ -19582,8 +19594,8 @@
19594
"nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
19595
"uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
19596
"xloc": [
19585
- "default.handlebars->121->2850",
19586
- "default3.handlebars->121->2840"
19597
+ "default.handlebars->121->2859",
19598
+ "default3.handlebars->121->2849"
19599
]
19600
},
19601
{
@@ -19643,8 +19655,8 @@
19655
"zh-chs": "创建的设备组:{0}",
19656
"zh-cht": "創建的設備組:{0}",
19657
"xloc": [
19646
- "default.handlebars->121->2654",
19647
- "default3.handlebars->121->2644"
19658
+ "default.handlebars->121->2663",
19659
+ "default3.handlebars->121->2653"
19660
]
19661
},
19662
{
@@ -19673,8 +19685,8 @@
19685
"zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
19686
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
19687
"xloc": [
19676
- "default.handlebars->121->1216",
19677
- "default3.handlebars->121->1205"
19688
+ "default.handlebars->121->1225",
19689
+ "default3.handlebars->121->1214"
19690
]
19691
},
19692
{
@@ -19703,8 +19715,8 @@
19715
"zh-chs": "创建",
19716
"zh-cht": "創建",
19717
"xloc": [
19706
- "default.handlebars->121->3041",
19707
- "default3.handlebars->121->3029"
19718
+ "default.handlebars->121->3050",
19719
+ "default3.handlebars->121->3038"
19720
]
19721
},
19722
{
@@ -19733,8 +19745,8 @@
19745
"zh-chs": "创建时间",
19746
"zh-cht": "創作時間",
19747
"xloc": [
19736
- "default.handlebars->121->2249",
19737
- "default3.handlebars->121->2238"
19748
+ "default.handlebars->121->2258",
19749
+ "default3.handlebars->121->2247"
19750
]
19751
},
19752
{
@@ -19794,10 +19806,10 @@
19806
"zh-chs": "创建者",
19807
"zh-cht": "創作者",
19808
"xloc": [
19797
- "default.handlebars->121->2247",
19798
- "default.handlebars->121->2248",
19799
- "default3.handlebars->121->2236",
19800
- "default3.handlebars->121->2237"
19809
+ "default.handlebars->121->2256",
19810
+ "default.handlebars->121->2257",
19811
+ "default3.handlebars->121->2245",
19812
+ "default3.handlebars->121->2246"
19813
]
19814
},
19815
{
@@ -19827,12 +19839,12 @@
19839
"zh-cht": "證書",
19840
"xloc": [
19841
"default-mobile.handlebars->55->537",
19830
- "default.handlebars->121->1020",
19831
- "default.handlebars->121->1404",
19832
- "default.handlebars->121->2204",
19833
- "default3.handlebars->121->1011",
19834
- "default3.handlebars->121->1385",
19835
- "default3.handlebars->121->2197"
19842
+ "default.handlebars->121->1029",
19843
+ "default.handlebars->121->1413",
19844
+ "default.handlebars->121->2213",
19845
+ "default3.handlebars->121->1020",
19846
+ "default3.handlebars->121->1394",
19847
+ "default3.handlebars->121->2206"
19848
]
19849
},
19850
{
@@ -19862,8 +19874,8 @@
19874
"zh-cht": "克里語",
19875
"xloc": [
19876
"default-mobile.handlebars->55->161",
19865
- "default.handlebars->121->1950",
19866
- "default3.handlebars->121->1926",
19877
+ "default.handlebars->121->1959",
19878
+ "default3.handlebars->121->1935",
19879
"login2.handlebars->17->42"
19880
]
19881
},
@@ -19894,8 +19906,8 @@
19906
"zh-cht": "克羅地亞文",
19907
"xloc": [
19908
"default-mobile.handlebars->55->162",
19897
- "default.handlebars->121->1951",
19898
- "default3.handlebars->121->1927",
19909
+ "default.handlebars->121->1960",
19910
+ "default3.handlebars->121->1936",
19911
"login2.handlebars->17->43"
19912
]
19913
},
@@ -19991,11 +20003,11 @@
20003
"xloc": [
20004
"default-mobile.handlebars->55->660",
20005
"default-mobile.handlebars->55->664",
19994
- "default.handlebars->121->1446",
19995
- "default.handlebars->121->1450",
20006
+ "default.handlebars->121->1455",
20007
+ "default.handlebars->121->1459",
20008
"default.handlebars->121->69",
19997
- "default3.handlebars->121->1428",
19998
- "default3.handlebars->121->1432",
20009
+ "default3.handlebars->121->1437",
20010
+ "default3.handlebars->121->1441",
20011
"default3.handlebars->121->67",
20012
"sharing-mobile.handlebars->55->35",
20013
"sharing-mobile.handlebars->55->39",
@@ -20179,9 +20191,9 @@
20191
"zh-chs": "当前密码不正确。",
20192
"zh-cht": "當前密碼不正確。",
20193
"xloc": [
20182
- "default-mobile.handlebars->55->1097",
20183
- "default.handlebars->121->3386",
20184
- "default3.handlebars->121->3370"
20194
+ "default-mobile.handlebars->55->1106",
20195
+ "default.handlebars->121->3395",
20196
+ "default3.handlebars->121->3379"
20197
]
20198
},
20199
{
@@ -20286,7 +20298,7 @@
20298
"en": "Cyborg",
20299
"nl": "Cyborg",
20300
"xloc": [
20289
- "default3.handlebars->121->2132"
20301
+ "default3.handlebars->121->2141"
20302
]
20303
},
20304
{
@@ -20312,9 +20324,9 @@
20324
"zh-chs": "循环计数",
20325
"zh-cht": "循環計數",
20326
"xloc": [
20315
- "default-mobile.handlebars->55->876",
20316
- "default.handlebars->121->1734",
20317
- "default3.handlebars->121->1712"
20327
+ "default-mobile.handlebars->55->885",
20328
+ "default.handlebars->121->1743",
20329
+ "default3.handlebars->121->1721"
20330
]
20331
},
20332
{
@@ -20344,8 +20356,8 @@
20356
"zh-cht": "捷克文",
20357
"xloc": [
20358
"default-mobile.handlebars->55->163",
20347
- "default.handlebars->121->1952",
20348
- "default3.handlebars->121->1928",
20359
+ "default.handlebars->121->1961",
20360
+ "default3.handlebars->121->1937",
20361
"login2.handlebars->17->44"
20362
]
20363
},
@@ -20357,9 +20369,9 @@
20369
"pl": "Serwery DNS",
20370
"uk": "DNS Сервери",
20371
"xloc": [
20360
- "default-mobile.handlebars->55->822",
20361
- "default.handlebars->121->1680",
20362
- "default3.handlebars->121->1660"
20372
+ "default-mobile.handlebars->55->831",
20373
+ "default.handlebars->121->1689",
20374
+ "default3.handlebars->121->1669"
20375
]
20376
},
20377
{
@@ -20449,8 +20461,8 @@
20461
"zh-cht": "丹麥文",
20462
"xloc": [
20463
"default-mobile.handlebars->55->164",
20452
- "default.handlebars->121->1953",
20453
- "default3.handlebars->121->1929",
20464
+ "default.handlebars->121->1962",
20465
+ "default3.handlebars->121->1938",
20466
"login2.handlebars->17->45"
20467
]
20468
},
@@ -20489,7 +20501,7 @@
20501
"en": "Darkly",
20502
"nl": "Donker",
20503
"xloc": [
20492
- "default3.handlebars->121->2133"
20504
+ "default3.handlebars->121->2142"
20505
]
20506
},
20507
{
@@ -20518,8 +20530,8 @@
20530
"zh-chs": "数据通道",
20531
"zh-cht": "數據通道",
20532
"xloc": [
20521
- "default.handlebars->121->1402",
20522
- "default3.handlebars->121->1383",
20533
+ "default.handlebars->121->1411",
20534
+ "default3.handlebars->121->1392",
20535
"sharing.handlebars->49->11"
20536
]
20537
},
@@ -20535,8 +20547,8 @@
20547
"pl": "Zapisy Bazy Danych",
20548
"uk": "Записи Бази Даних",
20549
"xloc": [
20538
- "default.handlebars->121->3245",
20539
- "default3.handlebars->121->3229"
20550
+ "default.handlebars->121->3254",
20551
+ "default3.handlebars->121->3238"
20552
]
20553
},
20554
{
@@ -20566,8 +20578,8 @@
20578
"zh-cht": "日期和時間",
20579
"xloc": [
20580
"default-mobile.handlebars->55->322",
20569
- "default.handlebars->121->2111",
20570
- "default3.handlebars->121->2087"
20581
+ "default.handlebars->121->2120",
20582
+ "default3.handlebars->121->2096"
20583
]
20584
},
20585
{
@@ -20597,12 +20609,12 @@
20609
"zh-cht": "天",
20610
"xloc": [
20611
"default-mobile.handlebars->55->610",
20600
- "default.handlebars->121->1313",
20601
- "default.handlebars->121->3249",
20602
- "default.handlebars->121->3252",
20603
- "default3.handlebars->121->1298",
20604
- "default3.handlebars->121->3233",
20605
- "default3.handlebars->121->3236"
20612
+ "default.handlebars->121->1322",
20613
+ "default.handlebars->121->3258",
20614
+ "default.handlebars->121->3261",
20615
+ "default3.handlebars->121->1307",
20616
+ "default3.handlebars->121->3242",
20617
+ "default3.handlebars->121->3245"
20618
]
20619
},
20620
{
@@ -20631,10 +20643,10 @@
20643
"zh-chs": "停用",
20644
"zh-cht": "停用",
20645
"xloc": [
20634
- "default.handlebars->121->2281",
20635
- "default.handlebars->121->2345",
20636
- "default3.handlebars->121->2270",
20637
- "default3.handlebars->121->2332"
20646
+ "default.handlebars->121->2290",
20647
+ "default.handlebars->121->2354",
20648
+ "default3.handlebars->121->2279",
20649
+ "default3.handlebars->121->2341"
20650
]
20651
},
20652
{
@@ -20663,8 +20675,8 @@
20675
"zh-chs": "如果设置停用CCM",
20676
"zh-cht": "如果設置停用CCM",
20677
"xloc": [
20666
- "default.handlebars->121->2357",
20667
- "default3.handlebars->121->2344"
20678
+ "default.handlebars->121->2366",
20679
+ "default3.handlebars->121->2353"
20680
]
20681
},
20682
{
@@ -20724,15 +20736,15 @@
20736
"zh-chs": "默认",
20737
"zh-cht": "默認",
20738
"xloc": [
This file is too large to show in full.
views/default-mobile.handlebars
+9
@@ -2099,6 +2099,7 @@
2099
if (message.event.node.intelamt.warn != null) { node.intelamt.warn = message.event.node.intelamt.warn; } else { delete node.intelamt.warn; }
2100
}
2101
if (message.event.node.av != null) { node.av = message.event.node.av; }
2102
+ if (message.event.node.lsc != null) { node.lsc = message.event.node.lsc; }
2103
if (message.event.node.wsc != null) { node.wsc = message.event.node.wsc; }
2104
if (message.event.node.defender != null) { node.defender = message.event.node.defender; }
2105
node.namel = node.name.toLowerCase();
@@ -6546,6 +6547,14 @@
6547
if (y.length > 0) x += addDetailItem("Windows Defender", y.join(', '));
6548
}
6549
6550
+ // Linux Security Central
6551
+ if (node.lsc) {
6552
+ var y = [];
6553
+ if (node.lsc.antiVirus != null) { if (node.lsc.antiVirus == 'OK') { y.push("AV" + ' - <span style=color:green>' + "OK" + '</span>'); } else { y.push("AV" + ' - <span style=color:red>' + "BAD" + '</span>'); } }
6554
+ if (node.lsc.firewall != null) { if (node.lsc.firewall == 'OK') { y.push("Firewall" + ' - <span style=color:green>' + "OK" + '</span>'); } else { y.push("Firewall" + ' - <span style=color:red>' + "BAD" + '</span>'); } }
6555
+ if (y.length > 0) x += addDetailItem("Linux Security", y.join(', '));
6556
+ }
6557
+
6558
// Antivirus
6559
if (node.av && node.av.length > 0) {
6560
var y = [];
views/default.handlebars
+11
-1
@@ -3621,6 +3621,7 @@
3621
if (message.event.node.intelamt.warn != null) { node.intelamt.warn = message.event.node.intelamt.warn; } else { delete node.intelamt.warn; }
3622
}
3623
if (message.event.node.av != null) { node.av = message.event.node.av; }
3624
+ if (message.event.node.lsc != null) { node.lsc = message.event.node.lsc; }
3625
if (message.event.node.wsc != null) { node.wsc = message.event.node.wsc; }
3626
if (message.event.node.defender != null) { node.defender = message.event.node.defender; }
3627
if (message.event.node.volumes != null) { node.volumes = message.event.node.volumes; }
@@ -6192,7 +6193,8 @@
6193
for (var i in chkNodeIds) {
6194
var n = getNodeFromId(chkNodeIds[i]);
6195
csv += '"' + n._id.split(',').join('') + '","' + n.name.split(',').join('') + '","' + (n.rname?(n.rname.split(',').join('')):'') + '","' + (n.host?(n.host.split(',').join('')):'') + '","' + n.icon + '","' + (n.ip?n.ip:'') + '","' + (n.osdesc?(n.osdesc.split(',').join('')):'') + '","' + n.state + '","' + meshes[n.meshid].name.split(',').join('') + '","' + (n.conn?n.conn:'') + '","' + (n.pwr?n.pwr:'') + '"';
6195
- if (typeof n.wsc == 'object') { csv += ',"' + csvClean(n.wsc.antiVirus) + '","' + csvClean(n.wsc.autoUpdate) + '","' + csvClean(n.wsc.firewall) + '"'; } else { csv += ',,,'; }
6196
+ if (typeof n.wsc == 'object') { csv += ',"' + csvClean(n.wsc.antiVirus) + '","' + csvClean(n.wsc.autoUpdate) + '","' + csvClean(n.wsc.firewall) + '"'; }
6197
+ else if (typeof n.lsc == 'object') { csv += ',"' + csvClean(n.lsc.antiVirus) + '",,"' + csvClean(n.lsc.firewall) + '"'; } else { csv += ',,,'; }
6198
if (typeof n.volumes == 'object') {
6199
var bitlockerdetails = '', firstbitlocker = true;
6200
for (var a in n.volumes) { if (typeof n.volumes[a].protectionStatus !== 'undefined') { if (firstbitlocker) { firstbitlocker = false; } else { bitlockerdetails += '|'; } bitlockerdetails += a + '/' + n.volumes[a].volumeStatus; } }
@@ -7777,6 +7779,14 @@
7779
if (y.length > 0) x += addDeviceAttribute("Windows Defender", y.join(', '));
7780
}
7781
7782
+ // Linux Security Central
7783
+ if (node.lsc) {
7784
+ var y = [];
7785
+ if (node.lsc.antiVirus != null) { if (node.lsc.antiVirus == 'OK') { y.push("AV" + ' - <span style=color:green>' + "OK" + '</span>'); } else { y.push("AV" + ' - <span style=color:red>' + "BAD" + '</span>'); } }
7786
+ if (node.lsc.firewall != null) { if (node.lsc.firewall == 'OK') { y.push("Firewall" + ' - <span style=color:green>' + "OK" + '</span>'); } else { y.push("Firewall" + ' - <span style=color:red>' + "BAD" + '</span>'); } }
7787
+ if (y.length > 0) x += addDeviceAttribute("Linux Security", y.join(', '));
7788
+ }
7789
+
7790
// Antivirus
7791
if (node.av && node.av.length > 0) {
7792
var y = [];
views/default3.handlebars
+11
-1
@@ -4309,6 +4309,7 @@
4309
if (message.event.node.intelamt.warn != null) { node.intelamt.warn = message.event.node.intelamt.warn; } else { delete node.intelamt.warn; }
4310
}
4311
if (message.event.node.av != null) { node.av = message.event.node.av; }
4312
+ if (message.event.node.lsc != null) { node.lsc = message.event.node.lsc; }
4313
if (message.event.node.wsc != null) { node.wsc = message.event.node.wsc; }
4314
if (message.event.node.defender != null) { node.defender = message.event.node.defender; }
4315
if (message.event.node.volumes != null) { node.volumes = message.event.node.volumes; }
@@ -7077,7 +7078,8 @@
7078
for (var i in chkNodeIds) {
7079
var n = getNodeFromId(chkNodeIds[i]);
7080
csv += '"' + n._id.split(',').join('') + '","' + n.name.split(',').join('') + '","' + (n.rname ? (n.rname.split(',').join('')) : '') + '","' + (n.host ? (n.host.split(',').join('')) : '') + '","' + n.icon + '","' + (n.ip ? n.ip : '') + '","' + (n.osdesc ? (n.osdesc.split(',').join('')) : '') + '","' + n.state + '","' + meshes[n.meshid].name.split(',').join('') + '","' + (n.conn ? n.conn : '') + '","' + (n.pwr ? n.pwr : '') + '"';
7080
- if (typeof n.wsc == 'object') { csv += ',"' + csvClean(n.wsc.antiVirus) + '","' + csvClean(n.wsc.autoUpdate) + '","' + csvClean(n.wsc.firewall) + '"'; } else { csv += ',,,'; }
7081
+ if (typeof n.wsc == 'object') { csv += ',"' + csvClean(n.wsc.antiVirus) + '","' + csvClean(n.wsc.autoUpdate) + '","' + csvClean(n.wsc.firewall) + '"'; }
7082
+ else if (typeof n.lsc == 'object') { csv += ',"' + csvClean(n.lsc.antiVirus) + '",,"' + csvClean(n.lsc.firewall) + '"'; } else { csv += ',,,'; }
7083
if (typeof n.volumes == 'object') {
7084
var bitlockerdetails = '', firstbitlocker = true;
7085
for (var a in n.volumes) { if (typeof n.volumes[a].protectionStatus !== 'undefined') { if (firstbitlocker) { firstbitlocker = false; } else { bitlockerdetails += '|'; } bitlockerdetails += a + '/' + n.volumes[a].volumeStatus; } }
@@ -8672,6 +8674,14 @@
8674
if (y.length > 0) x += addDeviceAttribute("Windows Defender", y.join(', '));
8675
}
8676
8677
+ // Linux Security Central
8678
+ if (node.lsc) {
8679
+ var y = [];
8680
+ if (node.lsc.antiVirus != null) { if (node.lsc.antiVirus == 'OK') { y.push("AV" + ' - <span style=color:green>' + "OK" + '</span>'); } else { y.push("AV" + ' - <span style=color:red>' + "BAD" + '</span>'); } }
8681
+ if (node.lsc.firewall != null) { if (node.lsc.firewall == 'OK') { y.push("Firewall" + ' - <span style=color:green>' + "OK" + '</span>'); } else { y.push("Firewall" + ' - <span style=color:red>' + "BAD" + '</span>'); } }
8682
+ if (y.length > 0) x += addDeviceAttribute("Linux Security", y.join(', '));
8683
+ }
8684
+
8685
// Antivirus
8686
if (node.av && node.av.length > 0) {
8687
var y = [];