Intel AMT improvements.

Ylian Saint-Hilaire committed Nov 24, 2020 at 23:17 UTC 52114da91ce2ce17c8dc49d8cb5d9a5c96dd9385
9 files changed +794 -748
agents/MeshCmd-signed.exe
Binary files a/agents/MeshCmd-signed.exe and b/agents/MeshCmd-signed.exe differ
agents/MeshCmd64-signed.exe
Binary files a/agents/MeshCmd64-signed.exe and b/agents/MeshCmd64-signed.exe differ
agents/meshcmd.js
+8
@@ -534,6 +534,7 @@ function run(argv) {
534 amtMei.getLanInterfaceSettings(0, function (result) { if (result) { mestate.net0 = result; } });
535 amtMei.getLanInterfaceSettings(1, function (result) { if (result) { mestate.net1 = result; } });
536 amtMei.getUuid(function (result) { if ((result != null) && (result.uuid != null)) { mestate.uuid = result.uuid; } });
537 + amtMei.getRemoteAccessConnectionStatus(function (result) { if ((result != null) && (result.status == 0)) { mestate.networkStatus = result.networkStatus; mestate.remoteAccessStatus = result.remoteAccessStatus; mestate.remoteAccessTrigger = result.remoteAccessTrigger; mestate.mpsHostname = result.mpsHostname; } });
538 amtMei.getDnsSuffix(function (result) {
539 if (result) { mestate.dns = result; }
540 if (mestate.ver && mestate.ProvisioningState && mestate.ProvisioningMode) {
@@ -570,6 +571,13 @@ function run(argv) {
571 if (fqdn != null) { str += '\r\nDNS suffix: ' + fqdn; }
572 }
573 }
574 + if (typeof mestate.networkStatus == 'number') {
575 + str += '\r\nConnection Status: ' + ['Direct', 'VPN', 'Outside'][mestate.networkStatus];
576 + str += ', CIRA: ' + ['Disconnected', 'Connecting', 'Connected'][mestate.remoteAccessStatus];
577 + if ((mestate.remoteAccessStatus > 0) && (mestate.mpsHostname != null) && (mestate.mpsHostname.length > 0)) {
578 + str += ' to ' + mestate.mpsHostname + ', ' + ['User initiated', 'Alert', 'Periodic', 'Provisioning'][mestate.remoteAccessTrigger];
579 + }
580 + }
581 console.log(str + '.');
582 } else {
583 console.log('Intel(R) AMT not supported.');
agents/modules_meshcmd/amt-mei.js
+1 -1
@@ -390,7 +390,7 @@ function amt_heci() {
390 for (var i = 1; i < arguments.length; ++i) { optional.push(arguments[i]); }
391 this.sendCommand(0x46, null, function (header, fn, opt) {
392 if (header.Status == 0) {
393 - var hostname = v.slice(14, header.Data.readUInt16LE(12) + 14).toString()
393 + var hostname = header.Data.slice(14, header.Data.readUInt16LE(12) + 14).toString()
394 opt.unshift({ status: header.Status, networkStatus: header.Data.readUInt32LE(0), remoteAccessStatus: header.Data.readUInt32LE(4), remoteAccessTrigger: header.Data.readUInt32LE(8), mpsHostname: hostname, raw: header.Data });
395 } else {
396 opt.unshift({ status: header.Status });
agents/modules_meshcore/amt-mei.js
+1 -1
@@ -390,7 +390,7 @@ function amt_heci() {
390 for (var i = 1; i < arguments.length; ++i) { optional.push(arguments[i]); }
391 this.sendCommand(0x46, null, function (header, fn, opt) {
392 if (header.Status == 0) {
393 - var hostname = v.slice(14, header.Data.readUInt16LE(12) + 14).toString()
393 + var hostname = header.Data.slice(14, header.Data.readUInt16LE(12) + 14).toString()
394 opt.unshift({ status: header.Status, networkStatus: header.Data.readUInt32LE(0), remoteAccessStatus: header.Data.readUInt32LE(4), remoteAccessTrigger: header.Data.readUInt32LE(8), mpsHostname: hostname, raw: header.Data });
395 } else {
396 opt.unshift({ status: header.Status });
amtmanager.js
+11 -5
@@ -1619,17 +1619,23 @@ module.exports.CreateAmtManager = function (parent) {
1619 const mesh = parent.webserver.meshes[dev.meshid];
1620 if (mesh == null) { dev.consoleMsg("Unable to find device group."); removeAmtDevice(dev); return false; }
1621 var amtPolicy = 0; // 0 = Do nothing, 1 = Deactivate CCM, 2 = CCM, 3 = ACM
1622 - if (mesh.amt != null) { if (mesh.amt.type) { amtPolicy = mesh.amt.type; } }
1622 + var ccmPolicy = 0; // Only used when in ACM policy: 0 = Do nothing, 1 = Deactivate CCM, 2 = CCM is ACM fails
1623 + if (mesh.amt != null) { if (typeof mesh.amt.type == 'number') { amtPolicy = mesh.amt.type; } if (typeof mesh.amt.ccm == 'number') { ccmPolicy = mesh.amt.ccm; } }
1624 if ((typeof dev.mpsConnection.tag.meiState.OsAdmin != 'object') || (typeof dev.mpsConnection.tag.meiState.OsAdmin.user != 'string') || (typeof dev.mpsConnection.tag.meiState.OsAdmin.pass != 'string')) { amtPolicy = 0; }
1625 if (amtPolicy == 0) { removeAmtDevice(dev); return false; } // Do nothing, we should not have gotten this CIRA-LMS connection.
1626 if (amtPolicy == 2) { activateIntelAmtCcm(dev, mesh.amt.password); } // Activate to CCM policy
1627 if ((amtPolicy == 3) || (amtPolicy == 4)) { // Activate to ACM policy
1628 var acminfo = checkAcmActivation(dev);
1629 if (acminfo == null) {
1629 - // No opportunity to activate to ACM, check if we are already in CCM
1630 - if ((dev.mpsConnection.tag.meiState.Flags & 2) != 0) return true; // We are in CCM, keep going
1631 - // We are not already in CCM, go to CCM now
1632 - activateIntelAmtCcm(dev, mesh.amt.password);
1630 + // No opportunity to activate to ACM, check if we are in CCM
1631 + if ((dev.mpsConnection.tag.meiState.Flags & 2) != 0) {
1632 + if ((amtPolicy == 3) && (ccmPolicy == 1)) { deactivateIntelAmtCCM(dev); } // If we are in ACM policy and CCM is not allowed, deactivate it now.
1633 + else { return true; } // We are in CCM, keep going
1634 + } else {
1635 + // We are not in CCM, go to CCM now
1636 + if ((amtPolicy == 4) || ((amtPolicy == 3) && (ccmPolicy == 2))) { activateIntelAmtCcm(dev, mesh.amt.password); } // If we are in full automatic or ACM with CCM allowed, setup CCM.
1637 + else { removeAmtDevice(dev); return false; } // We are not in CCM and policy restricts use of CCM, so exit now.
1638 + }
1639 } else {
1640 // Found a certificate to activate to ACM.
1641 if ((dev.mpsConnection.tag.meiState.Flags & 2) != 0) {
meshuser.js
+3
@@ -3329,8 +3329,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3329 } else if (command.amtpolicy.type === 3) {
3330 if ((command.amtpolicy.password != null) && (common.validateString(command.amtpolicy.password, 0, 32) == false)) break; // Check the amtpolicy.password
3331 if ((command.amtpolicy.badpass != null) && common.validateInt(command.amtpolicy.badpass, 0, 1) == false) break; // Check the amtpolicy.badpass
3332 + if ((command.amtpolicy.ccm != null) && common.validateInt(command.amtpolicy.ccm, 0, 2) == false) break; // Check the amtpolicy.ccm
3333 if (common.validateInt(command.amtpolicy.cirasetup, 0, 2) == false) break; // Check the amtpolicy.cirasetup
3334 }
3335 +
3336 mesh = parent.meshes[command.meshid];
3337 change = '';
3338 if (mesh) {
@@ -3345,6 +3347,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3347 var amtpolicy = { type: command.amtpolicy.type };
3348 if ((command.amtpolicy.type === 2) || (command.amtpolicy.type === 3)) {
3349 amtpolicy = { type: command.amtpolicy.type, badpass: command.amtpolicy.badpass, cirasetup: command.amtpolicy.cirasetup };
3350 + if (command.amtpolicy.type === 3) { amtpolicy.ccm = command.amtpolicy.ccm; }
3351 if ((command.amtpolicy.password == null) && (mesh.amt != null) && (typeof mesh.amt.password == 'string')) { amtpolicy.password = mesh.amt.password; } // Keep the last password
3352 if ((typeof command.amtpolicy.password == 'string') && (command.amtpolicy.password.length >= 8)) { amtpolicy.password = command.amtpolicy.password; } // Set a new password
3353 }
translate/translate.json
+764 -740
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->29->1434",
228 - "default.handlebars->29->1897"
227 + "default.handlebars->29->1438",
228 + "default.handlebars->29->1901"
229 ]
230 },
231 {
@@ -420,7 +420,7 @@
420 "fr": "* 8 caractères, 1 majuscule, 1 minuscule, 1 numérique, 1 non alphanumérique.",
421 "nl": "* 8 karakters, 1 hoofdletter, 1 normale letter, 1 nummeriek, 1 niet alfanumeriek.",
422 "xloc": [
423 - "default.handlebars->29->1403",
423 + "default.handlebars->29->1407",
424 "default.handlebars->29->306"
425 ]
426 },
@@ -496,7 +496,7 @@
496 "zh-cht": ",",
497 "xloc": [
498 "default-mobile.handlebars->9->465",
499 - "default.handlebars->29->1504"
499 + "default.handlebars->29->1508"
500 ]
501 },
502 {
@@ -768,8 +768,8 @@
768 "xloc": [
769 "default-mobile.handlebars->9->108",
770 "default-mobile.handlebars->9->305",
771 - "default.handlebars->29->1545",
772 - "default.handlebars->29->2054",
771 + "default.handlebars->29->1549",
772 + "default.handlebars->29->2058",
773 "default.handlebars->29->892"
774 ]
775 },
@@ -826,7 +826,7 @@
826 "zh-chs": "1个活跃时段",
827 "zh-cht": "1個活躍時段",
828 "xloc": [
829 - "default.handlebars->29->1966"
829 + "default.handlebars->29->1970"
830 ]
831 },
832 {
@@ -848,7 +848,7 @@
848 "xloc": [
849 "default-mobile.handlebars->9->118",
850 "default-mobile.handlebars->9->469",
851 - "default.handlebars->29->1569",
851 + "default.handlebars->29->1573",
852 "download.handlebars->3->1",
853 "download2.handlebars->5->1"
854 ]
@@ -913,7 +913,7 @@
913 "zh-chs": "1组",
914 "zh-cht": "1群",
915 "xloc": [
916 - "default.handlebars->29->1931"
916 + "default.handlebars->29->1935"
917 ]
918 },
919 {
@@ -1017,7 +1017,7 @@
1017 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1018 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1019 "xloc": [
1020 - "default.handlebars->29->1721"
1020 + "default.handlebars->29->1725"
1021 ]
1022 },
1023 {
@@ -1083,7 +1083,7 @@
1083 "default-mobile.handlebars->9->172",
1084 "default-mobile.handlebars->9->175",
1085 "default-mobile.handlebars->9->178",
1086 - "default.handlebars->29->1725",
1086 + "default.handlebars->29->1729",
1087 "default.handlebars->29->251",
1088 "default.handlebars->29->254",
1089 "default.handlebars->29->257",
@@ -1505,7 +1505,7 @@
1505 "zh-chs": "2FA备份代码已清除",
1506 "zh-cht": "2FA備份代碼已清除",
1507 "xloc": [
1508 - "default.handlebars->29->1680"
1508 + "default.handlebars->29->1684"
1509 ]
1510 },
1511 {
@@ -1525,8 +1525,8 @@
1525 "zh-chs": "启用第二因素身份验证",
1526 "zh-cht": "啟用第二因素身份驗證",
1527 "xloc": [
1528 - "default.handlebars->29->1738",
1529 - "default.handlebars->29->1953"
1528 + "default.handlebars->29->1742",
1529 + "default.handlebars->29->1957"
1530 ]
1531 },
1532 {
@@ -2528,7 +2528,7 @@
2528 "zh-chs": "访问服务器档案",
2529 "zh-cht": "存取伺服器檔案",
2530 "xloc": [
2531 - "default.handlebars->29->1903"
2531 + "default.handlebars->29->1907"
2532 ]
2533 },
2534 {
@@ -2681,7 +2681,7 @@
2681 "zh-chs": "帐户已更改:{0}",
2682 "zh-cht": "帳戶已更改:{0}",
2683 "xloc": [
2684 - "default.handlebars->29->1653"
2684 + "default.handlebars->29->1657"
2685 ]
2686 },
2687 {
@@ -2701,7 +2701,7 @@
2701 "zh-chs": "创建帐户,电子邮件为{0}",
2702 "zh-cht": "創建帳戶,電子郵件為{0}",
2703 "xloc": [
2704 - "default.handlebars->29->1652"
2704 + "default.handlebars->29->1656"
2705 ]
2706 },
2707 {
@@ -2721,7 +2721,7 @@
2721 "zh-chs": "创建帐户,用户名是{0}",
2722 "zh-cht": "帳戶已創建,用戶名是{0}",
2723 "xloc": [
2724 - "default.handlebars->29->1651"
2724 + "default.handlebars->29->1655"
2725 ]
2726 },
2727 {
@@ -2741,8 +2741,8 @@
2741 "zh-chs": "帐户已被锁定",
2742 "zh-cht": "帳戶已被鎖定",
2743 "xloc": [
2744 - "default.handlebars->29->1740",
2745 - "default.handlebars->29->1900"
2744 + "default.handlebars->29->1744",
2745 + "default.handlebars->29->1904"
2746 ]
2747 },
2748 {
@@ -2806,7 +2806,7 @@
2806 "zh-chs": "帐号登录",
2807 "zh-cht": "帳號登錄",
2808 "xloc": [
2809 - "default.handlebars->29->1588"
2809 + "default.handlebars->29->1592"
2810 ]
2811 },
2812 {
@@ -2826,7 +2826,7 @@
2826 "zh-chs": "帐户登出",
2827 "zh-cht": "帳戶登出",
2828 "xloc": [
2829 - "default.handlebars->29->1589"
2829 + "default.handlebars->29->1593"
2830 ]
2831 },
2832 {
@@ -2868,7 +2868,7 @@
2868 "zh-chs": "帐户密码已更改:{0}",
2869 "zh-cht": "帳戶密碼已更改:{0}",
2870 "xloc": [
2871 - "default.handlebars->29->1661"
2871 + "default.handlebars->29->1665"
2872 ]
2873 },
2874 {
@@ -2888,7 +2888,7 @@
2888 "zh-chs": "帐户已删除",
2889 "zh-cht": "帳戶已刪除",
2890 "xloc": [
2891 - "default.handlebars->29->1650"
2891 + "default.handlebars->29->1654"
2892 ]
2893 },
2894 {
@@ -3027,6 +3027,12 @@
3027 "messenger.handlebars->xtop->1"
3028 ]
3029 },
3030 + {
3031 + "en": "Activate to CCM, if ACM fails",
3032 + "xloc": [
3033 + "default.handlebars->29->1398"
3034 + ]
3035 + },
3036 {
3037 "cs": "Zapnuto",
3038 "de": "Aktiviert",
@@ -3152,8 +3158,8 @@
3158 "zh-chs": "添加设备",
3159 "zh-cht": "新增裝置",
3160 "xloc": [
3155 - "default.handlebars->29->1877",
3156 - "default.handlebars->29->2001"
3161 + "default.handlebars->29->1881",
3162 + "default.handlebars->29->2005"
3163 ]
3164 },
3165 {
@@ -3193,9 +3199,9 @@
3199 "zh-chs": "添加设备组",
3200 "zh-cht": "新增裝置群",
3201 "xloc": [
3196 - "default.handlebars->29->1468",
3197 - "default.handlebars->29->1871",
3198 - "default.handlebars->29->1989",
3202 + "default.handlebars->29->1472",
3203 + "default.handlebars->29->1875",
3204 + "default.handlebars->29->1993",
3205 "default.handlebars->29->238"
3206 ]
3207 },
@@ -3216,7 +3222,7 @@
3222 "zh-chs": "添加设备组权限",
3223 "zh-cht": "新增裝置群權限",
3224 "xloc": [
3219 - "default.handlebars->29->1465"
3225 + "default.handlebars->29->1469"
3226 ]
3227 },
3228 {
@@ -3236,8 +3242,8 @@
3242 "zh-chs": "添加设备权限",
3243 "zh-cht": "新增裝置權限",
3244 "xloc": [
3239 - "default.handlebars->29->1470",
3240 - "default.handlebars->29->1472"
3245 + "default.handlebars->29->1474",
3246 + "default.handlebars->29->1476"
3247 ]
3248 },
3249 {
@@ -3334,7 +3340,7 @@
3340 "zh-chs": "添加成员身份",
3341 "zh-cht": "新增成員身份",
3342 "xloc": [
3337 - "default.handlebars->29->2021"
3343 + "default.handlebars->29->2025"
3344 ]
3345 },
3346 {
@@ -3420,7 +3426,7 @@
3426 "zh-chs": "添加用户设备权限",
3427 "zh-cht": "新增用戶裝置權限",
3428 "xloc": [
3423 - "default.handlebars->29->1475"
3429 + "default.handlebars->29->1479"
3430 ]
3431 },
3432 {
@@ -3441,8 +3447,8 @@
3447 "zh-cht": "新增用戶群",
3448 "xloc": [
3449 "default.handlebars->29->1369",
3444 - "default.handlebars->29->1467",
3445 - "default.handlebars->29->1995",
3450 + "default.handlebars->29->1471",
3451 + "default.handlebars->29->1999",
3452 "default.handlebars->29->663"
3453 ]
3454 },
@@ -3463,7 +3469,7 @@
3469 "zh-chs": "添加用户组设备权限",
3470 "zh-cht": "新增用戶群裝置權限",
3471 "xloc": [
3466 - "default.handlebars->29->1477"
3472 + "default.handlebars->29->1481"
3473 ]
3474 },
3475 {
@@ -3521,7 +3527,7 @@
3527 "zh-cht": "新增用戶",
3528 "xloc": [
3529 "default.handlebars->29->1368",
3524 - "default.handlebars->29->1866"
3530 + "default.handlebars->29->1870"
3531 ]
3532 },
3533 {
@@ -3541,7 +3547,7 @@
3547 "zh-chs": "将用户添加到设备组",
3548 "zh-cht": "將用戶新增到裝置群",
3549 "xloc": [
3544 - "default.handlebars->29->1464"
3550 + "default.handlebars->29->1468"
3551 ]
3552 },
3553 {
@@ -3561,7 +3567,7 @@
3567 "zh-chs": "将用户添加到用户组",
3568 "zh-cht": "將用戶新增到用戶群",
3569 "xloc": [
3564 - "default.handlebars->29->1899"
3570 + "default.handlebars->29->1903"
3571 ]
3572 },
3573 {
@@ -3727,7 +3733,7 @@
3733 "zh-chs": "添加了身份验证应用程序",
3734 "zh-cht": "添加了身份驗證應用程序",
3735 "xloc": [
3730 - "default.handlebars->29->1677"
3736 + "default.handlebars->29->1681"
3737 ]
3738 },
3739 {
@@ -3735,7 +3741,7 @@
3741 "fr": "Ajout du partage {0} de {1} à {2}",
3742 "nl": "Apparaat delen {0} toegevoegd van {1} tot {2}",
3743 "xloc": [
3738 - "default.handlebars->29->1688"
3744 + "default.handlebars->29->1692"
3745 ]
3746 },
3747 {
@@ -3755,8 +3761,8 @@
3761 "zh-chs": "已将设备{0}添加到设备组{1}",
3762 "zh-cht": "已將設備{0}添加到設備組{1}",
3763 "xloc": [
3758 - "default.handlebars->29->1644",
3759 - "default.handlebars->29->1671"
3764 + "default.handlebars->29->1648",
3765 + "default.handlebars->29->1675"
3766 ]
3767 },
3768 {
@@ -3776,7 +3782,7 @@
3782 "zh-chs": "添加了安全密钥",
3783 "zh-cht": "添加了安全密鑰",
3784 "xloc": [
3779 - "default.handlebars->29->1682"
3785 + "default.handlebars->29->1686"
3786 ]
3787 },
3788 {
@@ -3796,7 +3802,7 @@
3802 "zh-chs": "已将用户组{0}添加到设备组{1}",
3803 "zh-cht": "已將用戶組{0}添加到設備組{1}",
3804 "xloc": [
3799 - "default.handlebars->29->1655"
3805 + "default.handlebars->29->1659"
3806 ]
3807 },
3808 {
@@ -3816,8 +3822,8 @@
3822 "zh-chs": "已将用户{0}添加到用户组{1}",
3823 "zh-cht": "已將用戶{0}添加到用戶組{1}",
3824 "xloc": [
3819 - "default.handlebars->29->1658",
3820 - "default.handlebars->29->1667"
3825 + "default.handlebars->29->1662",
3826 + "default.handlebars->29->1671"
3827 ]
3828 },
3829 {
@@ -3940,7 +3946,7 @@
3946 "zh-chs": "管理领域",
3947 "zh-cht": "管理領域",
3948 "xloc": [
3943 - "default.handlebars->29->1935"
3949 + "default.handlebars->29->1939"
3950 ]
3951 },
3952 {
@@ -3981,7 +3987,7 @@
3987 "zh-chs": "管理领域",
3988 "zh-cht": "管理領域",
3989 "xloc": [
3984 - "default.handlebars->29->1803"
3990 + "default.handlebars->29->1807"
3991 ]
3992 },
3993 {
@@ -4001,7 +4007,7 @@
4007 "zh-chs": "管理员",
4008 "zh-cht": "管理員",
4009 "xloc": [
4004 - "default.handlebars->29->1732"
4010 + "default.handlebars->29->1736"
4011 ]
4012 },
4013 {
@@ -4044,8 +4050,8 @@
4050 "default-mobile.handlebars->9->203",
4051 "default-mobile.handlebars->9->228",
4052 "default-mobile.handlebars->9->250",
4047 - "default.handlebars->29->1531",
4048 - "default.handlebars->29->1539",
4053 + "default.handlebars->29->1535",
4054 + "default.handlebars->29->1543",
4055 "default.handlebars->29->214",
4056 "default.handlebars->29->423",
4057 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4068,8 +4074,8 @@
4074 "zh-chs": "代理+英特尔AMT",
4075 "zh-cht": "代理+Intel&reg; AMT",
4076 "xloc": [
4071 - "default.handlebars->29->1533",
4072 - "default.handlebars->29->1541"
4077 + "default.handlebars->29->1537",
4078 + "default.handlebars->29->1545"
4079 ]
4080 },
4081 {
@@ -4110,7 +4116,7 @@
4116 "zh-cht": "代理控制台",
4117 "xloc": [
4118 "default-mobile.handlebars->9->447",
4113 - "default.handlebars->29->1485"
4119 + "default.handlebars->29->1489"
4120 ]
4121 },
4122 {
@@ -4130,7 +4136,7 @@
4136 "zh-chs": "代理错误计数器",
4137 "zh-cht": "代理錯誤計數器",
4138 "xloc": [
4133 - "default.handlebars->29->2064"
4139 + "default.handlebars->29->2068"
4140 ]
4141 },
4142 {
@@ -4233,7 +4239,7 @@
4239 "zh-chs": "代理时段",
4240 "zh-cht": "代理時段",
4241 "xloc": [
4236 - "default.handlebars->29->2080"
4242 + "default.handlebars->29->2084"
4243 ]
4244 },
4245 {
@@ -4274,7 +4280,7 @@
4280 "zh-chs": "代理类型",
4281 "zh-cht": "代理類型",
4282 "xloc": [
4277 - "default.handlebars->29->1537",
4283 + "default.handlebars->29->1541",
4284 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4285 ]
4286 },
@@ -4295,7 +4301,7 @@
4301 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4302 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4303 "xloc": [
4298 - "default.handlebars->29->1641"
4304 + "default.handlebars->29->1645"
4305 ]
4306 },
4307 {
@@ -4406,7 +4412,7 @@
4412 "zh-chs": "代理",
4413 "zh-cht": "代理",
4414 "xloc": [
4409 - "default.handlebars->29->2096"
4415 + "default.handlebars->29->2100"
4416 ]
4417 },
4418 {
@@ -4469,7 +4475,7 @@
4475 "zh-chs": "全部可用",
4476 "zh-cht": "全部可用",
4477 "xloc": [
4472 - "default.handlebars->29->1695"
4478 + "default.handlebars->29->1699"
4479 ]
4480 },
4481 {
@@ -4506,7 +4512,7 @@
4512 "zh-chs": "所有事件",
4513 "zh-cht": "所有事件",
4514 "xloc": [
4509 - "default.handlebars->29->1693"
4515 + "default.handlebars->29->1697"
4516 ]
4517 },
4518 {
@@ -4548,8 +4554,8 @@
4554 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4555 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4556 "xloc": [
4551 - "default.handlebars->29->1432",
4552 - "default.handlebars->29->1896"
4557 + "default.handlebars->29->1436",
4558 + "default.handlebars->29->1900"
4559 ]
4560 },
4561 {
@@ -4569,7 +4575,7 @@
4575 "zh-chs": "允许用户管理此设备。",
4576 "zh-cht": "允許用戶管理此裝置。",
4577 "xloc": [
4572 - "default.handlebars->29->1433"
4578 + "default.handlebars->29->1437"
4579 ]
4580 },
4581 {
@@ -4675,8 +4681,8 @@
4681 "zh-cht": "一直通知",
4682 "xloc": [
4683 "default.handlebars->29->1348",
4678 - "default.handlebars->29->1857",
4679 - "default.handlebars->29->1944",
4684 + "default.handlebars->29->1861",
4685 + "default.handlebars->29->1948",
4686 "default.handlebars->29->599"
4687 ]
4688 },
@@ -4698,8 +4704,8 @@
4704 "zh-cht": "一直提示",
4705 "xloc": [
4706 "default.handlebars->29->1349",
4701 - "default.handlebars->29->1858",
4702 - "default.handlebars->29->1945",
4707 + "default.handlebars->29->1862",
4708 + "default.handlebars->29->1949",
4709 "default.handlebars->29->600"
4710 ]
4711 },
@@ -5325,7 +5331,7 @@
5331 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5332 "xloc": [
5333 "default-mobile.handlebars->9->416",
5328 - "default.handlebars->29->1408"
5334 + "default.handlebars->29->1412"
5335 ]
5336 },
5337 {
@@ -5405,7 +5411,7 @@
5411 "zh-chs": "您确定要{0}插件吗:{1}",
5412 "zh-cht": "你確定要{0}外掛嗎:{1}",
5413 "xloc": [
5408 - "default.handlebars->29->2136"
5414 + "default.handlebars->29->2140"
5415 ]
5416 },
5417 {
@@ -5525,7 +5531,7 @@
5531 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5532 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5533 "xloc": [
5528 - "default.handlebars->29->1610"
5534 + "default.handlebars->29->1614"
5535 ]
5536 },
5537 {
@@ -5545,7 +5551,7 @@
5551 "zh-chs": "认证软件",
5552 "zh-cht": "認證軟體",
5553 "xloc": [
5548 - "default.handlebars->29->1948"
5554 + "default.handlebars->29->1952"
5555 ]
5556 },
5557 {
@@ -5716,7 +5722,7 @@
5722 "zh-chs": "可用內存",
5723 "zh-cht": "可用內存",
5724 "xloc": [
5719 - "default.handlebars->29->2089"
5725 + "default.handlebars->29->2093"
5726 ]
5727 },
5728 {
@@ -5872,8 +5878,8 @@
5878 "zh-chs": "背景与互动",
5879 "zh-cht": "背景與互動",
5880 "xloc": [
5875 - "default.handlebars->29->1514",
5876 - "default.handlebars->29->1521",
5881 + "default.handlebars->29->1518",
5882 + "default.handlebars->29->1525",
5883 "default.handlebars->29->336",
5884 "default.handlebars->29->350"
5885 ]
@@ -5895,8 +5901,8 @@
5901 "zh-chs": "仅背景",
5902 "zh-cht": "僅背景",
5903 "xloc": [
5898 - "default.handlebars->29->1515",
5899 - "default.handlebars->29->1522",
5904 + "default.handlebars->29->1519",
5905 + "default.handlebars->29->1526",
5906 "default.handlebars->29->337",
5907 "default.handlebars->29->351",
5908 "default.handlebars->29->365"
@@ -5939,7 +5945,7 @@
5945 "zh-chs": "备用码",
5946 "zh-cht": "備用碼",
5947 "xloc": [
5942 - "default.handlebars->29->1950"
5948 + "default.handlebars->29->1954"
5949 ]
5950 },
5951 {
@@ -5959,7 +5965,7 @@
5965 "zh-chs": "错误的签名",
5966 "zh-cht": "錯誤的簽名",
5967 "xloc": [
5962 - "default.handlebars->29->2071"
5968 + "default.handlebars->29->2075"
5969 ]
5970 },
5971 {
@@ -5979,7 +5985,7 @@
5985 "zh-chs": "错误的网络证书",
5986 "zh-cht": "錯誤的網絡憑證",
5987 "xloc": [
5982 - "default.handlebars->29->2070"
5988 + "default.handlebars->29->2074"
5989 ]
5990 },
5991 {
@@ -6035,7 +6041,7 @@
6041 "nl": "Batch-upload van {0} bestand (en) naar map {1}",
6042 "fr": "Chargement de {0} fichier(s) dans le dossier {1}",
6043 "xloc": [
6038 - "default.handlebars->29->1690"
6044 + "default.handlebars->29->1694"
6045 ]
6046 },
6047 {
@@ -6158,7 +6164,7 @@
6164 "zh-chs": "广播",
6165 "zh-cht": "廣播",
6166 "xloc": [
6161 - "default.handlebars->29->1864",
6167 + "default.handlebars->29->1868",
6168 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6169 ]
6170 },
@@ -6179,7 +6185,7 @@
6185 "zh-chs": "广播消息",
6186 "zh-cht": "廣播消息",
6187 "xloc": [
6182 - "default.handlebars->29->1785"
6188 + "default.handlebars->29->1789"
6189 ]
6190 },
6191 {
@@ -6199,7 +6205,7 @@
6205 "zh-chs": "向所有连接的用户广播消息。",
6206 "zh-cht": "向所有連接的用戶廣播消息。",
6207 "xloc": [
6202 - "default.handlebars->29->1780"
6208 + "default.handlebars->29->1784"
6209 ]
6210 },
6211 {
@@ -6263,6 +6269,12 @@
6269 "default.handlebars->29->566"
6270 ]
6271 },
6272 + {
6273 + "en": "CCM mode",
6274 + "xloc": [
6275 + "default.handlebars->29->1395"
6276 + ]
6277 + },
6278 {
6279 "cs": "CIRA",
6280 "de": "CIRA",
@@ -6302,7 +6314,7 @@
6314 "zh-chs": "CIRA服务器",
6315 "zh-cht": "CIRA伺服器",
6316 "xloc": [
6305 - "default.handlebars->29->2124"
6317 + "default.handlebars->29->2128"
6318 ]
6319 },
6320 {
@@ -6322,7 +6334,7 @@
6334 "zh-chs": "CIRA服务器命令",
6335 "zh-cht": "CIRA伺服器指令",
6336 "xloc": [
6325 - "default.handlebars->29->2125"
6337 + "default.handlebars->29->2129"
6338 ]
6339 },
6340 {
@@ -6330,7 +6342,7 @@
6342 "fr": "Configuration CIRA",
6343 "nl": "CIRA setup",
6344 "xloc": [
6333 - "default.handlebars->29->1399"
6345 + "default.handlebars->29->1403"
6346 ]
6347 },
6348 {
@@ -6371,7 +6383,7 @@
6383 "zh-chs": "CPU负载",
6384 "zh-cht": "CPU負載",
6385 "xloc": [
6374 - "default.handlebars->29->2085"
6386 + "default.handlebars->29->2089"
6387 ]
6388 },
6389 {
@@ -6391,7 +6403,7 @@
6403 "zh-chs": "最近15分钟的CPU负载",
6404 "zh-cht": "最近15分鐘的CPU負載",
6405 "xloc": [
6394 - "default.handlebars->29->2088"
6406 + "default.handlebars->29->2092"
6407 ]
6408 },
6409 {
@@ -6411,7 +6423,7 @@
6423 "zh-chs": "最近5分钟的CPU负载",
6424 "zh-cht": "最近5分鐘的CPU負載",
6425 "xloc": [
6414 - "default.handlebars->29->2087"
6426 + "default.handlebars->29->2091"
6427 ]
6428 },
6429 {
@@ -6431,7 +6443,7 @@
6443 "zh-chs": "最近一分钟的CPU负载",
6444 "zh-cht": "最近一分鐘的CPU負載",
6445 "xloc": [
6434 - "default.handlebars->29->2086"
6446 + "default.handlebars->29->2090"
6447 ]
6448 },
6449 {
@@ -6473,7 +6485,7 @@
6485 "zh-chs": "CSV",
6486 "zh-cht": "CSV",
6487 "xloc": [
6476 - "default.handlebars->29->1703"
6488 + "default.handlebars->29->1707"
6489 ]
6490 },
6491 {
@@ -6493,8 +6505,8 @@
6505 "zh-chs": "CSV格式",
6506 "zh-cht": "CSV格式",
6507 "xloc": [
6496 - "default.handlebars->29->1707",
6497 - "default.handlebars->29->1772",
6508 + "default.handlebars->29->1711",
6509 + "default.handlebars->29->1776",
6510 "default.handlebars->29->482"
6511 ]
6512 },
@@ -6523,7 +6535,7 @@
6535 "zh-chs": "呼叫错误",
6536 "zh-cht": "呼叫錯誤",
6537 "xloc": [
6526 - "default.handlebars->29->2137"
6538 + "default.handlebars->29->2141"
6539 ]
6540 },
6541 {
@@ -6700,7 +6712,7 @@
6712 "zh-chs": "更改{0}的电邮",
6713 "zh-cht": "更改{0}的電郵",
6714 "xloc": [
6703 - "default.handlebars->29->1978"
6715 + "default.handlebars->29->1982"
6716 ]
6717 },
6718 {
@@ -6744,7 +6756,7 @@
6756 "xloc": [
6757 "default-mobile.handlebars->9->90",
6758 "default.handlebars->29->1280",
6747 - "default.handlebars->29->1965"
6759 + "default.handlebars->29->1969"
6760 ]
6761 },
6762 {
@@ -6764,7 +6776,7 @@
6776 "zh-chs": "更改{0}的密码",
6777 "zh-cht": "更改{0}的密碼",
6778 "xloc": [
6767 - "default.handlebars->29->1985"
6779 + "default.handlebars->29->1989"
6780 ]
6781 },
6782 {
@@ -6784,7 +6796,7 @@
6796 "zh-chs": "更改{0}的真实名称",
6797 "zh-cht": "更改{0}的真實名稱",
6798 "xloc": [
6787 - "default.handlebars->29->1973"
6799 + "default.handlebars->29->1977"
6800 ]
6801 },
6802 {
@@ -6866,7 +6878,7 @@
6878 "zh-chs": "更改该用户的密码",
6879 "zh-cht": "更改該用戶的密碼",
6880 "xloc": [
6869 - "default.handlebars->29->1964"
6881 + "default.handlebars->29->1968"
6882 ]
6883 },
6884 {
@@ -6946,7 +6958,7 @@
6958 "zh-chs": "更改帐户凭据",
6959 "zh-cht": "帳戶憑證已更改",
6960 "xloc": [
6949 - "default.handlebars->29->1662"
6961 + "default.handlebars->29->1666"
6962 ]
6963 },
6964 {
@@ -6966,7 +6978,7 @@
6978 "zh-chs": "{1}组中的设备{0}已更改:{2}",
6979 "zh-cht": "{1}組中的設備{0}已更改:{2}",
6980 "xloc": [
6969 - "default.handlebars->29->1646"
6981 + "default.handlebars->29->1650"
6982 ]
6983 },
6984 {
@@ -6986,7 +6998,7 @@
6998 "zh-chs": "语言从{1}更改为{2}",
6999 "zh-cht": "語言從{1}更改為{2}",
7000 "xloc": [
6989 - "default.handlebars->29->1590"
7001 + "default.handlebars->29->1594"
7002 ]
7003 },
7004 {
@@ -7006,8 +7018,8 @@
7018 "zh-chs": "已更改{0}的用户设备权限",
7019 "zh-cht": "已更改{0}的用戶設備權限",
7020 "xloc": [
7009 - "default.handlebars->29->1648",
7010 - "default.handlebars->29->1669"
7021 + "default.handlebars->29->1652",
7022 + "default.handlebars->29->1673"
7023 ]
7024 },
7025 {
@@ -7047,7 +7059,7 @@
7059 "zh-chs": "聊天",
7060 "zh-cht": "聊天",
7061 "xloc": [
7050 - "default.handlebars->29->1724",
7062 + "default.handlebars->29->1728",
7063 "default.handlebars->29->686",
7064 "default.handlebars->29->707"
7065 ]
@@ -7071,8 +7083,8 @@
7083 "xloc": [
7084 "default-mobile.handlebars->9->437",
7085 "default-mobile.handlebars->9->457",
7074 - "default.handlebars->29->1460",
7075 - "default.handlebars->29->1496"
7086 + "default.handlebars->29->1464",
7087 + "default.handlebars->29->1500"
7088 ]
7089 },
7090 {
@@ -7213,7 +7225,7 @@
7225 "zh-cht": "檢查...",
7226 "xloc": [
7227 "default.handlebars->29->1052",
7216 - "default.handlebars->29->2131"
7228 + "default.handlebars->29->2135"
7229 ]
7230 },
7231 {
@@ -7437,7 +7449,7 @@
7449 "default-mobile.handlebars->9->328",
7450 "default-mobile.handlebars->9->330",
7451 "default-mobile.handlebars->9->59",
7440 - "default.handlebars->29->1584",
7452 + "default.handlebars->29->1588",
7453 "default.handlebars->29->917",
7454 "default.handlebars->29->919",
7455 "default.handlebars->29->921",
@@ -7484,7 +7496,7 @@
7496 "zh-chs": "全部清除",
7497 "zh-cht": "全部清除",
7498 "xloc": [
7487 - "default.handlebars->29->2058"
7499 + "default.handlebars->29->2062"
7500 ]
7501 },
7502 {
@@ -7553,7 +7565,7 @@
7565 "zh-chs": "清除此通知",
7566 "zh-cht": "清除此通知",
7567 "xloc": [
7556 - "default.handlebars->29->2057"
7568 + "default.handlebars->29->2061"
7569 ]
7570 },
7571 {
@@ -7614,7 +7626,7 @@
7626 "zh-cht": "單擊此處編輯裝置群名稱",
7627 "xloc": [
7628 "default.handlebars->29->1324",
7617 - "default.handlebars->29->1535"
7629 + "default.handlebars->29->1539"
7630 ]
7631 },
7632 {
@@ -7654,7 +7666,7 @@
7666 "zh-chs": "单击此处编辑用户组名称",
7667 "zh-cht": "單擊此處編輯用戶群名稱",
7668 "xloc": [
7657 - "default.handlebars->29->1841"
7669 + "default.handlebars->29->1845"
7670 ]
7671 },
7672 {
@@ -7796,7 +7808,7 @@
7808 "zh-chs": "客户端启动的远程访问",
7809 "zh-cht": "客戶端啟動的遠程訪問",
7810 "xloc": [
7799 - "default.handlebars->29->1398"
7811 + "default.handlebars->29->1402"
7812 ]
7813 },
7814 {
@@ -7881,7 +7893,7 @@
7893 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
7894 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
7895 "xloc": [
7884 - "default.handlebars->29->1595"
7896 + "default.handlebars->29->1599"
7897 ]
7898 },
7899 {
@@ -7968,7 +7980,7 @@
7980 "nl": "Opdrachten",
7981 "xloc": [
7982 "default-mobile.handlebars->9->459",
7971 - "default.handlebars->29->1498",
7983 + "default.handlebars->29->1502",
7984 "default.handlebars->29->688",
7985 "default.handlebars->29->709"
7986 ]
@@ -7990,8 +8002,8 @@
8002 "zh-chs": "通用设备组",
8003 "zh-cht": "通用裝置群",
8004 "xloc": [
7993 - "default.handlebars->29->1872",
7994 - "default.handlebars->29->1990"
8005 + "default.handlebars->29->1876",
8006 + "default.handlebars->29->1994"
8007 ]
8008 },
8009 {
@@ -8011,8 +8023,8 @@
8023 "zh-chs": "通用设备",
8024 "zh-cht": "通用裝置",
8025 "xloc": [
8014 - "default.handlebars->29->1878",
8015 - "default.handlebars->29->2002"
8026 + "default.handlebars->29->1882",
8027 + "default.handlebars->29->2006"
8028 ]
8029 },
8030 {
@@ -8054,11 +8066,11 @@
8066 "xloc": [
8067 "default-mobile.handlebars->9->288",
8068 "default-mobile.handlebars->9->417",
8057 - "default.handlebars->29->1409",
8058 - "default.handlebars->29->1752",
8059 - "default.handlebars->29->1831",
8060 - "default.handlebars->29->1892",
8061 - "default.handlebars->29->1988",
8069 + "default.handlebars->29->1413",
8070 + "default.handlebars->29->1756",
8071 + "default.handlebars->29->1835",
8072 + "default.handlebars->29->1896",
8073 + "default.handlebars->29->1992",
8074 "default.handlebars->29->452",
8075 "default.handlebars->29->781",
8076 "default.handlebars->29->790"
@@ -8142,7 +8154,7 @@
8154 "zh-chs": "确认删除选定的帐户?",
8155 "zh-cht": "確認刪除所選帳戶?",
8156 "xloc": [
8145 - "default.handlebars->29->1751"
8157 + "default.handlebars->29->1755"
8158 ]
8159 },
8160 {
@@ -8182,7 +8194,7 @@
8194 "zh-chs": "确认删除选定的用户组?",
8195 "zh-cht": "確認刪除所選用戶群?",
8196 "xloc": [
8185 - "default.handlebars->29->1830"
8197 + "default.handlebars->29->1834"
8198 ]
8199 },
8200 {
@@ -8202,7 +8214,7 @@
8214 "zh-chs": "确认删除用户{0}?",
8215 "zh-cht": "確認刪除用戶{0}?",
8216 "xloc": [
8205 - "default.handlebars->29->1987"
8217 + "default.handlebars->29->1991"
8218 ]
8219 },
8220 {
@@ -8222,7 +8234,7 @@
8234 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8235 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8236 "xloc": [
8225 - "default.handlebars->29->1895"
8237 + "default.handlebars->29->1899"
8238 ]
8239 },
8240 {
@@ -8242,7 +8254,7 @@
8254 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8255 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8256 "xloc": [
8245 - "default.handlebars->29->2019"
8257 + "default.handlebars->29->2023"
8258 ]
8259 },
8260 {
@@ -8323,7 +8335,7 @@
8335 "zh-chs": "确认覆盖?",
8336 "zh-cht": "確認覆蓋?",
8337 "xloc": [
8326 - "default.handlebars->29->1578"
8338 + "default.handlebars->29->1582"
8339 ]
8340 },
8341 {
@@ -8343,8 +8355,8 @@
8355 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
8356 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8357 "xloc": [
8346 - "default.handlebars->29->1885",
8347 - "default.handlebars->29->2010"
8358 + "default.handlebars->29->1889",
8359 + "default.handlebars->29->2014"
8360 ]
8361 },
8362 {
@@ -8364,8 +8376,8 @@
8376 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8377 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8378 "xloc": [
8367 - "default.handlebars->29->1887",
8368 - "default.handlebars->29->2023"
8379 + "default.handlebars->29->1891",
8380 + "default.handlebars->29->2027"
8381 ]
8382 },
8383 {
@@ -8385,7 +8397,7 @@
8397 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
8398 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8399 "xloc": [
8388 - "default.handlebars->29->2012"
8400 + "default.handlebars->29->2016"
8401 ]
8402 },
8403 {
@@ -8405,7 +8417,7 @@
8417 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8418 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8419 "xloc": [
8408 - "default.handlebars->29->2015"
8420 + "default.handlebars->29->2019"
8421 ]
8422 },
8423 {
@@ -8425,8 +8437,8 @@
8437 "zh-chs": "确认删除访问权限?",
8438 "zh-cht": "確認刪除訪問權限?",
8439 "xloc": [
8428 - "default.handlebars->29->2013",
8429 - "default.handlebars->29->2016"
8440 + "default.handlebars->29->2017",
8441 + "default.handlebars->29->2020"
8442 ]
8443 },
8444 {
@@ -8472,7 +8484,7 @@
8484 "fr": "Confirmez-vous l'arrêt du partage \\\"{0}\\\"?",
8485 "nl": "Bevestig de verwijdering van apparaatdeling \\\"{0}\\\"?",
8486 "xloc": [
8475 - "default.handlebars->29->2008"
8487 + "default.handlebars->29->2012"
8488 ]
8489 },
8490 {
@@ -8526,7 +8538,7 @@
8538 "zh-chs": "确认删除用户“ {0} ”的权限?",
8539 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
8540 "xloc": [
8529 - "default.handlebars->29->1507"
8541 + "default.handlebars->29->1511"
8542 ]
8543 },
8544 {
@@ -8546,7 +8558,7 @@
8558 "zh-chs": "确认删除用户组“ {0} ”的权限?",
8559 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8560 "xloc": [
8549 - "default.handlebars->29->1509"
8561 + "default.handlebars->29->1513"
8562 ]
8563 },
8564 {
@@ -8604,7 +8616,7 @@
8616 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
8617 "xloc": [
8618 "default-mobile.handlebars->9->127",
8607 - "default.handlebars->29->1579"
8619 + "default.handlebars->29->1583"
8620 ]
8621 },
8622 {
@@ -8675,7 +8687,7 @@
8687 "zh-chs": "连接到服务器",
8688 "zh-cht": "連接到伺服器",
8689 "xloc": [
8678 - "default.handlebars->29->1402"
8690 + "default.handlebars->29->1406"
8691 ]
8692 },
8693 {
@@ -8796,7 +8808,7 @@
8808 "zh-chs": "已连接的英特尔&reg;AMT",
8809 "zh-cht": "已連接的Intel&reg; AMT",
8810 "xloc": [
8799 - "default.handlebars->29->2076"
8811 + "default.handlebars->29->2080"
8812 ]
8813 },
8814 {
@@ -8816,7 +8828,7 @@
8828 "zh-chs": "已连接的用户",
8829 "zh-cht": "已连接的用户",
8830 "xloc": [
8819 - "default.handlebars->29->2081"
8831 + "default.handlebars->29->2085"
8832 ]
8833 },
8834 {
@@ -8906,7 +8918,7 @@
8918 "zh-chs": "连接数量",
8919 "zh-cht": "連接數量",
8920 "xloc": [
8909 - "default.handlebars->29->2095"
8921 + "default.handlebars->29->2099"
8922 ]
8923 },
8924 {
@@ -8926,7 +8938,7 @@
8938 "zh-chs": "连接转发器",
8939 "zh-cht": "連接轉發器",
8940 "xloc": [
8929 - "default.handlebars->29->2123"
8941 + "default.handlebars->29->2127"
8942 ]
8943 },
8944 {
@@ -8987,7 +8999,7 @@
8999 "zh-cht": "連接性",
9000 "xloc": [
9001 "default-mobile.handlebars->9->255",
8990 - "default.handlebars->29->1542",
9002 + "default.handlebars->29->1546",
9003 "default.handlebars->29->235",
9004 "default.handlebars->29->613",
9005 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -9076,7 +9088,7 @@
9088 "zh-chs": "Cookie编码器",
9089 "zh-cht": "Cookie編碼器",
9090 "xloc": [
9079 - "default.handlebars->29->2109"
9091 + "default.handlebars->29->2113"
9092 ]
9093 },
9094 {
@@ -9233,8 +9245,8 @@
9245 "zh-chs": "复制连结到剪贴板",
9246 "zh-cht": "複製連結到剪貼板",
9247 "xloc": [
9236 - "default.handlebars->29->1547",
9237 - "default.handlebars->29->1566",
9248 + "default.handlebars->29->1551",
9249 + "default.handlebars->29->1570",
9250 "default.handlebars->29->196",
9251 "default.handlebars->29->353"
9252 ]
@@ -9337,7 +9349,7 @@
9349 "zh-chs": "复制:“{0}”到“{1}”",
9350 "zh-cht": "複製:“{0}”到“{1}”",
9351 "xloc": [
9340 - "default.handlebars->29->1638"
9352 + "default.handlebars->29->1642"
9353 ]
9354 },
9355 {
@@ -9483,7 +9495,7 @@
9495 "zh-chs": "核心服务器",
9496 "zh-cht": "核心伺服器",
9497 "xloc": [
9486 - "default.handlebars->29->2108"
9498 + "default.handlebars->29->2112"
9499 ]
9500 },
9501 {
@@ -9523,7 +9535,7 @@
9535 "zh-chs": "创建帐号",
9536 "zh-cht": "創建帳號",
9537 "xloc": [
9526 - "default.handlebars->29->1799",
9538 + "default.handlebars->29->1803",
9539 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9540 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9541 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9566,7 +9578,7 @@
9578 "zh-chs": "创建用户组",
9579 "zh-cht": "創建用戶群",
9580 "xloc": [
9569 - "default.handlebars->29->1838"
9581 + "default.handlebars->29->1842"
9582 ]
9583 },
9584 {
@@ -9654,7 +9666,7 @@
9666 "zh-chs": "创建文件夹:“{0}”",
9667 "zh-cht": "創建文件夾:“{0}”",
9668 "xloc": [
9657 - "default.handlebars->29->1631"
9669 + "default.handlebars->29->1635"
9670 ]
9671 },
9672 {
@@ -9674,7 +9686,7 @@
9686 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9687 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9688 "xloc": [
9677 - "default.handlebars->29->1763"
9689 + "default.handlebars->29->1767"
9690 ]
9691 },
9692 {
@@ -9716,7 +9728,7 @@
9728 "zh-chs": "创建的设备组:{0}",
9729 "zh-cht": "創建的設備組:{0}",
9730 "xloc": [
9719 - "default.handlebars->29->1642"
9731 + "default.handlebars->29->1646"
9732 ]
9733 },
9734 {
@@ -9761,7 +9773,7 @@
9773 "zh-chs": "创建",
9774 "zh-cht": "創建",
9775 "xloc": [
9764 - "default.handlebars->29->1924"
9776 + "default.handlebars->29->1928"
9777 ]
9778 },
9779 {
@@ -10184,6 +10196,12 @@
10196 "default.handlebars->29->1385"
10197 ]
10198 },
10199 + {
10200 + "en": "Deactivate CCM if setup",
10201 + "xloc": [
10202 + "default.handlebars->29->1397"
10203 + ]
10204 + },
10205 {
10206 "cs": "Deaktivovat klientem řízený řetim (CCM)",
10207 "de": "Client Control Mode (CCM) deaktivieren",
@@ -10239,10 +10257,10 @@
10257 "zh-chs": "默认",
10258 "zh-cht": "默認",
10259 "xloc": [
10242 - "default.handlebars->29->1786",
10243 - "default.handlebars->29->1834",
10244 - "default.handlebars->29->1845",
10245 - "default.handlebars->29->1913"
10260 + "default.handlebars->29->1790",
10261 + "default.handlebars->29->1838",
10262 + "default.handlebars->29->1849",
10263 + "default.handlebars->29->1917"
10264 ]
10265 },
10266 {
@@ -10266,7 +10284,7 @@
10284 "default-mobile.handlebars->9->311",
10285 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10286 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10269 - "default.handlebars->29->1573",
10287 + "default.handlebars->29->1577",
10288 "default.handlebars->29->515",
10289 "default.handlebars->29->903",
10290 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -10316,7 +10334,7 @@
10334 "zh-chs": "删除帐户",
10335 "zh-cht": "刪除帳戶",
10336 "xloc": [
10319 - "default.handlebars->29->1753"
10337 + "default.handlebars->29->1757"
10338 ]
10339 },
10340 {
@@ -10360,7 +10378,7 @@
10378 "default-mobile.handlebars->9->415",
10379 "default-mobile.handlebars->9->418",
10380 "default.handlebars->29->1381",
10363 - "default.handlebars->29->1410"
10381 + "default.handlebars->29->1414"
10382 ]
10383 },
10384 {
@@ -10421,7 +10439,7 @@
10439 "zh-chs": "删除用户",
10440 "zh-cht": "刪除用戶",
10441 "xloc": [
10424 - "default.handlebars->29->1963"
10442 + "default.handlebars->29->1967"
10443 ]
10444 },
10445 {
@@ -10441,8 +10459,8 @@
10459 "zh-chs": "删除用户群组",
10460 "zh-cht": "刪除用戶群組",
10461 "xloc": [
10444 - "default.handlebars->29->1883",
10445 - "default.handlebars->29->1893"
10462 + "default.handlebars->29->1887",
10463 + "default.handlebars->29->1897"
10464 ]
10465 },
10466 {
@@ -10462,7 +10480,7 @@
10480 "zh-chs": "删除用户群组",
10481 "zh-cht": "刪除用戶群組",
10482 "xloc": [
10465 - "default.handlebars->29->1832"
10483 + "default.handlebars->29->1836"
10484 ]
10485 },
10486 {
@@ -10482,7 +10500,7 @@
10500 "zh-chs": "删除用户{0}",
10501 "zh-cht": "刪除用戶{0}",
10502 "xloc": [
10485 - "default.handlebars->29->1986"
10503 + "default.handlebars->29->1990"
10504 ]
10505 },
10506 {
@@ -10503,7 +10521,7 @@
10521 "zh-cht": "刪除帳戶",
10522 "xloc": [
10523 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10506 - "default.handlebars->29->1749",
10524 + "default.handlebars->29->1753",
10525 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10526 ]
10527 },
@@ -10544,7 +10562,7 @@
10562 "zh-chs": "删除群组",
10563 "zh-cht": "刪除群組",
10564 "xloc": [
10547 - "default.handlebars->29->1828"
10565 + "default.handlebars->29->1832"
10566 ]
10567 },
10568 {
@@ -10584,7 +10602,7 @@
10602 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10603 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10604 "xloc": [
10587 - "default.handlebars->29->1633"
10605 + "default.handlebars->29->1637"
10606 ]
10607 },
10608 {
@@ -10606,7 +10624,7 @@
10624 "xloc": [
10625 "default-mobile.handlebars->9->124",
10626 "default-mobile.handlebars->9->313",
10609 - "default.handlebars->29->1575",
10627 + "default.handlebars->29->1579",
10628 "default.handlebars->29->905"
10629 ]
10630 },
@@ -10627,7 +10645,7 @@
10645 "zh-chs": "删除用户群组{0}?",
10646 "zh-cht": "刪除用戶群組{0}?",
10647 "xloc": [
10630 - "default.handlebars->29->1891"
10648 + "default.handlebars->29->1895"
10649 ]
10650 },
10651 {
@@ -10649,7 +10667,7 @@
10667 "xloc": [
10668 "default-mobile.handlebars->9->123",
10669 "default-mobile.handlebars->9->312",
10652 - "default.handlebars->29->1574",
10670 + "default.handlebars->29->1578",
10671 "default.handlebars->29->904"
10672 ]
10673 },
@@ -10690,7 +10708,7 @@
10708 "zh-chs": "删除:“{0}”",
10709 "zh-cht": "刪除:“{0}”",
10710 "xloc": [
10693 - "default.handlebars->29->1632"
10711 + "default.handlebars->29->1636"
10712 ]
10713 },
10714 {
@@ -10710,7 +10728,7 @@
10728 "zh-chs": "删除:“{0}”,{1}个元素已删除",
10729 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10730 "xloc": [
10713 - "default.handlebars->29->1634"
10731 + "default.handlebars->29->1638"
10732 ]
10733 },
10734 {
@@ -10829,11 +10847,11 @@
10847 "default-mobile.handlebars->9->420",
10848 "default.handlebars->29->1292",
10849 "default.handlebars->29->1329",
10832 - "default.handlebars->29->1412",
10833 - "default.handlebars->29->1837",
10834 - "default.handlebars->29->1847",
10835 - "default.handlebars->29->1848",
10836 - "default.handlebars->29->1889",
10850 + "default.handlebars->29->1416",
10851 + "default.handlebars->29->1841",
10852 + "default.handlebars->29->1851",
10853 + "default.handlebars->29->1852",
10854 + "default.handlebars->29->1893",
10855 "default.handlebars->29->556",
10856 "default.handlebars->29->557",
10857 "default.handlebars->29->77",
@@ -10878,8 +10896,8 @@
10896 "zh-cht": "桌面",
10897 "xloc": [
10898 "default-mobile.handlebars->9->267",
10881 - "default.handlebars->29->1418",
10882 - "default.handlebars->29->2035",
10899 + "default.handlebars->29->1422",
10900 + "default.handlebars->29->2039",
10901 "default.handlebars->29->521",
10902 "default.handlebars->29->869",
10903 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -10925,8 +10943,8 @@
10943 "zh-cht": "桌面通知",
10944 "xloc": [
10945 "default.handlebars->29->1343",
10928 - "default.handlebars->29->1852",
10929 - "default.handlebars->29->1939",
10946 + "default.handlebars->29->1856",
10947 + "default.handlebars->29->1943",
10948 "default.handlebars->29->594"
10949 ]
10950 },
@@ -10948,8 +10966,8 @@
10966 "zh-cht": "桌面提示",
10967 "xloc": [
10968 "default.handlebars->29->1342",
10951 - "default.handlebars->29->1851",
10952 - "default.handlebars->29->1938",
10969 + "default.handlebars->29->1855",
10970 + "default.handlebars->29->1942",
10971 "default.handlebars->29->593"
10972 ]
10973 },
@@ -10971,8 +10989,8 @@
10989 "zh-cht": "桌面提示+工具欄",
10990 "xloc": [
10991 "default.handlebars->29->1340",
10974 - "default.handlebars->29->1849",
10975 - "default.handlebars->29->1936",
10992 + "default.handlebars->29->1853",
10993 + "default.handlebars->29->1940",
10994 "default.handlebars->29->591"
10995 ]
10996 },
@@ -11024,8 +11042,8 @@
11042 "zh-cht": "桌面工具欄",
11043 "xloc": [
11044 "default.handlebars->29->1341",
11027 - "default.handlebars->29->1850",
11028 - "default.handlebars->29->1937",
11045 + "default.handlebars->29->1854",
11046 + "default.handlebars->29->1941",
11047 "default.handlebars->29->592"
11048 ]
11049 },
@@ -11129,9 +11147,9 @@
11147 "zh-chs": "设备",
11148 "zh-cht": "裝置",
11149 "xloc": [
11132 - "default.handlebars->29->1441",
11150 + "default.handlebars->29->1445",
11151 "default.handlebars->29->186",
11134 - "default.handlebars->29->2005",
11152 + "default.handlebars->29->2009",
11153 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11154 ]
11155 },
@@ -11181,14 +11199,14 @@
11199 "zh-chs": "设备组",
11200 "zh-cht": "裝置群",
11201 "xloc": [
11184 - "default.handlebars->29->1436",
11185 - "default.handlebars->29->1439",
11202 "default.handlebars->29->1440",
11187 - "default.handlebars->29->1700",
11188 - "default.handlebars->29->1875",
11189 - "default.handlebars->29->1881",
11190 - "default.handlebars->29->1993",
11191 - "default.handlebars->29->2044"
11203 + "default.handlebars->29->1443",
11204 + "default.handlebars->29->1444",
11205 + "default.handlebars->29->1704",
11206 + "default.handlebars->29->1879",
11207 + "default.handlebars->29->1885",
11208 + "default.handlebars->29->1997",
11209 + "default.handlebars->29->2048"
11210 ]
11211 },
11212 {
@@ -11209,7 +11227,7 @@
11227 "zh-cht": "裝置群用戶",
11228 "xloc": [
11229 "default-mobile.handlebars->9->466",
11212 - "default.handlebars->29->1505"
11230 + "default.handlebars->29->1509"
11231 ]
11232 },
11233 {
@@ -11230,11 +11248,11 @@
11248 "zh-cht": "裝置群",
11249 "xloc": [
11250 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11233 - "default.handlebars->29->1716",
11234 - "default.handlebars->29->1822",
11235 - "default.handlebars->29->1862",
11236 - "default.handlebars->29->1933",
11237 - "default.handlebars->29->2079",
11251 + "default.handlebars->29->1720",
11252 + "default.handlebars->29->1826",
11253 + "default.handlebars->29->1866",
11254 + "default.handlebars->29->1937",
11255 + "default.handlebars->29->2083",
11256 "default.handlebars->container->column_l->p2->p2info->7"
11257 ]
11258 },
@@ -11316,7 +11334,7 @@
11334 "zh-cht": "裝置名稱",
11335 "xloc": [
11336 "default-mobile.handlebars->9->290",
11319 - "default.handlebars->29->2043",
11337 + "default.handlebars->29->2047",
11338 "default.handlebars->29->288",
11339 "default.handlebars->29->822",
11340 "player.handlebars->3->9"
@@ -11389,7 +11407,7 @@
11407 "zh-cht": "裝置連接。",
11408 "xloc": [
11409 "default.handlebars->29->1260",
11392 - "default.handlebars->29->1526"
11410 + "default.handlebars->29->1530"
11411 ]
11412 },
11413 {
@@ -11410,7 +11428,7 @@
11428 "zh-cht": "裝置斷開連接。",
11429 "xloc": [
11430 "default.handlebars->29->1261",
11413 - "default.handlebars->29->1527"
11431 + "default.handlebars->29->1531"
11432 ]
11433 },
11434 {
@@ -11430,7 +11448,7 @@
11448 "zh-chs": "创建的设备组:{0}",
11449 "zh-cht": "設備組已創建:{0}",
11450 "xloc": [
11433 - "default.handlebars->29->1663"
11451 + "default.handlebars->29->1667"
11452 ]
11453 },
11454 {
@@ -11450,7 +11468,7 @@
11468 "zh-chs": "设备组已删除:{0}",
11469 "zh-cht": "設備組已刪除:{0}",
11470 "xloc": [
11453 - "default.handlebars->29->1664"
11471 + "default.handlebars->29->1668"
11472 ]
11473 },
11474 {
@@ -11470,7 +11488,7 @@
11488 "zh-chs": "设备组成员身份已更改:{0}",
11489 "zh-cht": "設備組成員身份已更改:{0}",
11490 "xloc": [
11473 - "default.handlebars->29->1665"
11491 + "default.handlebars->29->1669"
11492 ]
11493 },
11494 {
@@ -11510,7 +11528,7 @@
11528 "zh-chs": "设备组通知已更改",
11529 "zh-cht": "設備組通知已更改",
11530 "xloc": [
11513 - "default.handlebars->29->1660"
11531 + "default.handlebars->29->1664"
11532 ]
11533 },
11534 {
@@ -11530,7 +11548,7 @@
11548 "zh-chs": "未删除的设备组:{0}",
11549 "zh-cht": "未刪除的設備組:{0}",
11550 "xloc": [
11533 - "default.handlebars->29->1643"
11551 + "default.handlebars->29->1647"
11552 ]
11553 },
11554 {
@@ -11923,7 +11941,7 @@
11941 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11942 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11943 "xloc": [
11926 - "default.handlebars->29->1645"
11944 + "default.handlebars->29->1649"
11945 ]
11946 },
11947 {
@@ -11960,8 +11978,8 @@
11978 "zh-chs": "设备",
11979 "zh-cht": "裝置",
11980 "xloc": [
11963 - "default.handlebars->29->1823",
11964 - "default.handlebars->29->1863"
11981 + "default.handlebars->29->1827",
11982 + "default.handlebars->29->1867"
11983 ]
11984 },
11985 {
@@ -12001,7 +12019,7 @@
12019 "zh-chs": "禁用的电子邮件两因素身份验证",
12020 "zh-cht": "禁用的電子郵件兩因素身份驗證",
12021 "xloc": [
12004 - "default.handlebars->29->1676"
12022 + "default.handlebars->29->1680"
12023 ]
12024 },
12025 {
@@ -12201,7 +12219,7 @@
12219 "zh-chs": "显示公共连结",
12220 "zh-cht": "顯示公共鏈結",
12221 "xloc": [
12204 - "default.handlebars->29->1546"
12222 + "default.handlebars->29->1550"
12223 ]
12224 },
12225 {
@@ -12221,7 +12239,7 @@
12239 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12240 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12241 "xloc": [
12224 - "default.handlebars->29->1605"
12242 + "default.handlebars->29->1609"
12243 ]
12244 },
12245 {
@@ -12241,7 +12259,7 @@
12259 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12260 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12261 "xloc": [
12244 - "default.handlebars->29->1613"
12262 + "default.handlebars->29->1617"
12263 ]
12264 },
12265 {
@@ -12261,8 +12279,8 @@
12279 "zh-chs": "什么都不做",
12280 "zh-cht": "什麼都不做",
12281 "xloc": [
12264 - "default.handlebars->29->1396",
12265 - "default.handlebars->29->1400"
12282 + "default.handlebars->29->1400",
12283 + "default.handlebars->29->1404"
12284 ]
12285 },
12286 {
@@ -12282,14 +12300,20 @@
12300 "zh-chs": "域",
12301 "zh-cht": "域",
12302 "xloc": [
12285 - "default.handlebars->29->1787",
12286 - "default.handlebars->29->1835",
12287 - "default.handlebars->29->1844",
12288 - "default.handlebars->29->1912",
12303 + "default.handlebars->29->1791",
12304 + "default.handlebars->29->1839",
12305 + "default.handlebars->29->1848",
12306 + "default.handlebars->29->1916",
12307 "mstsc.handlebars->main->1->3->1->2->1->0",
12308 "mstsc.handlebars->main->1->3->1->2->3"
12309 ]
12310 },
12311 + {
12312 + "en": "Don't change, keep CCM if setup",
12313 + "xloc": [
12314 + "default.handlebars->29->1396"
12315 + ]
12316 + },
12317 {
12318 "cs": "Nekonfigurujte",
12319 "de": "Nicht konfigurieren",
@@ -12324,7 +12348,7 @@
12348 "zh-chs": "不要连接到服务器",
12349 "zh-cht": "不要連接到伺服器",
12350 "xloc": [
12327 - "default.handlebars->29->1401"
12351 + "default.handlebars->29->1405"
12352 ]
12353 },
12354 {
@@ -12544,7 +12568,7 @@
12568 "zh-chs": "下载报告",
12569 "zh-cht": "下載報告",
12570 "xloc": [
12547 - "default.handlebars->29->1705",
12571 + "default.handlebars->29->1709",
12572 "default.handlebars->container->column_l->p3->3->1->0->3"
12573 ]
12574 },
@@ -12745,7 +12769,7 @@
12769 "zh-chs": "使用以下一种档案格式下载事件列表。",
12770 "zh-cht": "使用以下一種檔案格式下載事件列表。",
12771 "xloc": [
12748 - "default.handlebars->29->1706"
12772 + "default.handlebars->29->1710"
12773 ]
12774 },
12775 {
@@ -12765,7 +12789,7 @@
12789 "zh-chs": "使用以下一种档案格式下载用户列表。",
12790 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
12791 "xloc": [
12768 - "default.handlebars->29->1771"
12792 + "default.handlebars->29->1775"
12793 ]
12794 },
12795 {
@@ -12846,7 +12870,7 @@
12870 "zh-chs": "下载:“{0}”",
12871 "zh-cht": "下載:“{0}”",
12872 "xloc": [
12849 - "default.handlebars->29->1636"
12873 + "default.handlebars->29->1640"
12874 ]
12875 },
12876 {
@@ -12886,7 +12910,7 @@
12910 "zh-chs": "代理重复",
12911 "zh-cht": "代理重複",
12912 "xloc": [
12889 - "default.handlebars->29->2075"
12913 + "default.handlebars->29->2079"
12914 ]
12915 },
12916 {
@@ -12926,7 +12950,7 @@
12950 "zh-chs": "复制用户组",
12951 "zh-cht": "複製用戶群",
12952 "xloc": [
12929 - "default.handlebars->29->1839"
12953 + "default.handlebars->29->1843"
12954 ]
12955 },
12956 {
@@ -12963,8 +12987,8 @@
12987 "zh-chs": "持续时间",
12988 "zh-cht": "持續時間",
12989 "xloc": [
12966 - "default.handlebars->29->2029",
12967 - "default.handlebars->29->2049",
12990 + "default.handlebars->29->2033",
12991 + "default.handlebars->29->2053",
12992 "player.handlebars->3->2"
12993 ]
12994 },
@@ -13334,10 +13358,10 @@
13358 "default-mobile.handlebars->9->421",
13359 "default-mobile.handlebars->9->423",
13360 "default-mobile.handlebars->9->443",
13337 - "default.handlebars->29->1413",
13338 - "default.handlebars->29->1445",
13339 - "default.handlebars->29->1469",
13340 - "default.handlebars->29->1481"
13361 + "default.handlebars->29->1417",
13362 + "default.handlebars->29->1449",
13363 + "default.handlebars->29->1473",
13364 + "default.handlebars->29->1485"
13365 ]
13366 },
13367 {
@@ -13357,7 +13381,7 @@
13381 "zh-chs": "编辑设备组功能",
13382 "zh-cht": "編輯裝置群功能",
13383 "xloc": [
13360 - "default.handlebars->29->1431"
13384 + "default.handlebars->29->1435"
13385 ]
13386 },
13387 {
@@ -13377,8 +13401,8 @@
13401 "zh-chs": "编辑设备组权限",
13402 "zh-cht": "編輯裝置群權限",
13403 "xloc": [
13380 - "default.handlebars->29->1466",
13381 - "default.handlebars->29->1478"
13404 + "default.handlebars->29->1470",
13405 + "default.handlebars->29->1482"
13406 ]
13407 },
13408 {
@@ -13398,7 +13422,7 @@
13422 "zh-chs": "编辑设备组用户同意",
13423 "zh-cht": "編輯裝置群用戶同意",
13424 "xloc": [
13401 - "default.handlebars->29->1414"
13425 + "default.handlebars->29->1418"
13426 ]
13427 },
13428 {
@@ -13419,7 +13443,7 @@
13443 "zh-cht": "編輯裝置筆記",
13444 "xloc": [
13445 "default-mobile.handlebars->9->435",
13422 - "default.handlebars->29->1458"
13446 + "default.handlebars->29->1462"
13447 ]
13448 },
13449 {
@@ -13439,8 +13463,8 @@
13463 "zh-chs": "编辑设备权限",
13464 "zh-cht": "編輯裝置權限",
13465 "xloc": [
13442 - "default.handlebars->29->1471",
13443 - "default.handlebars->29->1473"
13466 + "default.handlebars->29->1475",
13467 + "default.handlebars->29->1477"
13468 ]
13469 },
13470 {
@@ -13480,7 +13504,7 @@
13504 "zh-chs": "编辑设备用户同意",
13505 "zh-cht": "編輯裝置用戶同意",
13506 "xloc": [
13483 - "default.handlebars->29->1416"
13507 + "default.handlebars->29->1420"
13508 ]
13509 },
13510 {
@@ -13548,7 +13572,7 @@
13572 "zh-cht": "編輯筆記",
13573 "xloc": [
13574 "default-mobile.handlebars->9->450",
13551 - "default.handlebars->29->1488"
13575 + "default.handlebars->29->1492"
13576 ]
13577 },
13578 {
@@ -13568,7 +13592,7 @@
13592 "zh-chs": "编辑用户同意",
13593 "zh-cht": "編輯用戶同意",
13594 "xloc": [
13571 - "default.handlebars->29->1415"
13595 + "default.handlebars->29->1419"
13596 ]
13597 },
13598 {
@@ -13588,7 +13612,7 @@
13612 "zh-chs": "编辑用户设备组权限",
13613 "zh-cht": "編輯用戶裝置群權限",
13614 "xloc": [
13591 - "default.handlebars->29->1479"
13615 + "default.handlebars->29->1483"
13616 ]
13617 },
13618 {
@@ -13608,7 +13632,7 @@
13632 "zh-chs": "编辑用户设备权限",
13633 "zh-cht": "編輯用戶裝置權限",
13634 "xloc": [
13611 - "default.handlebars->29->1474"
13635 + "default.handlebars->29->1478"
13636 ]
13637 },
13638 {
@@ -13628,7 +13652,7 @@
13652 "zh-chs": "编辑用户组",
13653 "zh-cht": "編輯用戶群",
13654 "xloc": [
13631 - "default.handlebars->29->1890"
13655 + "default.handlebars->29->1894"
13656 ]
13657 },
13658 {
@@ -13648,14 +13672,14 @@
13672 "zh-chs": "编辑用户组设备权限",
13673 "zh-cht": "編輯用戶群裝置權限",
13674 "xloc": [
13651 - "default.handlebars->29->1476"
13675 + "default.handlebars->29->1480"
13676 ]
13677 },
13678 {
13679 "en": "Edit User Group User Consent",
13680 "nl": "Bewerk groepsgebruikerstoestemming",
13681 "xloc": [
13658 - "default.handlebars->29->1417"
13682 + "default.handlebars->29->1421"
13683 ]
13684 },
13685 {
@@ -13717,11 +13741,11 @@
13741 "zh-cht": "電郵",
13742 "xloc": [
13743 "default-mobile.handlebars->9->78",
13720 - "default.handlebars->29->1789",
13721 - "default.handlebars->29->1916",
13722 - "default.handlebars->29->1918",
13723 - "default.handlebars->29->1958",
13724 - "default.handlebars->29->1974",
13744 + "default.handlebars->29->1793",
13745 + "default.handlebars->29->1920",
13746 + "default.handlebars->29->1922",
13747 + "default.handlebars->29->1962",
13748 + "default.handlebars->29->1978",
13749 "default.handlebars->29->320",
13750 "login-mobile.handlebars->5->42",
13751 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13875,7 +13899,7 @@
13899 "zh-chs": "电邮未验证",
13900 "zh-cht": "電郵未驗證",
13901 "xloc": [
13878 - "default.handlebars->29->1735"
13902 + "default.handlebars->29->1739"
13903 ]
13904 },
13905 {
@@ -13883,8 +13907,8 @@
13907 "nl": "Email is geverifieerd",
13908 "fr": "Email vérifié",
13909 "xloc": [
13886 - "default.handlebars->29->1736",
13887 - "default.handlebars->29->1910"
13910 + "default.handlebars->29->1740",
13911 + "default.handlebars->29->1914"
13912 ]
13913 },
13914 {
@@ -13904,7 +13928,7 @@
13928 "zh-chs": "电邮已验证。",
13929 "zh-cht": "電郵已驗證。",
13930 "xloc": [
13907 - "default.handlebars->29->1795"
13931 + "default.handlebars->29->1799"
13932 ]
13933 },
13934 {
@@ -13924,7 +13948,7 @@
13948 "zh-chs": "电邮未验证",
13949 "zh-cht": "電郵未驗證",
13950 "xloc": [
13927 - "default.handlebars->29->1911"
13951 + "default.handlebars->29->1915"
13952 ]
13953 },
13954 {
@@ -13988,7 +14012,7 @@
14012 "zh-chs": "已通过电邮验证,并且需要重置密码。",
14013 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
14014 "xloc": [
13991 - "default.handlebars->29->1796"
14015 + "default.handlebars->29->1800"
14016 ]
14017 },
14018 {
@@ -14008,7 +14032,7 @@
14032 "zh-chs": "电邮/短信流量",
14033 "zh-cht": "電郵/短信流量",
14034 "xloc": [
14011 - "default.handlebars->29->2117"
14035 + "default.handlebars->29->2121"
14036 ]
14037 },
14038 {
@@ -14054,7 +14078,7 @@
14078 "zh-chs": "启用邀请代码",
14079 "zh-cht": "啟用邀請代碼",
14080 "xloc": [
14057 - "default.handlebars->29->1511"
14081 + "default.handlebars->29->1515"
14082 ]
14083 },
14084 {
@@ -14135,7 +14159,7 @@
14159 "zh-chs": "已启用",
14160 "zh-cht": "已啟用",
14161 "xloc": [
14138 - "default.handlebars->29->2051"
14162 + "default.handlebars->29->2055"
14163 ]
14164 },
14165 {
@@ -14155,7 +14179,7 @@
14179 "zh-chs": "启用电子邮件两因素身份验证",
14180 "zh-cht": "啟用電子郵件兩因素身份驗證",
14181 "xloc": [
14158 - "default.handlebars->29->1675"
14182 + "default.handlebars->29->1679"
14183 ]
14184 },
14185 {
@@ -14195,7 +14219,7 @@
14219 "zh-chs": "时间结束",
14220 "zh-cht": "時間結束",
14221 "xloc": [
14198 - "default.handlebars->29->2048"
14222 + "default.handlebars->29->2052"
14223 ]
14224 },
14225 {
@@ -14215,7 +14239,7 @@
14239 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14240 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14241 "xloc": [
14218 - "default.handlebars->29->1598"
14242 + "default.handlebars->29->1602"
14243 ]
14244 },
14245 {
@@ -14235,7 +14259,7 @@
14259 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14260 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14261 "xloc": [
14238 - "default.handlebars->29->1599"
14262 + "default.handlebars->29->1603"
14263 ]
14264 },
14265 {
@@ -14255,7 +14279,7 @@
14279 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14280 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14281 "xloc": [
14258 - "default.handlebars->29->1596"
14282 + "default.handlebars->29->1600"
14283 ]
14284 },
14285 {
@@ -14275,7 +14299,7 @@
14299 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14300 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14301 "xloc": [
14278 - "default.handlebars->29->1597"
14302 + "default.handlebars->29->1601"
14303 ]
14304 },
14305 {
@@ -14577,7 +14601,7 @@
14601 "zh-chs": "输入管理领域名称的逗号分隔列表。",
14602 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14603 "xloc": [
14580 - "default.handlebars->29->1800"
14604 + "default.handlebars->29->1804"
14605 ]
14606 },
14607 {
@@ -14807,7 +14831,7 @@
14831 "zh-chs": "事件列表输出",
14832 "zh-cht": "事件列表輸出",
14833 "xloc": [
14810 - "default.handlebars->29->1711"
14834 + "default.handlebars->29->1715"
14835 ]
14836 },
14837 {
@@ -15008,7 +15032,7 @@
15032 "zh-chs": "外部",
15033 "zh-cht": "外部",
15034 "xloc": [
15011 - "default.handlebars->29->2102"
15035 + "default.handlebars->29->2106"
15036 ]
15037 },
15038 {
@@ -15108,7 +15132,7 @@
15132 "zh-chs": "本地用户拒绝后无法启动远程桌面",
15133 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
15134 "xloc": [
15111 - "default.handlebars->29->1621"
15135 + "default.handlebars->29->1625"
15136 ]
15137 },
15138 {
@@ -15128,7 +15152,7 @@
15152 "zh-chs": "本地用户拒绝后无法启动远程文件",
15153 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
15154 "xloc": [
15131 - "default.handlebars->29->1628"
15155 + "default.handlebars->29->1632"
15156 ]
15157 },
15158 {
@@ -15360,8 +15384,8 @@
15384 "xloc": [
15385 "default-mobile.handlebars->9->171",
15386 "default-mobile.handlebars->9->268",
15363 - "default.handlebars->29->1425",
15364 - "default.handlebars->29->2036",
15387 + "default.handlebars->29->1429",
15388 + "default.handlebars->29->2040",
15389 "default.handlebars->29->259",
15390 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15391 "default.handlebars->contextMenu->cxfiles"
@@ -15405,8 +15429,8 @@
15429 "zh-cht": "檔案通知",
15430 "xloc": [
15431 "default.handlebars->29->1347",
15408 - "default.handlebars->29->1856",
15409 - "default.handlebars->29->1943",
15432 + "default.handlebars->29->1860",
15433 + "default.handlebars->29->1947",
15434 "default.handlebars->29->598"
15435 ]
15436 },
@@ -15428,8 +15452,8 @@
15452 "zh-cht": "檔案提示",
15453 "xloc": [
15454 "default.handlebars->29->1346",
15431 - "default.handlebars->29->1855",
15432 - "default.handlebars->29->1942",
15455 + "default.handlebars->29->1859",
15456 + "default.handlebars->29->1946",
15457 "default.handlebars->29->597"
15458 ]
15459 },
@@ -15490,7 +15514,7 @@
15514 "zh-chs": "录制会话已完成,{0}秒",
15515 "zh-cht": "錄製會話已完成,{0}秒",
15516 "xloc": [
15493 - "default.handlebars->29->1594"
15517 + "default.handlebars->29->1598"
15518 ]
15519 },
15520 {
@@ -15665,8 +15689,8 @@
15689 "zh-chs": "下次登录时强制重置密码。",
15690 "zh-cht": "下次登入時強制重置密碼。",
15691 "xloc": [
15668 - "default.handlebars->29->1794",
15669 - "default.handlebars->29->1983"
15692 + "default.handlebars->29->1798",
15693 + "default.handlebars->29->1987"
15694 ]
15695 },
15696 {
@@ -15749,7 +15773,7 @@
15773 "zh-chs": "格式化",
15774 "zh-cht": "格式化",
15775 "xloc": [
15752 - "default.handlebars->29->1702"
15776 + "default.handlebars->29->1706"
15777 ]
15778 },
15779 {
@@ -15790,8 +15814,8 @@
15814 "zh-chs": "自由",
15815 "zh-cht": "自由",
15816 "xloc": [
15793 - "default.handlebars->29->2060",
15794 - "default.handlebars->29->2062"
15817 + "default.handlebars->29->2064",
15818 + "default.handlebars->29->2066"
15819 ]
15820 },
15821 {
@@ -16017,8 +16041,8 @@
16041 "default-mobile.handlebars->9->422",
16042 "default-mobile.handlebars->9->442",
16043 "default.handlebars->29->1301",
16020 - "default.handlebars->29->1444",
16021 - "default.handlebars->29->1806"
16044 + "default.handlebars->29->1448",
16045 + "default.handlebars->29->1810"
16046 ]
16047 },
16048 {
@@ -16038,7 +16062,7 @@
16062 "zh-chs": "完整管理员(保留所有权利)",
16063 "zh-cht": "完整管理員(保留所有權利)",
16064 "xloc": [
16041 - "default.handlebars->29->1480"
16065 + "default.handlebars->29->1484"
16066 ]
16067 },
16068 {
@@ -16145,7 +16169,7 @@
16169 "zh-chs": "完整管理员",
16170 "zh-cht": "完整管理員",
16171 "xloc": [
16148 - "default.handlebars->29->1904"
16172 + "default.handlebars->29->1908"
16173 ]
16174 },
16175 {
@@ -16542,7 +16566,7 @@
16566 "zh-chs": "正在获取剪贴板内容,{0}个字节",
16567 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
16568 "xloc": [
16545 - "default.handlebars->29->1608"
16569 + "default.handlebars->29->1612"
16570 ]
16571 },
16572 {
@@ -16773,8 +16797,8 @@
16797 "zh-chs": "集体指令",
16798 "zh-cht": "集體指令",
16799 "xloc": [
16776 - "default.handlebars->29->1750",
16777 - "default.handlebars->29->1829",
16800 + "default.handlebars->29->1754",
16801 + "default.handlebars->29->1833",
16802 "default.handlebars->29->450",
16803 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16804 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16798,7 +16822,7 @@
16822 "zh-chs": "通过...分组",
16823 "zh-cht": "通過...分群",
16824 "xloc": [
16801 - "default.handlebars->29->1698"
16825 + "default.handlebars->29->1702"
16826 ]
16827 },
16828 {
@@ -16818,7 +16842,7 @@
16842 "zh-chs": "组标识符",
16843 "zh-cht": "群標識符",
16844 "xloc": [
16821 - "default.handlebars->29->1846"
16845 + "default.handlebars->29->1850"
16846 ]
16847 },
16848 {
@@ -16838,7 +16862,7 @@
16862 "zh-chs": "群组成员",
16863 "zh-cht": "群組成員",
16864 "xloc": [
16841 - "default.handlebars->29->1867"
16865 + "default.handlebars->29->1871"
16866 ]
16867 },
16868 {
@@ -16858,7 +16882,7 @@
16882 "zh-chs": "用户{0}的群组权限。",
16883 "zh-cht": "用戶{0}的群組權限。",
16884 "xloc": [
16861 - "default.handlebars->29->1443"
16885 + "default.handlebars->29->1447"
16886 ]
16887 },
16888 {
@@ -16878,7 +16902,7 @@
16902 "zh-chs": "{0}的群组权限。",
16903 "zh-cht": "{0}的群組權限。",
16904 "xloc": [
16881 - "default.handlebars->29->1442"
16905 + "default.handlebars->29->1446"
16906 ]
16907 },
16908 {
@@ -17070,7 +17094,7 @@
17094 "zh-chs": "堆总数",
17095 "zh-cht": "堆總數",
17096 "xloc": [
17073 - "default.handlebars->29->2104"
17097 + "default.handlebars->29->2108"
17098 ]
17099 },
17100 {
@@ -17090,7 +17114,7 @@
17114 "zh-chs": "堆使用",
17115 "zh-cht": "堆使用",
17116 "xloc": [
17093 - "default.handlebars->29->2103"
17117 + "default.handlebars->29->2107"
17118 ]
17119 },
17120 {
@@ -17147,7 +17171,7 @@
17171 "fr": "Assistance demandée, utilisateur: {0}, message: {1}",
17172 "nl": "Hulp verzoek van, user: {0}, details: {1}",
17173 "xloc": [
17150 - "default.handlebars->29->1685"
17174 + "default.handlebars->29->1689"
17175 ]
17176 },
17177 {
@@ -17410,7 +17434,7 @@
17434 "zh-cht": "保存{0}項目{1}給{2}",
17435 "xloc": [
17436 "default-mobile.handlebars->9->129",
17413 - "default.handlebars->29->1581"
17437 + "default.handlebars->29->1585"
17438 ]
17439 },
17440 {
@@ -17808,7 +17832,7 @@
17832 "fr": "Si dans CCM, réactiver Intel&reg; AMT",
17833 "nl": "Indien in CCM, heractiveer Intel&reg; AMT",
17834 "xloc": [
17811 - "default.handlebars->29->1397"
17835 + "default.handlebars->29->1401"
17836 ]
17837 },
17838 {
@@ -18138,8 +18162,8 @@
18162 "zh-chs": "安装类型",
18163 "zh-cht": "安裝方式",
18164 "xloc": [
18141 - "default.handlebars->29->1513",
18142 - "default.handlebars->29->1520",
18165 + "default.handlebars->29->1517",
18166 + "default.handlebars->29->1524",
18167 "default.handlebars->29->335",
18168 "default.handlebars->29->349",
18169 "default.handlebars->29->363"
@@ -18183,7 +18207,7 @@
18207 "zh-chs": "英特尔AMT",
18208 "zh-cht": "英特爾AMT",
18209 "xloc": [
18186 - "default.handlebars->29->2100"
18210 + "default.handlebars->29->2104"
18211 ]
18212 },
18213 {
@@ -18228,9 +18252,9 @@
18252 "default-mobile.handlebars->9->252",
18253 "default.handlebars->29->1354",
18254 "default.handlebars->29->1365",
18231 - "default.handlebars->29->1532",
18232 - "default.handlebars->29->1540",
18233 - "default.handlebars->29->2122",
18255 + "default.handlebars->29->1536",
18256 + "default.handlebars->29->1544",
18257 + "default.handlebars->29->2126",
18258 "default.handlebars->29->523",
18259 "default.handlebars->29->581",
18260 "default.handlebars->29->608"
@@ -18407,7 +18431,7 @@
18431 "zh-chs": "英特尔&reg;AMT重定向",
18432 "zh-cht": "Intel&reg; AMT重定向",
18433 "xloc": [
18410 - "default.handlebars->29->2038",
18434 + "default.handlebars->29->2042",
18435 "player.handlebars->3->14"
18436 ]
18437 },
@@ -18448,7 +18472,7 @@
18472 "zh-chs": "英特尔&reg;AMT WSMAN",
18473 "zh-cht": "Intle&reg; AMT WSMAN",
18474 "xloc": [
18451 - "default.handlebars->29->2037",
18475 + "default.handlebars->29->2041",
18476 "player.handlebars->3->13"
18477 ]
18478 },
@@ -18509,7 +18533,7 @@
18533 "zh-cht": "Intel&reg; AMT桌面和串行事件。",
18534 "xloc": [
18535 "default.handlebars->29->1262",
18512 - "default.handlebars->29->1528"
18536 + "default.handlebars->29->1532"
18537 ]
18538 },
18539 {
@@ -18987,8 +19011,8 @@
19011 "zh-chs": "仅限互动",
19012 "zh-cht": "僅限互動",
19013 "xloc": [
18990 - "default.handlebars->29->1516",
18991 - "default.handlebars->29->1523",
19014 + "default.handlebars->29->1520",
19015 + "default.handlebars->29->1527",
19016 "default.handlebars->29->338",
19017 "default.handlebars->29->352",
19018 "default.handlebars->29->366"
@@ -19062,7 +19086,7 @@
19086 "zh-chs": "无效的设备组类型",
19087 "zh-cht": "無效的裝置群類型",
19088 "xloc": [
19065 - "default.handlebars->29->2074"
19089 + "default.handlebars->29->2078"
19090 ]
19091 },
19092 {
@@ -19082,7 +19106,7 @@
19106 "zh-chs": "无效的JSON",
19107 "zh-cht": "無效的JSON",
19108 "xloc": [
19085 - "default.handlebars->29->2068"
19109 + "default.handlebars->29->2072"
19110 ]
19111 },
19112 {
@@ -19102,8 +19126,8 @@
19126 "zh-chs": "无效的JSON档案格式。",
19127 "zh-cht": "無效的JSON檔案格式。",
19128 "xloc": [
19105 - "default.handlebars->29->1768",
19106 - "default.handlebars->29->1770"
19129 + "default.handlebars->29->1772",
19130 + "default.handlebars->29->1774"
19131 ]
19132 },
19133 {
@@ -19123,7 +19147,7 @@
19147 "zh-chs": "无效的JSON档案:{0}。",
19148 "zh-cht": "無效的JSON檔案:{0}。",
19149 "xloc": [
19126 - "default.handlebars->29->1766"
19150 + "default.handlebars->29->1770"
19151 ]
19152 },
19153 {
@@ -19143,7 +19167,7 @@
19167 "zh-chs": "无效的PKCS签名",
19168 "zh-cht": "無效的PKCS簽名",
19169 "xloc": [
19146 - "default.handlebars->29->2066"
19170 + "default.handlebars->29->2070"
19171 ]
19172 },
19173 {
@@ -19163,7 +19187,7 @@
19187 "zh-chs": "無效的RSA密碼",
19188 "zh-cht": "無效的RSA密碼",
19189 "xloc": [
19166 - "default.handlebars->29->2067"
19190 + "default.handlebars->29->2071"
19191 ]
19192 },
19193 {
@@ -19290,7 +19314,7 @@
19314 "zh-chs": "使电邮无效",
19315 "zh-cht": "使電郵無效",
19316 "xloc": [
19293 - "default.handlebars->29->1744"
19317 + "default.handlebars->29->1748"
19318 ]
19319 },
19320 {
@@ -19367,7 +19391,7 @@
19391 "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
19392 "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
19393 "xloc": [
19370 - "default.handlebars->29->1518"
19394 + "default.handlebars->29->1522"
19395 ]
19396 },
19397 {
@@ -19418,10 +19442,10 @@
19442 "zh-cht": "邀請碼",
19443 "xloc": [
19444 "default.handlebars->29->1358",
19421 - "default.handlebars->29->1512",
19422 - "default.handlebars->29->1517",
19423 - "default.handlebars->29->1519",
19424 - "default.handlebars->29->1524"
19445 + "default.handlebars->29->1516",
19446 + "default.handlebars->29->1521",
19447 + "default.handlebars->29->1523",
19448 + "default.handlebars->29->1528"
19449 ]
19450 },
19451 {
@@ -19562,7 +19586,7 @@
19586 "zh-chs": "JSON",
19587 "zh-cht": "JSON",
19588 "xloc": [
19565 - "default.handlebars->29->1704"
19589 + "default.handlebars->29->1708"
19590 ]
19591 },
19592 {
@@ -19582,8 +19606,8 @@
19606 "zh-chs": "JSON格式",
19607 "zh-cht": "JSON格式",
19608 "xloc": [
19585 - "default.handlebars->29->1709",
19586 - "default.handlebars->29->1774",
19609 + "default.handlebars->29->1713",
19610 + "default.handlebars->29->1778",
19611 "default.handlebars->29->484"
19612 ]
19613 },
@@ -19624,7 +19648,7 @@
19648 "zh-chs": "已加入桌面Multiplex会话",
19649 "zh-cht": "已加入桌面Multiplex會話",
19650 "xloc": [
19627 - "default.handlebars->29->1591"
19651 + "default.handlebars->29->1595"
19652 ]
19653 },
19654 {
@@ -19807,7 +19831,7 @@
19831 "zh-chs": "杀死进程{0}",
19832 "zh-cht": "殺死進程{0}",
19833 "xloc": [
19810 - "default.handlebars->29->1606"
19834 + "default.handlebars->29->1610"
19835 ]
19836 },
19837 {
@@ -20222,7 +20246,7 @@
20246 "zh-chs": "最后访问",
20247 "zh-cht": "最後訪問",
20248 "xloc": [
20225 - "default.handlebars->29->1717"
20249 + "default.handlebars->29->1721"
20250 ]
20251 },
20252 {
@@ -20242,7 +20266,7 @@
20266 "zh-chs": "上次登录",
20267 "zh-cht": "上次登入",
20268 "xloc": [
20245 - "default.handlebars->29->1925"
20269 + "default.handlebars->29->1929"
20270 ]
20271 },
20272 {
@@ -20314,7 +20338,7 @@
20338 "zh-chs": "上次更改:{0}",
20339 "zh-cht": "上次更改:{0}",
20340 "xloc": [
20317 - "default.handlebars->29->1929"
20341 + "default.handlebars->29->1933"
20342 ]
20343 },
20344 {
@@ -20374,7 +20398,7 @@
20398 "zh-chs": "上次登录:{0}",
20399 "zh-cht": "上次登入:{0}",
20400 "xloc": [
20377 - "default.handlebars->29->1727"
20401 + "default.handlebars->29->1731"
20402 ]
20403 },
20404 {
@@ -20575,7 +20599,7 @@
20599 "zh-chs": "如没有请留空。",
20600 "zh-cht": "如沒有請留空。",
20601 "xloc": [
20578 - "default.handlebars->29->1969"
20602 + "default.handlebars->29->1973"
20603 ]
20604 },
20605 {
@@ -20620,7 +20644,7 @@
20644 "zh-chs": "离开桌面多路复用会话",
20645 "zh-cht": "離開桌面多路復用會話",
20646 "xloc": [
20623 - "default.handlebars->29->1592"
20647 + "default.handlebars->29->1596"
20648 ]
20649 },
20650 {
@@ -20640,7 +20664,7 @@
20664 "zh-chs": "减",
20665 "zh-cht": "減",
20666 "xloc": [
20643 - "default.handlebars->29->2139"
20667 + "default.handlebars->29->2143"
20668 ]
20669 },
20670 {
@@ -20703,7 +20727,7 @@
20727 "zh-cht": "有限輸入",
20728 "xloc": [
20729 "default-mobile.handlebars->9->455",
20706 - "default.handlebars->29->1494",
20730 + "default.handlebars->29->1498",
20731 "default.handlebars->29->678",
20732 "default.handlebars->29->699"
20733 ]
@@ -20726,7 +20750,7 @@
20750 "zh-cht": "僅有限輸入",
20751 "xloc": [
20752 "default-mobile.handlebars->9->428",
20729 - "default.handlebars->29->1450"
20753 + "default.handlebars->29->1454"
20754 ]
20755 },
20756 {
@@ -21215,7 +21239,7 @@
21239 "default.handlebars->29->1040",
21240 "default.handlebars->29->1317",
21241 "default.handlebars->29->1321",
21218 - "default.handlebars->29->2025",
21242 + "default.handlebars->29->2029",
21243 "default.handlebars->29->794"
21244 ]
21245 },
@@ -21298,7 +21322,7 @@
21322 "zh-chs": "本地用户接受的远程终端请求",
21323 "zh-cht": "本地用戶接受的遠程終端請求",
21324 "xloc": [
21301 - "default.handlebars->29->1614"
21325 + "default.handlebars->29->1618"
21326 ]
21327 },
21328 {
@@ -21318,7 +21342,7 @@
21342 "zh-chs": "本地用户拒绝了远程终端请求",
21343 "zh-cht": "本地用戶拒絕了遠程終端請求",
21344 "xloc": [
21321 - "default.handlebars->29->1615"
21345 + "default.handlebars->29->1619"
21346 ]
21347 },
21348 {
@@ -21399,7 +21423,7 @@
21423 "zh-chs": "锁定账户",
21424 "zh-cht": "鎖定賬戶",
21425 "xloc": [
21402 - "default.handlebars->29->1814"
21426 + "default.handlebars->29->1818"
21427 ]
21428 },
21429 {
@@ -21419,7 +21443,7 @@
21443 "zh-chs": "锁定帐户设置",
21444 "zh-cht": "鎖定帳戶設置",
21445 "xloc": [
21422 - "default.handlebars->29->1817"
21446 + "default.handlebars->29->1821"
21447 ]
21448 },
21449 {
@@ -21439,7 +21463,7 @@
21463 "zh-chs": "锁定账户",
21464 "zh-cht": "鎖定賬戶",
21465 "xloc": [
21442 - "default.handlebars->29->1747"
21466 + "default.handlebars->29->1751"
21467 ]
21468 },
21469 {
@@ -21459,7 +21483,7 @@
21483 "zh-chs": "已锁定",
21484 "zh-cht": "已鎖定",
21485 "xloc": [
21462 - "default.handlebars->29->1728"
21486 + "default.handlebars->29->1732"
21487 ]
21488 },
21489 {
@@ -21479,7 +21503,7 @@
21503 "zh-chs": "被锁定账户",
21504 "zh-cht": "被鎖定賬戶",
21505 "xloc": [
21482 - "default.handlebars->29->1901"
21506 + "default.handlebars->29->1905"
21507 ]
21508 },
21509 {
@@ -21499,7 +21523,7 @@
21523 "zh-chs": "将远程用户锁定在桌面之外",
21524 "zh-cht": "將遠程用戶鎖定在桌面之外",
21525 "xloc": [
21502 - "default.handlebars->29->1640"
21526 + "default.handlebars->29->1644"
21527 ]
21528 },
21529 {
@@ -22119,7 +22143,7 @@
22143 "zh-chs": "主服务器信息",
22144 "zh-cht": "主伺服器訊息",
22145 "xloc": [
22122 - "default.handlebars->29->2111"
22146 + "default.handlebars->29->2115"
22147 ]
22148 },
22149 {
@@ -22222,8 +22246,8 @@
22246 "xloc": [
22247 "default-mobile.handlebars->9->425",
22248 "default-mobile.handlebars->9->445",
22225 - "default.handlebars->29->1447",
22226 - "default.handlebars->29->1483"
22249 + "default.handlebars->29->1451",
22250 + "default.handlebars->29->1487"
22251 ]
22252 },
22253 {
@@ -22245,8 +22269,8 @@
22269 "xloc": [
22270 "default-mobile.handlebars->9->424",
22271 "default-mobile.handlebars->9->444",
22248 - "default.handlebars->29->1446",
22249 - "default.handlebars->29->1482"
22272 + "default.handlebars->29->1450",
22273 + "default.handlebars->29->1486"
22274 ]
22275 },
22276 {
@@ -22286,7 +22310,7 @@
22310 "zh-chs": "管理录音",
22311 "zh-cht": "管理錄音",
22312 "xloc": [
22289 - "default.handlebars->29->1812"
22313 + "default.handlebars->29->1816"
22314 ]
22315 },
22316 {
@@ -22326,7 +22350,7 @@
22350 "zh-chs": "管理用户组",
22351 "zh-cht": "管理用戶群",
22352 "xloc": [
22329 - "default.handlebars->29->1811"
22353 + "default.handlebars->29->1815"
22354 ]
22355 },
22356 {
@@ -22346,7 +22370,7 @@
22370 "zh-chs": "管理用户",
22371 "zh-cht": "管理用戶",
22372 "xloc": [
22349 - "default.handlebars->29->1810",
22373 + "default.handlebars->29->1814",
22374 "default.handlebars->29->693"
22375 ]
22376 },
@@ -22514,7 +22538,7 @@
22538 "zh-chs": "经理",
22539 "zh-cht": "經理",
22540 "xloc": [
22517 - "default.handlebars->29->1733"
22541 + "default.handlebars->29->1737"
22542 ]
22543 },
22544 {
@@ -22629,7 +22653,7 @@
22653 "zh-chs": "达到连接数量上限",
22654 "zh-cht": "達到連接數量上限",
22655 "xloc": [
22632 - "default.handlebars->29->2072"
22656 + "default.handlebars->29->2076"
22657 ]
22658 },
22659 {
@@ -22694,7 +22718,7 @@
22718 "zh-chs": "Megabyte",
22719 "zh-cht": "Megabyte",
22720 "xloc": [
22697 - "default.handlebars->29->2101"
22721 + "default.handlebars->29->2105"
22722 ]
22723 },
22724 {
@@ -22716,7 +22740,7 @@
22740 "xloc": [
22741 "default-mobile.handlebars->9->396",
22742 "default.handlebars->29->1006",
22719 - "default.handlebars->29->2092",
22743 + "default.handlebars->29->2096",
22744 "default.handlebars->container->column_l->p40->3->1->p40type->3"
22745 ]
22746 },
@@ -22770,7 +22794,7 @@
22794 "zh-cht": "網格代理控制台",
22795 "xloc": [
22796 "default-mobile.handlebars->9->432",
22773 - "default.handlebars->29->1455"
22797 + "default.handlebars->29->1459"
22798 ]
22799 },
22800 {
@@ -22875,7 +22899,7 @@
22899 "zh-chs": "MeshAgent流量",
22900 "zh-cht": "MeshAgent流量",
22901 "xloc": [
22878 - "default.handlebars->29->2113"
22902 + "default.handlebars->29->2117"
22903 ]
22904 },
22905 {
@@ -22895,7 +22919,7 @@
22919 "zh-chs": "MeshAgent更新",
22920 "zh-cht": "MeshAgent更新",
22921 "xloc": [
22898 - "default.handlebars->29->2114"
22922 + "default.handlebars->29->2118"
22923 ]
22924 },
22925 {
@@ -23016,7 +23040,7 @@
23040 "zh-chs": "MeshCentral服务器同级化",
23041 "zh-cht": "MeshCentral伺服器同級化",
23042 "xloc": [
23019 - "default.handlebars->29->2112"
23043 + "default.handlebars->29->2116"
23044 ]
23045 },
23046 {
@@ -23338,7 +23362,7 @@
23362 "zh-chs": "消息调度器",
23363 "zh-cht": "電郵調度器",
23364 "xloc": [
23341 - "default.handlebars->29->2110"
23365 + "default.handlebars->29->2114"
23366 ]
23367 },
23368 {
@@ -23521,7 +23545,7 @@
23545 "zh-chs": "更多",
23546 "zh-cht": "更多",
23547 "xloc": [
23524 - "default.handlebars->29->2138"
23548 + "default.handlebars->29->2142"
23549 ]
23550 },
23551 {
@@ -23602,7 +23626,7 @@
23626 "zh-chs": "移动:“{0}”到“{1}”",
23627 "zh-cht": "移動:“{0}”到“{1}”",
23628 "xloc": [
23605 - "default.handlebars->29->1639"
23629 + "default.handlebars->29->1643"
23630 ]
23631 },
23632 {
@@ -23622,7 +23646,7 @@
23646 "zh-chs": "将设备{0}移动到组{1}",
23647 "zh-cht": "將設備{0}移動到組{1}",
23648 "xloc": [
23625 - "default.handlebars->29->1672"
23649 + "default.handlebars->29->1676"
23650 ]
23651 },
23652 {
@@ -23662,7 +23686,7 @@
23686 "zh-chs": "多路复用器",
23687 "zh-cht": "多工器",
23688 "xloc": [
23665 - "default.handlebars->29->2050"
23689 + "default.handlebars->29->2054"
23690 ]
23691 },
23692 {
@@ -24015,13 +24039,13 @@
24039 "default-mobile.handlebars->9->97",
24040 "default.handlebars->29->1288",
24041 "default.handlebars->29->1328",
24018 - "default.handlebars->29->1411",
24019 - "default.handlebars->29->1715",
24020 - "default.handlebars->29->1820",
24021 - "default.handlebars->29->1836",
24022 - "default.handlebars->29->1843",
24023 - "default.handlebars->29->1888",
24024 - "default.handlebars->29->1907",
24042 + "default.handlebars->29->1415",
24043 + "default.handlebars->29->1719",
24044 + "default.handlebars->29->1824",
24045 + "default.handlebars->29->1840",
24046 + "default.handlebars->29->1847",
24047 + "default.handlebars->29->1892",
24048 + "default.handlebars->29->1911",
24049 "default.handlebars->29->546",
24050 "default.handlebars->29->76",
24051 "default.handlebars->29->853",
@@ -24070,7 +24094,7 @@
24094 "zh-chs": "名称1,名称2,名称3",
24095 "zh-cht": "名稱1,名稱2,名稱3",
24096 "xloc": [
24073 - "default.handlebars->29->1802"
24097 + "default.handlebars->29->1806"
24098 ]
24099 },
24100 {
@@ -24230,7 +24254,7 @@
24254 "zh-chs": "生成新的2FA备份代码",
24255 "zh-cht": "生成新的2FA備份代碼",
24256 "xloc": [
24233 - "default.handlebars->29->1679"
24257 + "default.handlebars->29->1683"
24258 ]
24259 },
24260 {
@@ -24295,7 +24319,7 @@
24319 "xloc": [
24320 "default-mobile.handlebars->9->120",
24321 "default-mobile.handlebars->9->309",
24298 - "default.handlebars->29->1571",
24322 + "default.handlebars->29->1575",
24323 "default.handlebars->29->901",
24324 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
24325 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -24481,7 +24505,7 @@
24505 "zh-chs": "没有桌面",
24506 "zh-cht": "沒有桌面",
24507 "xloc": [
24484 - "default.handlebars->29->1490",
24508 + "default.handlebars->29->1494",
24509 "default.handlebars->29->679",
24510 "default.handlebars->29->700"
24511 ]
@@ -24503,7 +24527,7 @@
24527 "zh-chs": "不能访问桌面",
24528 "zh-cht": "不能訪問桌面",
24529 "xloc": [
24506 - "default.handlebars->29->1451"
24530 + "default.handlebars->29->1455"
24531 ]
24532 },
24533 {
@@ -24523,8 +24547,8 @@
24547 "zh-chs": "找不到事件",
24548 "zh-cht": "找不到事件",
24549 "xloc": [
24526 - "default.handlebars->29->1691",
24527 - "default.handlebars->29->2024",
24550 + "default.handlebars->29->1695",
24551 + "default.handlebars->29->2028",
24552 "default.handlebars->29->936"
24553 ]
24554 },
@@ -24546,7 +24570,7 @@
24570 "zh-cht": "不能存取檔案",
24571 "xloc": [
24572 "default-mobile.handlebars->9->430",
24549 - "default.handlebars->29->1453"
24573 + "default.handlebars->29->1457"
24574 ]
24575 },
24576 {
@@ -24567,7 +24591,7 @@
24591 "zh-cht": "沒有檔案",
24592 "xloc": [
24593 "default-mobile.handlebars->9->453",
24570 - "default.handlebars->29->1492",
24594 + "default.handlebars->29->1496",
24595 "default.handlebars->29->676",
24596 "default.handlebars->29->697"
24597 ]
@@ -24612,8 +24636,8 @@
24636 "xloc": [
24637 "default-mobile.handlebars->9->431",
24638 "default-mobile.handlebars->9->454",
24615 - "default.handlebars->29->1454",
24616 - "default.handlebars->29->1493"
24639 + "default.handlebars->29->1458",
24640 + "default.handlebars->29->1497"
24641 ]
24642 },
24643 {
@@ -24693,7 +24717,7 @@
24717 "zh-chs": "没有成员",
24718 "zh-cht": "沒有成員",
24719 "xloc": [
24696 - "default.handlebars->29->1870"
24720 + "default.handlebars->29->1874"
24721 ]
24722 },
24723 {
@@ -24713,7 +24737,7 @@
24737 "zh-chs": "没有新的设备组",
24738 "zh-cht": "沒有新的裝置群",
24739 "xloc": [
24716 - "default.handlebars->29->1815"
24740 + "default.handlebars->29->1819"
24741 ]
24742 },
24743 {
@@ -24758,7 +24782,7 @@
24782 "default-mobile.handlebars->9->414",
24783 "default-mobile.handlebars->9->461",
24784 "default.handlebars->29->1302",
24761 - "default.handlebars->29->1500",
24785 + "default.handlebars->29->1504",
24786 "default.handlebars->29->690",
24787 "default.handlebars->29->711"
24788 ]
@@ -24803,7 +24827,7 @@
24827 "zh-cht": "沒有終端",
24828 "xloc": [
24829 "default-mobile.handlebars->9->452",
24806 - "default.handlebars->29->1491",
24830 + "default.handlebars->29->1495",
24831 "default.handlebars->29->675",
24832 "default.handlebars->29->696"
24833 ]
@@ -24826,7 +24850,7 @@
24850 "zh-cht": "不能訪問終端",
24851 "xloc": [
24852 "default-mobile.handlebars->9->429",
24829 - "default.handlebars->29->1452"
24853 + "default.handlebars->29->1456"
24854 ]
24855 },
24856 {
@@ -24846,7 +24870,7 @@
24870 "zh-chs": "没有工具(MeshCmd /路由器)",
24871 "zh-cht": "沒有工具(MeshCmd /路由器)",
24872 "xloc": [
24849 - "default.handlebars->29->1816"
24873 + "default.handlebars->29->1820"
24874 ]
24875 },
24876 {
@@ -24875,8 +24899,8 @@
24899 "zh-chs": "没有共同的设备组",
24900 "zh-cht": "沒有共同的裝置群",
24901 "xloc": [
24878 - "default.handlebars->29->1876",
24879 - "default.handlebars->29->1994"
24902 + "default.handlebars->29->1880",
24903 + "default.handlebars->29->1998"
24904 ]
24905 },
24906 {
@@ -24996,8 +25020,8 @@
25020 "zh-chs": "没有共同的设备",
25021 "zh-cht": "沒有共同的裝置",
25022 "xloc": [
24999 - "default.handlebars->29->1882",
25000 - "default.handlebars->29->2006"
25023 + "default.handlebars->29->1886",
25024 + "default.handlebars->29->2010"
25025 ]
25026 },
25027 {
@@ -25017,7 +25041,7 @@
25041 "zh-chs": "该设备组中没有设备。",
25042 "zh-cht": "該裝置群中沒有裝置。",
25043 "xloc": [
25020 - "default.handlebars->29->1543"
25044 + "default.handlebars->29->1547"
25045 ]
25046 },
25047 {
@@ -25108,7 +25132,7 @@
25132 "zh-chs": "找不到群组。",
25133 "zh-cht": "找不到群組。",
25134 "xloc": [
25111 - "default.handlebars->29->1819"
25135 + "default.handlebars->29->1823"
25136 ]
25137 },
25138 {
@@ -25229,7 +25253,7 @@
25253 "zh-chs": "没有录音。",
25254 "zh-cht": "沒有錄音。",
25255 "xloc": [
25232 - "default.handlebars->29->2026"
25256 + "default.handlebars->29->2030"
25257 ]
25258 },
25259 {
@@ -25249,7 +25273,7 @@
25273 "zh-chs": "没有服务器权限",
25274 "zh-cht": "沒有伺服器權限",
25275 "xloc": [
25252 - "default.handlebars->29->1902"
25276 + "default.handlebars->29->1906"
25277 ]
25278 },
25279 {
@@ -25269,7 +25293,7 @@
25293 "zh-chs": "没有用户组成员身份",
25294 "zh-cht": "沒有用戶群成員身份",
25295 "xloc": [
25272 - "default.handlebars->29->2000"
25296 + "default.handlebars->29->2004"
25297 ]
25298 },
25299 {
@@ -25289,7 +25313,7 @@
25313 "zh-chs": "未找到相应的用户。",
25314 "zh-cht": "未找到相應的用戶。",
25315 "xloc": [
25292 - "default.handlebars->29->1723"
25316 + "default.handlebars->29->1727"
25317 ]
25318 },
25319 {
@@ -25385,19 +25409,19 @@
25409 "default.handlebars->29->1350",
25410 "default.handlebars->29->1355",
25411 "default.handlebars->29->1357",
25388 - "default.handlebars->29->1534",
25389 - "default.handlebars->29->1553",
25390 - "default.handlebars->29->1558",
25391 - "default.handlebars->29->1699",
25412 + "default.handlebars->29->1538",
25413 + "default.handlebars->29->1557",
25414 + "default.handlebars->29->1562",
25415 + "default.handlebars->29->1703",
25416 "default.handlebars->29->177",
25393 - "default.handlebars->29->1840",
25394 - "default.handlebars->29->1842",
25395 - "default.handlebars->29->1859",
25396 - "default.handlebars->29->1921",
25417 + "default.handlebars->29->1844",
25418 + "default.handlebars->29->1846",
25419 + "default.handlebars->29->1863",
25420 + "default.handlebars->29->1925",
25421 "default.handlebars->29->193",
25398 - "default.handlebars->29->1930",
25422 "default.handlebars->29->1934",
25400 - "default.handlebars->29->1946",
25423 + "default.handlebars->29->1938",
25424 + "default.handlebars->29->1950",
25425 "default.handlebars->29->209",
25426 "default.handlebars->29->210",
25427 "default.handlebars->29->543",
@@ -25558,8 +25582,8 @@
25582 "zh-chs": "未连接",
25583 "zh-cht": "未連接",
25584 "xloc": [
25561 - "default.handlebars->29->1530",
25562 - "default.handlebars->29->1538"
25585 + "default.handlebars->29->1534",
25586 + "default.handlebars->29->1542"
25587 ]
25588 },
25589 {
@@ -25600,7 +25624,7 @@
25624 "zh-chs": "不在服务器上",
25625 "zh-cht": "不在伺服器上",
25626 "xloc": [
25603 - "default.handlebars->29->2042"
25627 + "default.handlebars->29->2046"
25628 ]
25629 },
25630 {
@@ -25620,8 +25644,8 @@
25644 "zh-chs": "没有设置",
25645 "zh-cht": "沒有設置",
25646 "xloc": [
25623 - "default.handlebars->29->1908",
25624 - "default.handlebars->29->1909"
25647 + "default.handlebars->29->1912",
25648 + "default.handlebars->29->1913"
25649 ]
25650 },
25651 {
@@ -25641,7 +25665,7 @@
25665 "zh-chs": "未经审核的",
25666 "zh-cht": "未經審核的",
25667 "xloc": [
25644 - "default.handlebars->29->1976"
25668 + "default.handlebars->29->1980"
25669 ]
25670 },
25671 {
@@ -25662,7 +25686,7 @@
25686 "zh-cht": "筆記",
25687 "xloc": [
25688 "default.handlebars->29->1366",
25665 - "default.handlebars->29->1954",
25689 + "default.handlebars->29->1958",
25690 "default.handlebars->29->619",
25691 "default.handlebars->29->684",
25692 "default.handlebars->29->705",
@@ -25707,7 +25731,7 @@
25731 "zh-cht": "通知設定",
25732 "xloc": [
25733 "default.handlebars->29->1263",
25710 - "default.handlebars->29->1529",
25734 + "default.handlebars->29->1533",
25735 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
25736 ]
25737 },
@@ -25728,7 +25752,7 @@
25752 "zh-chs": "通知设置还必须在帐户设置中启用。",
25753 "zh-cht": "通知設定還必須在帳戶設定中啟用。",
25754 "xloc": [
25731 - "default.handlebars->29->1525"
25755 + "default.handlebars->29->1529"
25756 ]
25757 },
25758 {
@@ -25789,7 +25813,7 @@
25813 "zh-cht": "通知",
25814 "xloc": [
25815 "default.handlebars->29->190",
25792 - "default.handlebars->29->1960"
25816 + "default.handlebars->29->1964"
25817 ]
25818 },
25819 {
@@ -25829,9 +25853,9 @@
25853 "zh-chs": "通知使用者",
25854 "zh-cht": "通知使用者",
25855 "xloc": [
25832 - "default.handlebars->29->1419",
25856 "default.handlebars->29->1423",
25834 - "default.handlebars->29->1426"
25857 + "default.handlebars->29->1427",
25858 + "default.handlebars->29->1430"
25859 ]
25860 },
25861 {
@@ -25851,7 +25875,7 @@
25875 "zh-chs": "通知{0}",
25876 "zh-cht": "通知{0}",
25877 "xloc": [
25854 - "default.handlebars->29->1762"
25878 + "default.handlebars->29->1766"
25879 ]
25880 },
25881 {
@@ -25943,7 +25967,7 @@
25967 "zh-chs": "发生在{0}",
25968 "zh-cht": "發生在{0}",
25969 "xloc": [
25946 - "default.handlebars->29->2056"
25970 + "default.handlebars->29->2060"
25971 ]
25972 },
25973 {
@@ -25971,7 +25995,7 @@
25995 "zh-chs": "离线用户",
25996 "zh-cht": "離線用戶",
25997 "xloc": [
25974 - "default.handlebars->29->1720"
25998 + "default.handlebars->29->1724"
25999 ]
26000 },
26001 {
@@ -26020,7 +26044,7 @@
26044 "zh-chs": "一天",
26045 "zh-cht": "一天",
26046 "xloc": [
26023 - "default.handlebars->29->1696"
26047 + "default.handlebars->29->1700"
26048 ]
26049 },
26050 {
@@ -26083,7 +26107,7 @@
26107 "zh-chs": "在线用户",
26108 "zh-cht": "在線用戶",
26109 "xloc": [
26086 - "default.handlebars->29->1719"
26110 + "default.handlebars->29->1723"
26111 ]
26112 },
26113 {
@@ -26267,7 +26291,7 @@
26291 "zh-chs": "开头:{0}",
26292 "zh-cht": "開場:{0}",
26293 "xloc": [
26270 - "default.handlebars->29->1607"
26294 + "default.handlebars->29->1611"
26295 ]
26296 },
26297 {
@@ -26313,8 +26337,8 @@
26337 "zh-cht": "操作",
26338 "xloc": [
26339 "default-mobile.handlebars->9->275",
26316 - "default.handlebars->29->1746",
26317 - "default.handlebars->29->1827",
26340 + "default.handlebars->29->1750",
26341 + "default.handlebars->29->1831",
26342 "default.handlebars->29->448",
26343 "default.handlebars->29->463",
26344 "default.handlebars->29->754"
@@ -26523,7 +26547,7 @@
26547 "zh-chs": "部分的",
26548 "zh-cht": "部分的",
26549 "xloc": [
26526 - "default.handlebars->29->1734"
26550 + "default.handlebars->29->1738"
26551 ]
26552 },
26553 {
@@ -26599,7 +26623,7 @@
26623 "zh-chs": "部分权限",
26624 "zh-cht": "部分權限",
26625 "xloc": [
26602 - "default.handlebars->29->1905"
26626 + "default.handlebars->29->1909"
26627 ]
26628 },
26629 {
@@ -26641,12 +26665,12 @@
26665 "xloc": [
26666 "default-mobile.handlebars->9->281",
26667 "default.handlebars->29->1390",
26644 - "default.handlebars->29->1790",
26645 - "default.handlebars->29->1791",
26646 - "default.handlebars->29->1926",
26647 - "default.handlebars->29->1928",
26648 - "default.handlebars->29->1979",
26649 - "default.handlebars->29->1980",
26668 + "default.handlebars->29->1794",
26669 + "default.handlebars->29->1795",
26670 + "default.handlebars->29->1930",
26671 + "default.handlebars->29->1932",
26672 + "default.handlebars->29->1983",
26673 + "default.handlebars->29->1984",
26674 "default.handlebars->29->293",
26675 "default.handlebars->29->769",
26676 "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1",
@@ -26789,7 +26813,7 @@
26813 "zh-chs": "密码提示",
26814 "zh-cht": "密碼提示",
26815 "xloc": [
26792 - "default.handlebars->29->1981"
26816 + "default.handlebars->29->1985"
26817 ]
26818 },
26819 {
@@ -26928,7 +26952,7 @@
26952 "default-mobile.handlebars->9->322",
26953 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
26954 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
26931 - "default.handlebars->29->1580",
26955 + "default.handlebars->29->1584",
26956 "default.handlebars->29->883",
26957 "default.handlebars->29->915",
26958 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
@@ -27187,7 +27211,7 @@
27211 "zh-chs": "执行电源操作= {0},强制执行= {1}",
27212 "zh-cht": "執行電源操作= {0},強制執行= {1}",
27213 "xloc": [
27190 - "default.handlebars->29->1612"
27214 + "default.handlebars->29->1616"
27215 ]
27216 },
27217 {
@@ -27208,8 +27232,8 @@
27232 "zh-cht": "權限",
27233 "xloc": [
27234 "default-mobile.handlebars->9->464",
27211 - "default.handlebars->29->1503",
27212 - "default.handlebars->29->1718"
27235 + "default.handlebars->29->1507",
27236 + "default.handlebars->29->1722"
27237 ]
27238 },
27239 {
@@ -27255,7 +27279,7 @@
27279 "default.handlebars->29->1032",
27280 "default.handlebars->29->1035",
27281 "default.handlebars->29->159",
27258 - "default.handlebars->29->1971"
27282 + "default.handlebars->29->1975"
27283 ]
27284 },
27285 {
@@ -27275,7 +27299,7 @@
27299 "zh-chs": "电话号码",
27300 "zh-cht": "電話號碼",
27301 "xloc": [
27278 - "default.handlebars->29->1920"
27302 + "default.handlebars->29->1924"
27303 ]
27304 },
27305 {
@@ -27297,7 +27321,7 @@
27321 "xloc": [
27322 "default-mobile.handlebars->9->66",
27323 "default.handlebars->29->1034",
27300 - "default.handlebars->29->1970"
27324 + "default.handlebars->29->1974"
27325 ]
27326 },
27327 {
@@ -27457,7 +27481,7 @@
27481 "zh-cht": "外掛指令",
27482 "xloc": [
27483 "default.handlebars->29->200",
27460 - "default.handlebars->29->2135"
27484 + "default.handlebars->29->2139"
27485 ]
27486 },
27487 {
@@ -27742,7 +27766,7 @@
27766 "zh-chs": "电源状态",
27767 "zh-cht": "電源狀態",
27768 "xloc": [
27745 - "default.handlebars->29->1536",
27769 + "default.handlebars->29->1540",
27770 "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
27771 ]
27772 },
@@ -27860,7 +27884,7 @@
27884 "zh-chs": "存在于服务器上",
27885 "zh-cht": "存在於伺服器上",
27886 "xloc": [
27863 - "default.handlebars->29->2041"
27887 + "default.handlebars->29->2045"
27888 ]
27889 },
27890 {
@@ -28004,7 +28028,7 @@
28028 "zh-chs": "处理控制台命令:“{0}”",
28029 "zh-cht": "處理控制台命令:“{0}”",
28030 "xloc": [
28007 - "default.handlebars->29->1604"
28031 + "default.handlebars->29->1608"
28032 ]
28033 },
28034 {
@@ -28064,9 +28088,9 @@
28088 "zh-chs": "用户同意提示",
28089 "zh-cht": "用戶同意提示",
28090 "xloc": [
28067 - "default.handlebars->29->1420",
28091 "default.handlebars->29->1424",
28069 - "default.handlebars->29->1427"
28092 + "default.handlebars->29->1428",
28093 + "default.handlebars->29->1431"
28094 ]
28095 },
28096 {
@@ -28086,7 +28110,7 @@
28110 "zh-chs": "协议",
28111 "zh-cht": "協議",
28112 "xloc": [
28089 - "default.handlebars->29->2039",
28113 + "default.handlebars->29->2043",
28114 "player.handlebars->3->16"
28115 ]
28116 },
@@ -28146,7 +28170,7 @@
28170 "zh-cht": "公開鏈結",
28171 "xloc": [
28172 "default-mobile.handlebars->9->115",
28149 - "default.handlebars->29->1565"
28173 + "default.handlebars->29->1569"
28174 ]
28175 },
28176 {
@@ -28453,7 +28477,7 @@
28477 "zh-chs": "RSS",
28478 "zh-cht": "RSS",
28479 "xloc": [
28456 - "default.handlebars->29->2105"
28480 + "default.handlebars->29->2109"
28481 ]
28482 },
28483 {
@@ -28481,7 +28505,7 @@
28505 "zh-chs": "随机密码。",
28506 "zh-cht": "隨機密碼。",
28507 "xloc": [
28484 - "default.handlebars->29->1792"
28508 + "default.handlebars->29->1796"
28509 ]
28510 },
28511 {
@@ -28538,9 +28562,9 @@
28562 "zh-chs": "真正的名字",
28563 "zh-cht": "真正的名字",
28564 "xloc": [
28541 - "default.handlebars->29->1917",
28542 - "default.handlebars->29->1919",
28543 - "default.handlebars->29->1972"
28565 + "default.handlebars->29->1921",
28566 + "default.handlebars->29->1923",
28567 + "default.handlebars->29->1976"
28568 ]
28569 },
28570 {
@@ -28560,7 +28584,7 @@
28584 "zh-chs": "境界",
28585 "zh-cht": "境界",
28586 "xloc": [
28563 - "default.handlebars->29->1801"
28587 + "default.handlebars->29->1805"
28588 ]
28589 },
28590 {
@@ -28617,7 +28641,7 @@
28641 "fr": "Enregistrer les sessions",
28642 "nl": "Sessies opnemen",
28643 "xloc": [
28620 - "default.handlebars->29->1430"
28644 + "default.handlebars->29->1434"
28645 ]
28646 },
28647 {
@@ -28637,7 +28661,7 @@
28661 "zh-chs": "记录细节",
28662 "zh-cht": "記錄細節",
28663 "xloc": [
28640 - "default.handlebars->29->2053"
28664 + "default.handlebars->29->2057"
28665 ]
28666 },
28667 {
@@ -28679,7 +28703,7 @@
28703 "xloc": [
28704 "default-mobile.handlebars->9->121",
28705 "default-mobile.handlebars->9->310",
28682 - "default.handlebars->29->1572",
28706 + "default.handlebars->29->1576",
28707 "default.handlebars->29->902"
28708 ]
28709 },
@@ -28799,7 +28823,7 @@
28823 "zh-chs": "中继数量",
28824 "zh-cht": "中繼數量",
28825 "xloc": [
28802 - "default.handlebars->29->2084"
28826 + "default.handlebars->29->2088"
28827 ]
28828 },
28829 {
@@ -28819,7 +28843,7 @@
28843 "zh-chs": "中继错误",
28844 "zh-cht": "中繼錯誤",
28845 "xloc": [
28822 - "default.handlebars->29->2077"
28846 + "default.handlebars->29->2081"
28847 ]
28848 },
28849 {
@@ -28839,8 +28863,8 @@
28863 "zh-chs": "中继连接",
28864 "zh-cht": "中繼連接",
28865 "xloc": [
28842 - "default.handlebars->29->2083",
28843 - "default.handlebars->29->2099"
28866 + "default.handlebars->29->2087",
28867 + "default.handlebars->29->2103"
28868 ]
28869 },
28870 {
@@ -28986,7 +29010,7 @@
29010 "nl": "Externe opdrachten",
29011 "xloc": [
29012 "default-mobile.handlebars->9->439",
28989 - "default.handlebars->29->1462"
29013 + "default.handlebars->29->1466"
29014 ]
29015 },
29016 {
@@ -29008,8 +29032,8 @@
29032 "xloc": [
29033 "default-mobile.handlebars->9->426",
29034 "default-mobile.handlebars->9->446",
29011 - "default.handlebars->29->1448",
29012 - "default.handlebars->29->1484"
29035 + "default.handlebars->29->1452",
29036 + "default.handlebars->29->1488"
29037 ]
29038 },
29039 {
@@ -29052,8 +29076,8 @@
29076 "zh-chs": "远程桌面连接栏已激活/更新",
29077 "zh-cht": "遠程桌面連接欄已激活/更新",
29078 "xloc": [
29055 - "default.handlebars->29->1618",
29056 - "default.handlebars->29->1624"
29079 + "default.handlebars->29->1622",
29080 + "default.handlebars->29->1628"
29081 ]
29082 },
29083 {
@@ -29073,7 +29097,7 @@
29097 "zh-chs": "远程桌面连接栏失败或不受支持",
29098 "zh-cht": "遠程桌面連接欄失敗或不受支持",
29099 "xloc": [
29076 - "default.handlebars->29->1619"
29100 + "default.handlebars->29->1623"
29101 ]
29102 },
29103 {
@@ -29093,7 +29117,7 @@
29117 "zh-chs": "远程桌面连接栏失败或不受支持",
29118 "zh-cht": "遠程桌面連接欄失敗或不受支持",
29119 "xloc": [
29096 - "default.handlebars->29->1625"
29120 + "default.handlebars->29->1629"
29121 ]
29122 },
29123 {
@@ -29113,9 +29137,9 @@
29137 "zh-chs": "本地用户强行关闭了远程桌面连接",
29138 "zh-cht": "本地用戶強行關閉了遠程桌面連接",
29139 "xloc": [
29116 - "default.handlebars->29->1616",
29140 "default.handlebars->29->1620",
29118 - "default.handlebars->29->1626"
29141 + "default.handlebars->29->1624",
29142 + "default.handlebars->29->1630"
29143 ]
29144 },
29145 {
@@ -29238,8 +29262,8 @@
29262 "xloc": [
29263 "default-mobile.handlebars->9->427",
29264 "default-mobile.handlebars->9->451",
29241 - "default.handlebars->29->1449",
29242 - "default.handlebars->29->1489"
29265 + "default.handlebars->29->1453",
29266 + "default.handlebars->29->1493"
29267 ]
29268 },
29269 {
@@ -29374,8 +29398,8 @@
29398 "zh-chs": "删除设备组权限",
29399 "zh-cht": "刪除裝置群權限",
29400 "xloc": [
29377 - "default.handlebars->29->1886",
29378 - "default.handlebars->29->2022"
29401 + "default.handlebars->29->1890",
29402 + "default.handlebars->29->2026"
29403 ]
29404 },
29405 {
@@ -29395,8 +29419,8 @@
29419 "zh-chs": "删除设备权限",
29420 "zh-cht": "刪除裝置權限",
29421 "xloc": [
29398 - "default.handlebars->29->1884",
29399 - "default.handlebars->29->2009"
29422 + "default.handlebars->29->1888",
29423 + "default.handlebars->29->2013"
29424 ]
29425 },
29426 {
@@ -29404,7 +29428,7 @@
29428 "fr": "Arrêt du partage de l'appareil",
29429 "nl": "Verwijder apparaat deling",
29430 "xloc": [
29407 - "default.handlebars->29->2007"
29431 + "default.handlebars->29->2011"
29432 ]
29433 },
29434 {
@@ -29441,7 +29465,7 @@
29465 "zh-chs": "删除用户组成员身份",
29466 "zh-cht": "刪除用戶群成員身份",
29467 "xloc": [
29444 - "default.handlebars->29->2018"
29468 + "default.handlebars->29->2022"
29469 ]
29470 },
29471 {
@@ -29461,8 +29485,8 @@
29485 "zh-chs": "删除用户组权限",
29486 "zh-cht": "刪除用戶群權限",
29487 "xloc": [
29464 - "default.handlebars->29->1508",
29465 - "default.handlebars->29->2014"
29488 + "default.handlebars->29->1512",
29489 + "default.handlebars->29->2018"
29490 ]
29491 },
29492 {
@@ -29482,7 +29506,7 @@
29506 "zh-chs": "删除用户成员资格",
29507 "zh-cht": "刪除用戶成員資格",
29508 "xloc": [
29485 - "default.handlebars->29->1894"
29509 + "default.handlebars->29->1898"
29510 ]
29511 },
29512 {
@@ -29502,8 +29526,8 @@
29526 "zh-chs": "删除用户权限",
29527 "zh-cht": "刪除用戶權限",
29528 "xloc": [
29505 - "default.handlebars->29->1506",
29506 - "default.handlebars->29->2011"
29529 + "default.handlebars->29->1510",
29530 + "default.handlebars->29->2015"
29531 ]
29532 },
29533 {
@@ -29523,7 +29547,7 @@
29547 "zh-chs": "删除所有两因素认证。",
29548 "zh-cht": "刪除所有二因子鑑別。",
29549 "xloc": [
29526 - "default.handlebars->29->1984"
29550 + "default.handlebars->29->1988"
29551 ]
29552 },
29553 {
@@ -29543,7 +29567,7 @@
29567 "zh-chs": "删除此用户标识的所有先前事件。",
29568 "zh-cht": "刪除此用戶標識的所有先前事件。",
29569 "xloc": [
29546 - "default.handlebars->29->1793"
29570 + "default.handlebars->29->1797"
29571 ]
29572 },
29573 {
@@ -29563,7 +29587,7 @@
29587 "zh-chs": "断开连接后移除设备",
29588 "zh-cht": "斷開連接後删除裝置",
29589 "xloc": [
29566 - "default.handlebars->29->1428"
29590 + "default.handlebars->29->1432"
29591 ]
29592 },
29593 {
@@ -29672,7 +29696,7 @@
29696 "zh-chs": "删除此用户",
29697 "zh-cht": "刪除此用戶",
29698 "xloc": [
29675 - "default.handlebars->29->1962"
29699 + "default.handlebars->29->1966"
29700 ]
29701 },
29702 {
@@ -29692,7 +29716,7 @@
29716 "zh-chs": "删除用户组成员身份",
29717 "zh-cht": "刪除用戶群成員身份",
29718 "xloc": [
29695 - "default.handlebars->29->1998"
29719 + "default.handlebars->29->2002"
29720 ]
29721 },
29722 {
@@ -29712,7 +29736,7 @@
29736 "zh-chs": "删除此设备的用户组权限",
29737 "zh-cht": "刪除此裝置的用戶群權限",
29738 "xloc": [
29715 - "default.handlebars->29->1880"
29739 + "default.handlebars->29->1884"
29740 ]
29741 },
29742 {
@@ -29732,7 +29756,7 @@
29756 "zh-chs": "删除此设备组的用户组权限",
29757 "zh-cht": "刪除此裝置群的用戶群權限",
29758 "xloc": [
29735 - "default.handlebars->29->1874",
29759 + "default.handlebars->29->1878",
29760 "default.handlebars->29->665"
29761 ]
29762 },
@@ -29754,9 +29778,9 @@
29778 "zh-cht": "刪除此裝置群的用戶權限",
29779 "xloc": [
29780 "default.handlebars->29->1379",
29757 - "default.handlebars->29->1868",
29758 - "default.handlebars->29->1992",
29759 - "default.handlebars->29->2004",
29781 + "default.handlebars->29->1872",
29782 + "default.handlebars->29->1996",
29783 + "default.handlebars->29->2008",
29784 "default.handlebars->29->666"
29785 ]
29786 },
@@ -29777,7 +29801,7 @@
29801 "zh-chs": "删除身份验证应用程序",
29802 "zh-cht": "刪除身份驗證應用程序",
29803 "xloc": [
29780 - "default.handlebars->29->1678"
29804 + "default.handlebars->29->1682"
29805 ]
29806 },
29807 {
@@ -29785,7 +29809,7 @@
29809 "fr": "Arrêt du partage {0}",
29810 "nl": "Apparaatdeling {0} verwijderd",
29811 "xloc": [
29788 - "default.handlebars->29->1689"
29812 + "default.handlebars->29->1693"
29813 ]
29814 },
29815 {
@@ -29805,7 +29829,7 @@
29829 "zh-chs": "从设备组{1}中删除了设备{0}",
29830 "zh-cht": "從設備組{1}中刪除了設備{0}",
29831 "xloc": [
29808 - "default.handlebars->29->1674"
29832 + "default.handlebars->29->1678"
29833 ]
29834 },
29835 {
@@ -29825,7 +29849,7 @@
29849 "zh-chs": "已删除用户{0}的电话号码",
29850 "zh-cht": "已刪除用戶{0}的電話號碼",
29851 "xloc": [
29828 - "default.handlebars->29->1684"
29852 + "default.handlebars->29->1688"
29853 ]
29854 },
29855 {
@@ -29845,7 +29869,7 @@
29869 "zh-chs": "移除安全密钥",
29870 "zh-cht": "移除安全密鑰",
29871 "xloc": [
29848 - "default.handlebars->29->1681"
29872 + "default.handlebars->29->1685"
29873 ]
29874 },
29875 {
@@ -29865,9 +29889,9 @@
29889 "zh-chs": "删除了{0}的用户设备权限",
29890 "zh-cht": "刪除了{0}的用戶設備權限",
29891 "xloc": [
29868 - "default.handlebars->29->1647",
29869 - "default.handlebars->29->1668",
29870 - "default.handlebars->29->1673"
29892 + "default.handlebars->29->1651",
29893 + "default.handlebars->29->1672",
29894 + "default.handlebars->29->1677"
29895 ]
29896 },
29897 {
@@ -29887,7 +29911,7 @@
29911 "zh-chs": "从设备组{1}中删除了用户组{0}",
29912 "zh-cht": "從設備組{1}中刪除了用戶組{0}",
29913 "xloc": [
29890 - "default.handlebars->29->1657"
29914 + "default.handlebars->29->1661"
29915 ]
29916 },
29917 {
@@ -29907,7 +29931,7 @@
29931 "zh-chs": "从设备组{1}中删除了用户{0}",
29932 "zh-cht": "已從設備組{1}中刪除用戶{0}",
29933 "xloc": [
29910 - "default.handlebars->29->1670"
29934 + "default.handlebars->29->1674"
29935 ]
29936 },
29937 {
@@ -29927,8 +29951,8 @@
29951 "zh-chs": "从用户组{1}中删除了用户{0}",
29952 "zh-cht": "從用戶組{1}中刪除了用戶{0}",
29953 "xloc": [
29930 - "default.handlebars->29->1649",
29931 - "default.handlebars->29->1659"
29954 + "default.handlebars->29->1653",
29955 + "default.handlebars->29->1663"
29956 ]
29957 },
29958 {
@@ -29952,7 +29976,7 @@
29976 "default-mobile.handlebars->9->314",
29977 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
29978 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
29955 - "default.handlebars->29->1576",
29979 + "default.handlebars->29->1580",
29980 "default.handlebars->29->512",
29981 "default.handlebars->29->906",
29982 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -29977,7 +30001,7 @@
30001 "zh-chs": "重命名:“{0}”为“{1}”",
30002 "zh-cht": "重命名:“{0}”為“{1}”",
30003 "xloc": [
29980 - "default.handlebars->29->1635"
30004 + "default.handlebars->29->1639"
30005 ]
30006 },
30007 {
@@ -29997,7 +30021,7 @@
30021 "zh-chs": "报告日",
30022 "zh-cht": "報告日",
30023 "xloc": [
30000 - "default.handlebars->29->1697"
30024 + "default.handlebars->29->1701"
30025 ]
30026 },
30027 {
@@ -30017,7 +30041,7 @@
30041 "zh-chs": "报告类型",
30042 "zh-cht": "報告類型",
30043 "xloc": [
30020 - "default.handlebars->29->1692"
30044 + "default.handlebars->29->1696"
30045 ]
30046 },
30047 {
@@ -30058,8 +30082,8 @@
30082 "zh-cht": "要求:{0}。",
30083 "xloc": [
30084 "default-mobile.handlebars->9->89",
30061 - "default.handlebars->29->1798",
30062 - "default.handlebars->29->1982"
30085 + "default.handlebars->29->1802",
30086 + "default.handlebars->29->1986"
30087 ]
30088 },
30089 {
@@ -30129,7 +30153,7 @@
30153 "nl": "Reset / uitschakelen",
30154 "xloc": [
30155 "default-mobile.handlebars->9->440",
30132 - "default.handlebars->29->1463"
30156 + "default.handlebars->29->1467"
30157 ]
30158 },
30159 {
@@ -30244,7 +30268,7 @@
30268 "nl": "Reset/Uit",
30269 "xloc": [
30270 "default-mobile.handlebars->9->460",
30247 - "default.handlebars->29->1499",
30271 + "default.handlebars->29->1503",
30272 "default.handlebars->29->689",
30273 "default.handlebars->29->710"
30274 ]
@@ -30357,7 +30381,7 @@
30381 "zh-chs": "限制条件",
30382 "zh-cht": "限制條件",
30383 "xloc": [
30360 - "default.handlebars->29->1906"
30384 + "default.handlebars->29->1910"
30385 ]
30386 },
30387 {
@@ -30439,7 +30463,7 @@
30463 "xloc": [
30464 "default-mobile.handlebars->9->107",
30465 "default-mobile.handlebars->9->304",
30442 - "default.handlebars->29->1544",
30466 + "default.handlebars->29->1548",
30467 "default.handlebars->29->891"
30468 ]
30469 },
@@ -30695,7 +30719,7 @@
30719 "zh-chs": "运行命令",
30720 "zh-cht": "運行命令",
30721 "xloc": [
30698 - "default.handlebars->29->1611"
30722 + "default.handlebars->29->1615"
30723 ]
30724 },
30725 {
@@ -30703,7 +30727,7 @@
30727 "fr": "Exécution des commandes en tant qu'utilisateur",
30728 "nl": "Commando's uitvoeren als gebruiker",
30729 "xloc": [
30706 - "default.handlebars->29->1686"
30730 + "default.handlebars->29->1690"
30731 ]
30732 },
30733 {
@@ -30711,7 +30735,7 @@
30735 "fr": "Exécution des commandes en tant qu'utilisateur si possible",
30736 "nl": "Indien mogelijk commando's uitvoeren als gebruiker",
30737 "xloc": [
30714 - "default.handlebars->29->1687"
30738 + "default.handlebars->29->1691"
30739 ]
30740 },
30741 {
@@ -30771,8 +30795,8 @@
30795 "zh-chs": "短信",
30796 "zh-cht": "短信",
30797 "xloc": [
30774 - "default.handlebars->29->1951",
30775 - "default.handlebars->29->1956",
30798 + "default.handlebars->29->1955",
30799 + "default.handlebars->29->1960",
30800 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
30801 "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
30802 "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -30797,7 +30821,7 @@
30821 "zh-chs": "此用户的短信功能电话号码。",
30822 "zh-cht": "此用戶的短信功能電話號碼。",
30823 "xloc": [
30800 - "default.handlebars->29->1968"
30824 + "default.handlebars->29->1972"
30825 ]
30826 },
30827 {
@@ -31348,7 +31372,7 @@
31372 "xloc": [
31373 "default-mobile.handlebars->9->282",
31374 "default-mobile.handlebars->9->373",
31351 - "default.handlebars->29->1952",
31375 + "default.handlebars->29->1956",
31376 "default.handlebars->29->294",
31377 "default.handlebars->29->770",
31378 "default.handlebars->29->983"
@@ -31371,7 +31395,7 @@
31395 "zh-chs": "安全密钥",
31396 "zh-cht": "安全密鑰",
31397 "xloc": [
31374 - "default.handlebars->29->1949"
31398 + "default.handlebars->29->1953"
31399 ]
31400 },
31401 {
@@ -31411,9 +31435,9 @@
31435 "zh-chs": "全选",
31436 "zh-cht": "全選",
31437 "xloc": [
31414 - "default.handlebars->29->1568",
31415 - "default.handlebars->29->1742",
31416 - "default.handlebars->29->1825",
31438 + "default.handlebars->29->1572",
31439 + "default.handlebars->29->1746",
31440 + "default.handlebars->29->1829",
31441 "default.handlebars->29->434",
31442 "default.handlebars->29->898",
31443 "default.handlebars->29->900",
@@ -31442,9 +31466,9 @@
31466 "zh-chs": "选择无",
31467 "zh-cht": "選擇無",
31468 "xloc": [
31445 - "default.handlebars->29->1567",
31446 - "default.handlebars->29->1741",
31447 - "default.handlebars->29->1824",
31469 + "default.handlebars->29->1571",
31470 + "default.handlebars->29->1745",
31471 + "default.handlebars->29->1828",
31472 "default.handlebars->29->433",
31473 "default.handlebars->29->899",
31474 "default.handlebars->meshContextMenu->cxselectnone"
@@ -31547,8 +31571,8 @@
31571 "zh-chs": "选择要对所有选定用户执行的操作。",
31572 "zh-cht": "選擇要對所有選定用戶執行的操作。",
31573 "xloc": [
31550 - "default.handlebars->29->1745",
31551 - "default.handlebars->29->1826"
31574 + "default.handlebars->29->1749",
31575 + "default.handlebars->29->1830"
31576 ]
31577 },
31578 {
@@ -31619,7 +31643,7 @@
31643 "zh-cht": "僅自我事件",
31644 "xloc": [
31645 "default-mobile.handlebars->9->456",
31622 - "default.handlebars->29->1495"
31646 + "default.handlebars->29->1499"
31647 ]
31648 },
31649 {
@@ -31662,7 +31686,7 @@
31686 "zh-chs": "发电邮",
31687 "zh-cht": "發電郵",
31688 "xloc": [
31665 - "default.handlebars->29->1756"
31689 + "default.handlebars->29->1760"
31690 ]
31691 },
31692 {
@@ -31723,7 +31747,7 @@
31747 "zh-chs": "发送短信",
31748 "zh-cht": "發送簡訊",
31749 "xloc": [
31726 - "default.handlebars->29->1754"
31750 + "default.handlebars->29->1758"
31751 ]
31752 },
31753 {
@@ -31743,7 +31767,7 @@
31767 "zh-chs": "发送短信给该用户",
31768 "zh-cht": "發送短信給該用戶",
31769 "xloc": [
31746 - "default.handlebars->29->1957"
31770 + "default.handlebars->29->1961"
31771 ]
31772 },
31773 {
@@ -31763,7 +31787,7 @@
31787 "zh-chs": "发送电邮给该用户",
31788 "zh-cht": "發送電郵給該用戶",
31789 "xloc": [
31766 - "default.handlebars->29->1959"
31790 + "default.handlebars->29->1963"
31791 ]
31792 },
31793 {
@@ -31783,7 +31807,7 @@
31807 "zh-chs": "向该组中的所有用户发送通知。",
31808 "zh-cht": "向該群中的所有用戶發送通知。",
31809 "xloc": [
31786 - "default.handlebars->29->1865"
31810 + "default.handlebars->29->1869"
31811 ]
31812 },
31813 {
@@ -31803,7 +31827,7 @@
31827 "zh-chs": "向该用户发送文本通知。",
31828 "zh-cht": "向該用戶發送文本通知。",
31829 "xloc": [
31806 - "default.handlebars->29->1757"
31830 + "default.handlebars->29->1761"
31831 ]
31832 },
31833 {
@@ -31823,7 +31847,7 @@
31847 "zh-chs": "发送电邮给用户",
31848 "zh-cht": "發送電郵給用戶",
31849 "xloc": [
31826 - "default.handlebars->29->1737"
31850 + "default.handlebars->29->1741"
31851 ]
31852 },
31853 {
@@ -31863,7 +31887,7 @@
31887 "zh-chs": "发送邀请电邮。",
31888 "zh-cht": "發送邀請電郵。",
31889 "xloc": [
31866 - "default.handlebars->29->1797"
31890 + "default.handlebars->29->1801"
31891 ]
31892 },
31893 {
@@ -31985,7 +32009,7 @@
32009 "zh-chs": "发送用户通知",
32010 "zh-cht": "發送用戶通知",
32011 "xloc": [
31988 - "default.handlebars->29->1961"
32012 + "default.handlebars->29->1965"
32013 ]
32014 },
32015 {
@@ -32046,7 +32070,7 @@
32070 "zh-chs": "服务器备份",
32071 "zh-cht": "伺服器備份",
32072 "xloc": [
32049 - "default.handlebars->29->1807"
32073 + "default.handlebars->29->1811"
32074 ]
32075 },
32076 {
@@ -32066,7 +32090,7 @@
32090 "zh-chs": "服务器证书",
32091 "zh-cht": "伺服器憑證",
32092 "xloc": [
32069 - "default.handlebars->29->2115"
32093 + "default.handlebars->29->2119"
32094 ]
32095 },
32096 {
@@ -32086,7 +32110,7 @@
32110 "zh-chs": "服务器数据库",
32111 "zh-cht": "伺服器數據庫",
32112 "xloc": [
32089 - "default.handlebars->29->2116"
32113 + "default.handlebars->29->2120"
32114 ]
32115 },
32116 {
@@ -32108,9 +32132,9 @@
32132 "xloc": [
32133 "default-mobile.handlebars->9->433",
32134 "default-mobile.handlebars->9->448",
32111 - "default.handlebars->29->1456",
32112 - "default.handlebars->29->1486",
32113 - "default.handlebars->29->1804",
32135 + "default.handlebars->29->1460",
32136 + "default.handlebars->29->1490",
32137 + "default.handlebars->29->1808",
32138 "default.handlebars->29->682",
32139 "default.handlebars->29->703"
32140 ]
@@ -32132,8 +32156,8 @@
32156 "zh-chs": "服务器权限",
32157 "zh-cht": "伺服器權限",
32158 "xloc": [
32135 - "default.handlebars->29->1729",
32136 - "default.handlebars->29->1818"
32159 + "default.handlebars->29->1733",
32160 + "default.handlebars->29->1822"
32161 ]
32162 },
32163 {
@@ -32153,7 +32177,7 @@
32177 "zh-chs": "服务器配额",
32178 "zh-cht": "伺服器配額",
32179 "xloc": [
32156 - "default.handlebars->29->1923"
32180 + "default.handlebars->29->1927"
32181 ]
32182 },
32183 {
@@ -32173,7 +32197,7 @@
32197 "zh-chs": "服务器还原",
32198 "zh-cht": "伺服器還原",
32199 "xloc": [
32176 - "default.handlebars->29->1808"
32200 + "default.handlebars->29->1812"
32201 ]
32202 },
32203 {
@@ -32193,7 +32217,7 @@
32217 "zh-chs": "服务器权限",
32218 "zh-cht": "伺服器權限",
32219 "xloc": [
32196 - "default.handlebars->29->1922"
32220 + "default.handlebars->29->1926"
32221 ]
32222 },
32223 {
@@ -32213,7 +32237,7 @@
32237 "zh-chs": "服务器状态",
32238 "zh-cht": "伺服器狀態",
32239 "xloc": [
32216 - "default.handlebars->29->2063"
32240 + "default.handlebars->29->2067"
32241 ]
32242 },
32243 {
@@ -32253,7 +32277,7 @@
32277 "zh-chs": "服务器跟踪",
32278 "zh-cht": "伺服器追蹤",
32279 "xloc": [
32256 - "default.handlebars->29->2126"
32280 + "default.handlebars->29->2130"
32281 ]
32282 },
32283 {
@@ -32282,7 +32306,7 @@
32306 "zh-chs": "服务器更新",
32307 "zh-cht": "伺服器更新",
32308 "xloc": [
32285 - "default.handlebars->29->1809"
32309 + "default.handlebars->29->1813"
32310 ]
32311 },
32312 {
@@ -32434,7 +32458,7 @@
32458 "zh-chs": "ServerStats.csv",
32459 "zh-cht": "ServerStats.csv",
32460 "xloc": [
32437 - "default.handlebars->29->2107"
32461 + "default.handlebars->29->2111"
32462 ]
32463 },
32464 {
@@ -32494,7 +32518,7 @@
32518 "zh-chs": "会话",
32519 "zh-cht": "節",
32520 "xloc": [
32497 - "default.handlebars->29->2027"
32521 + "default.handlebars->29->2031"
32522 ]
32523 },
32524 {
@@ -32619,7 +32643,7 @@
32643 "zh-chs": "设置剪贴板内容,{0}个字节",
32644 "zh-cht": "設置剪貼板內容,{0}個字節",
32645 "xloc": [
32622 - "default.handlebars->29->1609"
32646 + "default.handlebars->29->1613"
32647 ]
32648 },
32649 {
@@ -33035,7 +33059,7 @@
33059 "zh-cht": "只顯示自己的事件",
33060 "xloc": [
33061 "default-mobile.handlebars->9->436",
33038 - "default.handlebars->29->1459"
33062 + "default.handlebars->29->1463"
33063 ]
33064 },
33065 {
@@ -33055,7 +33079,7 @@
33079 "zh-chs": "显示连接工具栏",
33080 "zh-cht": "顯示連接工具欄",
33081 "xloc": [
33058 - "default.handlebars->29->1421"
33082 + "default.handlebars->29->1425"
33083 ]
33084 },
33085 {
@@ -33143,8 +33167,8 @@
33167 "zh-chs": "显示1分钟",
33168 "zh-cht": "顯示1分鐘",
33169 "xloc": [
33146 - "default.handlebars->29->1760",
33147 - "default.handlebars->29->1783"
33170 + "default.handlebars->29->1764",
33171 + "default.handlebars->29->1787"
33172 ]
33173 },
33174 {
@@ -33164,8 +33188,8 @@
33188 "zh-chs": "显示10秒",
33189 "zh-cht": "顯示10秒",
33190 "xloc": [
33167 - "default.handlebars->29->1759",
33168 - "default.handlebars->29->1782"
33191 + "default.handlebars->29->1763",
33192 + "default.handlebars->29->1786"
33193 ]
33194 },
33195 {
@@ -33185,8 +33209,8 @@
33209 "zh-chs": "显示5分钟",
33210 "zh-cht": "顯示5分鐘",
33211 "xloc": [
33188 - "default.handlebars->29->1761",
33189 - "default.handlebars->29->1784"
33212 + "default.handlebars->29->1765",
33213 + "default.handlebars->29->1788"
33214 ]
33215 },
33216 {
@@ -33206,8 +33230,8 @@
33230 "zh-chs": "显示消息,直到被用户拒绝",
33231 "zh-cht": "顯示消息,直到被用戶拒絕",
33232 "xloc": [
33209 - "default.handlebars->29->1758",
33210 - "default.handlebars->29->1781"
33233 + "default.handlebars->29->1762",
33234 + "default.handlebars->29->1785"
33235 ]
33236 },
33237 {
@@ -33505,8 +33529,8 @@
33529 "zh-chs": "尺寸",
33530 "zh-cht": "尺寸",
33531 "xloc": [
33508 - "default.handlebars->29->2030",
33509 - "default.handlebars->29->2045",
33532 + "default.handlebars->29->2034",
33533 + "default.handlebars->29->2049",
33534 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
33535 ]
33536 },
@@ -34498,8 +34522,8 @@
34522 "zh-cht": "開始時間",
34523 "xloc": [
34524 "default.handlebars->29->188",
34501 - "default.handlebars->29->2028",
34502 - "default.handlebars->29->2047",
34525 + "default.handlebars->29->2032",
34526 + "default.handlebars->29->2051",
34527 "default.handlebars->29->836",
34528 "desktop.handlebars->3->14"
34529 ]
@@ -34529,7 +34553,7 @@
34553 "zh-chs": "开始桌面多重会话",
34554 "zh-cht": "啟動桌面多路復用會話",
34555 "xloc": [
34532 - "default.handlebars->29->1593"
34556 + "default.handlebars->29->1597"
34557 ]
34558 },
34559 {
@@ -34549,7 +34573,7 @@
34573 "zh-chs": "从{1}到{2}开始了桌面会话“{0}”",
34574 "zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
34575 "xloc": [
34552 - "default.handlebars->29->1602"
34576 + "default.handlebars->29->1606"
34577 ]
34578 },
34579 {
@@ -34569,7 +34593,7 @@
34593 "zh-chs": "从{1}到{2}开始文件管理会话“{0}”",
34594 "zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
34595 "xloc": [
34572 - "default.handlebars->29->1603"
34596 + "default.handlebars->29->1607"
34597 ]
34598 },
34599 {
@@ -34589,7 +34613,7 @@
34613 "zh-chs": "从{1}到{2}开始中继会话“{0}”",
34614 "zh-cht": "從{1}到{2}開始中繼會話“{0}”",
34615 "xloc": [
34592 - "default.handlebars->29->1600"
34616 + "default.handlebars->29->1604"
34617 ]
34618 },
34619 {
@@ -34609,7 +34633,7 @@
34633 "zh-chs": "使用Toast通知启动远程桌面",
34634 "zh-cht": "使用Toast通知啟動遠程桌面",
34635 "xloc": [
34612 - "default.handlebars->29->1622"
34636 + "default.handlebars->29->1626"
34637 ]
34638 },
34639 {
@@ -34629,7 +34653,7 @@
34653 "zh-chs": "启动远程桌面,而无需通知",
34654 "zh-cht": "啟動遠程桌面,而無需通知",
34655 "xloc": [
34632 - "default.handlebars->29->1623"
34656 + "default.handlebars->29->1627"
34657 ]
34658 },
34659 {
@@ -34649,7 +34673,7 @@
34673 "zh-chs": "启动带有Toast通知的远程文件",
34674 "zh-cht": "啟動帶有Toast通知的遠程文件",
34675 "xloc": [
34652 - "default.handlebars->29->1629"
34676 + "default.handlebars->29->1633"
34677 ]
34678 },
34679 {
@@ -34669,7 +34693,7 @@
34693 "zh-chs": "已启动的远程文件,恕不另行通知",
34694 "zh-cht": "已啟動的遠程文件,恕不另行通知",
34695 "xloc": [
34672 - "default.handlebars->29->1630"
34696 + "default.handlebars->29->1634"
34697 ]
34698 },
34699 {
@@ -34689,7 +34713,7 @@
34713 "zh-chs": "从{1}到{2}开始了终端会话“{0}”",
34714 "zh-cht": "從{1}到{2}開始了終端會話“{0}”",
34715 "xloc": [
34692 - "default.handlebars->29->1601"
34716 + "default.handlebars->29->1605"
34717 ]
34718 },
34719 {
@@ -34717,7 +34741,7 @@
34741 "zh-chs": "接受本地用户后启动远程桌面",
34742 "zh-cht": "接受本地用戶後啟動遠程桌面",
34743 "xloc": [
34720 - "default.handlebars->29->1617"
34744 + "default.handlebars->29->1621"
34745 ]
34746 },
34747 {
@@ -34737,7 +34761,7 @@
34761 "zh-chs": "本地用户接受后启动远程文件",
34762 "zh-cht": "本地用戶接受後啟動遠程文件",
34763 "xloc": [
34740 - "default.handlebars->29->1627"
34764 + "default.handlebars->29->1631"
34765 ]
34766 },
34767 {
@@ -34798,8 +34822,8 @@
34822 "zh-chs": "状况",
34823 "zh-cht": "狀態",
34824 "xloc": [
34801 - "default.handlebars->29->1975",
34802 - "default.handlebars->29->2040",
34825 + "default.handlebars->29->1979",
34826 + "default.handlebars->29->2044",
34827 "default.handlebars->container->column_l->p42->p42tbl->1->0->7"
34828 ]
34829 },
@@ -34927,7 +34951,7 @@
34951 "zh-chs": "超出储存空间",
34952 "zh-cht": "超出儲存空間",
34953 "xloc": [
34930 - "default.handlebars->29->1548"
34954 + "default.handlebars->29->1552"
34955 ]
34956 },
34957 {
@@ -34992,7 +35016,7 @@
35016 "zh-chs": "主题",
35017 "zh-cht": "主題",
35018 "xloc": [
34995 - "default.handlebars->29->1755"
35019 + "default.handlebars->29->1759"
35020 ]
35021 },
35022 {
@@ -35208,7 +35232,7 @@
35232 "zh-chs": "将服务器设备名称同步到主机名称",
35233 "zh-cht": "將伺服器裝置名稱同步到主機名稱",
35234 "xloc": [
35211 - "default.handlebars->29->1429"
35235 + "default.handlebars->29->1433"
35236 ]
35237 },
35238 {
@@ -35557,8 +35581,8 @@
35581 "zh-cht": "終端機",
35582 "xloc": [
35583 "default-mobile.handlebars->9->168",
35560 - "default.handlebars->29->1422",
35561 - "default.handlebars->29->2034",
35584 + "default.handlebars->29->1426",
35585 + "default.handlebars->29->2038",
35586 "default.handlebars->29->256",
35587 "default.handlebars->29->522",
35588 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
@@ -35603,8 +35627,8 @@
35627 "zh-cht": "終端機通知",
35628 "xloc": [
35629 "default.handlebars->29->1345",
35606 - "default.handlebars->29->1854",
35607 - "default.handlebars->29->1941",
35630 + "default.handlebars->29->1858",
35631 + "default.handlebars->29->1945",
35632 "default.handlebars->29->596"
35633 ]
35634 },
@@ -35626,8 +35650,8 @@
35650 "zh-cht": "終端機提示",
35651 "xloc": [
35652 "default.handlebars->29->1344",
35629 - "default.handlebars->29->1853",
35630 - "default.handlebars->29->1940",
35653 + "default.handlebars->29->1857",
35654 + "default.handlebars->29->1944",
35655 "default.handlebars->29->595"
35656 ]
35657 },
@@ -35798,7 +35822,7 @@
35822 "zh-chs": "目前没有任何通知",
35823 "zh-cht": "目前沒有任何通知",
35824 "xloc": [
35801 - "default.handlebars->29->2055"
35825 + "default.handlebars->29->2059"
35826 ]
35827 },
35828 {
@@ -35941,7 +35965,7 @@
35965 "fr": "Cette option est recommandée. L'activation et la gestion d'Intel® AMT sont entièrement automatisées. Le serveur tentera de faire le meilleur usage possible de la gestion du matériel.",
35966 "nl": "Dit is het aanbevolen beleid. Activering en beheer van Intel&reg; AMT is volledig geautomatiseerd en de server zal proberen om optimaal gebruik te maken van hardwarebeheer.",
35967 "xloc": [
35944 - "default.handlebars->29->1407"
35968 + "default.handlebars->29->1411"
35969 ]
35970 },
35971 {
@@ -35982,7 +36006,7 @@
36006 "zh-chs": "此政策不会影响采用ACM模式的英特尔&reg;AMT的设备。",
36007 "zh-cht": "此政策不會影響採用ACM模式的Intel&reg; AMT的裝置。",
36008 "xloc": [
35985 - "default.handlebars->29->1404"
36009 + "default.handlebars->29->1408"
36010 ]
36011 },
36012 {
@@ -36190,7 +36214,7 @@
36214 "zh-chs": "时间跨度",
36215 "zh-cht": "時間跨度",
36216 "xloc": [
36193 - "default.handlebars->29->1694"
36217 + "default.handlebars->29->1698"
36218 ]
36219 },
36220 {
@@ -37365,7 +37389,7 @@
37389 "zh-cht": "卸載",
37390 "xloc": [
37391 "default-mobile.handlebars->9->458",
37368 - "default.handlebars->29->1497",
37392 + "default.handlebars->29->1501",
37393 "default.handlebars->29->687",
37394 "default.handlebars->29->708"
37395 ]
@@ -37409,7 +37433,7 @@
37433 "zh-chs": "卸载代理/删除设备",
37434 "zh-cht": "卸載代理/刪除設備",
37435 "xloc": [
37412 - "default.handlebars->29->1461"
37436 + "default.handlebars->29->1465"
37437 ]
37438 },
37439 {
@@ -37462,9 +37486,9 @@
37486 "default.handlebars->29->13",
37487 "default.handlebars->29->1318",
37488 "default.handlebars->29->1319",
37465 - "default.handlebars->29->2017",
37466 - "default.handlebars->29->2032",
37467 - "default.handlebars->29->2033",
37489 + "default.handlebars->29->2021",
37490 + "default.handlebars->29->2036",
37491 + "default.handlebars->29->2037",
37492 "default.handlebars->29->42",
37493 "default.handlebars->29->432",
37494 "default.handlebars->29->975",
@@ -37509,7 +37533,7 @@
37533 "zh-chs": "未知动作",
37534 "zh-cht": "未知動作",
37535 "xloc": [
37512 - "default.handlebars->29->2069"
37536 + "default.handlebars->29->2073"
37537 ]
37538 },
37539 {
@@ -37529,8 +37553,8 @@
37553 "zh-chs": "未知设备",
37554 "zh-cht": "未知裝置",
37555 "xloc": [
37532 - "default.handlebars->29->1879",
37533 - "default.handlebars->29->2003"
37556 + "default.handlebars->29->1883",
37557 + "default.handlebars->29->2007"
37558 ]
37559 },
37560 {
@@ -37550,9 +37574,9 @@
37574 "zh-chs": "未知设备组",
37575 "zh-cht": "未知裝置群",
37576 "xloc": [
37553 - "default.handlebars->29->1873",
37554 - "default.handlebars->29->1991",
37555 - "default.handlebars->29->2073"
37577 + "default.handlebars->29->1877",
37578 + "default.handlebars->29->1995",
37579 + "default.handlebars->29->2077"
37580 ]
37581 },
37582 {
@@ -37572,7 +37596,7 @@
37596 "zh-chs": "未知群组",
37597 "zh-cht": "未知群組",
37598 "xloc": [
37575 - "default.handlebars->29->2065"
37599 + "default.handlebars->29->2069"
37600 ]
37601 },
37602 {
@@ -37613,7 +37637,7 @@
37637 "zh-chs": "未知用户组",
37638 "zh-cht": "未知用戶群",
37639 "xloc": [
37616 - "default.handlebars->29->1997"
37640 + "default.handlebars->29->2001"
37641 ]
37642 },
37643 {
@@ -37642,7 +37666,7 @@
37666 "fr": "Mot de passe inconnu",
37667 "nl": "Onbekend wachtwoord",
37668 "xloc": [
37645 - "default.handlebars->29->1395"
37669 + "default.handlebars->29->1399"
37670 ]
37671 },
37672 {
@@ -37684,7 +37708,7 @@
37708 "zh-chs": "解锁帐户",
37709 "zh-cht": "解鎖帳戶",
37710 "xloc": [
37687 - "default.handlebars->29->1748"
37711 + "default.handlebars->29->1752"
37712 ]
37713 },
37714 {
@@ -37736,7 +37760,7 @@
37760 "zh-chs": "最新",
37761 "zh-cht": "最新",
37762 "xloc": [
37739 - "default.handlebars->29->2133"
37763 + "default.handlebars->29->2137"
37764 ]
37765 },
37766 {
@@ -37784,8 +37808,8 @@
37808 "default-mobile.handlebars->9->315",
37809 "default-mobile.handlebars->9->333",
37810 "default-mobile.handlebars->9->336",
37787 - "default.handlebars->29->1577",
37788 - "default.handlebars->29->1585",
37811 + "default.handlebars->29->1581",
37812 + "default.handlebars->29->1589",
37813 "default.handlebars->29->907",
37814 "default.handlebars->29->931",
37815 "default.handlebars->29->934",
@@ -37926,7 +37950,7 @@
37950 "zh-cht": "上傳將覆蓋1個檔案。繼續?",
37951 "xloc": [
37952 "default-mobile.handlebars->9->334",
37929 - "default.handlebars->29->1586",
37953 + "default.handlebars->29->1590",
37954 "default.handlebars->29->932"
37955 ]
37956 },
@@ -37948,7 +37972,7 @@
37972 "zh-cht": "上傳將覆蓋{0}個檔案。繼續?",
37973 "xloc": [
37974 "default-mobile.handlebars->9->335",
37951 - "default.handlebars->29->1587",
37975 + "default.handlebars->29->1591",
37976 "default.handlebars->29->933"
37977 ]
37978 },
@@ -37986,7 +38010,7 @@
38010 "zh-chs": "上传:“{0}”",
38011 "zh-cht": "上傳:“{0}”",
38012 "xloc": [
37989 - "default.handlebars->29->1637"
38013 + "default.handlebars->29->1641"
38014 ]
38015 },
38016 {
@@ -38098,8 +38122,8 @@
38122 "zh-chs": "用过的",
38123 "zh-cht": "用過的",
38124 "xloc": [
38101 - "default.handlebars->29->2059",
38102 - "default.handlebars->29->2061"
38125 + "default.handlebars->29->2063",
38126 + "default.handlebars->29->2065"
38127 ]
38128 },
38129 {
@@ -38120,10 +38144,10 @@
38144 "zh-cht": "用戶",
38145 "xloc": [
38146 "default.handlebars->29->1380",
38123 - "default.handlebars->29->1701",
38124 - "default.handlebars->29->1730",
38125 - "default.handlebars->29->1869",
38126 - "default.handlebars->29->2052",
38147 + "default.handlebars->29->1705",
38148 + "default.handlebars->29->1734",
38149 + "default.handlebars->29->1873",
38150 + "default.handlebars->29->2056",
38151 "default.handlebars->29->233",
38152 "default.handlebars->29->668"
38153 ]
@@ -38145,7 +38169,7 @@
38169 "zh-chs": "用户+档案",
38170 "zh-cht": "用戶+檔案",
38171 "xloc": [
38148 - "default.handlebars->29->1731"
38172 + "default.handlebars->29->1735"
38173 ]
38174 },
38175 {
@@ -38165,10 +38189,10 @@
38189 "zh-chs": "用户帐户导入",
38190 "zh-cht": "用戶帳戶導入",
38191 "xloc": [
38168 - "default.handlebars->29->1764",
38169 - "default.handlebars->29->1765",
38170 - "default.handlebars->29->1767",
38171 - "default.handlebars->29->1769"
38192 + "default.handlebars->29->1768",
38193 + "default.handlebars->29->1769",
38194 + "default.handlebars->29->1771",
38195 + "default.handlebars->29->1773"
38196 ]
38197 },
38198 {
@@ -38188,7 +38212,7 @@
38212 "zh-chs": "用户帐户",
38213 "zh-cht": "用戶帳戶",
38214 "xloc": [
38191 - "default.handlebars->29->2078"
38215 + "default.handlebars->29->2082"
38216 ]
38217 },
38218 {
@@ -38231,9 +38255,9 @@
38255 "zh-cht": "用戶同意",
38256 "xloc": [
38257 "default.handlebars->29->1351",
38234 - "default.handlebars->29->1860",
38258 + "default.handlebars->29->1864",
38259 "default.handlebars->29->194",
38236 - "default.handlebars->29->1947",
38260 + "default.handlebars->29->1951",
38261 "default.handlebars->29->602",
38262 "default.handlebars->29->742"
38263 ]
@@ -38255,11 +38279,11 @@
38279 "zh-chs": "用户组",
38280 "zh-cht": "用戶群",
38281 "xloc": [
38258 - "default.handlebars->29->1437",
38259 - "default.handlebars->29->1438",
38260 - "default.handlebars->29->1833",
38261 - "default.handlebars->29->1999",
38262 - "default.handlebars->29->2020",
38282 + "default.handlebars->29->1441",
38283 + "default.handlebars->29->1442",
38284 + "default.handlebars->29->1837",
38285 + "default.handlebars->29->2003",
38286 + "default.handlebars->29->2024",
38287 "default.handlebars->29->667"
38288 ]
38289 },
@@ -38300,7 +38324,7 @@
38324 "zh-chs": "用户组成员",
38325 "zh-cht": "用戶群成員",
38326 "xloc": [
38303 - "default.handlebars->29->1996"
38327 + "default.handlebars->29->2000"
38328 ]
38329 },
38330 {
@@ -38340,9 +38364,9 @@
38364 "zh-chs": "用户识别码",
38365 "zh-cht": "用戶識別碼",
38366 "xloc": [
38343 - "default.handlebars->29->1502",
38344 - "default.handlebars->29->1914",
38345 - "default.handlebars->29->1915"
38367 + "default.handlebars->29->1506",
38368 + "default.handlebars->29->1918",
38369 + "default.handlebars->29->1919"
38370 ]
38371 },
38372 {
@@ -38362,8 +38386,8 @@
38386 "zh-chs": "用户标识符",
38387 "zh-cht": "用戶標識符",
38388 "xloc": [
38365 - "default.handlebars->29->1435",
38366 - "default.handlebars->29->1898"
38389 + "default.handlebars->29->1439",
38390 + "default.handlebars->29->1902"
38391 ]
38392 },
38393 {
@@ -38383,7 +38407,7 @@
38407 "zh-chs": "用户列表输出",
38408 "zh-cht": "用戶列表輸出",
38409 "xloc": [
38386 - "default.handlebars->29->1776"
38410 + "default.handlebars->29->1780"
38411 ]
38412 },
38413 {
@@ -38404,7 +38428,7 @@
38428 "zh-cht": "用戶名",
38429 "xloc": [
38430 "default-mobile.handlebars->9->462",
38407 - "default.handlebars->29->1501"
38431 + "default.handlebars->29->1505"
38432 ]
38433 },
38434 {
@@ -38479,7 +38503,7 @@
38503 "zh-chs": "用户节",
38504 "zh-cht": "用戶節",
38505 "xloc": [
38482 - "default.handlebars->29->2098"
38506 + "default.handlebars->29->2102"
38507 ]
38508 },
38509 {
@@ -38604,7 +38628,7 @@
38628 "zh-chs": "用户组已更改:{0}",
38629 "zh-cht": "用戶組已更改:{0}",
38630 "xloc": [
38607 - "default.handlebars->29->1666"
38631 + "default.handlebars->29->1670"
38632 ]
38633 },
38634 {
@@ -38624,7 +38648,7 @@
38648 "zh-chs": "已创建用户组:{0}",
38649 "zh-cht": "已創建用戶組:{0}",
38650 "xloc": [
38627 - "default.handlebars->29->1656"
38651 + "default.handlebars->29->1660"
38652 ]
38653 },
38654 {
@@ -38644,7 +38668,7 @@
38668 "zh-chs": "用户组成员身份已更改:{0}",
38669 "zh-cht": "用戶組成員身份已更改:{0}",
38670 "xloc": [
38647 - "default.handlebars->29->1654"
38671 + "default.handlebars->29->1658"
38672 ]
38673 },
38674 {
@@ -38710,7 +38734,7 @@
38734 "zh-cht": "用戶名",
38735 "xloc": [
38736 "default-mobile.handlebars->9->280",
38713 - "default.handlebars->29->1788",
38737 + "default.handlebars->29->1792",
38738 "default.handlebars->29->291",
38739 "default.handlebars->29->768",
38740 "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1",
@@ -38784,9 +38808,9 @@
38808 "zh-chs": "用户",
38809 "zh-cht": "用戶",
38810 "xloc": [
38787 - "default.handlebars->29->1821",
38788 - "default.handlebars->29->1861",
38789 - "default.handlebars->29->2097",
38811 + "default.handlebars->29->1825",
38812 + "default.handlebars->29->1865",
38813 + "default.handlebars->29->2101",
38814 "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
38815 ]
38816 },
@@ -38807,7 +38831,7 @@
38831 "zh-chs": "用户会话",
38832 "zh-cht": "用戶節",
38833 "xloc": [
38810 - "default.handlebars->29->2082"
38834 + "default.handlebars->29->2086"
38835 ]
38836 },
38837 {
@@ -38847,7 +38871,7 @@
38871 "zh-chs": "验证电邮",
38872 "zh-cht": "驗證電郵",
38873 "xloc": [
38850 - "default.handlebars->29->1743"
38874 + "default.handlebars->29->1747"
38875 ]
38876 },
38877 {
@@ -38939,7 +38963,7 @@
38963 "zh-chs": "已验证",
38964 "zh-cht": "已驗證",
38965 "xloc": [
38942 - "default.handlebars->29->1977"
38966 + "default.handlebars->29->1981"
38967 ]
38968 },
38969 {
@@ -38982,7 +39006,7 @@
39006 "xloc": [
39007 "default-mobile.handlebars->9->63",
39008 "default.handlebars->29->1030",
38985 - "default.handlebars->29->1739"
39009 + "default.handlebars->29->1743"
39010 ]
39011 },
39012 {
@@ -39002,7 +39026,7 @@
39026 "zh-chs": "用户{0}的已验证电话号码",
39027 "zh-cht": "用戶{0}的已驗證電話號碼",
39028 "xloc": [
39005 - "default.handlebars->29->1683"
39029 + "default.handlebars->29->1687"
39030 ]
39031 },
39032 {
@@ -39091,7 +39115,7 @@
39115 "zh-chs": "版本不兼容,请先升级您的MeshCentral",
39116 "zh-cht": "版本不兼容,請先升級你的MeshCentral",
39117 "xloc": [
39094 - "default.handlebars->29->2129"
39118 + "default.handlebars->29->2133"
39119 ]
39120 },
39121 {
@@ -39173,7 +39197,7 @@
39197 "zh-chs": "查看所有事件",
39198 "zh-cht": "查看所有事件",
39199 "xloc": [
39176 - "default.handlebars->29->1813"
39200 + "default.handlebars->29->1817"
39201 ]
39202 },
39203 {
@@ -39193,8 +39217,8 @@
39217 "zh-chs": "查看变更日志",
39218 "zh-cht": "查看變更日誌",
39219 "xloc": [
39196 - "default.handlebars->29->2132",
39197 - "default.handlebars->29->2134"
39220 + "default.handlebars->29->2136",
39221 + "default.handlebars->29->2138"
39222 ]
39223 },
39224 {
@@ -39254,7 +39278,7 @@
39278 "zh-chs": "查看有关此用户的注释",
39279 "zh-cht": "查看有關此用戶的註釋",
39280 "xloc": [
39257 - "default.handlebars->29->1955"
39281 + "default.handlebars->29->1959"
39282 ]
39283 },
39284 {
@@ -39418,8 +39442,8 @@
39442 "xloc": [
39443 "default-mobile.handlebars->9->434",
39444 "default-mobile.handlebars->9->449",

This file is too large to show in full.

views/default.handlebars
+6 -1
@@ -9838,6 +9838,7 @@
9838 Q('dp20amtpolicypass').value = currentMesh.amt.password;
9839 if ((currentMesh.amt.type == 2) || (currentMesh.amt.type == 3)) {
9840 if (currentMesh.amt.badpass != null) { Q('dp20amtbadpass').value = currentMesh.amt.badpass; }
9841 + if ((currentMesh.amt.type == 3) && (currentMesh.amt.ccm != null)) { Q('dp20amtccmmode').value = currentMesh.amt.ccm; }
9842 }
9843 if ((features & 0x400) == 0) { Q('dp20amtcira').value = currentMesh.amt.cirasetup; }
9844 }
@@ -9854,7 +9855,10 @@
9855 x += addHtmlValue("New password*", '<input id=dp20amtpolicypass type=password style=width:230px maxlength=32 onchange=dp20amtValidatePolicy() onkeyup=dp20amtValidatePolicy() autocomplete=off />')
9856 x += addHtmlValue("New password*", '<input id=dp20amtpolicypass2 type=password style=width:230px maxlength=32 onchange=dp20amtValidatePolicy() onkeyup=dp20amtValidatePolicy() autocomplete=off />')
9857 x += '</div>';
9858 + if (ptype == 3) { x += addHtmlValue("CCM mode", '<select id=dp20amtccmmode style=width:230px onchange=dp20amtValidatePolicy() onkeyup=dp20amtValidatePolicy()><option value=0>' + "Don't change, keep CCM if setup" + '</option><option value=1>' + "Deactivate CCM if setup" + '</option><option value=2>' + "Activate to CCM, if ACM fails" + '</option></select>'); }
9859 + x += '<div id=dp20amtbadpassdiv style=display:none>';
9860 x += addHtmlValue("Unknown password", '<select id=dp20amtbadpass style=width:230px><option value=0>' + "Do nothing" + '</option><option value=1>' + "If in CCM, reactivate Intel&reg; AMT" + '</option></select>');
9861 + x += '</div>';
9862 if ((features & 0x400) == 0) { x += addHtmlValue('<span title="' + "Client Initiated Remote Access" + '">' + "CIRA setup" + '</span>', '<select id=dp20amtcira style=width:230px><option value=0>' + "Do nothing" + '</option><option value=1>' + "Don't connect to server" + '</option><option value=2>' + "Connect to server" + '</option></select>'); }
9863 x += '<span id=dp10passNotify style="font-size:10px"> ' + "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric." + '</span>';
9864 if ((currentMesh.mtype == 2) && (ptype == 2)) { x += '<span style="font-size:10px"> ' + "This policy will not impact devices with Intel&reg; AMT in ACM mode." + '</span>'; }
@@ -9875,6 +9879,7 @@
9879 QE('idx_dlgOkButton', ok);
9880 if ((ptype == 2) || (ptype == 3)) { QV('dp20amtpassdiv', Q('dp20amtpass').value == 2); }
9881 QV('dp10passNotify', ((ptype == 2) || (ptype == 3)) && (Q('dp20amtpass').value == 2));
9882 + QV('dp20amtbadpassdiv', (ptype == 2) || ((ptype == 3) && (Q('dp20amtccmmode').value != 1)));
9883 }
9884
9885 function p20editMeshAmtEx() {
@@ -9889,7 +9894,7 @@
9894 amtpolicy = { type: ptype, password: password, badpass: parseInt(Q('dp20amtbadpass').value) };
9895 if ((features & 0x400) == 0) { amtpolicy.cirasetup = parseInt(Q('dp20amtcira').value); } else { amtpolicy.cirasetup = 1; }
9896 } else if (ptype == 3) { // ACM policy
9892 - amtpolicy = { type: ptype, password: password, badpass: parseInt(Q('dp20amtbadpass').value) };
9897 + amtpolicy = { type: ptype, password: password, badpass: parseInt(Q('dp20amtbadpass').value), ccm: parseInt(Q('dp20amtccmmode').value) };
9898 if ((features & 0x400) == 0) { amtpolicy.cirasetup = parseInt(Q('dp20amtcira').value); } else { amtpolicy.cirasetup = 1; }
9899 } else if (ptype == 4) { // Fully automatic policy
9900 amtpolicy = { type: ptype };