add idletime for windows devices #7554

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Feb 18, 2026 at 00:08 UTC fab8ffe57e78bbf88b12f81a1efe02df9bfcd03b
7 files changed +6607 -6435
agents/meshcore.js
+14 -2
@@ -4195,11 +4195,12 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
4195 if (require('os').dns != null) { availcommands += ',dnsinfo'; }
4196 try { require('linux-dhcp'); availcommands += ',dhcp'; } catch (ex) { }
4197 if (process.platform == 'win32') {
4198 - availcommands += ',bitlocker,cs,wpfhwacceleration,uac,volumes,rdpport,deskbackground,domaininfo';
4198 + availcommands += ',bitlocker,cs,wpfhwacceleration,uac,volumes,rdpport,domaininfo';
4199 if (bcdOK()) { availcommands += ',safemode'; }
4200 if (require('notifybar-desktop').DefaultPinned != null) { availcommands += ',privacybar'; }
4201 try { require('win-utils'); availcommands += ',taskbar'; } catch (ex) { }
4202 try { require('win-info'); availcommands += ',installedapps,qfe,defender,av,installedstoreapps'; } catch (ex) { }
4203 + try { require('win-deskutils'); availcommands += ',mousetrails,idletime,deskbackground'; } catch (ex) { }
4204 }
4205 if (amt != null) { availcommands += ',amt,amtconfig,amtevents'; }
4206 if (process.platform != 'freebsd') { availcommands += ',vm'; }
@@ -4253,6 +4254,10 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
4254 break;
4255 }
4256 break;
4257 + case 'idletime':
4258 + try { require('win-deskutils'); } catch (ex) { response = 'Unknown command "idletime", type "help" for list of available commands.'; break; }
4259 + response = 'idling for ' + require('win-deskutils').idle.getSeconds(null) + ' seconds';
4260 + break;
4261 case 'taskbar':
4262 try { require('win-utils'); } catch (ex) { response = 'Unknown command "taskbar", type "help" for list of available commands.'; break; }
4263 switch (args['_'].length) {
@@ -6221,7 +6226,7 @@ function handleServerConnection(state) {
6226 LastPeriodicServerUpdate = null;
6227 sendPeriodicServerUpdate(null, true);
6228 if (selfInfoUpdateTimer == null) {
6224 - selfInfoUpdateTimer = setInterval(sendPeriodicServerUpdate, 1200000); // 20 minutes
6229 + selfInfoUpdateTimer = setInterval(sendPeriodicServerUpdate, 300000); // 5 minutes
6230 selfInfoUpdateTimer.metadata = 'meshcore (InfoUpdate Timer)';
6231 }
6232
@@ -6331,6 +6336,13 @@ function sendPeriodicServerUpdate(flags, force) {
6336 meshCoreObj.defender = require('win-info').defender();
6337 meshCoreObjChanged();
6338 } catch (ex) { }
6339 +
6340 + // Calculate Windows Idle Time
6341 + try {
6342 + var idletime = require('win-deskutils').idle.getSeconds(null);
6343 + meshCoreObj.idletime = idletime;
6344 + meshCoreObjChanged();
6345 + } catch (ex) { sendConsoleText('Error getting idle time: ' + ex.toString());}
6346 }
6347
6348 // Send available data right now
agents/modules_meshcore/win-deskutils.js
+60
@@ -33,6 +33,9 @@ var SPI_SETMOUSETRAILS = 0x005D;
33 var GM = require('_GenericMarshal');
34 var user32 = GM.CreateNativeProxy('user32.dll');
35 user32.CreateMethod('SystemParametersInfoA');
36 +user32.CreateMethod('GetLastInputInfo');
37 +var kernel32 = GM.CreateNativeProxy('kernel32.dll');
38 +kernel32.CreateMethod('GetTickCount');
39
40 //
41 // This function is a helper method to dispatch method calls to different user sessions
@@ -189,6 +192,63 @@ function mousetrails_get(tsid)
192 return (v.toBuffer().readUInt32LE());
193 }
194
195 +//
196 +// This function returns the number of seconds since the last keyboard or mouse input from the user.
197 +// It uses GetLastInputInfo from user32.dll to retrieve the last input tick count,
198 +// then compares it against the current tick count from GetTickCount.
199 +//
200 +// Both GetTickCount and the dwTime field from GetLastInputInfo are 32-bit values that wrap
201 +// around after approximately 49.7 days. This function handles the wraparound case correctly.
202 +//
203 +// MSDN documentation:
204 +// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getlastinputinfo
205 +//
206 +function idle_getSeconds(tsid)
207 +{
208 + if (tsid != null || tsid === null) // TSID is not undefined or is explicitly null
209 + {
210 + // Need to dispatch to different session first
211 + return (sessionDispatch(tsid, 'idle', 'getSeconds', []));
212 + }
213 +
214 + // Allocate 8 bytes for the LASTINPUTINFO struct:
215 + // UINT cbSize (offset 0, 4 bytes) - must be set to 8 before calling
216 + // DWORD dwTime (offset 4, 4 bytes) - tick count of last input event
217 + var lii = GM.CreateVariable(8);
218 +
219 + // cbSize must be set to the size of the struct (8) before calling
220 + lii.toBuffer().writeUInt32LE(8, 0);
221 +
222 + var ret = user32.GetLastInputInfo(lii);
223 + if (ret.Val == 0)
224 + {
225 + throw ('Error occured trying to get last input info');
226 + }
227 +
228 + // Read dwTime from byte offset 4
229 + var dwTime = lii.toBuffer().readUInt32LE(4);
230 +
231 + // GetTickCount returns the number of milliseconds since system boot (32-bit, wraps after ~49.7 days)
232 + var tickNow = kernel32.GetTickCount().Val;
233 +
234 + // Handle 32-bit wraparound case
235 + var idleMs;
236 + if (tickNow >= dwTime)
237 + {
238 + // Normal case: no wraparound
239 + idleMs = tickNow - dwTime;
240 + }
241 + else
242 + {
243 + // Wraparound occurred: tickNow wrapped to 0 while dwTime is still large
244 + // Calculate the time from dwTime to the wrap point (0xFFFFFFFF) plus time since wrap
245 + idleMs = (0xFFFFFFFF - dwTime) + tickNow + 1;
246 + }
247 +
248 + return Math.floor(idleMs / 1000);
249 +}
250 +
251 module.exports = { background: { get: background_get, set: background_set } };
252 module.exports.mouse = { getTrails: mousetrails_get, setTrails: mousetrails_set };
253 +module.exports.idle = { getSeconds: idle_getSeconds };
254 module.exports.dispatch = dispatch;
\ No newline at end of file
meshagent.js
+4
@@ -1933,6 +1933,10 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1933 if (!device.lastbootuptime) { device.lastbootuptime = ""; }
1934 if (device.lastbootuptime != command.lastbootuptime) { /*changes.push('Last Boot Up Time');*/ device.lastbootuptime = command.lastbootuptime; change = 1; log = 1; }
1935 }
1936 +if (command.idletime != null) { // Idle Time
1937 + if (!device.idletime) { device.idletime = 0; }
1938 + if (parseInt(device.idletime) != parseInt(command.idletime)) { /*changes.push('Idle Time');*/ device.idletime = parseInt(command.idletime); change = 1; } // Don't log idle time changes, this is too volatile.
1939 + }
1940
1941 // Push Messaging Token
1942 if ((command.pmt != null) && (typeof command.pmt == 'string') && (device.pmt != command.pmt)) {
translate/translate.json
+6498 -6433
@@ -26,10 +26,10 @@
26 "zh-chs": " + CIRA",
27 "zh-cht": " + CIRA",
28 "xloc": [
29 - "default.handlebars->121->2254",
30 - "default.handlebars->121->2256",
31 - "default3.handlebars->119->2250",
32 - "default3.handlebars->119->2252"
29 + "default.handlebars->121->2258",
30 + "default.handlebars->121->2260",
31 + "default3.handlebars->119->2254",
32 + "default3.handlebars->119->2256"
33 ]
34 },
35 {
@@ -278,8 +278,8 @@
278 "zh-chs": " 可以使用密码提示,但不建议使用。",
279 "zh-cht": " 可以使用密碼提示,但不建議使用。",
280 "xloc": [
281 - "default.handlebars->121->2126",
282 - "default3.handlebars->119->2106"
281 + "default.handlebars->121->2130",
282 + "default3.handlebars->119->2110"
283 ]
284 },
285 {
@@ -308,10 +308,10 @@
308 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
309 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
310 "xloc": [
311 - "default.handlebars->121->2380",
312 - "default.handlebars->121->2969",
313 - "default3.handlebars->119->2377",
314 - "default3.handlebars->119->2964"
311 + "default.handlebars->121->2384",
312 + "default.handlebars->121->2973",
313 + "default3.handlebars->119->2381",
314 + "default3.handlebars->119->2968"
315 ]
316 },
317 {
@@ -518,8 +518,8 @@
518 "zh-chs": "(可选的)",
519 "zh-cht": "(可選的)",
520 "xloc": [
521 - "default.handlebars->121->585",
522 - "default3.handlebars->119->581"
521 + "default.handlebars->121->588",
522 + "default3.handlebars->119->584"
523 ]
524 },
525 {
@@ -569,10 +569,10 @@
569 "zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。",
570 "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
571 "xloc": [
572 - "default.handlebars->121->2338",
573 - "default.handlebars->121->547",
574 - "default3.handlebars->119->2332",
575 - "default3.handlebars->119->543"
572 + "default.handlebars->121->2342",
573 + "default.handlebars->121->550",
574 + "default3.handlebars->119->2336",
575 + "default3.handlebars->119->546"
576 ]
577 },
578 {
@@ -601,8 +601,8 @@
601 "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
602 "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
603 "xloc": [
604 - "default.handlebars->121->644",
605 - "default3.handlebars->119->640"
604 + "default.handlebars->121->647",
605 + "default3.handlebars->119->643"
606 ]
607 },
608 {
@@ -654,22 +654,22 @@
654 "zh-chs": ",",
655 "zh-cht": ",",
656 "xloc": [
657 - "default-mobile.handlebars->55->1056",
658 - "default-mobile.handlebars->55->812",
659 - "default-mobile.handlebars->55->814",
660 - "default-mobile.handlebars->55->816",
661 - "default.handlebars->121->1003",
662 - "default.handlebars->121->1652",
663 - "default.handlebars->121->1654",
657 + "default-mobile.handlebars->55->1057",
658 + "default-mobile.handlebars->55->813",
659 + "default-mobile.handlebars->55->815",
660 + "default-mobile.handlebars->55->817",
661 + "default.handlebars->121->1007",
662 "default.handlebars->121->1656",
665 - "default.handlebars->121->2456",
666 - "default.handlebars->121->2742",
667 - "default3.handlebars->119->1637",
668 - "default3.handlebars->119->1639",
663 + "default.handlebars->121->1658",
664 + "default.handlebars->121->1660",
665 + "default.handlebars->121->2460",
666 + "default.handlebars->121->2746",
667 + "default3.handlebars->119->1003",
668 "default3.handlebars->119->1641",
670 - "default3.handlebars->119->2453",
671 - "default3.handlebars->119->2739",
672 - "default3.handlebars->119->999"
669 + "default3.handlebars->119->1643",
670 + "default3.handlebars->119->1645",
671 + "default3.handlebars->119->2457",
672 + "default3.handlebars->119->2743"
673 ]
674 },
675 {
@@ -757,8 +757,8 @@
757 "zh-cht": ",只適用於Intel&reg; AMT",
758 "xloc": [
759 "default-mobile.handlebars->55->393",
760 - "default.handlebars->121->374",
761 - "default3.handlebars->119->370"
760 + "default.handlebars->121->375",
761 + "default3.handlebars->119->371"
762 ]
763 },
764 {
@@ -787,8 +787,8 @@
787 "zh-chs": ", 本地设备",
788 "zh-cht": ", 本地設備",
789 "xloc": [
790 - "default.handlebars->121->376",
791 - "default3.handlebars->119->372"
790 + "default.handlebars->121->377",
791 + "default3.handlebars->119->373"
792 ]
793 },
794 {
@@ -817,9 +817,9 @@
817 "zh-chs": ",MQTT在线",
818 "zh-cht": ",MQTT在線",
819 "xloc": [
820 - "default-mobile.handlebars->55->957",
821 - "default.handlebars->121->1798",
822 - "default3.handlebars->119->1781"
820 + "default-mobile.handlebars->55->958",
821 + "default.handlebars->121->1802",
822 + "default3.handlebars->119->1785"
823 ]
824 },
825 {
@@ -848,10 +848,10 @@
848 "zh-chs": ", 不同意",
849 "zh-cht": ", 不同意",
850 "xloc": [
851 - "default.handlebars->121->1098",
852 - "default.handlebars->121->2296",
853 - "default3.handlebars->119->1094",
854 - "default3.handlebars->119->2292"
851 + "default.handlebars->121->1102",
852 + "default.handlebars->121->2300",
853 + "default3.handlebars->119->1098",
854 + "default3.handlebars->119->2296"
855 ]
856 },
857 {
@@ -880,10 +880,10 @@
880 "zh-chs": ",提示同意",
881 "zh-cht": ",提示同意",
882 "xloc": [
883 - "default.handlebars->121->1099",
884 - "default.handlebars->121->2297",
885 - "default3.handlebars->119->1095",
886 - "default3.handlebars->119->2293"
883 + "default.handlebars->121->1103",
884 + "default.handlebars->121->2301",
885 + "default3.handlebars->119->1099",
886 + "default3.handlebars->119->2297"
887 ]
888 },
889 {
@@ -911,8 +911,8 @@
911 "zh-chs": ", RDP",
912 "zh-cht": ", RDP",
913 "xloc": [
914 - "default.handlebars->121->1400",
915 - "default3.handlebars->119->1386"
914 + "default.handlebars->121->1404",
915 + "default3.handlebars->119->1390"
916 ]
917 },
918 {
@@ -941,10 +941,10 @@
941 "zh-chs": ", 每天重复",
942 "zh-cht": ", 每天重複",
943 "xloc": [
944 - "default.handlebars->121->1095",
945 - "default.handlebars->121->2293",
946 - "default3.handlebars->119->1091",
947 - "default3.handlebars->119->2289"
944 + "default.handlebars->121->1099",
945 + "default.handlebars->121->2297",
946 + "default3.handlebars->119->1095",
947 + "default3.handlebars->119->2293"
948 ]
949 },
950 {
@@ -973,10 +973,10 @@
973 "zh-chs": ", 每周重复一次",
974 "zh-cht": ", 每週重複一次",
975 "xloc": [
976 - "default.handlebars->121->1096",
977 - "default.handlebars->121->2294",
978 - "default3.handlebars->119->1092",
979 - "default3.handlebars->119->2290"
976 + "default.handlebars->121->1100",
977 + "default.handlebars->121->2298",
978 + "default3.handlebars->119->1096",
979 + "default3.handlebars->119->2294"
980 ]
981 },
982 {
@@ -1005,8 +1005,8 @@
1005 "zh-chs": ", 中继设备",
1006 "zh-cht": ", 中繼設備",
1007 "xloc": [
1008 - "default.handlebars->121->375",
1009 - "default3.handlebars->119->371"
1008 + "default.handlebars->121->376",
1009 + "default3.handlebars->119->372"
1010 ]
1011 },
1012 {
@@ -1035,8 +1035,8 @@
1035 "zh-cht": ", SFTP",
1036 "xloc": [
1037 "default-mobile.handlebars->55->696",
1038 - "default.handlebars->121->1522",
1039 - "default3.handlebars->119->1507"
1038 + "default.handlebars->121->1526",
1039 + "default3.handlebars->119->1511"
1040 ]
1041 },
1042 {
@@ -1064,8 +1064,8 @@
1064 "zh-chs": ", SSH",
1065 "zh-cht": ", SSH",
1066 "xloc": [
1067 - "default.handlebars->121->1490",
1068 - "default3.handlebars->119->1475"
1067 + "default.handlebars->121->1494",
1068 + "default3.handlebars->119->1479"
1069 ]
1070 },
1071 {
@@ -1093,8 +1093,8 @@
1093 "zh-chs": ",软体KVM",
1094 "zh-cht": ",軟體KVM",
1095 "xloc": [
1096 - "default.handlebars->121->1383",
1097 - "default3.handlebars->119->1369",
1096 + "default.handlebars->121->1387",
1097 + "default3.handlebars->119->1373",
1098 "sharing.handlebars->49->12"
1099 ]
1100 },
@@ -1124,10 +1124,10 @@
1124 "zh-chs": ", 工具栏",
1125 "zh-cht": ", 工具欄",
1126 "xloc": [
1127 - "default.handlebars->121->1100",
1128 - "default.handlebars->121->2298",
1129 - "default3.handlebars->119->1096",
1130 - "default3.handlebars->119->2294"
1127 + "default.handlebars->121->1104",
1128 + "default.handlebars->121->2302",
1129 + "default3.handlebars->119->1100",
1130 + "default3.handlebars->119->2298"
1131 ]
1132 },
1133 {
@@ -1156,10 +1156,10 @@
1156 "zh-chs": ", 仅查看桌面",
1157 "zh-cht": ", 僅查看桌面",
1158 "xloc": [
1159 - "default.handlebars->121->1097",
1160 - "default.handlebars->121->2295",
1161 - "default3.handlebars->119->1093",
1162 - "default3.handlebars->119->2291"
1159 + "default.handlebars->121->1101",
1160 + "default.handlebars->121->2299",
1161 + "default3.handlebars->119->1097",
1162 + "default3.handlebars->119->2295"
1163 ]
1164 },
1165 {
@@ -1190,12 +1190,12 @@
1190 "default-mobile.handlebars->55->637",
1191 "default-mobile.handlebars->55->674",
1192 "default-mobile.handlebars->55->697",
1193 - "default.handlebars->121->1399",
1194 - "default.handlebars->121->1491",
1195 - "default.handlebars->121->1523",
1196 - "default3.handlebars->119->1385",
1197 - "default3.handlebars->119->1476",
1198 - "default3.handlebars->119->1508",
1193 + "default.handlebars->121->1403",
1194 + "default.handlebars->121->1495",
1195 + "default.handlebars->121->1527",
1196 + "default3.handlebars->119->1389",
1197 + "default3.handlebars->119->1480",
1198 + "default3.handlebars->119->1512",
1199 "sharing-mobile.handlebars->55->14",
1200 "sharing-mobile.handlebars->55->46",
1201 "sharing-mobile.handlebars->55->63",
@@ -1355,8 +1355,8 @@
1355 "zh-chs": ",{0}观看",
1356 "zh-cht": ",{0}觀看",
1357 "xloc": [
1358 - "default.handlebars->121->1394",
1359 - "default3.handlebars->119->1380",
1358 + "default.handlebars->121->1398",
1359 + "default3.handlebars->119->1384",
1360 "sharing.handlebars->49->13"
1361 ]
1362 },
@@ -1456,8 +1456,8 @@
1456 "en": "0 bps",
1457 "xloc": [
1458 "default-mobile.handlebars->55->370",
1459 - "default.handlebars->121->2539",
1460 - "default3.handlebars->119->2536"
1459 + "default.handlebars->121->2543",
1460 + "default3.handlebars->119->2540"
1461 ]
1462 },
1463 {
@@ -1514,8 +1514,8 @@
1514 "zh-chs": "1个活跃时段",
1515 "zh-cht": "1個活躍時段",
1516 "xloc": [
1517 - "default.handlebars->121->3064",
1518 - "default3.handlebars->119->3059"
1517 + "default.handlebars->121->3068",
1518 + "default3.handlebars->119->3063"
1519 ]
1520 },
1521 {
@@ -1544,10 +1544,10 @@
1544 "zh-chs": "1个字节",
1545 "zh-cht": "1個位元組",
1546 "xloc": [
1547 - "default-mobile.handlebars->55->1100",
1547 + "default-mobile.handlebars->55->1101",
1548 "default-mobile.handlebars->55->378",
1549 - "default.handlebars->121->2550",
1550 - "default3.handlebars->119->2547",
1549 + "default.handlebars->121->2554",
1550 + "default3.handlebars->119->2551",
1551 "download.handlebars->7->1",
1552 "download2.handlebars->11->1",
1553 "sharing-mobile.handlebars->55->111",
@@ -1609,8 +1609,8 @@
1609 "zh-chs": "1条连接",
1610 "zh-cht": "1位聯絡文",
1611 "xloc": [
1612 - "default.handlebars->121->1396",
1613 - "default3.handlebars->119->1382",
1612 + "default.handlebars->121->1400",
1613 + "default3.handlebars->119->1386",
1614 "sharing.handlebars->49->15"
1615 ]
1616 },
@@ -1641,11 +1641,11 @@
1641 "zh-cht": "1天",
1642 "xloc": [
1643 "default.handlebars->121->296",
1644 - "default.handlebars->121->576",
1645 - "default.handlebars->121->590",
1644 + "default.handlebars->121->579",
1645 + "default.handlebars->121->593",
1646 "default3.handlebars->119->291",
1647 - "default3.handlebars->119->572",
1648 - "default3.handlebars->119->586"
1647 + "default3.handlebars->119->575",
1648 + "default3.handlebars->119->589"
1649 ]
1650 },
1651 {
@@ -1674,8 +1674,8 @@
1674 "zh-chs": "1组",
1675 "zh-cht": "1群",
1676 "xloc": [
1677 - "default.handlebars->121->3019",
1678 - "default3.handlebars->119->3014"
1677 + "default.handlebars->121->3023",
1678 + "default3.handlebars->119->3018"
1679 ]
1680 },
1681 {
@@ -1705,11 +1705,11 @@
1705 "zh-cht": "1小時",
1706 "xloc": [
1707 "default.handlebars->121->294",
1708 - "default.handlebars->121->574",
1709 - "default.handlebars->121->588",
1708 + "default.handlebars->121->577",
1709 + "default.handlebars->121->591",
1710 "default3.handlebars->119->289",
1711 - "default3.handlebars->119->570",
1712 - "default3.handlebars->119->584"
1711 + "default3.handlebars->119->573",
1712 + "default3.handlebars->119->587"
1713 ]
1714 },
1715 {
@@ -1738,10 +1738,10 @@
1738 "zh-chs": "1分钟",
1739 "zh-cht": "1分鐘",
1740 "xloc": [
1741 - "default.handlebars->121->1208",
1742 - "default.handlebars->121->2091",
1743 - "default3.handlebars->119->1202",
1744 - "default3.handlebars->119->2072"
1741 + "default.handlebars->121->1212",
1742 + "default.handlebars->121->2095",
1743 + "default3.handlebars->119->1206",
1744 + "default3.handlebars->119->2076"
1745 ]
1746 },
1747 {
@@ -1826,11 +1826,11 @@
1826 "zh-cht": "1個月",
1827 "xloc": [
1828 "default.handlebars->121->298",
1829 - "default.handlebars->121->578",
1830 - "default.handlebars->121->592",
1829 + "default.handlebars->121->581",
1830 + "default.handlebars->121->595",
1831 "default3.handlebars->119->293",
1832 - "default3.handlebars->119->574",
1833 - "default3.handlebars->119->588"
1832 + "default3.handlebars->119->577",
1833 + "default3.handlebars->119->591"
1834 ]
1835 },
1836 {
@@ -1859,8 +1859,8 @@
1859 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1860 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1861 "xloc": [
1862 - "default.handlebars->121->2774",
1863 - "default3.handlebars->119->2771"
1862 + "default.handlebars->121->2778",
1863 + "default3.handlebars->119->2775"
1864 ]
1865 },
1866 {
@@ -1889,8 +1889,8 @@
1889 "zh-chs": "1个节点",
1890 "zh-cht": "1個節點",
1891 "xloc": [
1892 - "default.handlebars->121->703",
1893 - "default3.handlebars->119->699"
1892 + "default.handlebars->121->706",
1893 + "default3.handlebars->119->702"
1894 ]
1895 },
1896 {
@@ -1920,8 +1920,8 @@
1920 "zh-cht": "1秒",
1921 "xloc": [
1922 "default-mobile.handlebars->55->573",
1923 - "default.handlebars->121->1248",
1924 - "default3.handlebars->119->1242"
1923 + "default.handlebars->121->1252",
1924 + "default3.handlebars->119->1246"
1925 ]
1926 },
1927 {
@@ -2005,8 +2005,8 @@
2005 "zh-chs": "1 个选定的设备处于离线状态。",
2006 "zh-cht": "1 個選定的設備處於離線狀態。",
2007 "xloc": [
2008 - "default.handlebars->121->771",
2009 - "default3.handlebars->119->767"
2008 + "default.handlebars->121->774",
2009 + "default3.handlebars->119->770"
2010 ]
2011 },
2012 {
@@ -2035,8 +2035,8 @@
2035 "zh-chs": "1 个选定的设备在线。",
2036 "zh-cht": "1 個選定的設備在線。",
2037 "xloc": [
2038 - "default.handlebars->121->769",
2039 - "default3.handlebars->119->765"
2038 + "default.handlebars->121->772",
2039 + "default3.handlebars->119->768"
2040 ]
2041 },
2042 {
@@ -2072,22 +2072,22 @@
2072 "default-mobile.handlebars->55->425",
2073 "default-mobile.handlebars->55->429",
2074 "default-mobile.handlebars->55->433",
2075 - "default.handlebars->121->2778",
2076 - "default.handlebars->121->465",
2075 + "default.handlebars->121->2782",
2076 "default.handlebars->121->468",
2078 - "default.handlebars->121->472",
2079 - "default.handlebars->121->476",
2080 - "default.handlebars->121->480",
2081 - "default.handlebars->121->484",
2082 - "default.handlebars->121->488",
2083 - "default3.handlebars->119->2775",
2084 - "default3.handlebars->119->461",
2077 + "default.handlebars->121->471",
2078 + "default.handlebars->121->475",
2079 + "default.handlebars->121->479",
2080 + "default.handlebars->121->483",
2081 + "default.handlebars->121->487",
2082 + "default.handlebars->121->491",
2083 + "default3.handlebars->119->2779",
2084 "default3.handlebars->119->464",
2086 - "default3.handlebars->119->468",
2087 - "default3.handlebars->119->472",
2088 - "default3.handlebars->119->476",
2089 - "default3.handlebars->119->480",
2090 - "default3.handlebars->119->484"
2085 + "default3.handlebars->119->467",
2086 + "default3.handlebars->119->471",
2087 + "default3.handlebars->119->475",
2088 + "default3.handlebars->119->479",
2089 + "default3.handlebars->119->483",
2090 + "default3.handlebars->119->487"
2091 ]
2092 },
2093 {
@@ -2117,11 +2117,11 @@
2117 "zh-cht": "1週",
2118 "xloc": [
2119 "default.handlebars->121->297",
2120 - "default.handlebars->121->577",
2121 - "default.handlebars->121->591",
2120 + "default.handlebars->121->580",
2121 + "default.handlebars->121->594",
2122 "default3.handlebars->119->292",
2123 - "default3.handlebars->119->573",
2124 - "default3.handlebars->119->587"
2123 + "default3.handlebars->119->576",
2124 + "default3.handlebars->119->590"
2125 ]
2126 },
2127 {
@@ -2299,10 +2299,10 @@
2299 "zh-chs": "10分钟",
2300 "zh-cht": "10分鐘",
2301 "xloc": [
2302 - "default.handlebars->121->1210",
2303 - "default.handlebars->121->2093",
2304 - "default3.handlebars->119->1204",
2305 - "default3.handlebars->119->2074"
2302 + "default.handlebars->121->1214",
2303 + "default.handlebars->121->2097",
2304 + "default3.handlebars->119->1208",
2305 + "default3.handlebars->119->2078"
2306 ]
2307 },
2308 {
@@ -2332,8 +2332,8 @@
2332 "zh-cht": "10 秒",
2333 "xloc": [
2334 "default-mobile.handlebars->55->575",
2335 - "default.handlebars->121->1250",
2336 - "default3.handlebars->119->1244"
2335 + "default.handlebars->121->1254",
2336 + "default3.handlebars->119->1248"
2337 ]
2338 },
2339 {
@@ -2510,10 +2510,10 @@
2510 "zh-chs": "12小时",
2511 "zh-cht": "12小時",
2512 "xloc": [
2513 - "default.handlebars->121->1218",
2514 - "default.handlebars->121->2101",
2515 - "default3.handlebars->119->1212",
2516 - "default3.handlebars->119->2082"
2513 + "default.handlebars->121->1222",
2514 + "default.handlebars->121->2105",
2515 + "default3.handlebars->119->1216",
2516 + "default3.handlebars->119->2086"
2517 ]
2518 },
2519 {
@@ -2632,10 +2632,10 @@
2632 "zh-chs": "15分钟",
2633 "zh-cht": "15分鐘",
2634 "xloc": [
2635 - "default.handlebars->121->1211",
2636 - "default.handlebars->121->2094",
2637 - "default3.handlebars->119->1205",
2638 - "default3.handlebars->119->2075"
2635 + "default.handlebars->121->1215",
2636 + "default.handlebars->121->2098",
2637 + "default3.handlebars->119->1209",
2638 + "default3.handlebars->119->2079"
2639 ]
2640 },
2641 {
@@ -2664,10 +2664,10 @@
2664 "zh-chs": "16小时",
2665 "zh-cht": "16小時",
2666 "xloc": [
2667 - "default.handlebars->121->1219",
2668 - "default.handlebars->121->2102",
2669 - "default3.handlebars->119->1213",
2670 - "default3.handlebars->119->2083"
2667 + "default.handlebars->121->1223",
2668 + "default.handlebars->121->2106",
2669 + "default3.handlebars->119->1217",
2670 + "default3.handlebars->119->2087"
2671 ]
2672 },
2673 {
@@ -2812,10 +2812,10 @@
2812 "zh-chs": "2天",
2813 "zh-cht": "2天",
2814 "xloc": [
2815 - "default.handlebars->121->1221",
2816 - "default.handlebars->121->2104",
2817 - "default3.handlebars->119->1215",
2818 - "default3.handlebars->119->2085"
2815 + "default.handlebars->121->1225",
2816 + "default.handlebars->121->2108",
2817 + "default3.handlebars->119->1219",
2818 + "default3.handlebars->119->2089"
2819 ]
2820 },
2821 {
@@ -2844,10 +2844,10 @@
2844 "zh-chs": "2小时",
2845 "zh-cht": "2小時",
2846 "xloc": [
2847 - "default.handlebars->121->1215",
2848 - "default.handlebars->121->2098",
2849 - "default3.handlebars->119->1209",
2850 - "default3.handlebars->119->2079"
2847 + "default.handlebars->121->1219",
2848 + "default.handlebars->121->2102",
2849 + "default3.handlebars->119->1213",
2850 + "default3.handlebars->119->2083"
2851 ]
2852 },
2853 {
@@ -3057,10 +3057,10 @@
3057 "zh-chs": "24小时",
3058 "zh-cht": "24小時",
3059 "xloc": [
3060 - "default.handlebars->121->1220",
3061 - "default.handlebars->121->2103",
3062 - "default3.handlebars->119->1214",
3063 - "default3.handlebars->119->2084"
3060 + "default.handlebars->121->1224",
3061 + "default.handlebars->121->2107",
3062 + "default3.handlebars->119->1218",
3063 + "default3.handlebars->119->2088"
3064 ]
3065 },
3066 {
@@ -3121,8 +3121,8 @@
3121 "zh-chs": "2FA备份代码已清除",
3122 "zh-cht": "2FA備份代碼已清除",
3123 "xloc": [
3124 - "default.handlebars->121->2663",
3125 - "default3.handlebars->119->2660"
3124 + "default.handlebars->121->2667",
3125 + "default3.handlebars->119->2664"
3126 ]
3127 },
3128 {
@@ -3182,8 +3182,8 @@
3182 "zh-chs": "第二个因素",
3183 "zh-cht": "第二個因素",
3184 "xloc": [
3185 - "default.handlebars->121->3251",
3186 - "default3.handlebars->119->3242"
3185 + "default.handlebars->121->3255",
3186 + "default3.handlebars->119->3246"
3187 ]
3188 },
3189 {
@@ -3212,10 +3212,10 @@
3212 "zh-chs": "启用第二因素身份验证",
3213 "zh-cht": "啟用第二因素身份驗證",
3214 "xloc": [
3215 - "default.handlebars->121->2792",
3216 - "default.handlebars->121->3045",
3217 - "default3.handlebars->119->2789",
3218 - "default3.handlebars->119->3040"
3215 + "default.handlebars->121->2796",
3216 + "default.handlebars->121->3049",
3217 + "default3.handlebars->119->2793",
3218 + "default3.handlebars->119->3044"
3219 ]
3220 },
3221 {
@@ -3386,10 +3386,10 @@
3386 "zh-chs": "30分钟",
3387 "zh-cht": "30分鐘",
3388 "xloc": [
3389 - "default.handlebars->121->1212",
3390 - "default.handlebars->121->2095",
3391 - "default3.handlebars->119->1206",
3392 - "default3.handlebars->119->2076"
3389 + "default.handlebars->121->1216",
3390 + "default.handlebars->121->2099",
3391 + "default3.handlebars->119->1210",
3392 + "default3.handlebars->119->2080"
3393 ]
3394 },
3395 {
@@ -3419,8 +3419,8 @@
3419 "zh-cht": "32 位",
3420 "xloc": [
3421 "default-mobile.handlebars->55->741",
3422 - "default.handlebars->121->1601",
3423 - "default3.handlebars->119->1586"
3422 + "default.handlebars->121->1605",
3423 + "default3.handlebars->119->1590"
3424 ]
3425 },
3426 {
@@ -3481,10 +3481,10 @@
3481 "zh-chs": "4天",
3482 "zh-cht": "4天",
3483 "xloc": [
3484 - "default.handlebars->121->1222",
3485 - "default.handlebars->121->2105",
3486 - "default3.handlebars->119->1216",
3487 - "default3.handlebars->119->2086"
3484 + "default.handlebars->121->1226",
3485 + "default.handlebars->121->2109",
3486 + "default3.handlebars->119->1220",
3487 + "default3.handlebars->119->2090"
3488 ]
3489 },
3490 {
@@ -3513,10 +3513,10 @@
3513 "zh-chs": "4个小时",
3514 "zh-cht": "4個小時",
3515 "xloc": [
3516 - "default.handlebars->121->1216",
3517 - "default.handlebars->121->2099",
3518 - "default3.handlebars->119->1210",
3519 - "default3.handlebars->119->2080"
3516 + "default.handlebars->121->1220",
3517 + "default.handlebars->121->2103",
3518 + "default3.handlebars->119->1214",
3519 + "default3.handlebars->119->2084"
3520 ]
3521 },
3522 {
@@ -3662,10 +3662,10 @@
3662 "zh-chs": "45分钟",
3663 "zh-cht": "45分鐘",
3664 "xloc": [
3665 - "default.handlebars->121->1213",
3666 - "default.handlebars->121->2096",
3667 - "default3.handlebars->119->1207",
3668 - "default3.handlebars->119->2077"
3665 + "default.handlebars->121->1217",
3666 + "default.handlebars->121->2100",
3667 + "default3.handlebars->119->1211",
3668 + "default3.handlebars->119->2081"
3669 ]
3670 },
3671 {
@@ -3723,10 +3723,10 @@
3723 "zh-chs": "5分钟",
3724 "zh-cht": "5分鐘",
3725 "xloc": [
3726 - "default.handlebars->121->1209",
3727 - "default.handlebars->121->2092",
3728 - "default3.handlebars->119->1203",
3729 - "default3.handlebars->119->2073"
3726 + "default.handlebars->121->1213",
3727 + "default.handlebars->121->2096",
3728 + "default3.handlebars->119->1207",
3729 + "default3.handlebars->119->2077"
3730 ]
3731 },
3732 {
@@ -3756,8 +3756,8 @@
3756 "zh-cht": "5秒",
3757 "xloc": [
3758 "default-mobile.handlebars->55->574",
3759 - "default.handlebars->121->1249",
3760 - "default3.handlebars->119->1243"
3759 + "default.handlebars->121->1253",
3760 + "default3.handlebars->119->1247"
3761 ]
3762 },
3763 {
@@ -3937,10 +3937,10 @@
3937 "zh-chs": "60分钟",
3938 "zh-cht": "60分鐘",
3939 "xloc": [
3940 - "default.handlebars->121->1214",
3941 - "default.handlebars->121->2097",
3942 - "default3.handlebars->119->1208",
3943 - "default3.handlebars->119->2078"
3940 + "default.handlebars->121->1218",
3941 + "default.handlebars->121->2101",
3942 + "default3.handlebars->119->1212",
3943 + "default3.handlebars->119->2082"
3944 ]
3945 },
3946 {
@@ -4029,8 +4029,8 @@
4029 "zh-cht": "64 位",
4030 "xloc": [
4031 "default-mobile.handlebars->55->743",
4032 - "default.handlebars->121->1603",
4033 - "default3.handlebars->119->1588"
4032 + "default.handlebars->121->1607",
4033 + "default3.handlebars->119->1592"
4034 ]
4035 },
4036 {
@@ -4088,8 +4088,8 @@
4088 "zh-chs": "7天电源状态",
4089 "zh-cht": "7天電源狀態",
4090 "xloc": [
4091 - "default.handlebars->121->1295",
4092 - "default3.handlebars->119->1284"
4091 + "default.handlebars->121->1299",
4092 + "default3.handlebars->119->1288"
4093 ]
4094 },
4095 {
@@ -4118,8 +4118,8 @@
4118 "zh-chs": "7天",
4119 "zh-cht": "7天",
4120 "xloc": [
4121 - "default.handlebars->121->2106",
4122 - "default3.handlebars->119->2087"
4121 + "default.handlebars->121->2110",
4122 + "default3.handlebars->119->2091"
4123 ]
4124 },
4125 {
@@ -4210,14 +4210,14 @@
4210 "zh-chs": "8小時",
4211 "zh-cht": "8小時",
4212 "xloc": [
4213 - "default.handlebars->121->1217",
4214 - "default.handlebars->121->2100",
4215 - "default.handlebars->121->575",
4216 - "default.handlebars->121->589",
4217 - "default3.handlebars->119->1211",
4218 - "default3.handlebars->119->2081",
4219 - "default3.handlebars->119->571",
4220 - "default3.handlebars->119->585"
4213 + "default.handlebars->121->1221",
4214 + "default.handlebars->121->2104",
4215 + "default.handlebars->121->578",
4216 + "default.handlebars->121->592",
4217 + "default3.handlebars->119->1215",
4218 + "default3.handlebars->119->2085",
4219 + "default3.handlebars->119->574",
4220 + "default3.handlebars->119->588"
4221 ]
4222 },
4223 {
@@ -4420,12 +4420,12 @@
4420 "zh-cht": "ACM",
4421 "xloc": [
4422 "default-mobile.handlebars->55->504",
4423 - "default.handlebars->121->2274",
4424 - "default.handlebars->121->453",
4425 - "default.handlebars->121->909",
4426 - "default3.handlebars->119->2270",
4427 - "default3.handlebars->119->449",
4428 - "default3.handlebars->119->905"
4423 + "default.handlebars->121->2278",
4424 + "default.handlebars->121->456",
4425 + "default.handlebars->121->912",
4426 + "default3.handlebars->119->2274",
4427 + "default3.handlebars->119->452",
4428 + "default3.handlebars->119->908"
4429 ]
4430 },
4431 {
@@ -4453,10 +4453,10 @@
4453 "zh-chs": "AMT",
4454 "zh-cht": "AMT",
4455 "xloc": [
4456 - "default.handlebars->121->431",
4457 - "default.handlebars->121->738",
4458 - "default3.handlebars->119->427",
4459 - "default3.handlebars->119->734"
4456 + "default.handlebars->121->434",
4457 + "default.handlebars->121->741",
4458 + "default3.handlebars->119->430",
4459 + "default3.handlebars->119->737"
4460 ]
4461 },
4462 {
@@ -4465,8 +4465,8 @@
4465 "nl": "AMT Host",
4466 "pl": "Host AMT",
4467 "xloc": [
4468 - "default.handlebars->121->402",
4469 - "default3.handlebars->119->398"
4468 + "default.handlebars->121->405",
4469 + "default3.handlebars->119->401"
4470 ]
4471 },
4472 {
@@ -4476,8 +4476,8 @@
4476 "nl": "AMT status",
4477 "pl": "Stan AMT",
4478 "xloc": [
4479 - "default.handlebars->121->403",
4480 - "default3.handlebars->119->399"
4479 + "default.handlebars->121->406",
4480 + "default3.handlebars->119->402"
4481 ]
4482 },
4483 {
@@ -4505,8 +4505,8 @@
4505 "zh-chs": "操作系统",
4506 "zh-cht": "AMT操作系統",
4507 "xloc": [
4508 - "default.handlebars->121->3410",
4509 - "default3.handlebars->119->3401"
4508 + "default.handlebars->121->3414",
4509 + "default3.handlebars->119->3405"
4510 ]
4511 },
4512 {
@@ -4534,10 +4534,10 @@
4534 "zh-chs": "AMT-Redir",
4535 "zh-cht": "AMT-Redir",
4536 "xloc": [
4537 - "default.handlebars->121->3261",
4538 - "default.handlebars->121->3314",
4539 - "default3.handlebars->119->3252",
4540 - "default3.handlebars->119->3305"
4537 + "default.handlebars->121->3265",
4538 + "default.handlebars->121->3318",
4539 + "default3.handlebars->119->3256",
4540 + "default3.handlebars->119->3309"
4541 ]
4542 },
4543 {
@@ -4565,10 +4565,10 @@
4565 "zh-chs": "AMT-WSMAN",
4566 "zh-cht": "AMT-WSMAN",
4567 "xloc": [
4568 - "default.handlebars->121->3260",
4569 - "default.handlebars->121->3313",
4570 - "default3.handlebars->119->3251",
4571 - "default3.handlebars->119->3304"
4568 + "default.handlebars->121->3264",
4569 + "default.handlebars->121->3317",
4570 + "default3.handlebars->119->3255",
4571 + "default3.handlebars->119->3308"
4572 ]
4573 },
4574 {
@@ -4576,8 +4576,8 @@
4576 "en": "APK",
4577 "nl": "APK",
4578 "xloc": [
4579 - "default.handlebars->121->665",
4580 - "default3.handlebars->119->661"
4579 + "default.handlebars->121->668",
4580 + "default3.handlebars->119->664"
4581 ]
4582 },
4583 {
@@ -4588,9 +4588,9 @@
4588 "pl": "Wersja APK MeshAgent",
4589 "uk": "MeshAgent версія APK",
4590 "xloc": [
4591 - "default-mobile.handlebars->55->1009",
4592 - "default.handlebars->121->664",
4593 - "default3.handlebars->119->660"
4591 + "default-mobile.handlebars->55->1010",
4592 + "default.handlebars->121->667",
4593 + "default3.handlebars->119->663"
4594 ]
4595 },
4596 {
@@ -4598,8 +4598,8 @@
4598 "en": "ARM 64bit version of macOS Mesh Agent",
4599 "nl": "ARM 64bit versie van de macOS Mesh Agent",
4600 "xloc": [
4601 - "default.handlebars->121->653",
4602 - "default3.handlebars->119->649"
4601 + "default.handlebars->121->656",
4602 + "default3.handlebars->119->652"
4603 ]
4604 },
4605 {
@@ -4611,10 +4611,10 @@
4611 "pl": "Meshagent wersja ARM 64bit",
4612 "uk": "MeshAgent версія ARM 64-біт ",
4613 "xloc": [
4614 - "default.handlebars->121->638",
4615 - "default.handlebars->121->685",
4616 - "default3.handlebars->119->634",
4617 - "default3.handlebars->119->681"
4614 + "default.handlebars->121->641",
4615 + "default.handlebars->121->688",
4616 + "default3.handlebars->119->637",
4617 + "default3.handlebars->119->684"
4618 ]
4619 },
4620 {
@@ -4803,10 +4803,10 @@
4803 "xloc": [
4804 "default-mobile.handlebars->55->752",
4805 "default-mobile.handlebars->55->754",
4806 - "default.handlebars->121->928",
4807 - "default.handlebars->121->930",
4808 - "default3.handlebars->119->924",
4809 - "default3.handlebars->119->926"
4806 + "default.handlebars->121->931",
4807 + "default.handlebars->121->933",
4808 + "default3.handlebars->119->927",
4809 + "default3.handlebars->119->929"
4810 ]
4811 },
4812 {
@@ -4835,9 +4835,9 @@
4835 "zh-chs": "拒绝访问",
4836 "zh-cht": "拒絕存取",
4837 "xloc": [
4838 - "default-mobile.handlebars->55->958",
4839 - "default.handlebars->121->1799",
4840 - "default3.handlebars->119->1782"
4838 + "default-mobile.handlebars->55->959",
4839 + "default.handlebars->121->1803",
4840 + "default3.handlebars->119->1786"
4841 ]
4842 },
4843 {
@@ -4926,8 +4926,8 @@
4926 "zh-chs": "访问服务器档案",
4927 "zh-cht": "存取伺服器檔案",
4928 "xloc": [
4929 - "default.handlebars->121->2975",
4930 - "default3.handlebars->119->2970"
4929 + "default.handlebars->121->2979",
4930 + "default3.handlebars->119->2974"
4931 ]
4932 },
4933 {
@@ -5054,19 +5054,19 @@
5054 "default-mobile.handlebars->55->471",
5055 "default-mobile.handlebars->55->473",
5056 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
5057 - "default.handlebars->121->2135",
5058 - "default.handlebars->121->2137",
5059 - "default.handlebars->121->3465",
5060 - "default.handlebars->121->746",
5061 - "default.handlebars->121->869",
5062 - "default.handlebars->121->871",
5063 - "default3.handlebars->119->2137",
5064 - "default3.handlebars->119->2138",
5065 - "default3.handlebars->119->3454",
5066 - "default3.handlebars->119->3456",
5067 - "default3.handlebars->119->742",
5068 - "default3.handlebars->119->865",
5069 - "default3.handlebars->119->867"
5057 + "default.handlebars->121->2139",
5058 + "default.handlebars->121->2141",
5059 + "default.handlebars->121->3469",
5060 + "default.handlebars->121->749",
5061 + "default.handlebars->121->872",
5062 + "default.handlebars->121->874",
5063 + "default3.handlebars->119->2141",
5064 + "default3.handlebars->119->2142",
5065 + "default3.handlebars->119->3458",
5066 + "default3.handlebars->119->3460",
5067 + "default3.handlebars->119->745",
5068 + "default3.handlebars->119->868",
5069 + "default3.handlebars->119->870"
5070 ]
5071 },
5072 {
@@ -5095,9 +5095,9 @@
5095 "zh-chs": "帐号设定",
5096 "zh-cht": "帳號設定",
5097 "xloc": [
5098 - "default-mobile.handlebars->55->1067",
5099 - "default.handlebars->121->3334",
5100 - "default3.handlebars->119->3325"
5098 + "default-mobile.handlebars->55->1068",
5099 + "default.handlebars->121->3338",
5100 + "default3.handlebars->119->3329"
5101 ]
5102 },
5103 {
@@ -5172,8 +5172,8 @@
5172 "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
5173 "uk": "Акаунт змінено на синхронізацію з даними LDAP.",
5174 "xloc": [
5175 - "default.handlebars->121->2724",
5176 - "default3.handlebars->119->2721"
5175 + "default.handlebars->121->2728",
5176 + "default3.handlebars->119->2725"
5177 ]
5178 },
5179 {
@@ -5202,8 +5202,8 @@
5202 "zh-chs": "帐户已更改:{0}",
5203 "zh-cht": "帳戶已更改:{0}",
5204 "xloc": [
5205 - "default.handlebars->121->2636",
5206 - "default3.handlebars->119->2633"
5205 + "default.handlebars->121->2640",
5206 + "default3.handlebars->119->2637"
5207 ]
5208 },
5209 {
@@ -5232,8 +5232,8 @@
5232 "zh-chs": "创建帐户,电子邮件为{0}",
5233 "zh-cht": "創建帳戶,電子郵件為{0}",
5234 "xloc": [
5235 - "default.handlebars->121->2635",
5236 - "default3.handlebars->119->2632"
5235 + "default.handlebars->121->2639",
5236 + "default3.handlebars->119->2636"
5237 ]
5238 },
5239 {
@@ -5262,8 +5262,8 @@
5262 "zh-chs": "已创建帐户,名称为 {0}。",
5263 "zh-cht": "已創建帳戶,名稱為 {0}。",
5264 "xloc": [
5265 - "default.handlebars->121->2698",
5266 - "default3.handlebars->119->2695"
5265 + "default.handlebars->121->2702",
5266 + "default3.handlebars->119->2699"
5267 ]
5268 },
5269 {
@@ -5292,8 +5292,8 @@
5292 "zh-chs": "创建帐户,用户名是{0}",
5293 "zh-cht": "帳戶已創建,用戶名是{0}",
5294 "xloc": [
5295 - "default.handlebars->121->2634",
5296 - "default3.handlebars->119->2631"
5295 + "default.handlebars->121->2638",
5296 + "default3.handlebars->119->2635"
5297 ]
5298 },
5299 {
@@ -5324,11 +5324,11 @@
5324 "xloc": [
5325 "default-mobile.handlebars->55->74",
5326 "default.handlebars->121->227",
5327 - "default.handlebars->121->2794",
5328 - "default.handlebars->121->2972",
5327 + "default.handlebars->121->2798",
5328 + "default.handlebars->121->2976",
5329 "default3.handlebars->119->224",
5330 - "default3.handlebars->119->2791",
5331 - "default3.handlebars->119->2967"
5330 + "default3.handlebars->119->2795",
5331 + "default3.handlebars->119->2971"
5332 ]
5333 },
5334 {
@@ -5357,9 +5357,9 @@
5357 "zh-chs": "达到帐户限制。",
5358 "zh-cht": "達到帳戶限制。",
5359 "xloc": [
5360 - "default-mobile.handlebars->55->1079",
5361 - "default.handlebars->121->3346",
5362 - "default3.handlebars->119->3337",
5360 + "default-mobile.handlebars->55->1080",
5361 + "default.handlebars->121->3350",
5362 + "default3.handlebars->119->3341",
5363 "login-mobile.handlebars->23->6",
5364 "login.handlebars->13->8",
5365 "login2.handlebars->17->206"
@@ -5422,8 +5422,8 @@
5422 "zh-chs": "帐号登录",
5423 "zh-cht": "帳號登錄",
5424 "xloc": [
5425 - "default.handlebars->121->2571",
5426 - "default3.handlebars->119->2568"
5425 + "default.handlebars->121->2575",
5426 + "default3.handlebars->119->2572"
5427 ]
5428 },
5429 {
@@ -5452,8 +5452,8 @@
5452 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
5453 "zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
5454 "xloc": [
5455 - "default.handlebars->121->2677",
5456 - "default3.handlebars->119->2674"
5455 + "default.handlebars->121->2681",
5456 + "default3.handlebars->119->2678"
5457 ]
5458 },
5459 {
@@ -5467,8 +5467,8 @@
5467 "pl": "Zapisy logowania tokenami użytkownika",
5468 "uk": "Записи токенів входу до акаунту",
5469 "xloc": [
5470 - "default.handlebars->121->3303",
5471 - "default3.handlebars->119->3294"
5470 + "default.handlebars->121->3307",
5471 + "default3.handlebars->119->3298"
5472 ]
5473 },
5474 {
@@ -5497,8 +5497,8 @@
5497 "zh-chs": "帐户登出",
5498 "zh-cht": "帳戶登出",
5499 "xloc": [
5500 - "default.handlebars->121->2572",
5501 - "default3.handlebars->119->2569"
5500 + "default.handlebars->121->2576",
5501 + "default3.handlebars->119->2573"
5502 ]
5503 },
5504 {
@@ -5558,8 +5558,8 @@
5558 "zh-chs": "帐户密码已更改:{0}",
5559 "zh-cht": "帳戶密碼已更改:{0}",
5560 "xloc": [
5561 - "default.handlebars->121->2644",
5562 - "default3.handlebars->119->2641"
5561 + "default.handlebars->121->2648",
5562 + "default3.handlebars->119->2645"
5563 ]
5564 },
5565 {
@@ -5588,8 +5588,8 @@
5588 "zh-chs": "帐户已删除",
5589 "zh-cht": "帳戶已刪除",
5590 "xloc": [
5591 - "default.handlebars->121->2633",
5592 - "default3.handlebars->119->2630"
5591 + "default.handlebars->121->2637",
5592 + "default3.handlebars->119->2634"
5593 ]
5594 },
5595 {
@@ -5648,10 +5648,10 @@
5648 "zh-chs": "指令",
5649 "zh-cht": "指令",
5650 "xloc": [
5651 - "default-mobile.handlebars->55->973",
5652 - "default.handlebars->121->1814",
5651 + "default-mobile.handlebars->55->974",
5652 + "default.handlebars->121->1818",
5653 "default.handlebars->container->column_l->p42->p42tbl->1->0->8",
5654 - "default3.handlebars->119->1797",
5654 + "default3.handlebars->119->1801",
5655 "default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
5656 ]
5657 },
@@ -5681,10 +5681,10 @@
5681 "zh-chs": "动作档案",
5682 "zh-cht": "動作檔案",
5683 "xloc": [
5684 - "default.handlebars->121->1342",
5685 - "default.handlebars->121->1344",
5686 - "default3.handlebars->119->1329",
5687 - "default3.handlebars->119->1331"
5684 + "default.handlebars->121->1346",
5685 + "default.handlebars->121->1348",
5686 + "default3.handlebars->119->1333",
5687 + "default3.handlebars->119->1335"
5688 ]
5689 },
5690 {
@@ -5717,11 +5717,11 @@
5717 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
5718 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
5719 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
5720 - "default.handlebars->121->1004",
5720 + "default.handlebars->121->1008",
5721 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
5722 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
5723 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
5724 - "default3.handlebars->119->1000",
5724 + "default3.handlebars->119->1004",
5725 "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
5726 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
5727 "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -5753,8 +5753,8 @@
5753 "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔&reg;AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
5754 "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾&reg;AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
5755 "xloc": [
5756 - "default.handlebars->121->541",
5757 - "default3.handlebars->119->537"
5756 + "default.handlebars->121->544",
5757 + "default3.handlebars->119->540"
5758 ]
5759 },
5760 {
@@ -5841,8 +5841,8 @@
5841 "zh-chs": "如果ACM失败,则激活到CCM",
5842 "zh-cht": "如果ACM失敗,則激活到CCM",
5843 "xloc": [
5844 - "default.handlebars->121->2329",
5845 - "default3.handlebars->119->2323"
5844 + "default.handlebars->121->2333",
5845 + "default3.handlebars->119->2327"
5846 ]
5847 },
5848 {
@@ -5873,16 +5873,16 @@
5873 "xloc": [
5874 "default-mobile.handlebars->55->499",
5875 "default-mobile.handlebars->55->501",
5876 - "default-mobile.handlebars->55->824",
5877 - "default-mobile.handlebars->55->858",
5878 - "default.handlebars->121->1664",
5879 - "default.handlebars->121->1698",
5880 - "default.handlebars->121->902",
5881 - "default.handlebars->121->904",
5882 - "default3.handlebars->119->1647",
5883 - "default3.handlebars->119->1681",
5884 - "default3.handlebars->119->898",
5885 - "default3.handlebars->119->900"
5876 + "default-mobile.handlebars->55->825",
5877 + "default-mobile.handlebars->55->859",
5878 + "default.handlebars->121->1668",
5879 + "default.handlebars->121->1702",
5880 + "default.handlebars->121->905",
5881 + "default.handlebars->121->907",
5882 + "default3.handlebars->119->1651",
5883 + "default3.handlebars->119->1685",
5884 + "default3.handlebars->119->901",
5885 + "default3.handlebars->119->903"
5886 ]
5887 },
5888 {
@@ -5941,10 +5941,10 @@
5941 "zh-chs": "主动设备共享",
5942 "zh-cht": "主動設備共享",
5943 "xloc": [
5944 - "default.handlebars->121->1080",
5945 - "default.handlebars->121->2278",
5946 - "default3.handlebars->119->1076",
5947 - "default3.handlebars->119->2274"
5944 + "default.handlebars->121->1084",
5945 + "default.handlebars->121->2282",
5946 + "default3.handlebars->119->1080",
5947 + "default3.handlebars->119->2278"
5948 ]
5949 },
5950 {
@@ -5973,8 +5973,8 @@
5973 "zh-chs": "活动登录令牌",
5974 "zh-cht": "活動登錄令牌",
5975 "xloc": [
5976 - "default.handlebars->121->2166",
5977 - "default3.handlebars->119->2166"
5976 + "default.handlebars->121->2170",
5977 + "default3.handlebars->119->2170"
5978 ]
5979 },
5980 {
@@ -6004,8 +6004,8 @@
6004 "zh-cht": "活躍用戶",
6005 "xloc": [
6006 "default-mobile.handlebars->55->781",
6007 - "default.handlebars->121->958",
6008 - "default3.handlebars->119->954"
6007 + "default.handlebars->121->961",
6008 + "default3.handlebars->119->957"
6009 ]
6010 },
6011 {
@@ -6035,8 +6035,8 @@
6035 "zh-cht": "活躍用戶",
6036 "xloc": [
6037 "default-mobile.handlebars->55->780",
6038 - "default.handlebars->121->957",
6039 - "default3.handlebars->119->953"
6038 + "default.handlebars->121->960",
6039 + "default3.handlebars->119->956"
6040 ]
6041 },
6042 {
@@ -6066,10 +6066,10 @@
6066 "zh-cht": "添加",
6067 "xloc": [
6068 "default-mobile.handlebars->55->666",
6069 - "default.handlebars->121->1432",
6070 - "default.handlebars->121->1438",
6071 - "default3.handlebars->119->1419",
6072 - "default3.handlebars->119->1425",
6069 + "default.handlebars->121->1436",
6070 + "default.handlebars->121->1442",
6071 + "default3.handlebars->119->1423",
6072 + "default3.handlebars->119->1429",
6073 "sharing-mobile.handlebars->55->41"
6074 ]
6075 },
@@ -6099,10 +6099,10 @@
6099 "zh-chs": "添加代理",
6100 "zh-cht": "新增代理",
6101 "xloc": [
6102 - "default.handlebars->121->2268",
6103 - "default.handlebars->121->507",
6104 - "default3.handlebars->119->2264",
6105 - "default3.handlebars->119->503"
6102 + "default.handlebars->121->2272",
6103 + "default.handlebars->121->510",
6104 + "default3.handlebars->119->2268",
6105 + "default3.handlebars->119->506"
6106 ]
6107 },
6108 {
@@ -6131,14 +6131,14 @@
6131 "zh-chs": "添加设备",
6132 "zh-cht": "新增裝置",
6133 "xloc": [
6134 - "default.handlebars->121->2272",
6135 - "default.handlebars->121->2947",
6136 - "default.handlebars->121->3142",
6137 - "default.handlebars->121->511",
6138 - "default3.handlebars->119->2268",
6139 - "default3.handlebars->119->2942",
6140 - "default3.handlebars->119->3131",
6141 - "default3.handlebars->119->507"
6134 + "default.handlebars->121->2276",
6135 + "default.handlebars->121->2951",
6136 + "default.handlebars->121->3146",
6137 + "default.handlebars->121->514",
6138 + "default3.handlebars->119->2272",
6139 + "default3.handlebars->119->2946",
6140 + "default3.handlebars->119->3135",
6141 + "default3.handlebars->119->510"
6142 ]
6143 },
6144 {
@@ -6167,8 +6167,8 @@
6167 "zh-chs": "添加设备日志",
6168 "zh-cht": "新增裝置日誌",
6169 "xloc": [
6170 - "default.handlebars->121->1166",
6171 - "default3.handlebars->119->1160"
6170 + "default.handlebars->121->1170",
6171 + "default3.handlebars->119->1164"
6172 ]
6173 },
6174 {
@@ -6197,14 +6197,14 @@
6197 "zh-chs": "添加设备组",
6198 "zh-cht": "新增裝置群",
6199 "xloc": [
6200 - "default.handlebars->121->2417",
6201 - "default.handlebars->121->2941",
6202 - "default.handlebars->121->3130",
6203 - "default.handlebars->121->407",
6204 - "default3.handlebars->119->2414",
6205 - "default3.handlebars->119->2936",
6206 - "default3.handlebars->119->3119",
6207 - "default3.handlebars->119->403"
6200 + "default.handlebars->121->2421",
6201 + "default.handlebars->121->2945",
6202 + "default.handlebars->121->3134",
6203 + "default.handlebars->121->410",
6204 + "default3.handlebars->119->2418",
6205 + "default3.handlebars->119->2940",
6206 + "default3.handlebars->119->3123",
6207 + "default3.handlebars->119->406"
6208 ]
6209 },
6210 {
@@ -6233,8 +6233,8 @@
6233 "zh-chs": "添加设备组权限",
6234 "zh-cht": "新增裝置群權限",
6235 "xloc": [
6236 - "default.handlebars->121->2414",
6237 - "default3.handlebars->119->2411"
6236 + "default.handlebars->121->2418",
6237 + "default3.handlebars->119->2415"
6238 ]
6239 },
6240 {
@@ -6263,10 +6263,10 @@
6263 "zh-chs": "添加设备权限",
6264 "zh-cht": "新增裝置權限",
6265 "xloc": [
6266 - "default.handlebars->121->2419",
6267 - "default.handlebars->121->2421",
6268 - "default3.handlebars->119->2416",
6269 - "default3.handlebars->119->2418"
6266 + "default.handlebars->121->2423",
6267 + "default.handlebars->121->2425",
6268 + "default3.handlebars->119->2420",
6269 + "default3.handlebars->119->2422"
6270 ]
6271 },
6272 {
@@ -6295,8 +6295,8 @@
6295 "zh-chs": "添加英特尔&reg;AMT设备",
6296 "zh-cht": "新增Intel&reg; AMT裝置",
6297 "xloc": [
6298 - "default.handlebars->121->531",
6299 - "default3.handlebars->119->527"
6298 + "default.handlebars->121->534",
6299 + "default3.handlebars->119->530"
6300 ]
6301 },
6302 {
@@ -6355,8 +6355,8 @@
6355 "zh-chs": "添加本地",
6356 "zh-cht": "新增本地",
6357 "xloc": [
6358 - "default.handlebars->121->501",
6359 - "default3.handlebars->119->497"
6358 + "default.handlebars->121->504",
6359 + "default3.handlebars->119->500"
6360 ]
6361 },
6362 {
@@ -6385,8 +6385,8 @@
6385 "zh-chs": "添加成员身份",
6386 "zh-cht": "新增成員身份",
6387 "xloc": [
6388 - "default.handlebars->121->3162",
6389 - "default3.handlebars->119->3151"
6388 + "default.handlebars->121->3166",
6389 + "default3.handlebars->119->3155"
6390 ]
6391 },
6392 {
@@ -6415,8 +6415,8 @@
6415 "zh-chs": "添加 Mesh Agent",
6416 "zh-cht": "新增 Mesh Agent",
6417 "xloc": [
6418 - "default.handlebars->121->702",
6419 - "default3.handlebars->119->698"
6418 + "default.handlebars->121->705",
6419 + "default3.handlebars->119->701"
6420 ]
6421 },
6422 {
@@ -6445,14 +6445,14 @@
6445 "zh-chs": "添加安全密钥",
6446 "zh-cht": "新增安全密鑰",
6447 "xloc": [
6448 - "default.handlebars->121->1881",
6449 - "default.handlebars->121->1882",
6448 + "default.handlebars->121->1885",
6449 + "default.handlebars->121->1886",
6450 "default.handlebars->121->261",
6451 "default.handlebars->121->263",
6452 "default.handlebars->121->266",
6453 "default.handlebars->121->268",
6454 - "default3.handlebars->119->1862",
6455 - "default3.handlebars->119->1863",
6454 + "default3.handlebars->119->1866",
6455 + "default3.handlebars->119->1867",
6456 "default3.handlebars->119->256",
6457 "default3.handlebars->119->258",
6458 "default3.handlebars->119->261",
@@ -6485,9 +6485,9 @@
6485 "zh-chs": "添加用户",
6486 "zh-cht": "新增用戶",
6487 "xloc": [
6488 - "default-mobile.handlebars->55->991",
6489 - "default.handlebars->121->1072",
6490 - "default3.handlebars->119->1068"
6488 + "default-mobile.handlebars->55->992",
6489 + "default.handlebars->121->1076",
6490 + "default3.handlebars->119->1072"
6491 ]
6492 },
6493 {
@@ -6516,8 +6516,8 @@
6516 "zh-chs": "添加用户设备权限",
6517 "zh-cht": "新增用戶裝置權限",
6518 "xloc": [
6519 - "default.handlebars->121->2424",
6520 - "default3.handlebars->119->2421"
6519 + "default.handlebars->121->2428",
6520 + "default3.handlebars->119->2425"
6521 ]
6522 },
6523 {
@@ -6546,14 +6546,14 @@
6546 "zh-chs": "添加用户组",
6547 "zh-cht": "新增用戶群",
6548 "xloc": [
6549 - "default.handlebars->121->1073",
6550 - "default.handlebars->121->2262",
6551 - "default.handlebars->121->2416",
6552 - "default.handlebars->121->3136",
6553 - "default3.handlebars->119->1069",
6554 - "default3.handlebars->119->2258",
6555 - "default3.handlebars->119->2413",
6556 - "default3.handlebars->119->3125"
6549 + "default.handlebars->121->1077",
6550 + "default.handlebars->121->2266",
6551 + "default.handlebars->121->2420",
6552 + "default.handlebars->121->3140",
6553 + "default3.handlebars->119->1073",
6554 + "default3.handlebars->119->2262",
6555 + "default3.handlebars->119->2417",
6556 + "default3.handlebars->119->3129"
6557 ]
6558 },
6559 {
@@ -6582,8 +6582,8 @@
6582 "zh-chs": "添加用户组设备权限",
6583 "zh-cht": "新增用戶群裝置權限",
6584 "xloc": [
6585 - "default.handlebars->121->2426",
6586 - "default3.handlebars->119->2423"
6585 + "default.handlebars->121->2430",
6586 + "default3.handlebars->119->2427"
6587 ]
6588 },
6589 {
@@ -6612,7 +6612,7 @@
6612 "zh-chs": "将用户添加到设备组",
6613 "zh-cht": "將用戶新增到裝置群",
6614 "xloc": [
6615 - "default-mobile.handlebars->55->1032"
6615 + "default-mobile.handlebars->55->1033"
6616 ]
6617 },
6618 {
@@ -6641,10 +6641,10 @@
6641 "zh-chs": "添加用户",
6642 "zh-cht": "新增用戶",
6643 "xloc": [
6644 - "default.handlebars->121->2261",
6645 - "default.handlebars->121->2936",
6646 - "default3.handlebars->119->2257",
6647 - "default3.handlebars->119->2931"
6644 + "default.handlebars->121->2265",
6645 + "default.handlebars->121->2940",
6646 + "default3.handlebars->119->2261",
6647 + "default3.handlebars->119->2935"
6648 ]
6649 },
6650 {
@@ -6673,8 +6673,8 @@
6673 "zh-chs": "将用户添加到设备组",
6674 "zh-cht": "將用戶新增到裝置群",
6675 "xloc": [
6676 - "default.handlebars->121->2413",
6677 - "default3.handlebars->119->2410"
6676 + "default.handlebars->121->2417",
6677 + "default3.handlebars->119->2414"
6678 ]
6679 },
6680 {
@@ -6703,8 +6703,8 @@
6703 "zh-chs": "将用户添加到用户组",
6704 "zh-cht": "將用戶新增到用戶群",
6705 "xloc": [
6706 - "default.handlebars->121->2971",
6707 - "default3.handlebars->119->2966"
6706 + "default.handlebars->121->2975",
6707 + "default3.handlebars->119->2970"
6708 ]
6709 },
6710 {
@@ -6763,8 +6763,8 @@
6763 "zh-chs": "将本地设备添加到设备组 \\\"{0}\\\"。",
6764 "zh-cht": "將本地設備添加到設備組 \\\"{0}\\\"。",
6765 "xloc": [
6766 - "default.handlebars->121->512",
6767 - "default3.handlebars->119->508"
6766 + "default.handlebars->121->515",
6767 + "default3.handlebars->119->511"
6768 ]
6769 },
6770 {
@@ -6793,8 +6793,8 @@
6793 "zh-chs": "通过扫描本地网络添加新的英特尔&reg;AMT计算机。",
6794 "zh-cht": "通過掃描本地網絡新增新的Intel&reg; AMT電腦。",
6795 "xloc": [
6796 - "default.handlebars->121->502",
6797 - "default3.handlebars->119->498"
6796 + "default.handlebars->121->505",
6797 + "default3.handlebars->119->501"
6798 ]
6799 },
6800 {
@@ -6823,8 +6823,8 @@
6823 "zh-chs": "添加位于本地网络上的新英特尔&reg;AMT计算机。",
6824 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
6825 "xloc": [
6826 - "default.handlebars->121->500",
6827 - "default3.handlebars->119->496"
6826 + "default.handlebars->121->503",
6827 + "default3.handlebars->119->499"
6828 ]
6829 },
6830 {
@@ -6853,8 +6853,8 @@
6853 "zh-chs": "将新的英特尔&reg;AMT设备添加到设备组“{0}”。",
6854 "zh-cht": "將新的Intel&reg; AMT裝置新增到裝置群“{0}”。",
6855 "xloc": [
6856 - "default.handlebars->121->521",
6857 - "default3.handlebars->119->517"
6856 + "default.handlebars->121->524",
6857 + "default3.handlebars->119->520"
6858 ]
6859 },
6860 {
@@ -6883,10 +6883,10 @@
6883 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
6884 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
6885 "xloc": [
6886 - "default.handlebars->121->2267",
6887 - "default.handlebars->121->506",
6888 - "default3.handlebars->119->2263",
6889 - "default3.handlebars->119->502"
6886 + "default.handlebars->121->2271",
6887 + "default.handlebars->121->509",
6888 + "default3.handlebars->119->2267",
6889 + "default3.handlebars->119->505"
6890 ]
6891 },
6892 {
@@ -6915,10 +6915,10 @@
6915 "zh-chs": "添加位于本地网络上的设备。",
6916 "zh-cht": "添加位於本地網絡上的設備。",
6917 "xloc": [
6918 - "default.handlebars->121->2271",
6919 - "default.handlebars->121->510",
6920 - "default3.handlebars->119->2267",
6921 - "default3.handlebars->119->506"
6918 + "default.handlebars->121->2275",
6919 + "default.handlebars->121->513",
6920 + "default3.handlebars->119->2271",
6921 + "default3.handlebars->119->509"
6922 ]
6923 },
6924 {
@@ -6947,8 +6947,8 @@
6947 "zh-chs": "添加本地设备",
6948 "zh-cht": "添加本地設備",
6949 "xloc": [
6950 - "default.handlebars->121->520",
6951 - "default3.handlebars->119->516"
6950 + "default.handlebars->121->523",
6951 + "default3.handlebars->119->519"
6952 ]
6953 },
6954 {
@@ -6977,8 +6977,8 @@
6977 "zh-chs": "添加标签",
6978 "zh-cht": "新增標籤",
6979 "xloc": [
6980 - "default.handlebars->121->778",
6981 - "default3.handlebars->119->774"
6980 + "default.handlebars->121->781",
6981 + "default3.handlebars->119->777"
6982 ]
6983 },
6984 {
@@ -7007,8 +7007,8 @@
7007 "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel&reg; AMT以将“{0}”分组。",
7008 "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel&reg; AMT以將“{0}”分組。",
7009 "xloc": [
7010 - "default.handlebars->121->538",
7011 - "default3.handlebars->119->534"
7010 + "default.handlebars->121->541",
7011 + "default3.handlebars->119->537"
7012 ]
7013 },
7014 {
@@ -7037,8 +7037,8 @@
7037 "zh-chs": "添加了身份验证应用程序",
7038 "zh-cht": "添加了身份驗證應用程序",
7039 "xloc": [
7040 - "default.handlebars->121->2660",
7041 - "default3.handlebars->119->2657"
7040 + "default.handlebars->121->2664",
7041 + "default3.handlebars->119->2661"
7042 ]
7043 },
7044 {
@@ -7067,8 +7067,8 @@
7067 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
7068 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
7069 "xloc": [
7070 - "default.handlebars->121->2671",
7071 - "default3.handlebars->119->2668"
7070 + "default.handlebars->121->2675",
7071 + "default3.handlebars->119->2672"
7072 ]
7073 },
7074 {
@@ -7097,8 +7097,8 @@
7097 "zh-chs": "添加了每天重复的设备共享 {0}。",
7098 "zh-cht": "添加了每天重複的設備共享 {0}。",
7099 "xloc": [
7100 - "default.handlebars->121->2708",
7101 - "default3.handlebars->119->2705"
7100 + "default.handlebars->121->2712",
7101 + "default3.handlebars->119->2709"
7102 ]
7103 },
7104 {
@@ -7127,8 +7127,8 @@
7127 "zh-chs": "添加了每周重复的设备共享 {0}。",
7128 "zh-cht": "添加了每週重複的設備共享 {0}。",
7129 "xloc": [
7130 - "default.handlebars->121->2709",
7131 - "default3.handlebars->119->2706"
7130 + "default.handlebars->121->2713",
7131 + "default3.handlebars->119->2710"
7132 ]
7133 },
7134 {
@@ -7157,8 +7157,8 @@
7157 "zh-chs": "添加了无限时间的设备共享 {0}。",
7158 "zh-cht": "添加了無限時間的設備共享 {0}。",
7159 "xloc": [
7160 - "default.handlebars->121->2701",
7161 - "default3.handlebars->119->2698"
7160 + "default.handlebars->121->2705",
7161 + "default3.handlebars->119->2702"
7162 ]
7163 },
7164 {
@@ -7187,10 +7187,10 @@
7187 "zh-chs": "已将设备{0}添加到设备组{1}",
7188 "zh-cht": "已將設備{0}添加到設備組{1}",
7189 "xloc": [
7190 - "default.handlebars->121->2627",
7191 - "default.handlebars->121->2654",
7192 - "default3.handlebars->119->2624",
7193 - "default3.handlebars->119->2651"
7190 + "default.handlebars->121->2631",
7191 + "default.handlebars->121->2658",
7192 + "default3.handlebars->119->2628",
7193 + "default3.handlebars->119->2655"
7194 ]
7195 },
7196 {
@@ -7219,8 +7219,8 @@
7219 "zh-chs": "添加登录令牌",
7220 "zh-cht": "添加了登錄令牌",
7221 "xloc": [
7222 - "default.handlebars->121->2685",
7223 - "default3.handlebars->119->2682"
7222 + "default.handlebars->121->2689",
7223 + "default3.handlebars->119->2686"
7224 ]
7225 },
7226 {
@@ -7249,8 +7249,8 @@
7249 "zh-chs": "新增推送通知认证装置",
7250 "zh-cht": "增加推送通知認證設備",
7251 "xloc": [
7252 - "default.handlebars->121->2683",
7253 - "default3.handlebars->119->2680"
7252 + "default.handlebars->121->2687",
7253 + "default3.handlebars->119->2684"
7254 ]
7255 },
7256 {
@@ -7279,8 +7279,8 @@
7279 "zh-chs": "添加了安全密钥",
7280 "zh-cht": "添加了安全密鑰",
7281 "xloc": [
7282 - "default.handlebars->121->2665",
7283 - "default3.handlebars->119->2662"
7282 + "default.handlebars->121->2669",
7283 + "default3.handlebars->119->2666"
7284 ]
7285 },
7286 {
@@ -7309,8 +7309,8 @@
7309 "zh-chs": "已将用户组{0}添加到设备组{1}",
7310 "zh-cht": "已將用戶組{0}添加到設備組{1}",
7311 "xloc": [
7312 - "default.handlebars->121->2638",
7313 - "default3.handlebars->119->2635"
7312 + "default.handlebars->121->2642",
7313 + "default3.handlebars->119->2639"
7314 ]
7315 },
7316 {
@@ -7339,10 +7339,10 @@
7339 "zh-chs": "已将用户{0}添加到用户组{1}",
7340 "zh-cht": "已將用戶{0}添加到用戶組{1}",
7341 "xloc": [
7342 - "default.handlebars->121->2641",
7343 - "default.handlebars->121->2650",
7344 - "default3.handlebars->119->2638",
7345 - "default3.handlebars->119->2647"
7342 + "default.handlebars->121->2645",
7343 + "default.handlebars->121->2654",
7344 + "default3.handlebars->119->2642",
7345 + "default3.handlebars->119->2651"
7346 ]
7347 },
7348 {
@@ -7371,8 +7371,8 @@
7371 "zh-chs": "地址",
7372 "zh-cht": "地址",
7373 "xloc": [
7374 - "default.handlebars->121->400",
7375 - "default3.handlebars->119->396"
7374 + "default.handlebars->121->403",
7375 + "default3.handlebars->119->399"
7376 ]
7377 },
7378 {
@@ -7430,9 +7430,9 @@
7430 "zh-chs": "管理员控制模式(ACM)",
7431 "zh-cht": "管理員控制模式(ACM)",
7432 "xloc": [
7433 - "default-mobile.handlebars->55->826",
7434 - "default.handlebars->121->1666",
7435 - "default3.handlebars->119->1649"
7433 + "default-mobile.handlebars->55->827",
7434 + "default.handlebars->121->1670",
7435 + "default3.handlebars->119->1653"
7436 ]
7437 },
7438 {
@@ -7461,9 +7461,9 @@
7461 "zh-chs": "管理员凭证",
7462 "zh-cht": "管理員憑證",
7463 "xloc": [
7464 - "default-mobile.handlebars->55->832",
7465 - "default.handlebars->121->1672",
7466 - "default3.handlebars->119->1655"
7464 + "default-mobile.handlebars->55->833",
7465 + "default.handlebars->121->1676",
7466 + "default3.handlebars->119->1659"
7467 ]
7468 },
7469 {
@@ -7492,15 +7492,15 @@
7492 "zh-chs": "管理员PowerShell",
7493 "zh-cht": "管理員PowerShell",
7494 "xloc": [
7495 - "default.handlebars->121->3182",
7496 - "default.handlebars->121->3192",
7497 - "default.handlebars->121->3257",
7498 - "default.handlebars->121->3310",
7495 + "default.handlebars->121->3186",
7496 + "default.handlebars->121->3196",
7497 + "default.handlebars->121->3261",
7498 + "default.handlebars->121->3314",
7499 "default.handlebars->termShellContextMenu->3",
7500 - "default3.handlebars->119->3173",
7501 - "default3.handlebars->119->3183",
7502 - "default3.handlebars->119->3248",
7503 - "default3.handlebars->119->3301",
7500 + "default3.handlebars->119->3177",
7501 + "default3.handlebars->119->3187",
7502 + "default3.handlebars->119->3252",
7503 + "default3.handlebars->119->3305",
7504 "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0",
7505 "player.handlebars->31->29",
7506 "xterm.handlebars->termShellContextMenu->cxtermps"
@@ -7532,8 +7532,8 @@
7532 "zh-chs": "管理领域",
7533 "zh-cht": "管理領域",
7534 "xloc": [
7535 - "default.handlebars->121->3023",
7536 - "default3.handlebars->119->3018"
7535 + "default.handlebars->121->3027",
7536 + "default3.handlebars->119->3022"
7537 ]
7538 },
7539 {
@@ -7593,8 +7593,8 @@
7593 "zh-chs": "管理领域",
7594 "zh-cht": "管理領域",
7595 "xloc": [
7596 - "default.handlebars->121->2868",
7597 - "default3.handlebars->119->2863"
7596 + "default.handlebars->121->2872",
7597 + "default3.handlebars->119->2867"
7598 ]
7599 },
7600 {
@@ -7623,8 +7623,8 @@
7623 "zh-chs": "管理员",
7624 "zh-cht": "管理員",
7625 "xloc": [
7626 - "default.handlebars->121->2786",
7627 - "default3.handlebars->119->2783"
7626 + "default.handlebars->121->2790",
7627 + "default3.handlebars->119->2787"
7628 ]
7629 },
7630 {
@@ -7654,8 +7654,8 @@
7654 "zh-cht": "南非文",
7655 "xloc": [
7656 "default-mobile.handlebars->55->120",
7657 - "default.handlebars->121->1884",
7658 - "default3.handlebars->119->1865",
7657 + "default.handlebars->121->1888",
7658 + "default3.handlebars->119->1869",
7659 "login2.handlebars->17->1"
7660 ]
7661 },
@@ -7689,18 +7689,18 @@
7689 "default-mobile.handlebars->55->463",
7690 "default-mobile.handlebars->55->520",
7691 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7692 - "default.handlebars->121->2497",
7693 - "default.handlebars->121->2510",
7694 - "default.handlebars->121->3408",
7695 - "default.handlebars->121->427",
7696 - "default.handlebars->121->734",
7692 + "default.handlebars->121->2501",
7693 + "default.handlebars->121->2514",
7694 + "default.handlebars->121->3412",
7695 + "default.handlebars->121->430",
7696 + "default.handlebars->121->737",
7697 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7698 "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
7699 - "default3.handlebars->119->2494",
7700 - "default3.handlebars->119->2507",
7701 - "default3.handlebars->119->3399",
7702 - "default3.handlebars->119->423",
7703 - "default3.handlebars->119->730",
7699 + "default3.handlebars->119->2498",
7700 + "default3.handlebars->119->2511",
7701 + "default3.handlebars->119->3403",
7702 + "default3.handlebars->119->426",
7703 + "default3.handlebars->119->733",
7704 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7705 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7meshkvm"
7706 ]
@@ -7731,10 +7731,10 @@
7731 "zh-chs": "代理+英特尔AMT",
7732 "zh-cht": "代理+Intel&reg; AMT",
7733 "xloc": [
7734 - "default.handlebars->121->2499",
7735 - "default.handlebars->121->2512",
7736 - "default3.handlebars->119->2496",
7737 - "default3.handlebars->119->2509"
7734 + "default.handlebars->121->2503",
7735 + "default.handlebars->121->2516",
7736 + "default3.handlebars->119->2500",
7737 + "default3.handlebars->119->2513"
7738 ]
7739 },
7740 {
@@ -7794,12 +7794,12 @@
7794 "zh-chs": "代理控制台",
7795 "zh-cht": "代理控制台",
7796 "xloc": [
7797 - "default-mobile.handlebars->55->1038",
7797 + "default-mobile.handlebars->55->1039",
7798 "default-mobile.handlebars->55->602",
7799 - "default.handlebars->121->2434",
7800 - "default.handlebars->121->824",
7801 - "default3.handlebars->119->2431",
7802 - "default3.handlebars->119->820"
7799 + "default.handlebars->121->2438",
7800 + "default.handlebars->121->827",
7801 + "default3.handlebars->119->2435",
7802 + "default3.handlebars->119->823"
7803 ]
7804 },
7805 {
@@ -7828,8 +7828,8 @@
7828 "zh-chs": "代理错误计数器",
7829 "zh-cht": "代理錯誤計數器",
7830 "xloc": [
7831 - "default.handlebars->121->3376",
7832 - "default3.handlebars->119->3367"
7831 + "default.handlebars->121->3380",
7832 + "default3.handlebars->119->3371"
7833 ]
7834 },
7835 {
@@ -7858,8 +7858,8 @@
7858 "zh-chs": "代理IP地址",
7859 "zh-cht": "代理 IP 地址",
7860 "xloc": [
7861 - "default.handlebars->121->368",
7862 - "default3.handlebars->119->364"
7861 + "default.handlebars->121->369",
7862 + "default3.handlebars->119->365"
7863 ]
7864 },
7865 {
@@ -7935,8 +7935,8 @@
7935 "zh-cht": "代理訊息",
7936 "xloc": [
7937 "default-mobile.handlebars->55->436",
7938 - "default.handlebars->121->491",
7939 - "default3.handlebars->119->487"
7938 + "default.handlebars->121->494",
7939 + "default3.handlebars->119->490"
7940 ]
7941 },
7942 {
@@ -8025,10 +8025,10 @@
8025 "zh-chs": "代理自行共享",
8026 "zh-cht": "代理自行共享",
8027 "xloc": [
8028 - "default.handlebars->121->1101",
8029 - "default.handlebars->121->2299",
8030 - "default3.handlebars->119->1097",
8031 - "default3.handlebars->119->2295"
8028 + "default.handlebars->121->1105",
8029 + "default.handlebars->121->2303",
8030 + "default3.handlebars->119->1101",
8031 + "default3.handlebars->119->2299"
8032 ]
8033 },
8034 {
@@ -8057,8 +8057,8 @@
8057 "zh-chs": "代理会话",
8058 "zh-cht": "代理時段",
8059 "xloc": [
8060 - "default.handlebars->121->3393",
8061 - "default3.handlebars->119->3384"
8060 + "default.handlebars->121->3397",
8061 + "default3.handlebars->119->3388"
8062 ]
8063 },
8064 {
@@ -8088,8 +8088,8 @@
8088 "zh-cht": "代理標籤",
8089 "xloc": [
8090 "default-mobile.handlebars->55->517",
8091 - "default.handlebars->121->925",
8092 - "default3.handlebars->119->921"
8091 + "default.handlebars->121->928",
8092 + "default3.handlebars->119->924"
8093 ]
8094 },
8095 {
@@ -8119,9 +8119,9 @@
8119 "zh-cht": "代理類型",
8120 "xloc": [
8121 "default.handlebars->121->357",
8122 - "default.handlebars->121->390",
8122 + "default.handlebars->121->391",
8123 "default3.handlebars->119->353",
8124 - "default3.handlebars->119->386"
8124 + "default3.handlebars->119->387"
8125 ]
8126 },
8127 {
@@ -8150,9 +8150,9 @@
8150 "zh-chs": "代理类型",
8151 "zh-cht": "代理類型",
8152 "xloc": [
8153 - "default.handlebars->121->2508",
8153 + "default.handlebars->121->2512",
8154 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
8155 - "default3.handlebars->119->2505",
8155 + "default3.handlebars->119->2509",
8156 "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
8157 ]
8158 },
@@ -8183,9 +8183,9 @@
8183 "zh-cht": "代理版本",
8184 "xloc": [
8185 "default.handlebars->121->358",
8186 - "default.handlebars->121->391",
8186 + "default.handlebars->121->392",
8187 "default3.handlebars->119->354",
8188 - "default3.handlebars->119->387"
8188 + "default3.handlebars->119->388"
8189 ]
8190 },
8191 {
@@ -8214,8 +8214,8 @@
8214 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
8215 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
8216 "xloc": [
8217 - "default.handlebars->121->2624",
8218 - "default3.handlebars->119->2621"
8217 + "default.handlebars->121->2628",
8218 + "default3.handlebars->119->2625"
8219 ]
8220 },
8221 {
@@ -8244,11 +8244,11 @@
8244 "zh-chs": "代理已连接",
8245 "zh-cht": "代理已連接",
8246 "xloc": [
8247 - "default.handlebars->121->1059",
8248 - "default.handlebars->121->1060",
8247 + "default.handlebars->121->1063",
8248 + "default.handlebars->121->1064",
8249 "default.handlebars->121->277",
8250 - "default3.handlebars->119->1055",
8251 - "default3.handlebars->119->1056",
8250 + "default3.handlebars->119->1059",
8251 + "default3.handlebars->119->1060",
8252 "default3.handlebars->119->272"
8253 ]
8254 },
@@ -8368,9 +8368,9 @@
8368 "zh-chs": "代理离线",
8369 "zh-cht": "代理離線",
8370 "xloc": [
8371 - "default-mobile.handlebars->55->956",
8372 - "default.handlebars->121->1797",
8373 - "default3.handlebars->119->1780"
8371 + "default-mobile.handlebars->55->957",
8372 + "default.handlebars->121->1801",
8373 + "default3.handlebars->119->1784"
8374 ]
8375 },
8376 {
@@ -8399,9 +8399,9 @@
8399 "zh-chs": "代理在线",
8400 "zh-cht": "代理在線",
8401 "xloc": [
8402 - "default-mobile.handlebars->55->955",
8403 - "default.handlebars->121->1796",
8404 - "default3.handlebars->119->1779"
8402 + "default-mobile.handlebars->55->956",
8403 + "default.handlebars->121->1800",
8404 + "default3.handlebars->119->1783"
8405 ]
8406 },
8407 {
@@ -8430,8 +8430,8 @@
8430 "zh-chs": "代理在特权降低的远程设备上运行。",
8431 "zh-cht": "代理在特權降低的遠程設備上運行。",
8432 "xloc": [
8433 - "default.handlebars->121->1053",
8434 - "default3.handlebars->119->1049"
8433 + "default.handlebars->121->1057",
8434 + "default3.handlebars->119->1053"
8435 ]
8436 },
8437 {
@@ -8460,12 +8460,12 @@
8460 "zh-chs": "代理",
8461 "zh-cht": "代理",
8462 "xloc": [
8463 - "default.handlebars->121->2465",
8464 - "default.handlebars->121->3421",
8465 - "default.handlebars->121->594",
8466 - "default3.handlebars->119->2462",
8467 - "default3.handlebars->119->3412",
8468 - "default3.handlebars->119->590"
8463 + "default.handlebars->121->2469",
8464 + "default.handlebars->121->3425",
8465 + "default.handlebars->121->597",
8466 + "default3.handlebars->119->2466",
8467 + "default3.handlebars->119->3416",
8468 + "default3.handlebars->119->593"
8469 ]
8470 },
8471 {
@@ -8495,8 +8495,8 @@
8495 "zh-cht": "阿爾巴尼亞文",
8496 "xloc": [
8497 "default-mobile.handlebars->55->121",
8498 - "default.handlebars->121->1885",
8499 - "default3.handlebars->119->1866",
8498 + "default.handlebars->121->1889",
8499 + "default3.handlebars->119->1870",
8500 "login2.handlebars->17->2"
8501 ]
8502 },
@@ -8507,10 +8507,10 @@
8507 "pl": "Okno Powiadomienia",
8508 "uk": "Вікно Попередження",
8509 "xloc": [
8510 - "default.handlebars->121->1185",
8511 - "default.handlebars->121->787",
8512 - "default3.handlebars->119->1179",
8513 - "default3.handlebars->119->783"
8510 + "default.handlebars->121->1189",
8511 + "default.handlebars->121->790",
8512 + "default3.handlebars->119->1183",
8513 + "default3.handlebars->119->786"
8514 ]
8515 },
8516 {
@@ -8542,9 +8542,9 @@
8542 "default-mobile.handlebars->55->377",
8543 "default-mobile.handlebars->55->703",
8544 "default-mobile.handlebars->55->705",
8545 - "default.handlebars->121->3225",
8545 + "default.handlebars->121->3229",
8546 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
8547 - "default3.handlebars->119->3216",
8547 + "default3.handlebars->119->3220",
8548 "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1",
8549 "sharing-mobile.handlebars->55->79",
8550 "sharing-mobile.handlebars->55->81"
@@ -8576,8 +8576,8 @@
8576 "zh-chs": "全部可用",
8577 "zh-cht": "全部可用",
8578 "xloc": [
8579 - "default.handlebars->121->2748",
8580 - "default3.handlebars->119->2745"
8579 + "default.handlebars->121->2752",
8580 + "default3.handlebars->119->2749"
8581 ]
8582 },
8583 {
@@ -8606,10 +8606,10 @@
8606 "zh-chs": "所有可用的代理",
8607 "zh-cht": "所有可用的代理",
8608 "xloc": [
8609 - "default.handlebars->121->2466",
8610 - "default.handlebars->121->595",
8611 - "default3.handlebars->119->2463",
8612 - "default3.handlebars->119->591"
8609 + "default.handlebars->121->2470",
8610 + "default.handlebars->121->598",
8611 + "default3.handlebars->119->2467",
8612 + "default3.handlebars->119->594"
8613 ]
8614 },
8615 {
@@ -8638,8 +8638,8 @@
8638 "zh-chs": "所有显示",
8639 "zh-cht": "所有顯示",
8640 "xloc": [
8641 - "default.handlebars->121->1483",
8642 - "default3.handlebars->119->1468"
8641 + "default.handlebars->121->1487",
8642 + "default3.handlebars->119->1472"
8643 ]
8644 },
8645 {
@@ -8668,8 +8668,8 @@
8668 "zh-chs": "所有事件",
8669 "zh-cht": "所有事件",
8670 "xloc": [
8671 - "default.handlebars->121->2746",
8672 - "default3.handlebars->119->2743"
8671 + "default.handlebars->121->2750",
8672 + "default3.handlebars->119->2747"
8673 ]
8674 },
8675 {
@@ -8698,12 +8698,12 @@
8698 "zh-chs": "全部聚焦",
8699 "zh-cht": "全部聚焦",
8700 "xloc": [
8701 - "default.handlebars->121->1401",
8702 - "default.handlebars->121->1403",
8703 - "default.handlebars->121->1404",
8704 - "default3.handlebars->119->1387",
8705 - "default3.handlebars->119->1390",
8706 - "default3.handlebars->119->1391"
8701 + "default.handlebars->121->1405",
8702 + "default.handlebars->121->1407",
8703 + "default.handlebars->121->1408",
8704 + "default3.handlebars->119->1391",
8705 + "default3.handlebars->119->1394",
8706 + "default3.handlebars->119->1395"
8707 ]
8708 },
8709 {
@@ -8744,7 +8744,7 @@
8744 "zh-chs": "所有主题",
8745 "zh-cht": "所有主題",
8746 "xloc": [
8747 - "default3.handlebars->119->2134"
8747 + "default3.handlebars->119->2138"
8748 ]
8749 },
8750 {
@@ -8779,8 +8779,8 @@
8779 {
8780 "en": "Allow to override server device name until next connection",
8781 "xloc": [
8782 - "default.handlebars->121->2371",
8783 - "default3.handlebars->119->2368"
8782 + "default.handlebars->121->2375",
8783 + "default3.handlebars->119->2372"
8784 ]
8785 },
8786 {
@@ -8809,10 +8809,10 @@
8809 "zh-chs": "允许用户管理此设备组和该组中的设备。",
8810 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
8811 "xloc": [
8812 - "default.handlebars->121->2378",
8813 - "default.handlebars->121->2968",
8814 - "default3.handlebars->119->2375",
8815 - "default3.handlebars->119->2963"
8812 + "default.handlebars->121->2382",
8813 + "default.handlebars->121->2972",
8814 + "default3.handlebars->119->2379",
8815 + "default3.handlebars->119->2967"
8816 ]
8817 },
8818 {
@@ -8841,8 +8841,8 @@
8841 "zh-chs": "允许用户管理此设备。",
8842 "zh-cht": "允許用戶管理此裝置。",
8843 "xloc": [
8844 - "default.handlebars->121->2379",
8845 - "default3.handlebars->119->2376"
8844 + "default.handlebars->121->2383",
8845 + "default3.handlebars->119->2380"
8846 ]
8847 },
8848 {
@@ -8934,10 +8934,10 @@
8934 "xloc": [
8935 "default-mobile.handlebars->55->659",
8936 "default-mobile.handlebars->55->663",
8937 - "default.handlebars->121->1425",
8937 "default.handlebars->121->1429",
8939 - "default3.handlebars->119->1412",
8938 + "default.handlebars->121->1433",
8939 "default3.handlebars->119->1416",
8940 + "default3.handlebars->119->1420",
8941 "sharing-mobile.handlebars->55->34",
8942 "sharing-mobile.handlebars->55->38"
8943 ]
@@ -8968,8 +8968,8 @@
8968 "zh-chs": "替代Shell",
8969 "zh-cht": "替代Shell",
8970 "xloc": [
8971 - "default.handlebars->121->1391",
8972 - "default3.handlebars->119->1377"
8971 + "default.handlebars->121->1395",
8972 + "default3.handlebars->119->1381"
8973 ]
8974 },
8975 {
@@ -9060,8 +9060,8 @@
9060 "zh-chs": "备用(F10 = ESC + 0)",
9061 "zh-cht": "備用(F10 = ESC + 0)",
9062 "xloc": [
9063 - "default.handlebars->121->1517",
9064 - "default3.handlebars->119->1502",
9063 + "default.handlebars->121->1521",
9064 + "default3.handlebars->119->1506",
9065 "sharing.handlebars->49->37"
9066 ]
9067 },
@@ -9132,14 +9132,14 @@
9132 "zh-chs": "一直通知",
9133 "zh-cht": "一直通知",
9134 "xloc": [
9135 - "default.handlebars->121->2238",
9136 - "default.handlebars->121->2927",
9137 - "default.handlebars->121->3032",
9138 - "default.handlebars->121->967",
9139 - "default3.handlebars->119->2234",
9140 - "default3.handlebars->119->2922",
9141 - "default3.handlebars->119->3027",
9142 - "default3.handlebars->119->963"
9135 + "default.handlebars->121->2242",
9136 + "default.handlebars->121->2931",
9137 + "default.handlebars->121->3036",
9138 + "default.handlebars->121->971",
9139 + "default3.handlebars->119->2238",
9140 + "default3.handlebars->119->2926",
9141 + "default3.handlebars->119->3031",
9142 + "default3.handlebars->119->967"
9143 ]
9144 },
9145 {
@@ -9168,22 +9168,22 @@
9168 "zh-chs": "一直提示",
9169 "zh-cht": "一直提示",
9170 "xloc": [
9171 - "default.handlebars->121->2239",
9172 - "default.handlebars->121->2928",
9173 - "default.handlebars->121->3033",
9174 - "default.handlebars->121->968",
9175 - "default3.handlebars->119->2235",
9176 - "default3.handlebars->119->2923",
9177 - "default3.handlebars->119->3028",
9178 - "default3.handlebars->119->964"
9171 + "default.handlebars->121->2243",
9172 + "default.handlebars->121->2932",
9173 + "default.handlebars->121->3037",
9174 + "default.handlebars->121->972",
9175 + "default3.handlebars->119->2239",
9176 + "default3.handlebars->119->2927",
9177 + "default3.handlebars->119->3032",
9178 + "default3.handlebars->119->968"
9179 ]
9180 },
9181 {
9182 "en": "Amazon App Store",
9183 "nl": "Amazon App Store",
9184 "xloc": [
9185 - "default.handlebars->121->662",
9186 - "default3.handlebars->119->658"
9185 + "default.handlebars->121->665",
9186 + "default3.handlebars->119->661"
9187 ]
9188 },
9189 {
@@ -9256,8 +9256,8 @@
9256 "pl": "Wystąpił nieznany błąd.",
9257 "uk": "Сталася невідома помилка.",
9258 "xloc": [
9259 - "default.handlebars->121->3171",
9260 - "default3.handlebars->119->3162"
9259 + "default.handlebars->121->3175",
9260 + "default3.handlebars->119->3166"
9261 ]
9262 },
9263 {
@@ -9322,9 +9322,9 @@
9322 "zh-chs": "Android APK",
9323 "zh-cht": "Android APK",
9324 "xloc": [
9325 - "default-mobile.handlebars->55->1010",
9326 - "default.handlebars->121->663",
9327 - "default3.handlebars->119->659"
9325 + "default-mobile.handlebars->55->1011",
9326 + "default.handlebars->121->666",
9327 + "default3.handlebars->119->662"
9328 ]
9329 },
9330 {
@@ -9382,7 +9382,7 @@
9382 "zh-chs": "安卓安装",
9383 "zh-cht": "安卓安裝",
9384 "xloc": [
9385 - "default-mobile.handlebars->55->1012"
9385 + "default-mobile.handlebars->55->1013"
9386 ]
9387 },
9388 {
@@ -9391,8 +9391,8 @@
9391 "nl": "Android MeshAgent",
9392 "uk": "Android MeshAgent",
9393 "xloc": [
9394 - "default.handlebars->121->600",
9395 - "default3.handlebars->119->596"
9394 + "default.handlebars->121->603",
9395 + "default3.handlebars->119->599"
9396 ]
9397 },
9398 {
@@ -9401,9 +9401,9 @@
9401 "nl": "Android Versie",
9402 "uk": "Версія Android",
9403 "xloc": [
9404 - "default-mobile.handlebars->55->799",
9405 - "default.handlebars->121->1629",
9406 - "default3.handlebars->119->1614"
9404 + "default-mobile.handlebars->55->800",
9405 + "default.handlebars->121->1633",
9406 + "default3.handlebars->119->1618"
9407 ]
9408 },
9409 {
@@ -9463,10 +9463,10 @@
9463 "zh-chs": "杀毒软件未激活",
9464 "zh-cht": "殺毒軟件未激活",
9465 "xloc": [
9466 - "default.handlebars->121->2501",
9467 - "default.handlebars->121->2515",
9468 - "default3.handlebars->119->2498",
9469 - "default3.handlebars->119->2512"
9466 + "default.handlebars->121->2505",
9467 + "default.handlebars->121->2519",
9468 + "default3.handlebars->119->2502",
9469 + "default3.handlebars->119->2516"
9470 ]
9471 },
9472 {
@@ -9496,8 +9496,8 @@
9496 "zh-cht": "防毒軟體",
9497 "xloc": [
9498 "default-mobile.handlebars->55->778",
9499 - "default.handlebars->121->954",
9500 - "default3.handlebars->119->950"
9499 + "default.handlebars->121->957",
9500 + "default3.handlebars->119->953"
9501 ]
9502 },
9503 {
@@ -9526,8 +9526,8 @@
9526 "zh-chs": "任何可支持的",
9527 "zh-cht": "任何可支持的",
9528 "xloc": [
9529 - "default.handlebars->121->568",
9530 - "default3.handlebars->119->564"
9529 + "default.handlebars->121->571",
9530 + "default3.handlebars->119->567"
9531 ]
9532 },
9533 {
@@ -9617,8 +9617,8 @@
9617 "zh-chs": "苹果macOS",
9618 "zh-cht": "蘋果macOS",
9619 "xloc": [
9620 - "default.handlebars->121->610",
9621 - "default3.handlebars->119->606"
9620 + "default.handlebars->121->613",
9621 + "default3.handlebars->119->609"
9622 ]
9623 },
9624 {
@@ -9627,8 +9627,8 @@
9627 "nl": "Apple macOS (verwijderen)",
9628 "uk": "Apple macOS (Деінсталяція)",
9629 "xloc": [
9630 - "default.handlebars->121->615",
9631 - "default3.handlebars->119->611"
9630 + "default.handlebars->121->618",
9631 + "default3.handlebars->119->614"
9632 ]
9633 },
9634 {
@@ -9638,8 +9638,8 @@
9638 "uk": "Для запуску виконувані файли Apple macOS потрібно буде вилучити з карантину запустивши 'xattr -r -d com.apple.quarantine meshagent'",
9639 "xloc": [
9640 "agentinvite.handlebars->13->12",
9641 - "default.handlebars->121->695",
9642 - "default3.handlebars->119->691"
9641 + "default.handlebars->121->698",
9642 + "default3.handlebars->119->694"
9643 ]
9644 },
9645 {
@@ -9668,8 +9668,8 @@
9668 "zh-chs": "仅限Apple macOS",
9669 "zh-cht": "僅限Apple macOS",
9670 "xloc": [
9671 - "default.handlebars->121->570",
9672 - "default3.handlebars->119->566"
9671 + "default.handlebars->121->573",
9672 + "default3.handlebars->119->569"
9673 ]
9674 },
9675 {
@@ -9719,8 +9719,8 @@
9719 "zh-chs": "应用程序,始终连接",
9720 "zh-cht": "應用程序,始終連接",
9721 "xloc": [
9722 - "default.handlebars->121->624",
9723 - "default3.handlebars->119->620"
9722 + "default.handlebars->121->627",
9723 + "default3.handlebars->119->623"
9724 ]
9725 },
9726 {
@@ -9749,8 +9749,8 @@
9749 "zh-chs": "应用程序,根据用户请求连接",
9750 "zh-cht": "應用程序,根據用戶請求連接",
9751 "xloc": [
9752 - "default.handlebars->121->623",
9753 - "default3.handlebars->119->619"
9752 + "default.handlebars->121->626",
9753 + "default3.handlebars->119->622"
9754 ]
9755 },
9756 {
@@ -9780,8 +9780,8 @@
9780 "zh-cht": "阿拉伯文(阿爾及利亞)",
9781 "xloc": [
9782 "default-mobile.handlebars->55->123",
9783 - "default.handlebars->121->1887",
9784 - "default3.handlebars->119->1868",
9783 + "default.handlebars->121->1891",
9784 + "default3.handlebars->119->1872",
9785 "login2.handlebars->17->4"
9786 ]
9787 },
@@ -9812,8 +9812,8 @@
9812 "zh-cht": "阿拉伯文(巴林)",
9813 "xloc": [
9814 "default-mobile.handlebars->55->124",
9815 - "default.handlebars->121->1888",
9816 - "default3.handlebars->119->1869",
9815 + "default.handlebars->121->1892",
9816 + "default3.handlebars->119->1873",
9817 "login2.handlebars->17->5"
9818 ]
9819 },
@@ -9844,8 +9844,8 @@
9844 "zh-cht": "阿拉伯文(埃及)",
9845 "xloc": [
9846 "default-mobile.handlebars->55->125",
9847 - "default.handlebars->121->1889",
9848 - "default3.handlebars->119->1870",
9847 + "default.handlebars->121->1893",
9848 + "default3.handlebars->119->1874",
9849 "login2.handlebars->17->6"
9850 ]
9851 },
@@ -9876,8 +9876,8 @@
9876 "zh-cht": "阿拉伯文(伊拉克)",
9877 "xloc": [
9878 "default-mobile.handlebars->55->126",
9879 - "default.handlebars->121->1890",
9880 - "default3.handlebars->119->1871",
9879 + "default.handlebars->121->1894",
9880 + "default3.handlebars->119->1875",
9881 "login2.handlebars->17->7"
9882 ]
9883 },
@@ -9908,8 +9908,8 @@
9908 "zh-cht": "阿拉伯文(約旦)",
9909 "xloc": [
9910 "default-mobile.handlebars->55->127",
9911 - "default.handlebars->121->1891",
9912 - "default3.handlebars->119->1872",
9911 + "default.handlebars->121->1895",
9912 + "default3.handlebars->119->1876",
9913 "login2.handlebars->17->8"
9914 ]
9915 },
@@ -9940,8 +9940,8 @@
9940 "zh-cht": "阿拉伯文(科威特)",
9941 "xloc": [
9942 "default-mobile.handlebars->55->128",
9943 - "default.handlebars->121->1892",
9944 - "default3.handlebars->119->1873",
9943 + "default.handlebars->121->1896",
9944 + "default3.handlebars->119->1877",
9945 "login2.handlebars->17->9"
9946 ]
9947 },
@@ -9972,8 +9972,8 @@
9972 "zh-cht": "阿拉伯文(黎巴嫩)",
9973 "xloc": [
9974 "default-mobile.handlebars->55->129",
9975 - "default.handlebars->121->1893",
9976 - "default3.handlebars->119->1874",
9975 + "default.handlebars->121->1897",
9976 + "default3.handlebars->119->1878",
9977 "login2.handlebars->17->10"
9978 ]
9979 },
@@ -10004,8 +10004,8 @@
10004 "zh-cht": "阿拉伯文(利比亞)",
10005 "xloc": [
10006 "default-mobile.handlebars->55->130",
10007 - "default.handlebars->121->1894",
10008 - "default3.handlebars->119->1875",
10007 + "default.handlebars->121->1898",
10008 + "default3.handlebars->119->1879",
10009 "login2.handlebars->17->11"
10010 ]
10011 },
@@ -10036,8 +10036,8 @@
10036 "zh-cht": "阿拉伯文(摩洛哥)",
10037 "xloc": [
10038 "default-mobile.handlebars->55->131",
10039 - "default.handlebars->121->1895",
10040 - "default3.handlebars->119->1876",
10039 + "default.handlebars->121->1899",
10040 + "default3.handlebars->119->1880",
10041 "login2.handlebars->17->12"
10042 ]
10043 },
@@ -10068,8 +10068,8 @@
10068 "zh-cht": "阿拉伯文(阿曼)",
10069 "xloc": [
10070 "default-mobile.handlebars->55->132",
10071 - "default.handlebars->121->1896",
10072 - "default3.handlebars->119->1877",
10071 + "default.handlebars->121->1900",
10072 + "default3.handlebars->119->1881",
10073 "login2.handlebars->17->13"
10074 ]
10075 },
@@ -10100,8 +10100,8 @@
10100 "zh-cht": "阿拉伯文(卡塔爾)",
10101 "xloc": [
10102 "default-mobile.handlebars->55->133",
10103 - "default.handlebars->121->1897",
10104 - "default3.handlebars->119->1878",
10103 + "default.handlebars->121->1901",
10104 + "default3.handlebars->119->1882",
10105 "login2.handlebars->17->14"
10106 ]
10107 },
@@ -10132,8 +10132,8 @@
10132 "zh-cht": "阿拉伯文(沙特阿拉伯)",
10133 "xloc": [
10134 "default-mobile.handlebars->55->134",
10135 - "default.handlebars->121->1898",
10136 - "default3.handlebars->119->1879",
10135 + "default.handlebars->121->1902",
10136 + "default3.handlebars->119->1883",
10137 "login2.handlebars->17->15"
10138 ]
10139 },
@@ -10164,8 +10164,8 @@
10164 "zh-cht": "阿拉伯文(標準)",
10165 "xloc": [
10166 "default-mobile.handlebars->55->122",
10167 - "default.handlebars->121->1886",
10168 - "default3.handlebars->119->1867",
10167 + "default.handlebars->121->1890",
10168 + "default3.handlebars->119->1871",
10169 "login2.handlebars->17->3"
10170 ]
10171 },
@@ -10196,8 +10196,8 @@
10196 "zh-cht": "阿拉伯文(敘利亞)",
10197 "xloc": [
10198 "default-mobile.handlebars->55->135",
10199 - "default.handlebars->121->1899",
10200 - "default3.handlebars->119->1880",
10199 + "default.handlebars->121->1903",
10200 + "default3.handlebars->119->1884",
10201 "login2.handlebars->17->16"
10202 ]
10203 },
@@ -10228,8 +10228,8 @@
10228 "zh-cht": "阿拉伯文(突尼斯)",
10229 "xloc": [
10230 "default-mobile.handlebars->55->136",
10231 - "default.handlebars->121->1900",
10232 - "default3.handlebars->119->1881",
10231 + "default.handlebars->121->1904",
10232 + "default3.handlebars->119->1885",
10233 "login2.handlebars->17->17"
10234 ]
10235 },
@@ -10260,8 +10260,8 @@
10260 "zh-cht": "阿拉伯文(阿聯酋)",
10261 "xloc": [
10262 "default-mobile.handlebars->55->137",
10263 - "default.handlebars->121->1901",
10264 - "default3.handlebars->119->1882",
10263 + "default.handlebars->121->1905",
10264 + "default3.handlebars->119->1886",
10265 "login2.handlebars->17->18"
10266 ]
10267 },
@@ -10292,8 +10292,8 @@
10292 "zh-cht": "阿拉伯文(也門)",
10293 "xloc": [
10294 "default-mobile.handlebars->55->138",
10295 - "default.handlebars->121->1902",
10296 - "default3.handlebars->119->1883",
10295 + "default.handlebars->121->1906",
10296 + "default3.handlebars->119->1887",
10297 "login2.handlebars->17->19"
10298 ]
10299 },
@@ -10324,8 +10324,8 @@
10324 "zh-cht": "阿拉貢文",
10325 "xloc": [
10326 "default-mobile.handlebars->55->139",
10327 - "default.handlebars->121->1903",
10328 - "default3.handlebars->119->1884",
10327 + "default.handlebars->121->1907",
10328 + "default3.handlebars->119->1888",
10329 "login2.handlebars->17->20"
10330 ]
10331 },
@@ -10358,12 +10358,12 @@
10358 "default-mobile.handlebars->55->740",
10359 "default-mobile.handlebars->55->742",
10360 "default-mobile.handlebars->55->744",
10361 - "default.handlebars->121->1600",
10362 - "default.handlebars->121->1602",
10361 "default.handlebars->121->1604",
10364 - "default3.handlebars->119->1585",
10365 - "default3.handlebars->119->1587",
10366 - "default3.handlebars->119->1589"
10362 + "default.handlebars->121->1606",
10363 + "default.handlebars->121->1608",
10364 + "default3.handlebars->119->1589",
10365 + "default3.handlebars->119->1591",
10366 + "default3.handlebars->119->1593"
10367 ]
10368 },
10369 {
@@ -10392,8 +10392,8 @@
10392 "zh-chs": "您确定要连接到{0}设备吗?",
10393 "zh-cht": "你確定要連接到{0}裝置嗎?",
10394 "xloc": [
10395 - "default.handlebars->121->495",
10396 - "default3.handlebars->119->491"
10395 + "default.handlebars->121->498",
10396 + "default3.handlebars->119->494"
10397 ]
10398 },
10399 {
@@ -10422,9 +10422,9 @@
10422 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
10423 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
10424 "xloc": [
10425 - "default-mobile.handlebars->55->998",
10426 - "default.handlebars->121->2343",
10427 - "default3.handlebars->119->2337"
10425 + "default-mobile.handlebars->55->999",
10426 + "default.handlebars->121->2347",
10427 + "default3.handlebars->119->2341"
10428 ]
10429 },
10430 {
@@ -10453,8 +10453,8 @@
10453 "zh-chs": "您确定要删除节点{0}吗?",
10454 "zh-cht": "你確定要刪除節點{0}嗎?",
10455 "xloc": [
10456 - "default.handlebars->121->1317",
10457 - "default3.handlebars->119->1306"
10456 + "default.handlebars->121->1321",
10457 + "default3.handlebars->119->1310"
10458 ]
10459 },
10460 {
@@ -10464,8 +10464,8 @@
10464 "nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?",
10465 "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на робочому столі віддаленого пристрою?",
10466 "xloc": [
10467 - "default.handlebars->121->1538",
10468 - "default3.handlebars->119->1523"
10467 + "default.handlebars->121->1542",
10468 + "default3.handlebars->119->1527"
10469 ]
10470 },
10471 {
@@ -10494,8 +10494,8 @@
10494 "zh-chs": "您确定要卸载所选代理吗?",
10495 "zh-cht": "你確定要卸載所選代理嗎?",
10496 "xloc": [
10497 - "default.handlebars->121->1306",
10498 - "default3.handlebars->119->1296"
10497 + "default.handlebars->121->1310",
10498 + "default3.handlebars->119->1300"
10499 ]
10500 },
10501 {
@@ -10524,8 +10524,8 @@
10524 "zh-chs": "您确定要卸载所选的{0}代理吗?",
10525 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
10526 "xloc": [
10527 - "default.handlebars->121->1305",
10528 - "default3.handlebars->119->1295"
10527 + "default.handlebars->121->1309",
10528 + "default3.handlebars->119->1299"
10529 ]
10530 },
10531 {
@@ -10554,8 +10554,8 @@
10554 "zh-chs": "您确定要{0}插件吗:{1}",
10555 "zh-cht": "你確定要{0}外掛嗎:{1}",
10556 "xloc": [
10557 - "default.handlebars->121->3474",
10558 - "default3.handlebars->119->3465"
10557 + "default.handlebars->121->3478",
10558 + "default3.handlebars->119->3469"
10559 ]
10560 },
10561 {
@@ -10616,8 +10616,8 @@
10616 "zh-cht": "亞美尼亞文",
10617 "xloc": [
10618 "default-mobile.handlebars->55->140",
10619 - "default.handlebars->121->1904",
10620 - "default3.handlebars->119->1885",
10619 + "default.handlebars->121->1908",
10620 + "default3.handlebars->119->1889",
10621 "login2.handlebars->17->21"
10622 ]
10623 },
@@ -10830,8 +10830,8 @@
10830 "zh-cht": "阿薩姆文",
10831 "xloc": [
10832 "default-mobile.handlebars->55->141",
10833 - "default.handlebars->121->1905",
10834 - "default3.handlebars->119->1886",
10833 + "default.handlebars->121->1909",
10834 + "default3.handlebars->119->1890",
10835 "login2.handlebars->17->22"
10836 ]
10837 },
@@ -10861,9 +10861,9 @@
10861 "zh-chs": "资产标签",
10862 "zh-cht": "資產標籤",
10863 "xloc": [
10864 - "default-mobile.handlebars->55->853",
10865 - "default.handlebars->121->1693",
10866 - "default3.handlebars->119->1676"
10864 + "default-mobile.handlebars->55->854",
10865 + "default.handlebars->121->1697",
10866 + "default3.handlebars->119->1680"
10867 ]
10868 },
10869 {
@@ -10953,10 +10953,10 @@
10953 "zh-chs": "Windows 助手 (.exe)",
10954 "zh-cht": "Windows 助手 (.exe)",
10955 "xloc": [
10956 - "default.handlebars->121->669",
10957 - "default.handlebars->121->673",
10958 - "default3.handlebars->119->665",
10959 - "default3.handlebars->119->669"
10956 + "default.handlebars->121->672",
10957 + "default.handlebars->121->676",
10958 + "default3.handlebars->119->668",
10959 + "default3.handlebars->119->672"
10960 ]
10961 },
10962 {
@@ -11015,8 +11015,8 @@
11015 "zh-cht": "阿斯圖里亞斯文",
11016 "xloc": [
11017 "default-mobile.handlebars->55->142",
11018 - "default.handlebars->121->1906",
11019 - "default3.handlebars->119->1887",
11018 + "default.handlebars->121->1910",
11019 + "default3.handlebars->119->1891",
11020 "login2.handlebars->17->23"
11021 ]
11022 },
@@ -11046,8 +11046,8 @@
11046 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
11047 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
11048 "xloc": [
11049 - "default.handlebars->121->2593",
11050 - "default3.handlebars->119->2590"
11049 + "default.handlebars->121->2597",
11050 + "default3.handlebars->119->2594"
11051 ]
11052 },
11053 {
@@ -11079,12 +11079,12 @@
11079 "default-mobile.handlebars->55->675",
11080 "default-mobile.handlebars->55->679",
11081 "default-mobile.handlebars->55->691",
11082 - "default.handlebars->121->1492",
11082 "default.handlebars->121->1496",
11084 - "default.handlebars->121->1508",
11085 - "default3.handlebars->119->1477",
11083 + "default.handlebars->121->1500",
11084 + "default.handlebars->121->1512",
11085 "default3.handlebars->119->1481",
11087 - "default3.handlebars->119->1493",
11086 + "default3.handlebars->119->1485",
11087 + "default3.handlebars->119->1497",
11088 "sharing-mobile.handlebars->55->47",
11089 "sharing-mobile.handlebars->55->56",
11090 "sharing-mobile.handlebars->55->64",
@@ -11121,8 +11121,8 @@
11121 "zh-chs": "认证软件",
11122 "zh-cht": "認證軟體",
11123 "xloc": [
11124 - "default.handlebars->121->3036",
11125 - "default3.handlebars->119->3031"
11124 + "default.handlebars->121->3040",
11125 + "default3.handlebars->119->3035"
11126 ]
11127 },
11128 {
@@ -11151,12 +11151,12 @@
11151 "zh-chs": "认证设备",
11152 "zh-cht": "認證設備",
11153 "xloc": [
11154 - "default.handlebars->121->1867",
11155 - "default.handlebars->121->1869",
11154 + "default.handlebars->121->1871",
11155 "default.handlebars->121->1873",
11157 - "default3.handlebars->119->1849",
11158 - "default3.handlebars->119->1851",
11159 - "default3.handlebars->119->1854"
11156 + "default.handlebars->121->1877",
11157 + "default3.handlebars->119->1853",
11158 + "default3.handlebars->119->1855",
11159 + "default3.handlebars->119->1858"
11160 ]
11161 },
11162 {
@@ -11187,10 +11187,10 @@
11187 "xloc": [
11188 "default-mobile.handlebars->55->692",
11189 "default-mobile.handlebars->55->698",
11190 - "default.handlebars->121->1510",
11191 - "default.handlebars->121->1525",
11192 - "default3.handlebars->119->1495",
11193 - "default3.handlebars->119->1510",
11190 + "default.handlebars->121->1514",
11191 + "default.handlebars->121->1529",
11192 + "default3.handlebars->119->1499",
11193 + "default3.handlebars->119->1514",
11194 "sharing-mobile.handlebars->55->57",
11195 "sharing-mobile.handlebars->55->74"
11196 ]
@@ -11225,12 +11225,12 @@
11225 "default-mobile.handlebars->55->327",
11226 "default-mobile.handlebars->55->80",
11227 "default-mobile.handlebars->55->85",
11228 - "default.handlebars->121->1863",
11229 - "default.handlebars->121->1865",
11228 + "default.handlebars->121->1867",
11229 + "default.handlebars->121->1869",
11230 "default.handlebars->121->235",
11231 "default.handlebars->121->240",
11232 - "default3.handlebars->119->1845",
11233 - "default3.handlebars->119->1847",
11232 + "default3.handlebars->119->1849",
11233 + "default3.handlebars->119->1851",
11234 "default3.handlebars->119->232",
11235 "default3.handlebars->119->237"
11236 ]
@@ -11382,10 +11382,10 @@
11382 "zh-chs": "自动删除",
11383 "zh-cht": "自動刪除",
11384 "xloc": [
11385 - "default.handlebars->121->2221",
11386 - "default.handlebars->121->2739",
11387 - "default3.handlebars->119->2217",
11388 - "default3.handlebars->119->2736"
11385 + "default.handlebars->121->2225",
11386 + "default.handlebars->121->2743",
11387 + "default3.handlebars->119->2221",
11388 + "default3.handlebars->119->2740"
11389 ]
11390 },
11391 {
@@ -11451,8 +11451,8 @@
11451 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
11452 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
11453 "xloc": [
11454 - "default.handlebars->121->2674",
11455 - "default3.handlebars->119->2671"
11454 + "default.handlebars->121->2678",
11455 + "default3.handlebars->119->2675"
11456 ]
11457 },
11458 {
@@ -11543,8 +11543,8 @@
11543 "zh-chs": "自动移除非活动设备",
11544 "zh-cht": "自動移除非活動設備",
11545 "xloc": [
11546 - "default.handlebars->121->2373",
11547 - "default3.handlebars->119->2370"
11546 + "default.handlebars->121->2377",
11547 + "default3.handlebars->119->2374"
11548 ]
11549 },
11550 {
@@ -11573,8 +11573,8 @@
11573 "zh-chs": "可用內存",
11574 "zh-cht": "可用內存",
11575 "xloc": [
11576 - "default.handlebars->121->3402",
11577 - "default3.handlebars->119->3393"
11576 + "default.handlebars->121->3406",
11577 + "default3.handlebars->119->3397"
11578 ]
11579 },
11580 {
@@ -11604,8 +11604,8 @@
11604 "zh-cht": "阿塞拜疆文",
11605 "xloc": [
11606 "default-mobile.handlebars->55->143",
11607 - "default.handlebars->121->1907",
11608 - "default3.handlebars->119->1888",
11607 + "default.handlebars->121->1911",
11608 + "default3.handlebars->119->1892",
11609 "login2.handlebars->17->24"
11610 ]
11611 },
@@ -11646,18 +11646,18 @@
11646 "default-mobile.handlebars->55->755",
11647 "default-mobile.handlebars->55->759",
11648 "default-mobile.handlebars->55->763",
11649 - "default.handlebars->121->441",
11650 - "default.handlebars->121->443",
11651 - "default.handlebars->121->445",
11652 - "default.handlebars->121->931",
11653 - "default.handlebars->121->935",
11654 - "default.handlebars->121->939",
11655 - "default3.handlebars->119->437",
11656 - "default3.handlebars->119->439",
11657 - "default3.handlebars->119->441",
11658 - "default3.handlebars->119->927",
11659 - "default3.handlebars->119->931",
11660 - "default3.handlebars->119->935"
11649 + "default.handlebars->121->444",
11650 + "default.handlebars->121->446",
11651 + "default.handlebars->121->448",
11652 + "default.handlebars->121->934",
11653 + "default.handlebars->121->938",
11654 + "default.handlebars->121->942",
11655 + "default3.handlebars->119->440",
11656 + "default3.handlebars->119->442",
11657 + "default3.handlebars->119->444",
11658 + "default3.handlebars->119->930",
11659 + "default3.handlebars->119->934",
11660 + "default3.handlebars->119->938"
11661 ]
11662 },
11663 {
@@ -11686,9 +11686,9 @@
11686 "zh-chs": "的BIOS",
11687 "zh-cht": "的BIOS",
11688 "xloc": [
11689 - "default-mobile.handlebars->55->841",
11690 - "default.handlebars->121->1681",
11691 - "default3.handlebars->119->1664"
11689 + "default-mobile.handlebars->55->842",
11690 + "default.handlebars->121->1685",
11691 + "default3.handlebars->119->1668"
11692 ]
11693 },
11694 {
@@ -11827,8 +11827,8 @@
11827 "zh-cht": "退格",
11828 "xloc": [
11829 "default-mobile.handlebars->55->640",
11830 - "default.handlebars->121->1407",
11831 - "default3.handlebars->119->1394",
11830 + "default.handlebars->121->1411",
11831 + "default3.handlebars->119->1398",
11832 "sharing-mobile.handlebars->55->17"
11833 ]
11834 },
@@ -11859,8 +11859,8 @@
11859 "zh-cht": "背景與互動",
11860 "xloc": [
11861 "agentinvite.handlebars->13->8",
11862 - "default.handlebars->121->619",
11863 - "default3.handlebars->119->615"
11862 + "default.handlebars->121->622",
11863 + "default3.handlebars->119->618"
11864 ]
11865 },
11866 {
@@ -11889,14 +11889,14 @@
11889 "zh-chs": "后台运行与交互式运行",
11890 "zh-cht": "背景與互動",
11891 "xloc": [
11892 - "default.handlebars->121->2472",
11893 - "default.handlebars->121->2479",
11894 - "default.handlebars->121->581",
11895 - "default.handlebars->121->602",
11896 - "default3.handlebars->119->2469",
11897 - "default3.handlebars->119->2476",
11898 - "default3.handlebars->119->577",
11899 - "default3.handlebars->119->598"
11892 + "default.handlebars->121->2476",
11893 + "default.handlebars->121->2483",
11894 + "default.handlebars->121->584",
11895 + "default.handlebars->121->605",
11896 + "default3.handlebars->119->2473",
11897 + "default3.handlebars->119->2480",
11898 + "default3.handlebars->119->580",
11899 + "default3.handlebars->119->601"
11900 ]
11901 },
11902 {
@@ -11926,16 +11926,16 @@
11926 "zh-cht": "僅背景",
11927 "xloc": [
11928 "agentinvite.handlebars->13->9",
11929 - "default.handlebars->121->2473",
11930 - "default.handlebars->121->2481",
11931 - "default.handlebars->121->582",
11932 - "default.handlebars->121->603",
11933 - "default.handlebars->121->620",
11934 - "default3.handlebars->119->2470",
11935 - "default3.handlebars->119->2478",
11936 - "default3.handlebars->119->578",
11937 - "default3.handlebars->119->599",
11938 - "default3.handlebars->119->616"
11929 + "default.handlebars->121->2477",
11930 + "default.handlebars->121->2485",
11931 + "default.handlebars->121->585",
11932 + "default.handlebars->121->606",
11933 + "default.handlebars->121->623",
11934 + "default3.handlebars->119->2474",
11935 + "default3.handlebars->119->2482",
11936 + "default3.handlebars->119->581",
11937 + "default3.handlebars->119->602",
11938 + "default3.handlebars->119->619"
11939 ]
11940 },
11941 {
@@ -11995,10 +11995,10 @@
11995 "zh-chs": "备用码",
11996 "zh-cht": "備用碼",
11997 "xloc": [
11998 - "default.handlebars->121->3040",
11999 - "default.handlebars->121->3278",
12000 - "default3.handlebars->119->3035",
12001 - "default3.handlebars->119->3269"
11998 + "default.handlebars->121->3044",
11999 + "default.handlebars->121->3282",
12000 + "default3.handlebars->119->3039",
12001 + "default3.handlebars->119->3273"
12002 ]
12003 },
12004 {
@@ -12088,8 +12088,8 @@
12088 "zh-chs": "错误的签名",
12089 "zh-cht": "錯誤的簽名",
12090 "xloc": [
12091 - "default.handlebars->121->3383",
12092 - "default3.handlebars->119->3374"
12091 + "default.handlebars->121->3387",
12092 + "default3.handlebars->119->3378"
12093 ]
12094 },
12095 {
@@ -12118,8 +12118,8 @@
12118 "zh-chs": "错误的网络证书",
12119 "zh-cht": "錯誤的網絡憑證",
12120 "xloc": [
12121 - "default.handlebars->121->3382",
12122 - "default3.handlebars->119->3373"
12121 + "default.handlebars->121->3386",
12122 + "default3.handlebars->119->3377"
12123 ]
12124 },
12125 {
@@ -12149,8 +12149,8 @@
12149 "zh-cht": "巴斯克",
12150 "xloc": [
12151 "default-mobile.handlebars->55->144",
12152 - "default.handlebars->121->1908",
12153 - "default3.handlebars->119->1889",
12152 + "default.handlebars->121->1912",
12153 + "default3.handlebars->119->1893",
12154 "login2.handlebars->17->25"
12155 ]
12156 },
@@ -12180,8 +12180,8 @@
12180 "zh-chs": "批处理文件上传",
12181 "zh-cht": "批處理文件上傳",
12182 "xloc": [
12183 - "default.handlebars->121->800",
12184 - "default3.handlebars->119->796"
12183 + "default.handlebars->121->803",
12184 + "default3.handlebars->119->799"
12185 ]
12186 },
12187 {
@@ -12255,8 +12255,8 @@
12255 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
12256 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
12257 "xloc": [
12258 - "default.handlebars->121->2673",
12259 - "default3.handlebars->119->2670"
12258 + "default.handlebars->121->2677",
12259 + "default3.handlebars->119->2674"
12260 ]
12261 },
12262 {
@@ -12282,9 +12282,9 @@
12282 "zh-chs": "电池",
12283 "zh-cht": "電池",
12284 "xloc": [
12285 - "default-mobile.handlebars->55->898",
12286 - "default.handlebars->121->1738",
12287 - "default3.handlebars->119->1721"
12285 + "default-mobile.handlebars->55->899",
12286 + "default.handlebars->121->1742",
12287 + "default3.handlebars->119->1725"
12288 ]
12289 },
12290 {
@@ -12312,9 +12312,9 @@
12312 "zh-chs": "电池充电",
12313 "zh-cht": "電池充電",
12314 "xloc": [
12315 - "default-mobile.handlebars->55->896",
12316 - "default.handlebars->121->1736",
12317 - "default3.handlebars->119->1719"
12315 + "default-mobile.handlebars->55->897",
12316 + "default.handlebars->121->1740",
12317 + "default3.handlebars->119->1723"
12318 ]
12319 },
12320 {
@@ -12344,8 +12344,8 @@
12344 "zh-cht": "白俄羅斯文",
12345 "xloc": [
12346 "default-mobile.handlebars->55->146",
12347 - "default.handlebars->121->1910",
12348 - "default3.handlebars->119->1891",
12347 + "default.handlebars->121->1914",
12348 + "default3.handlebars->119->1895",
12349 "login2.handlebars->17->27"
12350 ]
12351 },
@@ -12376,8 +12376,8 @@
12376 "zh-cht": "孟加拉",
12377 "xloc": [
12378 "default-mobile.handlebars->55->147",
12379 - "default.handlebars->121->1911",
12380 - "default3.handlebars->119->1892",
12379 + "default.handlebars->121->1915",
12380 + "default3.handlebars->119->1896",
12381 "login2.handlebars->17->28"
12382 ]
12383 },
@@ -12419,9 +12419,9 @@
12419 "nl": "BitLocker",
12420 "uk": "BitLocker",
12421 "xloc": [
12422 - "default-mobile.handlebars->55->933",
12423 - "default.handlebars->121->1773",
12424 - "default3.handlebars->119->1756"
12422 + "default-mobile.handlebars->55->934",
12423 + "default.handlebars->121->1777",
12424 + "default3.handlebars->119->1760"
12425 ]
12426 },
12427 {
@@ -12431,9 +12431,9 @@
12431 "pl": "Informacje o BitLocker",
12432 "uk": "Інформація о BitLocker",
12433 "xloc": [
12434 - "default-mobile.handlebars->55->954",
12435 - "default.handlebars->121->1794",
12436 - "default3.handlebars->119->1777"
12434 + "default-mobile.handlebars->55->955",
12435 + "default.handlebars->121->1798",
12436 + "default3.handlebars->119->1781"
12437 ]
12438 },
12439 {
@@ -12462,9 +12462,9 @@
12462 "zh-chs": "引导加载程序",
12463 "zh-cht": "引導加載程序",
12464 "xloc": [
12465 - "default-mobile.handlebars->55->796",
12466 - "default.handlebars->121->1626",
12467 - "default3.handlebars->119->1611"
12465 + "default-mobile.handlebars->55->797",
12466 + "default.handlebars->121->1630",
12467 + "default3.handlebars->119->1615"
12468 ]
12469 },
12470 {
@@ -12494,8 +12494,8 @@
12494 "zh-cht": "波斯尼亞文",
12495 "xloc": [
12496 "default-mobile.handlebars->55->148",
12497 - "default.handlebars->121->1912",
12498 - "default3.handlebars->119->1893",
12497 + "default.handlebars->121->1916",
12498 + "default3.handlebars->119->1897",
12499 "login2.handlebars->17->29"
12500 ]
12501 },
@@ -12526,8 +12526,8 @@
12526 "zh-cht": "布列塔尼",
12527 "xloc": [
12528 "default-mobile.handlebars->55->149",
12529 - "default.handlebars->121->1913",
12530 - "default3.handlebars->119->1894",
12529 + "default.handlebars->121->1917",
12530 + "default3.handlebars->119->1898",
12531 "login2.handlebars->17->30"
12532 ]
12533 },
@@ -12557,9 +12557,9 @@
12557 "zh-chs": "广播",
12558 "zh-cht": "廣播",
12559 "xloc": [
12560 - "default.handlebars->121->2934",
12560 + "default.handlebars->121->2938",
12561 "default.handlebars->container->column_l->p4->3->1->0->3->1",
12562 - "default3.handlebars->119->2929",
12562 + "default3.handlebars->119->2933",
12563 "default3.handlebars->container->column_l->p4->3->1->0->1->3"
12564 ]
12565 },
@@ -12589,8 +12589,8 @@
12589 "zh-chs": "广播消息",
12590 "zh-cht": "廣播消息",
12591 "xloc": [
12592 - "default.handlebars->121->2850",
12593 - "default3.handlebars->119->2847"
12592 + "default.handlebars->121->2854",
12593 + "default3.handlebars->119->2851"
12594 ]
12595 },
12596 {
@@ -12619,8 +12619,8 @@
12619 "zh-chs": "向所有连接的用户广播消息。",
12620 "zh-cht": "向所有連接的用戶廣播消息。",
12621 "xloc": [
12622 - "default.handlebars->121->2845",
12623 - "default3.handlebars->119->2842"
12622 + "default.handlebars->121->2849",
12623 + "default3.handlebars->119->2846"
12624 ]
12625 },
12626 {
@@ -12649,8 +12649,8 @@
12649 "zh-chs": "浏览器",
12650 "zh-cht": "瀏覽器",
12651 "xloc": [
12652 - "default.handlebars->121->3249",
12653 - "default3.handlebars->119->3240"
12652 + "default.handlebars->121->3253",
12653 + "default3.handlebars->119->3244"
12654 ]
12655 },
12656 {
@@ -12741,8 +12741,8 @@
12741 "zh-cht": "內部版本號",
12742 "xloc": [
12743 "default-mobile.handlebars->55->739",
12744 - "default.handlebars->121->1599",
12745 - "default3.handlebars->119->1584"
12744 + "default.handlebars->121->1603",
12745 + "default3.handlebars->119->1588"
12746 ]
12747 },
12748 {
@@ -12772,8 +12772,8 @@
12772 "zh-cht": "保加利亞文",
12773 "xloc": [
12774 "default-mobile.handlebars->55->145",
12775 - "default.handlebars->121->1909",
12776 - "default3.handlebars->119->1890",
12775 + "default.handlebars->121->1913",
12776 + "default3.handlebars->119->1894",
12777 "login2.handlebars->17->26"
12778 ]
12779 },
@@ -12804,8 +12804,8 @@
12804 "zh-cht": "緬甸文",
12805 "xloc": [
12806 "default-mobile.handlebars->55->150",
12807 - "default.handlebars->121->1914",
12808 - "default3.handlebars->119->1895",
12807 + "default.handlebars->121->1918",
12808 + "default3.handlebars->119->1899",
12809 "login2.handlebars->17->31"
12810 ]
12811 },
@@ -12835,8 +12835,8 @@
12835 "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。",
12836 "zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
12837 "xloc": [
12838 - "default.handlebars->121->2375",
12839 - "default3.handlebars->119->2372"
12838 + "default.handlebars->121->2379",
12839 + "default3.handlebars->119->2376"
12840 ]
12841 },
12842 {
@@ -12865,8 +12865,8 @@
12865 "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。",
12866 "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
12867 "xloc": [
12868 - "default.handlebars->121->2376",
12869 - "default3.handlebars->119->2373"
12868 + "default.handlebars->121->2380",
12869 + "default3.handlebars->119->2377"
12870 ]
12871 },
12872 {
@@ -12908,8 +12908,8 @@
12908 "zh-chs": "字节输入",
12909 "zh-cht": "字節輸入",
12910 "xloc": [
12911 - "default.handlebars->121->3245",
12912 - "default3.handlebars->119->3236"
12911 + "default.handlebars->121->3249",
12912 + "default3.handlebars->119->3240"
12913 ]
12914 },
12915 {
@@ -12938,8 +12938,8 @@
12938 "zh-chs": "字节输出",
12939 "zh-cht": "字節輸出",
12940 "xloc": [
12941 - "default.handlebars->121->3246",
12942 - "default3.handlebars->119->3237"
12941 + "default.handlebars->121->3250",
12942 + "default3.handlebars->119->3241"
12943 ]
12944 },
12945 {
@@ -13016,10 +13016,10 @@
13016 "zh-cht": "CCM",
13017 "xloc": [
13018 "default-mobile.handlebars->55->503",
13019 - "default.handlebars->121->451",
13020 - "default.handlebars->121->907",
13021 - "default3.handlebars->119->447",
13022 - "default3.handlebars->119->903"
13019 + "default.handlebars->121->454",
13020 + "default.handlebars->121->910",
13021 + "default3.handlebars->119->450",
13022 + "default3.handlebars->119->906"
13023 ]
13024 },
13025 {
@@ -13048,8 +13048,8 @@
13048 "zh-chs": "CCM模式",
13049 "zh-cht": "CCM模式",
13050 "xloc": [
13051 - "default.handlebars->121->2326",
13052 - "default3.handlebars->119->2320"
13051 + "default.handlebars->121->2330",
13052 + "default3.handlebars->119->2324"
13053 ]
13054 },
13055 {
@@ -13057,15 +13057,15 @@
13057 "en": "CD-ROM",
13058 "nl": "CD-ROM",
13059 "xloc": [
13060 - "default-mobile.handlebars->55->926",
13061 - "default-mobile.handlebars->55->938",
13062 - "default-mobile.handlebars->55->945",
13063 - "default.handlebars->121->1766",
13064 - "default.handlebars->121->1778",
13065 - "default.handlebars->121->1785",
13066 - "default3.handlebars->119->1749",
13067 - "default3.handlebars->119->1761",
13068 - "default3.handlebars->119->1768"
13060 + "default-mobile.handlebars->55->927",
13061 + "default-mobile.handlebars->55->939",
13062 + "default-mobile.handlebars->55->946",
13063 + "default.handlebars->121->1770",
13064 + "default.handlebars->121->1782",
13065 + "default.handlebars->121->1789",
13066 + "default3.handlebars->119->1753",
13067 + "default3.handlebars->119->1765",
13068 + "default3.handlebars->119->1772"
13069 ]
13070 },
13071 {
@@ -13095,12 +13095,12 @@
13095 "zh-cht": "CIRA",
13096 "xloc": [
13097 "default-mobile.handlebars->55->464",
13098 - "default.handlebars->121->3409",
13099 - "default.handlebars->121->429",
13100 - "default.handlebars->121->736",
13101 - "default3.handlebars->119->3400",
13102 - "default3.handlebars->119->425",
13103 - "default3.handlebars->119->732"
13098 + "default.handlebars->121->3413",
13099 + "default.handlebars->121->432",
13100 + "default.handlebars->121->739",
13101 + "default3.handlebars->119->3404",
13102 + "default3.handlebars->119->428",
13103 + "default3.handlebars->119->735"
13104 ]
13105 },
13106 {
@@ -13129,8 +13129,8 @@
13129 "zh-chs": "CIRA服务器",
13130 "zh-cht": "CIRA伺服器",
13131 "xloc": [
13132 - "default.handlebars->121->3458",
13133 - "default3.handlebars->119->3449"
13132 + "default.handlebars->121->3462",
13133 + "default3.handlebars->119->3453"
13134 ]
13135 },
13136 {
@@ -13159,8 +13159,8 @@
13159 "zh-chs": "CIRA服务器命令",
13160 "zh-cht": "CIRA伺服器指令",
13161 "xloc": [
13162 - "default.handlebars->121->3459",
13163 - "default3.handlebars->119->3450"
13162 + "default.handlebars->121->3463",
13163 + "default3.handlebars->119->3454"
13164 ]
13165 },
13166 {
@@ -13219,8 +13219,8 @@
13219 "zh-chs": "CIRA设置",
13220 "zh-cht": "CIRA設置",
13221 "xloc": [
13222 - "default.handlebars->121->2334",
13223 - "default3.handlebars->119->2327"
13222 + "default.handlebars->121->2338",
13223 + "default3.handlebars->119->2331"
13224 ]
13225 },
13226 {
@@ -13249,14 +13249,14 @@
13249 "zh-chs": "CPU",
13250 "zh-cht": "CPU",
13251 "xloc": [
13252 - "default-mobile.handlebars->55->847",
13253 - "default.handlebars->121->1594",
13254 - "default.handlebars->121->1687",
13255 - "default.handlebars->121->3434",
13252 + "default-mobile.handlebars->55->848",
13253 + "default.handlebars->121->1598",
13254 + "default.handlebars->121->1691",
13255 + "default.handlebars->121->3438",
13256 "default.handlebars->container->column_l->p40->3->1->p40type->5",
13257 - "default3.handlebars->119->1579",
13258 - "default3.handlebars->119->1670",
13259 - "default3.handlebars->119->3425",
13257 + "default3.handlebars->119->1583",
13258 + "default3.handlebars->119->1674",
13259 + "default3.handlebars->119->3429",
13260 "default3.handlebars->container->column_l->p40->3->3->p40type->5"
13261 ]
13262 },
@@ -13286,8 +13286,8 @@
13286 "zh-chs": "CPU负载",
13287 "zh-cht": "CPU負載",
13288 "xloc": [
13289 - "default.handlebars->121->3398",
13290 - "default3.handlebars->119->3389"
13289 + "default.handlebars->121->3402",
13290 + "default3.handlebars->119->3393"
13291 ]
13292 },
13293 {
@@ -13316,8 +13316,8 @@
13316 "zh-chs": "最近15分钟的CPU负载",
13317 "zh-cht": "最近15分鐘的CPU負載",
13318 "xloc": [
13319 - "default.handlebars->121->3401",
13320 - "default3.handlebars->119->3392"
13319 + "default.handlebars->121->3405",
13320 + "default3.handlebars->119->3396"
13321 ]
13322 },
13323 {
@@ -13346,8 +13346,8 @@
13346 "zh-chs": "最近5分钟的CPU负载",
13347 "zh-cht": "最近5分鐘的CPU負載",
13348 "xloc": [
13349 - "default.handlebars->121->3400",
13350 - "default3.handlebars->119->3391"
13349 + "default.handlebars->121->3404",
13350 + "default3.handlebars->119->3395"
13351 ]
13352 },
13353 {
@@ -13376,8 +13376,8 @@
13376 "zh-chs": "最近一分钟的CPU负载",
13377 "zh-cht": "最近一分鐘的CPU負載",
13378 "xloc": [
13379 - "default.handlebars->121->3399",
13380 - "default3.handlebars->119->3390"
13379 + "default.handlebars->121->3403",
13380 + "default3.handlebars->119->3394"
13381 ]
13382 },
13383 {
@@ -13406,11 +13406,11 @@
13406 "zh-chs": "CR+LF",
13407 "zh-cht": "CR+LF",
13408 "xloc": [
13409 - "default.handlebars->121->1488",
13410 - "default.handlebars->121->1519",
13409 + "default.handlebars->121->1492",
13410 + "default.handlebars->121->1523",
13411 "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
13412 - "default3.handlebars->119->1473",
13413 - "default3.handlebars->119->1504",
13412 + "default3.handlebars->119->1477",
13413 + "default3.handlebars->119->1508",
13414 "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
13415 "sharing.handlebars->49->25",
13416 "sharing.handlebars->49->39",
@@ -13443,8 +13443,8 @@
13443 "zh-chs": "CSV",
13444 "zh-cht": "CSV",
13445 "xloc": [
13446 - "default.handlebars->121->2756",
13447 - "default3.handlebars->119->2753"
13446 + "default.handlebars->121->2760",
13447 + "default3.handlebars->119->2757"
13448 ]
13449 },
13450 {
@@ -13473,12 +13473,12 @@
13473 "zh-chs": "CSV格式",
13474 "zh-cht": "CSV格式",
13475 "xloc": [
13476 - "default.handlebars->121->2760",
13477 - "default.handlebars->121->2837",
13478 - "default.handlebars->121->809",
13479 - "default3.handlebars->119->2757",
13480 - "default3.handlebars->119->2834",
13481 - "default3.handlebars->119->805"
13476 + "default.handlebars->121->2764",
13477 + "default.handlebars->121->2841",
13478 + "default.handlebars->121->812",
13479 + "default3.handlebars->119->2761",
13480 + "default3.handlebars->119->2838",
13481 + "default3.handlebars->119->808"
13482 ]
13483 },
13484 {
@@ -13487,8 +13487,8 @@
13487 "nl": "Het CSV bestandsformaat is als volgt:",
13488 "uk": "Формат файлу CSV нижче:",
13489 "xloc": [
13490 - "default.handlebars->121->2823",
13491 - "default3.handlebars->119->2820"
13490 + "default.handlebars->121->2827",
13491 + "default3.handlebars->119->2824"
13492 ]
13493 },
13494 {
@@ -13517,8 +13517,8 @@
13517 "zh-chs": "呼叫错误",
13518 "zh-cht": "呼叫錯誤",
13519 "xloc": [
13520 - "default.handlebars->121->3475",
13521 - "default3.handlebars->119->3466"
13520 + "default.handlebars->121->3479",
13521 + "default3.handlebars->119->3470"
13522 ]
13523 },
13524 {
@@ -13531,10 +13531,10 @@
13531 "pl": "CallMeBot",
13532 "uk": "CallMeBot",
13533 "xloc": [
13534 - "default.handlebars->121->1832",
13535 - "default.handlebars->121->3075",
13536 - "default3.handlebars->119->1814",
13537 - "default3.handlebars->119->3070"
13534 + "default.handlebars->121->1836",
13535 + "default.handlebars->121->3079",
13536 + "default3.handlebars->119->1818",
13537 + "default3.handlebars->119->3074"
13538 ]
13539 },
13540 {
@@ -13596,11 +13596,11 @@
13596 "agent-translations.json",
13597 "default-mobile.handlebars->55->336",
13598 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
13599 - "default.handlebars->121->2188",
13600 - "default.handlebars->121->3464",
13601 - "default.handlebars->121->554",
13599 + "default.handlebars->121->2192",
13600 + "default.handlebars->121->3468",
13601 + "default.handlebars->121->557",
13602 "default.handlebars->container->dialog->idx_dlgButtonBar",
13603 - "default3.handlebars->119->550",
13603 + "default3.handlebars->119->553",
13604 "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgCancelButton",
13605 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
13606 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -13668,30 +13668,30 @@
13668 "zh-chs": "容量",
13669 "zh-cht": "容量",
13670 "xloc": [
13671 - "default-mobile.handlebars->55->901",
13672 - "default-mobile.handlebars->55->907",
13673 - "default-mobile.handlebars->55->913",
13674 - "default-mobile.handlebars->55->918",
13675 - "default-mobile.handlebars->55->920",
13676 - "default-mobile.handlebars->55->923",
13677 - "default-mobile.handlebars->55->935",
13678 - "default-mobile.handlebars->55->942",
13679 - "default.handlebars->121->1741",
13680 - "default.handlebars->121->1747",
13681 - "default.handlebars->121->1753",
13682 - "default.handlebars->121->1758",
13683 - "default.handlebars->121->1760",
13684 - "default.handlebars->121->1763",
13685 - "default.handlebars->121->1775",
13686 - "default.handlebars->121->1782",
13687 - "default3.handlebars->119->1724",
13688 - "default3.handlebars->119->1730",
13689 - "default3.handlebars->119->1736",
13690 - "default3.handlebars->119->1741",
13691 - "default3.handlebars->119->1743",
13692 - "default3.handlebars->119->1746",
13693 - "default3.handlebars->119->1758",
13694 - "default3.handlebars->119->1765"
13671 + "default-mobile.handlebars->55->902",
13672 + "default-mobile.handlebars->55->908",
13673 + "default-mobile.handlebars->55->914",
13674 + "default-mobile.handlebars->55->919",
13675 + "default-mobile.handlebars->55->921",
13676 + "default-mobile.handlebars->55->924",
13677 + "default-mobile.handlebars->55->936",
13678 + "default-mobile.handlebars->55->943",
13679 + "default.handlebars->121->1745",
13680 + "default.handlebars->121->1751",
13681 + "default.handlebars->121->1757",
13682 + "default.handlebars->121->1762",
13683 + "default.handlebars->121->1764",
13684 + "default.handlebars->121->1767",
13685 + "default.handlebars->121->1779",
13686 + "default.handlebars->121->1786",
13687 + "default3.handlebars->119->1728",
13688 + "default3.handlebars->119->1734",
13689 + "default3.handlebars->119->1740",
13690 + "default3.handlebars->119->1745",
13691 + "default3.handlebars->119->1747",
13692 + "default3.handlebars->119->1750",
13693 + "default3.handlebars->119->1762",
13694 + "default3.handlebars->119->1769"
13695 ]
13696 },
13697 {
@@ -13720,15 +13720,15 @@
13720 "zh-chs": "容量/速度",
13721 "zh-cht": "容量/速度",
13722 "xloc": [
13723 - "default-mobile.handlebars->55->899",
13724 - "default-mobile.handlebars->55->905",
13725 - "default-mobile.handlebars->55->911",
13726 - "default.handlebars->121->1739",
13727 - "default.handlebars->121->1745",
13728 - "default.handlebars->121->1751",
13729 - "default3.handlebars->119->1722",
13730 - "default3.handlebars->119->1728",
13731 - "default3.handlebars->119->1734"
13723 + "default-mobile.handlebars->55->900",
13724 + "default-mobile.handlebars->55->906",
13725 + "default-mobile.handlebars->55->912",
13726 + "default.handlebars->121->1743",
13727 + "default.handlebars->121->1749",
13728 + "default.handlebars->121->1755",
13729 + "default3.handlebars->119->1726",
13730 + "default3.handlebars->119->1732",
13731 + "default3.handlebars->119->1738"
13732 ]
13733 },
13734 {
@@ -13756,15 +13756,15 @@
13756 "zh-chs": "剩余容量",
13757 "zh-cht": "剩餘容量",
13758 "xloc": [
13759 - "default-mobile.handlebars->55->924",
13760 - "default-mobile.handlebars->55->936",
13761 - "default-mobile.handlebars->55->943",
13762 - "default.handlebars->121->1764",
13763 - "default.handlebars->121->1776",
13764 - "default.handlebars->121->1783",
13765 - "default3.handlebars->119->1747",
13766 - "default3.handlebars->119->1759",
13767 - "default3.handlebars->119->1766"
13759 + "default-mobile.handlebars->55->925",
13760 + "default-mobile.handlebars->55->937",
13761 + "default-mobile.handlebars->55->944",
13762 + "default.handlebars->121->1768",
13763 + "default.handlebars->121->1780",
13764 + "default.handlebars->121->1787",
13765 + "default3.handlebars->119->1751",
13766 + "default3.handlebars->119->1763",
13767 + "default3.handlebars->119->1770"
13768 ]
13769 },
13770 {
@@ -13794,8 +13794,8 @@
13794 "zh-cht": "加泰羅尼亞文",
13795 "xloc": [
13796 "default-mobile.handlebars->55->151",
13797 - "default.handlebars->121->1915",
13798 - "default3.handlebars->119->1896",
13797 + "default.handlebars->121->1919",
13798 + "default3.handlebars->119->1900",
13799 "login2.handlebars->17->32"
13800 ]
13801 },
@@ -13825,8 +13825,8 @@
13825 "zh-chs": "在这里为中心显示地图",
13826 "zh-cht": "在這裡為中心顯示地圖",
13827 "xloc": [
13828 - "default.handlebars->121->860",
13829 - "default3.handlebars->119->856"
13828 + "default.handlebars->121->863",
13829 + "default3.handlebars->119->859"
13830 ]
13831 },
13832 {
@@ -13866,7 +13866,7 @@
13866 "en": "Cerulean",
13867 "nl": "Hemelsblauw",
13868 "xloc": [
13869 - "default3.handlebars->119->2110"
13869 + "default3.handlebars->119->2114"
13870 ]
13871 },
13872 {
@@ -13896,8 +13896,8 @@
13896 "zh-cht": "查莫羅",
13897 "xloc": [
13898 "default-mobile.handlebars->55->152",
13899 - "default.handlebars->121->1916",
13900 - "default3.handlebars->119->1897",
13899 + "default.handlebars->121->1920",
13900 + "default3.handlebars->119->1901",
13901 "login2.handlebars->17->33"
13902 ]
13903 },
@@ -13958,8 +13958,8 @@
13958 "zh-chs": "更改{0}的邮箱",
13959 "zh-cht": "更改{0}的電郵",
13960 "xloc": [
13961 - "default.handlebars->121->3117",
13962 - "default3.handlebars->119->3110"
13961 + "default.handlebars->121->3121",
13962 + "default3.handlebars->119->3114"
13963 ]
13964 },
13965 {
@@ -13988,12 +13988,12 @@
13988 "zh-chs": "更改组",
13989 "zh-cht": "更改群",
13990 "xloc": [
13991 - "default.handlebars->121->1025",
13992 - "default.handlebars->121->1314",
13993 - "default.handlebars->121->1315",
13994 - "default3.handlebars->119->1021",
13995 - "default3.handlebars->119->1304",
13996 - "default3.handlebars->119->1305"
13991 + "default.handlebars->121->1029",
13992 + "default.handlebars->121->1318",
13993 + "default.handlebars->121->1319",
13994 + "default3.handlebars->119->1025",
13995 + "default3.handlebars->119->1308",
13996 + "default3.handlebars->119->1309"
13997 ]
13998 },
13999 {
@@ -14038,10 +14038,10 @@
14038 "zh-cht": "更改密碼",
14039 "xloc": [
14040 "default-mobile.handlebars->55->344",
14041 - "default.handlebars->121->2132",
14042 - "default.handlebars->121->3061",
14043 - "default3.handlebars->119->2108",
14044 - "default3.handlebars->119->3056"
14041 + "default.handlebars->121->2136",
14042 + "default.handlebars->121->3065",
14043 + "default3.handlebars->119->2112",
14044 + "default3.handlebars->119->3060"
14045 ]
14046 },
14047 {
@@ -14070,8 +14070,8 @@
14070 "zh-chs": "更改{0}的密码",
14071 "zh-cht": "更改{0}的密碼",
14072 "xloc": [
14073 - "default.handlebars->121->3126",
14074 - "default3.handlebars->119->3115"
14073 + "default.handlebars->121->3130",
14074 + "default3.handlebars->119->3119"
14075 ]
14076 },
14077 {
@@ -14100,8 +14100,8 @@
14100 "zh-chs": "更改{0}的真实名称",
14101 "zh-cht": "更改{0}的真實名稱",
14102 "xloc": [
14103 - "default.handlebars->121->3112",
14104 - "default3.handlebars->119->3106"
14103 + "default.handlebars->121->3116",
14104 + "default3.handlebars->119->3110"
14105 ]
14106 },
14107 {
@@ -14252,8 +14252,8 @@
14252 "zh-chs": "更改该用户的密码",
14253 "zh-cht": "更改該用戶的密碼",
14254 "xloc": [
14255 - "default.handlebars->121->3060",
14256 - "default3.handlebars->119->3055"
14255 + "default.handlebars->121->3064",
14256 + "default3.handlebars->119->3059"
14257 ]
14258 },
14259 {
@@ -14312,8 +14312,8 @@
14312 "zh-chs": "更改您的邮件地址。",
14313 "zh-cht": "在此處更改你的帳戶電郵地址。",
14314 "xloc": [
14315 - "default.handlebars->121->2119",
14316 - "default3.handlebars->119->2101"
14315 + "default.handlebars->121->2123",
14316 + "default3.handlebars->119->2105"
14317 ]
14318 },
14319 {
@@ -14342,8 +14342,8 @@
14342 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
14343 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
14344 "xloc": [
14345 - "default.handlebars->121->2125",
14346 - "default3.handlebars->119->2105"
14345 + "default.handlebars->121->2129",
14346 + "default3.handlebars->119->2109"
14347 ]
14348 },
14349 {
@@ -14372,8 +14372,8 @@
14372 "zh-chs": "更改帐户凭据",
14373 "zh-cht": "帳戶憑證已更改",
14374 "xloc": [
14375 - "default.handlebars->121->2645",
14376 - "default3.handlebars->119->2642"
14375 + "default.handlebars->121->2649",
14376 + "default3.handlebars->119->2646"
14377 ]
14378 },
14379 {
@@ -14402,8 +14402,8 @@
14402 "zh-chs": "将帐户显示名称更改为 {0}。",
14403 "zh-cht": "將帳戶顯示名稱更改為 {0}。",
14404 "xloc": [
14405 - "default.handlebars->121->2697",
14406 - "default3.handlebars->119->2694"
14405 + "default.handlebars->121->2701",
14406 + "default3.handlebars->119->2698"
14407 ]
14408 },
14409 {
@@ -14432,10 +14432,10 @@
14432 "zh-chs": "{1}组中的设备{0}已更改:{2}",
14433 "zh-cht": "{1}組中的設備{0}已更改:{2}",
14434 "xloc": [
14435 - "default.handlebars->121->2629",
14436 - "default.handlebars->121->2710",
14437 - "default3.handlebars->119->2626",
14438 - "default3.handlebars->119->2707"
14435 + "default.handlebars->121->2633",
14436 + "default.handlebars->121->2714",
14437 + "default3.handlebars->119->2630",
14438 + "default3.handlebars->119->2711"
14439 ]
14440 },
14441 {
@@ -14464,8 +14464,8 @@
14464 "zh-chs": "语言从{1}更改为{2}",
14465 "zh-cht": "語言從{1}更改為{2}",
14466 "xloc": [
14467 - "default.handlebars->121->2573",
14468 - "default3.handlebars->119->2570"
14467 + "default.handlebars->121->2577",
14468 + "default3.handlebars->119->2574"
14469 ]
14470 },
14471 {
@@ -14494,10 +14494,10 @@
14494 "zh-chs": "已更改{0}的用户设备权限",
14495 "zh-cht": "已更改{0}的用戶設備權限",
14496 "xloc": [
14497 - "default.handlebars->121->2631",
14498 - "default.handlebars->121->2652",
14499 - "default3.handlebars->119->2628",
14500 - "default3.handlebars->119->2649"
14497 + "default.handlebars->121->2635",
14498 + "default.handlebars->121->2656",
14499 + "default3.handlebars->119->2632",
14500 + "default3.handlebars->119->2653"
14501 ]
14502 },
14503 {
@@ -14527,8 +14527,8 @@
14527 "zh-cht": "更改語言將需要刷新頁面。",
14528 "xloc": [
14529 "default-mobile.handlebars->55->319",
14530 - "default.handlebars->121->2083",
14531 - "default3.handlebars->119->2064"
14530 + "default.handlebars->121->2087",
14531 + "default3.handlebars->119->2068"
14532 ]
14533 },
14534 {
@@ -14554,9 +14554,9 @@
14554 "zh-chs": "收费率",
14555 "zh-cht": "收費率",
14556 "xloc": [
14557 - "default-mobile.handlebars->55->880",
14558 - "default.handlebars->121->1720",
14559 - "default3.handlebars->119->1703"
14557 + "default-mobile.handlebars->55->881",
14558 + "default.handlebars->121->1724",
14559 + "default3.handlebars->119->1707"
14560 ]
14561 },
14562 {
@@ -14582,9 +14582,9 @@
14582 "zh-chs": "收费",
14583 "zh-cht": "收費",
14584 "xloc": [
14585 - "default-mobile.handlebars->55->882",
14586 - "default.handlebars->121->1722",
14587 - "default3.handlebars->119->1705"
14585 + "default-mobile.handlebars->55->883",
14586 + "default.handlebars->121->1726",
14587 + "default3.handlebars->119->1709"
14588 ]
14589 },
14590 {
@@ -14613,18 +14613,18 @@
14613 "zh-chs": "聊天",
14614 "zh-cht": "聊天",
14615 "xloc": [
14616 - "default.handlebars->121->1014",
14617 - "default.handlebars->121->1133",
14618 - "default.handlebars->121->1158",
14619 - "default.handlebars->121->2777",
14620 - "default.handlebars->121->3056",
14621 - "default.handlebars->121->3057",
14622 - "default3.handlebars->119->1010",
14623 - "default3.handlebars->119->1127",
14624 - "default3.handlebars->119->1152",
14625 - "default3.handlebars->119->2774",
14626 - "default3.handlebars->119->3051",
14627 - "default3.handlebars->119->3052"
14616 + "default.handlebars->121->1018",
14617 + "default.handlebars->121->1137",
14618 + "default.handlebars->121->1162",
14619 + "default.handlebars->121->2781",
14620 + "default.handlebars->121->3060",
14621 + "default.handlebars->121->3061",
14622 + "default3.handlebars->119->1014",
14623 + "default3.handlebars->119->1131",
14624 + "default3.handlebars->119->1156",
14625 + "default3.handlebars->119->2778",
14626 + "default3.handlebars->119->3055",
14627 + "default3.handlebars->119->3056"
14628 ]
14629 },
14630 {
@@ -14653,12 +14653,12 @@
14653 "zh-chs": "聊天并通知",
14654 "zh-cht": "聊天並通知",
14655 "xloc": [
14656 - "default-mobile.handlebars->55->1028",
14657 - "default-mobile.handlebars->55->1048",
14658 - "default.handlebars->121->2407",
14659 - "default.handlebars->121->2445",
14660 - "default3.handlebars->119->2404",
14661 - "default3.handlebars->119->2442"
14656 + "default-mobile.handlebars->55->1029",
14657 + "default-mobile.handlebars->55->1049",
14658 + "default.handlebars->121->2411",
14659 + "default.handlebars->121->2449",
14660 + "default3.handlebars->119->2408",
14661 + "default3.handlebars->119->2446"
14662 ]
14663 },
14664 {
@@ -14687,9 +14687,9 @@
14687 "zh-chs": "聊天请求,点击这里接受。",
14688 "zh-cht": "聊天請求,點擊這裡接受。",
14689 "xloc": [
14690 - "default-mobile.handlebars->55->1080",
14691 - "default.handlebars->121->3347",
14692 - "default3.handlebars->119->3338"
14690 + "default-mobile.handlebars->55->1081",
14691 + "default.handlebars->121->3351",
14692 + "default3.handlebars->119->3342"
14693 ]
14694 },
14695 {
@@ -14748,8 +14748,8 @@
14748 "zh-cht": "車臣",
14749 "xloc": [
14750 "default-mobile.handlebars->55->153",
14751 - "default.handlebars->121->1917",
14752 - "default3.handlebars->119->1898",
14751 + "default.handlebars->121->1921",
14752 + "default3.handlebars->119->1902",
14753 "login2.handlebars->17->34"
14754 ]
14755 },
@@ -14914,10 +14914,10 @@
14914 "zh-chs": "检查...",
14915 "zh-cht": "檢查...",
14916 "xloc": [
14917 - "default.handlebars->121->1883",
14918 - "default.handlebars->121->3469",
14919 - "default3.handlebars->119->1864",
14920 - "default3.handlebars->119->3460"
14917 + "default.handlebars->121->1887",
14918 + "default.handlebars->121->3473",
14919 + "default3.handlebars->119->1868",
14920 + "default3.handlebars->119->3464"
14921 ]
14922 },
14923 {
@@ -14943,9 +14943,9 @@
14943 "zh-chs": "化学",
14944 "zh-cht": "化學",
14945 "xloc": [
14946 - "default-mobile.handlebars->55->874",
14947 - "default.handlebars->121->1714",
14948 - "default3.handlebars->119->1697"
14946 + "default-mobile.handlebars->55->875",
14947 + "default.handlebars->121->1718",
14948 + "default3.handlebars->119->1701"
14949 ]
14950 },
14951 {
@@ -14975,8 +14975,8 @@
14975 "zh-cht": "中文",
14976 "xloc": [
14977 "default-mobile.handlebars->55->154",
14978 - "default.handlebars->121->1918",
14979 - "default3.handlebars->119->1899",
14978 + "default.handlebars->121->1922",
14979 + "default3.handlebars->119->1903",
14980 "login2.handlebars->17->35"
14981 ]
14982 },
@@ -15007,8 +15007,8 @@
15007 "zh-cht": "中文(香港)",
15008 "xloc": [
15009 "default-mobile.handlebars->55->155",
15010 - "default.handlebars->121->1919",
15011 - "default3.handlebars->119->1900",
15010 + "default.handlebars->121->1923",
15011 + "default3.handlebars->119->1904",
15012 "login2.handlebars->17->36"
15013 ]
15014 },
@@ -15039,8 +15039,8 @@
15039 "zh-cht": "中文(中國)",
15040 "xloc": [
15041 "default-mobile.handlebars->55->156",
15042 - "default.handlebars->121->1920",
15043 - "default3.handlebars->119->1901",
15042 + "default.handlebars->121->1924",
15043 + "default3.handlebars->119->1905",
15044 "login2.handlebars->17->37"
15045 ]
15046 },
@@ -15071,8 +15071,8 @@
15071 "zh-cht": "簡體中文",
15072 "xloc": [
15073 "default-mobile.handlebars->55->316",
15074 - "default.handlebars->121->2080",
15075 - "default3.handlebars->119->2061",
15074 + "default.handlebars->121->2084",
15075 + "default3.handlebars->119->2065",
15076 "login2.handlebars->17->197"
15077 ]
15078 },
@@ -15103,8 +15103,8 @@
15103 "zh-cht": "中文(新加坡)",
15104 "xloc": [
15105 "default-mobile.handlebars->55->157",
15106 - "default.handlebars->121->1921",
15107 - "default3.handlebars->119->1902",
15106 + "default.handlebars->121->1925",
15107 + "default3.handlebars->119->1906",
15108 "login2.handlebars->17->38"
15109 ]
15110 },
@@ -15135,8 +15135,8 @@
15135 "zh-cht": "中文(台灣)",
15136 "xloc": [
15137 "default-mobile.handlebars->55->158",
15138 - "default.handlebars->121->1922",
15139 - "default3.handlebars->119->1903",
15138 + "default.handlebars->121->1926",
15139 + "default3.handlebars->119->1907",
15140 "login2.handlebars->17->39"
15141 ]
15142 },
@@ -15167,8 +15167,8 @@
15167 "zh-cht": "繁體中文",
15168 "xloc": [
15169 "default-mobile.handlebars->55->317",
15170 - "default.handlebars->121->2081",
15171 - "default3.handlebars->119->2062",
15170 + "default.handlebars->121->2085",
15171 + "default3.handlebars->119->2066",
15172 "login2.handlebars->17->198"
15173 ]
15174 },
@@ -15230,8 +15230,8 @@
15230 "zh-cht": "楚瓦什",
15231 "xloc": [
15232 "default-mobile.handlebars->55->159",
15233 - "default.handlebars->121->1923",
15234 - "default3.handlebars->119->1904",
15233 + "default.handlebars->121->1927",
15234 + "default3.handlebars->119->1908",
15235 "login2.handlebars->17->40"
15236 ]
15237 },
@@ -15275,18 +15275,18 @@
15275 "default-mobile.handlebars->55->728",
15276 "default-mobile.handlebars->55->94",
15277 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
15278 - "default.handlebars->121->1567",
15279 - "default.handlebars->121->1569",
15278 "default.handlebars->121->1571",
15279 "default.handlebars->121->1573",
15282 - "default.handlebars->121->2567",
15280 + "default.handlebars->121->1575",
15281 + "default.handlebars->121->1577",
15282 + "default.handlebars->121->2571",
15283 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15284 "default.handlebars->container->column_l->p41->3->1",
15285 - "default3.handlebars->119->1552",
15286 - "default3.handlebars->119->1554",
15285 "default3.handlebars->119->1556",
15286 "default3.handlebars->119->1558",
15289 - "default3.handlebars->119->2564",
15287 + "default3.handlebars->119->1560",
15288 + "default3.handlebars->119->1562",
15289 + "default3.handlebars->119->2568",
15290 "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
15291 "default3.handlebars->container->column_l->p41->3->3",
15292 "messenger.handlebars->xbottom->1->1->0->5",
@@ -15327,7 +15327,7 @@
15327 "zh-cht": "清除 RDP 憑據?",
15328 "xloc": [
15329 "default-mobile.handlebars->55->625",
15330 - "default.handlebars->121->1360"
15330 + "default.handlebars->121->1364"
15331 ]
15332 },
15333 {
@@ -15357,7 +15357,7 @@
15357 "zh-cht": "清除 SSH 憑據?",
15358 "xloc": [
15359 "default-mobile.handlebars->55->623",
15360 - "default.handlebars->121->1358"
15360 + "default.handlebars->121->1362"
15361 ]
15362 },
15363 {
@@ -15416,10 +15416,10 @@
15416 "zh-chs": "清除代理核心",
15417 "zh-cht": "清除代理核心",
15418 "xloc": [
15419 - "default.handlebars->121->762",
15420 - "default.handlebars->121->804",
15421 - "default3.handlebars->119->758",
15422 - "default3.handlebars->119->800"
15419 + "default.handlebars->121->765",
15420 + "default.handlebars->121->807",
15421 + "default3.handlebars->119->761",
15422 + "default3.handlebars->119->803"
15423 ]
15424 },
15425 {
@@ -15448,8 +15448,8 @@
15448 "zh-chs": "清除选定设备上的代理核心?",
15449 "zh-cht": "清除所選設備上的代理核心?",
15450 "xloc": [
15451 - "default.handlebars->121->803",
15452 - "default3.handlebars->119->799"
15451 + "default.handlebars->121->806",
15452 + "default3.handlebars->119->802"
15453 ]
15454 },
15455 {
@@ -15478,9 +15478,9 @@
15478 "zh-chs": "全部清除",
15479 "zh-cht": "全部清除",
15480 "xloc": [
15481 - "default-mobile.handlebars->55->1063",
15482 - "default.handlebars->121->3330",
15483 - "default3.handlebars->119->3321"
15481 + "default-mobile.handlebars->55->1064",
15482 + "default.handlebars->121->3334",
15483 + "default3.handlebars->119->3325"
15484 ]
15485 },
15486 {
@@ -15510,8 +15510,8 @@
15510 "zh-cht": "清除搜索過濾器",
15511 "xloc": [
15512 "default-mobile.handlebars->55->400",
15513 - "default.handlebars->121->382",
15514 - "default3.handlebars->119->378"
15513 + "default.handlebars->121->383",
15514 + "default3.handlebars->119->379"
15515 ]
15516 },
15517 {
@@ -15540,9 +15540,9 @@
15540 "zh-chs": "清除核心",
15541 "zh-cht": "清除核心",
15542 "xloc": [
15543 - "default-mobile.handlebars->55->964",
15544 - "default.handlebars->121->1805",
15545 - "default3.handlebars->119->1788"
15543 + "default-mobile.handlebars->55->965",
15544 + "default.handlebars->121->1809",
15545 + "default3.handlebars->119->1792"
15546 ]
15547 },
15548 {
@@ -15602,9 +15602,9 @@
15602 "zh-chs": "清除此通知",
15603 "zh-cht": "清除此通知",
15604 "xloc": [
15605 - "default-mobile.handlebars->55->1062",
15606 - "default.handlebars->121->3329",
15607 - "default3.handlebars->119->3320"
15605 + "default-mobile.handlebars->55->1063",
15606 + "default.handlebars->121->3333",
15607 + "default3.handlebars->119->3324"
15608 ]
15609 },
15610 {
@@ -15720,10 +15720,10 @@
15720 "zh-chs": "单击此处编辑设备组名称",
15721 "zh-cht": "單擊此處編輯裝置群名稱",
15722 "xloc": [
15723 - "default.handlebars->121->2202",
15724 - "default.handlebars->121->2506",
15725 - "default3.handlebars->119->2198",
15726 - "default3.handlebars->119->2503"
15723 + "default.handlebars->121->2206",
15724 + "default.handlebars->121->2510",
15725 + "default3.handlebars->119->2202",
15726 + "default3.handlebars->119->2507"
15727 ]
15728 },
15729 {
@@ -15752,8 +15752,8 @@
15752 "zh-chs": "单击此处编辑服务器端设备名称",
15753 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
15754 "xloc": [
15755 - "default.handlebars->121->876",
15756 - "default3.handlebars->119->872"
15755 + "default.handlebars->121->879",
15756 + "default3.handlebars->119->875"
15757 ]
15758 },
15759 {
@@ -15782,8 +15782,8 @@
15782 "zh-chs": "单击此处编辑用户组名称",
15783 "zh-cht": "單擊此處編輯用戶群名稱",
15784 "xloc": [
15785 - "default.handlebars->121->2907",
15786 - "default3.handlebars->119->2902"
15785 + "default.handlebars->121->2911",
15786 + "default3.handlebars->119->2906"
15787 ]
15788 },
15789 {
@@ -15902,8 +15902,8 @@
15902 "zh-cht": "單擊確定將驗證電郵發送到:",
15903 "xloc": [
15904 "default-mobile.handlebars->55->329",
15905 - "default.handlebars->121->2116",
15906 - "default3.handlebars->119->2098"
15905 + "default.handlebars->121->2120",
15906 + "default3.handlebars->119->2102"
15907 ]
15908 },
15909 {
@@ -15992,9 +15992,9 @@
15992 "zh-chs": "客户端控制模式(CCM)",
15993 "zh-cht": "客戶端控制模式(CCM)",
15994 "xloc": [
15995 - "default-mobile.handlebars->55->825",
15996 - "default.handlebars->121->1665",
15997 - "default3.handlebars->119->1648"
15995 + "default-mobile.handlebars->55->826",
15996 + "default.handlebars->121->1669",
15997 + "default3.handlebars->119->1652"
15998 ]
15999 },
16000 {
@@ -16023,8 +16023,8 @@
16023 "zh-chs": "客户编号",
16024 "zh-cht": "客戶編號",
16025 "xloc": [
16026 - "default.handlebars->121->2179",
16027 - "default3.handlebars->119->2179"
16026 + "default.handlebars->121->2183",
16027 + "default3.handlebars->119->2183"
16028 ]
16029 },
16030 {
@@ -16053,8 +16053,8 @@
16053 "zh-chs": "客户端启动的远程访问",
16054 "zh-cht": "客戶端啟動的遠程訪問",
16055 "xloc": [
16056 - "default.handlebars->121->2333",
16057 - "default3.handlebars->119->2328"
16056 + "default.handlebars->121->2337",
16057 + "default3.handlebars->119->2332"
16058 ]
16059 },
16060 {
@@ -16083,8 +16083,8 @@
16083 "zh-chs": "客户机密",
16084 "zh-cht": "客戶機密",
16085 "xloc": [
16086 - "default.handlebars->121->2180",
16087 - "default3.handlebars->119->2180"
16086 + "default.handlebars->121->2184",
16087 + "default3.handlebars->119->2184"
16088 ]
16089 },
16090 {
@@ -16146,13 +16146,13 @@
16146 "xloc": [
16147 "agent-translations.json",
16148 "default-mobile.handlebars->55->92",
16149 - "default.handlebars->121->1472",
16150 - "default.handlebars->121->1541",
16149 + "default.handlebars->121->1476",
16150 + "default.handlebars->121->1545",
16151 "default.handlebars->121->247",
16152 "default.handlebars->121->256",
16153 - "default.handlebars->121->3463",
16154 - "default3.handlebars->119->1458",
16155 - "default3.handlebars->119->1526",
16153 + "default.handlebars->121->3467",
16154 + "default3.handlebars->119->1462",
16155 + "default3.handlebars->119->1530",
16156 "default3.handlebars->119->352",
16157 "sharing.handlebars->49->51"
16158 ]
@@ -16183,8 +16183,8 @@
16183 "zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒",
16184 "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
16185 "xloc": [
16186 - "default.handlebars->121->2717",
16187 - "default3.handlebars->119->2714"
16186 + "default.handlebars->121->2721",
16187 + "default3.handlebars->119->2718"
16188 ]
16189 },
16190 {
@@ -16213,8 +16213,8 @@
16213 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
16214 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
16215 "xloc": [
16216 - "default.handlebars->121->2578",
16217 - "default3.handlebars->119->2575"
16216 + "default.handlebars->121->2582",
16217 + "default3.handlebars->119->2579"
16218 ]
16219 },
16220 {
@@ -16340,8 +16340,8 @@
16340 "zh-cht": "命令",
16341 "xloc": [
16342 "agentinvite.handlebars->13->17",
16343 - "default.handlebars->121->700",
16344 - "default3.handlebars->119->696"
16343 + "default.handlebars->121->703",
16344 + "default3.handlebars->119->699"
16345 ]
16346 },
16347 {
@@ -16400,13 +16400,13 @@
16400 "zh-chs": "指令",
16401 "zh-cht": "指令",
16402 "xloc": [
16403 - "default-mobile.handlebars->55->1050",
16404 - "default.handlebars->121->1135",
16405 - "default.handlebars->121->1160",
16406 - "default.handlebars->121->2447",
16407 - "default3.handlebars->119->1129",
16408 - "default3.handlebars->119->1154",
16409 - "default3.handlebars->119->2444"
16403 + "default-mobile.handlebars->55->1051",
16404 + "default.handlebars->121->1139",
16405 + "default.handlebars->121->1164",
16406 + "default.handlebars->121->2451",
16407 + "default3.handlebars->119->1133",
16408 + "default3.handlebars->119->1158",
16409 + "default3.handlebars->119->2448"
16410 ]
16411 },
16412 {
@@ -16423,8 +16423,8 @@
16423 "uk": "Команди з файлу",
16424 "xloc": [
16425 "default-mobile.handlebars->55->607",
16426 - "default.handlebars->121->829",
16427 - "default3.handlebars->119->825"
16426 + "default.handlebars->121->832",
16427 + "default3.handlebars->119->828"
16428 ]
16429 },
16430 {
@@ -16441,8 +16441,8 @@
16441 "uk": "Команди з файлу на сервері",
16442 "xloc": [
16443 "default-mobile.handlebars->55->608",
16444 - "default.handlebars->121->830",
16445 - "default3.handlebars->119->826"
16444 + "default.handlebars->121->833",
16445 + "default3.handlebars->119->829"
16446 ]
16447 },
16448 {
@@ -16459,8 +16459,8 @@
16459 "uk": "Команди з текстового поля",
16460 "xloc": [
16461 "default-mobile.handlebars->55->606",
16462 - "default.handlebars->121->828",
16463 - "default3.handlebars->119->824"
16462 + "default.handlebars->121->831",
16463 + "default3.handlebars->119->827"
16464 ]
16465 },
16466 {
@@ -16489,10 +16489,10 @@
16489 "zh-chs": "通用设备组",
16490 "zh-cht": "通用裝置群",
16491 "xloc": [
16492 - "default.handlebars->121->2942",
16493 - "default.handlebars->121->3131",
16494 - "default3.handlebars->119->2937",
16495 - "default3.handlebars->119->3120"
16492 + "default.handlebars->121->2946",
16493 + "default.handlebars->121->3135",
16494 + "default3.handlebars->119->2941",
16495 + "default3.handlebars->119->3124"
16496 ]
16497 },
16498 {
@@ -16521,10 +16521,10 @@
16521 "zh-chs": "通用设备",
16522 "zh-cht": "通用裝置",
16523 "xloc": [
16524 - "default.handlebars->121->2948",
16525 - "default.handlebars->121->3143",
16526 - "default3.handlebars->119->2943",
16527 - "default3.handlebars->119->3132"
16524 + "default.handlebars->121->2952",
16525 + "default.handlebars->121->3147",
16526 + "default3.handlebars->119->2947",
16527 + "default3.handlebars->119->3136"
16528 ]
16529 },
16530 {
@@ -16553,9 +16553,9 @@
16553 "zh-chs": "编译时间",
16554 "zh-cht": "編譯時間",
16555 "xloc": [
16556 - "default-mobile.handlebars->55->791",
16557 - "default.handlebars->121->1621",
16558 - "default3.handlebars->119->1606"
16556 + "default-mobile.handlebars->55->792",
16557 + "default.handlebars->121->1625",
16558 + "default3.handlebars->119->1610"
16559 ]
16560 },
16561 {
@@ -16584,8 +16584,8 @@
16584 "zh-chs": "压缩档案...",
16585 "zh-cht": "壓縮檔案...",
16586 "xloc": [
16587 - "default.handlebars->121->1530",
16588 - "default3.handlebars->119->1515",
16587 + "default.handlebars->121->1534",
16588 + "default3.handlebars->119->1519",
16589 "sharing.handlebars->49->47"
16590 ]
16591 },
@@ -16601,8 +16601,8 @@
16601 "pl": "Zapisy pliku konfiguracyjnego",
16602 "uk": "Записи файлу конфігурації",
16603 "xloc": [
16604 - "default.handlebars->121->3296",
16605 - "default3.handlebars->119->3287"
16604 + "default.handlebars->121->3300",
16605 + "default3.handlebars->119->3291"
16606 ]
16607 },
16608 {
@@ -16631,31 +16631,31 @@
16631 "zh-chs": "确认",
16632 "zh-cht": "確認",
16633 "xloc": [
16634 + "default-mobile.handlebars->55->1000",
16635 "default-mobile.handlebars->55->620",
16635 - "default-mobile.handlebars->55->999",
16636 - "default.handlebars->121->1309",
16637 - "default.handlebars->121->1318",
16638 - "default.handlebars->121->2344",
16639 - "default.handlebars->121->2807",
16640 - "default.handlebars->121->2897",
16641 - "default.handlebars->121->2964",
16642 - "default.handlebars->121->3129",
16643 - "default.handlebars->121->773",
16644 - "default3.handlebars->119->1299",
16645 - "default3.handlebars->119->1307",
16646 - "default3.handlebars->119->2338",
16647 - "default3.handlebars->119->2804",
16648 - "default3.handlebars->119->2892",
16649 - "default3.handlebars->119->2959",
16650 - "default3.handlebars->119->3118",
16651 - "default3.handlebars->119->769"
16636 + "default.handlebars->121->1313",
16637 + "default.handlebars->121->1322",
16638 + "default.handlebars->121->2348",
16639 + "default.handlebars->121->2811",
16640 + "default.handlebars->121->2901",
16641 + "default.handlebars->121->2968",
16642 + "default.handlebars->121->3133",
16643 + "default.handlebars->121->776",
16644 + "default3.handlebars->119->1303",
16645 + "default3.handlebars->119->1311",
16646 + "default3.handlebars->119->2342",
16647 + "default3.handlebars->119->2808",
16648 + "default3.handlebars->119->2896",
16649 + "default3.handlebars->119->2963",
16650 + "default3.handlebars->119->3122",
16651 + "default3.handlebars->119->772"
16652 ]
16653 },
16654 {
16655 "en": "Confirm Password",
16656 "nl": "Bevestig wachtwoord",
16657 "xloc": [
16658 - "default3.handlebars->119->2853"
16658 + "default3.handlebars->119->2857"
16659 ]
16660 },
16661 {
@@ -16685,8 +16685,8 @@
16685 "zh-cht": "確認將1個副本複製到此位置?",
16686 "xloc": [
16687 "default-mobile.handlebars->55->717",
16688 - "default.handlebars->121->1562",
16689 - "default3.handlebars->119->1547",
16688 + "default.handlebars->121->1566",
16689 + "default3.handlebars->119->1551",
16690 "sharing-mobile.handlebars->55->92",
16691 "sharing.handlebars->49->69"
16692 ]
@@ -16717,8 +16717,8 @@
16717 "zh-chs": "确认{0}个条目的复制到此位置?",
16718 "zh-cht": "確認{0}個條目的複製到此位置?",
16719 "xloc": [
16720 - "default.handlebars->121->1561",
16721 - "default3.handlebars->119->1546",
16720 + "default.handlebars->121->1565",
16721 + "default3.handlebars->119->1550",
16722 "sharing.handlebars->49->68"
16723 ]
16724 },
@@ -16778,8 +16778,8 @@
16778 "zh-chs": "确认删除选定的帐户?",
16779 "zh-cht": "確認刪除所選帳戶?",
16780 "xloc": [
16781 - "default.handlebars->121->2806",
16782 - "default3.handlebars->119->2803"
16781 + "default.handlebars->121->2810",
16782 + "default3.handlebars->119->2807"
16783 ]
16784 },
16785 {
@@ -16808,8 +16808,8 @@
16808 "zh-chs": "确认删除选定的用户组?",
16809 "zh-cht": "確認刪除所選用戶群?",
16810 "xloc": [
16811 - "default.handlebars->121->2896",
16812 - "default3.handlebars->119->2891"
16811 + "default.handlebars->121->2900",
16812 + "default3.handlebars->119->2895"
16813 ]
16814 },
16815 {
@@ -16838,24 +16838,24 @@
16838 "zh-chs": "确认删除用户{0}?",
16839 "zh-cht": "確認刪除用戶{0}?",
16840 "xloc": [
16841 - "default.handlebars->121->3128",
16842 - "default3.handlebars->119->3117"
16841 + "default.handlebars->121->3132",
16842 + "default3.handlebars->119->3121"
16843 ]
16844 },
16845 {
16846 "en": "Confirm disabling 2FA Duo login security.",
16847 "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
16848 "xloc": [
16849 - "default.handlebars->121->1862",
16850 - "default3.handlebars->119->1844"
16849 + "default.handlebars->121->1866",
16850 + "default3.handlebars->119->1848"
16851 ]
16852 },
16853 {
16854 "en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.",
16855 "nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.",
16856 "xloc": [
16857 - "default.handlebars->121->1860",
16858 - "default3.handlebars->119->1842"
16857 + "default.handlebars->121->1864",
16858 + "default3.handlebars->119->1846"
16859 ]
16860 },
16861 {
@@ -16884,8 +16884,8 @@
16884 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
16885 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
16886 "xloc": [
16887 - "default.handlebars->121->2967",
16888 - "default3.handlebars->119->2962"
16887 + "default.handlebars->121->2971",
16888 + "default3.handlebars->119->2966"
16889 ]
16890 },
16891 {
@@ -16914,8 +16914,8 @@
16914 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
16915 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
16916 "xloc": [
16917 - "default.handlebars->121->3160",
16918 - "default3.handlebars->119->3149"
16917 + "default.handlebars->121->3164",
16918 + "default3.handlebars->119->3153"
16919 ]
16920 },
16921 {
@@ -16945,8 +16945,8 @@
16945 "zh-cht": "確認將1個條目移動到此位置?",
16946 "xloc": [
16947 "default-mobile.handlebars->55->719",
16948 - "default.handlebars->121->1564",
16949 - "default3.handlebars->119->1549",
16948 + "default.handlebars->121->1568",
16949 + "default3.handlebars->119->1553",
16950 "sharing-mobile.handlebars->55->94",
16951 "sharing.handlebars->49->71"
16952 ]
@@ -16977,8 +16977,8 @@
16977 "zh-chs": "确认将{0}个条目移到此位置?",
16978 "zh-cht": "確認將{0}個條目移到該位置?",
16979 "xloc": [
16980 - "default.handlebars->121->1563",
16981 - "default3.handlebars->119->1548",
16980 + "default.handlebars->121->1567",
16981 + "default3.handlebars->119->1552",
16982 "sharing.handlebars->49->70"
16983 ]
16984 },
@@ -17038,8 +17038,8 @@
17038 "zh-chs": "确认覆盖?",
17039 "zh-cht": "確認覆蓋?",
17040 "xloc": [
17041 - "default.handlebars->121->2559",
17042 - "default3.handlebars->119->2556"
17041 + "default.handlebars->121->2563",
17042 + "default3.handlebars->119->2560"
17043 ]
17044 },
17045 {
@@ -17068,10 +17068,10 @@
17068 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
17069 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
17070 "xloc": [
17071 - "default.handlebars->121->2957",
17072 - "default.handlebars->121->3151",
17073 - "default3.handlebars->119->2952",
17074 - "default3.handlebars->119->3140"
17071 + "default.handlebars->121->2961",
17072 + "default.handlebars->121->3155",
17073 + "default3.handlebars->119->2956",
17074 + "default3.handlebars->119->3144"
17075 ]
17076 },
17077 {
@@ -17100,10 +17100,10 @@
17100 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
17101 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
17102 "xloc": [
17103 - "default.handlebars->121->2959",
17104 - "default.handlebars->121->3164",
17105 - "default3.handlebars->119->2954",
17106 - "default3.handlebars->119->3153"
17103 + "default.handlebars->121->2963",
17104 + "default.handlebars->121->3168",
17105 + "default3.handlebars->119->2958",
17106 + "default3.handlebars->119->3157"
17107 ]
17108 },
17109 {
@@ -17132,8 +17132,8 @@
17132 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
17133 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
17134 "xloc": [
17135 - "default.handlebars->121->3153",
17136 - "default3.handlebars->119->3142"
17135 + "default.handlebars->121->3157",
17136 + "default3.handlebars->119->3146"
17137 ]

This file is too large to show in full.

views/default-mobile.handlebars
+6
@@ -2096,10 +2096,12 @@
2096 }
2097 if (message.event.node.av != null) { node.av = message.event.node.av; }
2098 if (message.event.node.wsc != null) { node.wsc = message.event.node.wsc; }
2099 + if (message.event.node.defender != null) { node.defender = message.event.node.defender; }
2100 node.namel = node.name.toLowerCase();
2101 if (node.rname) { node.rnamel = node.rname.toLowerCase(); } else { node.rnamel = node.namel; }
2102 if (message.event.node.icon) { node.icon = message.event.node.icon; }
2103 if (message.event.node.lastbootuptime != null) { node.lastbootuptime = message.event.node.lastbootuptime; }
2104 + if (message.event.node.idletime != null) { node.idletime = message.event.node.idletime; }
2105
2106 //onSortSelectChange(true);
2107 //drawNotifications();
@@ -6389,6 +6391,9 @@
6391 x += addDetailItem((node.users.length > 1 ? "Active Users" : "Active User"), u);
6392 }
6393
6394 + // Windows Idle Time
6395 + if (node.idletime) { x += addDetailItem("Idle Time", printTimer(node.idletime)); }
6396 +
6397 if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software' }); }
6398
6399 // MeshAgent
@@ -7767,6 +7772,7 @@
7772 function printDate(d) { return d.toLocaleDateString(args.locale); }
7773 function printTime(d) { return d.toLocaleTimeString(args.locale); }
7774 function printDateTime(d) { return d.toLocaleString(args.locale); }
7775 + function printTimer(d) { return zeroPad(Math.floor(d / 3600), 2) + ':' + zeroPad((Math.floor(d / 60) % 60), 2) + ':' + zeroPad((d % 60), 2); }
7776 function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };
7777 function nobreak(x) { return x.split(' ').join('&nbsp;'); }
7778 function getUserName(userid) {
views/default.handlebars
+12
@@ -3609,11 +3609,13 @@
3609 }
3610 if (message.event.node.av != null) { node.av = message.event.node.av; }
3611 if (message.event.node.wsc != null) { node.wsc = message.event.node.wsc; }
3612 + if (message.event.node.defender != null) { node.defender = message.event.node.defender; }
3613 if (message.event.node.volumes != null) { node.volumes = message.event.node.volumes; }
3614 node.namel = node.name.toLowerCase();
3615 if (node.rname) { node.rnamel = node.rname.toLowerCase(); } else { node.rnamel = node.namel; }
3616 if (message.event.node.icon) { node.icon = message.event.node.icon; }
3617 if (message.event.node.lastbootuptime != null) { node.lastbootuptime = message.event.node.lastbootuptime; }
3618 + if (message.event.node.idletime != null) { node.idletime = message.event.node.idletime; }
3619
3620 // Check if this device has changed device group
3621 if (message.event.node.meshid != node.meshid) {
@@ -4194,6 +4196,7 @@
4196 x += '<label><input id=d2c12 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0)?' checked':'') + '>' + "Windows Update" + '</label><br />';
4197 x += '<label><input id=d2c13 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0)?' checked':'') + '>' + "Windows Firewall" + '</label><br />';
4198 x += '<label><input id=d2c14 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0)?' checked':'') + '>' + "Last Boot Up Time" + '</label><br />';
4199 + x += '<label><input id=d2c16 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('idletime') >= 0)?' checked':'') + '>' + "Idle Time" + '</label><br />';
4200 x += '<label><input id=d2c1 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('links') >= 0)?' checked':'') + '>' + "MeshCentral Router Links" + '</label><br />';
4201 x += '<label><input id=d2c2 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('user') >= 0)?' checked':'') + '>' + "Logged in users" + '</label><br />';
4202 x += '<label><input id=d2c3 type=checkbox' + ((deviceViewSettings.devsCols.indexOf('ip') >= 0)?' checked':'') + '>' + "Agent IP address" + '</label><br />';
@@ -4221,6 +4224,7 @@
4224 if (Q('d2c13').checked) { cols.push('windowsfirewall'); }
4225 if (Q('d2c14').checked) { cols.push('lastbootuptime'); }
4226 if (Q('d2c15').checked) { cols.push('amthost'); }
4227 + if (Q('d2c16').checked) { cols.push('idletime'); }
4228 if (Q('d2c17').checked) { cols.push('amtstate'); }
4229 deviceViewSettings.devsCols = cols;
4230 putstore('_deviceViewSettings', JSON.stringify(deviceViewSettings));
@@ -4663,6 +4667,7 @@
4667 if (deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0) { colums += '<th style=color:gray;width:120px>' + "Windows Update"; }
4668 if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { colums += '<th style=color:gray;width:120px>' + "Windows Firewall"; }
4669 if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { colums += '<th style=color:gray;width:120px>' + "Last Boot Up Time"; }
4670 + if (deviceViewSettings.devsCols.indexOf('idletime') >= 0) { colums += '<th style=color:gray;width:100px title="' + "Updated every 5 Minutes" + '">' + "Idle Time"; }
4671 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { colums += '<th style=color:gray;width:120px>' + "Links"; }
4672 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { colums += '<th style=color:gray;width:120px>' + "User"; }
4673 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { colums += '<th style=color:gray;width:120px>' + "Address"; }
@@ -4980,6 +4985,9 @@
4985 if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { // Last Boot Up Time
4986 r += '<td style=text-align:center;font-size:x-small>' + ((node.lastbootuptime != null) ? printDateTime(new Date(node.lastbootuptime)) : "");
4987 }
4988 + if (deviceViewSettings.devsCols.indexOf('idletime') >= 0) { // Idle Time
4989 + r += '<td style=text-align:center;font-size:x-small>' + ((node.idletime != null) ? printTimer(node.idletime) : "");
4990 + }
4991 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { r += '<td style=text-align:center;font-size:x-small>' + getShortRouterLinks(node); } // Links
4992 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { r += '<td style=text-align:center>' + getUserShortStr(node); } // User
4993 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { var ip = ''; if (node.mtype == 3) { ip = node.host; } else if (node.ip) { ip = node.ip; } r += '<td style=text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis title="' + EscapeHtml(ip) + '">' + EscapeHtml(ip); } // IP address
@@ -7736,6 +7744,9 @@
7744 }).join(', ');
7745 x += addDeviceAttribute((node.users.length > 1 ? "Active Users" : "Active User"), u);
7746 }
7747 +
7748 + // Windows Idle Time
7749 + if (node.idletime) { x += addDeviceAttribute("Idle Time", printTimer(node.idletime)); }
7750
7751 // Display device user consent
7752 if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {
@@ -19470,6 +19481,7 @@
19481 function printDate(d) { return d.toLocaleDateString(args.locale); }
19482 function printTime(d) { return d.toLocaleTimeString(args.locale); }
19483 function printDateTime(d) { return d.toLocaleString(args.locale); }
19484 + function printTimer(d) { return zeroPad(Math.floor(d / 3600), 2) + ':' + zeroPad((Math.floor(d / 60) % 60), 2) + ':' + zeroPad((d % 60), 2); }
19485 function printFlexDateTime(d) { if (printDate(new Date()) == printDate(d)) { return printTime(d); } else { return printDateTime(d); } }
19486 function addDetailItem(title, value, state) { return '<table style=width:100%><td>' + nobreak(title) + '<td style=text-align:right>' + value + '</table>'; }
19487 function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };
views/default3.handlebars
+13
@@ -4295,11 +4295,13 @@
4295 }
4296 if (message.event.node.av != null) { node.av = message.event.node.av; }
4297 if (message.event.node.wsc != null) { node.wsc = message.event.node.wsc; }
4298 + if (message.event.node.defender != null) { node.defender = message.event.node.defender; }
4299 if (message.event.node.volumes != null) { node.volumes = message.event.node.volumes; }
4300 node.namel = node.name.toLowerCase();
4301 if (node.rname) { node.rnamel = node.rname.toLowerCase(); } else { node.rnamel = node.namel; }
4302 if (message.event.node.icon) { node.icon = message.event.node.icon; }
4303 if (message.event.node.lastbootuptime != null) { node.lastbootuptime = message.event.node.lastbootuptime; }
4304 + if (message.event.node.idletime != null) { node.idletime = message.event.node.idletime; }
4305
4306 // Check if this device has changed device group
4307 if (message.event.node.meshid != node.meshid) {
@@ -4886,6 +4888,7 @@
4888 x += '<label><input id=d2c12 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0) ? ' checked' : '') + '>' + "Windows Update" + '</label><br />';
4889 x += '<label><input id=d2c13 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) ? ' checked' : '') + '>' + "Windows Firewall" + '</label><br />';
4890 x += '<label><input id=d2c14 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) ? ' checked' : '') + '>' + "Last Boot Up Time" + '</label><br />';
4891 + x += '<label><input id=d2c16 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('idletime') >= 0)?' checked':'') + '>' + "Idle Time" + '</label><br />';
4892 x += '<label><input id=d2c1 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('links') >= 0) ? ' checked' : '') + '>' + "MeshCentral Router Links" + '</label><br />';
4893 x += '<label><input id=d2c2 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('user') >= 0) ? ' checked' : '') + '>' + "Logged in users" + '</label><br />';
4894 x += '<label><input id=d2c3 type=checkbox class="form-check-input me-2"' + ((deviceViewSettings.devsCols.indexOf('ip') >= 0) ? ' checked' : '') + '>' + "Agent IP address" + '</label><br />';
@@ -4914,6 +4917,7 @@
4917 if (Q('d2c13').checked) { cols.push('windowsfirewall'); }
4918 if (Q('d2c14').checked) { cols.push('lastbootuptime'); }
4919 if (Q('d2c15').checked) { cols.push('amthost'); }
4920 + if (Q('d2c16').checked) { cols.push('idletime'); }
4921 if (Q('d2c17').checked) { cols.push('amtstate'); }
4922 deviceViewSettings.devsCols = cols;
4923 putstore('_deviceViewSettings', JSON.stringify(deviceViewSettings));
@@ -5359,6 +5363,7 @@
5363 if (deviceViewSettings.devsCols.indexOf('windowsupdate') >= 0) { colums += '<th style=width:120px>' + "Windows Update"; }
5364 if (deviceViewSettings.devsCols.indexOf('windowsfirewall') >= 0) { colums += '<th style=width:120px>' + "Windows Firewall"; }
5365 if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { colums += '<th style=width:120px>' + "Last Boot Up Time"; }
5366 + if (deviceViewSettings.devsCols.indexOf('idletime') >= 0) { colums += '<th style=width:100px title="' + "Updated every 5 Minutes" + '">' + "Idle Time"; }
5367 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { colums += '<th style=width:120px>' + "Links"; }
5368 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { colums += '<th style=width:120px>' + "User"; }
5369 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { colums += '<th style=width:120px>' + "Address"; }
@@ -5675,6 +5680,9 @@
5680 if (deviceViewSettings.devsCols.indexOf('lastbootuptime') >= 0) { // Last Boot Up Time
5681 r += '<td style=text-align:center;font-size:x-small>' + ((node.lastbootuptime != null) ? printDateTime(new Date(node.lastbootuptime)) : "");
5682 }
5683 + if (deviceViewSettings.devsCols.indexOf('idletime') >= 0) { // Idle Time
5684 + r += '<td style=text-align:center;font-size:x-small>' + ((node.idletime != null) ? printTimer(node.idletime) : "");
5685 + }
5686 if (deviceViewSettings.devsCols.indexOf('links') >= 0) { r += '<td style=text-align:center;font-size:x-small>' + getShortRouterLinks(node); } // Links
5687 if (deviceViewSettings.devsCols.indexOf('user') >= 0) { r += '<td style=text-align:center>' + getUserShortStr(node); } // User
5688 if (deviceViewSettings.devsCols.indexOf('ip') >= 0) { var ip = ''; if (node.mtype == 3) { ip = node.host; } else if (node.ip) { ip = node.ip; } r += '<td style=text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis title="' + EscapeHtml(ip) + '">' + EscapeHtml(ip); } // IP address
@@ -8629,6 +8637,10 @@
8637 }).join(', ');
8638 x += addDeviceAttribute((node.users.length > 1 ? "Active Users" : "Active User"), u);
8639 }
8640 +
8641 + // Windows Idle Time
8642 + if (node.idletime) { x += addDeviceAttribute("Idle Time", printTimer(node.idletime)); }
8643 +
8644 // Display device user consent
8645 if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {
8646 var meshFeatures = [];
@@ -21188,6 +21200,7 @@
21200 function printDate(d) { return d.toLocaleDateString(args.locale); }
21201 function printTime(d) { return d.toLocaleTimeString(args.locale); }
21202 function printDateTime(d) { return d.toLocaleString(args.locale); }
21203 + function printTimer(d) { return zeroPad(Math.floor(d / 3600), 2) + ':' + zeroPad((Math.floor(d / 60) % 60), 2) + ':' + zeroPad((d % 60), 2); }
21204 function printFlexDateTime(d) { if (printDate(new Date()) == printDate(d)) { return printTime(d); } else { return printDateTime(d); } }
21205
21206 function addDetailItem(title, value, state, classNames = []) {