Added detailed device export

Ylian Saint-Hilaire committed Apr 6, 2021 at 19:06 UTC 4aebddd1e141674962ac334ba711edb35440d063
3 files changed +2302 -2111
meshuser.js
+162 -1
@@ -5550,8 +5550,127 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5550 parent.parent.DispatchEvent('*', obj, { action: 'oneclickrecovery', userid: user._id, username: user.name, nodeids: [node._id], domain: domain.id, nolog: 1, file: file.fullpath });
5551 });
5552 }
5553 + break;
5554 + }
5555 + case 'getDeviceDetails': {
5556 + if (common.validateStrArray(command.nodeids, 1) == false) break; // Check nodeids
5557 + if (common.validateString(command.type, 3, 4) == false) break; // Check type
5558 + getDeviceDetailedInfo(command.nodeids, command.type, function (results, type) {
5559 + var output = null;
5560 + if (type == 'csv') {
5561 + try {
5562 + // Create the CSV file
5563 + output = 'id,name,rname,host,icon,ip,osdesc,groupname,cpu,osbuild,biosDate,biosVendor,biosVersion,boardName,boardVendor,boardVersion,productUuid,agentOpenSSL,agentCommitDate,agentCommitHash,agentCompileTime,netIfCount,macs,addresses\r\n';
5564 + for (var i = 0; i < results.length; i++) {
5565 + const nodeinfo = results[i];
5566 +
5567 + // Node information
5568 + if (nodeinfo.node != null) {
5569 + const n = nodeinfo.node;
5570 + output += csvClean(n._id) + ',' + csvClean(n.name) + ',' + csvClean(n.rname ? n.rname : '') + ',' + csvClean(n.host ? n.host : '') + ',' + n.icon + ',' + (n.ip ? n.ip : '') + ',' + (n.osdesc ? csvClean(n.osdesc) : '') + ',' + csvClean(parent.meshes[n.meshid].name);
5571 + } else {
5572 + output += ',,,,,,,';
5573 + }
5574 +
5575 + // System infomation
5576 + if ((nodeinfo.sys) && (nodeinfo.sys.hardware) && (nodeinfo.sys.hardware.windows) && (nodeinfo.sys.hardware.windows)) {
5577 + // Windows
5578 + output += ',';
5579 + if (nodeinfo.sys.hardware.windows.cpu && (nodeinfo.sys.hardware.windows.cpu.length > 0) && (typeof nodeinfo.sys.hardware.windows.cpu[0].Name == 'string')) { output += csvClean(nodeinfo.sys.hardware.windows.cpu[0].Name); }
5580 + output += ',';
5581 + if (nodeinfo.sys.hardware.windows.osinfo && (nodeinfo.sys.hardware.windows.osinfo.BuildNumber)) { output += csvClean(nodeinfo.sys.hardware.windows.osinfo.BuildNumber); }
5582 + output += ',';
5583 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.bios_date)) { output += csvClean(nodeinfo.sys.hardware.identifiers.bios_date); }
5584 + output += ',';
5585 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.bios_vendor)) { output += csvClean(nodeinfo.sys.hardware.identifiers.bios_vendor); }
5586 + output += ',';
5587 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.bios_version)) { output += csvClean(nodeinfo.sys.hardware.identifiers.bios_version); }
5588 + output += ',';
5589 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.board_name)) { output += csvClean(nodeinfo.sys.hardware.identifiers.board_name); }
5590 + output += ',';
5591 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.board_vendor)) { output += csvClean(nodeinfo.sys.hardware.identifiers.board_vendor); }
5592 + output += ',';
5593 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.board_version)) { output += csvClean(nodeinfo.sys.hardware.identifiers.board_version); }
5594 + output += ',';
5595 + if (nodeinfo.sys.hardware.identifiers && (nodeinfo.sys.hardware.identifiers.product_uuid)) { output += csvClean(nodeinfo.sys.hardware.identifiers.product_uuid); }
5596 + } else if ((nodeinfo.sys) && (nodeinfo.sys.hardware) && (nodeinfo.sys.hardware.mobile)) {
5597 + // Mobile
5598 + output += ',';
5599 + output += ',';
5600 + output += ',';
5601 + output += ',';
5602 + output += ',';
5603 + if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.bootloader)) { output += csvClean(nodeinfo.sys.hardware.mobile.bootloader); }
5604 + output += ',';
5605 + if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.model)) { output += csvClean(nodeinfo.sys.hardware.mobile.model); }
5606 + output += ',';
5607 + if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.brand)) { output += csvClean(nodeinfo.sys.hardware.mobile.brand); }
5608 + output += ',';
5609 + output += ',';
5610 + if (nodeinfo.sys.hardware.mobile && (nodeinfo.sys.hardware.mobile.id)) { output += csvClean(nodeinfo.sys.hardware.mobile.id); }
5611 + } else if ((nodeinfo.sys) && (nodeinfo.sys.hardware) && (nodeinfo.sys.hardware.windows) && (nodeinfo.sys.hardware.linux)) {
5612 + // Linux
5613 + output += ',';
5614 + output += ',';
5615 + output += ',';
5616 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.bios_date)) { output += csvClean(nodeinfo.sys.hardware.linux.bios_date); }
5617 + output += ',';
5618 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.bios_vendor)) { output += csvClean(nodeinfo.sys.hardware.linux.bios_vendor); }
5619 + output += ',';
5620 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.bios_version)) { output += csvClean(nodeinfo.sys.hardware.linux.bios_version); }
5621 + output += ',';
5622 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.board_name)) { output += csvClean(nodeinfo.sys.hardware.linux.board_name); }
5623 + output += ',';
5624 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.board_vendor)) { output += csvClean(nodeinfo.sys.hardware.linux.board_vendor); }
5625 + output += ',';
5626 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.board_version)) { output += csvClean(nodeinfo.sys.hardware.linux.board_version); }
5627 + output += ',';
5628 + if (nodeinfo.sys.hardware.linux && (nodeinfo.sys.hardware.linux.product_uuid)) { output += csvClean(nodeinfo.sys.hardware.linux.product_uuid); }
5629 + } else {
5630 + output += ',,,,,,,,,';
5631 + }
5632 +
5633 + // Agent information
5634 + if ((nodeinfo.sys) && (nodeinfo.sys.hardware) && (nodeinfo.sys.hardware.agentvers)) {
5635 + output += ',';
5636 + if (nodeinfo.sys.hardware.agentvers.openssl) { output += csvClean(nodeinfo.sys.hardware.agentvers.openssl); }
5637 + output += ',';
5638 + if (nodeinfo.sys.hardware.agentvers.commitDate) { output += csvClean(nodeinfo.sys.hardware.agentvers.commitDate); }
5639 + output += ',';
5640 + if (nodeinfo.sys.hardware.agentvers.commitHash) { output += csvClean(nodeinfo.sys.hardware.agentvers.commitHash); }
5641 + output += ',';
5642 + if (nodeinfo.sys.hardware.agentvers.compileTime) { output += csvClean(nodeinfo.sys.hardware.agentvers.compileTime); }
5643 + } else {
5644 + output += ',,,,';
5645 + }
5646 +
5647 + // Network interfaces
5648 + if ((nodeinfo.net) && (nodeinfo.net.netif2)) {
5649 + output += ',';
5650 + output += Object.keys(nodeinfo.net.netif2).length; // Interface count
5651 + var macs = [], addresses = [];
5652 + for (var j in nodeinfo.net.netif2) {
5653 + if (Array.isArray(nodeinfo.net.netif2[j])) {
5654 + for (var k = 0; k < nodeinfo.net.netif2[j].length; k++) {
5655 + if (typeof nodeinfo.net.netif2[j][k].mac == 'string') { macs.push(nodeinfo.net.netif2[j][k].mac); }
5656 + if (typeof nodeinfo.net.netif2[j][k].address == 'string') { addresses.push(nodeinfo.net.netif2[j][k].address); }
5657 + }
5658 + }
5659 + }
5660 + output += ',';
5661 + output += csvClean(macs.join(' ')); // MACS
5662 + output += ',';
5663 + output += csvClean(addresses.join(' ')); // Addresses
5664 + } else {
5665 + output += ',,,';
5666 + }
5667
5554 - //console.log(command, file);
5668 + output += '\r\n';
5669 + }
5670 + } catch (ex) { console.log(ex); }
5671 + } else { output = JSON.stringify(results, null, 2); }
5672 + try { ws.send(JSON.stringify({ action: 'getDeviceDetails', data: output, type: type })); } catch (ex) { }
5673 + });
5674 break;
5675 }
5676 default: {
@@ -5562,6 +5681,48 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
5681 }
5682 }
5683
5684 + function csvClean(s) { return '\"' + s.split('\"').join('').split(',').join('').split('\r').join('').split('\n').join('') + '\"'; }
5685 +
5686 + // Return detailed information about an array of nodeid's
5687 + function getDeviceDetailedInfo(nodeids, type, func) {
5688 + var results = [], resultPendingCount = 0;
5689 + for (var i in nodeids) {
5690 + // Fetch the node from the database
5691 + resultPendingCount++;
5692 + const getNodeFunc = function (node, rights, visible) {
5693 + if ((node != null) && (visible == true)) {
5694 + const getNodeSysInfoFunc = function (err, docs) {
5695 + const getNodeNetInfoFunc = function (err, docs) {
5696 + var netinfo = null;
5697 + if ((err == null) && (docs != null) && (docs.length == 1)) { netinfo = docs[0]; }
5698 + resultPendingCount--;
5699 + getNodeNetInfoFunc.results.push({ node: parent.CloneSafeNode(getNodeNetInfoFunc.node), sys: getNodeNetInfoFunc.sysinfo, net: netinfo });
5700 + if (resultPendingCount == 0) { func(getNodeFunc.results, type); }
5701 + }
5702 + getNodeNetInfoFunc.results = getNodeSysInfoFunc.results;
5703 + getNodeNetInfoFunc.nodeid = getNodeSysInfoFunc.nodeid;
5704 + getNodeNetInfoFunc.node = getNodeSysInfoFunc.node;
5705 + if ((err == null) && (docs != null) && (docs.length == 1)) { getNodeNetInfoFunc.sysinfo = docs[0]; }
5706 +
5707 + // Query the database for network information
5708 + db.Get('if' + getNodeSysInfoFunc.nodeid, getNodeNetInfoFunc);
5709 + }
5710 + getNodeSysInfoFunc.results = getNodeFunc.results;
5711 + getNodeSysInfoFunc.nodeid = getNodeFunc.nodeid;
5712 + getNodeSysInfoFunc.node = node;
5713 +
5714 + // Query the database for system information
5715 + db.Get('si' + getNodeFunc.nodeid, getNodeSysInfoFunc);
5716 + } else { resultPendingCount--; }
5717 + if (resultPendingCount == 0) { func(getNodeFunc.results.join('\r\n'), type); }
5718 + }
5719 + getNodeFunc.results = results;
5720 + getNodeFunc.nodeid = nodeids[i];
5721 + parent.GetNodeWithRights(domain, user, nodeids[i], getNodeFunc);
5722 + }
5723 + }
5724 +
5725 +
5726 // Display a notification message for this session only.
5727 function displayNotificationMessage(msg, title, tag, titleid, msgid, args) {
5728 ws.send(JSON.stringify({ 'action': 'msg', 'type': 'notify', id: Math.random(), 'value': msg, 'title': title, 'userid': user._id, 'username': user.name, 'tag': tag, 'titleid': titleid, 'msgid': msgid, 'args': args }));
translate/translate.json
+2114 -2102
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->31->1504",
21 - "default.handlebars->31->1506"
20 + "default.handlebars->31->1506",
21 + "default.handlebars->31->1508"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->31->1417"
207 + "default.handlebars->31->1419"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->31->1581",
228 - "default.handlebars->31->2064"
227 + "default.handlebars->31->1583",
228 + "default.handlebars->31->2066"
229 ]
230 },
231 {
@@ -395,7 +395,7 @@
395 "zh-chs": "(可选的)",
396 "zh-cht": "(可選的)",
397 "xloc": [
398 - "default.handlebars->31->376"
398 + "default.handlebars->31->377"
399 ]
400 },
401 {
@@ -432,8 +432,8 @@
432 "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434 "xloc": [
435 - "default.handlebars->31->1550",
436 - "default.handlebars->31->342"
435 + "default.handlebars->31->1552",
436 + "default.handlebars->31->343"
437 ]
438 },
439 {
@@ -453,7 +453,7 @@
453 "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
454 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
455 "xloc": [
456 - "default.handlebars->31->416"
456 + "default.handlebars->31->417"
457 ]
458 },
459 {
@@ -508,7 +508,7 @@
508 "zh-cht": ",",
509 "xloc": [
510 "default-mobile.handlebars->11->580",
511 - "default.handlebars->31->1652"
511 + "default.handlebars->31->1654"
512 ]
513 },
514 {
@@ -529,7 +529,7 @@
529 "zh-cht": ",只適用於Intel&reg;AMT",
530 "xloc": [
531 "default-mobile.handlebars->11->178",
532 - "default.handlebars->31->236"
532 + "default.handlebars->31->237"
533 ]
534 },
535 {
@@ -550,7 +550,7 @@
550 "zh-cht": ",MQTT在線",
551 "xloc": [
552 "default-mobile.handlebars->11->497",
553 - "default.handlebars->31->1154"
553 + "default.handlebars->31->1156"
554 ]
555 },
556 {
@@ -559,7 +559,7 @@
559 "nl": ", Geen toestemming",
560 "de": ", keine Zustimmung",
561 "xloc": [
562 - "default.handlebars->31->749"
562 + "default.handlebars->31->751"
563 ]
564 },
565 {
@@ -579,7 +579,7 @@
579 "zh-chs": ",提示同意",
580 "zh-cht": ",提示同意",
581 "xloc": [
582 - "default.handlebars->31->750"
582 + "default.handlebars->31->752"
583 ]
584 },
585 {
@@ -599,7 +599,7 @@
599 "zh-chs": ",软体KVM",
600 "zh-cht": ",軟體KVM",
601 "xloc": [
602 - "default.handlebars->31->936",
602 + "default.handlebars->31->938",
603 "desktop.handlebars->3->12"
604 ]
605 },
@@ -608,7 +608,7 @@
608 "fr": ", barre d'outils",
609 "nl": ", Werkbalk",
610 "xloc": [
611 - "default.handlebars->31->751"
611 + "default.handlebars->31->753"
612 ]
613 },
614 {
@@ -617,7 +617,7 @@
617 "fr": ", Visualisation seulement",
618 "de": ", nur ansehen",
619 "xloc": [
620 - "default.handlebars->31->748"
620 + "default.handlebars->31->750"
621 ]
622 },
623 {
@@ -639,9 +639,9 @@
639 "xloc": [
640 "default-mobile.handlebars->11->337",
641 "default-mobile.handlebars->11->371",
642 - "default.handlebars->31->1005",
643 - "default.handlebars->31->1017",
644 - "default.handlebars->31->943",
642 + "default.handlebars->31->1007",
643 + "default.handlebars->31->1019",
644 + "default.handlebars->31->945",
645 "desktop.handlebars->3->19",
646 "terminal.handlebars->3->9",
647 "xterm.handlebars->9->6"
@@ -764,7 +764,7 @@
764 "zh-chs": ",{0}观看",
765 "zh-cht": ",{0}觀看",
766 "xloc": [
767 - "default.handlebars->31->937",
767 + "default.handlebars->31->939",
768 "desktop.handlebars->3->13"
769 ]
770 },
@@ -829,9 +829,9 @@
829 "xloc": [
830 "default-mobile.handlebars->11->131",
831 "default-mobile.handlebars->11->373",
832 - "default.handlebars->31->1023",
833 - "default.handlebars->31->1704",
834 - "default.handlebars->31->2227"
832 + "default.handlebars->31->1025",
833 + "default.handlebars->31->1706",
834 + "default.handlebars->31->2229"
835 ]
836 },
837 {
@@ -888,7 +888,7 @@
888 "zh-chs": "1个活跃时段",
889 "zh-cht": "1個活躍時段",
890 "xloc": [
891 - "default.handlebars->31->2137"
891 + "default.handlebars->31->2139"
892 ]
893 },
894 {
@@ -910,7 +910,7 @@
910 "xloc": [
911 "default-mobile.handlebars->11->141",
912 "default-mobile.handlebars->11->623",
913 - "default.handlebars->31->1728",
913 + "default.handlebars->31->1730",
914 "download.handlebars->3->1",
915 "download2.handlebars->5->1"
916 ]
@@ -932,7 +932,7 @@
932 "zh-chs": "1条连接",
933 "zh-cht": "1位聯絡文",
934 "xloc": [
935 - "default.handlebars->31->939",
935 + "default.handlebars->31->941",
936 "desktop.handlebars->3->15"
937 ]
938 },
@@ -954,8 +954,8 @@
954 "zh-cht": "1天",
955 "xloc": [
956 "default.handlebars->31->196",
957 - "default.handlebars->31->367",
958 - "default.handlebars->31->381"
957 + "default.handlebars->31->368",
958 + "default.handlebars->31->382"
959 ]
960 },
961 {
@@ -975,7 +975,7 @@
975 "zh-chs": "1组",
976 "zh-cht": "1群",
977 "xloc": [
978 - "default.handlebars->31->2098"
978 + "default.handlebars->31->2100"
979 ]
980 },
981 {
@@ -996,8 +996,8 @@
996 "zh-cht": "1小時",
997 "xloc": [
998 "default.handlebars->31->194",
999 - "default.handlebars->31->365",
1000 - "default.handlebars->31->379"
999 + "default.handlebars->31->366",
1000 + "default.handlebars->31->380"
1001 ]
1002 },
1003 {
@@ -1017,7 +1017,7 @@
1017 "zh-chs": "1分钟",
1018 "zh-cht": "1分鐘",
1019 "xloc": [
1020 - "default.handlebars->31->807"
1020 + "default.handlebars->31->809"
1021 ]
1022 },
1023 {
@@ -1058,8 +1058,8 @@
1058 "zh-cht": "1個月",
1059 "xloc": [
1060 "default.handlebars->31->198",
1061 - "default.handlebars->31->369",
1062 - "default.handlebars->31->383"
1061 + "default.handlebars->31->370",
1062 + "default.handlebars->31->384"
1063 ]
1064 },
1065 {
@@ -1079,7 +1079,7 @@
1079 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1080 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1081 "xloc": [
1082 - "default.handlebars->31->1888"
1082 + "default.handlebars->31->1890"
1083 ]
1084 },
1085 {
@@ -1099,7 +1099,7 @@
1099 "zh-chs": "1个节点",
1100 "zh-cht": "1個節點",
1101 "xloc": [
1102 - "default.handlebars->31->440"
1102 + "default.handlebars->31->441"
1103 ]
1104 },
1105 {
@@ -1145,13 +1145,13 @@
1145 "default-mobile.handlebars->11->203",
1146 "default-mobile.handlebars->11->206",
1147 "default-mobile.handlebars->11->209",
1148 - "default.handlebars->31->1892",
1149 - "default.handlebars->31->286",
1150 - "default.handlebars->31->289",
1151 - "default.handlebars->31->292",
1152 - "default.handlebars->31->295",
1153 - "default.handlebars->31->298",
1154 - "default.handlebars->31->301"
1148 + "default.handlebars->31->1894",
1149 + "default.handlebars->31->287",
1150 + "default.handlebars->31->290",
1151 + "default.handlebars->31->293",
1152 + "default.handlebars->31->296",
1153 + "default.handlebars->31->299",
1154 + "default.handlebars->31->302"
1155 ]
1156 },
1157 {
@@ -1172,8 +1172,8 @@
1172 "zh-cht": "1週",
1173 "xloc": [
1174 "default.handlebars->31->197",
1175 - "default.handlebars->31->368",
1176 - "default.handlebars->31->382"
1175 + "default.handlebars->31->369",
1176 + "default.handlebars->31->383"
1177 ]
1178 },
1179 {
@@ -1277,7 +1277,7 @@
1277 "zh-chs": "10分钟",
1278 "zh-cht": "10分鐘",
1279 "xloc": [
1280 - "default.handlebars->31->809"
1280 + "default.handlebars->31->811"
1281 ]
1282 },
1283 {
@@ -1360,7 +1360,7 @@
1360 "zh-chs": "12小时",
1361 "zh-cht": "12小時",
1362 "xloc": [
1363 - "default.handlebars->31->817"
1363 + "default.handlebars->31->819"
1364 ]
1365 },
1366 {
@@ -1402,7 +1402,7 @@
1402 "zh-chs": "15分钟",
1403 "zh-cht": "15分鐘",
1404 "xloc": [
1405 - "default.handlebars->31->810"
1405 + "default.handlebars->31->812"
1406 ]
1407 },
1408 {
@@ -1422,7 +1422,7 @@
1422 "zh-chs": "16小时",
1423 "zh-cht": "16小時",
1424 "xloc": [
1425 - "default.handlebars->31->818"
1425 + "default.handlebars->31->820"
1426 ]
1427 },
1428 {
@@ -1442,7 +1442,7 @@
1442 "zh-chs": "2天",
1443 "zh-cht": "2天",
1444 "xloc": [
1445 - "default.handlebars->31->820"
1445 + "default.handlebars->31->822"
1446 ]
1447 },
1448 {
@@ -1462,7 +1462,7 @@
1462 "zh-chs": "2小时",
1463 "zh-cht": "2小時",
1464 "xloc": [
1465 - "default.handlebars->31->814"
1465 + "default.handlebars->31->816"
1466 ]
1467 },
1468 {
@@ -1566,7 +1566,7 @@
1566 "zh-chs": "24小时",
1567 "zh-cht": "24小時",
1568 "xloc": [
1569 - "default.handlebars->31->819"
1569 + "default.handlebars->31->821"
1570 ]
1571 },
1572 {
@@ -1628,7 +1628,7 @@
1628 "zh-chs": "2FA备份代码已清除",
1629 "zh-cht": "2FA備份代碼已清除",
1630 "xloc": [
1631 - "default.handlebars->31->1839"
1631 + "default.handlebars->31->1841"
1632 ]
1633 },
1634 {
@@ -1648,8 +1648,8 @@
1648 "zh-chs": "启用第二因素身份验证",
1649 "zh-cht": "啟用第二因素身份驗證",
1650 "xloc": [
1651 - "default.handlebars->31->1905",
1652 - "default.handlebars->31->2120"
1651 + "default.handlebars->31->1907",
1652 + "default.handlebars->31->2122"
1653 ]
1654 },
1655 {
@@ -1768,7 +1768,7 @@
1768 "zh-chs": "30分钟",
1769 "zh-cht": "30分鐘",
1770 "xloc": [
1771 - "default.handlebars->31->811"
1771 + "default.handlebars->31->813"
1772 ]
1773 },
1774 {
@@ -1788,8 +1788,8 @@
1788 "zh-chs": "MeshAgent的32位版本",
1789 "zh-cht": "MeshAgent的32位版本",
1790 "xloc": [
1791 - "default.handlebars->31->406",
1792 - "default.handlebars->31->426"
1791 + "default.handlebars->31->407",
1792 + "default.handlebars->31->427"
1793 ]
1794 },
1795 {
@@ -1831,7 +1831,7 @@
1831 "zh-chs": "4天",
1832 "zh-cht": "4天",
1833 "xloc": [
1834 - "default.handlebars->31->821"
1834 + "default.handlebars->31->823"
1835 ]
1836 },
1837 {
@@ -1851,7 +1851,7 @@
1851 "zh-chs": "4个小时",
1852 "zh-cht": "4個小時",
1853 "xloc": [
1854 - "default.handlebars->31->815"
1854 + "default.handlebars->31->817"
1855 ]
1856 },
1857 {
@@ -1934,7 +1934,7 @@
1934 "zh-chs": "45分钟",
1935 "zh-cht": "45分鐘",
1936 "xloc": [
1937 - "default.handlebars->31->812"
1937 + "default.handlebars->31->814"
1938 ]
1939 },
1940 {
@@ -1974,7 +1974,7 @@
1974 "zh-chs": "5分钟",
1975 "zh-cht": "5分鐘",
1976 "xloc": [
1977 - "default.handlebars->31->808"
1977 + "default.handlebars->31->810"
1978 ]
1979 },
1980 {
@@ -2100,7 +2100,7 @@
2100 "zh-chs": "60分钟",
2101 "zh-cht": "60分鐘",
2102 "xloc": [
2103 - "default.handlebars->31->813"
2103 + "default.handlebars->31->815"
2104 ]
2105 },
2106 {
@@ -2142,7 +2142,7 @@
2142 "zh-chs": "64位版本的macOS Mesh Agent",
2143 "zh-cht": "64位版本的macOS Mesh Agent",
2144 "xloc": [
2145 - "default.handlebars->31->420"
2145 + "default.handlebars->31->421"
2146 ]
2147 },
2148 {
@@ -2162,8 +2162,8 @@
2162 "zh-chs": "MeshAgent的64位版本",
2163 "zh-cht": "MeshAgent的64位版本",
2164 "xloc": [
2165 - "default.handlebars->31->410",
2166 - "default.handlebars->31->429"
2165 + "default.handlebars->31->411",
2166 + "default.handlebars->31->430"
2167 ]
2168 },
2169 {
@@ -2220,7 +2220,7 @@
2220 "zh-chs": "7天电源状态",
2221 "zh-cht": "7天電源狀態",
2222 "xloc": [
2223 - "default.handlebars->31->864"
2223 + "default.handlebars->31->866"
2224 ]
2225 },
2226 {
@@ -2283,9 +2283,9 @@
2283 "zh-chs": "8小時",
2284 "zh-cht": "8小時",
2285 "xloc": [
2286 - "default.handlebars->31->366",
2287 - "default.handlebars->31->380",
2288 - "default.handlebars->31->816"
2286 + "default.handlebars->31->367",
2287 + "default.handlebars->31->381",
2288 + "default.handlebars->31->818"
2289 ]
2290 },
2291 {
@@ -2356,7 +2356,7 @@
2356 "nl": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2357 "fr": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2358 "xloc": [
2359 - "default.handlebars->31->423"
2359 + "default.handlebars->31->424"
2360 ]
2361 },
2362 {
@@ -2517,8 +2517,8 @@
2517 "zh-cht": "ACM",
2518 "xloc": [
2519 "default-mobile.handlebars->11->267",
2520 - "default.handlebars->31->1520",
2521 - "default.handlebars->31->624"
2520 + "default.handlebars->31->1522",
2521 + "default.handlebars->31->626"
2522 ]
2523 },
2524 {
@@ -2572,8 +2572,8 @@
2572 "zh-chs": "AMT",
2573 "zh-cht": "AMT",
2574 "xloc": [
2575 - "default.handlebars->31->273",
2576 - "default.handlebars->31->468"
2575 + "default.handlebars->31->274",
2576 + "default.handlebars->31->469"
2577 ]
2578 },
2579 {
@@ -2688,8 +2688,8 @@
2688 "xloc": [
2689 "default-mobile.handlebars->11->409",
2690 "default-mobile.handlebars->11->411",
2691 - "default.handlebars->31->643",
2692 - "default.handlebars->31->645"
2691 + "default.handlebars->31->645",
2692 + "default.handlebars->31->647"
2693 ]
2694 },
2695 {
@@ -2710,7 +2710,7 @@
2710 "zh-cht": "拒絕存取",
2711 "xloc": [
2712 "default-mobile.handlebars->11->498",
2713 - "default.handlebars->31->1155"
2713 + "default.handlebars->31->1157"
2714 ]
2715 },
2716 {
@@ -2752,7 +2752,7 @@
2752 "zh-chs": "访问服务器档案",
2753 "zh-cht": "存取伺服器檔案",
2754 "xloc": [
2755 - "default.handlebars->31->2070"
2755 + "default.handlebars->31->2072"
2756 ]
2757 },
2758 {
@@ -2841,11 +2841,11 @@
2841 "default-mobile.handlebars->11->242",
2842 "default-mobile.handlebars->11->244",
2843 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
2844 - "default.handlebars->31->1426",
2844 "default.handlebars->31->1428",
2846 - "default.handlebars->31->2343",
2847 - "default.handlebars->31->593",
2848 - "default.handlebars->31->595"
2845 + "default.handlebars->31->1430",
2846 + "default.handlebars->31->2345",
2847 + "default.handlebars->31->595",
2848 + "default.handlebars->31->597"
2849 ]
2850 },
2851 {
@@ -2855,7 +2855,7 @@
2855 "de": "Konto Einstellungen",
2856 "xloc": [
2857 "default-mobile.handlebars->11->591",
2858 - "default.handlebars->31->2235"
2858 + "default.handlebars->31->2237"
2859 ]
2860 },
2861 {
@@ -2916,7 +2916,7 @@
2916 "zh-chs": "帐户已更改:{0}",
2917 "zh-cht": "帳戶已更改:{0}",
2918 "xloc": [
2919 - "default.handlebars->31->1812"
2919 + "default.handlebars->31->1814"
2920 ]
2921 },
2922 {
@@ -2936,7 +2936,7 @@
2936 "zh-chs": "创建帐户,电子邮件为{0}",
2937 "zh-cht": "創建帳戶,電子郵件為{0}",
2938 "xloc": [
2939 - "default.handlebars->31->1811"
2939 + "default.handlebars->31->1813"
2940 ]
2941 },
2942 {
@@ -2956,7 +2956,7 @@
2956 "zh-chs": "创建帐户,用户名是{0}",
2957 "zh-cht": "帳戶已創建,用戶名是{0}",
2958 "xloc": [
2959 - "default.handlebars->31->1810"
2959 + "default.handlebars->31->1812"
2960 ]
2961 },
2962 {
@@ -2976,8 +2976,8 @@
2976 "zh-chs": "帐户已被锁定",
2977 "zh-cht": "帳戶已被鎖定",
2978 "xloc": [
2979 - "default.handlebars->31->1907",
2980 - "default.handlebars->31->2067"
2979 + "default.handlebars->31->1909",
2980 + "default.handlebars->31->2069"
2981 ]
2982 },
2983 {
@@ -2998,7 +2998,7 @@
2998 "zh-cht": "達到帳戶限制。",
2999 "xloc": [
3000 "default-mobile.handlebars->11->603",
3001 - "default.handlebars->31->2247",
3001 + "default.handlebars->31->2249",
3002 "login-mobile.handlebars->5->6",
3003 "login.handlebars->5->6",
3004 "login2.handlebars->7->7"
@@ -3043,7 +3043,7 @@
3043 "zh-chs": "帐号登录",
3044 "zh-cht": "帳號登錄",
3045 "xloc": [
3046 - "default.handlebars->31->1747"
3046 + "default.handlebars->31->1749"
3047 ]
3048 },
3049 {
@@ -3052,7 +3052,7 @@
3052 "fr": "Connexion de {0}, {1}, {2}",
3053 "de": "Konto Login von {0}, {1}, {2}",
3054 "xloc": [
3055 - "default.handlebars->31->1853"
3055 + "default.handlebars->31->1855"
3056 ]
3057 },
3058 {
@@ -3072,7 +3072,7 @@
3072 "zh-chs": "帐户登出",
3073 "zh-cht": "帳戶登出",
3074 "xloc": [
3075 - "default.handlebars->31->1748"
3075 + "default.handlebars->31->1750"
3076 ]
3077 },
3078 {
@@ -3114,7 +3114,7 @@
3114 "zh-chs": "帐户密码已更改:{0}",
3115 "zh-cht": "帳戶密碼已更改:{0}",
3116 "xloc": [
3117 - "default.handlebars->31->1820"
3117 + "default.handlebars->31->1822"
3118 ]
3119 },
3120 {
@@ -3134,7 +3134,7 @@
3134 "zh-chs": "帐户已删除",
3135 "zh-cht": "帳戶已刪除",
3136 "xloc": [
3137 - "default.handlebars->31->1809"
3137 + "default.handlebars->31->1811"
3138 ]
3139 },
3140 {
@@ -3175,7 +3175,7 @@
3175 "zh-cht": "指令",
3176 "xloc": [
3177 "default-mobile.handlebars->11->504",
3178 - "default.handlebars->31->1161",
3178 + "default.handlebars->31->1163",
3179 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3180 ]
3181 },
@@ -3196,8 +3196,8 @@
3196 "zh-chs": "动作档案",
3197 "zh-cht": "動作檔案",
3198 "xloc": [
3199 - "default.handlebars->31->910",
3200 - "default.handlebars->31->912"
3199 + "default.handlebars->31->912",
3200 + "default.handlebars->31->914"
3201 ]
3202 },
3203 {
@@ -3220,7 +3220,7 @@
3220 "default-mobile.handlebars->11->290",
3221 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3222 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3223 - "default.handlebars->31->686",
3223 + "default.handlebars->31->688",
3224 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3225 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3226 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3243,7 +3243,7 @@
3243 "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔&reg;AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
3244 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾&reg;AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
3245 "xloc": [
3246 - "default.handlebars->31->336"
3246 + "default.handlebars->31->337"
3247 ]
3248 },
3249 {
@@ -3303,7 +3303,7 @@
3303 "zh-chs": "如果ACM失败,则激活到CCM",
3304 "zh-cht": "如果ACM失敗,則激活到CCM",
3305 "xloc": [
3306 - "default.handlebars->31->1541"
3306 + "default.handlebars->31->1543"
3307 ]
3308 },
3309 {
@@ -3326,9 +3326,9 @@
3326 "default-mobile.handlebars->11->262",
3327 "default-mobile.handlebars->11->264",
3328 "default-mobile.handlebars->11->460",
3329 - "default.handlebars->31->1116",
3330 - "default.handlebars->31->617",
3331 - "default.handlebars->31->619"
3329 + "default.handlebars->31->1118",
3330 + "default.handlebars->31->619",
3331 + "default.handlebars->31->621"
3332 ]
3333 },
3334 {
@@ -3368,7 +3368,7 @@
3368 "zh-chs": "主动设备共享",
3369 "zh-cht": "主動設備共享",
3370 "xloc": [
3371 - "default.handlebars->31->742"
3371 + "default.handlebars->31->744"
3372 ]
3373 },
3374 {
@@ -3395,7 +3395,7 @@
3395 "de": "hinzufügen",
3396 "xloc": [
3397 "default-mobile.handlebars->11->364",
3398 - "default.handlebars->31->974"
3398 + "default.handlebars->31->976"
3399 ]
3400 },
3401 {
@@ -3415,8 +3415,8 @@
3415 "zh-chs": "添加代理",
3416 "zh-cht": "新增代理",
3417 "xloc": [
3418 - "default.handlebars->31->1516",
3419 - "default.handlebars->31->319"
3418 + "default.handlebars->31->1518",
3419 + "default.handlebars->31->320"
3420 ]
3421 },
3422 {
@@ -3453,8 +3453,8 @@
3453 "zh-chs": "添加设备",
3454 "zh-cht": "新增裝置",
3455 "xloc": [
3456 - "default.handlebars->31->2044",
3457 - "default.handlebars->31->2174"
3456 + "default.handlebars->31->2046",
3457 + "default.handlebars->31->2176"
3458 ]
3459 },
3460 {
@@ -3474,7 +3474,7 @@
3474 "zh-chs": "添加设备日志",
3475 "zh-cht": "新增裝置日誌",
3476 "xloc": [
3477 - "default.handlebars->31->793"
3477 + "default.handlebars->31->795"
3478 ]
3479 },
3480 {
@@ -3494,10 +3494,10 @@
3494 "zh-chs": "添加设备组",
3495 "zh-cht": "新增裝置群",
3496 "xloc": [
3497 - "default.handlebars->31->1616",
3498 - "default.handlebars->31->2038",
3499 - "default.handlebars->31->2162",
3500 - "default.handlebars->31->253"
3497 + "default.handlebars->31->1618",
3498 + "default.handlebars->31->2040",
3499 + "default.handlebars->31->2164",
3500 + "default.handlebars->31->254"
3501 ]
3502 },
3503 {
@@ -3517,7 +3517,7 @@
3517 "zh-chs": "添加设备组权限",
3518 "zh-cht": "新增裝置群權限",
3519 "xloc": [
3520 - "default.handlebars->31->1613"
3520 + "default.handlebars->31->1615"
3521 ]
3522 },
3523 {
@@ -3537,8 +3537,8 @@
3537 "zh-chs": "添加设备权限",
3538 "zh-cht": "新增裝置權限",
3539 "xloc": [
3540 - "default.handlebars->31->1618",
3541 - "default.handlebars->31->1620"
3540 + "default.handlebars->31->1620",
3541 + "default.handlebars->31->1622"
3542 ]
3543 },
3544 {
@@ -3575,7 +3575,7 @@
3575 "zh-chs": "添加英特尔&reg;AMT设备",
3576 "zh-cht": "新增Intel&reg; AMT裝置",
3577 "xloc": [
3578 - "default.handlebars->31->332"
3578 + "default.handlebars->31->333"
3579 ]
3580 },
3581 {
@@ -3615,7 +3615,7 @@
3615 "zh-chs": "添加本地",
3616 "zh-cht": "新增本地",
3617 "xloc": [
3618 - "default.handlebars->31->313"
3618 + "default.handlebars->31->314"
3619 ]
3620 },
3621 {
@@ -3635,7 +3635,7 @@
3635 "zh-chs": "添加成员身份",
3636 "zh-cht": "新增成員身份",
3637 "xloc": [
3638 - "default.handlebars->31->2194"
3638 + "default.handlebars->31->2196"
3639 ]
3640 },
3641 {
@@ -3655,7 +3655,7 @@
3655 "zh-chs": "添加 Mesh Agent",
3656 "zh-cht": "新增 Mesh Agent",
3657 "xloc": [
3658 - "default.handlebars->31->439"
3658 + "default.handlebars->31->440"
3659 ]
3660 },
3661 {
@@ -3675,8 +3675,8 @@
3675 "zh-chs": "添加安全密钥",
3676 "zh-cht": "新增安全密鑰",
3677 "xloc": [
3678 - "default.handlebars->31->1193",
3679 - "default.handlebars->31->1194",
3678 + "default.handlebars->31->1195",
3679 + "default.handlebars->31->1196",
3680 "default.handlebars->31->164",
3681 "default.handlebars->31->166",
3682 "default.handlebars->31->169",
@@ -3701,7 +3701,7 @@
3701 "zh-cht": "新增用戶",
3702 "xloc": [
3703 "default-mobile.handlebars->11->520",
3704 - "default.handlebars->31->734"
3704 + "default.handlebars->31->736"
3705 ]
3706 },
3707 {
@@ -3721,7 +3721,7 @@
3721 "zh-chs": "添加用户设备权限",
3722 "zh-cht": "新增用戶裝置權限",
3723 "xloc": [
3724 - "default.handlebars->31->1623"
3724 + "default.handlebars->31->1625"
3725 ]
3726 },
3727 {
@@ -3741,10 +3741,10 @@
3741 "zh-chs": "添加用户组",
3742 "zh-cht": "新增用戶群",
3743 "xloc": [
3744 - "default.handlebars->31->1512",
3745 - "default.handlebars->31->1615",
3746 - "default.handlebars->31->2168",
3747 - "default.handlebars->31->735"
3744 + "default.handlebars->31->1514",
3745 + "default.handlebars->31->1617",
3746 + "default.handlebars->31->2170",
3747 + "default.handlebars->31->737"
3748 ]
3749 },
3750 {
@@ -3764,7 +3764,7 @@
3764 "zh-chs": "添加用户组设备权限",
3765 "zh-cht": "新增用戶群裝置權限",
3766 "xloc": [
3767 - "default.handlebars->31->1625"
3767 + "default.handlebars->31->1627"
3768 ]
3769 },
3770 {
@@ -3821,8 +3821,8 @@
3821 "zh-chs": "添加用户",
3822 "zh-cht": "新增用戶",
3823 "xloc": [
3824 - "default.handlebars->31->1511",
3825 - "default.handlebars->31->2033"
3824 + "default.handlebars->31->1513",
3825 + "default.handlebars->31->2035"
3826 ]
3827 },
3828 {
@@ -3842,7 +3842,7 @@
3842 "zh-chs": "将用户添加到设备组",
3843 "zh-cht": "將用戶新增到裝置群",
3844 "xloc": [
3845 - "default.handlebars->31->1612"
3845 + "default.handlebars->31->1614"
3846 ]
3847 },
3848 {
@@ -3862,7 +3862,7 @@
3862 "zh-chs": "将用户添加到用户组",
3863 "zh-cht": "將用戶新增到用戶群",
3864 "xloc": [
3865 - "default.handlebars->31->2066"
3865 + "default.handlebars->31->2068"
3866 ]
3867 },
3868 {
@@ -3902,7 +3902,7 @@
3902 "zh-chs": "通过扫描本地网络添加新的英特尔&reg;AMT计算机。",
3903 "zh-cht": "通過掃描本地網絡新增新的Intel&reg; AMT電腦。",
3904 "xloc": [
3905 - "default.handlebars->31->314"
3905 + "default.handlebars->31->315"
3906 ]
3907 },
3908 {
@@ -3939,7 +3939,7 @@
3939 "zh-chs": "添加位于本地网络上的新英特尔&reg;AMT计算机。",
3940 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
3941 "xloc": [
3942 - "default.handlebars->31->312"
3942 + "default.handlebars->31->313"
3943 ]
3944 },
3945 {
@@ -3959,7 +3959,7 @@
3959 "zh-chs": "将新的英特尔&reg;AMT设备添加到设备组“{0}”。",
3960 "zh-cht": "將新的Intel&reg; AMT裝置新增到裝置群“{0}”。",
3961 "xloc": [
3962 - "default.handlebars->31->322"
3962 + "default.handlebars->31->323"
3963 ]
3964 },
3965 {
@@ -3979,8 +3979,8 @@
3979 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3980 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3981 "xloc": [
3982 - "default.handlebars->31->1515",
3983 - "default.handlebars->31->318"
3982 + "default.handlebars->31->1517",
3983 + "default.handlebars->31->319"
3984 ]
3985 },
3986 {
@@ -4000,7 +4000,7 @@
4000 "zh-chs": "添加标签",
4001 "zh-cht": "新增標籤",
4002 "xloc": [
4003 - "default.handlebars->31->508"
4003 + "default.handlebars->31->509"
4004 ]
4005 },
4006 {
@@ -4020,7 +4020,7 @@
4020 "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel&reg;AMT以将“{0}”分组。",
4021 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel&reg;AMT以將“{0}”分組。",
4022 "xloc": [
4023 - "default.handlebars->31->333"
4023 + "default.handlebars->31->334"
4024 ]
4025 },
4026 {
@@ -4040,7 +4040,7 @@
4040 "zh-chs": "添加了身份验证应用程序",
4041 "zh-cht": "添加了身份驗證應用程序",
4042 "xloc": [
4043 - "default.handlebars->31->1836"
4043 + "default.handlebars->31->1838"
4044 ]
4045 },
4046 {
@@ -4060,7 +4060,7 @@
4060 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
4061 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
4062 "xloc": [
4063 - "default.handlebars->31->1847"
4063 + "default.handlebars->31->1849"
4064 ]
4065 },
4066 {
@@ -4080,8 +4080,8 @@
4080 "zh-chs": "已将设备{0}添加到设备组{1}",
4081 "zh-cht": "已將設備{0}添加到設備組{1}",
4082 "xloc": [
4083 - "default.handlebars->31->1803",
4084 - "default.handlebars->31->1830"
4083 + "default.handlebars->31->1805",
4084 + "default.handlebars->31->1832"
4085 ]
4086 },
4087 {
@@ -4101,7 +4101,7 @@
4101 "zh-chs": "添加了安全密钥",
4102 "zh-cht": "添加了安全密鑰",
4103 "xloc": [
4104 - "default.handlebars->31->1841"
4104 + "default.handlebars->31->1843"
4105 ]
4106 },
4107 {
@@ -4121,7 +4121,7 @@
4121 "zh-chs": "已将用户组{0}添加到设备组{1}",
4122 "zh-cht": "已將用戶組{0}添加到設備組{1}",
4123 "xloc": [
4124 - "default.handlebars->31->1814"
4124 + "default.handlebars->31->1816"
4125 ]
4126 },
4127 {
@@ -4141,8 +4141,8 @@
4141 "zh-chs": "已将用户{0}添加到用户组{1}",
4142 "zh-cht": "已將用戶{0}添加到用戶組{1}",
4143 "xloc": [
4144 - "default.handlebars->31->1817",
4145 - "default.handlebars->31->1826"
4144 + "default.handlebars->31->1819",
4145 + "default.handlebars->31->1828"
4146 ]
4147 },
4148 {
@@ -4162,7 +4162,7 @@
4162 "zh-chs": "地址",
4163 "zh-cht": "地址",
4164 "xloc": [
4165 - "default.handlebars->31->249"
4165 + "default.handlebars->31->250"
4166 ]
4167 },
4168 {
@@ -4203,7 +4203,7 @@
4203 "zh-cht": "管理員控制模式(ACM)",
4204 "xloc": [
4205 "default-mobile.handlebars->11->462",
4206 - "default.handlebars->31->1118"
4206 + "default.handlebars->31->1120"
4207 ]
4208 },
4209 {
@@ -4224,7 +4224,7 @@
4224 "zh-cht": "管理員憑證",
4225 "xloc": [
4226 "default-mobile.handlebars->11->468",
4227 - "default.handlebars->31->1124"
4227 + "default.handlebars->31->1126"
4228 ]
4229 },
4230 {
@@ -4265,7 +4265,7 @@
4265 "zh-chs": "管理领域",
4266 "zh-cht": "管理領域",
4267 "xloc": [
4268 - "default.handlebars->31->2102"
4268 + "default.handlebars->31->2104"
4269 ]
4270 },
4271 {
@@ -4306,7 +4306,7 @@
4306 "zh-chs": "管理领域",
4307 "zh-cht": "管理領域",
4308 "xloc": [
4309 - "default.handlebars->31->1970"
4309 + "default.handlebars->31->1972"
4310 ]
4311 },
4312 {
@@ -4326,7 +4326,7 @@
4326 "zh-chs": "管理员",
4327 "zh-cht": "管理員",
4328 "xloc": [
4329 - "default.handlebars->31->1899"
4329 + "default.handlebars->31->1901"
4330 ]
4331 },
4332 {
@@ -4346,7 +4346,7 @@
4346 "zh-chs": "南非文",
4347 "zh-cht": "南非文",
4348 "xloc": [
4349 - "default.handlebars->31->1196"
4349 + "default.handlebars->31->1198"
4350 ]
4351 },
4352 {
@@ -4371,10 +4371,10 @@
4371 "default-mobile.handlebars->11->259",
4372 "default-mobile.handlebars->11->281",
4373 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4374 - "default.handlebars->31->1679",
4375 - "default.handlebars->31->1692",
4376 - "default.handlebars->31->269",
4377 - "default.handlebars->31->464",
4374 + "default.handlebars->31->1681",
4375 + "default.handlebars->31->1694",
4376 + "default.handlebars->31->270",
4377 + "default.handlebars->31->465",
4378 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
4379 ]
4380 },
@@ -4395,8 +4395,8 @@
4395 "zh-chs": "代理+英特尔AMT",
4396 "zh-cht": "代理+Intel&reg; AMT",
4397 "xloc": [
4398 - "default.handlebars->31->1681",
4399 - "default.handlebars->31->1694"
4398 + "default.handlebars->31->1683",
4399 + "default.handlebars->31->1696"
4400 ]
4401 },
4402 {
@@ -4438,7 +4438,7 @@
4438 "zh-cht": "代理控制台",
4439 "xloc": [
4440 "default-mobile.handlebars->11->562",
4441 - "default.handlebars->31->1633"
4441 + "default.handlebars->31->1635"
4442 ]
4443 },
4444 {
@@ -4458,7 +4458,7 @@
4458 "zh-chs": "代理错误计数器",
4459 "zh-cht": "代理錯誤計數器",
4460 "xloc": [
4461 - "default.handlebars->31->2272"
4461 + "default.handlebars->31->2274"
4462 ]
4463 },
4464 {
@@ -4466,7 +4466,7 @@
4466 "nl": "IP-adres agent",
4467 "de": "Agent IP Adresse",
4468 "xloc": [
4469 - "default.handlebars->31->233"
4469 + "default.handlebars->31->234"
4470 ]
4471 },
4472 {
@@ -4507,7 +4507,7 @@
4507 "zh-cht": "代理訊息",
4508 "xloc": [
4509 "default-mobile.handlebars->11->212",
4510 - "default.handlebars->31->304"
4510 + "default.handlebars->31->305"
4511 ]
4512 },
4513 {
@@ -4569,7 +4569,7 @@
4569 "zh-chs": "代理时段",
4570 "zh-cht": "代理時段",
4571 "xloc": [
4572 - "default.handlebars->31->2288"
4572 + "default.handlebars->31->2290"
4573 ]
4574 },
4575 {
@@ -4590,7 +4590,7 @@
4590 "zh-cht": "代理標籤",
4591 "xloc": [
4592 "default-mobile.handlebars->11->280",
4593 - "default.handlebars->31->640"
4593 + "default.handlebars->31->642"
4594 ]
4595 },
4596 {
@@ -4610,7 +4610,7 @@
4610 "zh-chs": "代理类型",
4611 "zh-cht": "代理類型",
4612 "xloc": [
4613 - "default.handlebars->31->1690",
4613 + "default.handlebars->31->1692",
4614 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4615 ]
4616 },
@@ -4631,7 +4631,7 @@
4631 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4632 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4633 "xloc": [
4634 - "default.handlebars->31->1800"
4634 + "default.handlebars->31->1802"
4635 ]
4636 },
4637 {
@@ -4652,8 +4652,8 @@
4652 "zh-cht": "代理已連接",
4653 "xloc": [
4654 "default.handlebars->31->178",
4655 - "default.handlebars->31->725",
4656 - "default.handlebars->31->726"
4655 + "default.handlebars->31->727",
4656 + "default.handlebars->31->728"
4657 ]
4658 },
4659 {
@@ -4694,7 +4694,7 @@
4694 "zh-cht": "代理離線",
4695 "xloc": [
4696 "default-mobile.handlebars->11->496",
4697 - "default.handlebars->31->1153"
4697 + "default.handlebars->31->1155"
4698 ]
4699 },
4700 {
@@ -4715,7 +4715,7 @@
4715 "zh-cht": "代理在線",
4716 "xloc": [
4717 "default-mobile.handlebars->11->495",
4718 - "default.handlebars->31->1152"
4718 + "default.handlebars->31->1154"
4719 ]
4720 },
4721 {
@@ -4736,7 +4736,7 @@
4736 "zh-cht": "代理在特權降低的遠程設備上運行。",
4737 "xloc": [
4738 "default.handlebars->31->176",
4739 - "default.handlebars->31->723"
4739 + "default.handlebars->31->725"
4740 ]
4741 },
4742 {
@@ -4756,7 +4756,7 @@
4756 "zh-chs": "代理",
4757 "zh-cht": "代理",
4758 "xloc": [
4759 - "default.handlebars->31->2304"
4759 + "default.handlebars->31->2306"
4760 ]
4761 },
4762 {
@@ -4776,7 +4776,7 @@
4776 "zh-chs": "阿尔巴尼亚文",
4777 "zh-cht": "阿爾巴尼亞文",
4778 "xloc": [
4779 - "default.handlebars->31->1197"
4779 + "default.handlebars->31->1199"
4780 ]
4781 },
4782 {
@@ -4819,7 +4819,7 @@
4819 "zh-chs": "全部可用",
4820 "zh-cht": "全部可用",
4821 "xloc": [
4822 - "default.handlebars->31->1862"
4822 + "default.handlebars->31->1864"
4823 ]
4824 },
4825 {
@@ -4839,7 +4839,7 @@
4839 "zh-chs": "所有显示",
4840 "zh-cht": "所有顯示",
4841 "xloc": [
4842 - "default.handlebars->31->999"
4842 + "default.handlebars->31->1001"
4843 ]
4844 },
4845 {
@@ -4859,7 +4859,7 @@
4859 "zh-chs": "所有事件",
4860 "zh-cht": "所有事件",
4861 "xloc": [
4862 - "default.handlebars->31->1860"
4862 + "default.handlebars->31->1862"
4863 ]
4864 },
4865 {
@@ -4879,9 +4879,9 @@
4879 "zh-chs": "全部聚焦",
4880 "zh-cht": "全部聚焦",
4881 "xloc": [
4882 - "default.handlebars->31->944",
4882 "default.handlebars->31->946",
4884 - "default.handlebars->31->947"
4883 + "default.handlebars->31->948",
4884 + "default.handlebars->31->949"
4885 ]
4886 },
4887 {
@@ -4901,8 +4901,8 @@
4901 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4902 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4903 "xloc": [
4904 - "default.handlebars->31->1579",
4905 - "default.handlebars->31->2063"
4904 + "default.handlebars->31->1581",
4905 + "default.handlebars->31->2065"
4906 ]
4907 },
4908 {
@@ -4922,7 +4922,7 @@
4922 "zh-chs": "允许用户管理此设备。",
4923 "zh-cht": "允許用戶管理此裝置。",
4924 "xloc": [
4925 - "default.handlebars->31->1580"
4925 + "default.handlebars->31->1582"
4926 ]
4927 },
4928 {
@@ -4962,8 +4962,8 @@
4962 "xloc": [
4963 "default-mobile.handlebars->11->357",
4964 "default-mobile.handlebars->11->361",
4965 - "default.handlebars->31->967",
4966 - "default.handlebars->31->971"
4965 + "default.handlebars->31->969",
4966 + "default.handlebars->31->973"
4967 ]
4968 },
4969 {
@@ -5025,7 +5025,7 @@
5025 "zh-chs": "备用(F10 = ESC + 0)",
5026 "zh-cht": "備用(F10 = ESC + 0)",
5027 "xloc": [
5028 - "default.handlebars->31->1010",
5028 + "default.handlebars->31->1012",
5029 "terminal.handlebars->3->19"
5030 ]
5031 },
@@ -5067,10 +5067,10 @@
5067 "zh-chs": "一直通知",
5068 "zh-cht": "一直通知",
5069 "xloc": [
5070 - "default.handlebars->31->1491",
5071 - "default.handlebars->31->2024",
5072 - "default.handlebars->31->2111",
5073 - "default.handlebars->31->668"
5070 + "default.handlebars->31->1493",
5071 + "default.handlebars->31->2026",
5072 + "default.handlebars->31->2113",
5073 + "default.handlebars->31->670"
5074 ]
5075 },
5076 {
@@ -5090,10 +5090,10 @@
5090 "zh-chs": "一直提示",
5091 "zh-cht": "一直提示",
5092 "xloc": [
5093 - "default.handlebars->31->1492",
5094 - "default.handlebars->31->2025",
5095 - "default.handlebars->31->2112",
5096 - "default.handlebars->31->669"
5093 + "default.handlebars->31->1494",
5094 + "default.handlebars->31->2027",
5095 + "default.handlebars->31->2114",
5096 + "default.handlebars->31->671"
5097 ]
5098 },
5099 {
@@ -5240,8 +5240,8 @@
5240 "fr": "Antivirus désactivé",
5241 "de": "Anti-virus ist nicht aktiv",
5242 "xloc": [
5243 - "default.handlebars->31->1683",
5244 - "default.handlebars->31->1697"
5243 + "default.handlebars->31->1685",
5244 + "default.handlebars->31->1699"
5245 ]
5246 },
5247 {
@@ -5262,7 +5262,7 @@
5262 "zh-cht": "防毒軟體",
5263 "xloc": [
5264 "default-mobile.handlebars->11->425",
5265 - "default.handlebars->31->659"
5265 + "default.handlebars->31->661"
5266 ]
5267 },
5268 {
@@ -5282,7 +5282,7 @@
5282 "zh-chs": "任何可支持的",
5283 "zh-cht": "任何可支持的",
5284 "xloc": [
5285 - "default.handlebars->31->360"
5285 + "default.handlebars->31->361"
5286 ]
5287 },
5288 {
@@ -5323,7 +5323,7 @@
5323 "zh-chs": "苹果macOS",
5324 "zh-cht": "蘋果macOS",
5325 "xloc": [
5326 - "default.handlebars->31->394"
5326 + "default.handlebars->31->395"
5327 ]
5328 },
5329 {
@@ -5343,7 +5343,7 @@
5343 "zh-chs": "仅限Apple macOS",
5344 "zh-cht": "僅限Apple macOS",
5345 "xloc": [
5346 - "default.handlebars->31->362"
5346 + "default.handlebars->31->363"
5347 ]
5348 },
5349 {
@@ -5383,7 +5383,7 @@
5383 "zh-chs": "阿拉伯文(阿尔及利亚)",
5384 "zh-cht": "阿拉伯文(阿爾及利亞)",
5385 "xloc": [
5386 - "default.handlebars->31->1199"
5386 + "default.handlebars->31->1201"
5387 ]
5388 },
5389 {
@@ -5403,7 +5403,7 @@
5403 "zh-chs": "阿拉伯文(巴林)",
5404 "zh-cht": "阿拉伯文(巴林)",
5405 "xloc": [
5406 - "default.handlebars->31->1200"
5406 + "default.handlebars->31->1202"
5407 ]
5408 },
5409 {
@@ -5423,7 +5423,7 @@
5423 "zh-chs": "阿拉伯文(埃及)",
5424 "zh-cht": "阿拉伯文(埃及)",
5425 "xloc": [
5426 - "default.handlebars->31->1201"
5426 + "default.handlebars->31->1203"
5427 ]
5428 },
5429 {
@@ -5443,7 +5443,7 @@
5443 "zh-chs": "阿拉伯文(伊拉克)",
5444 "zh-cht": "阿拉伯文(伊拉克)",
5445 "xloc": [
5446 - "default.handlebars->31->1202"
5446 + "default.handlebars->31->1204"
5447 ]
5448 },
5449 {
@@ -5463,7 +5463,7 @@
5463 "zh-chs": "阿拉伯文(约旦)",
5464 "zh-cht": "阿拉伯文(約旦)",
5465 "xloc": [
5466 - "default.handlebars->31->1203"
5466 + "default.handlebars->31->1205"
5467 ]
5468 },
5469 {
@@ -5483,7 +5483,7 @@
5483 "zh-chs": "阿拉伯文(科威特)",
5484 "zh-cht": "阿拉伯文(科威特)",
5485 "xloc": [
5486 - "default.handlebars->31->1204"
5486 + "default.handlebars->31->1206"
5487 ]
5488 },
5489 {
@@ -5503,7 +5503,7 @@
5503 "zh-chs": "阿拉伯文(黎巴嫩)",
5504 "zh-cht": "阿拉伯文(黎巴嫩)",
5505 "xloc": [
5506 - "default.handlebars->31->1205"
5506 + "default.handlebars->31->1207"
5507 ]
5508 },
5509 {
@@ -5523,7 +5523,7 @@
5523 "zh-chs": "阿拉伯文(利比亚)",
5524 "zh-cht": "阿拉伯文(利比亞)",
5525 "xloc": [
5526 - "default.handlebars->31->1206"
5526 + "default.handlebars->31->1208"
5527 ]
5528 },
5529 {
@@ -5543,7 +5543,7 @@
5543 "zh-chs": "阿拉伯文(摩洛哥)",
5544 "zh-cht": "阿拉伯文(摩洛哥)",
5545 "xloc": [
5546 - "default.handlebars->31->1207"
5546 + "default.handlebars->31->1209"
5547 ]
5548 },
5549 {
@@ -5563,7 +5563,7 @@
5563 "zh-chs": "阿拉伯文(阿曼)",
5564 "zh-cht": "阿拉伯文(阿曼)",
5565 "xloc": [
5566 - "default.handlebars->31->1208"
5566 + "default.handlebars->31->1210"
5567 ]
5568 },
5569 {
@@ -5583,7 +5583,7 @@
5583 "zh-chs": "阿拉伯文(卡塔尔)",
5584 "zh-cht": "阿拉伯文(卡塔爾)",
5585 "xloc": [
5586 - "default.handlebars->31->1209"
5586 + "default.handlebars->31->1211"
5587 ]
5588 },
5589 {
@@ -5603,7 +5603,7 @@
5603 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5604 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5605 "xloc": [
5606 - "default.handlebars->31->1210"
5606 + "default.handlebars->31->1212"
5607 ]
5608 },
5609 {
@@ -5623,7 +5623,7 @@
5623 "zh-chs": "阿拉伯文(标准)",
5624 "zh-cht": "阿拉伯文(標準)",
5625 "xloc": [
5626 - "default.handlebars->31->1198"
5626 + "default.handlebars->31->1200"
5627 ]
5628 },
5629 {
@@ -5643,7 +5643,7 @@
5643 "zh-chs": "阿拉伯文(叙利亚)",
5644 "zh-cht": "阿拉伯文(敘利亞)",
5645 "xloc": [
5646 - "default.handlebars->31->1211"
5646 + "default.handlebars->31->1213"
5647 ]
5648 },
5649 {
@@ -5663,7 +5663,7 @@
5663 "zh-chs": "阿拉伯文(突尼斯)",
5664 "zh-cht": "阿拉伯文(突尼斯)",
5665 "xloc": [
5666 - "default.handlebars->31->1212"
5666 + "default.handlebars->31->1214"
5667 ]
5668 },
5669 {
@@ -5683,7 +5683,7 @@
5683 "zh-chs": "阿拉伯文(阿联酋)",
5684 "zh-cht": "阿拉伯文(阿聯酋)",
5685 "xloc": [
5686 - "default.handlebars->31->1213"
5686 + "default.handlebars->31->1215"
5687 ]
5688 },
5689 {
@@ -5703,7 +5703,7 @@
5703 "zh-chs": "阿拉伯文(也门)",
5704 "zh-cht": "阿拉伯文(也門)",
5705 "xloc": [
5706 - "default.handlebars->31->1214"
5706 + "default.handlebars->31->1216"
5707 ]
5708 },
5709 {
@@ -5723,7 +5723,7 @@
5723 "zh-chs": "阿拉贡文",
5724 "zh-cht": "阿拉貢文",
5725 "xloc": [
5726 - "default.handlebars->31->1215"
5726 + "default.handlebars->31->1217"
5727 ]
5728 },
5729 {
@@ -5744,7 +5744,7 @@
5744 "zh-cht": "結構",
5745 "xloc": [
5746 "default-mobile.handlebars->11->408",
5747 - "default.handlebars->31->1071"
5747 + "default.handlebars->31->1073"
5748 ]
5749 },
5750 {
@@ -5764,7 +5764,7 @@
5764 "zh-chs": "您确定要连接到{0}设备吗?",
5765 "zh-cht": "你確定要連接到{0}裝置嗎?",
5766 "xloc": [
5767 - "default.handlebars->31->307"
5767 + "default.handlebars->31->308"
5768 ]
5769 },
5770 {
@@ -5785,7 +5785,7 @@
5785 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5786 "xloc": [
5787 "default-mobile.handlebars->11->527",
5788 - "default.handlebars->31->1555"
5788 + "default.handlebars->31->1557"
5789 ]
5790 },
5791 {
@@ -5805,7 +5805,7 @@
5805 "zh-chs": "您确定要删除节点{0}吗?",
5806 "zh-cht": "你確定要刪除節點{0}嗎?",
5807 "xloc": [
5808 - "default.handlebars->31->886"
5808 + "default.handlebars->31->888"
5809 ]
5810 },
5811 {
@@ -5825,7 +5825,7 @@
5825 "zh-chs": "您确定要卸载所选代理吗?",
5826 "zh-cht": "你確定要卸載所選代理嗎?",
5827 "xloc": [
5828 - "default.handlebars->31->875"
5828 + "default.handlebars->31->877"
5829 ]
5830 },
5831 {
@@ -5845,7 +5845,7 @@
5845 "zh-chs": "您确定要卸载所选的{0}代理吗?",
5846 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
5847 "xloc": [
5848 - "default.handlebars->31->874"
5848 + "default.handlebars->31->876"
5849 ]
5850 },
5851 {
@@ -5865,7 +5865,7 @@
5865 "zh-chs": "您确定要{0}插件吗:{1}",
5866 "zh-cht": "你確定要{0}外掛嗎:{1}",
5867 "xloc": [
5868 - "default.handlebars->31->2352"
5868 + "default.handlebars->31->2354"
5869 ]
5870 },
5871 {
@@ -5885,7 +5885,7 @@
5885 "zh-chs": "亚美尼亚文",
5886 "zh-cht": "亞美尼亞文",
5887 "xloc": [
5888 - "default.handlebars->31->1216"
5888 + "default.handlebars->31->1218"
5889 ]
5890 },
5891 {
@@ -5945,7 +5945,7 @@
5945 "zh-chs": "阿萨姆文",
5946 "zh-cht": "阿薩姆文",
5947 "xloc": [
5948 - "default.handlebars->31->1217"
5948 + "default.handlebars->31->1219"
5949 ]
5950 },
5951 {
@@ -5965,7 +5965,7 @@
5965 "zh-chs": "阿斯图里亚斯文",
5966 "zh-cht": "阿斯圖里亞斯文",
5967 "xloc": [
5968 - "default.handlebars->31->1218"
5968 + "default.handlebars->31->1220"
5969 ]
5970 },
5971 {
@@ -5985,7 +5985,7 @@
5985 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5986 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5987 "xloc": [
5988 - "default.handlebars->31->1769"
5988 + "default.handlebars->31->1771"
5989 ]
5990 },
5991 {
@@ -6005,7 +6005,7 @@
6005 "zh-chs": "认证软件",
6006 "zh-cht": "認證軟體",
6007 "xloc": [
6008 - "default.handlebars->31->2115"
6008 + "default.handlebars->31->2117"
6009 ]
6010 },
6011 {
@@ -6029,8 +6029,8 @@
6029 "default-mobile.handlebars->11->63",
6030 "default-mobile.handlebars->11->94",
6031 "default-mobile.handlebars->11->96",
6032 - "default.handlebars->31->1182",
6032 "default.handlebars->31->1184",
6033 + "default.handlebars->31->1186",
6034 "default.handlebars->31->140",
6035 "default.handlebars->31->145"
6036 ]
@@ -6112,7 +6112,7 @@
6112 "zh-chs": "自动删除",
6113 "zh-cht": "自動刪除",
6114 "xloc": [
6115 - "default.handlebars->31->1478"
6115 + "default.handlebars->31->1480"
6116 ]
6117 },
6118 {
@@ -6156,7 +6156,7 @@
6156 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6157 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6158 "xloc": [
6159 - "default.handlebars->31->1850"
6159 + "default.handlebars->31->1852"
6160 ]
6161 },
6162 {
@@ -6196,7 +6196,7 @@
6196 "zh-chs": "可用內存",
6197 "zh-cht": "可用內存",
6198 "xloc": [
6199 - "default.handlebars->31->2297"
6199 + "default.handlebars->31->2299"
6200 ]
6201 },
6202 {
@@ -6216,7 +6216,7 @@
6216 "zh-chs": "阿塞拜疆文",
6217 "zh-cht": "阿塞拜疆文",
6218 "xloc": [
6219 - "default.handlebars->31->1219"
6219 + "default.handlebars->31->1221"
6220 ]
6221 },
6222 {
@@ -6228,9 +6228,9 @@
6228 "default-mobile.handlebars->11->412",
6229 "default-mobile.handlebars->11->416",
6230 "default-mobile.handlebars->11->420",
6231 - "default.handlebars->31->646",
6232 - "default.handlebars->31->650",
6233 - "default.handlebars->31->654"
6231 + "default.handlebars->31->648",
6232 + "default.handlebars->31->652",
6233 + "default.handlebars->31->656"
6234 ]
6235 },
6236 {
@@ -6251,7 +6251,7 @@
6251 "zh-cht": "的BIOS",
6252 "xloc": [
6253 "default-mobile.handlebars->11->474",
6254 - "default.handlebars->31->1130"
6254 + "default.handlebars->31->1132"
6255 ]
6256 },
6257 {
@@ -6336,7 +6336,7 @@
6336 "de": "Rücktaste",
6337 "xloc": [
6338 "default-mobile.handlebars->11->340",
6339 - "default.handlebars->31->950"
6339 + "default.handlebars->31->952"
6340 ]
6341 },
6342 {
@@ -6356,7 +6356,7 @@
6356 "zh-chs": "背景与互动",
6357 "zh-cht": "背景與互動",
6358 "xloc": [
6359 - "default.handlebars->31->401"
6359 + "default.handlebars->31->402"
6360 ]
6361 },
6362 {
@@ -6376,10 +6376,10 @@
6376 "zh-chs": "背景与互动",
6377 "zh-cht": "背景與互動",
6378 "xloc": [
6379 - "default.handlebars->31->1662",
6380 - "default.handlebars->31->1669",
6381 - "default.handlebars->31->372",
6382 - "default.handlebars->31->386"
6379 + "default.handlebars->31->1664",
6380 + "default.handlebars->31->1671",
6381 + "default.handlebars->31->373",
6382 + "default.handlebars->31->387"
6383 ]
6384 },
6385 {
@@ -6399,11 +6399,11 @@
6399 "zh-chs": "仅背景",
6400 "zh-cht": "僅背景",
6401 "xloc": [
6402 - "default.handlebars->31->1663",
6403 - "default.handlebars->31->1670",
6404 - "default.handlebars->31->373",
6405 - "default.handlebars->31->387",
6406 - "default.handlebars->31->402"
6402 + "default.handlebars->31->1665",
6403 + "default.handlebars->31->1672",
6404 + "default.handlebars->31->374",
6405 + "default.handlebars->31->388",
6406 + "default.handlebars->31->403"
6407 ]
6408 },
6409 {
@@ -6444,7 +6444,7 @@
6444 "zh-chs": "备用码",
6445 "zh-cht": "備用碼",
6446 "xloc": [
6447 - "default.handlebars->31->2117"
6447 + "default.handlebars->31->2119"
6448 ]
6449 },
6450 {
@@ -6464,7 +6464,7 @@
6464 "zh-chs": "错误的签名",
6465 "zh-cht": "錯誤的簽名",
6466 "xloc": [
6467 - "default.handlebars->31->2279"
6467 + "default.handlebars->31->2281"
6468 ]
6469 },
6470 {
@@ -6484,7 +6484,7 @@
6484 "zh-chs": "错误的网络证书",
6485 "zh-cht": "錯誤的網絡憑證",
6486 "xloc": [
6487 - "default.handlebars->31->2278"
6487 + "default.handlebars->31->2280"
6488 ]
6489 },
6490 {
@@ -6504,7 +6504,7 @@
6504 "zh-chs": "巴斯克",
6505 "zh-cht": "巴斯克",
6506 "xloc": [
6507 - "default.handlebars->31->1220"
6507 + "default.handlebars->31->1222"
6508 ]
6509 },
6510 {
@@ -6524,7 +6524,7 @@
6524 "zh-chs": "批处理文件上传",
6525 "zh-cht": "批處理文件上傳",
6526 "xloc": [
6527 - "default.handlebars->31->524"
6527 + "default.handlebars->31->525"
6528 ]
6529 },
6530 {
@@ -6564,7 +6564,7 @@
6564 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
6565 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6566 "xloc": [
6567 - "default.handlebars->31->1849"
6567 + "default.handlebars->31->1851"
6568 ]
6569 },
6570 {
@@ -6584,7 +6584,7 @@
6584 "zh-chs": "白俄罗斯文",
6585 "zh-cht": "白俄羅斯文",
6586 "xloc": [
6587 - "default.handlebars->31->1222"
6587 + "default.handlebars->31->1224"
6588 ]
6589 },
6590 {
@@ -6604,7 +6604,7 @@
6604 "zh-chs": "孟加拉",
6605 "zh-cht": "孟加拉",
6606 "xloc": [
6607 - "default.handlebars->31->1223"
6607 + "default.handlebars->31->1225"
6608 ]
6609 },
6610 {
@@ -6636,7 +6636,7 @@
6636 "fr": "Chargeur de démarrage",
6637 "xloc": [
6638 "default-mobile.handlebars->11->438",
6639 - "default.handlebars->31->1084"
6639 + "default.handlebars->31->1086"
6640 ]
6641 },
6642 {
@@ -6656,7 +6656,7 @@
6656 "zh-chs": "波斯尼亚文",
6657 "zh-cht": "波斯尼亞文",
6658 "xloc": [
6659 - "default.handlebars->31->1224"
6659 + "default.handlebars->31->1226"
6660 ]
6661 },
6662 {
@@ -6676,7 +6676,7 @@
6676 "zh-chs": "布列塔尼",
6677 "zh-cht": "布列塔尼",
6678 "xloc": [
6679 - "default.handlebars->31->1225"
6679 + "default.handlebars->31->1227"
6680 ]
6681 },
6682 {
@@ -6696,7 +6696,7 @@
6696 "zh-chs": "广播",
6697 "zh-cht": "廣播",
6698 "xloc": [
6699 - "default.handlebars->31->2031",
6699 + "default.handlebars->31->2033",
6700 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6701 ]
6702 },
@@ -6717,7 +6717,7 @@
6717 "zh-chs": "广播消息",
6718 "zh-cht": "廣播消息",
6719 "xloc": [
6720 - "default.handlebars->31->1952"
6720 + "default.handlebars->31->1954"
6721 ]
6722 },
6723 {
@@ -6737,7 +6737,7 @@
6737 "zh-chs": "向所有连接的用户广播消息。",
6738 "zh-cht": "向所有連接的用戶廣播消息。",
6739 "xloc": [
6740 - "default.handlebars->31->1947"
6740 + "default.handlebars->31->1949"
6741 ]
6742 },
6743 {
@@ -6767,7 +6767,7 @@
6767 "zh-chs": "保加利亚文",
6768 "zh-cht": "保加利亞文",
6769 "xloc": [
6770 - "default.handlebars->31->1221"
6770 + "default.handlebars->31->1223"
6771 ]
6772 },
6773 {
@@ -6787,7 +6787,7 @@
6787 "zh-chs": "缅甸文",
6788 "zh-cht": "緬甸文",
6789 "xloc": [
6790 - "default.handlebars->31->1226"
6790 + "default.handlebars->31->1228"
6791 ]
6792 },
6793 {
@@ -6808,7 +6808,7 @@
6808 "zh-cht": "CCM",
6809 "xloc": [
6810 "default-mobile.handlebars->11->266",
6811 - "default.handlebars->31->622"
6811 + "default.handlebars->31->624"
6812 ]
6813 },
6814 {
@@ -6828,7 +6828,7 @@
6828 "zh-chs": "CCM模式",
6829 "zh-cht": "CCM模式",
6830 "xloc": [
6831 - "default.handlebars->31->1538"
6831 + "default.handlebars->31->1540"
6832 ]
6833 },
6834 {
@@ -6849,8 +6849,8 @@
6849 "zh-cht": "CIRA",
6850 "xloc": [
6851 "default-mobile.handlebars->11->235",
6852 - "default.handlebars->31->271",
6853 - "default.handlebars->31->466"
6852 + "default.handlebars->31->272",
6853 + "default.handlebars->31->467"
6854 ]
6855 },
6856 {
@@ -6870,7 +6870,7 @@
6870 "zh-chs": "CIRA服务器",
6871 "zh-cht": "CIRA伺服器",
6872 "xloc": [
6873 - "default.handlebars->31->2336"
6873 + "default.handlebars->31->2338"
6874 ]
6875 },
6876 {
@@ -6890,7 +6890,7 @@
6890 "zh-chs": "CIRA服务器命令",
6891 "zh-cht": "CIRA伺服器指令",
6892 "xloc": [
6893 - "default.handlebars->31->2337"
6893 + "default.handlebars->31->2339"
6894 ]
6895 },
6896 {
@@ -6910,7 +6910,7 @@
6910 "zh-chs": "CIRA设置",
6911 "zh-cht": "CIRA設置",
6912 "xloc": [
6913 - "default.handlebars->31->1546"
6913 + "default.handlebars->31->1548"
6914 ]
6915 },
6916 {
@@ -6931,7 +6931,7 @@
6931 "zh-cht": "CPU",
6932 "xloc": [
6933 "default-mobile.handlebars->11->480",
6934 - "default.handlebars->31->1136"
6934 + "default.handlebars->31->1138"
6935 ]
6936 },
6937 {
@@ -6951,7 +6951,7 @@
6951 "zh-chs": "CPU负载",
6952 "zh-cht": "CPU負載",
6953 "xloc": [
6954 - "default.handlebars->31->2293"
6954 + "default.handlebars->31->2295"
6955 ]
6956 },
6957 {
@@ -6971,7 +6971,7 @@
6971 "zh-chs": "最近15分钟的CPU负载",
6972 "zh-cht": "最近15分鐘的CPU負載",
6973 "xloc": [
6974 - "default.handlebars->31->2296"
6974 + "default.handlebars->31->2298"
6975 ]
6976 },
6977 {
@@ -6991,7 +6991,7 @@
6991 "zh-chs": "最近5分钟的CPU负载",
6992 "zh-cht": "最近5分鐘的CPU負載",
6993 "xloc": [
6994 - "default.handlebars->31->2295"
6994 + "default.handlebars->31->2297"
6995 ]
6996 },
6997 {
@@ -7011,7 +7011,7 @@
7011 "zh-chs": "最近一分钟的CPU负载",
7012 "zh-cht": "最近一分鐘的CPU負載",
7013 "xloc": [
7014 - "default.handlebars->31->2294"
7014 + "default.handlebars->31->2296"
7015 ]
7016 },
7017 {
@@ -7031,8 +7031,8 @@
7031 "zh-chs": "CR+LF",
7032 "zh-cht": "CR+LF",
7033 "xloc": [
7034 - "default.handlebars->31->1003",
7035 - "default.handlebars->31->1012",
7034 + "default.handlebars->31->1005",
7035 + "default.handlebars->31->1014",
7036 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7037 "terminal.handlebars->3->21",
7038 "terminal.handlebars->3->7",
@@ -7056,7 +7056,7 @@
7056 "zh-chs": "CSV",
7057 "zh-cht": "CSV",
7058 "xloc": [
7059 - "default.handlebars->31->1870"
7059 + "default.handlebars->31->1872"
7060 ]
7061 },
7062 {
@@ -7076,9 +7076,9 @@
7076 "zh-chs": "CSV格式",
7077 "zh-cht": "CSV格式",
7078 "xloc": [
7079 - "default.handlebars->31->1874",
7080 - "default.handlebars->31->1939",
7081 - "default.handlebars->31->532"
7079 + "default.handlebars->31->1876",
7080 + "default.handlebars->31->1941",
7081 + "default.handlebars->31->533"
7082 ]
7083 },
7084 {
@@ -7115,7 +7115,7 @@
7115 "zh-chs": "呼叫错误",
7116 "zh-cht": "呼叫錯誤",
7117 "xloc": [
7118 - "default.handlebars->31->2353"
7118 + "default.handlebars->31->2355"
7119 ]
7120 },
7121 {
@@ -7138,8 +7138,8 @@
7138 "agent-translations.json",
7139 "default-mobile.handlebars->11->105",
7140 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
7141 - "default.handlebars->31->1456",
7142 - "default.handlebars->31->2342",
7141 + "default.handlebars->31->1458",
7142 + "default.handlebars->31->2344",
7143 "default.handlebars->container->dialog->idx_dlgButtonBar",
7144 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7145 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7170,9 +7170,9 @@
7170 "default-mobile.handlebars->11->485",
7171 "default-mobile.handlebars->11->490",
7172 "default-mobile.handlebars->11->492",
7173 - "default.handlebars->31->1141",
7174 - "default.handlebars->31->1146",
7175 - "default.handlebars->31->1148"
7173 + "default.handlebars->31->1143",
7174 + "default.handlebars->31->1148",
7175 + "default.handlebars->31->1150"
7176 ]
7177 },
7178 {
@@ -7193,7 +7193,7 @@
7193 "zh-cht": "容量/速度",
7194 "xloc": [
7195 "default-mobile.handlebars->11->483",
7196 - "default.handlebars->31->1139"
7196 + "default.handlebars->31->1141"
7197 ]
7198 },
7199 {
@@ -7213,7 +7213,7 @@
7213 "zh-chs": "加泰罗尼亚文",
7214 "zh-cht": "加泰羅尼亞文",
7215 "xloc": [
7216 - "default.handlebars->31->1227"
7216 + "default.handlebars->31->1229"
7217 ]
7218 },
7219 {
@@ -7233,7 +7233,7 @@
7233 "zh-chs": "在这里为中心显示地图",
7234 "zh-cht": "在這裡為中心顯示地圖",
7235 "xloc": [
7236 - "default.handlebars->31->584"
7236 + "default.handlebars->31->586"
7237 ]
7238 },
7239 {
@@ -7253,7 +7253,7 @@
7253 "zh-chs": "查莫罗",
7254 "zh-cht": "查莫羅",
7255 "xloc": [
7256 - "default.handlebars->31->1228"
7256 + "default.handlebars->31->1230"
7257 ]
7258 },
7259 {
@@ -7295,7 +7295,7 @@
7295 "zh-chs": "更改{0}的电邮",
7296 "zh-cht": "更改{0}的電郵",
7297 "xloc": [
7298 - "default.handlebars->31->2149"
7298 + "default.handlebars->31->2151"
7299 ]
7300 },
7301 {
@@ -7315,9 +7315,9 @@
7315 "zh-chs": "更改组",
7316 "zh-cht": "更改群",
7317 "xloc": [
7318 - "default.handlebars->31->699",
7319 - "default.handlebars->31->883",
7320 - "default.handlebars->31->884"
7318 + "default.handlebars->31->701",
7319 + "default.handlebars->31->885",
7320 + "default.handlebars->31->886"
7321 ]
7322 },
7323 {
@@ -7338,8 +7338,8 @@
7338 "zh-cht": "更改密碼",
7339 "xloc": [
7340 "default-mobile.handlebars->11->113",
7341 - "default.handlebars->31->1423",
7342 - "default.handlebars->31->2134"
7341 + "default.handlebars->31->1425",
7342 + "default.handlebars->31->2136"
7343 ]
7344 },
7345 {
@@ -7359,7 +7359,7 @@
7359 "zh-chs": "更改{0}的密码",
7360 "zh-cht": "更改{0}的密碼",
7361 "xloc": [
7362 - "default.handlebars->31->2158"
7362 + "default.handlebars->31->2160"
7363 ]
7364 },
7365 {
@@ -7379,7 +7379,7 @@
7379 "zh-chs": "更改{0}的真实名称",
7380 "zh-cht": "更改{0}的真實名稱",
7381 "xloc": [
7382 - "default.handlebars->31->2144"
7382 + "default.handlebars->31->2146"
7383 ]
7384 },
7385 {
@@ -7470,7 +7470,7 @@
7470 "zh-chs": "更改该用户的密码",
7471 "zh-cht": "更改該用戶的密碼",
7472 "xloc": [
7473 - "default.handlebars->31->2133"
7473 + "default.handlebars->31->2135"
7474 ]
7475 },
7476 {
@@ -7510,7 +7510,7 @@
7510 "zh-chs": "在此处更改您的帐户电邮地址。",
7511 "zh-cht": "在此處更改你的帳戶電郵地址。",
7512 "xloc": [
7513 - "default.handlebars->31->1410"
7513 + "default.handlebars->31->1412"
7514 ]
7515 },
7516 {
@@ -7530,7 +7530,7 @@
7530 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7531 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7532 "xloc": [
7533 - "default.handlebars->31->1416"
7533 + "default.handlebars->31->1418"
7534 ]
7535 },
7536 {
@@ -7550,7 +7550,7 @@
7550 "zh-chs": "更改帐户凭据",
7551 "zh-cht": "帳戶憑證已更改",
7552 "xloc": [
7553 - "default.handlebars->31->1821"
7553 + "default.handlebars->31->1823"
7554 ]
7555 },
7556 {
@@ -7570,7 +7570,7 @@
7570 "zh-chs": "{1}组中的设备{0}已更改:{2}",
7571 "zh-cht": "{1}組中的設備{0}已更改:{2}",
7572 "xloc": [
7573 - "default.handlebars->31->1805"
7573 + "default.handlebars->31->1807"
7574 ]
7575 },
7576 {
@@ -7590,7 +7590,7 @@
7590 "zh-chs": "语言从{1}更改为{2}",
7591 "zh-cht": "語言從{1}更改為{2}",
7592 "xloc": [
7593 - "default.handlebars->31->1749"
7593 + "default.handlebars->31->1751"
7594 ]
7595 },
7596 {
@@ -7610,8 +7610,8 @@
7610 "zh-chs": "已更改{0}的用户设备权限",
7611 "zh-cht": "已更改{0}的用戶設備權限",
7612 "xloc": [
7613 - "default.handlebars->31->1807",
7614 - "default.handlebars->31->1828"
7613 + "default.handlebars->31->1809",
7614 + "default.handlebars->31->1830"
7615 ]
7616 },
7617 {
@@ -7631,7 +7631,7 @@
7631 "zh-chs": "更改语言将需要刷新页面。",
7632 "zh-cht": "更改語言將需要刷新頁面。",
7633 "xloc": [
7634 - "default.handlebars->31->1395"
7634 + "default.handlebars->31->1397"
7635 ]
7636 },
7637 {
@@ -7651,12 +7651,12 @@
7651 "zh-chs": "聊天",
7652 "zh-cht": "聊天",
7653 "xloc": [
7654 - "default.handlebars->31->1891",
7655 - "default.handlebars->31->2129",
7656 - "default.handlebars->31->2130",
7657 - "default.handlebars->31->694",
7658 - "default.handlebars->31->766",
7659 - "default.handlebars->31->788"
7654 + "default.handlebars->31->1893",
7655 + "default.handlebars->31->2131",
7656 + "default.handlebars->31->2132",
7657 + "default.handlebars->31->696",
7658 + "default.handlebars->31->768",
7659 + "default.handlebars->31->790"
7660 ]
7661 },
7662 {
@@ -7678,8 +7678,8 @@
7678 "xloc": [
7679 "default-mobile.handlebars->11->552",
7680 "default-mobile.handlebars->11->572",
7681 - "default.handlebars->31->1608",
7682 - "default.handlebars->31->1644"
7681 + "default.handlebars->31->1610",
7682 + "default.handlebars->31->1646"
7683 ]
7684 },
7685 {
@@ -7689,7 +7689,7 @@
7689 "de": "Chat Anfrage, Drücke hier zum annehmen.",
7690 "xloc": [
7691 "default-mobile.handlebars->11->604",
7692 - "default.handlebars->31->2248"
7692 + "default.handlebars->31->2250"
7693 ]
7694 },
7695 {
@@ -7729,7 +7729,7 @@
7729 "zh-chs": "车臣",
7730 "zh-cht": "車臣",
7731 "xloc": [
7732 - "default.handlebars->31->1229"
7732 + "default.handlebars->31->1231"
7733 ]
7734 },
7735 {
@@ -7829,8 +7829,8 @@
7829 "zh-chs": "检查...",
7830 "zh-cht": "檢查...",
7831 "xloc": [
7832 - "default.handlebars->31->1195",
7833 - "default.handlebars->31->2347"
7832 + "default.handlebars->31->1197",
7833 + "default.handlebars->31->2349"
7834 ]
7835 },
7836 {
@@ -7850,7 +7850,7 @@
7850 "zh-chs": "中文",
7851 "zh-cht": "中文",
7852 "xloc": [
7853 - "default.handlebars->31->1230"
7853 + "default.handlebars->31->1232"
7854 ]
7855 },
7856 {
@@ -7870,7 +7870,7 @@
7870 "zh-chs": "中文(香港)",
7871 "zh-cht": "中文(香港)",
7872 "xloc": [
7873 - "default.handlebars->31->1231"
7873 + "default.handlebars->31->1233"
7874 ]
7875 },
7876 {
@@ -7890,7 +7890,7 @@
7890 "zh-chs": "中文(中国)",
7891 "zh-cht": "中文(中國)",
7892 "xloc": [
7893 - "default.handlebars->31->1232"
7893 + "default.handlebars->31->1234"
7894 ]
7895 },
7896 {
@@ -7910,7 +7910,7 @@
7910 "zh-chs": "简体中文",
7911 "zh-cht": "簡體中文",
7912 "xloc": [
7913 - "default.handlebars->31->1392"
7913 + "default.handlebars->31->1394"
7914 ]
7915 },
7916 {
@@ -7930,7 +7930,7 @@
7930 "zh-chs": "中文(新加坡)",
7931 "zh-cht": "中文(新加坡)",
7932 "xloc": [
7933 - "default.handlebars->31->1233"
7933 + "default.handlebars->31->1235"
7934 ]
7935 },
7936 {
@@ -7950,7 +7950,7 @@
7950 "zh-chs": "中文(台湾)",
7951 "zh-cht": "中文(台灣)",
7952 "xloc": [
7953 - "default.handlebars->31->1234"
7953 + "default.handlebars->31->1236"
7954 ]
7955 },
7956 {
@@ -7970,7 +7970,7 @@
7970 "zh-chs": "繁体中文",
7971 "zh-cht": "繁體中文",
7972 "xloc": [
7973 - "default.handlebars->31->1393"
7973 + "default.handlebars->31->1395"
7974 ]
7975 },
7976 {
@@ -8011,7 +8011,7 @@
8011 "zh-chs": "楚瓦什",
8012 "zh-cht": "楚瓦什",
8013 "xloc": [
8014 - "default.handlebars->31->1235"
8014 + "default.handlebars->31->1237"
8015 ]
8016 },
8017 {
@@ -8055,11 +8055,11 @@
8055 "default-mobile.handlebars->11->398",
8056 "default-mobile.handlebars->11->70",
8057 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8058 - "default.handlebars->31->1048",
8058 "default.handlebars->31->1050",
8059 "default.handlebars->31->1052",
8060 "default.handlebars->31->1054",
8062 - "default.handlebars->31->1743",
8061 + "default.handlebars->31->1056",
8062 + "default.handlebars->31->1745",
8063 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8064 "default.handlebars->container->column_l->p41->3->1",
8065 "messenger.handlebars->xbottom->1->1->0->5"
@@ -8091,8 +8091,8 @@
8091 "fr": "Nettoyer l'agent",
8092 "de": "Entferne Agent.",
8093 "xloc": [
8094 - "default.handlebars->31->489",
8095 - "default.handlebars->31->528"
8094 + "default.handlebars->31->490",
8095 + "default.handlebars->31->529"
8096 ]
8097 },
8098 {
@@ -8101,7 +8101,7 @@
8101 "fr": "Nettoyer l'agent sur les appareils sélectionnés ?",
8102 "de": "Agent auf ausgewählten Geräten löschen?",
8103 "xloc": [
8104 - "default.handlebars->31->527"
8104 + "default.handlebars->31->528"
8105 ]
8106 },
8107 {
@@ -8122,7 +8122,7 @@
8122 "zh-cht": "全部清除",
8123 "xloc": [
8124 "default-mobile.handlebars->11->587",
8125 - "default.handlebars->31->2231"
8125 + "default.handlebars->31->2233"
8126 ]
8127 },
8128 {
@@ -8143,7 +8143,7 @@
8143 "zh-cht": "清除搜索過濾器",
8144 "xloc": [
8145 "default-mobile.handlebars->11->185",
8146 - "default.handlebars->31->242"
8146 + "default.handlebars->31->243"
8147 ]
8148 },
8149 {
@@ -8164,7 +8164,7 @@
8164 "zh-cht": "清除核心",
8165 "xloc": [
8166 "default-mobile.handlebars->11->506",
8167 - "default.handlebars->31->1163"
8167 + "default.handlebars->31->1165"
8168 ]
8169 },
8170 {
@@ -8205,7 +8205,7 @@
8205 "zh-cht": "清除此通知",
8206 "xloc": [
8207 "default-mobile.handlebars->11->586",
8208 - "default.handlebars->31->2230"
8208 + "default.handlebars->31->2232"
8209 ]
8210 },
8211 {
@@ -8265,8 +8265,8 @@
8265 "zh-chs": "单击此处编辑设备组名称",
8266 "zh-cht": "單擊此處編輯裝置群名稱",
8267 "xloc": [
8268 - "default.handlebars->31->1467",
8269 - "default.handlebars->31->1688"
8268 + "default.handlebars->31->1469",
8269 + "default.handlebars->31->1690"
8270 ]
8271 },
8272 {
@@ -8286,7 +8286,7 @@
8286 "zh-chs": "单击此处编辑服务器端设备名称",
8287 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
8288 "xloc": [
8289 - "default.handlebars->31->600"
8289 + "default.handlebars->31->602"
8290 ]
8291 },
8292 {
@@ -8306,7 +8306,7 @@
8306 "zh-chs": "单击此处编辑用户组名称",
8307 "zh-cht": "單擊此處編輯用戶群名稱",
8308 "xloc": [
8309 - "default.handlebars->31->2008"
8309 + "default.handlebars->31->2010"
8310 ]
8311 },
8312 {
@@ -8378,7 +8378,7 @@
8378 "zh-cht": "單擊確定將驗證電郵發送到:",
8379 "xloc": [
8380 "default-mobile.handlebars->11->98",
8381 - "default.handlebars->31->1407"
8381 + "default.handlebars->31->1409"
8382 ]
8383 },
8384 {
@@ -8440,7 +8440,7 @@
8440 "zh-cht": "客戶端控制模式(CCM)",
8441 "xloc": [
8442 "default-mobile.handlebars->11->461",
8443 - "default.handlebars->31->1117"
8443 + "default.handlebars->31->1119"
8444 ]
8445 },
8446 {
@@ -8460,7 +8460,7 @@
8460 "zh-chs": "客户编号",
8461 "zh-cht": "客戶編號",
8462 "xloc": [
8463 - "default.handlebars->31->1449"
8463 + "default.handlebars->31->1451"
8464 ]
8465 },
8466 {
@@ -8480,7 +8480,7 @@
8480 "zh-chs": "客户端启动的远程访问",
8481 "zh-cht": "客戶端啟動的遠程訪問",
8482 "xloc": [
8483 - "default.handlebars->31->1545"
8483 + "default.handlebars->31->1547"
8484 ]
8485 },
8486 {
@@ -8500,7 +8500,7 @@
8500 "zh-chs": "客户机密",
8501 "zh-cht": "客戶機密",
8502 "xloc": [
8503 - "default.handlebars->31->1450"
8503 + "default.handlebars->31->1452"
8504 ]
8505 },
8506 {
@@ -8542,11 +8542,11 @@
8542 "zh-cht": "關",
8543 "xloc": [
8544 "default-mobile.handlebars->11->68",
8545 - "default.handlebars->31->1025",
8545 + "default.handlebars->31->1027",
8546 "default.handlebars->31->152",
8547 "default.handlebars->31->160",
8548 - "default.handlebars->31->2341",
8549 - "default.handlebars->31->992"
8548 + "default.handlebars->31->2343",
8549 + "default.handlebars->31->994"
8550 ]
8551 },
8552 {
@@ -8566,7 +8566,7 @@
8566 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
8567 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
8568 "xloc": [
8569 - "default.handlebars->31->1754"
8569 + "default.handlebars->31->1756"
8570 ]
8571 },
8572 {
@@ -8668,7 +8668,7 @@
8668 "zh-chs": "命令",
8669 "zh-cht": "命令",
8670 "xloc": [
8671 - "default.handlebars->31->437"
8671 + "default.handlebars->31->438"
8672 ]
8673 },
8674 {
@@ -8689,9 +8689,9 @@
8689 "zh-cht": "指令",
8690 "xloc": [
8691 "default-mobile.handlebars->11->574",
8692 - "default.handlebars->31->1646",
8693 - "default.handlebars->31->768",
8694 - "default.handlebars->31->790"
8692 + "default.handlebars->31->1648",
8693 + "default.handlebars->31->770",
8694 + "default.handlebars->31->792"
8695 ]
8696 },
8697 {
@@ -8711,8 +8711,8 @@
8711 "zh-chs": "通用设备组",
8712 "zh-cht": "通用裝置群",
8713 "xloc": [
8714 - "default.handlebars->31->2039",
8715 - "default.handlebars->31->2163"
8714 + "default.handlebars->31->2041",
8715 + "default.handlebars->31->2165"
8716 ]
8717 },
8718 {
@@ -8732,8 +8732,8 @@
8732 "zh-chs": "通用设备",
8733 "zh-cht": "通用裝置",
8734 "xloc": [
8735 - "default.handlebars->31->2045",
8736 - "default.handlebars->31->2175"
8735 + "default.handlebars->31->2047",
8736 + "default.handlebars->31->2177"
8737 ]
8738 },
8739 {
@@ -8743,7 +8743,7 @@
8743 "de": "Kompilierungszeit",
8744 "xloc": [
8745 "default-mobile.handlebars->11->434",
8746 - "default.handlebars->31->1080"
8746 + "default.handlebars->31->1082"
8747 ]
8748 },
8749 {
@@ -8763,7 +8763,7 @@
8763 "zh-chs": "压缩档案...",
8764 "zh-cht": "壓縮檔案...",
8765 "xloc": [
8766 - "default.handlebars->31->1020"
8766 + "default.handlebars->31->1022"
8767 ]
8768 },
8769 {
@@ -8785,14 +8785,14 @@
8785 "xloc": [
8786 "default-mobile.handlebars->11->324",
8787 "default-mobile.handlebars->11->528",
8788 - "default.handlebars->31->1556",
8789 - "default.handlebars->31->1919",
8790 - "default.handlebars->31->1998",
8791 - "default.handlebars->31->2059",
8792 - "default.handlebars->31->2161",
8793 - "default.handlebars->31->496",
8794 - "default.handlebars->31->878",
8795 - "default.handlebars->31->887"
8788 + "default.handlebars->31->1558",
8789 + "default.handlebars->31->1921",
8790 + "default.handlebars->31->2000",
8791 + "default.handlebars->31->2061",
8792 + "default.handlebars->31->2163",
8793 + "default.handlebars->31->497",
8794 + "default.handlebars->31->880",
8795 + "default.handlebars->31->889"
8796 ]
8797 },
8798 {
@@ -8813,7 +8813,7 @@
8813 "zh-cht": "確認將1個副本複製到此位置?",
8814 "xloc": [
8815 "default-mobile.handlebars->11->387",
8816 - "default.handlebars->31->1043"
8816 + "default.handlebars->31->1045"
8817 ]
8818 },
8819 {
@@ -8833,7 +8833,7 @@
8833 "zh-chs": "确认{0}个条目的复制到此位置?",
8834 "zh-cht": "確認{0}個條目的複製到此位置?",
8835 "xloc": [
8836 - "default.handlebars->31->1042"
8836 + "default.handlebars->31->1044"
8837 ]
8838 },
8839 {
@@ -8873,7 +8873,7 @@
8873 "zh-chs": "确认删除选定的帐户?",
8874 "zh-cht": "確認刪除所選帳戶?",
8875 "xloc": [
8876 - "default.handlebars->31->1918"
8876 + "default.handlebars->31->1920"
8877 ]
8878 },
8879 {
@@ -8893,7 +8893,7 @@
8893 "zh-chs": "确认删除选定的设备?",
8894 "zh-cht": "確認刪除所選裝置?",
8895 "xloc": [
8896 - "default.handlebars->31->495"
8896 + "default.handlebars->31->496"
8897 ]
8898 },
8899 {
@@ -8913,7 +8913,7 @@
8913 "zh-chs": "确认删除选定的用户组?",
8914 "zh-cht": "確認刪除所選用戶群?",
8915 "xloc": [
8916 - "default.handlebars->31->1997"
8916 + "default.handlebars->31->1999"
8917 ]
8918 },
8919 {
@@ -8933,7 +8933,7 @@
8933 "zh-chs": "确认删除用户{0}?",
8934 "zh-cht": "確認刪除用戶{0}?",
8935 "xloc": [
8936 - "default.handlebars->31->2160"
8936 + "default.handlebars->31->2162"
8937 ]
8938 },
8939 {
@@ -8953,7 +8953,7 @@
8953 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8954 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8955 "xloc": [
8956 - "default.handlebars->31->2062"
8956 + "default.handlebars->31->2064"
8957 ]
8958 },
8959 {
@@ -8973,7 +8973,7 @@
8973 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8974 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8975 "xloc": [
8976 - "default.handlebars->31->2192"
8976 + "default.handlebars->31->2194"
8977 ]
8978 },
8979 {
@@ -8994,7 +8994,7 @@
8994 "zh-cht": "確認將1個條目移動到此位置?",
8995 "xloc": [
8996 "default-mobile.handlebars->11->389",
8997 - "default.handlebars->31->1045"
8997 + "default.handlebars->31->1047"
8998 ]
8999 },
9000 {
@@ -9014,7 +9014,7 @@
9014 "zh-chs": "确认将{0}个条目移到此位置?",
9015 "zh-cht": "確認將{0}個條目移到該位置?",
9016 "xloc": [
9017 - "default.handlebars->31->1044"
9017 + "default.handlebars->31->1046"
9018 ]
9019 },
9020 {
@@ -9054,7 +9054,7 @@
9054 "zh-chs": "确认覆盖?",
9055 "zh-cht": "確認覆蓋?",
9056 "xloc": [
9057 - "default.handlebars->31->1737"
9057 + "default.handlebars->31->1739"
9058 ]
9059 },
9060 {
@@ -9074,8 +9074,8 @@
9074 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
9075 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9076 "xloc": [
9077 - "default.handlebars->31->2052",
9078 - "default.handlebars->31->2183"
9077 + "default.handlebars->31->2054",
9078 + "default.handlebars->31->2185"
9079 ]
9080 },
9081 {
@@ -9095,8 +9095,8 @@
9095 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9096 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9097 "xloc": [
9098 - "default.handlebars->31->2054",
9099 - "default.handlebars->31->2196"
9098 + "default.handlebars->31->2056",
9099 + "default.handlebars->31->2198"
9100 ]
9101 },
9102 {
@@ -9116,7 +9116,7 @@
9116 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
9117 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9118 "xloc": [
9119 - "default.handlebars->31->2185"
9119 + "default.handlebars->31->2187"
9120 ]
9121 },
9122 {
@@ -9136,7 +9136,7 @@
9136 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9137 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9138 "xloc": [
9139 - "default.handlebars->31->2188"
9139 + "default.handlebars->31->2190"
9140 ]
9141 },
9142 {
@@ -9156,8 +9156,8 @@
9156 "zh-chs": "确认删除访问权限?",
9157 "zh-cht": "確認刪除訪問權限?",
9158 "xloc": [
9159 - "default.handlebars->31->2186",
9160 - "default.handlebars->31->2189"
9159 + "default.handlebars->31->2188",
9160 + "default.handlebars->31->2191"
9161 ]
9162 },
9163 {
@@ -9178,7 +9178,7 @@
9178 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
9179 "xloc": [
9180 "default-mobile.handlebars->11->97",
9181 - "default.handlebars->31->1185"
9181 + "default.handlebars->31->1187"
9182 ]
9183 },
9184 {
@@ -9215,7 +9215,7 @@
9215 "zh-chs": "确认删除设备共享“{0}”?",
9216 "zh-cht": "確認刪除設備共享“{0}”?",
9217 "xloc": [
9218 - "default.handlebars->31->2181"
9218 + "default.handlebars->31->2183"
9219 ]
9220 },
9221 {
@@ -9269,7 +9269,7 @@
9269 "zh-chs": "确认删除用户“ {0} ”的权限?",
9270 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
9271 "xloc": [
9272 - "default.handlebars->31->1655"
9272 + "default.handlebars->31->1657"
9273 ]
9274 },
9275 {
@@ -9289,7 +9289,7 @@
9289 "zh-chs": "确认删除用户组“ {0} ”的权限?",
9290 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9291 "xloc": [
9292 - "default.handlebars->31->1657"
9292 + "default.handlebars->31->1659"
9293 ]
9294 },
9295 {
@@ -9347,7 +9347,7 @@
9347 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9348 "xloc": [
9349 "default-mobile.handlebars->11->150",
9350 - "default.handlebars->31->1738"
9350 + "default.handlebars->31->1740"
9351 ]
9352 },
9353 {
@@ -9371,8 +9371,8 @@
9371 "default-mobile.handlebars->11->369",
9372 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9373 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9374 - "default.handlebars->31->1015",
9375 - "default.handlebars->31->1495",
9374 + "default.handlebars->31->1017",
9375 + "default.handlebars->31->1497",
9376 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9377 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9378 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9399,7 +9399,7 @@
9399 "zh-chs": "全部连接",
9400 "zh-cht": "全部連接",
9401 "xloc": [
9402 - "default.handlebars->31->306",
9402 + "default.handlebars->31->307",
9403 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
9404 ]
9405 },
@@ -9420,7 +9420,7 @@
9420 "zh-chs": "连接到服务器",
9421 "zh-cht": "連接到伺服器",
9422 "xloc": [
9423 - "default.handlebars->31->1549"
9423 + "default.handlebars->31->1551"
9424 ]
9425 },
9426 {
@@ -9542,7 +9542,7 @@
9542 "zh-chs": "已连接的英特尔&reg;AMT",
9543 "zh-cht": "已連接的Intel&reg; AMT",
9544 "xloc": [
9545 - "default.handlebars->31->2284"
9545 + "default.handlebars->31->2286"
9546 ]
9547 },
9548 {
@@ -9562,7 +9562,7 @@
9562 "zh-chs": "已连接的用户",
9563 "zh-cht": "已连接的用户",
9564 "xloc": [
9565 - "default.handlebars->31->2289"
9565 + "default.handlebars->31->2291"
9566 ]
9567 },
9568 {
@@ -9583,7 +9583,7 @@
9583 "zh-cht": "現在已連接",
9584 "xloc": [
9585 "default-mobile.handlebars->11->429",
9586 - "default.handlebars->31->1075"
9586 + "default.handlebars->31->1077"
9587 ]
9588 },
9589 {
@@ -9626,10 +9626,10 @@
9626 "default-mobile.handlebars->11->2",
9627 "default-mobile.handlebars->11->405",
9628 "default-mobile.handlebars->11->48",
9629 - "default.handlebars->31->1066",
9630 - "default.handlebars->31->259",
9631 - "default.handlebars->31->262",
9632 - "default.handlebars->31->309",
9629 + "default.handlebars->31->1068",
9630 + "default.handlebars->31->260",
9631 + "default.handlebars->31->263",
9632 + "default.handlebars->31->310",
9633 "default.handlebars->31->9",
9634 "desktop.handlebars->3->2",
9635 "terminal.handlebars->3->2",
@@ -9653,7 +9653,7 @@
9653 "zh-chs": "连接数量",
9654 "zh-cht": "連接數量",
9655 "xloc": [
9656 - "default.handlebars->31->2303"
9656 + "default.handlebars->31->2305"
9657 ]
9658 },
9659 {
@@ -9673,7 +9673,7 @@
9673 "zh-chs": "连接转发器",
9674 "zh-cht": "連接轉發器",
9675 "xloc": [
9676 - "default.handlebars->31->2335"
9676 + "default.handlebars->31->2337"
9677 ]
9678 },
9679 {
@@ -9734,9 +9734,9 @@
9734 "zh-cht": "連接性",
9735 "xloc": [
9736 "default-mobile.handlebars->11->286",
9737 - "default.handlebars->31->1695",
9738 - "default.handlebars->31->250",
9739 - "default.handlebars->31->682",
9737 + "default.handlebars->31->1697",
9738 + "default.handlebars->31->251",
9739 + "default.handlebars->31->684",
9740 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
9741 ]
9742 },
@@ -9758,8 +9758,8 @@
9758 "zh-cht": "控制台",
9759 "xloc": [
9760 "default-mobile.handlebars->11->301",
9761 - "default.handlebars->31->761",
9762 - "default.handlebars->31->783",
9761 + "default.handlebars->31->763",
9762 + "default.handlebars->31->785",
9763 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
9764 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
9765 "default.handlebars->contextMenu->cxconsole"
@@ -9782,7 +9782,7 @@
9782 "zh-chs": "控制台 -",
9783 "zh-cht": "控制台 -",
9784 "xloc": [
9785 - "default.handlebars->31->601"
9785 + "default.handlebars->31->603"
9786 ]
9787 },
9788 {
@@ -9802,8 +9802,8 @@
9802 "zh-chs": "控制",
9803 "zh-cht": "控制",
9804 "xloc": [
9805 - "default.handlebars->31->760",
9806 - "default.handlebars->31->782",
9805 + "default.handlebars->31->762",
9806 + "default.handlebars->31->784",
9807 "messenger.handlebars->remoteImage->3->2"
9808 ]
9809 },
@@ -9824,7 +9824,7 @@
9824 "zh-chs": "Cookie编码器",
9825 "zh-cht": "Cookie編碼器",
9826 "xloc": [
9827 - "default.handlebars->31->2319"
9827 + "default.handlebars->31->2321"
9828 ]
9829 },
9830 {
@@ -9889,7 +9889,7 @@
9889 "zh-chs": "将Windows 32位代理URL复制到剪贴板",
9890 "zh-cht": "將Windows 32位代理URL複製到剪貼板",
9891 "xloc": [
9892 - "default.handlebars->31->408"
9892 + "default.handlebars->31->409"
9893 ]
9894 },
9895 {
@@ -9909,7 +9909,7 @@
9909 "zh-chs": "将Windows 64位代理URL复制到剪贴板",
9910 "zh-cht": "將Windows 64位代理URL複製到剪貼板",
9911 "xloc": [
9912 - "default.handlebars->31->412"
9912 + "default.handlebars->31->413"
9913 ]
9914 },
9915 {
@@ -9960,8 +9960,8 @@
9960 "zh-chs": "将代理URL复制到剪贴板",
9961 "zh-cht": "將代理URL複製到剪貼板",
9962 "xloc": [
9963 - "default.handlebars->31->436",
9964 - "default.handlebars->31->438"
9963 + "default.handlebars->31->437",
9964 + "default.handlebars->31->439"
9965 ]
9966 },
9967 {
@@ -9981,10 +9981,10 @@
9981 "zh-chs": "复制连结到剪贴板",
9982 "zh-cht": "複製連結到剪貼板",
9983 "xloc": [
9984 - "default.handlebars->31->1706",
9985 - "default.handlebars->31->1725",
9984 + "default.handlebars->31->1708",
9985 + "default.handlebars->31->1727",
9986 "default.handlebars->31->215",
9987 - "default.handlebars->31->389"
9987 + "default.handlebars->31->390"
9988 ]
9989 },
9990 {
@@ -10004,7 +10004,7 @@
10004 "zh-chs": "将macOS代理URL复制到剪贴板",
10005 "zh-cht": "將macOS代理URL複製到剪貼板",
10006 "xloc": [
10007 - "default.handlebars->31->421"
10007 + "default.handlebars->31->422"
10008 ]
10009 },
10010 {
@@ -10046,8 +10046,8 @@
10046 "xloc": [
10047 "agentinvite.handlebars->container->column_l->5->linuxtab",
10048 "agentinvite.handlebars->container->column_l->5->linuxtab",
10049 - "default.handlebars->31->417",
10050 - "default.handlebars->31->432"
10049 + "default.handlebars->31->418",
10050 + "default.handlebars->31->433"
10051 ]
10052 },
10053 {
@@ -10087,7 +10087,7 @@
10087 "zh-chs": "复制:“{0}”到“{1}”",
10088 "zh-cht": "複製:“{0}”到“{1}”",
10089 "xloc": [
10090 - "default.handlebars->31->1797"
10090 + "default.handlebars->31->1799"
10091 ]
10092 },
10093 {
@@ -10233,7 +10233,7 @@
10233 "zh-chs": "核心服务器",
10234 "zh-cht": "核心伺服器",
10235 "xloc": [
10236 - "default.handlebars->31->2318"
10236 + "default.handlebars->31->2320"
10237 ]
10238 },
10239 {
@@ -10253,7 +10253,7 @@
10253 "zh-chs": "科西嘉文",
10254 "zh-cht": "科西嘉文",
10255 "xloc": [
10256 - "default.handlebars->31->1236"
10256 + "default.handlebars->31->1238"
10257 ]
10258 },
10259 {
@@ -10273,7 +10273,7 @@
10273 "zh-chs": "创建帐号",
10274 "zh-cht": "創建帳號",
10275 "xloc": [
10276 - "default.handlebars->31->1966",
10276 + "default.handlebars->31->1968",
10277 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10278 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10279 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10316,7 +10316,7 @@
10316 "zh-chs": "创建用户组",
10317 "zh-cht": "創建用戶群",
10318 "xloc": [
10319 - "default.handlebars->31->2005"
10319 + "default.handlebars->31->2007"
10320 ]
10321 },
10322 {
@@ -10336,7 +10336,7 @@
10336 "zh-chs": "创建连结以与访客共享此设备",
10337 "zh-cht": "創建鏈結以與訪客共享此裝置",
10338 "xloc": [
10339 - "default.handlebars->31->697"
10339 + "default.handlebars->31->699"
10340 ]
10341 },
10342 {
@@ -10356,7 +10356,7 @@
10356 "zh-chs": "使用以下选项创建一个新的设备组。",
10357 "zh-cht": "使用以下選項創建一個新的裝置群。",
10358 "xloc": [
10359 - "default.handlebars->31->1430"
10359 + "default.handlebars->31->1432"
10360 ]
10361 },
10362 {
@@ -10376,7 +10376,7 @@
10376 "zh-chs": "创建一个新的设备组。",
10377 "zh-cht": "創建一個新的裝置群。",
10378 "xloc": [
10379 - "default.handlebars->31->252"
10379 + "default.handlebars->31->253"
10380 ]
10381 },
10382 {
@@ -10396,7 +10396,7 @@
10396 "zh-chs": "创建文件夹(如果不存在)?",
10397 "zh-cht": "創建文件夾(如果不存在)?",
10398 "xloc": [
10399 - "default.handlebars->31->522"
10399 + "default.handlebars->31->523"
10400 ]
10401 },
10402 {
@@ -10416,7 +10416,7 @@
10416 "zh-chs": "创建文件夹:“{0}”",
10417 "zh-cht": "創建文件夾:“{0}”",
10418 "xloc": [
10419 - "default.handlebars->31->1790"
10419 + "default.handlebars->31->1792"
10420 ]
10421 },
10422 {
@@ -10436,7 +10436,7 @@
10436 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10437 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10438 "xloc": [
10439 - "default.handlebars->31->1930"
10439 + "default.handlebars->31->1932"
10440 ]
10441 },
10442 {
@@ -10478,7 +10478,7 @@
10478 "zh-chs": "创建的设备组:{0}",
10479 "zh-cht": "創建的設備組:{0}",
10480 "xloc": [
10481 - "default.handlebars->31->1801"
10481 + "default.handlebars->31->1803"
10482 ]
10483 },
10484 {
@@ -10498,7 +10498,7 @@
10498 "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
10499 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
10500 "xloc": [
10501 - "default.handlebars->31->801"
10501 + "default.handlebars->31->803"
10502 ]
10503 },
10504 {
@@ -10552,7 +10552,7 @@
10552 "zh-chs": "创建",
10553 "zh-cht": "創建",
10554 "xloc": [
10555 - "default.handlebars->31->2091"
10555 + "default.handlebars->31->2093"
10556 ]
10557 },
10558 {
@@ -10572,7 +10572,7 @@
10572 "zh-chs": "创建时间",
10573 "zh-cht": "創作時間",
10574 "xloc": [
10575 - "default.handlebars->31->1477"
10575 + "default.handlebars->31->1479"
10576 ]
10577 },
10578 {
@@ -10614,8 +10614,8 @@
10614 "zh-chs": "创建者",
10615 "zh-cht": "創作者",
10616 "xloc": [
10617 - "default.handlebars->31->1475",
10618 - "default.handlebars->31->1476"
10617 + "default.handlebars->31->1477",
10618 + "default.handlebars->31->1478"
10619 ]
10620 },
10621 {
@@ -10635,7 +10635,7 @@
10635 "zh-chs": "证书",
10636 "zh-cht": "證書",
10637 "xloc": [
10638 - "default.handlebars->31->1447"
10638 + "default.handlebars->31->1449"
10639 ]
10640 },
10641 {
@@ -10655,7 +10655,7 @@
10655 "zh-chs": "克里语",
10656 "zh-cht": "克里語",
10657 "xloc": [
10658 - "default.handlebars->31->1237"
10658 + "default.handlebars->31->1239"
10659 ]
10660 },
10661 {
@@ -10675,7 +10675,7 @@
10675 "zh-chs": "克罗地亚文",
10676 "zh-cht": "克羅地亞文",
10677 "xloc": [
10678 - "default.handlebars->31->1238"
10678 + "default.handlebars->31->1240"
10679 ]
10680 },
10681 {
@@ -10740,8 +10740,8 @@
10740 "default-mobile.handlebars->11->358",
10741 "default-mobile.handlebars->11->362",
10742 "default.handlebars->31->57",
10743 - "default.handlebars->31->968",
10744 - "default.handlebars->31->972",
10743 + "default.handlebars->31->970",
10744 + "default.handlebars->31->974",
10745 "terminal.handlebars->3->6"
10746 ]
10747 },
@@ -10851,7 +10851,7 @@
10851 "de": "Aktuelles Password nicht in korrekt.",
10852 "xloc": [
10853 "default-mobile.handlebars->11->614",
10854 - "default.handlebars->31->2258"
10854 + "default.handlebars->31->2260"
10855 ]
10856 },
10857 {
@@ -10912,7 +10912,7 @@
10912 "zh-chs": "捷克文",
10913 "zh-cht": "捷克文",
10914 "xloc": [
10915 - "default.handlebars->31->1239"
10915 + "default.handlebars->31->1241"
10916 ]
10917 },
10918 {
@@ -10952,7 +10952,7 @@
10952 "zh-chs": "丹麦文",
10953 "zh-cht": "丹麥文",
10954 "xloc": [
10955 - "default.handlebars->31->1240"
10955 + "default.handlebars->31->1242"
10956 ]
10957 },
10958 {
@@ -10982,7 +10982,7 @@
10982 "zh-chs": "数据通道",
10983 "zh-cht": "數據通道",
10984 "xloc": [
10985 - "default.handlebars->31->935",
10985 + "default.handlebars->31->937",
10986 "desktop.handlebars->3->11"
10987 ]
10988 },
@@ -11003,7 +11003,7 @@
11003 "zh-chs": "日期和时间",
11004 "zh-cht": "日期和時間",
11005 "xloc": [
11006 - "default.handlebars->31->1398"
11006 + "default.handlebars->31->1400"
11007 ]
11008 },
11009 {
@@ -11024,7 +11024,7 @@
11024 "zh-cht": "天",
11025 "xloc": [
11026 "default-mobile.handlebars->11->314",
11027 - "default.handlebars->31->862"
11027 + "default.handlebars->31->864"
11028 ]
11029 },
11030 {
@@ -11044,7 +11044,7 @@
11044 "zh-chs": "停用",
11045 "zh-cht": "停用",
11046 "xloc": [
11047 - "default.handlebars->31->1528"
11047 + "default.handlebars->31->1530"
11048 ]
11049 },
11050 {
@@ -11064,7 +11064,7 @@
11064 "zh-chs": "如果设置停用CCM",
11065 "zh-cht": "如果設置停用CCM",
11066 "xloc": [
11067 - "default.handlebars->31->1540"
11067 + "default.handlebars->31->1542"
11068 ]
11069 },
11070 {
@@ -11102,7 +11102,7 @@
11102 "zh-cht": "沉睡",
11103 "xloc": [
11104 "default-mobile.handlebars->11->223",
11105 - "default.handlebars->31->449"
11105 + "default.handlebars->31->450"
11106 ]
11107 },
11108 {
@@ -11122,10 +11122,10 @@
11122 "zh-chs": "默认",
11123 "zh-cht": "默認",
11124 "xloc": [
11125 - "default.handlebars->31->1953",
11126 - "default.handlebars->31->2001",
11127 - "default.handlebars->31->2012",
11128 - "default.handlebars->31->2080"
11125 + "default.handlebars->31->1955",
11126 + "default.handlebars->31->2003",
11127 + "default.handlebars->31->2014",
11128 + "default.handlebars->31->2082"
11129 ]
11130 },
11131 {
@@ -11135,7 +11135,7 @@
11135 "de": "Löschen",
11136 "xloc": [
11137 "default-mobile.handlebars->11->346",
11138 - "default.handlebars->31->956"
11138 + "default.handlebars->31->958"
11139 ]
11140 },
11141 {
@@ -11160,9 +11160,9 @@
11160 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11161 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11162 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
11163 - "default.handlebars->31->1034",
11164 - "default.handlebars->31->1732",
11165 - "default.handlebars->31->571",
11163 + "default.handlebars->31->1036",
11164 + "default.handlebars->31->1734",
11165 + "default.handlebars->31->573",
11166 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11167 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
11168 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -11191,7 +11191,7 @@
11191 "zh-cht": "刪除帳戶",
11192 "xloc": [
11193 "default-mobile.handlebars->11->107",
11194 - "default.handlebars->31->1415"
11194 + "default.handlebars->31->1417"
11195 ]
11196 },
11197 {
@@ -11211,7 +11211,7 @@
11211 "zh-chs": "删除帐户",
11212 "zh-cht": "刪除帳戶",
11213 "xloc": [
11214 - "default.handlebars->31->1920"
11214 + "default.handlebars->31->1922"
11215 ]
11216 },
11217 {
@@ -11232,7 +11232,7 @@
11232 "zh-cht": "刪除裝置",
11233 "xloc": [
11234 "default-mobile.handlebars->11->291",
11235 - "default.handlebars->31->701"
11235 + "default.handlebars->31->703"
11236 ]
11237 },
11238 {
@@ -11254,8 +11254,8 @@
11254 "xloc": [
11255 "default-mobile.handlebars->11->526",
11256 "default-mobile.handlebars->11->529",
11257 - "default.handlebars->31->1524",
11258 - "default.handlebars->31->1557"
11257 + "default.handlebars->31->1526",
11258 + "default.handlebars->31->1559"
11259 ]
11260 },
11261 {
@@ -11276,7 +11276,7 @@
11276 "zh-cht": "刪除節點",
11277 "xloc": [
11278 "default-mobile.handlebars->11->322",
11279 - "default.handlebars->31->888"
11279 + "default.handlebars->31->890"
11280 ]
11281 },
11282 {
@@ -11296,7 +11296,7 @@
11296 "zh-chs": "删除节点",
11297 "zh-cht": "刪除節點",
11298 "xloc": [
11299 - "default.handlebars->31->497"
11299 + "default.handlebars->31->498"
11300 ]
11301 },
11302 {
@@ -11316,7 +11316,7 @@
11316 "zh-chs": "删除用户",
11317 "zh-cht": "刪除用戶",
11318 "xloc": [
11319 - "default.handlebars->31->2132"
11319 + "default.handlebars->31->2134"
11320 ]
11321 },
11322 {
@@ -11336,8 +11336,8 @@
11336 "zh-chs": "删除用户群组",
11337 "zh-cht": "刪除用戶群組",
11338 "xloc": [
11339 - "default.handlebars->31->2050",
11340 - "default.handlebars->31->2060"
11339 + "default.handlebars->31->2052",
11340 + "default.handlebars->31->2062"
11341 ]
11342 },
11343 {
@@ -11357,7 +11357,7 @@
11357 "zh-chs": "删除用户群组",
11358 "zh-cht": "刪除用戶群組",
11359 "xloc": [
11360 - "default.handlebars->31->1999"
11360 + "default.handlebars->31->2001"
11361 ]
11362 },
11363 {
@@ -11377,7 +11377,7 @@
11377 "zh-chs": "删除用户{0}",
11378 "zh-cht": "刪除用戶{0}",
11379 "xloc": [
11380 - "default.handlebars->31->2159"
11380 + "default.handlebars->31->2161"
11381 ]
11382 },
11383 {
@@ -11398,7 +11398,7 @@
11398 "zh-cht": "刪除帳戶",
11399 "xloc": [
11400 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
11401 - "default.handlebars->31->1916",
11401 + "default.handlebars->31->1918",
11402 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11403 ]
11404 },
@@ -11419,7 +11419,7 @@
11419 "zh-chs": "删除设备",
11420 "zh-cht": "刪除裝置",
11421 "xloc": [
11422 - "default.handlebars->31->487"
11422 + "default.handlebars->31->488"
11423 ]
11424 },
11425 {
@@ -11439,7 +11439,7 @@
11439 "zh-chs": "删除群组",
11440 "zh-cht": "刪除群組",
11441 "xloc": [
11442 - "default.handlebars->31->1995"
11442 + "default.handlebars->31->1997"
11443 ]
11444 },
11445 {
@@ -11459,7 +11459,7 @@
11459 "zh-chs": "删除项目?",
11460 "zh-cht": "刪除項目?",
11461 "xloc": [
11462 - "default.handlebars->31->572"
11462 + "default.handlebars->31->574"
11463 ]
11464 },
11465 {
@@ -11479,7 +11479,7 @@
11479 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11480 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11481 "xloc": [
11482 - "default.handlebars->31->1792"
11482 + "default.handlebars->31->1794"
11483 ]
11484 },
11485 {
@@ -11501,8 +11501,8 @@
11501 "xloc": [
11502 "default-mobile.handlebars->11->147",
11503 "default-mobile.handlebars->11->381",
11504 - "default.handlebars->31->1036",
11505 - "default.handlebars->31->1734"
11504 + "default.handlebars->31->1038",
11505 + "default.handlebars->31->1736"
11506 ]
11507 },
11508 {
@@ -11522,7 +11522,7 @@
11522 "zh-chs": "删除用户群组{0}?",
11523 "zh-cht": "刪除用戶群組{0}?",
11524 "xloc": [
11525 - "default.handlebars->31->2058"
11525 + "default.handlebars->31->2060"
11526 ]
11527 },
11528 {
@@ -11544,8 +11544,8 @@
11544 "xloc": [
11545 "default-mobile.handlebars->11->146",
11546 "default-mobile.handlebars->11->380",
11547 - "default.handlebars->31->1035",
11548 - "default.handlebars->31->1733"
11547 + "default.handlebars->31->1037",
11548 + "default.handlebars->31->1735"
11549 ]
11550 },
11551 {
@@ -11585,7 +11585,7 @@
11585 "zh-chs": "删除:“{0}”",
11586 "zh-cht": "刪除:“{0}”",
11587 "xloc": [
11588 - "default.handlebars->31->1791"
11588 + "default.handlebars->31->1793"
11589 ]
11590 },
11591 {
@@ -11605,7 +11605,7 @@
11605 "zh-chs": "删除:“{0}”,{1}个元素已删除",
11606 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11607 "xloc": [
11608 - "default.handlebars->31->1793"
11608 + "default.handlebars->31->1795"
11609 ]
11610 },
11611 {
@@ -11626,7 +11626,7 @@
11626 "zh-cht": "被拒絕",
11627 "xloc": [
11628 "default-mobile.handlebars->11->333",
11629 - "default.handlebars->31->931",
11629 + "default.handlebars->31->933",
11630 "desktop.handlebars->3->7",
11631 "terminal.handlebars->3->11"
11632 ]
@@ -11724,19 +11724,19 @@
11724 "default-mobile.handlebars->11->442",
11725 "default-mobile.handlebars->11->517",
11726 "default-mobile.handlebars->11->531",
11727 - "default.handlebars->31->1088",
11728 - "default.handlebars->31->1098",
11729 - "default.handlebars->31->1435",
11730 - "default.handlebars->31->1472",
11731 - "default.handlebars->31->1559",
11732 - "default.handlebars->31->2004",
11733 - "default.handlebars->31->2014",
11734 - "default.handlebars->31->2015",
11735 - "default.handlebars->31->2056",
11736 - "default.handlebars->31->612",
11737 - "default.handlebars->31->613",
11727 + "default.handlebars->31->1090",
11728 + "default.handlebars->31->1100",
11729 + "default.handlebars->31->1437",
11730 + "default.handlebars->31->1474",
11731 + "default.handlebars->31->1561",
11732 + "default.handlebars->31->2006",
11733 + "default.handlebars->31->2016",
11734 + "default.handlebars->31->2017",
11735 + "default.handlebars->31->2058",
11736 + "default.handlebars->31->614",
11737 + "default.handlebars->31->615",
11738 "default.handlebars->31->92",
11739 - "default.handlebars->31->926",
11739 + "default.handlebars->31->928",
11740 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
11741 ]
11742 },
@@ -11775,12 +11775,12 @@
11775 "zh-cht": "桌面",
11776 "xloc": [
11777 "default-mobile.handlebars->11->298",
11778 - "default.handlebars->31->1565",
11779 - "default.handlebars->31->2208",
11780 - "default.handlebars->31->577",
11781 - "default.handlebars->31->747",
11782 - "default.handlebars->31->803",
11783 - "default.handlebars->31->998",
11778 + "default.handlebars->31->1000",
11779 + "default.handlebars->31->1567",
11780 + "default.handlebars->31->2210",
11781 + "default.handlebars->31->579",
11782 + "default.handlebars->31->749",
11783 + "default.handlebars->31->805",
11784 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11785 "default.handlebars->contextMenu->cxdesktop",
11786 "desktop.handlebars->3->23"
@@ -11823,10 +11823,10 @@
11823 "zh-chs": "桌面通知",
11824 "zh-cht": "桌面通知",
11825 "xloc": [
11826 - "default.handlebars->31->1486",
11827 - "default.handlebars->31->2019",
11828 - "default.handlebars->31->2106",
11829 - "default.handlebars->31->663"
11826 + "default.handlebars->31->1488",
11827 + "default.handlebars->31->2021",
11828 + "default.handlebars->31->2108",
11829 + "default.handlebars->31->665"
11830 ]
11831 },
11832 {
@@ -11846,10 +11846,10 @@
11846 "zh-chs": "桌面提示",
11847 "zh-cht": "桌面提示",
11848 "xloc": [
11849 - "default.handlebars->31->1485",
11850 - "default.handlebars->31->2018",
11851 - "default.handlebars->31->2105",
11852 - "default.handlebars->31->662"
11849 + "default.handlebars->31->1487",
11850 + "default.handlebars->31->2020",
11851 + "default.handlebars->31->2107",
11852 + "default.handlebars->31->664"
11853 ]
11854 },
11855 {
@@ -11869,10 +11869,10 @@
11869 "zh-chs": "桌面提示+工具栏",
11870 "zh-cht": "桌面提示+工具欄",
11871 "xloc": [
11872 - "default.handlebars->31->1483",
11873 - "default.handlebars->31->2016",
11874 - "default.handlebars->31->2103",
11875 - "default.handlebars->31->660"
11872 + "default.handlebars->31->1485",
11873 + "default.handlebars->31->2018",
11874 + "default.handlebars->31->2105",
11875 + "default.handlebars->31->662"
11876 ]
11877 },
11878 {
@@ -11934,10 +11934,10 @@
11934 "zh-chs": "桌面工具栏",
11935 "zh-cht": "桌面工具欄",
11936 "xloc": [
11937 - "default.handlebars->31->1484",
11938 - "default.handlebars->31->2017",
11939 - "default.handlebars->31->2104",
11940 - "default.handlebars->31->661"
11937 + "default.handlebars->31->1486",
11938 + "default.handlebars->31->2019",
11939 + "default.handlebars->31->2106",
11940 + "default.handlebars->31->663"
11941 ]
11942 },
11943 {
@@ -11946,7 +11946,7 @@
11946 "fr": "Bureau en visualisation seulement",
11947 "de": "Desktop, nur Ansehen",
11948 "xloc": [
11949 - "default.handlebars->31->806"
11949 + "default.handlebars->31->808"
11950 ]
11951 },
11952 {
@@ -11966,7 +11966,7 @@
11966 "zh-chs": "桌面时段",
11967 "zh-cht": "桌面時段",
11968 "xloc": [
11969 - "default.handlebars->31->997"
11969 + "default.handlebars->31->999"
11970 ]
11971 },
11972 {
@@ -12060,10 +12060,10 @@
12060 "zh-cht": "裝置",
12061 "xloc": [
12062 "default-mobile.handlebars->11->437",
12063 - "default.handlebars->31->1083",
12064 - "default.handlebars->31->1588",
12063 + "default.handlebars->31->1085",
12064 + "default.handlebars->31->1590",
12065 "default.handlebars->31->201",
12066 - "default.handlebars->31->2178",
12066 + "default.handlebars->31->2180",
12067 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12068 ]
12069 },
@@ -12086,7 +12086,7 @@
12086 "xloc": [
12087 "default-mobile.handlebars->11->309",
12088 "default-mobile.handlebars->11->312",
12089 - "default.handlebars->31->845"
12089 + "default.handlebars->31->847"
12090 ]
12091 },
12092 {
@@ -12128,15 +12128,15 @@
12128 "xloc": [
12129 "agent-translations.json",
12130 "default-mobile.handlebars->11->592",
12131 - "default.handlebars->31->1583",
12132 - "default.handlebars->31->1586",
12133 - "default.handlebars->31->1587",
12134 - "default.handlebars->31->1867",
12135 - "default.handlebars->31->2042",
12136 - "default.handlebars->31->2048",
12137 - "default.handlebars->31->2166",
12138 - "default.handlebars->31->2217",
12139 - "default.handlebars->31->2236"
12131 + "default.handlebars->31->1585",
12132 + "default.handlebars->31->1588",
12133 + "default.handlebars->31->1589",
12134 + "default.handlebars->31->1869",
12135 + "default.handlebars->31->2044",
12136 + "default.handlebars->31->2050",
12137 + "default.handlebars->31->2168",
12138 + "default.handlebars->31->2219",
12139 + "default.handlebars->31->2238"
12140 ]
12141 },
12142 {
@@ -12157,7 +12157,7 @@
12157 "zh-cht": "裝置群用戶",
12158 "xloc": [
12159 "default-mobile.handlebars->11->581",
12160 - "default.handlebars->31->1653"
12160 + "default.handlebars->31->1655"
12161 ]
12162 },
12163 {
@@ -12178,11 +12178,11 @@
12178 "zh-cht": "裝置群",
12179 "xloc": [
12180 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
12181 - "default.handlebars->31->1883",
12182 - "default.handlebars->31->1989",
12183 - "default.handlebars->31->2029",
12184 - "default.handlebars->31->2100",
12185 - "default.handlebars->31->2287",
12181 + "default.handlebars->31->1885",
12182 + "default.handlebars->31->1991",
12183 + "default.handlebars->31->2031",
12184 + "default.handlebars->31->2102",
12185 + "default.handlebars->31->2289",
12186 "default.handlebars->container->column_l->p2->p2info->7"
12187 ]
12188 },
@@ -12203,7 +12203,7 @@
12203 "zh-chs": "设备信息导出",
12204 "zh-cht": "裝置訊息輸出",
12205 "xloc": [
12206 - "default.handlebars->31->536"
12206 + "default.handlebars->31->538"
12207 ]
12208 },
12209 {
@@ -12223,7 +12223,7 @@
12223 "zh-chs": "设备位置",
12224 "zh-cht": "裝置位置",
12225 "xloc": [
12226 - "default.handlebars->31->889"
12226 + "default.handlebars->31->891"
12227 ]
12228 },
12229 {
@@ -12243,7 +12243,7 @@
12243 "zh-chs": "设备消息",
12244 "zh-cht": "裝置訊息",
12245 "xloc": [
12246 - "default.handlebars->31->798"
12246 + "default.handlebars->31->800"
12247 ]
12248 },
12249 {
@@ -12264,9 +12264,9 @@
12264 "zh-cht": "裝置名稱",
12265 "xloc": [
12266 "default-mobile.handlebars->11->326",
12267 - "default.handlebars->31->2216",
12268 - "default.handlebars->31->323",
12269 - "default.handlebars->31->924",
12267 + "default.handlebars->31->2218",
12268 + "default.handlebars->31->324",
12269 + "default.handlebars->31->926",
12270 "player.handlebars->3->9"
12271 ]
12272 },
@@ -12287,8 +12287,8 @@
12287 "zh-chs": "设备通知",
12288 "zh-cht": "裝置通知",
12289 "xloc": [
12290 - "default.handlebars->31->518",
12291 - "default.handlebars->31->800"
12290 + "default.handlebars->31->519",
12291 + "default.handlebars->31->802"
12292 ]
12293 },
12294 {
@@ -12334,7 +12334,7 @@
12334 "zh-chs": "设备共享链接",
12335 "zh-cht": "設備共享鏈接",
12336 "xloc": [
12337 - "default.handlebars->31->743"
12337 + "default.handlebars->31->745"
12338 ]
12339 },
12340 {
@@ -12362,7 +12362,7 @@
12362 "nl": "Kolomweergave apparaat",
12363 "de": "Aufteilen der Geräteansicht",
12364 "xloc": [
12365 - "default.handlebars->31->235"
12365 + "default.handlebars->31->236"
12366 ]
12367 },
12368 {
@@ -12382,8 +12382,8 @@
12382 "zh-chs": "设备连接。",
12383 "zh-cht": "裝置連接。",
12384 "xloc": [
12385 - "default.handlebars->31->1403",
12386 - "default.handlebars->31->1674"
12385 + "default.handlebars->31->1405",
12386 + "default.handlebars->31->1676"
12387 ]
12388 },
12389 {
@@ -12403,8 +12403,8 @@
12403 "zh-chs": "设备断开连接。",
12404 "zh-cht": "裝置斷開連接。",
12405 "xloc": [
12406 - "default.handlebars->31->1404",
12407 - "default.handlebars->31->1675"
12406 + "default.handlebars->31->1406",
12407 + "default.handlebars->31->1677"
12408 ]
12409 },
12410 {
@@ -12424,7 +12424,7 @@
12424 "zh-chs": "创建的设备组:{0}",
12425 "zh-cht": "設備組已創建:{0}",
12426 "xloc": [
12427 - "default.handlebars->31->1822"
12427 + "default.handlebars->31->1824"
12428 ]
12429 },
12430 {
@@ -12444,7 +12444,7 @@
12444 "zh-chs": "设备组已删除:{0}",
12445 "zh-cht": "設備組已刪除:{0}",
12446 "xloc": [
12447 - "default.handlebars->31->1823"
12447 + "default.handlebars->31->1825"
12448 ]
12449 },
12450 {
@@ -12464,7 +12464,7 @@
12464 "zh-chs": "设备组成员身份已更改:{0}",
12465 "zh-cht": "設備組成員身份已更改:{0}",
12466 "xloc": [
12467 - "default.handlebars->31->1824"
12467 + "default.handlebars->31->1826"
12468 ]
12469 },
12470 {
@@ -12485,7 +12485,7 @@
12485 "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12486 "xloc": [
12487 "default-mobile.handlebars->11->310",
12488 - "default.handlebars->31->795"
12488 + "default.handlebars->31->797"
12489 ]
12490 },
12491 {
@@ -12505,7 +12505,7 @@
12505 "zh-chs": "设备组通知已更改",
12506 "zh-cht": "設備組通知已更改",
12507 "xloc": [
12508 - "default.handlebars->31->1819"
12508 + "default.handlebars->31->1821"
12509 ]
12510 },
12511 {
@@ -12525,7 +12525,7 @@
12525 "zh-chs": "未删除的设备组:{0}",
12526 "zh-cht": "未刪除的設備組:{0}",
12527 "xloc": [
12528 - "default.handlebars->31->1802"
12528 + "default.handlebars->31->1804"
12529 ]
12530 },
12531 {
@@ -12547,8 +12547,8 @@
12547 "xloc": [
12548 "default-mobile.handlebars->11->191",
12549 "default-mobile.handlebars->11->247",
12550 - "default.handlebars->31->267",
12551 - "default.handlebars->31->598"
12550 + "default.handlebars->31->268",
12551 + "default.handlebars->31->600"
12552 ]
12553 },
12554 {
@@ -12568,7 +12568,7 @@
12568 "zh-chs": "检测到设备,但无法获得电源状态。",
12569 "zh-cht": "檢測到裝置,但無法獲得電源狀態。",
12570 "xloc": [
12571 - "default.handlebars->31->454"
12571 + "default.handlebars->31->455"
12572 ]
12573 },
12574 {
@@ -12589,7 +12589,7 @@
12589 "zh-cht": "裝置正在休眠(S4)",
12590 "xloc": [
12591 "default-mobile.handlebars->11->231",
12592 - "default.handlebars->31->460"
12592 + "default.handlebars->31->461"
12593 ]
12594 },
12595 {
@@ -12610,7 +12610,7 @@
12610 "zh-cht": "裝置處於深度睡眠狀態(S3)",
12611 "xloc": [
12612 "default-mobile.handlebars->11->230",
12613 - "default.handlebars->31->459"
12613 + "default.handlebars->31->460"
12614 ]
12615 },
12616 {
@@ -12630,7 +12630,7 @@
12630 "zh-chs": "设备处于深度睡眠状态(S3)。",
12631 "zh-cht": "裝置處於深度睡眠狀態(S3)。",
12632 "xloc": [
12633 - "default.handlebars->31->448"
12633 + "default.handlebars->31->449"
12634 ]
12635 },
12636 {
@@ -12650,7 +12650,7 @@
12650 "zh-chs": "设备处于休眠状态(S4)。",
12651 "zh-cht": "裝置處於休眠狀態(S4)。",
12652 "xloc": [
12653 - "default.handlebars->31->450"
12653 + "default.handlebars->31->451"
12654 ]
12655 },
12656 {
@@ -12670,7 +12670,7 @@
12670 "zh-chs": "设备处于关机状态(S5)。",
12671 "zh-cht": "裝置處於關機狀態(S5)。",
12672 "xloc": [
12673 - "default.handlebars->31->452"
12673 + "default.handlebars->31->453"
12674 ]
12675 },
12676 {
@@ -12691,7 +12691,7 @@
12691 "zh-cht": "裝置處於睡眠狀態(S1)",
12692 "xloc": [
12693 "default-mobile.handlebars->11->228",
12694 - "default.handlebars->31->457"
12694 + "default.handlebars->31->458"
12695 ]
12696 },
12697 {
@@ -12711,7 +12711,7 @@
12711 "zh-chs": "设备处于睡眠状态(S1)。",
12712 "zh-cht": "裝置處於睡眠狀態(S1)。",
12713 "xloc": [
12714 - "default.handlebars->31->444"
12714 + "default.handlebars->31->445"
12715 ]
12716 },
12717 {
@@ -12732,7 +12732,7 @@
12732 "zh-cht": "裝置處於睡眠狀態(S2)",
12733 "xloc": [
12734 "default-mobile.handlebars->11->229",
12735 - "default.handlebars->31->458"
12735 + "default.handlebars->31->459"
12736 ]
12737 },
12738 {
@@ -12752,7 +12752,7 @@
12752 "zh-chs": "设备处于睡眠状态(S2)。",
12753 "zh-cht": "裝置處於睡眠狀態(S2)。",
12754 "xloc": [
12755 - "default.handlebars->31->446"
12755 + "default.handlebars->31->447"
12756 ]
12757 },
12758 {
@@ -12773,7 +12773,7 @@
12773 "zh-cht": "裝置處於軟關機狀態(S5)",
12774 "xloc": [
12775 "default-mobile.handlebars->11->232",
12776 - "default.handlebars->31->461"
12776 + "default.handlebars->31->462"
12777 ]
12778 },
12779 {
@@ -12795,8 +12795,8 @@
12795 "xloc": [
12796 "default-mobile.handlebars->11->190",
12797 "default-mobile.handlebars->11->246",
12798 - "default.handlebars->31->266",
12799 - "default.handlebars->31->597"
12798 + "default.handlebars->31->267",
12799 + "default.handlebars->31->599"
12800 ]
12801 },
12802 {
@@ -12817,7 +12817,7 @@
12817 "zh-cht": "裝置已連接電源",
12818 "xloc": [
12819 "default-mobile.handlebars->11->227",
12820 - "default.handlebars->31->456"
12820 + "default.handlebars->31->457"
12821 ]
12822 },
12823 {
@@ -12837,7 +12837,7 @@
12837 "zh-chs": "设备已连接电源。",
12838 "zh-cht": "裝置已連接電源。",
12839 "xloc": [
12840 - "default.handlebars->31->442"
12840 + "default.handlebars->31->443"
12841 ]
12842 },
12843 {
@@ -12858,7 +12858,7 @@
12858 "zh-cht": "裝置存在,但無法確定電源狀態",
12859 "xloc": [
12860 "default-mobile.handlebars->11->233",
12861 - "default.handlebars->31->462"
12861 + "default.handlebars->31->463"
12862 ]
12863 },
12864 {
@@ -12878,7 +12878,7 @@
12878 "zh-chs": "设备名称",
12879 "zh-cht": "裝置名稱",
12880 "xloc": [
12881 - "default.handlebars->31->589"
12881 + "default.handlebars->31->591"
12882 ]
12883 },
12884 {
@@ -12898,7 +12898,7 @@
12898 "zh-chs": "设备通知",
12899 "zh-cht": "設備通知",
12900 "xloc": [
12901 - "default.handlebars->31->484"
12901 + "default.handlebars->31->485"
12902 ]
12903 },
12904 {
@@ -12907,7 +12907,7 @@
12907 "fr": "L'appareil a demandé l'activation d'Intel (R) AMT ACM TLS, nom de domaine complet: {0} ",
12908 "de": "Gerät angefordert Intel(R) AMT ACM TLS activation, FQDN: {0}",
12909 "xloc": [
12910 - "default.handlebars->31->1857"
12910 + "default.handlebars->31->1859"
12911 ]
12912 },
12913 {
@@ -12927,7 +12927,7 @@
12927 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12928 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12929 "xloc": [
12930 - "default.handlebars->31->1804"
12930 + "default.handlebars->31->1806"
12931 ]
12932 },
12933 {
@@ -12964,8 +12964,8 @@
12964 "zh-chs": "设备",
12965 "zh-cht": "裝置",
12966 "xloc": [
12967 - "default.handlebars->31->1990",
12968 - "default.handlebars->31->2030"
12967 + "default.handlebars->31->1992",
12968 + "default.handlebars->31->2032"
12969 ]
12970 },
12971 {
@@ -12986,7 +12986,7 @@
12986 "zh-cht": "已禁用",
12987 "xloc": [
12988 "default-mobile.handlebars->11->422",
12989 - "default.handlebars->31->656"
12989 + "default.handlebars->31->658"
12990 ]
12991 },
12992 {
@@ -13006,7 +13006,7 @@
13006 "zh-chs": "禁用的电子邮件两因素身份验证",
13007 "zh-cht": "禁用的電子郵件兩因素身份驗證",
13008 "xloc": [
13009 - "default.handlebars->31->1835"
13009 + "default.handlebars->31->1837"
13010 ]
13011 },
13012 {
@@ -13029,8 +13029,8 @@
13029 "agent-translations.json",
13030 "default-mobile.handlebars->11->370",
13031 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
13032 - "default.handlebars->31->1016",
13033 - "default.handlebars->31->1496",
13032 + "default.handlebars->31->1018",
13033 + "default.handlebars->31->1498",
13034 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
13035 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
13036 "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -13078,10 +13078,10 @@
13078 "default-mobile.handlebars->11->1",
13079 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
13080 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
13081 - "default.handlebars->31->258",
13082 - "default.handlebars->31->261",
13083 - "default.handlebars->31->278",
13084 - "default.handlebars->31->308",
13081 + "default.handlebars->31->259",
13082 + "default.handlebars->31->262",
13083 + "default.handlebars->31->279",
13084 + "default.handlebars->31->309",
13085 "default.handlebars->31->8",
13086 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
13087 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -13110,7 +13110,7 @@
13110 "zh-chs": "解雇",
13111 "zh-cht": "解僱",
13112 "xloc": [
13113 - "default.handlebars->31->282"
13113 + "default.handlebars->31->283"
13114 ]
13115 },
13116 {
@@ -13130,7 +13130,7 @@
13130 "zh-chs": "在远程设备上显示一个消息框。",
13131 "zh-cht": "在遠程裝置上顯示一個訊息框。",
13132 "xloc": [
13133 - "default.handlebars->31->799"
13133 + "default.handlebars->31->801"
13134 ]
13135 },
13136 {
@@ -13170,7 +13170,7 @@
13170 "zh-chs": "在远程设备上显示短信",
13171 "zh-cht": "在遠程裝置上顯示短信",
13172 "xloc": [
13173 - "default.handlebars->31->693"
13173 + "default.handlebars->31->695"
13174 ]
13175 },
13176 {
@@ -13190,7 +13190,7 @@
13190 "zh-chs": "显示设备组名称",
13191 "zh-cht": "顯示裝置群名稱",
13192 "xloc": [
13193 - "default.handlebars->31->1402"
13193 + "default.handlebars->31->1404"
13194 ]
13195 },
13196 {
@@ -13210,7 +13210,7 @@
13210 "zh-chs": "显示名称",
13211 "zh-cht": "顯示名稱",
13212 "xloc": [
13213 - "default.handlebars->31->983"
13213 + "default.handlebars->31->985"
13214 ]
13215 },
13216 {
@@ -13230,7 +13230,7 @@
13230 "zh-chs": "显示公共连结",
13231 "zh-cht": "顯示公共鏈結",
13232 "xloc": [
13233 - "default.handlebars->31->1705"
13233 + "default.handlebars->31->1707"
13234 ]
13235 },
13236 {
@@ -13238,7 +13238,7 @@
13238 "nl": "Scherm {0}",
13239 "fr": "Affichage {0}",
13240 "xloc": [
13241 - "default.handlebars->31->1000"
13241 + "default.handlebars->31->1002"
13242 ]
13243 },
13244 {
@@ -13258,7 +13258,7 @@
13258 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13259 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13260 "xloc": [
13261 - "default.handlebars->31->1764"
13261 + "default.handlebars->31->1766"
13262 ]
13263 },
13264 {
@@ -13278,7 +13278,7 @@
13278 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13279 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13280 "xloc": [
13281 - "default.handlebars->31->1772"
13281 + "default.handlebars->31->1774"
13282 ]
13283 },
13284 {
@@ -13298,8 +13298,8 @@
13298 "zh-chs": "什么都不做",
13299 "zh-cht": "什麼都不做",
13300 "xloc": [
13301 - "default.handlebars->31->1543",
13302 - "default.handlebars->31->1547"
13301 + "default.handlebars->31->1545",
13302 + "default.handlebars->31->1549"
13303 ]
13304 },
13305 {
@@ -13319,10 +13319,10 @@
13319 "zh-chs": "域",
13320 "zh-cht": "域",
13321 "xloc": [
13322 - "default.handlebars->31->1954",
13323 - "default.handlebars->31->2002",
13324 - "default.handlebars->31->2011",
13325 - "default.handlebars->31->2079",
13322 + "default.handlebars->31->1956",
13323 + "default.handlebars->31->2004",
13324 + "default.handlebars->31->2013",
13325 + "default.handlebars->31->2081",
13326 "mstsc.handlebars->main->1->3->1->2->1->0",
13327 "mstsc.handlebars->main->1->3->1->2->3"
13328 ]
@@ -13344,7 +13344,7 @@
13344 "zh-chs": "请勿更改,如果设置请保留CCM",
13345 "zh-cht": "請勿更改,如果設置請保留CCM",
13346 "xloc": [
13347 - "default.handlebars->31->1539"
13347 + "default.handlebars->31->1541"
13348 ]
13349 },
13350 {
@@ -13381,7 +13381,7 @@
13381 "zh-chs": "不要连接到服务器",
13382 "zh-cht": "不要連接到伺服器",
13383 "xloc": [
13384 - "default.handlebars->31->1548"
13384 + "default.handlebars->31->1550"
13385 ]
13386 },
13387 {
@@ -13447,7 +13447,7 @@
13447 "de": "runter",
13448 "xloc": [
13449 "default-mobile.handlebars->11->354",
13450 - "default.handlebars->31->964"
13450 + "default.handlebars->31->966"
13451 ]
13452 },
13453 {
@@ -13511,7 +13511,7 @@
13511 "zh-cht": "下載檔案",
13512 "xloc": [
13513 "default-mobile.handlebars->11->400",
13514 - "default.handlebars->31->1055"
13514 + "default.handlebars->31->1057"
13515 ]
13516 },
13517 {
@@ -13531,7 +13531,7 @@
13531 "zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。",
13532 "zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
13533 "xloc": [
13534 - "default.handlebars->31->256"
13534 + "default.handlebars->31->257"
13535 ]
13536 },
13537 {
@@ -13551,7 +13551,7 @@
13551 "zh-chs": "下载MeshCmd",
13552 "zh-cht": "下載MeshCmd",
13553 "xloc": [
13554 - "default.handlebars->31->914"
13554 + "default.handlebars->31->916"
13555 ]
13556 },
13557 {
@@ -13571,7 +13571,7 @@
13571 "zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。",
13572 "zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。",
13573 "xloc": [
13574 - "default.handlebars->31->254"
13574 + "default.handlebars->31->255"
13575 ]
13576 },
13577 {
@@ -13611,7 +13611,7 @@
13611 "zh-chs": "下载报告",
13612 "zh-cht": "下載報告",
13613 "xloc": [
13614 - "default.handlebars->31->1872",
13614 + "default.handlebars->31->1874",
13615 "default.handlebars->container->column_l->p3->3->1->0->3"
13616 ]
13617 },
@@ -13632,7 +13632,7 @@
13632 "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
13633 "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
13634 "xloc": [
13635 - "default.handlebars->31->907"
13635 + "default.handlebars->31->909"
13636 ]
13637 },
13638 {
@@ -13712,7 +13712,7 @@
13712 "zh-chs": "下载电源事件",
13713 "zh-cht": "下載電源事件",
13714 "xloc": [
13715 - "default.handlebars->31->863"
13715 + "default.handlebars->31->865"
13716 ]
13717 },
13718 {
@@ -13801,7 +13801,7 @@
13801 "zh-chs": "使用以下一种档案格式下载设备列表。",
13802 "zh-cht": "使用以下一種檔案格式下載裝置列表。",
13803 "xloc": [
13804 - "default.handlebars->31->531"
13804 + "default.handlebars->31->532"
13805 ]
13806 },
13807 {
@@ -13821,7 +13821,7 @@
13821 "zh-chs": "使用以下一种档案格式下载事件列表。",
13822 "zh-cht": "使用以下一種檔案格式下載事件列表。",
13823 "xloc": [
13824 - "default.handlebars->31->1873"
13824 + "default.handlebars->31->1875"
13825 ]
13826 },
13827 {
@@ -13841,7 +13841,7 @@
13841 "zh-chs": "使用以下一种档案格式下载用户列表。",
13842 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
13843 "xloc": [
13844 - "default.handlebars->31->1938"
13844 + "default.handlebars->31->1940"
13845 ]
13846 },
13847 {
@@ -13922,7 +13922,7 @@
13922 "zh-chs": "下载:“{0}”",
13923 "zh-cht": "下載:“{0}”",
13924 "xloc": [
13925 - "default.handlebars->31->1795"
13925 + "default.handlebars->31->1797"
13926 ]
13927 },
13928 {
@@ -13931,7 +13931,7 @@
13931 "fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
13932 "de": "Download: \\\"{0}\\\", Größe: {1}",
13933 "xloc": [
13934 - "default.handlebars->31->1852"
13934 + "default.handlebars->31->1854"
13935 ]
13936 },
13937 {
@@ -13971,7 +13971,7 @@
13971 "zh-chs": "代理重复",
13972 "zh-cht": "代理重複",
13973 "xloc": [
13974 - "default.handlebars->31->2283"
13974 + "default.handlebars->31->2285"
13975 ]
13976 },
13977 {
@@ -14011,7 +14011,7 @@
14011 "zh-chs": "复制用户组",
14012 "zh-cht": "複製用戶群",
14013 "xloc": [
14014 - "default.handlebars->31->2006"
14014 + "default.handlebars->31->2008"
14015 ]
14016 },
14017 {
@@ -14048,8 +14048,8 @@
14048 "zh-chs": "持续时间",
14049 "zh-cht": "持續時間",
14050 "xloc": [
14051 - "default.handlebars->31->2202",
14052 - "default.handlebars->31->2222",
14051 + "default.handlebars->31->2204",
14052 + "default.handlebars->31->2224",
14053 "player.handlebars->3->2"
14054 ]
14055 },
@@ -14087,7 +14087,7 @@
14087 "zh-chs": "荷兰文(比利时)",
14088 "zh-cht": "荷蘭文(比利時)",
14089 "xloc": [
14090 - "default.handlebars->31->1242"
14090 + "default.handlebars->31->1244"
14091 ]
14092 },
14093 {
@@ -14107,7 +14107,7 @@
14107 "zh-chs": "荷兰文(标准)",
14108 "zh-cht": "荷蘭文(標準)",
14109 "xloc": [
14110 - "default.handlebars->31->1241"
14110 + "default.handlebars->31->1243"
14111 ]
14112 },
14113 {
@@ -14396,7 +14396,7 @@
14396 "zh-cht": "編輯裝置",
14397 "xloc": [
14398 "default-mobile.handlebars->11->331",
14399 - "default.handlebars->31->929"
14399 + "default.handlebars->31->931"
14400 ]
14401 },
14402 {
@@ -14419,10 +14419,10 @@
14419 "default-mobile.handlebars->11->532",
14420 "default-mobile.handlebars->11->538",
14421 "default-mobile.handlebars->11->558",
14422 - "default.handlebars->31->1560",
14423 - "default.handlebars->31->1592",
14424 - "default.handlebars->31->1617",
14425 - "default.handlebars->31->1629"
14422 + "default.handlebars->31->1562",
14423 + "default.handlebars->31->1594",
14424 + "default.handlebars->31->1619",
14425 + "default.handlebars->31->1631"
14426 ]
14427 },
14428 {
@@ -14442,7 +14442,7 @@
14442 "zh-chs": "编辑设备组功能",
14443 "zh-cht": "編輯裝置群功能",
14444 "xloc": [
14445 - "default.handlebars->31->1578"
14445 + "default.handlebars->31->1580"
14446 ]
14447 },
14448 {
@@ -14462,8 +14462,8 @@
14462 "zh-chs": "编辑设备组权限",
14463 "zh-cht": "編輯裝置群權限",
14464 "xloc": [
14465 - "default.handlebars->31->1614",
14466 - "default.handlebars->31->1626"
14465 + "default.handlebars->31->1616",
14466 + "default.handlebars->31->1628"
14467 ]
14468 },
14469 {
@@ -14483,7 +14483,7 @@
14483 "zh-chs": "编辑设备组用户同意",
14484 "zh-cht": "編輯裝置群用戶同意",
14485 "xloc": [
14486 - "default.handlebars->31->1561"
14486 + "default.handlebars->31->1563"
14487 ]
14488 },
14489 {
@@ -14504,7 +14504,7 @@
14504 "zh-cht": "編輯裝置筆記",
14505 "xloc": [
14506 "default-mobile.handlebars->11->550",
14507 - "default.handlebars->31->1606"
14507 + "default.handlebars->31->1608"
14508 ]
14509 },
14510 {
@@ -14524,8 +14524,8 @@
14524 "zh-chs": "编辑设备权限",
14525 "zh-cht": "編輯裝置權限",
14526 "xloc": [
14527 - "default.handlebars->31->1619",
14528 - "default.handlebars->31->1621"
14527 + "default.handlebars->31->1621",
14528 + "default.handlebars->31->1623"
14529 ]
14530 },
14531 {
@@ -14545,7 +14545,7 @@
14545 "zh-chs": "编辑设备标签",
14546 "zh-cht": "編輯裝置標籤",
14547 "xloc": [
14548 - "default.handlebars->31->513"
14548 + "default.handlebars->31->514"
14549 ]
14550 },
14551 {
@@ -14565,7 +14565,7 @@
14565 "zh-chs": "编辑设备用户同意",
14566 "zh-cht": "編輯裝置用戶同意",
14567 "xloc": [
14568 - "default.handlebars->31->1563"
14568 + "default.handlebars->31->1565"
14569 ]
14570 },
14571 {
@@ -14585,7 +14585,7 @@
14585 "zh-chs": "编辑群组",
14586 "zh-cht": "編輯群組",
14587 "xloc": [
14588 - "default.handlebars->31->772"
14588 + "default.handlebars->31->774"
14589 ]
14590 },
14591 {
@@ -14609,10 +14609,10 @@
14609 "default-mobile.handlebars->11->275",
14610 "default-mobile.handlebars->11->276",
14611 "default-mobile.handlebars->11->321",
14612 - "default.handlebars->31->627",
14613 - "default.handlebars->31->632",
14614 - "default.handlebars->31->633",
14615 - "default.handlebars->31->870"
14612 + "default.handlebars->31->629",
14613 + "default.handlebars->31->634",
14614 + "default.handlebars->31->635",
14615 + "default.handlebars->31->872"
14616 ]
14617 },
14618 {
@@ -14633,7 +14633,7 @@
14633 "zh-cht": "編輯筆記",
14634 "xloc": [
14635 "default-mobile.handlebars->11->565",
14636 - "default.handlebars->31->1636"
14636 + "default.handlebars->31->1638"
14637 ]
14638 },
14639 {
@@ -14653,7 +14653,7 @@
14653 "zh-chs": "编辑用户同意",
14654 "zh-cht": "編輯用戶同意",
14655 "xloc": [
14656 - "default.handlebars->31->1562"
14656 + "default.handlebars->31->1564"
14657 ]
14658 },
14659 {
@@ -14673,7 +14673,7 @@
14673 "zh-chs": "编辑用户设备组权限",
14674 "zh-cht": "編輯用戶裝置群權限",
14675 "xloc": [
14676 - "default.handlebars->31->1627"
14676 + "default.handlebars->31->1629"
14677 ]
14678 },
14679 {
@@ -14693,7 +14693,7 @@
14693 "zh-chs": "编辑用户设备权限",
14694 "zh-cht": "編輯用戶裝置權限",
14695 "xloc": [
14696 - "default.handlebars->31->1622"
14696 + "default.handlebars->31->1624"
14697 ]
14698 },
14699 {
@@ -14713,7 +14713,7 @@
14713 "zh-chs": "编辑用户组",
14714 "zh-cht": "編輯用戶群",
14715 "xloc": [
14716 - "default.handlebars->31->2057"
14716 + "default.handlebars->31->2059"
14717 ]
14718 },
14719 {
@@ -14733,7 +14733,7 @@
14733 "zh-chs": "编辑用户组设备权限",
14734 "zh-cht": "編輯用戶群裝置權限",
14735 "xloc": [
14736 - "default.handlebars->31->1624"
14736 + "default.handlebars->31->1626"
14737 ]
14738 },
14739 {
@@ -14753,7 +14753,7 @@
14753 "zh-chs": "编辑用户组用户同意",
14754 "zh-cht": "編輯用戶組用戶同意",
14755 "xloc": [
14756 - "default.handlebars->31->1564"
14756 + "default.handlebars->31->1566"
14757 ]
14758 },
14759 {
@@ -14794,7 +14794,7 @@
14794 "zh-chs": "编辑标签",
14795 "zh-cht": "編輯標籤",
14796 "xloc": [
14797 - "default.handlebars->31->485"
14797 + "default.handlebars->31->486"
14798 ]
14799 },
14800 {
@@ -14835,12 +14835,12 @@
14835 "zh-cht": "電郵",
14836 "xloc": [
14837 "default-mobile.handlebars->11->101",
14838 - "default.handlebars->31->1956",
14839 - "default.handlebars->31->2083",
14838 + "default.handlebars->31->1958",
14839 "default.handlebars->31->2085",
14841 - "default.handlebars->31->2125",
14842 - "default.handlebars->31->2145",
14843 - "default.handlebars->31->356",
14840 + "default.handlebars->31->2087",
14841 + "default.handlebars->31->2127",
14842 + "default.handlebars->31->2147",
14843 + "default.handlebars->31->357",
14844 "login-mobile.handlebars->5->42",
14845 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
14846 "login.handlebars->5->44",
@@ -14872,7 +14872,7 @@
14872 "zh-cht": "電郵地址變更",
14873 "xloc": [
14874 "default-mobile.handlebars->11->102",
14875 - "default.handlebars->31->1411"
14875 + "default.handlebars->31->1413"
14876 ]
14877 },
14878 {
@@ -14893,7 +14893,7 @@
14893 "zh-cht": "電郵認證",
14894 "xloc": [
14895 "default-mobile.handlebars->11->91",
14896 - "default.handlebars->31->1179"
14896 + "default.handlebars->31->1181"
14897 ]
14898 },
14899 {
@@ -14953,7 +14953,7 @@
14953 "zh-cht": "電郵驗證",
14954 "xloc": [
14955 "default-mobile.handlebars->11->100",
14956 - "default.handlebars->31->1409"
14956 + "default.handlebars->31->1411"
14957 ]
14958 },
14959 {
@@ -14973,7 +14973,7 @@
14973 "zh-chs": "电邮邀请",
14974 "zh-cht": "電郵邀請",
14975 "xloc": [
14976 - "default.handlebars->31->353"
14976 + "default.handlebars->31->354"
14977 ]
14978 },
14979 {
@@ -14993,7 +14993,7 @@
14993 "zh-chs": "电邮未验证",
14994 "zh-cht": "電郵未驗證",
14995 "xloc": [
14996 - "default.handlebars->31->1902"
14996 + "default.handlebars->31->1904"
14997 ]
14998 },
14999 {
@@ -15013,8 +15013,8 @@
15013 "zh-chs": "电子邮件已验证",
15014 "zh-cht": "電子郵件已驗證",
15015 "xloc": [
15016 - "default.handlebars->31->1903",
15017 - "default.handlebars->31->2077"
15016 + "default.handlebars->31->1905",
15017 + "default.handlebars->31->2079"
15018 ]
15019 },
15020 {
@@ -15034,7 +15034,7 @@
15034 "zh-chs": "电邮已验证。",
15035 "zh-cht": "電郵已驗證。",
15036 "xloc": [
15037 - "default.handlebars->31->1962"
15037 + "default.handlebars->31->1964"
15038 ]
15039 },
15040 {
@@ -15054,7 +15054,7 @@
15054 "zh-chs": "电邮未验证",
15055 "zh-cht": "電郵未驗證",
15056 "xloc": [
15057 - "default.handlebars->31->2078"
15057 + "default.handlebars->31->2080"
15058 ]
15059 },
15060 {
@@ -15075,7 +15075,7 @@
15075 "zh-cht": "電郵已發送。",
15076 "xloc": [
15077 "default-mobile.handlebars->11->607",
15078 - "default.handlebars->31->2251",
15078 + "default.handlebars->31->2253",
15079 "login-mobile.handlebars->5->2",
15080 "login.handlebars->5->2",
15081 "login2.handlebars->7->3"
@@ -15120,7 +15120,7 @@
15120 "zh-chs": "已通过电邮验证,并且需要重置密码。",
15121 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
15122 "xloc": [
15123 - "default.handlebars->31->1963"
15123 + "default.handlebars->31->1965"
15124 ]
15125 },
15126 {
@@ -15145,7 +15145,7 @@
15145 "nl": "Email/SMS/Push verkeer",
15146 "de": "Email/SMS/Push-Verkehr",
15147 "xloc": [
15148 - "default.handlebars->31->2327"
15148 + "default.handlebars->31->2329"
15149 ]
15150 },
15151 {
@@ -15191,7 +15191,7 @@
15191 "zh-chs": "启用邀请代码",
15192 "zh-cht": "啟用邀請代碼",
15193 "xloc": [
15194 - "default.handlebars->31->1659"
15194 + "default.handlebars->31->1661"
15195 ]
15196 },
15197 {
@@ -15232,7 +15232,7 @@
15232 "zh-cht": "啟用電郵二因子鑑別。",
15233 "xloc": [
15234 "default-mobile.handlebars->11->93",
15235 - "default.handlebars->31->1181"
15235 + "default.handlebars->31->1183"
15236 ]
15237 },
15238 {
@@ -15272,7 +15272,7 @@
15272 "zh-chs": "已启用",
15273 "zh-cht": "已啟用",
15274 "xloc": [
15275 - "default.handlebars->31->2224"
15275 + "default.handlebars->31->2226"
15276 ]
15277 },
15278 {
@@ -15292,7 +15292,7 @@
15292 "zh-chs": "启用电子邮件两因素身份验证",
15293 "zh-cht": "啟用電子郵件兩因素身份驗證",
15294 "xloc": [
15295 - "default.handlebars->31->1834"
15295 + "default.handlebars->31->1836"
15296 ]
15297 },
15298 {
@@ -15322,7 +15322,7 @@
15322 "de": "Ende",
15323 "xloc": [
15324 "default-mobile.handlebars->11->348",
15325 - "default.handlebars->31->958"
15325 + "default.handlebars->31->960"
15326 ]
15327 },
15328 {
@@ -15342,7 +15342,7 @@
15342 "zh-chs": "时间结束",
15343 "zh-cht": "時間結束",
15344 "xloc": [
15345 - "default.handlebars->31->2221"
15345 + "default.handlebars->31->2223"
15346 ]
15347 },
15348 {
@@ -15362,7 +15362,7 @@
15362 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15363 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15364 "xloc": [
15365 - "default.handlebars->31->1757"
15365 + "default.handlebars->31->1759"
15366 ]
15367 },
15368 {
@@ -15382,7 +15382,7 @@
15382 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15383 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15384 "xloc": [
15385 - "default.handlebars->31->1758"
15385 + "default.handlebars->31->1760"
15386 ]
15387 },
15388 {
@@ -15402,7 +15402,7 @@
15402 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15403 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15404 "xloc": [
15405 - "default.handlebars->31->1755"
15405 + "default.handlebars->31->1757"
15406 ]
15407 },
15408 {
@@ -15422,7 +15422,7 @@
15422 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15423 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15424 "xloc": [
15425 - "default.handlebars->31->1756"
15425 + "default.handlebars->31->1758"
15426 ]
15427 },
15428 {
@@ -15442,7 +15442,7 @@
15442 "zh-chs": "英文",
15443 "zh-cht": "英文",
15444 "xloc": [
15445 - "default.handlebars->31->1243"
15445 + "default.handlebars->31->1245"
15446 ]
15447 },
15448 {
@@ -15462,7 +15462,7 @@
15462 "zh-chs": "英文(澳洲)",
15463 "zh-cht": "英文(澳洲)",
15464 "xloc": [
15465 - "default.handlebars->31->1244"
15465 + "default.handlebars->31->1246"
15466 ]
15467 },
15468 {
@@ -15482,7 +15482,7 @@
15482 "zh-chs": "英文(伯利茲)",
15483 "zh-cht": "英文(伯利茲)",
15484 "xloc": [
15485 - "default.handlebars->31->1245"
15485 + "default.handlebars->31->1247"
15486 ]
15487 },
15488 {
@@ -15502,7 +15502,7 @@
15502 "zh-chs": "英文(加拿大)",
15503 "zh-cht": "英文(加拿大)",
15504 "xloc": [
15505 - "default.handlebars->31->1246"
15505 + "default.handlebars->31->1248"
15506 ]
15507 },
15508 {
@@ -15522,7 +15522,7 @@
15522 "zh-chs": "英文(爱尔兰)",
15523 "zh-cht": "英文(愛爾蘭)",
15524 "xloc": [
15525 - "default.handlebars->31->1247"
15525 + "default.handlebars->31->1249"
15526 ]
15527 },
15528 {
@@ -15542,7 +15542,7 @@
15542 "zh-chs": "英文(牙买加)",
15543 "zh-cht": "英文(牙買加)",
15544 "xloc": [
15545 - "default.handlebars->31->1248"
15545 + "default.handlebars->31->1250"
15546 ]
15547 },
15548 {
@@ -15562,7 +15562,7 @@
15562 "zh-chs": "英文(纽西兰)",
15563 "zh-cht": "英文(紐西蘭)",
15564 "xloc": [
15565 - "default.handlebars->31->1249"
15565 + "default.handlebars->31->1251"
15566 ]
15567 },
15568 {
@@ -15582,7 +15582,7 @@
15582 "zh-chs": "英文(菲律宾)",
15583 "zh-cht": "英文(菲律賓)",
15584 "xloc": [
15585 - "default.handlebars->31->1250"
15585 + "default.handlebars->31->1252"
15586 ]
15587 },
15588 {
@@ -15602,7 +15602,7 @@
15602 "zh-chs": "英语(南非)",
15603 "zh-cht": "英語(南非)",
15604 "xloc": [
15605 - "default.handlebars->31->1251"
15605 + "default.handlebars->31->1253"
15606 ]
15607 },
15608 {
@@ -15622,7 +15622,7 @@
15622 "zh-chs": "英文(特立尼达和多巴哥)",
15623 "zh-cht": "英文(特立尼達和多巴哥)",
15624 "xloc": [
15625 - "default.handlebars->31->1252"
15625 + "default.handlebars->31->1254"
15626 ]
15627 },
15628 {
@@ -15642,7 +15642,7 @@
15642 "zh-chs": "英文(英国)",
15643 "zh-cht": "英文(英國)",
15644 "xloc": [
15645 - "default.handlebars->31->1253"
15645 + "default.handlebars->31->1255"
15646 ]
15647 },
15648 {
@@ -15662,7 +15662,7 @@
15662 "zh-chs": "美国英文",
15663 "zh-cht": "美國英語",
15664 "xloc": [
15665 - "default.handlebars->31->1254"
15665 + "default.handlebars->31->1256"
15666 ]
15667 },
15668 {
@@ -15682,7 +15682,7 @@
15682 "zh-chs": "英文(津巴布韦)",
15683 "zh-cht": "英文(津巴布韋)",
15684 "xloc": [
15685 - "default.handlebars->31->1255"
15685 + "default.handlebars->31->1257"
15686 ]
15687 },
15688 {
@@ -15703,10 +15703,10 @@
15703 "zh-cht": "輸入",
15704 "xloc": [
15705 "default-mobile.handlebars->11->342",
15706 - "default.handlebars->31->1028",
15707 - "default.handlebars->31->1437",
15708 - "default.handlebars->31->1438",
15709 - "default.handlebars->31->952"
15706 + "default.handlebars->31->1030",
15707 + "default.handlebars->31->1439",
15708 + "default.handlebars->31->1440",
15709 + "default.handlebars->31->954"
15710 ]
15711 },
15712 {
@@ -15726,7 +15726,7 @@
15726 "zh-chs": "输入管理领域名称的逗号分隔列表。",
15727 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15728 "xloc": [
15729 - "default.handlebars->31->1967"
15729 + "default.handlebars->31->1969"
15730 ]
15731 },
15732 {
@@ -15746,7 +15746,7 @@
15746 "zh-chs": "输入IP地址范围以扫描英特尔AMT设备。",
15747 "zh-cht": "輸入IP地址範圍以掃描Intel&reg; AMT裝置。",
15748 "xloc": [
15749 - "default.handlebars->31->344"
15749 + "default.handlebars->31->345"
15750 ]
15751 },
15752 {
@@ -15786,7 +15786,7 @@
15786 "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
15787 "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
15788 "xloc": [
15789 - "default.handlebars->31->977"
15789 + "default.handlebars->31->979"
15790 ]
15791 },
15792 {
@@ -15848,7 +15848,7 @@
15848 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
15849 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
15850 "xloc": [
15851 - "default.handlebars->31->1176"
15851 + "default.handlebars->31->1178"
15852 ]
15853 },
15854 {
@@ -15878,7 +15878,7 @@
15878 "de": "Fehler, Einladungscode \\\"{0}\\\" wird bereits verwendet.",
15879 "xloc": [
15880 "default-mobile.handlebars->11->615",
15881 - "default.handlebars->31->2259"
15881 + "default.handlebars->31->2261"

This file is too large to show in full.

views/default.handlebars
+26 -8
@@ -3323,6 +3323,11 @@
3323 }
3324 break;
3325 }
3326 + case 'getDeviceDetails':{
3327 + console.log(message);
3328 + saveAs(new Blob([message.data], { type: 'application/octet-stream' }), "devicelist" + '.' + message.type);
3329 + break;
3330 + }
3331 default:
3332 //console.log('Unknown message.action', message.action);
3333 break;
@@ -4959,23 +4964,36 @@
4964 var x = "Download the list of devices with one of the file formats below." + '<br /><br />';
4965 x += addHtmlValue("CSV Format", '<a href=# style=cursor:pointer onclick=\'return p2downloadDeviceInfoCSV()\'>' + "devicelist.csv" + '</a>');
4966 x += addHtmlValue("JSON Format", '<a href=# style=cursor:pointer onclick=\'return p2downloadDeviceInfoJSON()\'>' + "devicelist.json" + '</a>');
4967 + x += '<div style=margin-top:8px><label><input type=checkbox id=d2DevInfoDetailsCheck />' + "Include device details" + '</label></div>';
4968 setDialogMode(2, "Device Information Export", 1, null, x);
4969 }
4970
4971 function p2downloadDeviceInfoCSV() {
4966 - var csv = "id, name, rname, host, icon, ip, osdesc, state, groupname, conn, pwr" + '\r\n', chkNodeIds = getCheckedDevices(), r = [];
4967 - for (var i in chkNodeIds) {
4968 - var n = getNodeFromId(chkNodeIds[i]);
4969 - 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:'') + '"\r\n';
4972 + var chkNodeIds = getCheckedDevices();
4973 + if (Q('d2DevInfoDetailsCheck').checked) {
4974 + meshserver.send({ action: 'getDeviceDetails', nodeids: chkNodeIds, type: 'csv' }); // With details
4975 + } else {
4976 + // Without details
4977 + var csv = "id, name, rname, host, icon, ip, osdesc, state, groupname, conn, pwr" + '\r\n', r = [];
4978 + for (var i in chkNodeIds) {
4979 + var n = getNodeFromId(chkNodeIds[i]);
4980 + 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:'') + '"\r\n';
4981 + }
4982 + saveAs(new Blob([csv], { type: 'application/octet-stream' }), "devicelist.csv");
4983 }
4971 - saveAs(new Blob([csv], { type: 'application/octet-stream' }), "devicelist.csv");
4984 return false;
4985 }
4986
4987 function p2downloadDeviceInfoJSON() {
4976 - var chkNodeIds = getCheckedDevices(), r = [];
4977 - for (var i in chkNodeIds) { r.push(getNodeFromId(chkNodeIds[i])); }
4978 - saveAs(new Blob([JSON.stringify(r, null, 2)], { type: 'application/octet-stream' }), "devicelist.json");
4988 + var chkNodeIds = getCheckedDevices();
4989 + if (Q('d2DevInfoDetailsCheck').checked) {
4990 + meshserver.send({ action: 'getDeviceDetails', nodeids: chkNodeIds, type: 'json' }); // With details
4991 + } else {
4992 + // Without details
4993 + var r = [];
4994 + for (var i in chkNodeIds) { r.push(getNodeFromId(chkNodeIds[i])); }
4995 + saveAs(new Blob([JSON.stringify(r, null, 2)], { type: 'application/octet-stream' }), "devicelist.json");
4996 + }
4997 return false;
4998 }
4999