Added AMT manager support and fixed device power timeline in mobile web app.

Ylian Saint-Hilaire committed Oct 23, 2020 at 11:42 UTC 2dbd7239934f46bf784a256a509acbcbf2e8188e
5 files changed +1848 -1778
amtmanager.js
+6 -1
@@ -512,6 +512,7 @@ module.exports.CreateAmtManager = function (parent) {
512 dev.aquired.user = dev.intelamt.user = stack.wsman.comm.user;
513 dev.aquired.pass = dev.intelamt.pass = stack.wsman.comm.pass;
514 dev.aquired.lastContact = Date.now();
515 + dev.aquired.warn = 0; // Clear all warnings (TODO: Check Realm and TLS cert pinning)
516 if ((dev.connType == 1) || (dev.connType == 3)) { dev.aquired.tls = stack.wsman.comm.xtls; } // Only set the TLS state if in relay or local mode. When using CIRA, this is auto-detected.
517 if (stack.wsman.comm.xtls == 1) { dev.aquired.hash = stack.wsman.comm.xtlsCertificate.fingerprint.split(':').join('').toLowerCase(); } else { delete dev.aquired.hash; }
518 UpdateDevice(dev);
@@ -575,7 +576,8 @@ module.exports.CreateAmtManager = function (parent) {
576 dev.consoleMsg("Unable to connect.");
577
578 // Set an error that we can't login to this device
578 - //ClearDeviceCredentials(dev);
579 + dev.aquired.warn = 1; // Intel AMT Warning Flags: 1 = Unknown credentials, 2 = Realm Mismatch, 4 = TLS Cert Mismatch
580 + UpdateDevice(dev);
581 }
582 //console.log(dev.nodeid, dev.name, dev.host, status, 'Bad response');
583 removeAmtDevice(dev);
@@ -612,6 +614,9 @@ module.exports.CreateAmtManager = function (parent) {
614 if (dev.aquired.tls && (typeof dev.aquired.tls == 'number') && (dev.aquired.tls != device.intelamt.tls)) { change = 1; log = 1; device.intelamt.tls = dev.aquired.tls; changes.push('AMT TLS'); }
615 if ((dev.aquired.state != null) && (typeof dev.aquired.state == 'number') && (dev.aquired.state != device.intelamt.state)) { change = 1; log = 1; device.intelamt.state = dev.aquired.state; changes.push('AMT state'); }
616
617 + // Intel AMT Warning Flags: 1 = Unknown credentials, 2 = Realm Mismatch, 4 = TLS Cert Mismatch
618 + if ((typeof dev.aquired.warn == 'number')) { if ((dev.aquired.warn == 0) && (device.intelamt.warn != null)) { delete device.intelamt.warn; change = 1; } else if (dev.aquired.warn != device.intelamt.warn) { device.intelamt.warn = dev.aquired.warn; change = 1; } }
619 +
620 // Update Intel AMT flags if needed
621 // dev.aquired.controlMode // 1 = CCM, 2 = ACM
622 // (node.intelamt.flags & 2) == CCM, (node.intelamt.flags & 4) == ACM
meshuser.js
+3 -1
@@ -3846,7 +3846,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
3846 }
3847 if (command.desc != null && (command.desc != node.desc)) { change = 1; node.desc = command.desc; changes.push('description'); }
3848 if (command.intelamt != null) {
3849 - if ((command.intelamt.user != null) && (command.intelamt.pass != undefined) && ((command.intelamt.user != node.intelamt.user) || (command.intelamt.pass != node.intelamt.pass))) { change = 1; node.intelamt.user = command.intelamt.user; node.intelamt.pass = command.intelamt.pass; changes.push('Intel AMT credentials'); amtchange = 1; }
3849 + if ((parent.parent.amtManager == null) || (node.intelamt.user == null) || (node.intelamt.user == '') || ((node.intelamt.warn != null) && ((node.intelamt.warn) & 1 != 0))) { // Only allow changes to Intel AMT credentials if AMT manager is not running, or manager warned of unknown credentials.
3850 + if ((command.intelamt.user != null) && (command.intelamt.pass != null) && ((command.intelamt.user != node.intelamt.user) || (command.intelamt.pass != node.intelamt.pass))) { change = 1; node.intelamt.user = command.intelamt.user; node.intelamt.pass = command.intelamt.pass; changes.push('Intel AMT credentials'); amtchange = 1; }
3851 + }
3852 // Only allow the user to set Intel AMT TLS state if AMT Manager is not active. AMT manager will auto-detect TLS state.
3853 if ((parent.parent.amtManager != null) && (command.intelamt.tls != null) && (command.intelamt.tls != node.intelamt.tls)) { change = 1; node.intelamt.tls = command.intelamt.tls; changes.push('Intel AMT TLS'); }
3854 }
translate/translate.json
+1771 -1757
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->29->1329",
21 - "default.handlebars->29->1331"
20 + "default.handlebars->29->1332",
21 + "default.handlebars->29->1334"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->29->1242"
207 + "default.handlebars->29->1245"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->29->1393",
228 - "default.handlebars->29->1853"
227 + "default.handlebars->29->1396",
228 + "default.handlebars->29->1856"
229 ]
230 },
231 {
@@ -452,7 +452,7 @@
452 "zh-chs": "*保留空白可为每个设备分配一个随机密码。",
453 "zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。",
454 "xloc": [
455 - "default.handlebars->29->1363"
455 + "default.handlebars->29->1366"
456 ]
457 },
458 {
@@ -489,8 +489,8 @@
489 "zh-chs": ",",
490 "zh-cht": ",",
491 "xloc": [
492 - "default-mobile.handlebars->9->461",
493 - "default.handlebars->29->1463"
492 + "default-mobile.handlebars->9->467",
493 + "default.handlebars->29->1466"
494 ]
495 },
496 {
@@ -531,7 +531,7 @@
531 "zh-chs": ",MQTT在线",
532 "zh-cht": ",MQTT在線",
533 "xloc": [
534 - "default.handlebars->29->984"
534 + "default.handlebars->29->987"
535 ]
536 },
537 {
@@ -551,7 +551,7 @@
551 "zh-chs": ",软体KVM",
552 "zh-cht": ",軟體KVM",
553 "xloc": [
554 - "default.handlebars->29->808",
554 + "default.handlebars->29->811",
555 "desktop.handlebars->3->13"
556 ]
557 },
@@ -572,11 +572,11 @@
572 "zh-chs": ",WebRTC",
573 "zh-cht": ",WebRTC",
574 "xloc": [
575 - "default-mobile.handlebars->9->290",
576 - "default-mobile.handlebars->9->299",
577 - "default.handlebars->29->815",
578 - "default.handlebars->29->848",
579 - "default.handlebars->29->860",
575 + "default-mobile.handlebars->9->296",
576 + "default-mobile.handlebars->9->305",
577 + "default.handlebars->29->818",
578 + "default.handlebars->29->851",
579 + "default.handlebars->29->863",
580 "desktop.handlebars->3->20",
581 "xterm.handlebars->9->6"
582 ]
@@ -697,7 +697,7 @@
697 "zh-chs": ",{0}观看",
698 "zh-cht": ",{0}觀看",
699 "xloc": [
700 - "default.handlebars->29->809",
700 + "default.handlebars->29->812",
701 "desktop.handlebars->3->14"
702 ]
703 },
@@ -761,10 +761,10 @@
761 "zh-cht": "...",
762 "xloc": [
763 "default-mobile.handlebars->9->108",
764 - "default-mobile.handlebars->9->301",
765 - "default.handlebars->29->1504",
766 - "default.handlebars->29->2008",
767 - "default.handlebars->29->865"
764 + "default-mobile.handlebars->9->307",
765 + "default.handlebars->29->1507",
766 + "default.handlebars->29->2011",
767 + "default.handlebars->29->868"
768 ]
769 },
770 {
@@ -820,7 +820,7 @@
820 "zh-chs": "1个活跃时段",
821 "zh-cht": "1個活躍時段",
822 "xloc": [
823 - "default.handlebars->29->1922"
823 + "default.handlebars->29->1925"
824 ]
825 },
826 {
@@ -841,8 +841,8 @@
841 "zh-cht": "1個位元組",
842 "xloc": [
843 "default-mobile.handlebars->9->118",
844 - "default-mobile.handlebars->9->465",
845 - "default.handlebars->29->1528",
844 + "default-mobile.handlebars->9->471",
845 + "default.handlebars->29->1531",
846 "download.handlebars->3->1",
847 "download2.handlebars->5->1"
848 ]
@@ -864,7 +864,7 @@
864 "zh-chs": "1条连接",
865 "zh-cht": "1位聯絡文",
866 "xloc": [
867 - "default.handlebars->29->811",
867 + "default.handlebars->29->814",
868 "desktop.handlebars->3->16"
869 ]
870 },
@@ -907,7 +907,7 @@
907 "zh-chs": "1组",
908 "zh-cht": "1群",
909 "xloc": [
910 - "default.handlebars->29->1887"
910 + "default.handlebars->29->1890"
911 ]
912 },
913 {
@@ -949,7 +949,7 @@
949 "zh-chs": "1分钟",
950 "zh-cht": "1分鐘",
951 "xloc": [
952 - "default.handlebars->29->700"
952 + "default.handlebars->29->703"
953 ]
954 },
955 {
@@ -1011,7 +1011,7 @@
1011 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1012 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1013 "xloc": [
1014 - "default.handlebars->29->1677"
1014 + "default.handlebars->29->1680"
1015 ]
1016 },
1017 {
@@ -1077,7 +1077,7 @@
1077 "default-mobile.handlebars->9->172",
1078 "default-mobile.handlebars->9->175",
1079 "default-mobile.handlebars->9->178",
1080 - "default.handlebars->29->1681",
1080 + "default.handlebars->29->1684",
1081 "default.handlebars->29->250",
1082 "default.handlebars->29->253",
1083 "default.handlebars->29->256",
@@ -1209,7 +1209,7 @@
1209 "zh-chs": "10分钟",
1210 "zh-cht": "10分鐘",
1211 "xloc": [
1212 - "default.handlebars->29->702"
1212 + "default.handlebars->29->705"
1213 ]
1214 },
1215 {
@@ -1278,7 +1278,7 @@
1278 "en": "12 hours",
1279 "nl": "12 uur",
1280 "xloc": [
1281 - "default.handlebars->29->710"
1281 + "default.handlebars->29->713"
1282 ]
1283 },
1284 {
@@ -1320,28 +1320,28 @@
1320 "zh-chs": "15分钟",
1321 "zh-cht": "15分鐘",
1322 "xloc": [
1323 - "default.handlebars->29->703"
1323 + "default.handlebars->29->706"
1324 ]
1325 },
1326 {
1327 "en": "16 hours",
1328 "nl": "16 uur",
1329 "xloc": [
1330 - "default.handlebars->29->711"
1330 + "default.handlebars->29->714"
1331 ]
1332 },
1333 {
1334 "en": "2 days",
1335 "nl": "2 dagen",
1336 "xloc": [
1337 - "default.handlebars->29->713"
1337 + "default.handlebars->29->716"
1338 ]
1339 },
1340 {
1341 "en": "2 hours",
1342 "nl": "2 uur",
1343 "xloc": [
1344 - "default.handlebars->29->707"
1344 + "default.handlebars->29->710"
1345 ]
1346 },
1347 {
@@ -1432,7 +1432,7 @@
1432 "en": "24 hours",
1433 "nl": "24 uur",
1434 "xloc": [
1435 - "default.handlebars->29->712"
1435 + "default.handlebars->29->715"
1436 ]
1437 },
1438 {
@@ -1494,7 +1494,7 @@
1494 "zh-chs": "2FA备份代码已清除",
1495 "zh-cht": "2FA備份代碼已清除",
1496 "xloc": [
1497 - "default.handlebars->29->1639"
1497 + "default.handlebars->29->1642"
1498 ]
1499 },
1500 {
@@ -1514,8 +1514,8 @@
1514 "zh-chs": "启用第二因素身份验证",
1515 "zh-cht": "啟用第二因素身份驗證",
1516 "xloc": [
1517 - "default.handlebars->29->1694",
1518 - "default.handlebars->29->1909"
1517 + "default.handlebars->29->1697",
1518 + "default.handlebars->29->1912"
1519 ]
1520 },
1521 {
@@ -1551,7 +1551,7 @@
1551 "pt": "3",
1552 "ru": "3",
1553 "xloc": [
1554 - "default-mobile.handlebars->9->327"
1554 + "default-mobile.handlebars->9->333"
1555 ]
1556 },
1557 {
@@ -1634,7 +1634,7 @@
1634 "zh-chs": "30分钟",
1635 "zh-cht": "30分鐘",
1636 "xloc": [
1637 - "default.handlebars->29->704"
1637 + "default.handlebars->29->707"
1638 ]
1639 },
1640 {
@@ -1684,14 +1684,14 @@
1684 "en": "4 days",
1685 "nl": "4 dagen",
1686 "xloc": [
1687 - "default.handlebars->29->714"
1687 + "default.handlebars->29->717"
1688 ]
1689 },
1690 {
1691 "en": "4 hours",
1692 "nl": "4 uur",
1693 "xloc": [
1694 - "default.handlebars->29->708"
1694 + "default.handlebars->29->711"
1695 ]
1696 },
1697 {
@@ -1774,7 +1774,7 @@
1774 "zh-chs": "45分钟",
1775 "zh-cht": "45分鐘",
1776 "xloc": [
1777 - "default.handlebars->29->705"
1777 + "default.handlebars->29->708"
1778 ]
1779 },
1780 {
@@ -1814,7 +1814,7 @@
1814 "zh-chs": "5分钟",
1815 "zh-cht": "5分鐘",
1816 "xloc": [
1817 - "default.handlebars->29->701"
1817 + "default.handlebars->29->704"
1818 ]
1819 },
1820 {
@@ -1927,7 +1927,7 @@
1927 "en": "60 minutes",
1928 "nl": "60 minuten",
1929 "xloc": [
1930 - "default.handlebars->29->706"
1930 + "default.handlebars->29->709"
1931 ]
1932 },
1933 {
@@ -2047,7 +2047,7 @@
2047 "zh-chs": "7天电源状态",
2048 "zh-cht": "7天電源狀態",
2049 "xloc": [
2050 - "default.handlebars->29->741"
2050 + "default.handlebars->29->744"
2051 ]
2052 },
2053 {
@@ -2112,7 +2112,7 @@
2112 "xloc": [
2113 "default.handlebars->29->322",
2114 "default.handlebars->29->336",
2115 - "default.handlebars->29->709"
2115 + "default.handlebars->29->712"
2116 ]
2117 },
2118 {
@@ -2455,7 +2455,7 @@
2455 "zh-chs": "拒绝访问",
2456 "zh-cht": "拒絕存取",
2457 "xloc": [
2458 - "default.handlebars->29->985"
2458 + "default.handlebars->29->988"
2459 ]
2460 },
2461 {
@@ -2497,7 +2497,7 @@
2497 "zh-chs": "访问服务器档案",
2498 "zh-cht": "存取伺服器檔案",
2499 "xloc": [
2500 - "default.handlebars->29->1859"
2500 + "default.handlebars->29->1862"
2501 ]
2502 },
2503 {
@@ -2586,8 +2586,8 @@
2586 "default-mobile.handlebars->9->93",
2587 "default-mobile.handlebars->9->95",
2588 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2589 - "default.handlebars->29->1251",
2590 - "default.handlebars->29->1253",
2589 + "default.handlebars->29->1254",
2590 + "default.handlebars->29->1256",
2591 "default.handlebars->29->522",
2592 "default.handlebars->29->524"
2593 ]
@@ -2650,7 +2650,7 @@
2650 "zh-chs": "帐户已更改:{0}",
2651 "zh-cht": "帳戶已更改:{0}",
2652 "xloc": [
2653 - "default.handlebars->29->1612"
2653 + "default.handlebars->29->1615"
2654 ]
2655 },
2656 {
@@ -2670,7 +2670,7 @@
2670 "zh-chs": "创建帐户,电子邮件为{0}",
2671 "zh-cht": "創建帳戶,電子郵件為{0}",
2672 "xloc": [
2673 - "default.handlebars->29->1611"
2673 + "default.handlebars->29->1614"
2674 ]
2675 },
2676 {
@@ -2690,7 +2690,7 @@
2690 "zh-chs": "创建帐户,用户名是{0}",
2691 "zh-cht": "帳戶已創建,用戶名是{0}",
2692 "xloc": [
2693 - "default.handlebars->29->1610"
2693 + "default.handlebars->29->1613"
2694 ]
2695 },
2696 {
@@ -2710,8 +2710,8 @@
2710 "zh-chs": "帐户已被锁定",
2711 "zh-cht": "帳戶已被鎖定",
2712 "xloc": [
2713 - "default.handlebars->29->1696",
2714 - "default.handlebars->29->1856"
2713 + "default.handlebars->29->1699",
2714 + "default.handlebars->29->1859"
2715 ]
2716 },
2717 {
@@ -2775,7 +2775,7 @@
2775 "zh-chs": "帐号登录",
2776 "zh-cht": "帳號登錄",
2777 "xloc": [
2778 - "default.handlebars->29->1547"
2778 + "default.handlebars->29->1550"
2779 ]
2780 },
2781 {
@@ -2795,7 +2795,7 @@
2795 "zh-chs": "帐户登出",
2796 "zh-cht": "帳戶登出",
2797 "xloc": [
2798 - "default.handlebars->29->1548"
2798 + "default.handlebars->29->1551"
2799 ]
2800 },
2801 {
@@ -2837,7 +2837,7 @@
2837 "zh-chs": "帐户密码已更改:{0}",
2838 "zh-cht": "帳戶密碼已更改:{0}",
2839 "xloc": [
2840 - "default.handlebars->29->1620"
2840 + "default.handlebars->29->1623"
2841 ]
2842 },
2843 {
@@ -2857,7 +2857,7 @@
2857 "zh-chs": "帐户已删除",
2858 "zh-cht": "帳戶已刪除",
2859 "xloc": [
2860 - "default.handlebars->29->1609"
2860 + "default.handlebars->29->1612"
2861 ]
2862 },
2863 {
@@ -2897,7 +2897,7 @@
2897 "zh-chs": "指令",
2898 "zh-cht": "指令",
2899 "xloc": [
2900 - "default.handlebars->29->990",
2900 + "default.handlebars->29->993",
2901 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2902 ]
2903 },
@@ -2918,8 +2918,8 @@
2918 "zh-chs": "动作档案",
2919 "zh-cht": "動作檔案",
2920 "xloc": [
2921 - "default.handlebars->29->784",
2922 - "default.handlebars->29->786"
2921 + "default.handlebars->29->787",
2922 + "default.handlebars->29->789"
2923 ]
2924 },
2925 {
@@ -2939,10 +2939,10 @@
2939 "zh-chs": "动作",
2940 "zh-cht": "動作",
2941 "xloc": [
2942 - "default-mobile.handlebars->9->253",
2942 + "default-mobile.handlebars->9->259",
2943 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2944 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2945 - "default.handlebars->29->598",
2945 + "default.handlebars->29->601",
2946 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2947 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2948 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3007,10 +3007,10 @@
3007 "xloc": [
3008 "default-mobile.handlebars->9->231",
3009 "default-mobile.handlebars->9->233",
3010 - "default-mobile.handlebars->9->364",
3010 + "default-mobile.handlebars->9->370",
3011 "default.handlebars->29->546",
3012 "default.handlebars->29->548",
3013 - "default.handlebars->29->946"
3013 + "default.handlebars->29->949"
3014 ]
3015 },
3016 {
@@ -3050,7 +3050,7 @@
3050 "zh-chs": "活跃用户{0}",
3051 "zh-cht": "活躍用戶{0}",
3052 "xloc": [
3053 - "default.handlebars->29->573"
3053 + "default.handlebars->29->576"
3054 ]
3055 },
3056 {
@@ -3070,7 +3070,7 @@
3070 "zh-chs": "添加代理",
3071 "zh-cht": "新增代理",
3072 "xloc": [
3073 - "default.handlebars->29->1340",
3073 + "default.handlebars->29->1343",
3074 "default.handlebars->29->283"
3075 ]
3076 },
@@ -3108,8 +3108,8 @@
3108 "zh-chs": "添加设备",
3109 "zh-cht": "新增裝置",
3110 "xloc": [
3111 - "default.handlebars->29->1833",
3112 - "default.handlebars->29->1957"
3111 + "default.handlebars->29->1836",
3112 + "default.handlebars->29->1960"
3113 ]
3114 },
3115 {
@@ -3129,7 +3129,7 @@
3129 "zh-chs": "添加设备日志",
3130 "zh-cht": "新增裝置日誌",
3131 "xloc": [
3132 - "default.handlebars->29->690"
3132 + "default.handlebars->29->693"
3133 ]
3134 },
3135 {
@@ -3149,9 +3149,9 @@
3149 "zh-chs": "添加设备组",
3150 "zh-cht": "新增裝置群",
3151 "xloc": [
3152 - "default.handlebars->29->1427",
3153 - "default.handlebars->29->1827",
3154 - "default.handlebars->29->1945",
3152 + "default.handlebars->29->1430",
3153 + "default.handlebars->29->1830",
3154 + "default.handlebars->29->1948",
3155 "default.handlebars->29->237"
3156 ]
3157 },
@@ -3172,7 +3172,7 @@
3172 "zh-chs": "添加设备组权限",
3173 "zh-cht": "新增裝置群權限",
3174 "xloc": [
3175 - "default.handlebars->29->1424"
3175 + "default.handlebars->29->1427"
3176 ]
3177 },
3178 {
@@ -3192,8 +3192,8 @@
3192 "zh-chs": "添加设备权限",
3193 "zh-cht": "新增裝置權限",
3194 "xloc": [
3195 - "default.handlebars->29->1429",
3196 - "default.handlebars->29->1431"
3195 + "default.handlebars->29->1432",
3196 + "default.handlebars->29->1434"
3197 ]
3198 },
3199 {
@@ -3290,7 +3290,7 @@
3290 "zh-chs": "添加成员身份",
3291 "zh-cht": "新增成員身份",
3292 "xloc": [
3293 - "default.handlebars->29->1975"
3293 + "default.handlebars->29->1978"
3294 ]
3295 },
3296 {
@@ -3330,8 +3330,8 @@
3330 "zh-chs": "添加安全密钥",
3331 "zh-cht": "新增安全密鑰",
3332 "xloc": [
3333 - "default.handlebars->29->1018",
3334 - "default.handlebars->29->1019",
3333 + "default.handlebars->29->1021",
3334 + "default.handlebars->29->1022",
3335 "default.handlebars->29->149",
3336 "default.handlebars->29->151",
3337 "default.handlebars->29->154",
@@ -3355,8 +3355,8 @@
3355 "zh-chs": "添加用户",
3356 "zh-cht": "新增用戶",
3357 "xloc": [
3358 - "default-mobile.handlebars->9->406",
3359 - "default.handlebars->29->643"
3358 + "default-mobile.handlebars->9->412",
3359 + "default.handlebars->29->646"
3360 ]
3361 },
3362 {
@@ -3376,7 +3376,7 @@
3376 "zh-chs": "添加用户设备权限",
3377 "zh-cht": "新增用戶裝置權限",
3378 "xloc": [
3379 - "default.handlebars->29->1434"
3379 + "default.handlebars->29->1437"
3380 ]
3381 },
3382 {
@@ -3396,10 +3396,10 @@
3396 "zh-chs": "添加用户组",
3397 "zh-cht": "新增用戶群",
3398 "xloc": [
3399 - "default.handlebars->29->1336",
3400 - "default.handlebars->29->1426",
3401 - "default.handlebars->29->1951",
3402 - "default.handlebars->29->644"
3399 + "default.handlebars->29->1339",
3400 + "default.handlebars->29->1429",
3401 + "default.handlebars->29->1954",
3402 + "default.handlebars->29->647"
3403 ]
3404 },
3405 {
@@ -3419,7 +3419,7 @@
3419 "zh-chs": "添加用户组设备权限",
3420 "zh-cht": "新增用戶群裝置權限",
3421 "xloc": [
3422 - "default.handlebars->29->1436"
3422 + "default.handlebars->29->1439"
3423 ]
3424 },
3425 {
@@ -3439,7 +3439,7 @@
3439 "zh-chs": "将用户添加到设备组",
3440 "zh-cht": "將用戶新增到裝置群",
3441 "xloc": [
3442 - "default-mobile.handlebars->9->437"
3442 + "default-mobile.handlebars->9->443"
3443 ]
3444 },
3445 {
@@ -3476,8 +3476,8 @@
3476 "zh-chs": "添加用户",
3477 "zh-cht": "新增用戶",
3478 "xloc": [
3479 - "default.handlebars->29->1335",
3480 - "default.handlebars->29->1822"
3479 + "default.handlebars->29->1338",
3480 + "default.handlebars->29->1825"
3481 ]
3482 },
3483 {
@@ -3497,7 +3497,7 @@
3497 "zh-chs": "将用户添加到设备组",
3498 "zh-cht": "將用戶新增到裝置群",
3499 "xloc": [
3500 - "default.handlebars->29->1423"
3500 + "default.handlebars->29->1426"
3501 ]
3502 },
3503 {
@@ -3517,7 +3517,7 @@
3517 "zh-chs": "将用户添加到用户组",
3518 "zh-cht": "將用戶新增到用戶群",
3519 "xloc": [
3520 - "default.handlebars->29->1855"
3520 + "default.handlebars->29->1858"
3521 ]
3522 },
3523 {
@@ -3634,7 +3634,7 @@
3634 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3635 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3636 "xloc": [
3637 - "default.handlebars->29->1339",
3637 + "default.handlebars->29->1342",
3638 "default.handlebars->29->282"
3639 ]
3640 },
@@ -3681,7 +3681,7 @@
3681 "zh-chs": "添加了身份验证应用程序",
3682 "zh-cht": "添加了身份驗證應用程序",
3683 "xloc": [
3684 - "default.handlebars->29->1636"
3684 + "default.handlebars->29->1639"
3685 ]
3686 },
3687 {
@@ -3701,8 +3701,8 @@
3701 "zh-chs": "已将设备{0}添加到设备组{1}",
3702 "zh-cht": "已將設備{0}添加到設備組{1}",
3703 "xloc": [
3704 - "default.handlebars->29->1603",
3705 - "default.handlebars->29->1630"
3704 + "default.handlebars->29->1606",
3705 + "default.handlebars->29->1633"
3706 ]
3707 },
3708 {
@@ -3722,7 +3722,7 @@
3722 "zh-chs": "添加了安全密钥",
3723 "zh-cht": "添加了安全密鑰",
3724 "xloc": [
3725 - "default.handlebars->29->1641"
3725 + "default.handlebars->29->1644"
3726 ]
3727 },
3728 {
@@ -3742,7 +3742,7 @@
3742 "zh-chs": "已将用户组{0}添加到设备组{1}",
3743 "zh-cht": "已將用戶組{0}添加到設備組{1}",
3744 "xloc": [
3745 - "default.handlebars->29->1614"
3745 + "default.handlebars->29->1617"
3746 ]
3747 },
3748 {
@@ -3762,8 +3762,8 @@
3762 "zh-chs": "已将用户{0}添加到用户组{1}",
3763 "zh-cht": "已將用戶{0}添加到用戶組{1}",
3764 "xloc": [
3765 - "default.handlebars->29->1617",
3766 - "default.handlebars->29->1626"
3765 + "default.handlebars->29->1620",
3766 + "default.handlebars->29->1629"
3767 ]
3768 },
3769 {
@@ -3823,8 +3823,8 @@
3823 "zh-chs": "管理员控制模式(ACM)",
3824 "zh-cht": "管理員控制模式(ACM)",
3825 "xloc": [
3826 - "default-mobile.handlebars->9->366",
3827 - "default.handlebars->29->948"
3826 + "default-mobile.handlebars->9->372",
3827 + "default.handlebars->29->951"
3828 ]
3829 },
3830 {
@@ -3844,8 +3844,8 @@
3844 "zh-chs": "管理员凭证",
3845 "zh-cht": "管理員憑證",
3846 "xloc": [
3847 - "default-mobile.handlebars->9->372",
3848 - "default.handlebars->29->954"
3847 + "default-mobile.handlebars->9->378",
3848 + "default.handlebars->29->957"
3849 ]
3850 },
3851 {
@@ -3886,7 +3886,7 @@
3886 "zh-chs": "管理领域",
3887 "zh-cht": "管理領域",
3888 "xloc": [
3889 - "default.handlebars->29->1891"
3889 + "default.handlebars->29->1894"
3890 ]
3891 },
3892 {
@@ -3927,7 +3927,7 @@
3927 "zh-chs": "管理领域",
3928 "zh-cht": "管理領域",
3929 "xloc": [
3930 - "default.handlebars->29->1759"
3930 + "default.handlebars->29->1762"
3931 ]
3932 },
3933 {
@@ -3947,7 +3947,7 @@
3947 "zh-chs": "管理员",
3948 "zh-cht": "管理員",
3949 "xloc": [
3950 - "default.handlebars->29->1688"
3950 + "default.handlebars->29->1691"
3951 ]
3952 },
3953 {
@@ -3967,7 +3967,7 @@
3967 "zh-chs": "南非文",
3968 "zh-cht": "南非文",
3969 "xloc": [
3970 - "default.handlebars->29->1021"
3970 + "default.handlebars->29->1024"
3971 ]
3972 },
3973 {
@@ -3989,9 +3989,9 @@
3989 "xloc": [
3990 "default-mobile.handlebars->9->203",
3991 "default-mobile.handlebars->9->228",
3992 - "default-mobile.handlebars->9->244",
3993 - "default.handlebars->29->1490",
3994 - "default.handlebars->29->1498",
3992 + "default-mobile.handlebars->9->250",
3993 + "default.handlebars->29->1493",
3994 + "default.handlebars->29->1501",
3995 "default.handlebars->29->213",
3996 "default.handlebars->29->415",
3997 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4014,8 +4014,8 @@
4014 "zh-chs": "代理+英特尔AMT",
4015 "zh-cht": "代理+Intel® AMT",
4016 "xloc": [
4017 - "default.handlebars->29->1492",
4018 - "default.handlebars->29->1500"
4017 + "default.handlebars->29->1495",
4018 + "default.handlebars->29->1503"
4019 ]
4020 },
4021 {
@@ -4055,8 +4055,8 @@
4055 "zh-chs": "代理控制台",
4056 "zh-cht": "代理控制台",
4057 "xloc": [
4058 - "default-mobile.handlebars->9->443",
4059 - "default.handlebars->29->1444"
4058 + "default-mobile.handlebars->9->449",
4059 + "default.handlebars->29->1447"
4060 ]
4061 },
4062 {
@@ -4076,7 +4076,7 @@
4076 "zh-chs": "代理错误计数器",
4077 "zh-cht": "代理錯誤計數器",
4078 "xloc": [
4079 - "default.handlebars->29->2018"
4079 + "default.handlebars->29->2021"
4080 ]
4081 },
4082 {
@@ -4137,7 +4137,7 @@
4137 "zh-chs": "代理中继",
4138 "zh-cht": "代理中繼",
4139 "xloc": [
4140 - "default-mobile.handlebars->9->247"
4140 + "default-mobile.handlebars->9->253"
4141 ]
4142 },
4143 {
@@ -4179,7 +4179,7 @@
4179 "zh-chs": "代理时段",
4180 "zh-cht": "代理時段",
4181 "xloc": [
4182 - "default.handlebars->29->2034"
4182 + "default.handlebars->29->2037"
4183 ]
4184 },
4185 {
@@ -4199,8 +4199,8 @@
4199 "zh-chs": "代理标签",
4200 "zh-cht": "代理標籤",
4201 "xloc": [
4202 - "default-mobile.handlebars->9->243",
4203 - "default.handlebars->29->566"
4202 + "default-mobile.handlebars->9->249",
4203 + "default.handlebars->29->569"
4204 ]
4205 },
4206 {
@@ -4220,7 +4220,7 @@
4220 "zh-chs": "代理类型",
4221 "zh-cht": "代理類型",
4222 "xloc": [
4223 - "default.handlebars->29->1496",
4223 + "default.handlebars->29->1499",
4224 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4225 ]
4226 },
@@ -4241,7 +4241,7 @@
4241 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4242 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4243 "xloc": [
4244 - "default.handlebars->29->1600"
4244 + "default.handlebars->29->1603"
4245 ]
4246 },
4247 {
@@ -4262,8 +4262,8 @@
4262 "zh-cht": "代理已連接",
4263 "xloc": [
4264 "default.handlebars->29->163",
4265 - "default.handlebars->29->634",
4266 - "default.handlebars->29->635"
4265 + "default.handlebars->29->637",
4266 + "default.handlebars->29->638"
4267 ]
4268 },
4269 {
@@ -4303,7 +4303,7 @@
4303 "zh-chs": "代理离线",
4304 "zh-cht": "代理離線",
4305 "xloc": [
4306 - "default.handlebars->29->983"
4306 + "default.handlebars->29->986"
4307 ]
4308 },
4309 {
@@ -4323,7 +4323,7 @@
4323 "zh-chs": "代理在线",
4324 "zh-cht": "代理在線",
4325 "xloc": [
4326 - "default.handlebars->29->982"
4326 + "default.handlebars->29->985"
4327 ]
4328 },
4329 {
@@ -4331,7 +4331,7 @@
4331 "nl": "De agent wordt op een extern apparaat uitgevoerd met beperkte rechten.",
4332 "xloc": [
4333 "default.handlebars->29->161",
4334 - "default.handlebars->29->632"
4334 + "default.handlebars->29->635"
4335 ]
4336 },
4337 {
@@ -4351,7 +4351,7 @@
4351 "zh-chs": "代理",
4352 "zh-cht": "代理",
4353 "xloc": [
4354 - "default.handlebars->29->2050"
4354 + "default.handlebars->29->2053"
4355 ]
4356 },
4357 {
@@ -4371,7 +4371,7 @@
4371 "zh-chs": "阿尔巴尼亚文",
4372 "zh-cht": "阿爾巴尼亞文",
4373 "xloc": [
4374 - "default.handlebars->29->1022"
4374 + "default.handlebars->29->1025"
4375 ]
4376 },
4377 {
@@ -4392,8 +4392,8 @@
4392 "zh-cht": "所有",
4393 "xloc": [
4394 "default-mobile.handlebars->9->117",
4395 - "default-mobile.handlebars->9->302",
4396 - "default-mobile.handlebars->9->304",
4395 + "default-mobile.handlebars->9->308",
4396 + "default-mobile.handlebars->9->310",
4397 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4398 ]
4399 },
@@ -4414,7 +4414,7 @@
4414 "zh-chs": "全部可用",
4415 "zh-cht": "全部可用",
4416 "xloc": [
4417 - "default.handlebars->29->1651"
4417 + "default.handlebars->29->1654"
4418 ]
4419 },
4420 {
@@ -4451,7 +4451,7 @@
4451 "zh-chs": "所有事件",
4452 "zh-cht": "所有事件",
4453 "xloc": [
4454 - "default.handlebars->29->1649"
4454 + "default.handlebars->29->1652"
4455 ]
4456 },
4457 {
@@ -4471,9 +4471,9 @@
4471 "zh-chs": "全部聚焦",
4472 "zh-cht": "全部聚焦",
4473 "xloc": [
4474 - "default.handlebars->29->816",
4475 - "default.handlebars->29->818",
4476 - "default.handlebars->29->819"
4474 + "default.handlebars->29->819",
4475 + "default.handlebars->29->821",
4476 + "default.handlebars->29->822"
4477 ]
4478 },
4479 {
@@ -4493,8 +4493,8 @@
4493 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4494 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4495 "xloc": [
4496 - "default.handlebars->29->1391",
4497 - "default.handlebars->29->1852"
4496 + "default.handlebars->29->1394",
4497 + "default.handlebars->29->1855"
4498 ]
4499 },
4500 {
@@ -4514,7 +4514,7 @@
4514 "zh-chs": "允许用户管理此设备。",
4515 "zh-cht": "允許用戶管理此裝置。",
4516 "xloc": [
4517 - "default.handlebars->29->1392"
4517 + "default.handlebars->29->1395"
4518 ]
4519 },
4520 {
@@ -4578,7 +4578,7 @@
4578 "zh-chs": "备用(F10 = ESC + 0)",
4579 "zh-cht": "備用(F10 = ESC + 0)",
4580 "xloc": [
4581 - "default.handlebars->29->853"
4581 + "default.handlebars->29->856"
4582 ]
4583 },
4584 {
@@ -4619,10 +4619,10 @@
4619 "zh-chs": "一直通知",
4620 "zh-cht": "一直通知",
4621 "xloc": [
4622 - "default.handlebars->29->1316",
4623 - "default.handlebars->29->1813",
4624 - "default.handlebars->29->1900",
4625 - "default.handlebars->29->582"
4622 + "default.handlebars->29->1319",
4623 + "default.handlebars->29->1816",
4624 + "default.handlebars->29->1903",
4625 + "default.handlebars->29->585"
4626 ]
4627 },
4628 {
@@ -4642,10 +4642,10 @@
4642 "zh-chs": "一直提示",
4643 "zh-cht": "一直提示",
4644 "xloc": [
4645 - "default.handlebars->29->1317",
4646 - "default.handlebars->29->1814",
4647 - "default.handlebars->29->1901",
4648 - "default.handlebars->29->583"
4645 + "default.handlebars->29->1320",
4646 + "default.handlebars->29->1817",
4647 + "default.handlebars->29->1904",
4648 + "default.handlebars->29->586"
4649 ]
4650 },
4651 {
@@ -4768,7 +4768,7 @@
4768 "zh-chs": "杀毒软件",
4769 "zh-cht": "防毒軟體",
4770 "xloc": [
4771 - "default.handlebars->29->572"
4771 + "default.handlebars->29->575"
4772 ]
4773 },
4774 {
@@ -4868,7 +4868,7 @@
4868 "zh-chs": "阿拉伯文(阿尔及利亚)",
4869 "zh-cht": "阿拉伯文(阿爾及利亞)",
4870 "xloc": [
4871 - "default.handlebars->29->1024"
4871 + "default.handlebars->29->1027"
4872 ]
4873 },
4874 {
@@ -4888,7 +4888,7 @@
4888 "zh-chs": "阿拉伯文(巴林)",
4889 "zh-cht": "阿拉伯文(巴林)",
4890 "xloc": [
4891 - "default.handlebars->29->1025"
4891 + "default.handlebars->29->1028"
4892 ]
4893 },
4894 {
@@ -4908,7 +4908,7 @@
4908 "zh-chs": "阿拉伯文(埃及)",
4909 "zh-cht": "阿拉伯文(埃及)",
4910 "xloc": [
4911 - "default.handlebars->29->1026"
4911 + "default.handlebars->29->1029"
4912 ]
4913 },
4914 {
@@ -4928,7 +4928,7 @@
4928 "zh-chs": "阿拉伯文(伊拉克)",
4929 "zh-cht": "阿拉伯文(伊拉克)",
4930 "xloc": [
4931 - "default.handlebars->29->1027"
4931 + "default.handlebars->29->1030"
4932 ]
4933 },
4934 {
@@ -4948,7 +4948,7 @@
4948 "zh-chs": "阿拉伯文(约旦)",
4949 "zh-cht": "阿拉伯文(約旦)",
4950 "xloc": [
4951 - "default.handlebars->29->1028"
4951 + "default.handlebars->29->1031"
4952 ]
4953 },
4954 {
@@ -4968,7 +4968,7 @@
4968 "zh-chs": "阿拉伯文(科威特)",
4969 "zh-cht": "阿拉伯文(科威特)",
4970 "xloc": [
4971 - "default.handlebars->29->1029"
4971 + "default.handlebars->29->1032"
4972 ]
4973 },
4974 {
@@ -4988,7 +4988,7 @@
4988 "zh-chs": "阿拉伯文(黎巴嫩)",
4989 "zh-cht": "阿拉伯文(黎巴嫩)",
4990 "xloc": [
4991 - "default.handlebars->29->1030"
4991 + "default.handlebars->29->1033"
4992 ]
4993 },
4994 {
@@ -5008,7 +5008,7 @@
5008 "zh-chs": "阿拉伯文(利比亚)",
5009 "zh-cht": "阿拉伯文(利比亞)",
5010 "xloc": [
5011 - "default.handlebars->29->1031"
5011 + "default.handlebars->29->1034"
5012 ]
5013 },
5014 {
@@ -5028,7 +5028,7 @@
5028 "zh-chs": "阿拉伯文(摩洛哥)",
5029 "zh-cht": "阿拉伯文(摩洛哥)",
5030 "xloc": [
5031 - "default.handlebars->29->1032"
5031 + "default.handlebars->29->1035"
5032 ]
5033 },
5034 {
@@ -5048,7 +5048,7 @@
5048 "zh-chs": "阿拉伯文(阿曼)",
5049 "zh-cht": "阿拉伯文(阿曼)",
5050 "xloc": [
5051 - "default.handlebars->29->1033"
5051 + "default.handlebars->29->1036"
5052 ]
5053 },
5054 {
@@ -5068,7 +5068,7 @@
5068 "zh-chs": "阿拉伯文(卡塔尔)",
5069 "zh-cht": "阿拉伯文(卡塔爾)",
5070 "xloc": [
5071 - "default.handlebars->29->1034"
5071 + "default.handlebars->29->1037"
5072 ]
5073 },
5074 {
@@ -5088,7 +5088,7 @@
5088 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5089 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5090 "xloc": [
5091 - "default.handlebars->29->1035"
5091 + "default.handlebars->29->1038"
5092 ]
5093 },
5094 {
@@ -5108,7 +5108,7 @@
5108 "zh-chs": "阿拉伯文(标准)",
5109 "zh-cht": "阿拉伯文(標準)",
5110 "xloc": [
5111 - "default.handlebars->29->1023"
5111 + "default.handlebars->29->1026"
5112 ]
5113 },
5114 {
@@ -5128,7 +5128,7 @@
5128 "zh-chs": "阿拉伯文(叙利亚)",
5129 "zh-cht": "阿拉伯文(敘利亞)",
5130 "xloc": [
5131 - "default.handlebars->29->1036"
5131 + "default.handlebars->29->1039"
5132 ]
5133 },
5134 {
@@ -5148,7 +5148,7 @@
5148 "zh-chs": "阿拉伯文(突尼斯)",
5149 "zh-cht": "阿拉伯文(突尼斯)",
5150 "xloc": [
5151 - "default.handlebars->29->1037"
5151 + "default.handlebars->29->1040"
5152 ]
5153 },
5154 {
@@ -5168,7 +5168,7 @@
5168 "zh-chs": "阿拉伯文(阿联酋)",
5169 "zh-cht": "阿拉伯文(阿聯酋)",
5170 "xloc": [
5171 - "default.handlebars->29->1038"
5171 + "default.handlebars->29->1041"
5172 ]
5173 },
5174 {
@@ -5188,7 +5188,7 @@
5188 "zh-chs": "阿拉伯文(也门)",
5189 "zh-cht": "阿拉伯文(也門)",
5190 "xloc": [
5191 - "default.handlebars->29->1039"
5191 + "default.handlebars->29->1042"
5192 ]
5193 },
5194 {
@@ -5208,7 +5208,7 @@
5208 "zh-chs": "阿拉贡文",
5209 "zh-cht": "阿拉貢文",
5210 "xloc": [
5211 - "default.handlebars->29->1040"
5211 + "default.handlebars->29->1043"
5212 ]
5213 },
5214 {
@@ -5228,8 +5228,8 @@
5228 "zh-chs": "架构",
5229 "zh-cht": "結構",
5230 "xloc": [
5231 - "default-mobile.handlebars->9->336",
5232 - "default.handlebars->29->908"
5231 + "default-mobile.handlebars->9->342",
5232 + "default.handlebars->29->911"
5233 ]
5234 },
5235 {
@@ -5269,8 +5269,8 @@
5269 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5270 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5271 "xloc": [
5272 - "default-mobile.handlebars->9->412",
5273 - "default.handlebars->29->1367"
5272 + "default-mobile.handlebars->9->418",
5273 + "default.handlebars->29->1370"
5274 ]
5275 },
5276 {
@@ -5290,7 +5290,7 @@
5290 "zh-chs": "您确定要删除节点{0}吗?",
5291 "zh-cht": "你確定要刪除節點{0}嗎?",
5292 "xloc": [
5293 - "default.handlebars->29->763"
5293 + "default.handlebars->29->766"
5294 ]
5295 },
5296 {
@@ -5310,7 +5310,7 @@
5310 "zh-chs": "您确定要卸载所选代理吗?",
5311 "zh-cht": "你確定要卸載所選代理嗎?",
5312 "xloc": [
5313 - "default.handlebars->29->752"
5313 + "default.handlebars->29->755"
5314 ]
5315 },
5316 {
@@ -5330,7 +5330,7 @@
5330 "zh-chs": "您确定要卸载所选的{0}代理吗?",
5331 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
5332 "xloc": [
5333 - "default.handlebars->29->751"
5333 + "default.handlebars->29->754"
5334 ]
5335 },
5336 {
@@ -5350,7 +5350,7 @@
5350 "zh-chs": "您确定要{0}插件吗:{1}",
5351 "zh-cht": "你確定要{0}外掛嗎:{1}",
5352 "xloc": [
5353 - "default.handlebars->29->2090"
5353 + "default.handlebars->29->2093"
5354 ]
5355 },
5356 {
@@ -5370,7 +5370,7 @@
5370 "zh-chs": "亚美尼亚文",
5371 "zh-cht": "亞美尼亞文",
5372 "xloc": [
5373 - "default.handlebars->29->1041"
5373 + "default.handlebars->29->1044"
5374 ]
5375 },
5376 {
@@ -5430,7 +5430,7 @@
5430 "zh-chs": "阿萨姆文",
5431 "zh-cht": "阿薩姆文",
5432 "xloc": [
5433 - "default.handlebars->29->1042"
5433 + "default.handlebars->29->1045"
5434 ]
5435 },
5436 {
@@ -5450,7 +5450,7 @@
5450 "zh-chs": "阿斯图里亚斯文",
5451 "zh-cht": "阿斯圖里亞斯文",
5452 "xloc": [
5453 - "default.handlebars->29->1043"
5453 + "default.handlebars->29->1046"
5454 ]
5455 },
5456 {
@@ -5470,7 +5470,7 @@
5470 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5471 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5472 "xloc": [
5473 - "default.handlebars->29->1569"
5473 + "default.handlebars->29->1572"
5474 ]
5475 },
5476 {
@@ -5490,7 +5490,7 @@
5490 "zh-chs": "认证软件",
5491 "zh-cht": "認證軟體",
5492 "xloc": [
5493 - "default.handlebars->29->1904"
5493 + "default.handlebars->29->1907"
5494 ]
5495 },
5496 {
@@ -5514,8 +5514,8 @@
5514 "default-mobile.handlebars->9->52",
5515 "default-mobile.handlebars->9->71",
5516 "default-mobile.handlebars->9->73",
5517 - "default.handlebars->29->1007",
5518 - "default.handlebars->29->1009",
5517 + "default.handlebars->29->1010",
5518 + "default.handlebars->29->1012",
5519 "default.handlebars->29->125",
5520 "default.handlebars->29->130"
5521 ]
@@ -5597,7 +5597,7 @@
5597 "zh-chs": "自动删除",
5598 "zh-cht": "自動刪除",
5599 "xloc": [
5600 - "default.handlebars->29->1303"
5600 + "default.handlebars->29->1306"
5601 ]
5602 },
5603 {
@@ -5661,7 +5661,7 @@
5661 "zh-chs": "可用內存",
5662 "zh-cht": "可用內存",
5663 "xloc": [
5664 - "default.handlebars->29->2043"
5664 + "default.handlebars->29->2046"
5665 ]
5666 },
5667 {
@@ -5681,7 +5681,7 @@
5681 "zh-chs": "阿塞拜疆文",
5682 "zh-cht": "阿塞拜疆文",
5683 "xloc": [
5684 - "default.handlebars->29->1044"
5684 + "default.handlebars->29->1047"
5685 ]
5686 },
5687 {
@@ -5701,8 +5701,8 @@
5701 "zh-chs": "的BIOS",
5702 "zh-cht": "的BIOS",
5703 "xloc": [
5704 - "default-mobile.handlebars->9->378",
5705 - "default.handlebars->29->960"
5704 + "default-mobile.handlebars->9->384",
5705 + "default.handlebars->29->963"
5706 ]
5707 },
5708 {
@@ -5817,8 +5817,8 @@
5817 "zh-chs": "背景与互动",
5818 "zh-cht": "背景與互動",
5819 "xloc": [
5820 - "default.handlebars->29->1473",
5821 - "default.handlebars->29->1480",
5820 + "default.handlebars->29->1476",
5821 + "default.handlebars->29->1483",
5822 "default.handlebars->29->328",
5823 "default.handlebars->29->342"
5824 ]
@@ -5840,8 +5840,8 @@
5840 "zh-chs": "仅背景",
5841 "zh-cht": "僅背景",
5842 "xloc": [
5843 - "default.handlebars->29->1474",
5844 - "default.handlebars->29->1481",
5843 + "default.handlebars->29->1477",
5844 + "default.handlebars->29->1484",
5845 "default.handlebars->29->329",
5846 "default.handlebars->29->343",
5847 "default.handlebars->29->357"
@@ -5884,7 +5884,7 @@
5884 "zh-chs": "备用码",
5885 "zh-cht": "備用碼",
5886 "xloc": [
5887 - "default.handlebars->29->1906"
5887 + "default.handlebars->29->1909"
5888 ]
5889 },
5890 {
@@ -5904,7 +5904,7 @@
5904 "zh-chs": "错误的签名",
5905 "zh-cht": "錯誤的簽名",
5906 "xloc": [
5907 - "default.handlebars->29->2025"
5907 + "default.handlebars->29->2028"
5908 ]
5909 },
5910 {
@@ -5924,7 +5924,7 @@
5924 "zh-chs": "错误的网络证书",
5925 "zh-cht": "錯誤的網絡憑證",
5926 "xloc": [
5927 - "default.handlebars->29->2024"
5927 + "default.handlebars->29->2027"
5928 ]
5929 },
5930 {
@@ -5944,7 +5944,7 @@
5944 "zh-chs": "巴斯克",
5945 "zh-cht": "巴斯克",
5946 "xloc": [
5947 - "default.handlebars->29->1045"
5947 + "default.handlebars->29->1048"
5948 ]
5949 },
5950 {
@@ -5984,7 +5984,7 @@
5984 "zh-chs": "白俄罗斯文",
5985 "zh-cht": "白俄羅斯文",
5986 "xloc": [
5987 - "default.handlebars->29->1047"
5987 + "default.handlebars->29->1050"
5988 ]
5989 },
5990 {
@@ -6004,7 +6004,7 @@
6004 "zh-chs": "孟加拉",
6005 "zh-cht": "孟加拉",
6006 "xloc": [
6007 - "default.handlebars->29->1048"
6007 + "default.handlebars->29->1051"
6008 ]
6009 },
6010 {
@@ -6047,7 +6047,7 @@
6047 "zh-chs": "波斯尼亚文",
6048 "zh-cht": "波斯尼亞文",
6049 "xloc": [
6050 - "default.handlebars->29->1049"
6050 + "default.handlebars->29->1052"
6051 ]
6052 },
6053 {
@@ -6067,7 +6067,7 @@
6067 "zh-chs": "布列塔尼",
6068 "zh-cht": "布列塔尼",
6069 "xloc": [
6070 - "default.handlebars->29->1050"
6070 + "default.handlebars->29->1053"
6071 ]
6072 },
6073 {
@@ -6087,7 +6087,7 @@
6087 "zh-chs": "广播",
6088 "zh-cht": "廣播",
6089 "xloc": [
6090 - "default.handlebars->29->1820",
6090 + "default.handlebars->29->1823",
6091 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6092 ]
6093 },
@@ -6108,7 +6108,7 @@
6108 "zh-chs": "广播消息",
6109 "zh-cht": "廣播消息",
6110 "xloc": [
6111 - "default.handlebars->29->1741"
6111 + "default.handlebars->29->1744"
6112 ]
6113 },
6114 {
@@ -6128,7 +6128,7 @@
6128 "zh-chs": "向所有连接的用户广播消息。",
6129 "zh-cht": "向所有連接的用戶廣播消息。",
6130 "xloc": [
6131 - "default.handlebars->29->1736"
6131 + "default.handlebars->29->1739"
6132 ]
6133 },
6134 {
@@ -6148,7 +6148,7 @@
6148 "zh-chs": "保加利亚文",
6149 "zh-cht": "保加利亞文",
6150 "xloc": [
6151 - "default.handlebars->29->1046"
6151 + "default.handlebars->29->1049"
6152 ]
6153 },
6154 {
@@ -6168,7 +6168,7 @@
6168 "zh-chs": "缅甸文",
6169 "zh-cht": "緬甸文",
6170 "xloc": [
6171 - "default.handlebars->29->1051"
6171 + "default.handlebars->29->1054"
6172 ]
6173 },
6174 {
@@ -6210,7 +6210,7 @@
6210 "zh-cht": "CIRA",
6211 "xloc": [
6212 "default-mobile.handlebars->9->204",
6213 - "default.handlebars->29->1359",
6213 + "default.handlebars->29->1362",
6214 "default.handlebars->29->215",
6215 "default.handlebars->29->417"
6216 ]
@@ -6232,7 +6232,7 @@
6232 "zh-chs": "CIRA服务器",
6233 "zh-cht": "CIRA伺服器",
6234 "xloc": [
6235 - "default.handlebars->29->2078"
6235 + "default.handlebars->29->2081"
6236 ]
6237 },
6238 {
@@ -6252,7 +6252,7 @@
6252 "zh-chs": "CIRA服务器命令",
6253 "zh-cht": "CIRA伺服器指令",
6254 "xloc": [
6255 - "default.handlebars->29->2079"
6255 + "default.handlebars->29->2082"
6256 ]
6257 },
6258 {
@@ -6272,8 +6272,8 @@
6272 "zh-chs": "CPU",
6273 "zh-cht": "CPU",
6274 "xloc": [
6275 - "default-mobile.handlebars->9->384",
6276 - "default.handlebars->29->966"
6275 + "default-mobile.handlebars->9->390",
6276 + "default.handlebars->29->969"
6277 ]
6278 },
6279 {
@@ -6293,7 +6293,7 @@
6293 "zh-chs": "CPU负载",
6294 "zh-cht": "CPU負載",
6295 "xloc": [
6296 - "default.handlebars->29->2039"
6296 + "default.handlebars->29->2042"
6297 ]
6298 },
6299 {
@@ -6313,7 +6313,7 @@
6313 "zh-chs": "最近15分钟的CPU负载",
6314 "zh-cht": "最近15分鐘的CPU負載",
6315 "xloc": [
6316 - "default.handlebars->29->2042"
6316 + "default.handlebars->29->2045"
6317 ]
6318 },
6319 {
@@ -6333,7 +6333,7 @@
6333 "zh-chs": "最近5分钟的CPU负载",
6334 "zh-cht": "最近5分鐘的CPU負載",
6335 "xloc": [
6336 - "default.handlebars->29->2041"
6336 + "default.handlebars->29->2044"
6337 ]
6338 },
6339 {
@@ -6353,7 +6353,7 @@
6353 "zh-chs": "最近一分钟的CPU负载",
6354 "zh-cht": "最近一分鐘的CPU負載",
6355 "xloc": [
6356 - "default.handlebars->29->2040"
6356 + "default.handlebars->29->2043"
6357 ]
6358 },
6359 {
@@ -6373,8 +6373,8 @@
6373 "zh-chs": "CR+LF",
6374 "zh-cht": "CR+LF",
6375 "xloc": [
6376 - "default.handlebars->29->846",
6377 - "default.handlebars->29->855",
6376 + "default.handlebars->29->849",
6377 + "default.handlebars->29->858",
6378 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
6379 ]
6380 },
@@ -6395,7 +6395,7 @@
6395 "zh-chs": "CSV",
6396 "zh-cht": "CSV",
6397 "xloc": [
6398 - "default.handlebars->29->1659"
6398 + "default.handlebars->29->1662"
6399 ]
6400 },
6401 {
@@ -6415,8 +6415,8 @@
6415 "zh-chs": "CSV格式",
6416 "zh-cht": "CSV格式",
6417 "xloc": [
6418 - "default.handlebars->29->1663",
6419 - "default.handlebars->29->1728",
6418 + "default.handlebars->29->1666",
6419 + "default.handlebars->29->1731",
6420 "default.handlebars->29->467"
6421 ]
6422 },
@@ -6437,7 +6437,7 @@
6437 "zh-chs": "呼叫错误",
6438 "zh-cht": "呼叫錯誤",
6439 "xloc": [
6440 - "default.handlebars->29->2091"
6440 + "default.handlebars->29->2094"
6441 ]
6442 },
6443 {
@@ -6459,7 +6459,7 @@
6459 "xloc": [
6460 "default-mobile.handlebars->9->82",
6461 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
6462 - "default.handlebars->29->1281",
6462 + "default.handlebars->29->1284",
6463 "default.handlebars->container->dialog->idx_dlgButtonBar",
6464 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6465 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6486,12 +6486,12 @@
6486 "zh-chs": "容量",
6487 "zh-cht": "容量",
6488 "xloc": [
6489 - "default-mobile.handlebars->9->389",
6490 - "default-mobile.handlebars->9->394",
6491 - "default-mobile.handlebars->9->396",
6492 - "default.handlebars->29->971",
6493 - "default.handlebars->29->976",
6494 - "default.handlebars->29->978"
6489 + "default-mobile.handlebars->9->395",
6490 + "default-mobile.handlebars->9->400",
6491 + "default-mobile.handlebars->9->402",
6492 + "default.handlebars->29->974",
6493 + "default.handlebars->29->979",
6494 + "default.handlebars->29->981"
6495 ]
6496 },
6497 {
@@ -6511,8 +6511,8 @@
6511 "zh-chs": "容量/速度",
6512 "zh-cht": "容量/速度",
6513 "xloc": [
6514 - "default-mobile.handlebars->9->387",
6515 - "default.handlebars->29->969"
6514 + "default-mobile.handlebars->9->393",
6515 + "default.handlebars->29->972"
6516 ]
6517 },
6518 {
@@ -6532,7 +6532,7 @@
6532 "zh-chs": "加泰罗尼亚文",
6533 "zh-cht": "加泰羅尼亞文",
6534 "xloc": [
6535 - "default.handlebars->29->1052"
6535 + "default.handlebars->29->1055"
6536 ]
6537 },
6538 {
@@ -6572,7 +6572,7 @@
6572 "zh-chs": "查莫罗",
6573 "zh-cht": "查莫羅",
6574 "xloc": [
6575 - "default.handlebars->29->1053"
6575 + "default.handlebars->29->1056"
6576 ]
6577 },
6578 {
@@ -6614,7 +6614,7 @@
6614 "zh-chs": "更改{0}的电邮",
6615 "zh-cht": "更改{0}的電郵",
6616 "xloc": [
6617 - "default.handlebars->29->1934"
6617 + "default.handlebars->29->1937"
6618 ]
6619 },
6620 {
@@ -6634,9 +6634,9 @@
6634 "zh-chs": "更改组",
6635 "zh-cht": "更改群",
6636 "xloc": [
6637 - "default.handlebars->29->609",
6638 - "default.handlebars->29->760",
6639 - "default.handlebars->29->761"
6637 + "default.handlebars->29->612",
6638 + "default.handlebars->29->763",
6639 + "default.handlebars->29->764"
6640 ]
6641 },
6642 {
@@ -6657,8 +6657,8 @@
6657 "zh-cht": "更改密碼",
6658 "xloc": [
6659 "default-mobile.handlebars->9->90",
6660 - "default.handlebars->29->1248",
6661 - "default.handlebars->29->1921"
6660 + "default.handlebars->29->1251",
6661 + "default.handlebars->29->1924"
6662 ]
6663 },
6664 {
@@ -6678,7 +6678,7 @@
6678 "zh-chs": "更改{0}的密码",
6679 "zh-cht": "更改{0}的密碼",
6680 "xloc": [
6681 - "default.handlebars->29->1941"
6681 + "default.handlebars->29->1944"
6682 ]
6683 },
6684 {
@@ -6698,7 +6698,7 @@
6698 "zh-chs": "更改{0}的真实名称",
6699 "zh-cht": "更改{0}的真實名稱",
6700 "xloc": [
6701 - "default.handlebars->29->1929"
6701 + "default.handlebars->29->1932"
6702 ]
6703 },
6704 {
@@ -6780,7 +6780,7 @@
6780 "zh-chs": "更改该用户的密码",
6781 "zh-cht": "更改該用戶的密碼",
6782 "xloc": [
6783 - "default.handlebars->29->1920"
6783 + "default.handlebars->29->1923"
6784 ]
6785 },
6786 {
@@ -6820,7 +6820,7 @@
6820 "zh-chs": "在此处更改您的帐户电邮地址。",
6821 "zh-cht": "在此處更改你的帳戶電郵地址。",
6822 "xloc": [
6823 - "default.handlebars->29->1235"
6823 + "default.handlebars->29->1238"
6824 ]
6825 },
6826 {
@@ -6840,7 +6840,7 @@
6840 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6841 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6842 "xloc": [
6843 - "default.handlebars->29->1241"
6843 + "default.handlebars->29->1244"
6844 ]
6845 },
6846 {
@@ -6860,7 +6860,7 @@
6860 "zh-chs": "更改帐户凭据",
6861 "zh-cht": "帳戶憑證已更改",
6862 "xloc": [
6863 - "default.handlebars->29->1621"
6863 + "default.handlebars->29->1624"
6864 ]
6865 },
6866 {
@@ -6880,7 +6880,7 @@
6880 "zh-chs": "{1}组中的设备{0}已更改:{2}",
6881 "zh-cht": "{1}組中的設備{0}已更改:{2}",
6882 "xloc": [
6883 - "default.handlebars->29->1605"
6883 + "default.handlebars->29->1608"
6884 ]
6885 },
6886 {
@@ -6900,7 +6900,7 @@
6900 "zh-chs": "语言从{1}更改为{2}",
6901 "zh-cht": "語言從{1}更改為{2}",
6902 "xloc": [
6903 - "default.handlebars->29->1549"
6903 + "default.handlebars->29->1552"
6904 ]
6905 },
6906 {
@@ -6920,8 +6920,8 @@
6920 "zh-chs": "已更改{0}的用户设备权限",
6921 "zh-cht": "已更改{0}的用戶設備權限",
6922 "xloc": [
6923 - "default.handlebars->29->1607",
6924 - "default.handlebars->29->1628"
6923 + "default.handlebars->29->1610",
6924 + "default.handlebars->29->1631"
6925 ]
6926 },
6927 {
@@ -6941,7 +6941,7 @@
6941 "zh-chs": "更改语言将需要刷新页面。",
6942 "zh-cht": "更改語言將需要刷新頁面。",
6943 "xloc": [
6944 - "default.handlebars->29->1220"
6944 + "default.handlebars->29->1223"
6945 ]
6946 },
6947 {
@@ -6961,9 +6961,9 @@
6961 "zh-chs": "聊天",
6962 "zh-cht": "聊天",
6963 "xloc": [
6964 - "default.handlebars->29->1680",
6965 - "default.handlebars->29->664",
6966 - "default.handlebars->29->685"
6964 + "default.handlebars->29->1683",
6965 + "default.handlebars->29->667",
6966 + "default.handlebars->29->688"
6967 ]
6968 },
6969 {
@@ -6983,10 +6983,10 @@
6983 "zh-chs": "聊天并通知",
6984 "zh-cht": "聊天並通知",
6985 "xloc": [
6986 - "default-mobile.handlebars->9->433",
6987 - "default-mobile.handlebars->9->453",
6988 - "default.handlebars->29->1419",
6989 - "default.handlebars->29->1455"
6986 + "default-mobile.handlebars->9->439",
6987 + "default-mobile.handlebars->9->459",
6988 + "default.handlebars->29->1422",
6989 + "default.handlebars->29->1458"
6990 ]
6991 },
6992 {
@@ -7026,7 +7026,7 @@
7026 "zh-chs": "车臣",
7027 "zh-cht": "車臣",
7028 "xloc": [
7029 - "default.handlebars->29->1054"
7029 + "default.handlebars->29->1057"
7030 ]
7031 },
7032 {
@@ -7126,8 +7126,8 @@
7126 "zh-chs": "检查...",
7127 "zh-cht": "檢查...",
7128 "xloc": [
7129 - "default.handlebars->29->1020",
7130 - "default.handlebars->29->2085"
7129 + "default.handlebars->29->1023",
7130 + "default.handlebars->29->2088"
7131 ]
7132 },
7133 {
@@ -7147,7 +7147,7 @@
7147 "zh-chs": "中文",
7148 "zh-cht": "中文",
7149 "xloc": [
7150 - "default.handlebars->29->1055"
7150 + "default.handlebars->29->1058"
7151 ]
7152 },
7153 {
@@ -7167,7 +7167,7 @@
7167 "zh-chs": "中文(香港)",
7168 "zh-cht": "中文(香港)",
7169 "xloc": [
7170 - "default.handlebars->29->1056"
7170 + "default.handlebars->29->1059"
7171 ]
7172 },
7173 {
@@ -7187,7 +7187,7 @@
7187 "zh-chs": "中文(中国)",
7188 "zh-cht": "中文(中國)",
7189 "xloc": [
7190 - "default.handlebars->29->1057"
7190 + "default.handlebars->29->1060"
7191 ]
7192 },
7193 {
@@ -7207,7 +7207,7 @@
7207 "zh-chs": "简体中文",
7208 "zh-cht": "簡體中文",
7209 "xloc": [
7210 - "default.handlebars->29->1217"
7210 + "default.handlebars->29->1220"
7211 ]
7212 },
7213 {
@@ -7227,7 +7227,7 @@
7227 "zh-chs": "中文(新加坡)",
7228 "zh-cht": "中文(新加坡)",
7229 "xloc": [
7230 - "default.handlebars->29->1058"
7230 + "default.handlebars->29->1061"
7231 ]
7232 },
7233 {
@@ -7247,7 +7247,7 @@
7247 "zh-chs": "中文(台湾)",
7248 "zh-cht": "中文(台灣)",
7249 "xloc": [
7250 - "default.handlebars->29->1059"
7250 + "default.handlebars->29->1062"
7251 ]
7252 },
7253 {
@@ -7267,7 +7267,7 @@
7267 "zh-chs": "繁体中文",
7268 "zh-cht": "繁體中文",
7269 "xloc": [
7270 - "default.handlebars->29->1218"
7270 + "default.handlebars->29->1221"
7271 ]
7272 },
7273 {
@@ -7308,7 +7308,7 @@
7308 "zh-chs": "楚瓦什",
7309 "zh-cht": "楚瓦什",
7310 "xloc": [
7311 - "default.handlebars->29->1060"
7311 + "default.handlebars->29->1063"
7312 ]
7313 },
7314 {
@@ -7346,16 +7346,16 @@
7346 "zh-cht": "清除",
7347 "xloc": [
7348 "default-mobile.handlebars->9->132",
7349 - "default-mobile.handlebars->9->320",
7350 - "default-mobile.handlebars->9->322",
7351 - "default-mobile.handlebars->9->324",
7349 "default-mobile.handlebars->9->326",
7350 + "default-mobile.handlebars->9->328",
7351 + "default-mobile.handlebars->9->330",
7352 + "default-mobile.handlebars->9->332",
7353 "default-mobile.handlebars->9->59",
7354 - "default.handlebars->29->1543",
7355 - "default.handlebars->29->885",
7356 - "default.handlebars->29->887",
7357 - "default.handlebars->29->889",
7358 - "default.handlebars->29->891",
7354 + "default.handlebars->29->1546",
7355 + "default.handlebars->29->888",
7356 + "default.handlebars->29->890",
7357 + "default.handlebars->29->892",
7358 + "default.handlebars->29->894",
7359 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7360 "default.handlebars->container->column_l->p41->3->1",
7361 "messenger.handlebars->xbottom"
@@ -7398,7 +7398,7 @@
7398 "zh-chs": "全部清除",
7399 "zh-cht": "全部清除",
7400 "xloc": [
7401 - "default.handlebars->29->2012"
7401 + "default.handlebars->29->2015"
7402 ]
7403 },
7404 {
@@ -7426,7 +7426,7 @@
7426 "zh-chs": "清除核心",
7427 "zh-cht": "清除核心",
7428 "xloc": [
7429 - "default.handlebars->29->992"
7429 + "default.handlebars->29->995"
7430 ]
7431 },
7432 {
@@ -7466,7 +7466,7 @@
7466 "zh-chs": "清除此通知",
7467 "zh-cht": "清除此通知",
7468 "xloc": [
7469 - "default.handlebars->29->2011"
7469 + "default.handlebars->29->2014"
7470 ]
7471 },
7472 {
@@ -7526,8 +7526,8 @@
7526 "zh-chs": "单击此处编辑设备组名称",
7527 "zh-cht": "單擊此處編輯裝置群名稱",
7528 "xloc": [
7529 - "default.handlebars->29->1292",
7530 - "default.handlebars->29->1494"
7529 + "default.handlebars->29->1295",
7530 + "default.handlebars->29->1497"
7531 ]
7532 },
7533 {
@@ -7567,7 +7567,7 @@
7567 "zh-chs": "单击此处编辑用户组名称",
7568 "zh-cht": "單擊此處編輯用戶群名稱",
7569 "xloc": [
7570 - "default.handlebars->29->1797"
7570 + "default.handlebars->29->1800"
7571 ]
7572 },
7573 {
@@ -7628,7 +7628,7 @@
7628 "zh-cht": "單擊確定將驗證電郵發送到:",
7629 "xloc": [
7630 "default-mobile.handlebars->9->75",
7631 - "default.handlebars->29->1232"
7631 + "default.handlebars->29->1235"
7632 ]
7633 },
7634 {
@@ -7668,8 +7668,8 @@
7668 "zh-chs": "客户端控制模式(CCM)",
7669 "zh-cht": "客戶端控制模式(CCM)",
7670 "xloc": [
7671 - "default-mobile.handlebars->9->365",
7672 - "default.handlebars->29->947"
7671 + "default-mobile.handlebars->9->371",
7672 + "default.handlebars->29->950"
7673 ]
7674 },
7675 {
@@ -7689,7 +7689,7 @@
7689 "zh-chs": "客户编号",
7690 "zh-cht": "客戶編號",
7691 "xloc": [
7692 - "default.handlebars->29->1274"
7692 + "default.handlebars->29->1277"
7693 ]
7694 },
7695 {
@@ -7709,7 +7709,7 @@
7709 "zh-chs": "客户端启动的远程访问",
7710 "zh-cht": "客戶端啟動的遠程訪問",
7711 "xloc": [
7712 - "default.handlebars->29->1358"
7712 + "default.handlebars->29->1361"
7713 ]
7714 },
7715 {
@@ -7729,7 +7729,7 @@
7729 "zh-chs": "客户机密",
7730 "zh-cht": "客戶機密",
7731 "xloc": [
7732 - "default.handlebars->29->1275"
7732 + "default.handlebars->29->1278"
7733 ]
7734 },
7735 {
@@ -7773,7 +7773,7 @@
7773 "default-mobile.handlebars->9->57",
7774 "default.handlebars->29->137",
7775 "default.handlebars->29->145",
7776 - "default.handlebars->29->837"
7776 + "default.handlebars->29->840"
7777 ]
7778 },
7779 {
@@ -7793,7 +7793,7 @@
7793 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
7794 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
7795 "xloc": [
7796 - "default.handlebars->29->1554"
7796 + "default.handlebars->29->1557"
7797 ]
7798 },
7799 {
@@ -7876,10 +7876,10 @@
7876 "en": "Commands",
7877 "nl": "Opdrachten",
7878 "xloc": [
7879 - "default-mobile.handlebars->9->455",
7880 - "default.handlebars->29->1457",
7881 - "default.handlebars->29->666",
7882 - "default.handlebars->29->687"
7879 + "default-mobile.handlebars->9->461",
7880 + "default.handlebars->29->1460",
7881 + "default.handlebars->29->669",
7882 + "default.handlebars->29->690"
7883 ]
7884 },
7885 {
@@ -7899,8 +7899,8 @@
7899 "zh-chs": "通用设备组",
7900 "zh-cht": "通用裝置群",
7901 "xloc": [
7902 - "default.handlebars->29->1828",
7903 - "default.handlebars->29->1946"
7902 + "default.handlebars->29->1831",
7903 + "default.handlebars->29->1949"
7904 ]
7905 },
7906 {
@@ -7920,8 +7920,8 @@
7920 "zh-chs": "通用设备",
7921 "zh-cht": "通用裝置",
7922 "xloc": [
7923 - "default.handlebars->29->1834",
7924 - "default.handlebars->29->1958"
7923 + "default.handlebars->29->1837",
7924 + "default.handlebars->29->1961"
7925 ]
7926 },
7927 {
@@ -7941,7 +7941,7 @@
7941 "zh-chs": "压缩档案...",
7942 "zh-cht": "壓縮檔案...",
7943 "xloc": [
7944 - "default.handlebars->29->862"
7944 + "default.handlebars->29->865"
7945 ]
7946 },
7947 {
@@ -7962,7 +7962,7 @@
7962 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
7963 "xloc": [
7964 "default-mobile.handlebars->9->127",
7965 - "default.handlebars->29->1538"
7965 + "default.handlebars->29->1541"
7966 ]
7967 },
7968 {
@@ -7982,16 +7982,16 @@
7982 "zh-chs": "确认",
7983 "zh-cht": "確認",
7984 "xloc": [
7985 - "default-mobile.handlebars->9->282",
7986 - "default-mobile.handlebars->9->413",
7987 - "default.handlebars->29->1368",
7988 - "default.handlebars->29->1708",
7989 - "default.handlebars->29->1787",
7990 - "default.handlebars->29->1848",
7991 - "default.handlebars->29->1944",
7985 + "default-mobile.handlebars->9->288",
7986 + "default-mobile.handlebars->9->419",
7987 + "default.handlebars->29->1371",
7988 + "default.handlebars->29->1711",
7989 + "default.handlebars->29->1790",
7990 + "default.handlebars->29->1851",
7991 + "default.handlebars->29->1947",
7992 "default.handlebars->29->443",
7993 - "default.handlebars->29->755",
7994 - "default.handlebars->29->764"
7993 + "default.handlebars->29->758",
7994 + "default.handlebars->29->767"
7995 ]
7996 },
7997 {
@@ -8011,8 +8011,8 @@
8011 "zh-chs": "确认将1个副本复制到此位置?",
8012 "zh-cht": "確認將1個副本複製到此位置?",
8013 "xloc": [
8014 - "default-mobile.handlebars->9->315",
8015 - "default.handlebars->29->880"
8014 + "default-mobile.handlebars->9->321",
8015 + "default.handlebars->29->883"
8016 ]
8017 },
8018 {
@@ -8032,7 +8032,7 @@
8032 "zh-chs": "确认{0}个条目的复制到此位置?",
8033 "zh-cht": "確認{0}個條目的複製到此位置?",
8034 "xloc": [
8035 - "default.handlebars->29->879"
8035 + "default.handlebars->29->882"
8036 ]
8037 },
8038 {
@@ -8052,7 +8052,7 @@
8052 "zh-chs": "确认{0}个条目的副本到此位置?",
8053 "zh-cht": "確認{0}個條目的副本到此位置?",
8054 "xloc": [
8055 - "default-mobile.handlebars->9->314"
8055 + "default-mobile.handlebars->9->320"
8056 ]
8057 },
8058 {
@@ -8072,7 +8072,7 @@
8072 "zh-chs": "确认删除选定的帐户?",
8073 "zh-cht": "確認刪除所選帳戶?",
8074 "xloc": [
8075 - "default.handlebars->29->1707"
8075 + "default.handlebars->29->1710"
8076 ]
8077 },
8078 {
@@ -8112,7 +8112,7 @@
8112 "zh-chs": "确认删除选定的用户组?",
8113 "zh-cht": "確認刪除所選用戶群?",
8114 "xloc": [
8115 - "default.handlebars->29->1786"
8115 + "default.handlebars->29->1789"
8116 ]
8117 },
8118 {
@@ -8132,7 +8132,7 @@
8132 "zh-chs": "确认删除用户{0}?",
8133 "zh-cht": "確認刪除用戶{0}?",
8134 "xloc": [
8135 - "default.handlebars->29->1943"
8135 + "default.handlebars->29->1946"
8136 ]
8137 },
8138 {
@@ -8152,7 +8152,7 @@
8152 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8153 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8154 "xloc": [
8155 - "default.handlebars->29->1851"
8155 + "default.handlebars->29->1854"
8156 ]
8157 },
8158 {
@@ -8172,7 +8172,7 @@
8172 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8173 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8174 "xloc": [
8175 - "default.handlebars->29->1973"
8175 + "default.handlebars->29->1976"
8176 ]
8177 },
8178 {
@@ -8192,8 +8192,8 @@
8192 "zh-chs": "确认将1个条目移动到此位置?",
8193 "zh-cht": "確認將1個條目移動到此位置?",
8194 "xloc": [
8195 - "default-mobile.handlebars->9->317",
8196 - "default.handlebars->29->882"
8195 + "default-mobile.handlebars->9->323",
8196 + "default.handlebars->29->885"
8197 ]
8198 },
8199 {
@@ -8213,7 +8213,7 @@
8213 "zh-chs": "确认将{0}个条目移到此位置?",
8214 "zh-cht": "確認將{0}個條目移到該位置?",
8215 "xloc": [
8216 - "default.handlebars->29->881"
8216 + "default.handlebars->29->884"
8217 ]
8218 },
8219 {
@@ -8233,7 +8233,7 @@
8233 "zh-chs": "确认将{0}个条目移到该位置?",
8234 "zh-cht": "確認將{0}個條目移到該位置?",
8235 "xloc": [
8236 - "default-mobile.handlebars->9->316"
8236 + "default-mobile.handlebars->9->322"
8237 ]
8238 },
8239 {
@@ -8253,7 +8253,7 @@
8253 "zh-chs": "确认覆盖?",
8254 "zh-cht": "確認覆蓋?",
8255 "xloc": [
8256 - "default.handlebars->29->1537"
8256 + "default.handlebars->29->1540"
8257 ]
8258 },
8259 {
@@ -8273,8 +8273,8 @@
8273 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
8274 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8275 "xloc": [
8276 - "default.handlebars->29->1841",
8277 - "default.handlebars->29->1964"
8276 + "default.handlebars->29->1844",
8277 + "default.handlebars->29->1967"
8278 ]
8279 },
8280 {
@@ -8294,8 +8294,8 @@
8294 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8295 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8296 "xloc": [
8297 - "default.handlebars->29->1843",
8298 - "default.handlebars->29->1977"
8297 + "default.handlebars->29->1846",
8298 + "default.handlebars->29->1980"
8299 ]
8300 },
8301 {
@@ -8315,7 +8315,7 @@
8315 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
8316 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8317 "xloc": [
8318 - "default.handlebars->29->1966"
8318 + "default.handlebars->29->1969"
8319 ]
8320 },
8321 {
@@ -8335,7 +8335,7 @@
8335 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8336 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8337 "xloc": [
8338 - "default.handlebars->29->1969"
8338 + "default.handlebars->29->1972"
8339 ]
8340 },
8341 {
@@ -8355,8 +8355,8 @@
8355 "zh-chs": "确认删除访问权限?",
8356 "zh-cht": "確認刪除訪問權限?",
8357 "xloc": [
8358 - "default.handlebars->29->1967",
8359 - "default.handlebars->29->1970"
8358 + "default.handlebars->29->1970",
8359 + "default.handlebars->29->1973"
8360 ]
8361 },
8362 {
@@ -8377,7 +8377,7 @@
8377 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
8378 "xloc": [
8379 "default-mobile.handlebars->9->74",
8380 - "default.handlebars->29->1010"
8380 + "default.handlebars->29->1013"
8381 ]
8382 },
8383 {
@@ -8448,7 +8448,7 @@
8448 "zh-chs": "确认删除用户“ {0} ”的权限?",
8449 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
8450 "xloc": [
8451 - "default.handlebars->29->1466"
8451 + "default.handlebars->29->1469"
8452 ]
8453 },
8454 {
@@ -8468,7 +8468,7 @@
8468 "zh-chs": "确认删除用户组“ {0} ”的权限?",
8469 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8470 "xloc": [
8471 - "default.handlebars->29->1468"
8471 + "default.handlebars->29->1471"
8472 ]
8473 },
8474 {
@@ -8505,7 +8505,7 @@
8505 "zh-chs": "确认删除用户{0}?",
8506 "zh-cht": "確認刪除用戶{0}?",
8507 "xloc": [
8508 - "default-mobile.handlebars->9->464"
8508 + "default-mobile.handlebars->9->470"
8509 ]
8510 },
8511 {
@@ -8525,11 +8525,11 @@
8525 "zh-chs": "连接",
8526 "zh-cht": "連接",
8527 "xloc": [
8528 - "default-mobile.handlebars->9->297",
8528 + "default-mobile.handlebars->9->303",
8529 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8530 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8531 - "default.handlebars->29->1320",
8532 - "default.handlebars->29->858",
8531 + "default.handlebars->29->1323",
8532 + "default.handlebars->29->861",
8533 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8534 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
8535 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -8576,7 +8576,7 @@
8576 "zh-chs": "连接到服务器",
8577 "zh-cht": "連接到伺服器",
8578 "xloc": [
8579 - "default.handlebars->29->1362"
8579 + "default.handlebars->29->1365"
8580 ]
8581 },
8582 {
@@ -8697,7 +8697,7 @@
8697 "zh-chs": "已连接的英特尔®AMT",
8698 "zh-cht": "已連接的Intel® AMT",
8699 "xloc": [
8700 - "default.handlebars->29->2030"
8700 + "default.handlebars->29->2033"
8701 ]
8702 },
8703 {
@@ -8717,7 +8717,7 @@
8717 "zh-chs": "已连接的用户",
8718 "zh-cht": "已连接的用户",
8719 "xloc": [
8720 - "default.handlebars->29->2035"
8720 + "default.handlebars->29->2038"
8721 ]
8722 },
8723 {
@@ -8737,8 +8737,8 @@
8737 "zh-chs": "现在已连接",
8738 "zh-cht": "現在已連接",
8739 "xloc": [
8740 - "default-mobile.handlebars->9->340",
8741 - "default.handlebars->29->912"
8740 + "default-mobile.handlebars->9->346",
8741 + "default.handlebars->29->915"
8742 ]
8743 },
8744 {
@@ -8779,13 +8779,13 @@
8779 "zh-cht": "正在連線...",
8780 "xloc": [
8781 "default-mobile.handlebars->9->2",
8782 - "default-mobile.handlebars->9->333",
8782 + "default-mobile.handlebars->9->339",
8783 "default-mobile.handlebars->9->37",
8784 "default.handlebars->29->243",
8785 "default.handlebars->29->246",
8786 "default.handlebars->29->273",
8787 "default.handlebars->29->9",
8788 - "default.handlebars->29->903",
8788 + "default.handlebars->29->906",
8789 "desktop.handlebars->3->2",
8790 "xterm.handlebars->9->2"
8791 ]
@@ -8807,7 +8807,7 @@
8807 "zh-chs": "连接数量",
8808 "zh-cht": "連接數量",
8809 "xloc": [
8810 - "default.handlebars->29->2049"
8810 + "default.handlebars->29->2052"
8811 ]
8812 },
8813 {
@@ -8827,7 +8827,7 @@
8827 "zh-chs": "连接转发器",
8828 "zh-cht": "連接轉發器",
8829 "xloc": [
8830 - "default.handlebars->29->2077"
8830 + "default.handlebars->29->2080"
8831 ]
8832 },
8833 {
@@ -8887,10 +8887,10 @@
8887 "zh-chs": "连接性",
8888 "zh-cht": "連接性",
8889 "xloc": [
8890 - "default-mobile.handlebars->9->249",
8891 - "default.handlebars->29->1501",
8890 + "default-mobile.handlebars->9->255",
8891 + "default.handlebars->29->1504",
8892 "default.handlebars->29->234",
8893 - "default.handlebars->29->596",
8893 + "default.handlebars->29->599",
8894 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
8895 ]
8896 },
@@ -8911,8 +8911,8 @@
8911 "zh-chs": "控制台",
8912 "zh-cht": "控制台",
8913 "xloc": [
8914 - "default.handlebars->29->659",
8915 - "default.handlebars->29->680",
8914 + "default.handlebars->29->662",
8915 + "default.handlebars->29->683",
8916 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
8917 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
8918 "default.handlebars->contextMenu->cxconsole"
@@ -8955,8 +8955,8 @@
8955 "zh-chs": "控制",
8956 "zh-cht": "控制",
8957 "xloc": [
8958 - "default.handlebars->29->658",
8959 - "default.handlebars->29->679",
8958 + "default.handlebars->29->661",
8959 + "default.handlebars->29->682",
8960 "messenger.handlebars->13->1"
8961 ]
8962 },
@@ -8977,7 +8977,7 @@
8977 "zh-chs": "Cookie编码器",
8978 "zh-cht": "Cookie編碼器",
8979 "xloc": [
8980 - "default.handlebars->29->2063"
8980 + "default.handlebars->29->2066"
8981 ]
8982 },
8983 {
@@ -9134,8 +9134,8 @@
9134 "zh-chs": "复制连结到剪贴板",
9135 "zh-cht": "複製連結到剪貼板",
9136 "xloc": [
9137 - "default.handlebars->29->1506",
9138 - "default.handlebars->29->1525",
9137 + "default.handlebars->29->1509",
9138 + "default.handlebars->29->1528",
9139 "default.handlebars->29->195",
9140 "default.handlebars->29->345"
9141 ]
@@ -9238,7 +9238,7 @@
9238 "zh-chs": "复制:“{0}”到“{1}”",
9239 "zh-cht": "複製:“{0}”到“{1}”",
9240 "xloc": [
9241 - "default.handlebars->29->1597"
9241 + "default.handlebars->29->1600"
9242 ]
9243 },
9244 {
@@ -9384,7 +9384,7 @@
9384 "zh-chs": "核心服务器",
9385 "zh-cht": "核心伺服器",
9386 "xloc": [
9387 - "default.handlebars->29->2062"
9387 + "default.handlebars->29->2065"
9388 ]
9389 },
9390 {
@@ -9404,7 +9404,7 @@
9404 "zh-chs": "科西嘉文",
9405 "zh-cht": "科西嘉文",
9406 "xloc": [
9407 - "default.handlebars->29->1061"
9407 + "default.handlebars->29->1064"
9408 ]
9409 },
9410 {
@@ -9424,7 +9424,7 @@
9424 "zh-chs": "创建帐号",
9425 "zh-cht": "創建帳號",
9426 "xloc": [
9427 - "default.handlebars->29->1755",
9427 + "default.handlebars->29->1758",
9428 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9429 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9430 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9467,7 +9467,7 @@
9467 "zh-chs": "创建用户组",
9468 "zh-cht": "創建用戶群",
9469 "xloc": [
9470 - "default.handlebars->29->1794"
9470 + "default.handlebars->29->1797"
9471 ]
9472 },
9473 {
@@ -9487,7 +9487,7 @@
9487 "zh-chs": "创建连结以与访客共享此设备",
9488 "zh-cht": "創建鏈結以與訪客共享此裝置",
9489 "xloc": [
9490 - "default.handlebars->29->607"
9490 + "default.handlebars->29->610"
9491 ]
9492 },
9493 {
@@ -9507,7 +9507,7 @@
9507 "zh-chs": "使用以下选项创建一个新的设备组。",
9508 "zh-cht": "使用以下選項創建一個新的裝置群。",
9509 "xloc": [
9510 - "default.handlebars->29->1255"
9510 + "default.handlebars->29->1258"
9511 ]
9512 },
9513 {
@@ -9547,7 +9547,7 @@
9547 "zh-chs": "创建文件夹:“{0}”",
9548 "zh-cht": "創建文件夾:“{0}”",
9549 "xloc": [
9550 - "default.handlebars->29->1590"
9550 + "default.handlebars->29->1593"
9551 ]
9552 },
9553 {
@@ -9567,7 +9567,7 @@
9567 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9568 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9569 "xloc": [
9570 - "default.handlebars->29->1719"
9570 + "default.handlebars->29->1722"
9571 ]
9572 },
9573 {
@@ -9609,7 +9609,7 @@
9609 "zh-chs": "创建的设备组:{0}",
9610 "zh-cht": "創建的設備組:{0}",
9611 "xloc": [
9612 - "default.handlebars->29->1601"
9612 + "default.handlebars->29->1604"
9613 ]
9614 },
9615 {
@@ -9629,7 +9629,7 @@
9629 "zh-chs": "创建一个连结,该连结允许没有帐户的访客将远程桌面访问此设备最多1小时。",
9630 "zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。",
9631 "xloc": [
9632 - "default.handlebars->29->698"
9632 + "default.handlebars->29->701"
9633 ]
9634 },
9635 {
@@ -9649,7 +9649,7 @@
9649 "zh-chs": "创建",
9650 "zh-cht": "創建",
9651 "xloc": [
9652 - "default.handlebars->29->1880"
9652 + "default.handlebars->29->1883"
9653 ]
9654 },
9655 {
@@ -9669,7 +9669,7 @@
9669 "zh-chs": "创建时间",
9670 "zh-cht": "創作時間",
9671 "xloc": [
9672 - "default.handlebars->29->1302"
9672 + "default.handlebars->29->1305"
9673 ]
9674 },
9675 {
@@ -9711,8 +9711,8 @@
9711 "zh-chs": "创建者",
9712 "zh-cht": "創作者",
9713 "xloc": [
9714 - "default.handlebars->29->1300",
9715 - "default.handlebars->29->1301"
9714 + "default.handlebars->29->1303",
9715 + "default.handlebars->29->1304"
9716 ]
9717 },
9718 {
@@ -9732,7 +9732,7 @@
9732 "zh-chs": "证书",
9733 "zh-cht": "證書",
9734 "xloc": [
9735 - "default.handlebars->29->1272"
9735 + "default.handlebars->29->1275"
9736 ]
9737 },
9738 {
@@ -9752,7 +9752,7 @@
9752 "zh-chs": "克里语",
9753 "zh-cht": "克里語",
9754 "xloc": [
9755 - "default.handlebars->29->1062"
9755 + "default.handlebars->29->1065"
9756 ]
9757 },
9758 {
@@ -9772,7 +9772,7 @@
9772 "zh-chs": "克罗地亚文",
9773 "zh-cht": "克羅地亞文",
9774 "xloc": [
9775 - "default.handlebars->29->1063"
9775 + "default.handlebars->29->1066"
9776 ]
9777 },
9778 {
@@ -9939,7 +9939,7 @@
9939 "zh-chs": "捷克文",
9940 "zh-cht": "捷克文",
9941 "xloc": [
9942 - "default.handlebars->29->1064"
9942 + "default.handlebars->29->1067"
9943 ]
9944 },
9945 {
@@ -9979,7 +9979,7 @@
9979 "zh-chs": "丹麦文",
9980 "zh-cht": "丹麥文",
9981 "xloc": [
9982 - "default.handlebars->29->1065"
9982 + "default.handlebars->29->1068"
9983 ]
9984 },
9985 {
@@ -9999,7 +9999,7 @@
9999 "zh-chs": "数据通道",
10000 "zh-cht": "數據通道",
10001 "xloc": [
10002 - "default.handlebars->29->807",
10002 + "default.handlebars->29->810",
10003 "desktop.handlebars->3->12"
10004 ]
10005 },
@@ -10020,7 +10020,7 @@
10020 "zh-chs": "日期和时间",
10021 "zh-cht": "日期和時間",
10022 "xloc": [
10023 - "default.handlebars->29->1223"
10023 + "default.handlebars->29->1226"
10024 ]
10025 },
10026 {
@@ -10040,8 +10040,8 @@
10040 "zh-chs": "天",
10041 "zh-cht": "天",
10042 "xloc": [
10043 - "default-mobile.handlebars->9->272",
10044 - "default.handlebars->29->739"
10043 + "default-mobile.handlebars->9->278",
10044 + "default.handlebars->29->742"
10045 ]
10046 },
10047 {
@@ -10061,7 +10061,7 @@
10061 "zh-chs": "停用客户端控制模式(CCM)",
10062 "zh-cht": "停用客戶端控制模式(CCM)",
10063 "xloc": [
10064 - "default.handlebars->29->1350"
10064 + "default.handlebars->29->1353"
10065 ]
10066 },
10067 {
@@ -10102,10 +10102,10 @@
10102 "zh-chs": "默认",
10103 "zh-cht": "默認",
10104 "xloc": [
10105 - "default.handlebars->29->1742",
10106 - "default.handlebars->29->1790",
10107 - "default.handlebars->29->1801",
10108 - "default.handlebars->29->1869"
10105 + "default.handlebars->29->1745",
10106 + "default.handlebars->29->1793",
10107 + "default.handlebars->29->1804",
10108 + "default.handlebars->29->1872"
10109 ]
10110 },
10111 {
@@ -10126,12 +10126,12 @@
10126 "zh-cht": "刪除",
10127 "xloc": [
10128 "default-mobile.handlebars->9->122",
10129 - "default-mobile.handlebars->9->307",
10129 + "default-mobile.handlebars->9->313",
10130 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10131 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10132 - "default.handlebars->29->1532",
10132 + "default.handlebars->29->1535",
10133 "default.handlebars->29->500",
10134 - "default.handlebars->29->871",
10134 + "default.handlebars->29->874",
10135 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10136 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10137 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10159,7 +10159,7 @@
10159 "zh-cht": "刪除帳戶",
10160 "xloc": [
10161 "default-mobile.handlebars->9->84",
10162 - "default.handlebars->29->1240"
10162 + "default.handlebars->29->1243"
10163 ]
10164 },
10165 {
@@ -10179,7 +10179,7 @@
10179 "zh-chs": "删除帐户",
10180 "zh-cht": "刪除帳戶",
10181 "xloc": [
10182 - "default.handlebars->29->1709"
10182 + "default.handlebars->29->1712"
10183 ]
10184 },
10185 {
@@ -10199,8 +10199,8 @@
10199 "zh-chs": "删除设备",
10200 "zh-cht": "刪除裝置",
10201 "xloc": [
10202 - "default-mobile.handlebars->9->254",
10203 - "default.handlebars->29->611"
10202 + "default-mobile.handlebars->9->260",
10203 + "default.handlebars->29->614"
10204 ]
10205 },
10206 {
@@ -10220,10 +10220,10 @@
10220 "zh-chs": "删除群组",
10221 "zh-cht": "刪除群組",
10222 "xloc": [
10223 - "default-mobile.handlebars->9->411",
10224 - "default-mobile.handlebars->9->414",
10225 - "default.handlebars->29->1346",
10226 - "default.handlebars->29->1369"
10223 + "default-mobile.handlebars->9->417",
10224 + "default-mobile.handlebars->9->420",
10225 + "default.handlebars->29->1349",
10226 + "default.handlebars->29->1372"
10227 ]
10228 },
10229 {
@@ -10243,8 +10243,8 @@
10243 "zh-chs": "删除节点",
10244 "zh-cht": "刪除節點",
10245 "xloc": [
10246 - "default-mobile.handlebars->9->280",
10247 - "default.handlebars->29->765"
10246 + "default-mobile.handlebars->9->286",
10247 + "default.handlebars->29->768"
10248 ]
10249 },
10250 {
@@ -10284,7 +10284,7 @@
10284 "zh-chs": "删除用户",
10285 "zh-cht": "刪除用戶",
10286 "xloc": [
10287 - "default.handlebars->29->1919"
10287 + "default.handlebars->29->1922"
10288 ]
10289 },
10290 {
@@ -10304,8 +10304,8 @@
10304 "zh-chs": "删除用户群组",
10305 "zh-cht": "刪除用戶群組",
10306 "xloc": [
10307 - "default.handlebars->29->1839",
10308 - "default.handlebars->29->1849"
10307 + "default.handlebars->29->1842",
10308 + "default.handlebars->29->1852"
10309 ]
10310 },
10311 {
@@ -10325,7 +10325,7 @@
10325 "zh-chs": "删除用户群组",
10326 "zh-cht": "刪除用戶群組",
10327 "xloc": [
10328 - "default.handlebars->29->1788"
10328 + "default.handlebars->29->1791"
10329 ]
10330 },
10331 {
@@ -10345,7 +10345,7 @@
10345 "zh-chs": "删除用户{0}",
10346 "zh-cht": "刪除用戶{0}",
10347 "xloc": [
10348 - "default.handlebars->29->1942"
10348 + "default.handlebars->29->1945"
10349 ]
10350 },
10351 {
@@ -10366,7 +10366,7 @@
10366 "zh-cht": "刪除帳戶",
10367 "xloc": [
10368 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10369 - "default.handlebars->29->1705",
10369 + "default.handlebars->29->1708",
10370 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10371 ]
10372 },
@@ -10407,7 +10407,7 @@
10407 "zh-chs": "删除群组",
10408 "zh-cht": "刪除群組",
10409 "xloc": [
10410 - "default.handlebars->29->1784"
10410 + "default.handlebars->29->1787"
10411 ]
10412 },
10413 {
@@ -10447,7 +10447,7 @@
10447 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10448 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10449 "xloc": [
10450 - "default.handlebars->29->1592"
10450 + "default.handlebars->29->1595"
10451 ]
10452 },
10453 {
@@ -10468,9 +10468,9 @@
10468 "zh-cht": "刪除所選項目?",
10469 "xloc": [
10470 "default-mobile.handlebars->9->124",
10471 - "default-mobile.handlebars->9->309",
10472 - "default.handlebars->29->1534",
10473 - "default.handlebars->29->873"
10471 + "default-mobile.handlebars->9->315",
10472 + "default.handlebars->29->1537",
10473 + "default.handlebars->29->876"
10474 ]
10475 },
10476 {
@@ -10490,7 +10490,7 @@
10490 "zh-chs": "删除用户群组{0}?",
10491 "zh-cht": "刪除用戶群組{0}?",
10492 "xloc": [
10493 - "default.handlebars->29->1847"
10493 + "default.handlebars->29->1850"
10494 ]
10495 },
10496 {
@@ -10511,9 +10511,9 @@
10511 "zh-cht": "刪除{0}個所選項目?",
10512 "xloc": [
10513 "default-mobile.handlebars->9->123",
10514 - "default-mobile.handlebars->9->308",
10515 - "default.handlebars->29->1533",
10516 - "default.handlebars->29->872"
10514 + "default-mobile.handlebars->9->314",
10515 + "default.handlebars->29->1536",
10516 + "default.handlebars->29->875"
10517 ]
10518 },
10519 {
@@ -10533,7 +10533,7 @@
10533 "zh-chs": "删除{0}?",
10534 "zh-cht": "刪除{0}?",
10535 "xloc": [
10536 - "default-mobile.handlebars->9->281"
10536 + "default-mobile.handlebars->9->287"
10537 ]
10538 },
10539 {
@@ -10553,7 +10553,7 @@
10553 "zh-chs": "删除:“{0}”",
10554 "zh-cht": "刪除:“{0}”",
10555 "xloc": [
10556 - "default.handlebars->29->1591"
10556 + "default.handlebars->29->1594"
10557 ]
10558 },
10559 {
@@ -10573,7 +10573,7 @@
10573 "zh-chs": "删除:“{0}”,{1}个元素已删除",
10574 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10575 "xloc": [
10576 - "default.handlebars->29->1593"
10576 + "default.handlebars->29->1596"
10577 ]
10578 },
10579 {
@@ -10593,7 +10593,7 @@
10593 "zh-chs": "被拒绝",
10594 "zh-cht": "被拒絕",
10595 "xloc": [
10596 - "default.handlebars->29->803",
10596 + "default.handlebars->29->806",
10597 "desktop.handlebars->3->8"
10598 ]
10599 },
@@ -10686,23 +10686,23 @@
10686 "default-mobile.handlebars->9->101",
10687 "default-mobile.handlebars->9->225",
10688 "default-mobile.handlebars->9->226",
10689 - "default-mobile.handlebars->9->286",
10690 - "default-mobile.handlebars->9->346",
10691 - "default-mobile.handlebars->9->403",
10692 - "default-mobile.handlebars->9->416",
10693 - "default.handlebars->29->1260",
10694 - "default.handlebars->29->1297",
10695 - "default.handlebars->29->1371",
10696 - "default.handlebars->29->1793",
10697 - "default.handlebars->29->1803",
10698 - "default.handlebars->29->1804",
10699 - "default.handlebars->29->1845",
10689 + "default-mobile.handlebars->9->292",
10690 + "default-mobile.handlebars->9->352",
10691 + "default-mobile.handlebars->9->409",
10692 + "default-mobile.handlebars->9->422",
10693 + "default.handlebars->29->1263",
10694 + "default.handlebars->29->1300",
10695 + "default.handlebars->29->1374",
10696 + "default.handlebars->29->1796",
10697 + "default.handlebars->29->1806",
10698 + "default.handlebars->29->1807",
10699 + "default.handlebars->29->1848",
10700 "default.handlebars->29->541",
10701 "default.handlebars->29->542",
10702 "default.handlebars->29->77",
10703 - "default.handlebars->29->798",
10704 - "default.handlebars->29->918",
10705 - "default.handlebars->29->928",
10703 + "default.handlebars->29->801",
10704 + "default.handlebars->29->921",
10705 + "default.handlebars->29->931",
10706 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
10707 ]
10708 },
@@ -10740,11 +10740,11 @@
10740 "zh-chs": "桌面",
10741 "zh-cht": "桌面",
10742 "xloc": [
10743 - "default-mobile.handlebars->9->261",
10744 - "default.handlebars->29->1377",
10745 - "default.handlebars->29->1989",
10743 + "default-mobile.handlebars->9->267",
10744 + "default.handlebars->29->1380",
10745 + "default.handlebars->29->1992",
10746 "default.handlebars->29->506",
10747 - "default.handlebars->29->843",
10747 + "default.handlebars->29->846",
10748 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
10749 "default.handlebars->contextMenu->cxdesktop",
10750 "desktop.handlebars->3->24"
@@ -10787,10 +10787,10 @@
10787 "zh-chs": "桌面通知",
10788 "zh-cht": "桌面通知",
10789 "xloc": [
10790 - "default.handlebars->29->1311",
10791 - "default.handlebars->29->1808",
10792 - "default.handlebars->29->1895",
10793 - "default.handlebars->29->577"
10790 + "default.handlebars->29->1314",
10791 + "default.handlebars->29->1811",
10792 + "default.handlebars->29->1898",
10793 + "default.handlebars->29->580"
10794 ]
10795 },
10796 {
@@ -10810,10 +10810,10 @@
10810 "zh-chs": "桌面提示",
10811 "zh-cht": "桌面提示",
10812 "xloc": [
10813 - "default.handlebars->29->1310",
10814 - "default.handlebars->29->1807",
10815 - "default.handlebars->29->1894",
10816 - "default.handlebars->29->576"
10813 + "default.handlebars->29->1313",
10814 + "default.handlebars->29->1810",
10815 + "default.handlebars->29->1897",
10816 + "default.handlebars->29->579"
10817 ]
10818 },
10819 {
@@ -10833,10 +10833,10 @@
10833 "zh-chs": "桌面提示+工具栏",
10834 "zh-cht": "桌面提示+工具欄",
10835 "xloc": [
10836 - "default.handlebars->29->1308",
10837 - "default.handlebars->29->1805",
10838 - "default.handlebars->29->1892",
10839 - "default.handlebars->29->574"
10836 + "default.handlebars->29->1311",
10837 + "default.handlebars->29->1808",
10838 + "default.handlebars->29->1895",
10839 + "default.handlebars->29->577"
10840 ]
10841 },
10842 {
@@ -10877,10 +10877,10 @@
10877 "zh-chs": "桌面工具栏",
10878 "zh-cht": "桌面工具欄",
10879 "xloc": [
10880 - "default.handlebars->29->1309",
10881 - "default.handlebars->29->1806",
10882 - "default.handlebars->29->1893",
10883 - "default.handlebars->29->575"
10880 + "default.handlebars->29->1312",
10881 + "default.handlebars->29->1809",
10882 + "default.handlebars->29->1896",
10883 + "default.handlebars->29->578"
10884 ]
10885 },
10886 {
@@ -10900,7 +10900,7 @@
10900 "zh-chs": "桌面时段",
10901 "zh-cht": "桌面時段",
10902 "xloc": [
10903 - "default.handlebars->29->842"
10903 + "default.handlebars->29->845"
10904 ]
10905 },
10906 {
@@ -10941,7 +10941,7 @@
10941 "zh-chs": "细节",
10942 "zh-cht": "細節",
10943 "xloc": [
10944 - "default-mobile.handlebars->9->263",
10944 + "default-mobile.handlebars->9->269",
10945 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
10946 "default.handlebars->contextMenu->cxdetails"
10947 ]
@@ -10983,9 +10983,9 @@
10983 "zh-chs": "设备",
10984 "zh-cht": "裝置",
10985 "xloc": [
10986 - "default.handlebars->29->1400",
10986 + "default.handlebars->29->1403",
10987 "default.handlebars->29->186",
10988 - "default.handlebars->29->1961",
10988 + "default.handlebars->29->1964",
10989 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
10990 ]
10991 },
@@ -11006,8 +11006,8 @@
11006 "zh-chs": "设备指令",
11007 "zh-cht": "裝置指令",
11008 "xloc": [
11009 - "default-mobile.handlebars->9->271",
11010 - "default.handlebars->29->730"
11009 + "default-mobile.handlebars->9->277",
11010 + "default.handlebars->29->733"
11011 ]
11012 },
11013 {
@@ -11034,14 +11034,14 @@
11034 "zh-chs": "设备组",
11035 "zh-cht": "裝置群",
11036 "xloc": [
11037 - "default.handlebars->29->1395",
11037 "default.handlebars->29->1398",
11039 - "default.handlebars->29->1399",
11040 - "default.handlebars->29->1656",
11041 - "default.handlebars->29->1831",
11042 - "default.handlebars->29->1837",
11043 - "default.handlebars->29->1949",
11044 - "default.handlebars->29->1998"
11038 + "default.handlebars->29->1401",
11039 + "default.handlebars->29->1402",
11040 + "default.handlebars->29->1659",
11041 + "default.handlebars->29->1834",
11042 + "default.handlebars->29->1840",
11043 + "default.handlebars->29->1952",
11044 + "default.handlebars->29->2001"
11045 ]
11046 },
11047 {
@@ -11061,8 +11061,8 @@
11061 "zh-chs": "设备组用户",
11062 "zh-cht": "裝置群用戶",
11063 "xloc": [
11064 - "default-mobile.handlebars->9->462",
11065 - "default.handlebars->29->1464"
11064 + "default-mobile.handlebars->9->468",
11065 + "default.handlebars->29->1467"
11066 ]
11067 },
11068 {
@@ -11083,11 +11083,11 @@
11083 "zh-cht": "裝置群",
11084 "xloc": [
11085 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11086 - "default.handlebars->29->1672",
11087 - "default.handlebars->29->1778",
11088 - "default.handlebars->29->1818",
11089 - "default.handlebars->29->1889",
11090 - "default.handlebars->29->2033",
11086 + "default.handlebars->29->1675",
11087 + "default.handlebars->29->1781",
11088 + "default.handlebars->29->1821",
11089 + "default.handlebars->29->1892",
11090 + "default.handlebars->29->2036",
11091 "default.handlebars->container->column_l->p2->p2info->7"
11092 ]
11093 },
@@ -11128,7 +11128,7 @@
11128 "zh-chs": "设备位置",
11129 "zh-cht": "裝置位置",
11130 "xloc": [
11131 - "default.handlebars->29->766"
11131 + "default.handlebars->29->769"
11132 ]
11133 },
11134 {
@@ -11148,7 +11148,7 @@
11148 "zh-chs": "设备消息",
11149 "zh-cht": "裝置訊息",
11150 "xloc": [
11151 - "default.handlebars->29->695"
11151 + "default.handlebars->29->698"
11152 ]
11153 },
11154 {
@@ -11168,10 +11168,10 @@
11168 "zh-chs": "设备名称",
11169 "zh-cht": "裝置名稱",
11170 "xloc": [
11171 - "default-mobile.handlebars->9->284",
11172 - "default.handlebars->29->1997",
11171 + "default-mobile.handlebars->9->290",
11172 + "default.handlebars->29->2000",
11173 "default.handlebars->29->287",
11174 - "default.handlebars->29->796",
11174 + "default.handlebars->29->799",
11175 "player.handlebars->3->9"
11176 ]
11177 },
@@ -11193,7 +11193,7 @@
11193 "zh-cht": "裝置通知",
11194 "xloc": [
11195 "default.handlebars->29->465",
11196 - "default.handlebars->29->697"
11196 + "default.handlebars->29->700"
11197 ]
11198 },
11199 {
@@ -11213,7 +11213,7 @@
11213 "zh-chs": "设备提示",
11214 "zh-cht": "裝置吐司",
11215 "xloc": [
11216 - "default-mobile.handlebars->9->259"
11216 + "default-mobile.handlebars->9->265"
11217 ]
11218 },
11219 {
@@ -11233,8 +11233,8 @@
11233 "zh-chs": "设备连接。",
11234 "zh-cht": "裝置連接。",
11235 "xloc": [
11236 - "default.handlebars->29->1228",
11237 - "default.handlebars->29->1485"
11236 + "default.handlebars->29->1231",
11237 + "default.handlebars->29->1488"
11238 ]
11239 },
11240 {
@@ -11254,8 +11254,8 @@
11254 "zh-chs": "设备断开连接。",
11255 "zh-cht": "裝置斷開連接。",
11256 "xloc": [
11257 - "default.handlebars->29->1229",
11258 - "default.handlebars->29->1486"
11257 + "default.handlebars->29->1232",
11258 + "default.handlebars->29->1489"
11259 ]
11260 },
11261 {
@@ -11275,7 +11275,7 @@
11275 "zh-chs": "创建的设备组:{0}",
11276 "zh-cht": "設備組已創建:{0}",
11277 "xloc": [
11278 - "default.handlebars->29->1622"
11278 + "default.handlebars->29->1625"
11279 ]
11280 },
11281 {
@@ -11295,7 +11295,7 @@
11295 "zh-chs": "设备组已删除:{0}",
11296 "zh-cht": "設備組已刪除:{0}",
11297 "xloc": [
11298 - "default.handlebars->29->1623"
11298 + "default.handlebars->29->1626"
11299 ]
11300 },
11301 {
@@ -11315,7 +11315,7 @@
11315 "zh-chs": "设备组成员身份已更改:{0}",
11316 "zh-cht": "設備組成員身份已更改:{0}",
11317 "xloc": [
11318 - "default.handlebars->29->1624"
11318 + "default.handlebars->29->1627"
11319 ]
11320 },
11321 {
@@ -11335,7 +11335,7 @@
11335 "zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
11336 "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
11337 "xloc": [
11338 - "default.handlebars->29->692"
11338 + "default.handlebars->29->695"
11339 ]
11340 },
11341 {
@@ -11355,7 +11355,7 @@
11355 "zh-chs": "设备组通知已更改",
11356 "zh-cht": "設備組通知已更改",
11357 "xloc": [
11358 - "default.handlebars->29->1619"
11358 + "default.handlebars->29->1622"
11359 ]
11360 },
11361 {
@@ -11375,7 +11375,7 @@
11375 "zh-chs": "未删除的设备组:{0}",
11376 "zh-cht": "未刪除的設備組:{0}",
11377 "xloc": [
11378 - "default.handlebars->29->1602"
11378 + "default.handlebars->29->1605"
11379 ]
11380 },
11381 {
@@ -11768,7 +11768,7 @@
11768 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11769 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11770 "xloc": [
11771 - "default.handlebars->29->1604"
11771 + "default.handlebars->29->1607"
11772 ]
11773 },
11774 {
@@ -11805,8 +11805,8 @@
11805 "zh-chs": "设备",
11806 "zh-cht": "裝置",
11807 "xloc": [
11808 - "default.handlebars->29->1779",
11809 - "default.handlebars->29->1819"
11808 + "default.handlebars->29->1782",
11809 + "default.handlebars->29->1822"
11810 ]
11811 },
11812 {
@@ -11826,7 +11826,7 @@
11826 "zh-chs": "已禁用",
11827 "zh-cht": "已禁用",
11828 "xloc": [
11829 - "default.handlebars->29->569"
11829 + "default.handlebars->29->572"
11830 ]
11831 },
11832 {
@@ -11846,7 +11846,7 @@
11846 "zh-chs": "禁用的电子邮件两因素身份验证",
11847 "zh-cht": "禁用的電子郵件兩因素身份驗證",
11848 "xloc": [
11849 - "default.handlebars->29->1635"
11849 + "default.handlebars->29->1638"
11850 ]
11851 },
11852 {
@@ -11866,10 +11866,10 @@
11866 "zh-chs": "断线",
11867 "zh-cht": "斷線",
11868 "xloc": [
11869 - "default-mobile.handlebars->9->298",
11869 + "default-mobile.handlebars->9->304",
11870 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11871 - "default.handlebars->29->1321",
11872 - "default.handlebars->29->859",
11871 + "default.handlebars->29->1324",
11872 + "default.handlebars->29->862",
11873 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11874 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
11875 "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -11946,7 +11946,7 @@
11946 "zh-chs": "在远程设备上显示一个消息框。",
11947 "zh-cht": "在遠程裝置上顯示一個訊息框。",
11948 "xloc": [
11949 - "default.handlebars->29->696"
11949 + "default.handlebars->29->699"
11950 ]
11951 },
11952 {
@@ -11986,7 +11986,7 @@
11986 "zh-chs": "在远程设备上显示短信",
11987 "zh-cht": "在遠程裝置上顯示短信",
11988 "xloc": [
11989 - "default.handlebars->29->605"
11989 + "default.handlebars->29->608"
11990 ]
11991 },
11992 {
@@ -12006,7 +12006,7 @@
12006 "zh-chs": "显示设备组名称",
12007 "zh-cht": "顯示裝置群名稱",
12008 "xloc": [
12009 - "default.handlebars->29->1227"
12009 + "default.handlebars->29->1230"
12010 ]
12011 },
12012 {
@@ -12026,7 +12026,7 @@
12026 "zh-chs": "显示名称",
12027 "zh-cht": "顯示名稱",
12028 "xloc": [
12029 - "default.handlebars->29->828"
12029 + "default.handlebars->29->831"
12030 ]
12031 },
12032 {
@@ -12046,7 +12046,7 @@
12046 "zh-chs": "显示公共连结",
12047 "zh-cht": "顯示公共鏈結",
12048 "xloc": [
12049 - "default.handlebars->29->1505"
12049 + "default.handlebars->29->1508"
12050 ]
12051 },
12052 {
@@ -12066,7 +12066,7 @@
12066 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12067 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12068 "xloc": [
12069 - "default.handlebars->29->1564"
12069 + "default.handlebars->29->1567"
12070 ]
12071 },
12072 {
@@ -12086,7 +12086,7 @@
12086 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12087 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12088 "xloc": [
12089 - "default.handlebars->29->1572"
12089 + "default.handlebars->29->1575"
12090 ]
12091 },
12092 {
@@ -12106,7 +12106,7 @@
12106 "zh-chs": "什么都不做",
12107 "zh-cht": "什麼都不做",
12108 "xloc": [
12109 - "default.handlebars->29->1356"
12109 + "default.handlebars->29->1359"
12110 ]
12111 },
12112 {
@@ -12126,10 +12126,10 @@
12126 "zh-chs": "域",
12127 "zh-cht": "域",
12128 "xloc": [
12129 - "default.handlebars->29->1743",
12130 - "default.handlebars->29->1791",
12131 - "default.handlebars->29->1800",
12132 - "default.handlebars->29->1868",
12129 + "default.handlebars->29->1746",
12130 + "default.handlebars->29->1794",
12131 + "default.handlebars->29->1803",
12132 + "default.handlebars->29->1871",
12133 "mstsc.handlebars->main->1->3->1->2->1->0",
12134 "mstsc.handlebars->main->1->3->1->2->3"
12135 ]
@@ -12151,7 +12151,7 @@
12151 "zh-chs": "不要配置",
12152 "zh-cht": "不要配置",
12153 "xloc": [
12154 - "default.handlebars->29->1360"
12154 + "default.handlebars->29->1363"
12155 ]
12156 },
12157 {
@@ -12171,7 +12171,7 @@
12171 "zh-chs": "不要连接到服务器",
12172 "zh-cht": "不要連接到伺服器",
12173 "xloc": [
12174 - "default.handlebars->29->1361"
12174 + "default.handlebars->29->1364"
12175 ]
12176 },
12177 {
@@ -12290,8 +12290,8 @@
12290 "zh-chs": "下载档案",
12291 "zh-cht": "下載檔案",
12292 "xloc": [
12293 - "default-mobile.handlebars->9->328",
12294 - "default.handlebars->29->892"
12293 + "default-mobile.handlebars->9->334",
12294 + "default.handlebars->29->895"
12295 ]
12296 },
12297 {
@@ -12331,7 +12331,7 @@
12331 "zh-chs": "下载MeshCmd",
12332 "zh-cht": "下載MeshCmd",
12333 "xloc": [
12334 - "default.handlebars->29->788"
12334 + "default.handlebars->29->791"
12335 ]
12336 },
12337 {
@@ -12391,7 +12391,7 @@
12391 "zh-chs": "下载报告",
12392 "zh-cht": "下載報告",
12393 "xloc": [
12394 - "default.handlebars->29->1661",
12394 + "default.handlebars->29->1664",
12395 "default.handlebars->container->column_l->p3->3->1->0->3"
12396 ]
12397 },
@@ -12412,7 +12412,7 @@
12412 "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
12413 "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
12414 "xloc": [
12415 - "default.handlebars->29->781"
12415 + "default.handlebars->29->784"
12416 ]
12417 },
12418 {
@@ -12492,7 +12492,7 @@
12492 "zh-chs": "下载电源事件",
12493 "zh-cht": "下載電源事件",
12494 "xloc": [
12495 - "default.handlebars->29->740"
12495 + "default.handlebars->29->743"
12496 ]
12497 },
12498 {
@@ -12592,7 +12592,7 @@
12592 "zh-chs": "使用以下一种档案格式下载事件列表。",
12593 "zh-cht": "使用以下一種檔案格式下載事件列表。",
12594 "xloc": [
12595 - "default.handlebars->29->1662"
12595 + "default.handlebars->29->1665"
12596 ]
12597 },
12598 {
@@ -12612,7 +12612,7 @@
12612 "zh-chs": "使用以下一种档案格式下载用户列表。",
12613 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
12614 "xloc": [
12615 - "default.handlebars->29->1727"
12615 + "default.handlebars->29->1730"
12616 ]
12617 },
12618 {
@@ -12693,7 +12693,7 @@
12693 "zh-chs": "下载:“{0}”",
12694 "zh-cht": "下載:“{0}”",
12695 "xloc": [
12696 - "default.handlebars->29->1595"
12696 + "default.handlebars->29->1598"
12697 ]
12698 },
12699 {
@@ -12733,7 +12733,7 @@
12733 "zh-chs": "代理重复",
12734 "zh-cht": "代理重複",
12735 "xloc": [
12736 - "default.handlebars->29->2029"
12736 + "default.handlebars->29->2032"
12737 ]
12738 },
12739 {
@@ -12773,7 +12773,7 @@
12773 "zh-chs": "复制用户组",
12774 "zh-cht": "複製用戶群",
12775 "xloc": [
12776 - "default.handlebars->29->1795"
12776 + "default.handlebars->29->1798"
12777 ]
12778 },
12779 {
@@ -12810,8 +12810,8 @@
12810 "zh-chs": "持续时间",
12811 "zh-cht": "持續時間",
12812 "xloc": [
12813 - "default.handlebars->29->1983",
12814 - "default.handlebars->29->2003",
12813 + "default.handlebars->29->1986",
12814 + "default.handlebars->29->2006",
12815 "player.handlebars->3->2"
12816 ]
12817 },
@@ -12832,7 +12832,7 @@
12832 "zh-chs": "在激活期间,代理将有权取得管理员密码信息。",
12833 "zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。",
12834 "xloc": [
12835 - "default.handlebars->29->1366"
12835 + "default.handlebars->29->1369"
12836 ]
12837 },
12838 {
@@ -12852,7 +12852,7 @@
12852 "zh-chs": "荷兰文(比利时)",
12853 "zh-cht": "荷蘭文(比利時)",
12854 "xloc": [
12855 - "default.handlebars->29->1067"
12855 + "default.handlebars->29->1070"
12856 ]
12857 },
12858 {
@@ -12872,7 +12872,7 @@
12872 "zh-chs": "荷兰文(标准)",
12873 "zh-cht": "荷蘭文(標準)",
12874 "xloc": [
12875 - "default.handlebars->29->1066"
12875 + "default.handlebars->29->1069"
12876 ]
12877 },
12878 {
@@ -13141,8 +13141,8 @@
13141 "zh-chs": "编辑设备",
13142 "zh-cht": "編輯裝置",
13143 "xloc": [
13144 - "default-mobile.handlebars->9->289",
13145 - "default.handlebars->29->801"
13144 + "default-mobile.handlebars->9->295",
13145 + "default.handlebars->29->804"
13146 ]
13147 },
13148 {
@@ -13162,13 +13162,13 @@
13162 "zh-chs": "编辑设备组",
13163 "zh-cht": "編輯裝置群",
13164 "xloc": [
13165 - "default-mobile.handlebars->9->417",
13166 - "default-mobile.handlebars->9->419",
13167 - "default-mobile.handlebars->9->439",
13168 - "default.handlebars->29->1372",
13169 - "default.handlebars->29->1404",
13170 - "default.handlebars->29->1428",
13171 - "default.handlebars->29->1440"
13165 + "default-mobile.handlebars->9->423",
13166 + "default-mobile.handlebars->9->425",
13167 + "default-mobile.handlebars->9->445",
13168 + "default.handlebars->29->1375",
13169 + "default.handlebars->29->1407",
13170 + "default.handlebars->29->1431",
13171 + "default.handlebars->29->1443"
13172 ]
13173 },
13174 {
@@ -13188,7 +13188,7 @@
13188 "zh-chs": "编辑设备组功能",
13189 "zh-cht": "編輯裝置群功能",
13190 "xloc": [
13191 - "default.handlebars->29->1390"
13191 + "default.handlebars->29->1393"
13192 ]
13193 },
13194 {
@@ -13208,8 +13208,8 @@
13208 "zh-chs": "编辑设备组权限",
13209 "zh-cht": "編輯裝置群權限",
13210 "xloc": [
13211 - "default.handlebars->29->1425",
13212 - "default.handlebars->29->1437"
13211 + "default.handlebars->29->1428",
13212 + "default.handlebars->29->1440"
13213 ]
13214 },
13215 {
@@ -13229,7 +13229,7 @@
13229 "zh-chs": "编辑设备组用户同意",
13230 "zh-cht": "編輯裝置群用戶同意",
13231 "xloc": [
13232 - "default.handlebars->29->1373"
13232 + "default.handlebars->29->1376"
13233 ]
13234 },
13235 {
@@ -13249,8 +13249,8 @@
13249 "zh-chs": "编辑设备笔记",
13250 "zh-cht": "編輯裝置筆記",
13251 "xloc": [
13252 - "default-mobile.handlebars->9->431",
13253 - "default.handlebars->29->1417"
13252 + "default-mobile.handlebars->9->437",
13253 + "default.handlebars->29->1420"
13254 ]
13255 },
13256 {
@@ -13270,8 +13270,8 @@
13270 "zh-chs": "编辑设备权限",
13271 "zh-cht": "編輯裝置權限",
13272 "xloc": [
13273 - "default.handlebars->29->1430",
13274 - "default.handlebars->29->1432"
13273 + "default.handlebars->29->1433",
13274 + "default.handlebars->29->1435"
13275 ]
13276 },
13277 {
@@ -13311,7 +13311,7 @@
13311 "zh-chs": "编辑设备用户同意",
13312 "zh-cht": "編輯裝置用戶同意",
13313 "xloc": [
13314 - "default.handlebars->29->1375"
13314 + "default.handlebars->29->1378"
13315 ]
13316 },
13317 {
@@ -13331,7 +13331,7 @@
13331 "zh-chs": "编辑群组",
13332 "zh-cht": "編輯群組",
13333 "xloc": [
13334 - "default.handlebars->29->670"
13334 + "default.handlebars->29->673"
13335 ]
13336 },
13337 {
@@ -13351,10 +13351,14 @@
13351 "zh-chs": "编辑英特尔®AMT凭证",
13352 "zh-cht": "編輯Intel® AMT憑證",
13353 "xloc": [
13354 - "default-mobile.handlebars->9->279",
13354 + "default-mobile.handlebars->9->239",
13355 + "default-mobile.handlebars->9->242",
13356 + "default-mobile.handlebars->9->245",
13357 + "default-mobile.handlebars->9->285",
13358 "default.handlebars->29->556",
13359 "default.handlebars->29->559",
13357 - "default.handlebars->29->747"
13360 + "default.handlebars->29->562",
13361 + "default.handlebars->29->750"
13362 ]
13363 },
13364 {
@@ -13374,8 +13378,8 @@
13378 "zh-chs": "编辑笔记",
13379 "zh-cht": "編輯筆記",
13380 "xloc": [
13377 - "default-mobile.handlebars->9->446",
13378 - "default.handlebars->29->1447"
13381 + "default-mobile.handlebars->9->452",
13382 + "default.handlebars->29->1450"
13383 ]
13384 },
13385 {
@@ -13395,7 +13399,7 @@
13399 "zh-chs": "编辑用户同意",
13400 "zh-cht": "編輯用戶同意",
13401 "xloc": [
13398 - "default.handlebars->29->1374"
13402 + "default.handlebars->29->1377"
13403 ]
13404 },
13405 {
@@ -13415,7 +13419,7 @@
13419 "zh-chs": "编辑用户设备组权限",
13420 "zh-cht": "編輯用戶裝置群權限",
13421 "xloc": [
13418 - "default.handlebars->29->1438"
13422 + "default.handlebars->29->1441"
13423 ]
13424 },
13425 {
@@ -13435,7 +13439,7 @@
13439 "zh-chs": "编辑用户设备权限",
13440 "zh-cht": "編輯用戶裝置權限",
13441 "xloc": [
13438 - "default.handlebars->29->1433"
13442 + "default.handlebars->29->1436"
13443 ]
13444 },
13445 {
@@ -13455,7 +13459,7 @@
13459 "zh-chs": "编辑用户组",
13460 "zh-cht": "編輯用戶群",
13461 "xloc": [
13458 - "default.handlebars->29->1846"
13462 + "default.handlebars->29->1849"
13463 ]
13464 },
13465 {
@@ -13475,14 +13479,14 @@
13479 "zh-chs": "编辑用户组设备权限",
13480 "zh-cht": "編輯用戶群裝置權限",
13481 "xloc": [
13478 - "default.handlebars->29->1435"
13482 + "default.handlebars->29->1438"
13483 ]
13484 },
13485 {
13486 "en": "Edit User Group User Consent",
13487 "nl": "Bewerk groepsgebruikerstoestemming",
13488 "xloc": [
13485 - "default.handlebars->29->1376"
13489 + "default.handlebars->29->1379"
13490 ]
13491 },
13492 {
@@ -13544,11 +13548,11 @@
13548 "zh-cht": "電郵",
13549 "xloc": [
13550 "default-mobile.handlebars->9->78",
13547 - "default.handlebars->29->1745",
13548 - "default.handlebars->29->1872",
13549 - "default.handlebars->29->1874",
13550 - "default.handlebars->29->1914",
13551 - "default.handlebars->29->1930",
13551 + "default.handlebars->29->1748",
13552 + "default.handlebars->29->1875",
13553 + "default.handlebars->29->1877",
13554 + "default.handlebars->29->1917",
13555 + "default.handlebars->29->1933",
13556 "default.handlebars->29->312",
13557 "login-mobile.handlebars->5->42",
13558 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13581,7 +13585,7 @@
13585 "zh-cht": "電郵地址變更",
13586 "xloc": [
13587 "default-mobile.handlebars->9->79",
13584 - "default.handlebars->29->1236"
13588 + "default.handlebars->29->1239"
13589 ]
13590 },
13591 {
@@ -13602,7 +13606,7 @@
13606 "zh-cht": "電郵認證",
13607 "xloc": [
13608 "default-mobile.handlebars->9->68",
13605 - "default.handlebars->29->1004"
13609 + "default.handlebars->29->1007"
13610 ]
13611 },
13612 {
@@ -13662,7 +13666,7 @@
13666 "zh-cht": "電郵驗證",
13667 "xloc": [
13668 "default-mobile.handlebars->9->77",
13665 - "default.handlebars->29->1234"
13669 + "default.handlebars->29->1237"
13670 ]
13671 },
13672 {
@@ -13702,7 +13706,7 @@
13706 "zh-chs": "电邮未验证",
13707 "zh-cht": "電郵未驗證",
13708 "xloc": [
13705 - "default.handlebars->29->1691"
13709 + "default.handlebars->29->1694"
13710 ]
13711 },
13712 {
@@ -13722,8 +13726,8 @@
13726 "zh-chs": "电邮已验证",
13727 "zh-cht": "電郵已驗證",
13728 "xloc": [
13725 - "default.handlebars->29->1692",
13726 - "default.handlebars->29->1866"
13729 + "default.handlebars->29->1695",
13730 + "default.handlebars->29->1869"
13731 ]
13732 },
13733 {
@@ -13743,7 +13747,7 @@
13747 "zh-chs": "电邮已验证。",
13748 "zh-cht": "電郵已驗證。",
13749 "xloc": [
13746 - "default.handlebars->29->1751"
13750 + "default.handlebars->29->1754"
13751 ]
13752 },
13753 {
@@ -13763,7 +13767,7 @@
13767 "zh-chs": "电邮未验证",
13768 "zh-cht": "電郵未驗證",
13769 "xloc": [
13766 - "default.handlebars->29->1867"
13770 + "default.handlebars->29->1870"
13771 ]
13772 },
13773 {
@@ -13827,7 +13831,7 @@
13831 "zh-chs": "已通过电邮验证,并且需要重置密码。",
13832 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13833 "xloc": [
13830 - "default.handlebars->29->1752"
13834 + "default.handlebars->29->1755"
13835 ]
13836 },
13837 {
@@ -13847,7 +13851,7 @@
13851 "zh-chs": "电邮/短信流量",
13852 "zh-cht": "電郵/短信流量",
13853 "xloc": [
13850 - "default.handlebars->29->2071"
13854 + "default.handlebars->29->2074"
13855 ]
13856 },
13857 {
@@ -13893,7 +13897,7 @@
13897 "zh-chs": "启用邀请代码",
13898 "zh-cht": "啟用邀請代碼",
13899 "xloc": [
13896 - "default.handlebars->29->1470"
13900 + "default.handlebars->29->1473"
13901 ]
13902 },
13903 {
@@ -13934,7 +13938,7 @@
13938 "zh-cht": "啟用電郵二因子鑑別。",
13939 "xloc": [
13940 "default-mobile.handlebars->9->70",
13937 - "default.handlebars->29->1006"
13941 + "default.handlebars->29->1009"
13942 ]
13943 },
13944 {
@@ -13974,7 +13978,7 @@
13978 "zh-chs": "已启用",
13979 "zh-cht": "已啟用",
13980 "xloc": [
13977 - "default.handlebars->29->2005"
13981 + "default.handlebars->29->2008"
13982 ]
13983 },
13984 {
@@ -13994,7 +13998,7 @@
13998 "zh-chs": "启用电子邮件两因素身份验证",
13999 "zh-cht": "啟用電子郵件兩因素身份驗證",
14000 "xloc": [
13997 - "default.handlebars->29->1634"
14001 + "default.handlebars->29->1637"
14002 ]
14003 },
14004 {
@@ -14034,7 +14038,7 @@
14038 "zh-chs": "时间结束",
14039 "zh-cht": "時間結束",
14040 "xloc": [
14037 - "default.handlebars->29->2002"
14041 + "default.handlebars->29->2005"
14042 ]
14043 },
14044 {
@@ -14054,7 +14058,7 @@
14058 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14059 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14060 "xloc": [
14057 - "default.handlebars->29->1557"
14061 + "default.handlebars->29->1560"
14062 ]
14063 },
14064 {
@@ -14074,7 +14078,7 @@
14078 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14079 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14080 "xloc": [
14077 - "default.handlebars->29->1558"
14081 + "default.handlebars->29->1561"
14082 ]
14083 },
14084 {
@@ -14094,7 +14098,7 @@
14098 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14099 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14100 "xloc": [
14097 - "default.handlebars->29->1555"
14101 + "default.handlebars->29->1558"
14102 ]
14103 },
14104 {
@@ -14114,7 +14118,7 @@
14118 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14119 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14120 "xloc": [
14117 - "default.handlebars->29->1556"
14121 + "default.handlebars->29->1559"
14122 ]
14123 },
14124 {
@@ -14134,7 +14138,7 @@
14138 "zh-chs": "英文",
14139 "zh-cht": "英文",
14140 "xloc": [
14137 - "default.handlebars->29->1068"
14141 + "default.handlebars->29->1071"
14142 ]
14143 },
14144 {
@@ -14154,7 +14158,7 @@
14158 "zh-chs": "英文(澳洲)",
14159 "zh-cht": "英文(澳洲)",
14160 "xloc": [
14157 - "default.handlebars->29->1069"
14161 + "default.handlebars->29->1072"
14162 ]
14163 },
14164 {
@@ -14174,7 +14178,7 @@
14178 "zh-chs": "英文(伯利茲)",
14179 "zh-cht": "英文(伯利茲)",
14180 "xloc": [
14177 - "default.handlebars->29->1070"
14181 + "default.handlebars->29->1073"
14182 ]
14183 },
14184 {
@@ -14194,7 +14198,7 @@
14198 "zh-chs": "英文(加拿大)",
14199 "zh-cht": "英文(加拿大)",
14200 "xloc": [
14197 - "default.handlebars->29->1071"
14201 + "default.handlebars->29->1074"
14202 ]
14203 },
14204 {
@@ -14214,7 +14218,7 @@
14218 "zh-chs": "英文(爱尔兰)",
14219 "zh-cht": "英文(愛爾蘭)",
14220 "xloc": [
14217 - "default.handlebars->29->1072"
14221 + "default.handlebars->29->1075"
14222 ]
14223 },
14224 {
@@ -14234,7 +14238,7 @@
14238 "zh-chs": "英文(牙买加)",
14239 "zh-cht": "英文(牙買加)",
14240 "xloc": [
14237 - "default.handlebars->29->1073"
14241 + "default.handlebars->29->1076"
14242 ]
14243 },
14244 {
@@ -14254,7 +14258,7 @@
14258 "zh-chs": "英文(纽西兰)",
14259 "zh-cht": "英文(紐西蘭)",
14260 "xloc": [
14257 - "default.handlebars->29->1074"
14261 + "default.handlebars->29->1077"
14262 ]
14263 },
14264 {
@@ -14274,7 +14278,7 @@
14278 "zh-chs": "英文(菲律宾)",
14279 "zh-cht": "英文(菲律賓)",
14280 "xloc": [
14277 - "default.handlebars->29->1075"
14281 + "default.handlebars->29->1078"
14282 ]
14283 },
14284 {
@@ -14294,7 +14298,7 @@
14298 "zh-chs": "英语(南非)",
14299 "zh-cht": "英語(南非)",
14300 "xloc": [
14297 - "default.handlebars->29->1076"
14301 + "default.handlebars->29->1079"
14302 ]
14303 },
14304 {
@@ -14314,7 +14318,7 @@
14318 "zh-chs": "英文(特立尼达和多巴哥)",
14319 "zh-cht": "英文(特立尼達和多巴哥)",
14320 "xloc": [
14317 - "default.handlebars->29->1077"
14321 + "default.handlebars->29->1080"
14322 ]
14323 },
14324 {
@@ -14334,7 +14338,7 @@
14338 "zh-chs": "英文(英国)",
14339 "zh-cht": "英文(英國)",
14340 "xloc": [
14337 - "default.handlebars->29->1078"
14341 + "default.handlebars->29->1081"
14342 ]
14343 },
14344 {
@@ -14354,7 +14358,7 @@
14358 "zh-chs": "美国英文",
14359 "zh-cht": "美國英語",
14360 "xloc": [
14357 - "default.handlebars->29->1079"
14361 + "default.handlebars->29->1082"
14362 ]
14363 },
14364 {
@@ -14374,7 +14378,7 @@
14378 "zh-chs": "英文(津巴布韦)",
14379 "zh-cht": "英文(津巴布韋)",
14380 "xloc": [
14377 - "default.handlebars->29->1080"
14381 + "default.handlebars->29->1083"
14382 ]
14383 },
14384 {
@@ -14394,8 +14398,8 @@
14398 "zh-chs": "输入",
14399 "zh-cht": "輸入",
14400 "xloc": [
14397 - "default.handlebars->29->1262",
14398 - "default.handlebars->29->1263"
14401 + "default.handlebars->29->1265",
14402 + "default.handlebars->29->1266"
14403 ]
14404 },
14405 {
@@ -14415,7 +14419,7 @@
14419 "zh-chs": "输入管理领域名称的逗号分隔列表。",
14420 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14421 "xloc": [
14418 - "default.handlebars->29->1756"
14422 + "default.handlebars->29->1759"
14423 ]
14424 },
14425 {
@@ -14455,7 +14459,7 @@
14459 "zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。",
14460 "zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
14461 "xloc": [
14458 - "default.handlebars->29->822",
14462 + "default.handlebars->29->825",
14463 "desktop.handlebars->3->22"
14464 ]
14465 },
@@ -14518,7 +14522,7 @@
14522 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14523 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14524 "xloc": [
14521 - "default.handlebars->29->1001"
14525 + "default.handlebars->29->1004"
14526 ]
14527 },
14528 {
@@ -14578,7 +14582,7 @@
14582 "zh-chs": "世界文",
14583 "zh-cht": "世界語",
14584 "xloc": [
14581 - "default.handlebars->29->1081"
14585 + "default.handlebars->29->1084"
14586 ]
14587 },
14588 {
@@ -14598,7 +14602,7 @@
14602 "zh-chs": "爱沙尼亚文",
14603 "zh-cht": "愛沙尼亞語",
14604 "xloc": [
14601 - "default.handlebars->29->1082"
14605 + "default.handlebars->29->1085"
14606 ]
14607 },
14608 {
@@ -14618,7 +14622,7 @@
14622 "zh-chs": "事件详情",
14623 "zh-cht": "事件詳情",
14624 "xloc": [
14621 - "default.handlebars->29->905"
14625 + "default.handlebars->29->908"
14626 ]
14627 },
14628 {
@@ -14638,7 +14642,7 @@
14642 "zh-chs": "事件列表输出",
14643 "zh-cht": "事件列表輸出",
14644 "xloc": [
14641 - "default.handlebars->29->1667"
14645 + "default.handlebars->29->1670"
14646 ]
14647 },
14648 {
@@ -14731,7 +14735,7 @@
14735 "zh-cht": "到期時間",
14736 "xloc": [
14737 "default.handlebars->29->188",
14734 - "default.handlebars->29->715"
14738 + "default.handlebars->29->718"
14739 ]
14740 },
14741 {
@@ -14791,7 +14795,7 @@
14795 "zh-chs": "扩充式ASCII",
14796 "zh-cht": "擴充式ASCII",
14797 "xloc": [
14794 - "default.handlebars->29->850"
14798 + "default.handlebars->29->853"
14799 ]
14800 },
14801 {
@@ -14831,7 +14835,7 @@
14835 "zh-chs": "外部",
14836 "zh-cht": "外部",
14837 "xloc": [
14834 - "default.handlebars->29->2056"
14838 + "default.handlebars->29->2059"
14839 ]
14840 },
14841 {
@@ -14871,7 +14875,7 @@
14875 "zh-chs": "FYRO马其顿语",
14876 "zh-cht": "FYRO馬其頓語",
14877 "xloc": [
14874 - "default.handlebars->29->1132"
14878 + "default.handlebars->29->1135"
14879 ]
14880 },
14881 {
@@ -14891,7 +14895,7 @@
14895 "zh-chs": "法罗语",
14896 "zh-cht": "法羅語",
14897 "xloc": [
14894 - "default.handlebars->29->1083"
14898 + "default.handlebars->29->1086"
14899 ]
14900 },
14901 {
@@ -14931,7 +14935,7 @@
14935 "zh-chs": "本地用户拒绝后无法启动远程桌面",
14936 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
14937 "xloc": [
14934 - "default.handlebars->29->1580"
14938 + "default.handlebars->29->1583"
14939 ]
14940 },
14941 {
@@ -14951,7 +14955,7 @@
14955 "zh-chs": "本地用户拒绝后无法启动远程文件",
14956 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
14957 "xloc": [
14954 - "default.handlebars->29->1587"
14958 + "default.handlebars->29->1590"
14959 ]
14960 },
14961 {
@@ -14971,7 +14975,7 @@
14975 "zh-chs": "无法启动远程终端接合{0}({1})",
14976 "zh-cht": "無法啟動遠程終端接合{0}({1})",
14977 "xloc": [
14974 - "default.handlebars->29->804",
14978 + "default.handlebars->29->807",
14979 "desktop.handlebars->3->9"
14980 ]
14981 },
@@ -14992,7 +14996,7 @@
14996 "zh-chs": "波斯文(波斯文)",
14997 "zh-cht": "波斯語(波斯語)",
14998 "xloc": [
14995 - "default.handlebars->29->1084"
14999 + "default.handlebars->29->1087"
15000 ]
15001 },
15002 {
@@ -15034,7 +15038,7 @@
15038 "zh-chs": "功能",
15039 "zh-cht": "功能",
15040 "xloc": [
15037 - "default.handlebars->29->1307"
15041 + "default.handlebars->29->1310"
15042 ]
15043 },
15044 {
@@ -15054,7 +15058,7 @@
15058 "zh-chs": "斐济",
15059 "zh-cht": "斐濟",
15060 "xloc": [
15057 - "default.handlebars->29->1085"
15061 + "default.handlebars->29->1088"
15062 ]
15063 },
15064 {
@@ -15094,9 +15098,9 @@
15098 "zh-chs": "档案编辑器",
15099 "zh-cht": "檔案編輯器",
15100 "xloc": [
15097 - "default-mobile.handlebars->9->312",
15101 + "default-mobile.handlebars->9->318",
15102 "default.handlebars->29->498",
15099 - "default.handlebars->29->876"
15103 + "default.handlebars->29->879"
15104 ]
15105 },
15106 {
@@ -15116,8 +15120,8 @@
15120 "zh-chs": "档案操作",
15121 "zh-cht": "檔案操作",
15122 "xloc": [
15119 - "default.handlebars->29->861",
15120 - "default.handlebars->29->863"
15123 + "default.handlebars->29->864",
15124 + "default.handlebars->29->866"
15125 ]
15126 },
15127 {
@@ -15157,7 +15161,7 @@
15161 "zh-chs": "文件系统驱动",
15162 "zh-cht": "FileSystemDriver",
15163 "xloc": [
15160 - "default.handlebars->29->831"
15164 + "default.handlebars->29->834"
15165 ]
15166 },
15167 {
@@ -15178,9 +15182,9 @@
15182 "zh-cht": "檔案",
15183 "xloc": [
15184 "default-mobile.handlebars->9->171",
15181 - "default-mobile.handlebars->9->262",
15182 - "default.handlebars->29->1384",
15183 - "default.handlebars->29->1990",
15185 + "default-mobile.handlebars->9->268",
15186 + "default.handlebars->29->1387",
15187 + "default.handlebars->29->1993",
15188 "default.handlebars->29->258",
15189 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15190 "default.handlebars->contextMenu->cxfiles"
@@ -15223,10 +15227,10 @@
15227 "zh-chs": "档案通知",
15228 "zh-cht": "檔案通知",
15229 "xloc": [
15226 - "default.handlebars->29->1315",
15227 - "default.handlebars->29->1812",
15228 - "default.handlebars->29->1899",
15229 - "default.handlebars->29->581"
15230 + "default.handlebars->29->1318",
15231 + "default.handlebars->29->1815",
15232 + "default.handlebars->29->1902",
15233 + "default.handlebars->29->584"
15234 ]
15235 },
15236 {
@@ -15246,10 +15250,10 @@
15250 "zh-chs": "档案提示",
15251 "zh-cht": "檔案提示",
15252 "xloc": [
15249 - "default.handlebars->29->1314",
15250 - "default.handlebars->29->1811",
15251 - "default.handlebars->29->1898",
15252 - "default.handlebars->29->580"
15253 + "default.handlebars->29->1317",
15254 + "default.handlebars->29->1814",
15255 + "default.handlebars->29->1901",
15256 + "default.handlebars->29->583"
15257 ]
15258 },
15259 {
@@ -15292,7 +15296,7 @@
15296 "zh-chs": "录制会话已完成,{0}秒",
15297 "zh-cht": "錄製會話已完成,{0}秒",
15298 "xloc": [
15295 - "default.handlebars->29->1553"
15299 + "default.handlebars->29->1556"
15300 ]
15301 },
15302 {
@@ -15312,7 +15316,7 @@
15316 "zh-chs": "芬兰",
15317 "zh-cht": "芬蘭",
15318 "xloc": [
15315 - "default.handlebars->29->1086"
15319 + "default.handlebars->29->1089"
15320 ]
15321 },
15322 {
@@ -15465,8 +15469,8 @@
15469 "zh-chs": "下次登录时强制重置密码。",
15470 "zh-cht": "下次登入時強制重置密碼。",
15471 "xloc": [
15468 - "default.handlebars->29->1750",
15469 - "default.handlebars->29->1939"
15472 + "default.handlebars->29->1753",
15473 + "default.handlebars->29->1942"
15474 ]
15475 },
15476 {
@@ -15549,7 +15553,7 @@
15553 "zh-chs": "格式化",
15554 "zh-cht": "格式化",
15555 "xloc": [
15552 - "default.handlebars->29->1658"
15556 + "default.handlebars->29->1661"
15557 ]
15558 },
15559 {
@@ -15590,8 +15594,8 @@
15594 "zh-chs": "自由",
15595 "zh-cht": "自由",
15596 "xloc": [
15593 - "default.handlebars->29->2014",
15594 - "default.handlebars->29->2016"
15597 + "default.handlebars->29->2017",
15598 + "default.handlebars->29->2019"
15599 ]
15600 },
15601 {
@@ -15632,7 +15636,7 @@
15636 "zh-chs": "法文(比利时)",
15637 "zh-cht": "法語(比利時)",
15638 "xloc": [
15635 - "default.handlebars->29->1088"
15639 + "default.handlebars->29->1091"
15640 ]
15641 },
15642 {
@@ -15652,7 +15656,7 @@
15656 "zh-chs": "法文(加拿大)",
15657 "zh-cht": "法語(加拿大)",
15658 "xloc": [
15655 - "default.handlebars->29->1089"
15659 + "default.handlebars->29->1092"
15660 ]
15661 },
15662 {
@@ -15672,7 +15676,7 @@
15676 "zh-chs": "法文(法国)",
15677 "zh-cht": "法語(法國)",
15678 "xloc": [
15675 - "default.handlebars->29->1090"
15679 + "default.handlebars->29->1093"
15680 ]
15681 },
15682 {
@@ -15692,7 +15696,7 @@
15696 "zh-chs": "法文(卢森堡)",
15697 "zh-cht": "法語(盧森堡)",
15698 "xloc": [
15695 - "default.handlebars->29->1091"
15699 + "default.handlebars->29->1094"
15700 ]
15701 },
15702 {
@@ -15712,7 +15716,7 @@
15716 "zh-chs": "法文(摩纳哥)",
15717 "zh-cht": "法語(摩納哥)",
15718 "xloc": [
15715 - "default.handlebars->29->1092"
15719 + "default.handlebars->29->1095"
15720 ]
15721 },
15722 {
@@ -15732,7 +15736,7 @@
15736 "zh-chs": "法文(标准)",
15737 "zh-cht": "法語(標準)",
15738 "xloc": [
15735 - "default.handlebars->29->1087"
15739 + "default.handlebars->29->1090"
15740 ]
15741 },
15742 {
@@ -15752,7 +15756,7 @@
15756 "zh-chs": "法文(瑞士)",
15757 "zh-cht": "法語(瑞士)",
15758 "xloc": [
15755 - "default.handlebars->29->1093"
15759 + "default.handlebars->29->1096"
15760 ]
15761 },
15762 {
@@ -15772,7 +15776,7 @@
15776 "zh-chs": "弗里斯兰文",
15777 "zh-cht": "弗里斯蘭語",
15778 "xloc": [
15775 - "default.handlebars->29->1094"
15779 + "default.handlebars->29->1097"
15780 ]
15781 },
15782 {
@@ -15792,7 +15796,7 @@
15796 "zh-chs": "弗留利",
15797 "zh-cht": "弗留利",
15798 "xloc": [
15795 - "default.handlebars->29->1095"
15799 + "default.handlebars->29->1098"
15800 ]
15801 },
15802 {
@@ -15813,12 +15817,12 @@
15817 "zh-cht": "完整管理員",
15818 "xloc": [
15819 "default-mobile.handlebars->9->105",
15816 - "default-mobile.handlebars->9->409",
15817 - "default-mobile.handlebars->9->418",
15818 - "default-mobile.handlebars->9->438",
15819 - "default.handlebars->29->1269",
15820 - "default.handlebars->29->1403",
15821 - "default.handlebars->29->1762"
15820 + "default-mobile.handlebars->9->415",
15821 + "default-mobile.handlebars->9->424",
15822 + "default-mobile.handlebars->9->444",
15823 + "default.handlebars->29->1272",
15824 + "default.handlebars->29->1406",
15825 + "default.handlebars->29->1765"
15826 ]
15827 },
15828 {
@@ -15838,7 +15842,7 @@
15842 "zh-chs": "完整管理员(保留所有权利)",
15843 "zh-cht": "完整管理員(保留所有權利)",
15844 "xloc": [
15841 - "default.handlebars->29->1439"
15845 + "default.handlebars->29->1442"
15846 ]
15847 },
15848 {
@@ -15875,7 +15879,7 @@
15879 "zh-chs": "完整设备权限",
15880 "zh-cht": "完整裝置權限",
15881 "xloc": [
15878 - "default.handlebars->29->651"
15882 + "default.handlebars->29->654"
15883 ]
15884 },
15885 {
@@ -15895,7 +15899,7 @@
15899 "zh-chs": "全部权限",
15900 "zh-cht": "全部權限",
15901 "xloc": [
15898 - "default.handlebars->29->669"
15902 + "default.handlebars->29->672"
15903 ]
15904 },
15905 {
@@ -15937,7 +15941,7 @@
15941 "zh-chs": "完整管理员",
15942 "zh-cht": "完整管理員",
15943 "xloc": [
15940 - "default.handlebars->29->1860"
15944 + "default.handlebars->29->1863"
15945 ]
15946 },
15947 {
@@ -15957,8 +15961,8 @@
15961 "zh-chs": "GPU",
15962 "zh-cht": "GPU",
15963 "xloc": [
15960 - "default-mobile.handlebars->9->385",
15961 - "default.handlebars->29->967"
15964 + "default-mobile.handlebars->9->391",
15965 + "default.handlebars->29->970"
15966 ]
15967 },
15968 {
@@ -15978,7 +15982,7 @@
15982 "zh-chs": "盖尔文(爱尔兰)",
15983 "zh-cht": "蓋爾語(愛爾蘭)",
15984 "xloc": [
15981 - "default.handlebars->29->1097"
15985 + "default.handlebars->29->1100"
15986 ]
15987 },
15988 {
@@ -15998,7 +16002,7 @@
16002 "zh-chs": "盖尔文(苏格兰文)",
16003 "zh-cht": "蓋爾語(蘇格蘭語)",
16004 "xloc": [
16001 - "default.handlebars->29->1096"
16005 + "default.handlebars->29->1099"
16006 ]
16007 },
16008 {
@@ -16018,7 +16022,7 @@
16022 "zh-chs": "加拉契文",
16023 "zh-cht": "加拉契語",
16024 "xloc": [
16021 - "default.handlebars->29->1098"
16025 + "default.handlebars->29->1101"
16026 ]
16027 },
16028 {
@@ -16058,7 +16062,7 @@
16062 "zh-chs": "一般",
16063 "zh-cht": "一般",
16064 "xloc": [
16061 - "default-mobile.handlebars->9->260",
16065 + "default-mobile.handlebars->9->266",
16066 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev",
16067 "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral",
16068 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral",
@@ -16144,7 +16148,7 @@
16148 "zh-chs": "格鲁吉亚文",
16149 "zh-cht": "格魯吉亞文",
16150 "xloc": [
16147 - "default.handlebars->29->1099"
16151 + "default.handlebars->29->1102"
16152 ]
16153 },
16154 {
@@ -16164,7 +16168,7 @@
16168 "zh-chs": "德文(奥地利)",
16169 "zh-cht": "德語(奧地利)",
16170 "xloc": [
16167 - "default.handlebars->29->1101"
16171 + "default.handlebars->29->1104"
16172 ]
16173 },
16174 {
@@ -16184,7 +16188,7 @@
16188 "zh-chs": "德文(德国)",
16189 "zh-cht": "德文(德國)",
16190 "xloc": [
16187 - "default.handlebars->29->1102"
16191 + "default.handlebars->29->1105"
16192 ]
16193 },
16194 {
@@ -16204,7 +16208,7 @@
16208 "zh-chs": "德文(列支敦士登)",
16209 "zh-cht": "德文(列支敦士登)",
16210 "xloc": [
16207 - "default.handlebars->29->1103"
16211 + "default.handlebars->29->1106"
16212 ]
16213 },
16214 {
@@ -16224,7 +16228,7 @@
16228 "zh-chs": "德文(卢森堡)",
16229 "zh-cht": "德語(盧森堡)",
16230 "xloc": [
16227 - "default.handlebars->29->1104"
16231 + "default.handlebars->29->1107"
16232 ]
16233 },
16234 {
@@ -16244,7 +16248,7 @@
16248 "zh-chs": "德文(标准)",
16249 "zh-cht": "德語(標準)",
16250 "xloc": [
16247 - "default.handlebars->29->1100"
16251 + "default.handlebars->29->1103"
16252 ]
16253 },
16254 {
@@ -16264,7 +16268,7 @@
16268 "zh-chs": "德文(瑞士)",
16269 "zh-cht": "德文(瑞士)",
16270 "xloc": [
16267 - "default.handlebars->29->1105"
16271 + "default.handlebars->29->1108"
16272 ]
16273 },
16274 {
@@ -16284,7 +16288,7 @@
16288 "zh-chs": "获取此设备的MQTT登录凭证。",
16289 "zh-cht": "獲取此裝置的MQTT登入憑證。",
16290 "xloc": [
16287 - "default.handlebars->29->630"
16291 + "default.handlebars->29->633"
16292 ]
16293 },
16294 {
@@ -16325,7 +16329,7 @@
16329 "zh-chs": "正在获取剪贴板内容,{0}个字节",
16330 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
16331 "xloc": [
16328 - "default.handlebars->29->1567"
16332 + "default.handlebars->29->1570"
16333 ]
16334 },
16335 {
@@ -16387,7 +16391,7 @@
16391 "zh-chs": "好",
16392 "zh-cht": "好",
16393 "xloc": [
16390 - "default.handlebars->29->1265"
16394 + "default.handlebars->29->1268"
16395 ]
16396 },
16397 {
@@ -16432,8 +16436,8 @@
16436 "zh-chs": "Google云端硬盘备份",
16437 "zh-cht": "Google雲端硬盤備份",
16438 "xloc": [
16435 - "default.handlebars->29->1276",
16439 "default.handlebars->29->1279",
16440 + "default.handlebars->29->1282",
16441 "default.handlebars->29->204"
16442 ]
16443 },
@@ -16454,7 +16458,7 @@
16458 "zh-chs": "Google云端硬盘控制台",
16459 "zh-cht": "Google雲端硬盤控制台",
16460 "xloc": [
16457 - "default.handlebars->29->1273"
16461 + "default.handlebars->29->1276"
16462 ]
16463 },
16464 {
@@ -16494,7 +16498,7 @@
16498 "zh-chs": "Google云端硬盘备份当前处于活动状态。",
16499 "zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
16500 "xloc": [
16497 - "default.handlebars->29->1277"
16501 + "default.handlebars->29->1280"
16502 ]
16503 },
16504 {
@@ -16514,7 +16518,7 @@
16518 "zh-chs": "希腊文",
16519 "zh-cht": "希臘文",
16520 "xloc": [
16517 - "default.handlebars->29->1106"
16521 + "default.handlebars->29->1109"
16522 ]
16523 },
16524 {
@@ -16556,8 +16560,8 @@
16560 "zh-chs": "集体指令",
16561 "zh-cht": "集體指令",
16562 "xloc": [
16559 - "default.handlebars->29->1706",
16560 - "default.handlebars->29->1785",
16563 + "default.handlebars->29->1709",
16564 + "default.handlebars->29->1788",
16565 "default.handlebars->29->441",
16566 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16567 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16581,7 +16585,7 @@
16585 "zh-chs": "通过...分组",
16586 "zh-cht": "通過...分群",
16587 "xloc": [
16584 - "default.handlebars->29->1654"
16588 + "default.handlebars->29->1657"
16589 ]
16590 },
16591 {
@@ -16601,7 +16605,7 @@
16605 "zh-chs": "组标识符",
16606 "zh-cht": "群標識符",
16607 "xloc": [
16604 - "default.handlebars->29->1802"
16608 + "default.handlebars->29->1805"
16609 ]
16610 },
16611 {
@@ -16621,7 +16625,7 @@
16625 "zh-chs": "群组成员",
16626 "zh-cht": "群組成員",
16627 "xloc": [
16624 - "default.handlebars->29->1823"
16628 + "default.handlebars->29->1826"
16629 ]
16630 },
16631 {
@@ -16641,7 +16645,7 @@
16645 "zh-chs": "用户{0}的群组权限。",
16646 "zh-cht": "用戶{0}的群組權限。",
16647 "xloc": [
16644 - "default.handlebars->29->1402"
16648 + "default.handlebars->29->1405"
16649 ]
16650 },
16651 {
@@ -16661,7 +16665,7 @@
16665 "zh-chs": "{0}的群组权限。",
16666 "zh-cht": "{0}的群組權限。",
16667 "xloc": [
16664 - "default.handlebars->29->1401"
16668 + "default.handlebars->29->1404"
16669 ]
16670 },
16671 {
@@ -16688,7 +16692,7 @@
16692 "zh-chs": "组1,组2,组3",
16693 "zh-cht": "群1,群2,群3",
16694 "xloc": [
16691 - "default-mobile.handlebars->9->288"
16695 + "default-mobile.handlebars->9->294"
16696 ]
16697 },
16698 {
@@ -16729,7 +16733,7 @@
16733 "zh-cht": "來賓姓名",
16734 "xloc": [
16735 "default.handlebars->29->187",
16732 - "default.handlebars->29->699"
16736 + "default.handlebars->29->702"
16737 ]
16738 },
16739 {
@@ -16749,7 +16753,7 @@
16753 "zh-chs": "古久拉提",
16754 "zh-cht": "古久拉提",
16755 "xloc": [
16752 - "default.handlebars->29->1107"
16756 + "default.handlebars->29->1110"
16757 ]
16758 },
16759 {
@@ -16792,7 +16796,7 @@
16796 "zh-chs": "海地文",
16797 "zh-cht": "海地文",
16798 "xloc": [
16795 - "default.handlebars->29->1108"
16799 + "default.handlebars->29->1111"
16800 ]
16801 },
16802 {
@@ -16832,7 +16836,7 @@
16836 "zh-chs": "强行断开代理",
16837 "zh-cht": "強行斷開代理",
16838 "xloc": [
16835 - "default.handlebars->29->996"
16839 + "default.handlebars->29->999"
16840 ]
16841 },
16842 {
@@ -16852,7 +16856,7 @@
16856 "zh-chs": "堆总数",
16857 "zh-cht": "堆總數",
16858 "xloc": [
16855 - "default.handlebars->29->2058"
16859 + "default.handlebars->29->2061"
16860 ]
16861 },
16862 {
@@ -16872,7 +16876,7 @@
16876 "zh-chs": "堆使用",
16877 "zh-cht": "堆使用",
16878 "xloc": [
16875 - "default.handlebars->29->2057"
16879 + "default.handlebars->29->2060"
16880 ]
16881 },
16882 {
@@ -16892,7 +16896,7 @@
16896 "zh-chs": "希伯来文",
16897 "zh-cht": "希伯來文",
16898 "xloc": [
16895 - "default.handlebars->29->1109"
16899 + "default.handlebars->29->1112"
16900 ]
16901 },
16902 {
@@ -16927,7 +16931,7 @@
16931 "en": "Help Requested, user: {0}, details: {1}",
16932 "nl": "Hulp verzoek van, user: {0}, details: {1}",
16933 "xloc": [
16930 - "default.handlebars->29->1644"
16934 + "default.handlebars->29->1647"
16935 ]
16936 },
16937 {
@@ -16962,7 +16966,7 @@
16966 "zh-chs": "帮助翻译MeshCentral",
16967 "zh-cht": "幫助翻譯MeshCentral",
16968 "xloc": [
16965 - "default.handlebars->29->1224"
16969 + "default.handlebars->29->1227"
16970 ]
16971 },
16972 {
@@ -17066,7 +17070,7 @@
17070 "zh-chs": "印地文",
17071 "zh-cht": "印地文",
17072 "xloc": [
17069 - "default.handlebars->29->1110"
17073 + "default.handlebars->29->1113"
17074 ]
17075 },
17076 {
@@ -17103,8 +17107,8 @@
17107 "zh-chs": "保存1个条目进行复制",
17108 "zh-cht": "保存1個項目進行複製",
17109 "xloc": [
17106 - "default-mobile.handlebars->9->321",
17107 - "default.handlebars->29->886"
17110 + "default-mobile.handlebars->9->327",
17111 + "default.handlebars->29->889"
17112 ]
17113 },
17114 {
@@ -17124,8 +17128,8 @@
17128 "zh-chs": "保存1个项目进行移动",
17129 "zh-cht": "保存1個項目進行移動",
17130 "xloc": [
17127 - "default-mobile.handlebars->9->325",
17128 - "default.handlebars->29->890"
17131 + "default-mobile.handlebars->9->331",
17132 + "default.handlebars->29->893"
17133 ]
17134 },
17135 {
@@ -17145,8 +17149,8 @@
17149 "zh-chs": "保存{0}个条目进行复制",
17150 "zh-cht": "保留{0}個項目進行複製",
17151 "xloc": [
17148 - "default-mobile.handlebars->9->319",
17149 - "default.handlebars->29->884"
17152 + "default-mobile.handlebars->9->325",
17153 + "default.handlebars->29->887"
17154 ]
17155 },
17156 {
@@ -17166,8 +17170,8 @@
17170 "zh-chs": "保存{0}个条目以进行移动",
17171 "zh-cht": "保存{0}個項目以進行移動",
17172 "xloc": [
17169 - "default-mobile.handlebars->9->323",
17170 - "default.handlebars->29->888"
17173 + "default-mobile.handlebars->9->329",
17174 + "default.handlebars->29->891"
17175 ]
17176 },
17177 {
@@ -17188,7 +17192,7 @@
17192 "zh-cht": "保存{0}項目{1}給{2}",
17193 "xloc": [
17194 "default-mobile.handlebars->9->129",
17191 - "default.handlebars->29->1540"
17195 + "default.handlebars->29->1543"
17196 ]
17197 },
17198 {
@@ -17211,10 +17215,10 @@
17215 "default-mobile.handlebars->9->220",
17216 "default-mobile.handlebars->9->221",
17217 "default-mobile.handlebars->9->223",
17214 - "default-mobile.handlebars->9->285",
17218 + "default-mobile.handlebars->9->291",
17219 "default.handlebars->29->288",
17220 "default.handlebars->29->538",
17217 - "default.handlebars->29->797"
17221 + "default.handlebars->29->800"
17222 ]
17223 },
17224 {
@@ -17234,7 +17238,7 @@
17238 "zh-chs": "主机名同步",
17239 "zh-cht": "主機名同步",
17240 "xloc": [
17237 - "default.handlebars->29->1304"
17241 + "default.handlebars->29->1307"
17242 ]
17243 },
17244 {
@@ -17254,7 +17258,7 @@
17258 "zh-chs": "匈牙利文",
17259 "zh-cht": "匈牙利文",
17260 "xloc": [
17257 - "default.handlebars->29->1111"
17261 + "default.handlebars->29->1114"
17262 ]
17263 },
17264 {
@@ -17317,11 +17321,11 @@
17321 "zh-chs": "IP:{0}",
17322 "zh-cht": "IP:{0}",
17323 "xloc": [
17320 - "default-mobile.handlebars->9->354",
17321 - "default-mobile.handlebars->9->358",
17322 - "default.handlebars->29->926",
17323 - "default.handlebars->29->936",
17324 - "default.handlebars->29->940"
17324 + "default-mobile.handlebars->9->360",
17325 + "default-mobile.handlebars->9->364",
17326 + "default.handlebars->29->929",
17327 + "default.handlebars->29->939",
17328 + "default.handlebars->29->943"
17329 ]
17330 },
17331 {
@@ -17341,11 +17345,11 @@
17345 "zh-chs": "IP:{0},掩码:{1},网关:{2}",
17346 "zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
17347 "xloc": [
17344 - "default-mobile.handlebars->9->352",
17345 - "default-mobile.handlebars->9->356",
17346 - "default.handlebars->29->924",
17347 - "default.handlebars->29->934",
17348 - "default.handlebars->29->938"
17348 + "default-mobile.handlebars->9->358",
17349 + "default-mobile.handlebars->9->362",
17350 + "default.handlebars->29->927",
17351 + "default.handlebars->29->937",
17352 + "default.handlebars->29->941"
17353 ]
17354 },
17355 {
@@ -17365,12 +17369,12 @@
17369 "zh-chs": "IPv4层",
17370 "zh-cht": "IPv4層",
17371 "xloc": [
17368 - "default-mobile.handlebars->9->351",
17369 - "default-mobile.handlebars->9->353",
17370 - "default.handlebars->29->923",
17371 - "default.handlebars->29->925",
17372 - "default.handlebars->29->933",
17373 - "default.handlebars->29->935"
17372 + "default-mobile.handlebars->9->357",
17373 + "default-mobile.handlebars->9->359",
17374 + "default.handlebars->29->926",
17375 + "default.handlebars->29->928",
17376 + "default.handlebars->29->936",
17377 + "default.handlebars->29->938"
17378 ]
17379 },
17380 {
@@ -17453,10 +17457,10 @@
17457 "zh-chs": "IPv6层",
17458 "zh-cht": "IPv6層",
17459 "xloc": [
17456 - "default-mobile.handlebars->9->355",
17457 - "default-mobile.handlebars->9->357",
17458 - "default.handlebars->29->937",
17459 - "default.handlebars->29->939"
17460 + "default-mobile.handlebars->9->361",
17461 + "default-mobile.handlebars->9->363",
17462 + "default.handlebars->29->940",
17463 + "default.handlebars->29->942"
17464 ]
17465 },
17466 {
@@ -17536,7 +17540,7 @@
17540 "zh-chs": "冰岛文",
17541 "zh-cht": "冰島文",
17542 "xloc": [
17539 - "default.handlebars->29->1112"
17543 + "default.handlebars->29->1115"
17544 ]
17545 },
17546 {
@@ -17556,8 +17560,8 @@
17560 "zh-chs": "图标选择",
17561 "zh-cht": "圖符選擇",
17562 "xloc": [
17559 - "default-mobile.handlebars->9->283",
17560 - "default.handlebars->29->795"
17563 + "default-mobile.handlebars->9->289",
17564 + "default.handlebars->29->798"
17565 ]
17566 },
17567 {
@@ -17577,8 +17581,8 @@
17581 "zh-chs": "识别码",
17582 "zh-cht": "識別符",
17583 "xloc": [
17580 - "default-mobile.handlebars->9->383",
17581 - "default.handlebars->29->965"
17584 + "default-mobile.handlebars->9->389",
17585 + "default.handlebars->29->968"
17586 ]
17587 },
17588 {
@@ -17726,7 +17730,7 @@
17730 "zh-chs": "印度尼西亚文",
17731 "zh-cht": "印度尼西亞文",
17732 "xloc": [
17729 - "default.handlebars->29->1113"
17733 + "default.handlebars->29->1116"
17734 ]
17735 },
17736 {
@@ -17899,8 +17903,8 @@
17903 "zh-chs": "安装类型",
17904 "zh-cht": "安裝方式",
17905 "xloc": [
17902 - "default.handlebars->29->1472",
17903 - "default.handlebars->29->1479",
17906 + "default.handlebars->29->1475",
17907 + "default.handlebars->29->1482",
17908 "default.handlebars->29->327",
17909 "default.handlebars->29->341",
17910 "default.handlebars->29->355"
@@ -17923,7 +17927,7 @@
17927 "zh-chs": "英特尔(F10 = ESC + [OM)",
17928 "zh-cht": "Intel(F10 = ESC + [OM)",
17929 "xloc": [
17926 - "default.handlebars->29->852",
17930 + "default.handlebars->29->855",
17931 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
17932 ]
17933 },
@@ -17944,7 +17948,7 @@
17948 "zh-chs": "英特尔AMT",
17949 "zh-cht": "英特爾AMT",
17950 "xloc": [
17947 - "default.handlebars->29->2054"
17951 + "default.handlebars->29->2057"
17952 ]
17953 },
17954 {
@@ -17964,7 +17968,7 @@
17968 "zh-chs": "英特尔ASCII",
17969 "zh-cht": "Intel ASCII",
17970 "xloc": [
17967 - "default.handlebars->29->851"
17971 + "default.handlebars->29->854"
17972 ]
17973 },
17974 {
@@ -17985,16 +17989,16 @@
17989 "zh-cht": "Intel® AMT",
17990 "xloc": [
17991 "default-mobile.handlebars->9->205",
17988 - "default-mobile.handlebars->9->241",
17989 - "default-mobile.handlebars->9->246",
17990 - "default.handlebars->29->1322",
17991 - "default.handlebars->29->1332",
17992 - "default.handlebars->29->1491",
17993 - "default.handlebars->29->1499",
17994 - "default.handlebars->29->2076",
17992 + "default-mobile.handlebars->9->247",
17993 + "default-mobile.handlebars->9->252",
17994 + "default.handlebars->29->1325",
17995 + "default.handlebars->29->1335",
17996 + "default.handlebars->29->1494",
17997 + "default.handlebars->29->1502",
17998 + "default.handlebars->29->2079",

This file is too large to show in full.

views/default-mobile.handlebars
+49 -14
@@ -828,6 +828,7 @@
828 var args = urlargs;
829 var debugLevel = parseInt('{{{debuglevel}}}');
830 var features = parseInt('{{{features}}}');
831 + var features2 = parseInt('{{{features2}}}');
832 var sessionTime = parseInt('{{{sessiontime}}}');
833 var sessionRefreshTimer = null;
834 var domain = '{{{domain}}}';
@@ -1075,6 +1076,7 @@
1076 powerTimelineNode = message.nodeid;
1077 powerTimeline = message.timeline;
1078 powerTimelineUpdate = Date.now() + 300000; // Update every 5 minutes
1079 + for (var i in powerTimeline) { if (i % 2 == 1) { powerTimeline[i] = powerTimeline[i] * 1000; } } // Decompress time
1080 if (currentNode._id == message.nodeid) { drawDeviceTimeline(); }
1081 break;
1082 }
@@ -1382,6 +1384,7 @@
1384 if (message.event.node.intelamt.uuid != null) { node.intelamt.uuid = message.event.node.intelamt.uuid; }
1385 if (message.event.node.intelamt.realm != null) { node.intelamt.realm = message.event.node.intelamt.realm; }
1386 if (message.event.node.intelamt.flags != null) { node.intelamt.flags = message.event.node.intelamt.flags; }
1387 + if (message.event.node.intelamt.warn != null) { node.intelamt.warn = message.event.node.intelamt.warn; } else { delete node.intelamt.warn; }
1388 }
1389 node.namel = node.name.toLowerCase();
1390 if (node.rname) { node.rnamel = node.rname.toLowerCase(); } else { node.rnamel = node.namel; }
@@ -2594,15 +2597,45 @@
2597 var provisioningStates = { 0: nobreak("Not Activated (Pre)"), 1: nobreak("Not Activated (In)"), 2: nobreak("Activated") };
2598 if (node.intelamt.ver != null && node.intelamt.state == null) { str += '<i>' + nobreak("Unknown State") + '</i>, v' + EscapeHtml(node.intelamt.ver); } else
2599
2597 - if ((node.intelamt.ver == null) && (node.intelamt.state == 2)) { str += '<i>' + "Activated" + '</i>'; }
2598 - else if ((node.intelamt.ver == null) || (node.intelamt.state == null)) { str += '<i>' + "Unknown Version & State" + '</i>'; }
2599 - else {
2600 - str += provisioningStates[node.intelamt.state];
2601 - if (node.intelamt.flags) { if (node.intelamt.flags & 2) { str = ' <span>' + "CCM" + '</span>'; } else if (node.intelamt.flags & 4) { str = ' <span>' + "ACM" + '</span>'; } }
2602 - str += (', v' + EscapeHtml(node.intelamt.ver));
2600 + if ((node.intelamt.ver == null) && (node.intelamt.state == 2)) { str += '<i>' + "Activated" + '</i>'; }
2601 + else if ((node.intelamt.ver == null) || (node.intelamt.state == null)) { str += '<i>' + "Unknown Version & State" + '</i>'; }
2602 + else {
2603 + str += provisioningStates[node.intelamt.state];
2604 + if (node.intelamt.flags) { if (node.intelamt.flags & 2) { str = ' <span>' + "CCM" + '</span>'; } else if (node.intelamt.flags & 4) { str = ' <span>' + "ACM" + '</span>'; } }
2605 + str += (', v' + EscapeHtml(node.intelamt.ver));
2606 + }
2607 +
2608 + // If Intel AMT is activated, show additional options
2609 + if (node.intelamt.state == 2) {
2610 + if (node.intelamt.tls == 1) { str += ', <span title="' + "Intel&reg; AMT is setup with TLS network security" + '">' + "TLS" + '</span>'; }
2611 +
2612 + var editUserCredentialsIcon = false;
2613 + if (node.intelamt.user == null || node.intelamt.user == '') { // If credentials are not set, allow setting them.
2614 + if ((meshrights & 4) != 0) {
2615 + str += ', <i style=color:#FF0000;cursor:pointer title="' + "Edit Intel&reg; AMT credentials" + '" onclick=editDeviceAmtSettings("' + node._id + '")>' + "No Credentials" + '</i>';
2616 + editUserCredentialsIcon = true;
2617 + } else {
2618 + str += ', <i style=color:#FF0000>' + "No Credentials" + '</i>';
2619 + }
2620 + } else if (((features2 & 1) != 0) && (node.intelamt.warn != null) && ((node.intelamt.warn & 1) != 0)) { // If AMT manager is running and warned of invalid credentials, allow setting them.
2621 + if ((meshrights & 4) != 0) {
2622 + str += ', <i style=color:#FF0000;cursor:pointer title="' + "Edit Intel&reg; AMT credentials" + '" onclick=editDeviceAmtSettings("' + node._id + '")>' + "Invalid Credentials" + '</i>';
2623 + editUserCredentialsIcon = true;
2624 + } else {
2625 + str += ', <i style=color:#FF0000>' + "Invalid Credentials" + '</i>';
2626 + }
2627 }
2628
2605 - if (node.intelamt.tls == 1) { str += ', <span>' + "TLS" + '</span>'; }
2629 + // If the AMT manager is not running, always allow Intel AMT credentials to be edited.
2630 + if (((meshrights & 4) != 0) && ((features2 & 1) == 0)) { editUserCredentialsIcon = true; }
2631 +
2632 + str += ' ';
2633 + if (editUserCredentialsIcon) {
2634 + str += '<img src=images/link4.png height=10 width=10 title="' + "Edit Intel&reg; AMT credentials" + '" style=cursor:pointer onclick=editDeviceAmtSettings("' + node._id + '")>';
2635 + }
2636 + }
2637 +
2638 + /*
2639 if (node.intelamt.state == 2) {
2640 if (node.intelamt.user == null || node.intelamt.user == '') {
2641 if ((meshrights & 4) != 0) {
@@ -2616,6 +2649,7 @@
2649 str += '<img src=images/link4.png height=10 width=10 style=cursor:pointer onclick=editDeviceAmtSettings("' + node._id + '")>';
2650 }
2651 }
2652 + */
2653
2654 var meName = "Intel&reg; ME";
2655 if (typeof node.intelamt.sku == 'number') {
@@ -2839,11 +2873,12 @@
2873 if ((meshrights & 4) == 0) return;
2874 x += addHtmlValue("Username", '<input id=dp10username style=width:170px maxlength=32 autocomplete=nope placeholder="admin" onchange=validateDeviceAmtSettings() onkeyup=validateDeviceAmtSettings() />');
2875 x += addHtmlValue("Password", '<input id=dp10password type=password style=width:170px autocomplete=nope maxlength=32 onchange=validateDeviceAmtSettings() onkeyup=validateDeviceAmtSettings() />');
2842 - x += addHtmlValue("Security", '<select id=dp10tls style=width:176px><option value=0>' + "No TLS security" + '</option><option value=1>' + "TLS security required" + '</option></select>');
2876 + // Only display the TLS setting if the Intel AMT manager is not running on the server. With the manager TLS is auto-detected.
2877 + if ((features2 & 1) == 0) { x += addHtmlValue("Security", '<select id=dp10tls style=width:176px><option value=0>' + "No TLS security" + '</option><option value=1>' + "TLS security required" + '</option></select>'); }
2878 if ((node.intelamt.user != null) && (node.intelamt.user != '')) { buttons = 7; }
2879 setDialogMode(2, "Edit Intel&reg; AMT credentials", buttons, editDeviceAmtSettingsEx, x, { node: node, func: func });
2880 if ((node.intelamt.user != null) && (node.intelamt.user != '')) { Q('dp10username').value = node.intelamt.user; } else { Q('dp10username').value = 'admin'; }
2846 - Q('dp10tls').value = node.intelamt.tls;
2881 + if ((features2 & 1) == 0) { Q('dp10tls').value = node.intelamt.tls; }
2882 validateDeviceAmtSettings();
2883 }
2884
@@ -2861,10 +2896,10 @@
2896 if (amtuser == '') amtuser = 'admin';
2897 var amtpass = Q('dp10password').value;
2898 if (amtpass == '') amtuser = '';
2864 - meshserver.send({ action: 'changedevice', nodeid: tag.node._id, intelamt: { user: amtuser, pass: amtpass, tls: parseInt(Q('dp10tls').value) } });
2865 - tag.node.intelamt.user = amtuser;
2866 - tag.node.intelamt.tls = parseInt(Q('dp10tls').value);
2867 - if (tag.func) { setTimeout(tag.func, 300); }
2899 + var x = { action: 'changedevice', nodeid: tag.node._id, intelamt: { user: amtuser, pass: amtpass } };
2900 + if ((features2 & 1) == 0) { x.intelamt.tls = parseInt(Q('dp10tls').value); }
2901 + meshserver.send(x);
2902 + if (tag.func) { setTimeout(tag.func, 1000); }
2903 }
2904 }
2905
@@ -4451,7 +4486,7 @@
4486
4487 function putstore(name, val) { try { if ((typeof (localStorage) === 'undefined') || (localStorage.getItem(name) == val)) return; if (val == null) { localStorage.removeItem(name); } else { localStorage.setItem(name, val); } } catch (e) { } if (name[0] != '_') { var s = {}; for (var i = 0, len = localStorage.length; i < len; ++i) { var k = localStorage.key(i); if (k[0] != '_') { s[k] = localStorage.getItem(k); } } meshserver.send({ action: 'userWebState', state: JSON.stringify(s) }); } }
4488 function getstore(name, val) { try { if (typeof (localStorage) === 'undefined') return val; var v = localStorage.getItem(name); if ((v == null) || (v == null)) return val; return v; } catch (e) { return val; } }
4454 - function center() { onDevicesScroll(); QS('dialog').left = ((((getDocWidth() - 300) / 2)) + 'px'); deskAdjust(); deskAdjust(); /*drawDeviceTimeline();*/ }
4489 + function center() { onDevicesScroll(); QS('dialog').left = ((((getDocWidth() - 300) / 2)) + 'px'); deskAdjust(); deskAdjust(); if (currentNode != null) { drawDeviceTimeline(); } }
4490 function messagebox(t, m) { QH('id_dialogMessage', m); setDialogMode(1, t, 1); }
4491 function statusbox(t, m) { QH('id_dialogMessage', m); setDialogMode(1, t); }
4492 function getDocWidth() { if (window.innerWidth) return window.innerWidth; if (document.documentElement && document.documentElement.clientWidth && document.documentElement.clientWidth != 0) return document.documentElement.clientWidth; return document.getElementsByTagName('body')[0].clientWidth; }
views/default.handlebars
+19 -5
@@ -2793,6 +2793,7 @@
2793 if (message.event.node.intelamt.uuid != null) { node.intelamt.uuid = message.event.node.intelamt.uuid; }
2794 if (message.event.node.intelamt.realm != null) { node.intelamt.realm = message.event.node.intelamt.realm; }
2795 if (message.event.node.intelamt.flags != null) { node.intelamt.flags = message.event.node.intelamt.flags; }
2796 + if (message.event.node.intelamt.warn != null) { node.intelamt.warn = message.event.node.intelamt.warn; } else { delete node.intelamt.warn; }
2797 }
2798 if (message.event.node.av != null) { node.av = message.event.node.av; }
2799 node.namel = node.name.toLowerCase();
@@ -5599,17 +5600,32 @@
5600 str += (', v' + EscapeHtml(node.intelamt.ver));
5601 }
5602
5603 + // If Intel AMT is activated, show additional options
5604 if (node.intelamt.state == 2) {
5605 if (node.intelamt.tls == 1) { str += ', <span title="' + "Intel&reg; AMT is setup with TLS network security" + '">' + "TLS" + '</span>'; }
5604 - if (node.intelamt.user == null || node.intelamt.user == '') {
5606 +
5607 + var editUserCredentialsIcon = false;
5608 + if (node.intelamt.user == null || node.intelamt.user == '') { // If credentials are not set, allow setting them.
5609 if ((meshrights & 4) != 0) {
5610 str += ', <i style=color:#FF0000;cursor:pointer title="' + "Edit Intel&reg; AMT credentials" + '" onclick=editDeviceAmtSettings("' + node._id + '")>' + "No Credentials" + '</i>';
5611 + editUserCredentialsIcon = true;
5612 } else {
5613 str += ', <i style=color:#FF0000>' + "No Credentials" + '</i>';
5614 }
5615 + } else if (((features2 & 1) != 0) && (node.intelamt.warn != null) && ((node.intelamt.warn & 1) != 0)) { // If AMT manager is running and warned of invalid credentials, allow setting them.
5616 + if ((meshrights & 4) != 0) {
5617 + str += ', <i style=color:#FF0000;cursor:pointer title="' + "Edit Intel&reg; AMT credentials" + '" onclick=editDeviceAmtSettings("' + node._id + '")>' + "Invalid Credentials" + '</i>';
5618 + editUserCredentialsIcon = true;
5619 + } else {
5620 + str += ', <i style=color:#FF0000>' + "Invalid Credentials" + '</i>';
5621 + }
5622 }
5623 +
5624 + // If the AMT manager is not running, always allow Intel AMT credentials to be edited.
5625 + if (((meshrights & 4) != 0) && ((features2 & 1) == 0)) { editUserCredentialsIcon = true; }
5626 +
5627 str += ' ';
5612 - if ((meshrights & 4) != 0) {
5628 + if (editUserCredentialsIcon) {
5629 str += '<img src=images/link4.png height=10 width=10 title="' + "Edit Intel&reg; AMT credentials" + '" style=cursor:pointer onclick=editDeviceAmtSettings("' + node._id + '")>';
5630 }
5631 }
@@ -6249,9 +6265,7 @@
6265 var x = { action: 'changedevice', nodeid: tag.node._id, intelamt: { user: amtuser, pass: amtpass } };
6266 if ((features2 & 1) == 0) { x.intelamt.tls = parseInt(Q('dp10tls').value); }
6267 meshserver.send(x);
6252 - tag.node.intelamt.user = amtuser;
6253 - if ((features2 & 1) == 0) { tag.node.intelamt.tls = parseInt(Q('dp10tls').value); }
6254 - if (tag.func) { setTimeout(function () { tag.func(null, tag.arg); }, 300); }
6268 + if (tag.func) { setTimeout(function () { tag.func(null, tag.arg); }, 1000); }
6269 }
6270 }
6271