Improved file search.

Ylian Saint-Hilaire committed Nov 12, 2020 at 22:16 UTC 562000f12047f30c1742d6619451d06454226cef
7 files changed +1277 -1256
meshcentral.js
+20
@@ -1721,8 +1721,28 @@ function CreateMeshCentralServer(config, args) {
1721 obj.GetConnectivityState = function (nodeid) { return obj.connectivityByNode[nodeid]; };
1722
1723 // Get the routing server id for a given node and connection type, can never be self.
1724 + obj.GetRoutingServerIdNotSelf = function (nodeid, connectType) {
1725 + if (obj.multiServer == null) return null;
1726 + for (var serverid in obj.peerConnectivityByNode) {
1727 + if (serverid == obj.serverId) continue;
1728 + var state = obj.peerConnectivityByNode[serverid][nodeid];
1729 + if ((state != null) && ((state.connectivity & connectType) != 0)) { return { serverid: serverid, meshid: state.meshid }; }
1730 + }
1731 + return null;
1732 + };
1733 +
1734 + // Get the routing server id for a given node and connection type, self first
1735 obj.GetRoutingServerId = function (nodeid, connectType) {
1736 if (obj.multiServer == null) return null;
1737 +
1738 + // Look at our own server first
1739 + var connections = obj.peerConnectivityByNode[obj.serverId];
1740 + if (connections != null) {
1741 + var state = connections[nodeid];
1742 + if ((state != null) && ((state.connectivity & connectType) != 0)) { return { serverid: obj.serverId, meshid: state.meshid }; }
1743 + }
1744 +
1745 + // Look at other servers
1746 for (var serverid in obj.peerConnectivityByNode) {
1747 if (serverid == obj.serverId) continue;
1748 var state = obj.peerConnectivityByNode[serverid][nodeid];
meshdesktopmultiplex.js
+1 -1
@@ -945,7 +945,7 @@ function CreateMeshRelayEx(parent, ws, req, domain, user, cookie) {
945 }
946 } else {
947 // Check if a peer server is connected to this agent
948 - var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type
948 + var routing = parent.parent.GetRoutingServerIdNotSelf(command.nodeid, 1); // 1 = MeshAgent routing type
949 if (routing != null) {
950 // Check if we have permission to send a message to that node
951 rights = parent.GetNodeRights(user, routing.meshid, command.nodeid);
meshdevicefile.js
+1 -1
@@ -99,7 +99,7 @@ module.exports.CreateMeshDeviceFile = function (parent, ws, res, req, domain, us
99 }
100 } else {
101 // Check if a peer server is connected to this agent
102 - var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type
102 + var routing = parent.parent.GetRoutingServerIdNotSelf(command.nodeid, 1); // 1 = MeshAgent routing type
103 if (routing != null) {
104 // Check if we have permission to send a message to that node
105 rights = parent.GetNodeRights(user, routing.meshid, command.nodeid);
meshrelay.js
+1 -1
@@ -146,7 +146,7 @@ function CreateMeshRelayEx(parent, ws, req, domain, user, cookie) {
146 }
147 } else {
148 // Check if a peer server is connected to this agent
149 - var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type
149 + var routing = parent.parent.GetRoutingServerIdNotSelf(command.nodeid, 1); // 1 = MeshAgent routing type
150 if (routing != null) {
151 // Check if we have permission to send a message to that node
152 rights = parent.GetNodeRights(user, routing.meshid, command.nodeid);
meshuser.js
+2 -1
@@ -237,7 +237,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
237 });
238 } else {
239 // Check if a peer server is connected to this agent
240 - var routing = parent.parent.GetRoutingServerId(command.nodeid, 1); // 1 = MeshAgent routing type
240 + var routing = parent.parent.GetRoutingServerIdNotSelf(command.nodeid, 1); // 1 = MeshAgent routing type
241 if (routing != null) {
242 // Check if we have permission to send a message to that node
243 parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
@@ -1112,6 +1112,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1112 case 'info': {
1113 var info = process.memoryUsage();
1114 info.dbType = ['None', 'NeDB', 'MongoJS', 'MongoDB'][parent.db.databaseType];
1115 + try { if (parent.parent.multiServer != null) { info.serverId = parent.parent.multiServer.serverid; } } catch (ex) { }
1116 if (parent.db.databaseType == 3) { info.dbChangeStream = parent.db.changeStream; }
1117 if (parent.parent.pluginHandler != null) { info.plugins = []; for (var i in parent.parent.pluginHandler.plugins) { info.plugins.push(i); } }
1118 try { info.nodeVersion = process.version; } catch (ex) { }
translate/translate.json
+1243 -1239
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->29->1359",
21 - "default.handlebars->29->1361"
20 + "default.handlebars->29->1360",
21 + "default.handlebars->29->1362"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->29->1272"
207 + "default.handlebars->29->1273"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->29->1432",
228 - "default.handlebars->29->1895"
227 + "default.handlebars->29->1433",
228 + "default.handlebars->29->1896"
229 ]
230 },
231 {
@@ -420,7 +420,7 @@
420 "fr": "* 8 caractères, 1 majuscule, 1 minuscule, 1 numérique, 1 non alphanumérique.",
421 "nl": "* 8 karakters, 1 hoofdletter, 1 normale letter, 1 nummeriek, 1 niet alfanumeriek.",
422 "xloc": [
423 - "default.handlebars->29->1401",
423 + "default.handlebars->29->1402",
424 "default.handlebars->29->306"
425 ]
426 },
@@ -496,7 +496,7 @@
496 "zh-cht": ",",
497 "xloc": [
498 "default-mobile.handlebars->9->467",
499 - "default.handlebars->29->1502"
499 + "default.handlebars->29->1503"
500 ]
501 },
502 {
@@ -537,7 +537,7 @@
537 "zh-chs": ",MQTT在线",
538 "zh-cht": ",MQTT在線",
539 "xloc": [
540 - "default.handlebars->29->1014"
540 + "default.handlebars->29->1015"
541 ]
542 },
543 {
@@ -768,8 +768,8 @@
768 "xloc": [
769 "default-mobile.handlebars->9->108",
770 "default-mobile.handlebars->9->307",
771 - "default.handlebars->29->1543",
772 - "default.handlebars->29->2052",
771 + "default.handlebars->29->1544",
772 + "default.handlebars->29->2053",
773 "default.handlebars->29->891"
774 ]
775 },
@@ -826,7 +826,7 @@
826 "zh-chs": "1个活跃时段",
827 "zh-cht": "1個活躍時段",
828 "xloc": [
829 - "default.handlebars->29->1964"
829 + "default.handlebars->29->1965"
830 ]
831 },
832 {
@@ -848,7 +848,7 @@
848 "xloc": [
849 "default-mobile.handlebars->9->118",
850 "default-mobile.handlebars->9->471",
851 - "default.handlebars->29->1567",
851 + "default.handlebars->29->1568",
852 "download.handlebars->3->1",
853 "download2.handlebars->5->1"
854 ]
@@ -913,7 +913,7 @@
913 "zh-chs": "1组",
914 "zh-cht": "1群",
915 "xloc": [
916 - "default.handlebars->29->1929"
916 + "default.handlebars->29->1930"
917 ]
918 },
919 {
@@ -1017,7 +1017,7 @@
1017 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1018 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1019 "xloc": [
1020 - "default.handlebars->29->1719"
1020 + "default.handlebars->29->1720"
1021 ]
1022 },
1023 {
@@ -1083,7 +1083,7 @@
1083 "default-mobile.handlebars->9->172",
1084 "default-mobile.handlebars->9->175",
1085 "default-mobile.handlebars->9->178",
1086 - "default.handlebars->29->1723",
1086 + "default.handlebars->29->1724",
1087 "default.handlebars->29->251",
1088 "default.handlebars->29->254",
1089 "default.handlebars->29->257",
@@ -1505,7 +1505,7 @@
1505 "zh-chs": "2FA备份代码已清除",
1506 "zh-cht": "2FA備份代碼已清除",
1507 "xloc": [
1508 - "default.handlebars->29->1678"
1508 + "default.handlebars->29->1679"
1509 ]
1510 },
1511 {
@@ -1525,8 +1525,8 @@
1525 "zh-chs": "启用第二因素身份验证",
1526 "zh-cht": "啟用第二因素身份驗證",
1527 "xloc": [
1528 - "default.handlebars->29->1736",
1529 - "default.handlebars->29->1951"
1528 + "default.handlebars->29->1737",
1529 + "default.handlebars->29->1952"
1530 ]
1531 },
1532 {
@@ -2344,7 +2344,7 @@
2344 "zh-cht": "ACM",
2345 "xloc": [
2346 "default-mobile.handlebars->9->236",
2347 - "default.handlebars->29->1375",
2347 + "default.handlebars->29->1376",
2348 "default.handlebars->29->568"
2349 ]
2350 },
@@ -2470,7 +2470,7 @@
2470 "zh-chs": "拒绝访问",
2471 "zh-cht": "拒絕存取",
2472 "xloc": [
2473 - "default.handlebars->29->1015"
2473 + "default.handlebars->29->1016"
2474 ]
2475 },
2476 {
@@ -2512,7 +2512,7 @@
2512 "zh-chs": "访问服务器档案",
2513 "zh-cht": "存取伺服器檔案",
2514 "xloc": [
2515 - "default.handlebars->29->1901"
2515 + "default.handlebars->29->1902"
2516 ]
2517 },
2518 {
@@ -2601,8 +2601,8 @@
2601 "default-mobile.handlebars->9->93",
2602 "default-mobile.handlebars->9->95",
2603 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2604 - "default.handlebars->29->1281",
2605 - "default.handlebars->29->1283",
2604 + "default.handlebars->29->1282",
2605 + "default.handlebars->29->1284",
2606 "default.handlebars->29->537",
2607 "default.handlebars->29->539"
2608 ]
@@ -2665,7 +2665,7 @@
2665 "zh-chs": "帐户已更改:{0}",
2666 "zh-cht": "帳戶已更改:{0}",
2667 "xloc": [
2668 - "default.handlebars->29->1651"
2668 + "default.handlebars->29->1652"
2669 ]
2670 },
2671 {
@@ -2685,7 +2685,7 @@
2685 "zh-chs": "创建帐户,电子邮件为{0}",
2686 "zh-cht": "創建帳戶,電子郵件為{0}",
2687 "xloc": [
2688 - "default.handlebars->29->1650"
2688 + "default.handlebars->29->1651"
2689 ]
2690 },
2691 {
@@ -2705,7 +2705,7 @@
2705 "zh-chs": "创建帐户,用户名是{0}",
2706 "zh-cht": "帳戶已創建,用戶名是{0}",
2707 "xloc": [
2708 - "default.handlebars->29->1649"
2708 + "default.handlebars->29->1650"
2709 ]
2710 },
2711 {
@@ -2725,8 +2725,8 @@
2725 "zh-chs": "帐户已被锁定",
2726 "zh-cht": "帳戶已被鎖定",
2727 "xloc": [
2728 - "default.handlebars->29->1738",
2729 - "default.handlebars->29->1898"
2728 + "default.handlebars->29->1739",
2729 + "default.handlebars->29->1899"
2730 ]
2731 },
2732 {
@@ -2790,7 +2790,7 @@
2790 "zh-chs": "帐号登录",
2791 "zh-cht": "帳號登錄",
2792 "xloc": [
2793 - "default.handlebars->29->1586"
2793 + "default.handlebars->29->1587"
2794 ]
2795 },
2796 {
@@ -2810,7 +2810,7 @@
2810 "zh-chs": "帐户登出",
2811 "zh-cht": "帳戶登出",
2812 "xloc": [
2813 - "default.handlebars->29->1587"
2813 + "default.handlebars->29->1588"
2814 ]
2815 },
2816 {
@@ -2852,7 +2852,7 @@
2852 "zh-chs": "帐户密码已更改:{0}",
2853 "zh-cht": "帳戶密碼已更改:{0}",
2854 "xloc": [
2855 - "default.handlebars->29->1659"
2855 + "default.handlebars->29->1660"
2856 ]
2857 },
2858 {
@@ -2872,7 +2872,7 @@
2872 "zh-chs": "帐户已删除",
2873 "zh-cht": "帳戶已刪除",
2874 "xloc": [
2875 - "default.handlebars->29->1648"
2875 + "default.handlebars->29->1649"
2876 ]
2877 },
2878 {
@@ -2912,7 +2912,7 @@
2912 "zh-chs": "指令",
2913 "zh-cht": "指令",
2914 "xloc": [
2915 - "default.handlebars->29->1020",
2915 + "default.handlebars->29->1021",
2916 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2917 ]
2918 },
@@ -3033,7 +3033,7 @@
3033 "default-mobile.handlebars->9->370",
3034 "default.handlebars->29->561",
3035 "default.handlebars->29->563",
3036 - "default.handlebars->29->976"
3036 + "default.handlebars->29->977"
3037 ]
3038 },
3039 {
@@ -3098,7 +3098,7 @@
3098 "zh-chs": "添加代理",
3099 "zh-cht": "新增代理",
3100 "xloc": [
3101 - "default.handlebars->29->1371",
3101 + "default.handlebars->29->1372",
3102 "default.handlebars->29->284"
3103 ]
3104 },
@@ -3136,8 +3136,8 @@
3136 "zh-chs": "添加设备",
3137 "zh-cht": "新增裝置",
3138 "xloc": [
3139 - "default.handlebars->29->1875",
3140 - "default.handlebars->29->1999"
3139 + "default.handlebars->29->1876",
3140 + "default.handlebars->29->2000"
3141 ]
3142 },
3143 {
@@ -3177,9 +3177,9 @@
3177 "zh-chs": "添加设备组",
3178 "zh-cht": "新增裝置群",
3179 "xloc": [
3180 - "default.handlebars->29->1466",
3181 - "default.handlebars->29->1869",
3182 - "default.handlebars->29->1987",
3180 + "default.handlebars->29->1467",
3181 + "default.handlebars->29->1870",
3182 + "default.handlebars->29->1988",
3183 "default.handlebars->29->238"
3184 ]
3185 },
@@ -3200,7 +3200,7 @@
3200 "zh-chs": "添加设备组权限",
3201 "zh-cht": "新增裝置群權限",
3202 "xloc": [
3203 - "default.handlebars->29->1463"
3203 + "default.handlebars->29->1464"
3204 ]
3205 },
3206 {
@@ -3220,8 +3220,8 @@
3220 "zh-chs": "添加设备权限",
3221 "zh-cht": "新增裝置權限",
3222 "xloc": [
3223 - "default.handlebars->29->1468",
3224 - "default.handlebars->29->1470"
3223 + "default.handlebars->29->1469",
3224 + "default.handlebars->29->1471"
3225 ]
3226 },
3227 {
@@ -3318,7 +3318,7 @@
3318 "zh-chs": "添加成员身份",
3319 "zh-cht": "新增成員身份",
3320 "xloc": [
3321 - "default.handlebars->29->2019"
3321 + "default.handlebars->29->2020"
3322 ]
3323 },
3324 {
@@ -3358,8 +3358,8 @@
3358 "zh-chs": "添加安全密钥",
3359 "zh-cht": "新增安全密鑰",
3360 "xloc": [
3361 - "default.handlebars->29->1048",
3361 "default.handlebars->29->1049",
3362 + "default.handlebars->29->1050",
3363 "default.handlebars->29->149",
3364 "default.handlebars->29->151",
3365 "default.handlebars->29->154",
@@ -3404,7 +3404,7 @@
3404 "zh-chs": "添加用户设备权限",
3405 "zh-cht": "新增用戶裝置權限",
3406 "xloc": [
3407 - "default.handlebars->29->1473"
3407 + "default.handlebars->29->1474"
3408 ]
3409 },
3410 {
@@ -3424,9 +3424,9 @@
3424 "zh-chs": "添加用户组",
3425 "zh-cht": "新增用戶群",
3426 "xloc": [
3427 - "default.handlebars->29->1367",
3428 - "default.handlebars->29->1465",
3429 - "default.handlebars->29->1993",
3427 + "default.handlebars->29->1368",
3428 + "default.handlebars->29->1466",
3429 + "default.handlebars->29->1994",
3430 "default.handlebars->29->663"
3431 ]
3432 },
@@ -3447,7 +3447,7 @@
3447 "zh-chs": "添加用户组设备权限",
3448 "zh-cht": "新增用戶群裝置權限",
3449 "xloc": [
3450 - "default.handlebars->29->1475"
3450 + "default.handlebars->29->1476"
3451 ]
3452 },
3453 {
@@ -3504,8 +3504,8 @@
3504 "zh-chs": "添加用户",
3505 "zh-cht": "新增用戶",
3506 "xloc": [
3507 - "default.handlebars->29->1366",
3508 - "default.handlebars->29->1864"
3507 + "default.handlebars->29->1367",
3508 + "default.handlebars->29->1865"
3509 ]
3510 },
3511 {
@@ -3525,7 +3525,7 @@
3525 "zh-chs": "将用户添加到设备组",
3526 "zh-cht": "將用戶新增到裝置群",
3527 "xloc": [
3528 - "default.handlebars->29->1462"
3528 + "default.handlebars->29->1463"
3529 ]
3530 },
3531 {
@@ -3545,7 +3545,7 @@
3545 "zh-chs": "将用户添加到用户组",
3546 "zh-cht": "將用戶新增到用戶群",
3547 "xloc": [
3548 - "default.handlebars->29->1897"
3548 + "default.handlebars->29->1898"
3549 ]
3550 },
3551 {
@@ -3662,7 +3662,7 @@
3662 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3663 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3664 "xloc": [
3665 - "default.handlebars->29->1370",
3665 + "default.handlebars->29->1371",
3666 "default.handlebars->29->283"
3667 ]
3668 },
@@ -3711,7 +3711,7 @@
3711 "zh-chs": "添加了身份验证应用程序",
3712 "zh-cht": "添加了身份驗證應用程序",
3713 "xloc": [
3714 - "default.handlebars->29->1675"
3714 + "default.handlebars->29->1676"
3715 ]
3716 },
3717 {
@@ -3719,7 +3719,7 @@
3719 "fr": "Ajout du partage {0} de {1} à {2}",
3720 "nl": "Apparaat delen {0} toegevoegd van {1} tot {2}",
3721 "xloc": [
3722 - "default.handlebars->29->1686"
3722 + "default.handlebars->29->1687"
3723 ]
3724 },
3725 {
@@ -3739,8 +3739,8 @@
3739 "zh-chs": "已将设备{0}添加到设备组{1}",
3740 "zh-cht": "已將設備{0}添加到設備組{1}",
3741 "xloc": [
3742 - "default.handlebars->29->1642",
3743 - "default.handlebars->29->1669"
3742 + "default.handlebars->29->1643",
3743 + "default.handlebars->29->1670"
3744 ]
3745 },
3746 {
@@ -3760,7 +3760,7 @@
3760 "zh-chs": "添加了安全密钥",
3761 "zh-cht": "添加了安全密鑰",
3762 "xloc": [
3763 - "default.handlebars->29->1680"
3763 + "default.handlebars->29->1681"
3764 ]
3765 },
3766 {
@@ -3780,7 +3780,7 @@
3780 "zh-chs": "已将用户组{0}添加到设备组{1}",
3781 "zh-cht": "已將用戶組{0}添加到設備組{1}",
3782 "xloc": [
3783 - "default.handlebars->29->1653"
3783 + "default.handlebars->29->1654"
3784 ]
3785 },
3786 {
@@ -3800,8 +3800,8 @@
3800 "zh-chs": "已将用户{0}添加到用户组{1}",
3801 "zh-cht": "已將用戶{0}添加到用戶組{1}",
3802 "xloc": [
3803 - "default.handlebars->29->1656",
3804 - "default.handlebars->29->1665"
3803 + "default.handlebars->29->1657",
3804 + "default.handlebars->29->1666"
3805 ]
3806 },
3807 {
@@ -3862,7 +3862,7 @@
3862 "zh-cht": "管理員控制模式(ACM)",
3863 "xloc": [
3864 "default-mobile.handlebars->9->372",
3865 - "default.handlebars->29->978"
3865 + "default.handlebars->29->979"
3866 ]
3867 },
3868 {
@@ -3883,7 +3883,7 @@
3883 "zh-cht": "管理員憑證",
3884 "xloc": [
3885 "default-mobile.handlebars->9->378",
3886 - "default.handlebars->29->984"
3886 + "default.handlebars->29->985"
3887 ]
3888 },
3889 {
@@ -3924,7 +3924,7 @@
3924 "zh-chs": "管理领域",
3925 "zh-cht": "管理領域",
3926 "xloc": [
3927 - "default.handlebars->29->1933"
3927 + "default.handlebars->29->1934"
3928 ]
3929 },
3930 {
@@ -3965,7 +3965,7 @@
3965 "zh-chs": "管理领域",
3966 "zh-cht": "管理領域",
3967 "xloc": [
3968 - "default.handlebars->29->1801"
3968 + "default.handlebars->29->1802"
3969 ]
3970 },
3971 {
@@ -3985,7 +3985,7 @@
3985 "zh-chs": "管理员",
3986 "zh-cht": "管理員",
3987 "xloc": [
3988 - "default.handlebars->29->1730"
3988 + "default.handlebars->29->1731"
3989 ]
3990 },
3991 {
@@ -4005,7 +4005,7 @@
4005 "zh-chs": "南非文",
4006 "zh-cht": "南非文",
4007 "xloc": [
4008 - "default.handlebars->29->1051"
4008 + "default.handlebars->29->1052"
4009 ]
4010 },
4011 {
@@ -4028,8 +4028,8 @@
4028 "default-mobile.handlebars->9->203",
4029 "default-mobile.handlebars->9->228",
4030 "default-mobile.handlebars->9->250",
4031 - "default.handlebars->29->1529",
4032 - "default.handlebars->29->1537",
4031 + "default.handlebars->29->1530",
4032 + "default.handlebars->29->1538",
4033 "default.handlebars->29->214",
4034 "default.handlebars->29->423",
4035 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4052,8 +4052,8 @@
4052 "zh-chs": "代理+英特尔AMT",
4053 "zh-cht": "代理+Intel® AMT",
4054 "xloc": [
4055 - "default.handlebars->29->1531",
4056 - "default.handlebars->29->1539"
4055 + "default.handlebars->29->1532",
4056 + "default.handlebars->29->1540"
4057 ]
4058 },
4059 {
@@ -4094,7 +4094,7 @@
4094 "zh-cht": "代理控制台",
4095 "xloc": [
4096 "default-mobile.handlebars->9->449",
4097 - "default.handlebars->29->1483"
4097 + "default.handlebars->29->1484"
4098 ]
4099 },
4100 {
@@ -4114,7 +4114,7 @@
4114 "zh-chs": "代理错误计数器",
4115 "zh-cht": "代理錯誤計數器",
4116 "xloc": [
4117 - "default.handlebars->29->2062"
4117 + "default.handlebars->29->2063"
4118 ]
4119 },
4120 {
@@ -4217,7 +4217,7 @@
4217 "zh-chs": "代理时段",
4218 "zh-cht": "代理時段",
4219 "xloc": [
4220 - "default.handlebars->29->2078"
4220 + "default.handlebars->29->2079"
4221 ]
4222 },
4223 {
@@ -4258,7 +4258,7 @@
4258 "zh-chs": "代理类型",
4259 "zh-cht": "代理類型",
4260 "xloc": [
4261 - "default.handlebars->29->1535",
4261 + "default.handlebars->29->1536",
4262 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4263 ]
4264 },
@@ -4279,7 +4279,7 @@
4279 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4280 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4281 "xloc": [
4282 - "default.handlebars->29->1639"
4282 + "default.handlebars->29->1640"
4283 ]
4284 },
4285 {
@@ -4341,7 +4341,7 @@
4341 "zh-chs": "代理离线",
4342 "zh-cht": "代理離線",
4343 "xloc": [
4344 - "default.handlebars->29->1013"
4344 + "default.handlebars->29->1014"
4345 ]
4346 },
4347 {
@@ -4361,7 +4361,7 @@
4361 "zh-chs": "代理在线",
4362 "zh-cht": "代理在線",
4363 "xloc": [
4364 - "default.handlebars->29->1012"
4364 + "default.handlebars->29->1013"
4365 ]
4366 },
4367 {
@@ -4390,7 +4390,7 @@
4390 "zh-chs": "代理",
4391 "zh-cht": "代理",
4392 "xloc": [
4393 - "default.handlebars->29->2094"
4393 + "default.handlebars->29->2095"
4394 ]
4395 },
4396 {
@@ -4410,7 +4410,7 @@
4410 "zh-chs": "阿尔巴尼亚文",
4411 "zh-cht": "阿爾巴尼亞文",
4412 "xloc": [
4413 - "default.handlebars->29->1052"
4413 + "default.handlebars->29->1053"
4414 ]
4415 },
4416 {
@@ -4453,7 +4453,7 @@
4453 "zh-chs": "全部可用",
4454 "zh-cht": "全部可用",
4455 "xloc": [
4456 - "default.handlebars->29->1693"
4456 + "default.handlebars->29->1694"
4457 ]
4458 },
4459 {
@@ -4490,7 +4490,7 @@
4490 "zh-chs": "所有事件",
4491 "zh-cht": "所有事件",
4492 "xloc": [
4493 - "default.handlebars->29->1691"
4493 + "default.handlebars->29->1692"
4494 ]
4495 },
4496 {
@@ -4532,8 +4532,8 @@
4532 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4533 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4534 "xloc": [
4535 - "default.handlebars->29->1430",
4536 - "default.handlebars->29->1894"
4535 + "default.handlebars->29->1431",
4536 + "default.handlebars->29->1895"
4537 ]
4538 },
4539 {
@@ -4553,7 +4553,7 @@
4553 "zh-chs": "允许用户管理此设备。",
4554 "zh-cht": "允許用戶管理此裝置。",
4555 "xloc": [
4556 - "default.handlebars->29->1431"
4556 + "default.handlebars->29->1432"
4557 ]
4558 },
4559 {
@@ -4658,9 +4658,9 @@
4658 "zh-chs": "一直通知",
4659 "zh-cht": "一直通知",
4660 "xloc": [
4661 - "default.handlebars->29->1346",
4662 - "default.handlebars->29->1855",
4663 - "default.handlebars->29->1942",
4661 + "default.handlebars->29->1347",
4662 + "default.handlebars->29->1856",
4663 + "default.handlebars->29->1943",
4664 "default.handlebars->29->599"
4665 ]
4666 },
@@ -4681,9 +4681,9 @@
4681 "zh-chs": "一直提示",
4682 "zh-cht": "一直提示",
4683 "xloc": [
4684 - "default.handlebars->29->1347",
4685 - "default.handlebars->29->1856",
4686 - "default.handlebars->29->1943",
4684 + "default.handlebars->29->1348",
4685 + "default.handlebars->29->1857",
4686 + "default.handlebars->29->1944",
4687 "default.handlebars->29->600"
4688 ]
4689 },
@@ -4907,7 +4907,7 @@
4907 "zh-chs": "阿拉伯文(阿尔及利亚)",
4908 "zh-cht": "阿拉伯文(阿爾及利亞)",
4909 "xloc": [
4910 - "default.handlebars->29->1054"
4910 + "default.handlebars->29->1055"
4911 ]
4912 },
4913 {
@@ -4927,7 +4927,7 @@
4927 "zh-chs": "阿拉伯文(巴林)",
4928 "zh-cht": "阿拉伯文(巴林)",
4929 "xloc": [
4930 - "default.handlebars->29->1055"
4930 + "default.handlebars->29->1056"
4931 ]
4932 },
4933 {
@@ -4947,7 +4947,7 @@
4947 "zh-chs": "阿拉伯文(埃及)",
4948 "zh-cht": "阿拉伯文(埃及)",
4949 "xloc": [
4950 - "default.handlebars->29->1056"
4950 + "default.handlebars->29->1057"
4951 ]
4952 },
4953 {
@@ -4967,7 +4967,7 @@
4967 "zh-chs": "阿拉伯文(伊拉克)",
4968 "zh-cht": "阿拉伯文(伊拉克)",
4969 "xloc": [
4970 - "default.handlebars->29->1057"
4970 + "default.handlebars->29->1058"
4971 ]
4972 },
4973 {
@@ -4987,7 +4987,7 @@
4987 "zh-chs": "阿拉伯文(约旦)",
4988 "zh-cht": "阿拉伯文(約旦)",
4989 "xloc": [
4990 - "default.handlebars->29->1058"
4990 + "default.handlebars->29->1059"
4991 ]
4992 },
4993 {
@@ -5007,7 +5007,7 @@
5007 "zh-chs": "阿拉伯文(科威特)",
5008 "zh-cht": "阿拉伯文(科威特)",
5009 "xloc": [
5010 - "default.handlebars->29->1059"
5010 + "default.handlebars->29->1060"
5011 ]
5012 },
5013 {
@@ -5027,7 +5027,7 @@
5027 "zh-chs": "阿拉伯文(黎巴嫩)",
5028 "zh-cht": "阿拉伯文(黎巴嫩)",
5029 "xloc": [
5030 - "default.handlebars->29->1060"
5030 + "default.handlebars->29->1061"
5031 ]
5032 },
5033 {
@@ -5047,7 +5047,7 @@
5047 "zh-chs": "阿拉伯文(利比亚)",
5048 "zh-cht": "阿拉伯文(利比亞)",
5049 "xloc": [
5050 - "default.handlebars->29->1061"
5050 + "default.handlebars->29->1062"
5051 ]
5052 },
5053 {
@@ -5067,7 +5067,7 @@
5067 "zh-chs": "阿拉伯文(摩洛哥)",
5068 "zh-cht": "阿拉伯文(摩洛哥)",
5069 "xloc": [
5070 - "default.handlebars->29->1062"
5070 + "default.handlebars->29->1063"
5071 ]
5072 },
5073 {
@@ -5087,7 +5087,7 @@
5087 "zh-chs": "阿拉伯文(阿曼)",
5088 "zh-cht": "阿拉伯文(阿曼)",
5089 "xloc": [
5090 - "default.handlebars->29->1063"
5090 + "default.handlebars->29->1064"
5091 ]
5092 },
5093 {
@@ -5107,7 +5107,7 @@
5107 "zh-chs": "阿拉伯文(卡塔尔)",
5108 "zh-cht": "阿拉伯文(卡塔爾)",
5109 "xloc": [
5110 - "default.handlebars->29->1064"
5110 + "default.handlebars->29->1065"
5111 ]
5112 },
5113 {
@@ -5127,7 +5127,7 @@
5127 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5128 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5129 "xloc": [
5130 - "default.handlebars->29->1065"
5130 + "default.handlebars->29->1066"
5131 ]
5132 },
5133 {
@@ -5147,7 +5147,7 @@
5147 "zh-chs": "阿拉伯文(标准)",
5148 "zh-cht": "阿拉伯文(標準)",
5149 "xloc": [
5150 - "default.handlebars->29->1053"
5150 + "default.handlebars->29->1054"
5151 ]
5152 },
5153 {
@@ -5167,7 +5167,7 @@
5167 "zh-chs": "阿拉伯文(叙利亚)",
5168 "zh-cht": "阿拉伯文(敘利亞)",
5169 "xloc": [
5170 - "default.handlebars->29->1066"
5170 + "default.handlebars->29->1067"
5171 ]
5172 },
5173 {
@@ -5187,7 +5187,7 @@
5187 "zh-chs": "阿拉伯文(突尼斯)",
5188 "zh-cht": "阿拉伯文(突尼斯)",
5189 "xloc": [
5190 - "default.handlebars->29->1067"
5190 + "default.handlebars->29->1068"
5191 ]
5192 },
5193 {
@@ -5207,7 +5207,7 @@
5207 "zh-chs": "阿拉伯文(阿联酋)",
5208 "zh-cht": "阿拉伯文(阿聯酋)",
5209 "xloc": [
5210 - "default.handlebars->29->1068"
5210 + "default.handlebars->29->1069"
5211 ]
5212 },
5213 {
@@ -5227,7 +5227,7 @@
5227 "zh-chs": "阿拉伯文(也门)",
5228 "zh-cht": "阿拉伯文(也門)",
5229 "xloc": [
5230 - "default.handlebars->29->1069"
5230 + "default.handlebars->29->1070"
5231 ]
5232 },
5233 {
@@ -5247,7 +5247,7 @@
5247 "zh-chs": "阿拉贡文",
5248 "zh-cht": "阿拉貢文",
5249 "xloc": [
5250 - "default.handlebars->29->1070"
5250 + "default.handlebars->29->1071"
5251 ]
5252 },
5253 {
@@ -5268,7 +5268,7 @@
5268 "zh-cht": "結構",
5269 "xloc": [
5270 "default-mobile.handlebars->9->342",
5271 - "default.handlebars->29->938"
5271 + "default.handlebars->29->939"
5272 ]
5273 },
5274 {
@@ -5309,7 +5309,7 @@
5309 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5310 "xloc": [
5311 "default-mobile.handlebars->9->418",
5312 - "default.handlebars->29->1406"
5312 + "default.handlebars->29->1407"
5313 ]
5314 },
5315 {
@@ -5389,7 +5389,7 @@
5389 "zh-chs": "您确定要{0}插件吗:{1}",
5390 "zh-cht": "你確定要{0}外掛嗎:{1}",
5391 "xloc": [
5392 - "default.handlebars->29->2134"
5392 + "default.handlebars->29->2135"
5393 ]
5394 },
5395 {
@@ -5409,7 +5409,7 @@
5409 "zh-chs": "亚美尼亚文",
5410 "zh-cht": "亞美尼亞文",
5411 "xloc": [
5412 - "default.handlebars->29->1071"
5412 + "default.handlebars->29->1072"
5413 ]
5414 },
5415 {
@@ -5469,7 +5469,7 @@
5469 "zh-chs": "阿萨姆文",
5470 "zh-cht": "阿薩姆文",
5471 "xloc": [
5472 - "default.handlebars->29->1072"
5472 + "default.handlebars->29->1073"
5473 ]
5474 },
5475 {
@@ -5489,7 +5489,7 @@
5489 "zh-chs": "阿斯图里亚斯文",
5490 "zh-cht": "阿斯圖里亞斯文",
5491 "xloc": [
5492 - "default.handlebars->29->1073"
5492 + "default.handlebars->29->1074"
5493 ]
5494 },
5495 {
@@ -5509,7 +5509,7 @@
5509 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5510 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5511 "xloc": [
5512 - "default.handlebars->29->1608"
5512 + "default.handlebars->29->1609"
5513 ]
5514 },
5515 {
@@ -5529,7 +5529,7 @@
5529 "zh-chs": "认证软件",
5530 "zh-cht": "認證軟體",
5531 "xloc": [
5532 - "default.handlebars->29->1946"
5532 + "default.handlebars->29->1947"
5533 ]
5534 },
5535 {
@@ -5553,8 +5553,8 @@
5553 "default-mobile.handlebars->9->52",
5554 "default-mobile.handlebars->9->71",
5555 "default-mobile.handlebars->9->73",
5556 - "default.handlebars->29->1037",
5557 - "default.handlebars->29->1039",
5556 + "default.handlebars->29->1038",
5557 + "default.handlebars->29->1040",
5558 "default.handlebars->29->125",
5559 "default.handlebars->29->130"
5560 ]
@@ -5636,7 +5636,7 @@
5636 "zh-chs": "自动删除",
5637 "zh-cht": "自動刪除",
5638 "xloc": [
5639 - "default.handlebars->29->1333"
5639 + "default.handlebars->29->1334"
5640 ]
5641 },
5642 {
@@ -5700,7 +5700,7 @@
5700 "zh-chs": "可用內存",
5701 "zh-cht": "可用內存",
5702 "xloc": [
5703 - "default.handlebars->29->2087"
5703 + "default.handlebars->29->2088"
5704 ]
5705 },
5706 {
@@ -5720,7 +5720,7 @@
5720 "zh-chs": "阿塞拜疆文",
5721 "zh-cht": "阿塞拜疆文",
5722 "xloc": [
5723 - "default.handlebars->29->1074"
5723 + "default.handlebars->29->1075"
5724 ]
5725 },
5726 {
@@ -5741,7 +5741,7 @@
5741 "zh-cht": "的BIOS",
5742 "xloc": [
5743 "default-mobile.handlebars->9->384",
5744 - "default.handlebars->29->990"
5744 + "default.handlebars->29->991"
5745 ]
5746 },
5747 {
@@ -5856,8 +5856,8 @@
5856 "zh-chs": "背景与互动",
5857 "zh-cht": "背景與互動",
5858 "xloc": [
5859 - "default.handlebars->29->1512",
5860 - "default.handlebars->29->1519",
5859 + "default.handlebars->29->1513",
5860 + "default.handlebars->29->1520",
5861 "default.handlebars->29->336",
5862 "default.handlebars->29->350"
5863 ]
@@ -5879,8 +5879,8 @@
5879 "zh-chs": "仅背景",
5880 "zh-cht": "僅背景",
5881 "xloc": [
5882 - "default.handlebars->29->1513",
5883 - "default.handlebars->29->1520",
5882 + "default.handlebars->29->1514",
5883 + "default.handlebars->29->1521",
5884 "default.handlebars->29->337",
5885 "default.handlebars->29->351",
5886 "default.handlebars->29->365"
@@ -5923,7 +5923,7 @@
5923 "zh-chs": "备用码",
5924 "zh-cht": "備用碼",
5925 "xloc": [
5926 - "default.handlebars->29->1948"
5926 + "default.handlebars->29->1949"
5927 ]
5928 },
5929 {
@@ -5943,7 +5943,7 @@
5943 "zh-chs": "错误的签名",
5944 "zh-cht": "錯誤的簽名",
5945 "xloc": [
5946 - "default.handlebars->29->2069"
5946 + "default.handlebars->29->2070"
5947 ]
5948 },
5949 {
@@ -5963,7 +5963,7 @@
5963 "zh-chs": "错误的网络证书",
5964 "zh-cht": "錯誤的網絡憑證",
5965 "xloc": [
5966 - "default.handlebars->29->2068"
5966 + "default.handlebars->29->2069"
5967 ]
5968 },
5969 {
@@ -5983,7 +5983,7 @@
5983 "zh-chs": "巴斯克",
5984 "zh-cht": "巴斯克",
5985 "xloc": [
5986 - "default.handlebars->29->1075"
5986 + "default.handlebars->29->1076"
5987 ]
5988 },
5989 {
@@ -6017,7 +6017,7 @@
6017 "en": "Batch upload of {0} file(s) to folder {1}",
6018 "nl": "Batch-upload van {0} bestand (en) naar map {1}",
6019 "xloc": [
6020 - "default.handlebars->29->1688"
6020 + "default.handlebars->29->1689"
6021 ]
6022 },
6023 {
@@ -6037,7 +6037,7 @@
6037 "zh-chs": "白俄罗斯文",
6038 "zh-cht": "白俄羅斯文",
6039 "xloc": [
6040 - "default.handlebars->29->1077"
6040 + "default.handlebars->29->1078"
6041 ]
6042 },
6043 {
@@ -6057,7 +6057,7 @@
6057 "zh-chs": "孟加拉",
6058 "zh-cht": "孟加拉",
6059 "xloc": [
6060 - "default.handlebars->29->1078"
6060 + "default.handlebars->29->1079"
6061 ]
6062 },
6063 {
@@ -6100,7 +6100,7 @@
6100 "zh-chs": "波斯尼亚文",
6101 "zh-cht": "波斯尼亞文",
6102 "xloc": [
6103 - "default.handlebars->29->1079"
6103 + "default.handlebars->29->1080"
6104 ]
6105 },
6106 {
@@ -6120,7 +6120,7 @@
6120 "zh-chs": "布列塔尼",
6121 "zh-cht": "布列塔尼",
6122 "xloc": [
6123 - "default.handlebars->29->1080"
6123 + "default.handlebars->29->1081"
6124 ]
6125 },
6126 {
@@ -6140,7 +6140,7 @@
6140 "zh-chs": "广播",
6141 "zh-cht": "廣播",
6142 "xloc": [
6143 - "default.handlebars->29->1862",
6143 + "default.handlebars->29->1863",
6144 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6145 ]
6146 },
@@ -6161,7 +6161,7 @@
6161 "zh-chs": "广播消息",
6162 "zh-cht": "廣播消息",
6163 "xloc": [
6164 - "default.handlebars->29->1783"
6164 + "default.handlebars->29->1784"
6165 ]
6166 },
6167 {
@@ -6181,7 +6181,7 @@
6181 "zh-chs": "向所有连接的用户广播消息。",
6182 "zh-cht": "向所有連接的用戶廣播消息。",
6183 "xloc": [
6184 - "default.handlebars->29->1778"
6184 + "default.handlebars->29->1779"
6185 ]
6186 },
6187 {
@@ -6201,7 +6201,7 @@
6201 "zh-chs": "保加利亚文",
6202 "zh-cht": "保加利亞文",
6203 "xloc": [
6204 - "default.handlebars->29->1076"
6204 + "default.handlebars->29->1077"
6205 ]
6206 },
6207 {
@@ -6221,7 +6221,7 @@
6221 "zh-chs": "缅甸文",
6222 "zh-cht": "緬甸文",
6223 "xloc": [
6224 - "default.handlebars->29->1081"
6224 + "default.handlebars->29->1082"
6225 ]
6226 },
6227 {
@@ -6284,7 +6284,7 @@
6284 "zh-chs": "CIRA服务器",
6285 "zh-cht": "CIRA伺服器",
6286 "xloc": [
6287 - "default.handlebars->29->2122"
6287 + "default.handlebars->29->2123"
6288 ]
6289 },
6290 {
@@ -6304,7 +6304,7 @@
6304 "zh-chs": "CIRA服务器命令",
6305 "zh-cht": "CIRA伺服器指令",
6306 "xloc": [
6307 - "default.handlebars->29->2123"
6307 + "default.handlebars->29->2124"
6308 ]
6309 },
6310 {
@@ -6312,7 +6312,7 @@
6312 "fr": "Configuration CIRA",
6313 "nl": "CIRA setup",
6314 "xloc": [
6315 - "default.handlebars->29->1397"
6315 + "default.handlebars->29->1398"
6316 ]
6317 },
6318 {
@@ -6333,7 +6333,7 @@
6333 "zh-cht": "CPU",
6334 "xloc": [
6335 "default-mobile.handlebars->9->390",
6336 - "default.handlebars->29->996"
6336 + "default.handlebars->29->997"
6337 ]
6338 },
6339 {
@@ -6353,7 +6353,7 @@
6353 "zh-chs": "CPU负载",
6354 "zh-cht": "CPU負載",
6355 "xloc": [
6356 - "default.handlebars->29->2083"
6356 + "default.handlebars->29->2084"
6357 ]
6358 },
6359 {
@@ -6373,7 +6373,7 @@
6373 "zh-chs": "最近15分钟的CPU负载",
6374 "zh-cht": "最近15分鐘的CPU負載",
6375 "xloc": [
6376 - "default.handlebars->29->2086"
6376 + "default.handlebars->29->2087"
6377 ]
6378 },
6379 {
@@ -6393,7 +6393,7 @@
6393 "zh-chs": "最近5分钟的CPU负载",
6394 "zh-cht": "最近5分鐘的CPU負載",
6395 "xloc": [
6396 - "default.handlebars->29->2085"
6396 + "default.handlebars->29->2086"
6397 ]
6398 },
6399 {
@@ -6413,7 +6413,7 @@
6413 "zh-chs": "最近一分钟的CPU负载",
6414 "zh-cht": "最近一分鐘的CPU負載",
6415 "xloc": [
6416 - "default.handlebars->29->2084"
6416 + "default.handlebars->29->2085"
6417 ]
6418 },
6419 {
@@ -6455,7 +6455,7 @@
6455 "zh-chs": "CSV",
6456 "zh-cht": "CSV",
6457 "xloc": [
6458 - "default.handlebars->29->1701"
6458 + "default.handlebars->29->1702"
6459 ]
6460 },
6461 {
@@ -6475,8 +6475,8 @@
6475 "zh-chs": "CSV格式",
6476 "zh-cht": "CSV格式",
6477 "xloc": [
6478 - "default.handlebars->29->1705",
6479 - "default.handlebars->29->1770",
6478 + "default.handlebars->29->1706",
6479 + "default.handlebars->29->1771",
6480 "default.handlebars->29->482"
6481 ]
6482 },
@@ -6497,7 +6497,7 @@
6497 "zh-chs": "呼叫错误",
6498 "zh-cht": "呼叫錯誤",
6499 "xloc": [
6500 - "default.handlebars->29->2135"
6500 + "default.handlebars->29->2136"
6501 ]
6502 },
6503 {
@@ -6519,8 +6519,7 @@
6519 "xloc": [
6520 "default-mobile.handlebars->9->82",
6521 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
6522 - "default.handlebars->29->1311",
6523 - "default.handlebars->29->893",
6522 + "default.handlebars->29->1312",
6523 "default.handlebars->container->dialog->idx_dlgButtonBar",
6524 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6525 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6550,9 +6549,9 @@
6549 "default-mobile.handlebars->9->395",
6550 "default-mobile.handlebars->9->400",
6551 "default-mobile.handlebars->9->402",
6553 - "default.handlebars->29->1001",
6554 - "default.handlebars->29->1006",
6555 - "default.handlebars->29->1008"
6552 + "default.handlebars->29->1002",
6553 + "default.handlebars->29->1007",
6554 + "default.handlebars->29->1009"
6555 ]
6556 },
6557 {
@@ -6573,7 +6572,7 @@
6572 "zh-cht": "容量/速度",
6573 "xloc": [
6574 "default-mobile.handlebars->9->393",
6576 - "default.handlebars->29->999"
6575 + "default.handlebars->29->1000"
6576 ]
6577 },
6578 {
@@ -6593,7 +6592,7 @@
6592 "zh-chs": "加泰罗尼亚文",
6593 "zh-cht": "加泰羅尼亞文",
6594 "xloc": [
6596 - "default.handlebars->29->1082"
6595 + "default.handlebars->29->1083"
6596 ]
6597 },
6598 {
@@ -6633,7 +6632,7 @@
6632 "zh-chs": "查莫罗",
6633 "zh-cht": "查莫羅",
6634 "xloc": [
6636 - "default.handlebars->29->1083"
6635 + "default.handlebars->29->1084"
6636 ]
6637 },
6638 {
@@ -6675,7 +6674,7 @@
6674 "zh-chs": "更改{0}的电邮",
6675 "zh-cht": "更改{0}的電郵",
6676 "xloc": [
6678 - "default.handlebars->29->1976"
6677 + "default.handlebars->29->1977"
6678 ]
6679 },
6680 {
@@ -6718,8 +6717,8 @@
6717 "zh-cht": "更改密碼",
6718 "xloc": [
6719 "default-mobile.handlebars->9->90",
6721 - "default.handlebars->29->1278",
6722 - "default.handlebars->29->1963"
6720 + "default.handlebars->29->1279",
6721 + "default.handlebars->29->1964"
6722 ]
6723 },
6724 {
@@ -6739,7 +6738,7 @@
6738 "zh-chs": "更改{0}的密码",
6739 "zh-cht": "更改{0}的密碼",
6740 "xloc": [
6742 - "default.handlebars->29->1983"
6741 + "default.handlebars->29->1984"
6742 ]
6743 },
6744 {
@@ -6759,7 +6758,7 @@
6758 "zh-chs": "更改{0}的真实名称",
6759 "zh-cht": "更改{0}的真實名稱",
6760 "xloc": [
6762 - "default.handlebars->29->1971"
6761 + "default.handlebars->29->1972"
6762 ]
6763 },
6764 {
@@ -6841,7 +6840,7 @@
6840 "zh-chs": "更改该用户的密码",
6841 "zh-cht": "更改該用戶的密碼",
6842 "xloc": [
6844 - "default.handlebars->29->1962"
6843 + "default.handlebars->29->1963"
6844 ]
6845 },
6846 {
@@ -6881,7 +6880,7 @@
6880 "zh-chs": "在此处更改您的帐户电邮地址。",
6881 "zh-cht": "在此處更改你的帳戶電郵地址。",
6882 "xloc": [
6884 - "default.handlebars->29->1265"
6883 + "default.handlebars->29->1266"
6884 ]
6885 },
6886 {
@@ -6901,7 +6900,7 @@
6900 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6901 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6902 "xloc": [
6904 - "default.handlebars->29->1271"
6903 + "default.handlebars->29->1272"
6904 ]
6905 },
6906 {
@@ -6921,7 +6920,7 @@
6920 "zh-chs": "更改帐户凭据",
6921 "zh-cht": "帳戶憑證已更改",
6922 "xloc": [
6924 - "default.handlebars->29->1660"
6923 + "default.handlebars->29->1661"
6924 ]
6925 },
6926 {
@@ -6941,7 +6940,7 @@
6940 "zh-chs": "{1}组中的设备{0}已更改:{2}",
6941 "zh-cht": "{1}組中的設備{0}已更改:{2}",
6942 "xloc": [
6944 - "default.handlebars->29->1644"
6943 + "default.handlebars->29->1645"
6944 ]
6945 },
6946 {
@@ -6961,7 +6960,7 @@
6960 "zh-chs": "语言从{1}更改为{2}",
6961 "zh-cht": "語言從{1}更改為{2}",
6962 "xloc": [
6964 - "default.handlebars->29->1588"
6963 + "default.handlebars->29->1589"
6964 ]
6965 },
6966 {
@@ -6981,8 +6980,8 @@
6980 "zh-chs": "已更改{0}的用户设备权限",
6981 "zh-cht": "已更改{0}的用戶設備權限",
6982 "xloc": [
6984 - "default.handlebars->29->1646",
6985 - "default.handlebars->29->1667"
6983 + "default.handlebars->29->1647",
6984 + "default.handlebars->29->1668"
6985 ]
6986 },
6987 {
@@ -7002,7 +7001,7 @@
7001 "zh-chs": "更改语言将需要刷新页面。",
7002 "zh-cht": "更改語言將需要刷新頁面。",
7003 "xloc": [
7005 - "default.handlebars->29->1250"
7004 + "default.handlebars->29->1251"
7005 ]
7006 },
7007 {
@@ -7022,7 +7021,7 @@
7021 "zh-chs": "聊天",
7022 "zh-cht": "聊天",
7023 "xloc": [
7025 - "default.handlebars->29->1722",
7024 + "default.handlebars->29->1723",
7025 "default.handlebars->29->686",
7026 "default.handlebars->29->707"
7027 ]
@@ -7046,8 +7045,8 @@
7045 "xloc": [
7046 "default-mobile.handlebars->9->439",
7047 "default-mobile.handlebars->9->459",
7049 - "default.handlebars->29->1458",
7050 - "default.handlebars->29->1494"
7048 + "default.handlebars->29->1459",
7049 + "default.handlebars->29->1495"
7050 ]
7051 },
7052 {
@@ -7087,7 +7086,7 @@
7086 "zh-chs": "车臣",
7087 "zh-cht": "車臣",
7088 "xloc": [
7090 - "default.handlebars->29->1084"
7089 + "default.handlebars->29->1085"
7090 ]
7091 },
7092 {
@@ -7187,8 +7186,8 @@
7186 "zh-chs": "检查...",
7187 "zh-cht": "檢查...",
7188 "xloc": [
7190 - "default.handlebars->29->1050",
7191 - "default.handlebars->29->2129"
7189 + "default.handlebars->29->1051",
7190 + "default.handlebars->29->2130"
7191 ]
7192 },
7193 {
@@ -7208,7 +7207,7 @@
7207 "zh-chs": "中文",
7208 "zh-cht": "中文",
7209 "xloc": [
7211 - "default.handlebars->29->1085"
7210 + "default.handlebars->29->1086"
7211 ]
7212 },
7213 {
@@ -7228,7 +7227,7 @@
7227 "zh-chs": "中文(香港)",
7228 "zh-cht": "中文(香港)",
7229 "xloc": [
7231 - "default.handlebars->29->1086"
7230 + "default.handlebars->29->1087"
7231 ]
7232 },
7233 {
@@ -7248,7 +7247,7 @@
7247 "zh-chs": "中文(中国)",
7248 "zh-cht": "中文(中國)",
7249 "xloc": [
7251 - "default.handlebars->29->1087"
7250 + "default.handlebars->29->1088"
7251 ]
7252 },
7253 {
@@ -7268,7 +7267,7 @@
7267 "zh-chs": "简体中文",
7268 "zh-cht": "簡體中文",
7269 "xloc": [
7271 - "default.handlebars->29->1247"
7270 + "default.handlebars->29->1248"
7271 ]
7272 },
7273 {
@@ -7288,7 +7287,7 @@
7287 "zh-chs": "中文(新加坡)",
7288 "zh-cht": "中文(新加坡)",
7289 "xloc": [
7291 - "default.handlebars->29->1088"
7290 + "default.handlebars->29->1089"
7291 ]
7292 },
7293 {
@@ -7308,7 +7307,7 @@
7307 "zh-chs": "中文(台湾)",
7308 "zh-cht": "中文(台灣)",
7309 "xloc": [
7311 - "default.handlebars->29->1089"
7310 + "default.handlebars->29->1090"
7311 ]
7312 },
7313 {
@@ -7328,7 +7327,7 @@
7327 "zh-chs": "繁体中文",
7328 "zh-cht": "繁體中文",
7329 "xloc": [
7331 - "default.handlebars->29->1248"
7330 + "default.handlebars->29->1249"
7331 ]
7332 },
7333 {
@@ -7369,7 +7368,7 @@
7368 "zh-chs": "楚瓦什",
7369 "zh-cht": "楚瓦什",
7370 "xloc": [
7372 - "default.handlebars->29->1090"
7371 + "default.handlebars->29->1091"
7372 ]
7373 },
7374 {
@@ -7412,11 +7411,11 @@
7411 "default-mobile.handlebars->9->330",
7412 "default-mobile.handlebars->9->332",
7413 "default-mobile.handlebars->9->59",
7415 - "default.handlebars->29->1582",
7416 - "default.handlebars->29->915",
7417 - "default.handlebars->29->917",
7418 - "default.handlebars->29->919",
7419 - "default.handlebars->29->921",
7414 + "default.handlebars->29->1583",
7415 + "default.handlebars->29->916",
7416 + "default.handlebars->29->918",
7417 + "default.handlebars->29->920",
7418 + "default.handlebars->29->922",
7419 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7420 "default.handlebars->container->column_l->p41->3->1",
7421 "messenger.handlebars->xbottom"
@@ -7459,7 +7458,7 @@
7458 "zh-chs": "全部清除",
7459 "zh-cht": "全部清除",
7460 "xloc": [
7462 - "default.handlebars->29->2056"
7461 + "default.handlebars->29->2057"
7462 ]
7463 },
7464 {
@@ -7488,7 +7487,7 @@
7487 "zh-chs": "清除核心",
7488 "zh-cht": "清除核心",
7489 "xloc": [
7491 - "default.handlebars->29->1022"
7490 + "default.handlebars->29->1023"
7491 ]
7492 },
7493 {
@@ -7528,7 +7527,7 @@
7527 "zh-chs": "清除此通知",
7528 "zh-cht": "清除此通知",
7529 "xloc": [
7531 - "default.handlebars->29->2055"
7530 + "default.handlebars->29->2056"
7531 ]
7532 },
7533 {
@@ -7588,8 +7587,8 @@
7587 "zh-chs": "单击此处编辑设备组名称",
7588 "zh-cht": "單擊此處編輯裝置群名稱",
7589 "xloc": [
7591 - "default.handlebars->29->1322",
7592 - "default.handlebars->29->1533"
7590 + "default.handlebars->29->1323",
7591 + "default.handlebars->29->1534"
7592 ]
7593 },
7594 {
@@ -7629,7 +7628,7 @@
7628 "zh-chs": "单击此处编辑用户组名称",
7629 "zh-cht": "單擊此處編輯用戶群名稱",
7630 "xloc": [
7632 - "default.handlebars->29->1839"
7631 + "default.handlebars->29->1840"
7632 ]
7633 },
7634 {
@@ -7690,7 +7689,7 @@
7689 "zh-cht": "單擊確定將驗證電郵發送到:",
7690 "xloc": [
7691 "default-mobile.handlebars->9->75",
7693 - "default.handlebars->29->1262"
7692 + "default.handlebars->29->1263"
7693 ]
7694 },
7695 {
@@ -7731,7 +7730,7 @@
7730 "zh-cht": "客戶端控制模式(CCM)",
7731 "xloc": [
7732 "default-mobile.handlebars->9->371",
7734 - "default.handlebars->29->977"
7733 + "default.handlebars->29->978"
7734 ]
7735 },
7736 {
@@ -7751,7 +7750,7 @@
7750 "zh-chs": "客户编号",
7751 "zh-cht": "客戶編號",
7752 "xloc": [
7754 - "default.handlebars->29->1304"
7753 + "default.handlebars->29->1305"
7754 ]
7755 },
7756 {
@@ -7771,7 +7770,7 @@
7770 "zh-chs": "客户端启动的远程访问",
7771 "zh-cht": "客戶端啟動的遠程訪問",
7772 "xloc": [
7774 - "default.handlebars->29->1396"
7773 + "default.handlebars->29->1397"
7774 ]
7775 },
7776 {
@@ -7791,7 +7790,7 @@
7790 "zh-chs": "客户机密",
7791 "zh-cht": "客戶機密",
7792 "xloc": [
7794 - "default.handlebars->29->1305"
7793 + "default.handlebars->29->1306"
7794 ]
7795 },
7796 {
@@ -7835,7 +7834,8 @@
7834 "default-mobile.handlebars->9->57",
7835 "default.handlebars->29->137",
7836 "default.handlebars->29->145",
7838 - "default.handlebars->29->863"
7837 + "default.handlebars->29->863",
7838 + "default.handlebars->29->893"
7839 ]
7840 },
7841 {
@@ -7855,7 +7855,7 @@
7855 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
7856 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
7857 "xloc": [
7858 - "default.handlebars->29->1593"
7858 + "default.handlebars->29->1594"
7859 ]
7860 },
7861 {
@@ -7942,7 +7942,7 @@
7942 "nl": "Opdrachten",
7943 "xloc": [
7944 "default-mobile.handlebars->9->461",
7945 - "default.handlebars->29->1496",
7945 + "default.handlebars->29->1497",
7946 "default.handlebars->29->688",
7947 "default.handlebars->29->709"
7948 ]
@@ -7964,8 +7964,8 @@
7964 "zh-chs": "通用设备组",
7965 "zh-cht": "通用裝置群",
7966 "xloc": [
7967 - "default.handlebars->29->1870",
7968 - "default.handlebars->29->1988"
7967 + "default.handlebars->29->1871",
7968 + "default.handlebars->29->1989"
7969 ]
7970 },
7971 {
@@ -7985,8 +7985,8 @@
7985 "zh-chs": "通用设备",
7986 "zh-cht": "通用裝置",
7987 "xloc": [
7988 - "default.handlebars->29->1876",
7989 - "default.handlebars->29->2000"
7988 + "default.handlebars->29->1877",
7989 + "default.handlebars->29->2001"
7990 ]
7991 },
7992 {
@@ -8028,11 +8028,11 @@
8028 "xloc": [
8029 "default-mobile.handlebars->9->288",
8030 "default-mobile.handlebars->9->419",
8031 - "default.handlebars->29->1407",
8032 - "default.handlebars->29->1750",
8033 - "default.handlebars->29->1829",
8034 - "default.handlebars->29->1890",
8035 - "default.handlebars->29->1986",
8031 + "default.handlebars->29->1408",
8032 + "default.handlebars->29->1751",
8033 + "default.handlebars->29->1830",
8034 + "default.handlebars->29->1891",
8035 + "default.handlebars->29->1987",
8036 "default.handlebars->29->452",
8037 "default.handlebars->29->781",
8038 "default.handlebars->29->790"
@@ -8056,7 +8056,7 @@
8056 "zh-cht": "確認將1個副本複製到此位置?",
8057 "xloc": [
8058 "default-mobile.handlebars->9->321",
8059 - "default.handlebars->29->910"
8059 + "default.handlebars->29->911"
8060 ]
8061 },
8062 {
@@ -8076,7 +8076,7 @@
8076 "zh-chs": "确认{0}个条目的复制到此位置?",
8077 "zh-cht": "確認{0}個條目的複製到此位置?",
8078 "xloc": [
8079 - "default.handlebars->29->909"
8079 + "default.handlebars->29->910"
8080 ]
8081 },
8082 {
@@ -8116,7 +8116,7 @@
8116 "zh-chs": "确认删除选定的帐户?",
8117 "zh-cht": "確認刪除所選帳戶?",
8118 "xloc": [
8119 - "default.handlebars->29->1749"
8119 + "default.handlebars->29->1750"
8120 ]
8121 },
8122 {
@@ -8156,7 +8156,7 @@
8156 "zh-chs": "确认删除选定的用户组?",
8157 "zh-cht": "確認刪除所選用戶群?",
8158 "xloc": [
8159 - "default.handlebars->29->1828"
8159 + "default.handlebars->29->1829"
8160 ]
8161 },
8162 {
@@ -8176,7 +8176,7 @@
8176 "zh-chs": "确认删除用户{0}?",
8177 "zh-cht": "確認刪除用戶{0}?",
8178 "xloc": [
8179 - "default.handlebars->29->1985"
8179 + "default.handlebars->29->1986"
8180 ]
8181 },
8182 {
@@ -8196,7 +8196,7 @@
8196 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8197 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8198 "xloc": [
8199 - "default.handlebars->29->1893"
8199 + "default.handlebars->29->1894"
8200 ]
8201 },
8202 {
@@ -8216,7 +8216,7 @@
8216 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8217 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8218 "xloc": [
8219 - "default.handlebars->29->2017"
8219 + "default.handlebars->29->2018"
8220 ]
8221 },
8222 {
@@ -8237,7 +8237,7 @@
8237 "zh-cht": "確認將1個條目移動到此位置?",
8238 "xloc": [
8239 "default-mobile.handlebars->9->323",
8240 - "default.handlebars->29->912"
8240 + "default.handlebars->29->913"
8241 ]
8242 },
8243 {
@@ -8257,7 +8257,7 @@
8257 "zh-chs": "确认将{0}个条目移到此位置?",
8258 "zh-cht": "確認將{0}個條目移到該位置?",
8259 "xloc": [
8260 - "default.handlebars->29->911"
8260 + "default.handlebars->29->912"
8261 ]
8262 },
8263 {
@@ -8297,7 +8297,7 @@
8297 "zh-chs": "确认覆盖?",
8298 "zh-cht": "確認覆蓋?",
8299 "xloc": [
8300 - "default.handlebars->29->1576"
8300 + "default.handlebars->29->1577"
8301 ]
8302 },
8303 {
@@ -8317,8 +8317,8 @@
8317 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
8318 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8319 "xloc": [
8320 - "default.handlebars->29->1883",
8321 - "default.handlebars->29->2008"
8320 + "default.handlebars->29->1884",
8321 + "default.handlebars->29->2009"
8322 ]
8323 },
8324 {
@@ -8338,8 +8338,8 @@
8338 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8339 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8340 "xloc": [
8341 - "default.handlebars->29->1885",
8342 - "default.handlebars->29->2021"
8341 + "default.handlebars->29->1886",
8342 + "default.handlebars->29->2022"
8343 ]
8344 },
8345 {
@@ -8359,7 +8359,7 @@
8359 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
8360 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8361 "xloc": [
8362 - "default.handlebars->29->2010"
8362 + "default.handlebars->29->2011"
8363 ]
8364 },
8365 {
@@ -8379,7 +8379,7 @@
8379 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8380 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8381 "xloc": [
8382 - "default.handlebars->29->2013"
8382 + "default.handlebars->29->2014"
8383 ]
8384 },
8385 {
@@ -8399,8 +8399,8 @@
8399 "zh-chs": "确认删除访问权限?",
8400 "zh-cht": "確認刪除訪問權限?",
8401 "xloc": [
8402 - "default.handlebars->29->2011",
8403 - "default.handlebars->29->2014"
8402 + "default.handlebars->29->2012",
8403 + "default.handlebars->29->2015"
8404 ]
8405 },
8406 {
@@ -8421,7 +8421,7 @@
8421 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
8422 "xloc": [
8423 "default-mobile.handlebars->9->74",
8424 - "default.handlebars->29->1040"
8424 + "default.handlebars->29->1041"
8425 ]
8426 },
8427 {
@@ -8446,7 +8446,7 @@
8446 "fr": "Confirmez-vous l'arrêt du partage \\\"{0}\\\"?",
8447 "nl": "Bevestig de verwijdering van apparaatdeling \\\"{0}\\\"?",
8448 "xloc": [
8449 - "default.handlebars->29->2006"
8449 + "default.handlebars->29->2007"
8450 ]
8451 },
8452 {
@@ -8500,7 +8500,7 @@
8500 "zh-chs": "确认删除用户“ {0} ”的权限?",
8501 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
8502 "xloc": [
8503 - "default.handlebars->29->1505"
8503 + "default.handlebars->29->1506"
8504 ]
8505 },
8506 {
@@ -8520,7 +8520,7 @@
8520 "zh-chs": "确认删除用户组“ {0} ”的权限?",
8521 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8522 "xloc": [
8523 - "default.handlebars->29->1507"
8523 + "default.handlebars->29->1508"
8524 ]
8525 },
8526 {
@@ -8578,7 +8578,7 @@
8578 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
8579 "xloc": [
8580 "default-mobile.handlebars->9->127",
8581 - "default.handlebars->29->1577"
8581 + "default.handlebars->29->1578"
8582 ]
8583 },
8584 {
@@ -8601,7 +8601,7 @@
8601 "default-mobile.handlebars->9->303",
8602 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8603 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8604 - "default.handlebars->29->1350",
8604 + "default.handlebars->29->1351",
8605 "default.handlebars->29->884",
8606 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8607 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -8649,7 +8649,7 @@
8649 "zh-chs": "连接到服务器",
8650 "zh-cht": "連接到伺服器",
8651 "xloc": [
8652 - "default.handlebars->29->1400"
8652 + "default.handlebars->29->1401"
8653 ]
8654 },
8655 {
@@ -8770,7 +8770,7 @@
8770 "zh-chs": "已连接的英特尔®AMT",
8771 "zh-cht": "已連接的Intel® AMT",
8772 "xloc": [
8773 - "default.handlebars->29->2074"
8773 + "default.handlebars->29->2075"
8774 ]
8775 },
8776 {
@@ -8790,7 +8790,7 @@
8790 "zh-chs": "已连接的用户",
8791 "zh-cht": "已连接的用户",
8792 "xloc": [
8793 - "default.handlebars->29->2079"
8793 + "default.handlebars->29->2080"
8794 ]
8795 },
8796 {
@@ -8811,7 +8811,7 @@
8811 "zh-cht": "現在已連接",
8812 "xloc": [
8813 "default-mobile.handlebars->9->346",
8814 - "default.handlebars->29->942"
8814 + "default.handlebars->29->943"
8815 ]
8816 },
8817 {
@@ -8858,7 +8858,7 @@
8858 "default.handlebars->29->247",
8859 "default.handlebars->29->274",
8860 "default.handlebars->29->9",
8861 - "default.handlebars->29->933",
8861 + "default.handlebars->29->934",
8862 "desktop.handlebars->3->2",
8863 "xterm.handlebars->9->2"
8864 ]
@@ -8880,7 +8880,7 @@
8880 "zh-chs": "连接数量",
8881 "zh-cht": "連接數量",
8882 "xloc": [
8883 - "default.handlebars->29->2093"
8883 + "default.handlebars->29->2094"
8884 ]
8885 },
8886 {
@@ -8900,7 +8900,7 @@
8900 "zh-chs": "连接转发器",
8901 "zh-cht": "連接轉發器",
8902 "xloc": [
8903 - "default.handlebars->29->2121"
8903 + "default.handlebars->29->2122"
8904 ]
8905 },
8906 {
@@ -8961,7 +8961,7 @@
8961 "zh-cht": "連接性",
8962 "xloc": [
8963 "default-mobile.handlebars->9->255",
8964 - "default.handlebars->29->1540",
8964 + "default.handlebars->29->1541",
8965 "default.handlebars->29->235",
8966 "default.handlebars->29->613",
8967 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -9050,7 +9050,7 @@
9050 "zh-chs": "Cookie编码器",
9051 "zh-cht": "Cookie編碼器",
9052 "xloc": [
9053 - "default.handlebars->29->2107"
9053 + "default.handlebars->29->2108"
9054 ]
9055 },
9056 {
@@ -9207,8 +9207,8 @@
9207 "zh-chs": "复制连结到剪贴板",
9208 "zh-cht": "複製連結到剪貼板",
9209 "xloc": [
9210 - "default.handlebars->29->1545",
9211 - "default.handlebars->29->1564",
9210 + "default.handlebars->29->1546",
9211 + "default.handlebars->29->1565",
9212 "default.handlebars->29->196",
9213 "default.handlebars->29->353"
9214 ]
@@ -9311,7 +9311,7 @@
9311 "zh-chs": "复制:“{0}”到“{1}”",
9312 "zh-cht": "複製:“{0}”到“{1}”",
9313 "xloc": [
9314 - "default.handlebars->29->1636"
9314 + "default.handlebars->29->1637"
9315 ]
9316 },
9317 {
@@ -9457,7 +9457,7 @@
9457 "zh-chs": "核心服务器",
9458 "zh-cht": "核心伺服器",
9459 "xloc": [
9460 - "default.handlebars->29->2106"
9460 + "default.handlebars->29->2107"
9461 ]
9462 },
9463 {
@@ -9477,7 +9477,7 @@
9477 "zh-chs": "科西嘉文",
9478 "zh-cht": "科西嘉文",
9479 "xloc": [
9480 - "default.handlebars->29->1091"
9480 + "default.handlebars->29->1092"
9481 ]
9482 },
9483 {
@@ -9497,7 +9497,7 @@
9497 "zh-chs": "创建帐号",
9498 "zh-cht": "創建帳號",
9499 "xloc": [
9500 - "default.handlebars->29->1797",
9500 + "default.handlebars->29->1798",
9501 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9502 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9503 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9540,7 +9540,7 @@
9540 "zh-chs": "创建用户组",
9541 "zh-cht": "創建用戶群",
9542 "xloc": [
9543 - "default.handlebars->29->1836"
9543 + "default.handlebars->29->1837"
9544 ]
9545 },
9546 {
@@ -9580,7 +9580,7 @@
9580 "zh-chs": "使用以下选项创建一个新的设备组。",
9581 "zh-cht": "使用以下選項創建一個新的裝置群。",
9582 "xloc": [
9583 - "default.handlebars->29->1285"
9583 + "default.handlebars->29->1286"
9584 ]
9585 },
9586 {
@@ -9627,7 +9627,7 @@
9627 "zh-chs": "创建文件夹:“{0}”",
9628 "zh-cht": "創建文件夾:“{0}”",
9629 "xloc": [
9630 - "default.handlebars->29->1629"
9630 + "default.handlebars->29->1630"
9631 ]
9632 },
9633 {
@@ -9647,7 +9647,7 @@
9647 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9648 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9649 "xloc": [
9650 - "default.handlebars->29->1761"
9650 + "default.handlebars->29->1762"
9651 ]
9652 },
9653 {
@@ -9689,7 +9689,7 @@
9689 "zh-chs": "创建的设备组:{0}",
9690 "zh-cht": "創建的設備組:{0}",
9691 "xloc": [
9692 - "default.handlebars->29->1640"
9692 + "default.handlebars->29->1641"
9693 ]
9694 },
9695 {
@@ -9734,7 +9734,7 @@
9734 "zh-chs": "创建",
9735 "zh-cht": "創建",
9736 "xloc": [
9737 - "default.handlebars->29->1922"
9737 + "default.handlebars->29->1923"
9738 ]
9739 },
9740 {
@@ -9754,7 +9754,7 @@
9754 "zh-chs": "创建时间",
9755 "zh-cht": "創作時間",
9756 "xloc": [
9757 - "default.handlebars->29->1332"
9757 + "default.handlebars->29->1333"
9758 ]
9759 },
9760 {
@@ -9796,8 +9796,8 @@
9796 "zh-chs": "创建者",
9797 "zh-cht": "創作者",
9798 "xloc": [
9799 - "default.handlebars->29->1330",
9800 - "default.handlebars->29->1331"
9799 + "default.handlebars->29->1331",
9800 + "default.handlebars->29->1332"
9801 ]
9802 },
9803 {
@@ -9817,7 +9817,7 @@
9817 "zh-chs": "证书",
9818 "zh-cht": "證書",
9819 "xloc": [
9820 - "default.handlebars->29->1302"
9820 + "default.handlebars->29->1303"
9821 ]
9822 },
9823 {
@@ -9837,7 +9837,7 @@
9837 "zh-chs": "克里语",
9838 "zh-cht": "克里語",
9839 "xloc": [
9840 - "default.handlebars->29->1092"
9840 + "default.handlebars->29->1093"
9841 ]
9842 },
9843 {
@@ -9857,7 +9857,7 @@
9857 "zh-chs": "克罗地亚文",
9858 "zh-cht": "克羅地亞文",
9859 "xloc": [
9860 - "default.handlebars->29->1093"
9860 + "default.handlebars->29->1094"
9861 ]
9862 },
9863 {
@@ -10024,7 +10024,7 @@
10024 "zh-chs": "捷克文",
10025 "zh-cht": "捷克文",
10026 "xloc": [
10027 - "default.handlebars->29->1094"
10027 + "default.handlebars->29->1095"
10028 ]
10029 },
10030 {
@@ -10064,7 +10064,7 @@
10064 "zh-chs": "丹麦文",
10065 "zh-cht": "丹麥文",
10066 "xloc": [
10067 - "default.handlebars->29->1095"
10067 + "default.handlebars->29->1096"
10068 ]
10069 },
10070 {
@@ -10105,7 +10105,7 @@
10105 "zh-chs": "日期和时间",
10106 "zh-cht": "日期和時間",
10107 "xloc": [
10108 - "default.handlebars->29->1253"
10108 + "default.handlebars->29->1254"
10109 ]
10110 },
10111 {
@@ -10134,7 +10134,7 @@
10134 "fr": "Désactivé",
10135 "nl": "Deactiveren",
10136 "xloc": [
10137 - "default.handlebars->29->1383"
10137 + "default.handlebars->29->1384"
10138 ]
10139 },
10140 {
@@ -10192,10 +10192,10 @@
10192 "zh-chs": "默认",
10193 "zh-cht": "默認",
10194 "xloc": [
10195 - "default.handlebars->29->1784",
10196 - "default.handlebars->29->1832",
10197 - "default.handlebars->29->1843",
10198 - "default.handlebars->29->1911"
10195 + "default.handlebars->29->1785",
10196 + "default.handlebars->29->1833",
10197 + "default.handlebars->29->1844",
10198 + "default.handlebars->29->1912"
10199 ]
10200 },
10201 {
@@ -10219,9 +10219,9 @@
10219 "default-mobile.handlebars->9->313",
10220 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10221 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10222 - "default.handlebars->29->1571",
10222 + "default.handlebars->29->1572",
10223 "default.handlebars->29->515",
10224 - "default.handlebars->29->901",
10224 + "default.handlebars->29->902",
10225 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10226 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10227 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10249,7 +10249,7 @@
10249 "zh-cht": "刪除帳戶",
10250 "xloc": [
10251 "default-mobile.handlebars->9->84",
10252 - "default.handlebars->29->1270"
10252 + "default.handlebars->29->1271"
10253 ]
10254 },
10255 {
@@ -10269,7 +10269,7 @@
10269 "zh-chs": "删除帐户",
10270 "zh-cht": "刪除帳戶",
10271 "xloc": [
10272 - "default.handlebars->29->1751"
10272 + "default.handlebars->29->1752"
10273 ]
10274 },
10275 {
@@ -10312,8 +10312,8 @@
10312 "xloc": [
10313 "default-mobile.handlebars->9->417",
10314 "default-mobile.handlebars->9->420",
10315 - "default.handlebars->29->1379",
10316 - "default.handlebars->29->1408"
10315 + "default.handlebars->29->1380",
10316 + "default.handlebars->29->1409"
10317 ]
10318 },
10319 {
@@ -10374,7 +10374,7 @@
10374 "zh-chs": "删除用户",
10375 "zh-cht": "刪除用戶",
10376 "xloc": [
10377 - "default.handlebars->29->1961"
10377 + "default.handlebars->29->1962"
10378 ]
10379 },
10380 {
@@ -10394,8 +10394,8 @@
10394 "zh-chs": "删除用户群组",
10395 "zh-cht": "刪除用戶群組",
10396 "xloc": [
10397 - "default.handlebars->29->1881",
10398 - "default.handlebars->29->1891"
10397 + "default.handlebars->29->1882",
10398 + "default.handlebars->29->1892"
10399 ]
10400 },
10401 {
@@ -10415,7 +10415,7 @@
10415 "zh-chs": "删除用户群组",
10416 "zh-cht": "刪除用戶群組",
10417 "xloc": [
10418 - "default.handlebars->29->1830"
10418 + "default.handlebars->29->1831"
10419 ]
10420 },
10421 {
@@ -10435,7 +10435,7 @@
10435 "zh-chs": "删除用户{0}",
10436 "zh-cht": "刪除用戶{0}",
10437 "xloc": [
10438 - "default.handlebars->29->1984"
10438 + "default.handlebars->29->1985"
10439 ]
10440 },
10441 {
@@ -10456,7 +10456,7 @@
10456 "zh-cht": "刪除帳戶",
10457 "xloc": [
10458 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10459 - "default.handlebars->29->1747",
10459 + "default.handlebars->29->1748",
10460 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10461 ]
10462 },
@@ -10497,7 +10497,7 @@
10497 "zh-chs": "删除群组",
10498 "zh-cht": "刪除群組",
10499 "xloc": [
10500 - "default.handlebars->29->1826"
10500 + "default.handlebars->29->1827"
10501 ]
10502 },
10503 {
@@ -10537,7 +10537,7 @@
10537 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10538 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10539 "xloc": [
10540 - "default.handlebars->29->1631"
10540 + "default.handlebars->29->1632"
10541 ]
10542 },
10543 {
@@ -10559,8 +10559,8 @@
10559 "xloc": [
10560 "default-mobile.handlebars->9->124",
10561 "default-mobile.handlebars->9->315",
10562 - "default.handlebars->29->1573",
10563 - "default.handlebars->29->903"
10562 + "default.handlebars->29->1574",
10563 + "default.handlebars->29->904"
10564 ]
10565 },
10566 {
@@ -10580,7 +10580,7 @@
10580 "zh-chs": "删除用户群组{0}?",
10581 "zh-cht": "刪除用戶群組{0}?",
10582 "xloc": [
10583 - "default.handlebars->29->1889"
10583 + "default.handlebars->29->1890"
10584 ]
10585 },
10586 {
@@ -10602,8 +10602,8 @@
10602 "xloc": [
10603 "default-mobile.handlebars->9->123",
10604 "default-mobile.handlebars->9->314",
10605 - "default.handlebars->29->1572",
10606 - "default.handlebars->29->902"
10605 + "default.handlebars->29->1573",
10606 + "default.handlebars->29->903"
10607 ]
10608 },
10609 {
@@ -10643,7 +10643,7 @@
10643 "zh-chs": "删除:“{0}”",
10644 "zh-cht": "刪除:“{0}”",
10645 "xloc": [
10646 - "default.handlebars->29->1630"
10646 + "default.handlebars->29->1631"
10647 ]
10648 },
10649 {
@@ -10663,7 +10663,7 @@
10663 "zh-chs": "删除:“{0}”,{1}个元素已删除",
10664 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10665 "xloc": [
10666 - "default.handlebars->29->1632"
10666 + "default.handlebars->29->1633"
10667 ]
10668 },
10669 {
@@ -10780,19 +10780,19 @@
10780 "default-mobile.handlebars->9->352",
10781 "default-mobile.handlebars->9->409",
10782 "default-mobile.handlebars->9->422",
10783 - "default.handlebars->29->1290",
10784 - "default.handlebars->29->1327",
10785 - "default.handlebars->29->1410",
10786 - "default.handlebars->29->1835",
10787 - "default.handlebars->29->1845",
10783 + "default.handlebars->29->1291",
10784 + "default.handlebars->29->1328",
10785 + "default.handlebars->29->1411",
10786 + "default.handlebars->29->1836",
10787 "default.handlebars->29->1846",
10789 - "default.handlebars->29->1887",
10788 + "default.handlebars->29->1847",
10789 + "default.handlebars->29->1888",
10790 "default.handlebars->29->556",
10791 "default.handlebars->29->557",
10792 "default.handlebars->29->77",
10793 "default.handlebars->29->824",
10794 - "default.handlebars->29->948",
10795 - "default.handlebars->29->958",
10794 + "default.handlebars->29->949",
10795 + "default.handlebars->29->959",
10796 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
10797 ]
10798 },
@@ -10831,8 +10831,8 @@
10831 "zh-cht": "桌面",
10832 "xloc": [
10833 "default-mobile.handlebars->9->267",
10834 - "default.handlebars->29->1416",
10835 - "default.handlebars->29->2033",
10834 + "default.handlebars->29->1417",
10835 + "default.handlebars->29->2034",
10836 "default.handlebars->29->521",
10837 "default.handlebars->29->869",
10838 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -10877,9 +10877,9 @@
10877 "zh-chs": "桌面通知",
10878 "zh-cht": "桌面通知",
10879 "xloc": [
10880 - "default.handlebars->29->1341",
10881 - "default.handlebars->29->1850",
10882 - "default.handlebars->29->1937",
10880 + "default.handlebars->29->1342",
10881 + "default.handlebars->29->1851",
10882 + "default.handlebars->29->1938",
10883 "default.handlebars->29->594"
10884 ]
10885 },
@@ -10900,9 +10900,9 @@
10900 "zh-chs": "桌面提示",
10901 "zh-cht": "桌面提示",
10902 "xloc": [
10903 - "default.handlebars->29->1340",
10904 - "default.handlebars->29->1849",
10905 - "default.handlebars->29->1936",
10903 + "default.handlebars->29->1341",
10904 + "default.handlebars->29->1850",
10905 + "default.handlebars->29->1937",
10906 "default.handlebars->29->593"
10907 ]
10908 },
@@ -10923,9 +10923,9 @@
10923 "zh-chs": "桌面提示+工具栏",
10924 "zh-cht": "桌面提示+工具欄",
10925 "xloc": [
10926 - "default.handlebars->29->1338",
10927 - "default.handlebars->29->1847",
10928 - "default.handlebars->29->1934",
10926 + "default.handlebars->29->1339",
10927 + "default.handlebars->29->1848",
10928 + "default.handlebars->29->1935",
10929 "default.handlebars->29->591"
10930 ]
10931 },
@@ -10976,9 +10976,9 @@
10976 "zh-chs": "桌面工具栏",
10977 "zh-cht": "桌面工具欄",
10978 "xloc": [
10979 - "default.handlebars->29->1339",
10980 - "default.handlebars->29->1848",
10981 - "default.handlebars->29->1935",
10979 + "default.handlebars->29->1340",
10980 + "default.handlebars->29->1849",
10981 + "default.handlebars->29->1936",
10982 "default.handlebars->29->592"
10983 ]
10984 },
@@ -11082,9 +11082,9 @@
11082 "zh-chs": "设备",
11083 "zh-cht": "裝置",
11084 "xloc": [
11085 - "default.handlebars->29->1439",
11085 + "default.handlebars->29->1440",
11086 "default.handlebars->29->186",
11087 - "default.handlebars->29->2003",
11087 + "default.handlebars->29->2004",
11088 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11089 ]
11090 },
@@ -11134,14 +11134,14 @@
11134 "zh-chs": "设备组",
11135 "zh-cht": "裝置群",
11136 "xloc": [
11137 - "default.handlebars->29->1434",
11138 - "default.handlebars->29->1437",
11137 + "default.handlebars->29->1435",
11138 "default.handlebars->29->1438",
11140 - "default.handlebars->29->1698",
11141 - "default.handlebars->29->1873",
11142 - "default.handlebars->29->1879",
11143 - "default.handlebars->29->1991",
11144 - "default.handlebars->29->2042"
11139 + "default.handlebars->29->1439",
11140 + "default.handlebars->29->1699",
11141 + "default.handlebars->29->1874",
11142 + "default.handlebars->29->1880",
11143 + "default.handlebars->29->1992",
11144 + "default.handlebars->29->2043"
11145 ]
11146 },
11147 {
@@ -11162,7 +11162,7 @@
11162 "zh-cht": "裝置群用戶",
11163 "xloc": [
11164 "default-mobile.handlebars->9->468",
11165 - "default.handlebars->29->1503"
11165 + "default.handlebars->29->1504"
11166 ]
11167 },
11168 {
@@ -11183,11 +11183,11 @@
11183 "zh-cht": "裝置群",
11184 "xloc": [
11185 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11186 - "default.handlebars->29->1714",
11187 - "default.handlebars->29->1820",
11188 - "default.handlebars->29->1860",
11189 - "default.handlebars->29->1931",
11190 - "default.handlebars->29->2077",
11186 + "default.handlebars->29->1715",
11187 + "default.handlebars->29->1821",
11188 + "default.handlebars->29->1861",
11189 + "default.handlebars->29->1932",
11190 + "default.handlebars->29->2078",
11191 "default.handlebars->container->column_l->p2->p2info->7"
11192 ]
11193 },
@@ -11269,7 +11269,7 @@
11269 "zh-cht": "裝置名稱",
11270 "xloc": [
11271 "default-mobile.handlebars->9->290",
11272 - "default.handlebars->29->2041",
11272 + "default.handlebars->29->2042",
11273 "default.handlebars->29->288",
11274 "default.handlebars->29->822",
11275 "player.handlebars->3->9"
@@ -11341,8 +11341,8 @@
11341 "zh-chs": "设备连接。",
11342 "zh-cht": "裝置連接。",
11343 "xloc": [
11344 - "default.handlebars->29->1258",
11345 - "default.handlebars->29->1524"
11344 + "default.handlebars->29->1259",
11345 + "default.handlebars->29->1525"
11346 ]
11347 },
11348 {
@@ -11362,8 +11362,8 @@
11362 "zh-chs": "设备断开连接。",
11363 "zh-cht": "裝置斷開連接。",
11364 "xloc": [
11365 - "default.handlebars->29->1259",
11366 - "default.handlebars->29->1525"
11365 + "default.handlebars->29->1260",
11366 + "default.handlebars->29->1526"
11367 ]
11368 },
11369 {
@@ -11383,7 +11383,7 @@
11383 "zh-chs": "创建的设备组:{0}",
11384 "zh-cht": "設備組已創建:{0}",
11385 "xloc": [
11386 - "default.handlebars->29->1661"
11386 + "default.handlebars->29->1662"
11387 ]
11388 },
11389 {
@@ -11403,7 +11403,7 @@
11403 "zh-chs": "设备组已删除:{0}",
11404 "zh-cht": "設備組已刪除:{0}",
11405 "xloc": [
11406 - "default.handlebars->29->1662"
11406 + "default.handlebars->29->1663"
11407 ]
11408 },
11409 {
@@ -11423,7 +11423,7 @@
11423 "zh-chs": "设备组成员身份已更改:{0}",
11424 "zh-cht": "設備組成員身份已更改:{0}",
11425 "xloc": [
11426 - "default.handlebars->29->1663"
11426 + "default.handlebars->29->1664"
11427 ]
11428 },
11429 {
@@ -11463,7 +11463,7 @@
11463 "zh-chs": "设备组通知已更改",
11464 "zh-cht": "設備組通知已更改",
11465 "xloc": [
11466 - "default.handlebars->29->1658"
11466 + "default.handlebars->29->1659"
11467 ]
11468 },
11469 {
@@ -11483,7 +11483,7 @@
11483 "zh-chs": "未删除的设备组:{0}",
11484 "zh-cht": "未刪除的設備組:{0}",
11485 "xloc": [
11486 - "default.handlebars->29->1641"
11486 + "default.handlebars->29->1642"
11487 ]
11488 },
11489 {
@@ -11876,7 +11876,7 @@
11876 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11877 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11878 "xloc": [
11879 - "default.handlebars->29->1643"
11879 + "default.handlebars->29->1644"
11880 ]
11881 },
11882 {
@@ -11913,8 +11913,8 @@
11913 "zh-chs": "设备",
11914 "zh-cht": "裝置",
11915 "xloc": [
11916 - "default.handlebars->29->1821",
11917 - "default.handlebars->29->1861"
11916 + "default.handlebars->29->1822",
11917 + "default.handlebars->29->1862"
11918 ]
11919 },
11920 {
@@ -11954,7 +11954,7 @@
11954 "zh-chs": "禁用的电子邮件两因素身份验证",
11955 "zh-cht": "禁用的電子郵件兩因素身份驗證",
11956 "xloc": [
11957 - "default.handlebars->29->1674"
11957 + "default.handlebars->29->1675"
11958 ]
11959 },
11960 {
@@ -11976,7 +11976,7 @@
11976 "xloc": [
11977 "default-mobile.handlebars->9->304",
11978 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11979 - "default.handlebars->29->1351",
11979 + "default.handlebars->29->1352",
11980 "default.handlebars->29->885",
11981 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11982 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -12114,7 +12114,7 @@
12114 "zh-chs": "显示设备组名称",
12115 "zh-cht": "顯示裝置群名稱",
12116 "xloc": [
12117 - "default.handlebars->29->1257"
12117 + "default.handlebars->29->1258"
12118 ]
12119 },
12120 {
@@ -12154,7 +12154,7 @@
12154 "zh-chs": "显示公共连结",
12155 "zh-cht": "顯示公共鏈結",
12156 "xloc": [
12157 - "default.handlebars->29->1544"
12157 + "default.handlebars->29->1545"
12158 ]
12159 },
12160 {
@@ -12174,7 +12174,7 @@
12174 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12175 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12176 "xloc": [
12177 - "default.handlebars->29->1603"
12177 + "default.handlebars->29->1604"
12178 ]
12179 },
12180 {
@@ -12194,7 +12194,7 @@
12194 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12195 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12196 "xloc": [
12197 - "default.handlebars->29->1611"
12197 + "default.handlebars->29->1612"
12198 ]
12199 },
12200 {
@@ -12214,8 +12214,8 @@
12214 "zh-chs": "什么都不做",
12215 "zh-cht": "什麼都不做",
12216 "xloc": [
12217 - "default.handlebars->29->1394",
12218 - "default.handlebars->29->1398"
12217 + "default.handlebars->29->1395",
12218 + "default.handlebars->29->1399"
12219 ]
12220 },
12221 {
@@ -12235,10 +12235,10 @@
12235 "zh-chs": "域",
12236 "zh-cht": "域",
12237 "xloc": [
12238 - "default.handlebars->29->1785",
12239 - "default.handlebars->29->1833",
12240 - "default.handlebars->29->1842",
12241 - "default.handlebars->29->1910",
12238 + "default.handlebars->29->1786",
12239 + "default.handlebars->29->1834",
12240 + "default.handlebars->29->1843",
12241 + "default.handlebars->29->1911",
12242 "mstsc.handlebars->main->1->3->1->2->1->0",
12243 "mstsc.handlebars->main->1->3->1->2->3"
12244 ]
@@ -12277,7 +12277,7 @@
12277 "zh-chs": "不要连接到服务器",
12278 "zh-cht": "不要連接到伺服器",
12279 "xloc": [
12280 - "default.handlebars->29->1399"
12280 + "default.handlebars->29->1400"
12281 ]
12282 },
12283 {
@@ -12397,7 +12397,7 @@
12397 "zh-cht": "下載檔案",
12398 "xloc": [
12399 "default-mobile.handlebars->9->334",
12400 - "default.handlebars->29->922"
12400 + "default.handlebars->29->923"
12401 ]
12402 },
12403 {
@@ -12497,7 +12497,7 @@
12497 "zh-chs": "下载报告",
12498 "zh-cht": "下載報告",
12499 "xloc": [
12500 - "default.handlebars->29->1703",
12500 + "default.handlebars->29->1704",
12501 "default.handlebars->container->column_l->p3->3->1->0->3"
12502 ]
12503 },
@@ -12698,7 +12698,7 @@
12698 "zh-chs": "使用以下一种档案格式下载事件列表。",
12699 "zh-cht": "使用以下一種檔案格式下載事件列表。",
12700 "xloc": [
12701 - "default.handlebars->29->1704"
12701 + "default.handlebars->29->1705"
12702 ]
12703 },
12704 {
@@ -12718,7 +12718,7 @@
12718 "zh-chs": "使用以下一种档案格式下载用户列表。",
12719 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
12720 "xloc": [
12721 - "default.handlebars->29->1769"
12721 + "default.handlebars->29->1770"
12722 ]
12723 },
12724 {
@@ -12799,7 +12799,7 @@
12799 "zh-chs": "下载:“{0}”",
12800 "zh-cht": "下載:“{0}”",
12801 "xloc": [
12802 - "default.handlebars->29->1634"
12802 + "default.handlebars->29->1635"
12803 ]
12804 },
12805 {
@@ -12839,7 +12839,7 @@
12839 "zh-chs": "代理重复",
12840 "zh-cht": "代理重複",
12841 "xloc": [
12842 - "default.handlebars->29->2073"
12842 + "default.handlebars->29->2074"
12843 ]
12844 },
12845 {
@@ -12879,7 +12879,7 @@
12879 "zh-chs": "复制用户组",
12880 "zh-cht": "複製用戶群",
12881 "xloc": [
12882 - "default.handlebars->29->1837"
12882 + "default.handlebars->29->1838"
12883 ]
12884 },
12885 {
@@ -12916,8 +12916,8 @@
12916 "zh-chs": "持续时间",
12917 "zh-cht": "持續時間",
12918 "xloc": [
12919 - "default.handlebars->29->2027",
12920 - "default.handlebars->29->2047",
12919 + "default.handlebars->29->2028",
12920 + "default.handlebars->29->2048",
12921 "player.handlebars->3->2"
12922 ]
12923 },
@@ -12955,7 +12955,7 @@
12955 "zh-chs": "荷兰文(比利时)",
12956 "zh-cht": "荷蘭文(比利時)",
12957 "xloc": [
12958 - "default.handlebars->29->1097"
12958 + "default.handlebars->29->1098"
12959 ]
12960 },
12961 {
@@ -12975,7 +12975,7 @@
12975 "zh-chs": "荷兰文(标准)",
12976 "zh-cht": "荷蘭文(標準)",
12977 "xloc": [
12978 - "default.handlebars->29->1096"
12978 + "default.handlebars->29->1097"
12979 ]
12980 },
12981 {
@@ -13286,10 +13286,10 @@
13286 "default-mobile.handlebars->9->423",
13287 "default-mobile.handlebars->9->425",
13288 "default-mobile.handlebars->9->445",
13289 - "default.handlebars->29->1411",
13290 - "default.handlebars->29->1443",
13291 - "default.handlebars->29->1467",
13292 - "default.handlebars->29->1479"
13289 + "default.handlebars->29->1412",
13290 + "default.handlebars->29->1444",
13291 + "default.handlebars->29->1468",
13292 + "default.handlebars->29->1480"
13293 ]
13294 },
13295 {
@@ -13309,7 +13309,7 @@
13309 "zh-chs": "编辑设备组功能",
13310 "zh-cht": "編輯裝置群功能",
13311 "xloc": [
13312 - "default.handlebars->29->1429"
13312 + "default.handlebars->29->1430"
13313 ]
13314 },
13315 {
@@ -13329,8 +13329,8 @@
13329 "zh-chs": "编辑设备组权限",
13330 "zh-cht": "編輯裝置群權限",
13331 "xloc": [
13332 - "default.handlebars->29->1464",
13333 - "default.handlebars->29->1476"
13332 + "default.handlebars->29->1465",
13333 + "default.handlebars->29->1477"
13334 ]
13335 },
13336 {
@@ -13350,7 +13350,7 @@
13350 "zh-chs": "编辑设备组用户同意",
13351 "zh-cht": "編輯裝置群用戶同意",
13352 "xloc": [
13353 - "default.handlebars->29->1412"
13353 + "default.handlebars->29->1413"
13354 ]
13355 },
13356 {
@@ -13371,7 +13371,7 @@
13371 "zh-cht": "編輯裝置筆記",
13372 "xloc": [
13373 "default-mobile.handlebars->9->437",
13374 - "default.handlebars->29->1456"
13374 + "default.handlebars->29->1457"
13375 ]
13376 },
13377 {
@@ -13391,8 +13391,8 @@
13391 "zh-chs": "编辑设备权限",
13392 "zh-cht": "編輯裝置權限",
13393 "xloc": [
13394 - "default.handlebars->29->1469",
13395 - "default.handlebars->29->1471"
13394 + "default.handlebars->29->1470",
13395 + "default.handlebars->29->1472"
13396 ]
13397 },
13398 {
@@ -13432,7 +13432,7 @@
13432 "zh-chs": "编辑设备用户同意",
13433 "zh-cht": "編輯裝置用戶同意",
13434 "xloc": [
13435 - "default.handlebars->29->1414"
13435 + "default.handlebars->29->1415"
13436 ]
13437 },
13438 {
@@ -13500,7 +13500,7 @@
13500 "zh-cht": "編輯筆記",
13501 "xloc": [
13502 "default-mobile.handlebars->9->452",
13503 - "default.handlebars->29->1486"
13503 + "default.handlebars->29->1487"
13504 ]
13505 },
13506 {
@@ -13520,7 +13520,7 @@
13520 "zh-chs": "编辑用户同意",
13521 "zh-cht": "編輯用戶同意",
13522 "xloc": [
13523 - "default.handlebars->29->1413"
13523 + "default.handlebars->29->1414"
13524 ]
13525 },
13526 {
@@ -13540,7 +13540,7 @@
13540 "zh-chs": "编辑用户设备组权限",
13541 "zh-cht": "編輯用戶裝置群權限",
13542 "xloc": [
13543 - "default.handlebars->29->1477"
13543 + "default.handlebars->29->1478"
13544 ]
13545 },
13546 {
@@ -13560,7 +13560,7 @@
13560 "zh-chs": "编辑用户设备权限",
13561 "zh-cht": "編輯用戶裝置權限",
13562 "xloc": [
13563 - "default.handlebars->29->1472"
13563 + "default.handlebars->29->1473"
13564 ]
13565 },
13566 {
@@ -13580,7 +13580,7 @@
13580 "zh-chs": "编辑用户组",
13581 "zh-cht": "編輯用戶群",
13582 "xloc": [
13583 - "default.handlebars->29->1888"
13583 + "default.handlebars->29->1889"
13584 ]
13585 },
13586 {
@@ -13600,14 +13600,14 @@
13600 "zh-chs": "编辑用户组设备权限",
13601 "zh-cht": "編輯用戶群裝置權限",
13602 "xloc": [
13603 - "default.handlebars->29->1474"
13603 + "default.handlebars->29->1475"
13604 ]
13605 },
13606 {
13607 "en": "Edit User Group User Consent",
13608 "nl": "Bewerk groepsgebruikerstoestemming",
13609 "xloc": [
13610 - "default.handlebars->29->1415"
13610 + "default.handlebars->29->1416"
13611 ]
13612 },
13613 {
@@ -13669,11 +13669,11 @@
13669 "zh-cht": "電郵",
13670 "xloc": [
13671 "default-mobile.handlebars->9->78",
13672 - "default.handlebars->29->1787",
13673 - "default.handlebars->29->1914",
13674 - "default.handlebars->29->1916",
13675 - "default.handlebars->29->1956",
13676 - "default.handlebars->29->1972",
13672 + "default.handlebars->29->1788",
13673 + "default.handlebars->29->1915",
13674 + "default.handlebars->29->1917",
13675 + "default.handlebars->29->1957",
13676 + "default.handlebars->29->1973",
13677 "default.handlebars->29->320",
13678 "login-mobile.handlebars->5->42",
13679 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13706,7 +13706,7 @@
13706 "zh-cht": "電郵地址變更",
13707 "xloc": [
13708 "default-mobile.handlebars->9->79",
13709 - "default.handlebars->29->1266"
13709 + "default.handlebars->29->1267"
13710 ]
13711 },
13712 {
@@ -13727,7 +13727,7 @@
13727 "zh-cht": "電郵認證",
13728 "xloc": [
13729 "default-mobile.handlebars->9->68",
13730 - "default.handlebars->29->1034"
13730 + "default.handlebars->29->1035"
13731 ]
13732 },
13733 {
@@ -13787,7 +13787,7 @@
13787 "zh-cht": "電郵驗證",
13788 "xloc": [
13789 "default-mobile.handlebars->9->77",
13790 - "default.handlebars->29->1264"
13790 + "default.handlebars->29->1265"
13791 ]
13792 },
13793 {
@@ -13827,7 +13827,7 @@
13827 "zh-chs": "电邮未验证",
13828 "zh-cht": "電郵未驗證",
13829 "xloc": [
13830 - "default.handlebars->29->1733"
13830 + "default.handlebars->29->1734"
13831 ]
13832 },
13833 {
@@ -13835,8 +13835,8 @@
13835 "nl": "Email is geverifieerd",
13836 "fr": "Email vérifié",
13837 "xloc": [
13838 - "default.handlebars->29->1734",
13839 - "default.handlebars->29->1908"
13838 + "default.handlebars->29->1735",
13839 + "default.handlebars->29->1909"
13840 ]
13841 },
13842 {
@@ -13856,7 +13856,7 @@
13856 "zh-chs": "电邮已验证。",
13857 "zh-cht": "電郵已驗證。",
13858 "xloc": [
13859 - "default.handlebars->29->1793"
13859 + "default.handlebars->29->1794"
13860 ]
13861 },
13862 {
@@ -13876,7 +13876,7 @@
13876 "zh-chs": "电邮未验证",
13877 "zh-cht": "電郵未驗證",
13878 "xloc": [
13879 - "default.handlebars->29->1909"
13879 + "default.handlebars->29->1910"
13880 ]
13881 },
13882 {
@@ -13940,7 +13940,7 @@
13940 "zh-chs": "已通过电邮验证,并且需要重置密码。",
13941 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13942 "xloc": [
13943 - "default.handlebars->29->1794"
13943 + "default.handlebars->29->1795"
13944 ]
13945 },
13946 {
@@ -13960,7 +13960,7 @@
13960 "zh-chs": "电邮/短信流量",
13961 "zh-cht": "電郵/短信流量",
13962 "xloc": [
13963 - "default.handlebars->29->2115"
13963 + "default.handlebars->29->2116"
13964 ]
13965 },
13966 {
@@ -14006,7 +14006,7 @@
14006 "zh-chs": "启用邀请代码",
14007 "zh-cht": "啟用邀請代碼",
14008 "xloc": [
14009 - "default.handlebars->29->1509"
14009 + "default.handlebars->29->1510"
14010 ]
14011 },
14012 {
@@ -14047,7 +14047,7 @@
14047 "zh-cht": "啟用電郵二因子鑑別。",
14048 "xloc": [
14049 "default-mobile.handlebars->9->70",
14050 - "default.handlebars->29->1036"
14050 + "default.handlebars->29->1037"
14051 ]
14052 },
14053 {
@@ -14087,7 +14087,7 @@
14087 "zh-chs": "已启用",
14088 "zh-cht": "已啟用",
14089 "xloc": [
14090 - "default.handlebars->29->2049"
14090 + "default.handlebars->29->2050"
14091 ]
14092 },
14093 {
@@ -14107,7 +14107,7 @@
14107 "zh-chs": "启用电子邮件两因素身份验证",
14108 "zh-cht": "啟用電子郵件兩因素身份驗證",
14109 "xloc": [
14110 - "default.handlebars->29->1673"
14110 + "default.handlebars->29->1674"
14111 ]
14112 },
14113 {
@@ -14147,7 +14147,7 @@
14147 "zh-chs": "时间结束",
14148 "zh-cht": "時間結束",
14149 "xloc": [
14150 - "default.handlebars->29->2046"
14150 + "default.handlebars->29->2047"
14151 ]
14152 },
14153 {
@@ -14167,7 +14167,7 @@
14167 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14168 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14169 "xloc": [
14170 - "default.handlebars->29->1596"
14170 + "default.handlebars->29->1597"
14171 ]
14172 },
14173 {
@@ -14187,7 +14187,7 @@
14187 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14188 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14189 "xloc": [
14190 - "default.handlebars->29->1597"
14190 + "default.handlebars->29->1598"
14191 ]
14192 },
14193 {
@@ -14207,7 +14207,7 @@
14207 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14208 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14209 "xloc": [
14210 - "default.handlebars->29->1594"
14210 + "default.handlebars->29->1595"
14211 ]
14212 },
14213 {
@@ -14227,7 +14227,7 @@
14227 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14228 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14229 "xloc": [
14230 - "default.handlebars->29->1595"
14230 + "default.handlebars->29->1596"
14231 ]
14232 },
14233 {
@@ -14247,7 +14247,7 @@
14247 "zh-chs": "英文",
14248 "zh-cht": "英文",
14249 "xloc": [
14250 - "default.handlebars->29->1098"
14250 + "default.handlebars->29->1099"
14251 ]
14252 },
14253 {
@@ -14267,7 +14267,7 @@
14267 "zh-chs": "英文(澳洲)",
14268 "zh-cht": "英文(澳洲)",
14269 "xloc": [
14270 - "default.handlebars->29->1099"
14270 + "default.handlebars->29->1100"
14271 ]
14272 },
14273 {
@@ -14287,7 +14287,7 @@
14287 "zh-chs": "英文(伯利茲)",
14288 "zh-cht": "英文(伯利茲)",
14289 "xloc": [
14290 - "default.handlebars->29->1100"
14290 + "default.handlebars->29->1101"
14291 ]
14292 },
14293 {
@@ -14307,7 +14307,7 @@
14307 "zh-chs": "英文(加拿大)",
14308 "zh-cht": "英文(加拿大)",
14309 "xloc": [
14310 - "default.handlebars->29->1101"
14310 + "default.handlebars->29->1102"
14311 ]
14312 },
14313 {
@@ -14327,7 +14327,7 @@
14327 "zh-chs": "英文(爱尔兰)",
14328 "zh-cht": "英文(愛爾蘭)",
14329 "xloc": [
14330 - "default.handlebars->29->1102"
14330 + "default.handlebars->29->1103"
14331 ]
14332 },
14333 {
@@ -14347,7 +14347,7 @@
14347 "zh-chs": "英文(牙买加)",
14348 "zh-cht": "英文(牙買加)",
14349 "xloc": [
14350 - "default.handlebars->29->1103"
14350 + "default.handlebars->29->1104"
14351 ]
14352 },
14353 {
@@ -14367,7 +14367,7 @@
14367 "zh-chs": "英文(纽西兰)",
14368 "zh-cht": "英文(紐西蘭)",
14369 "xloc": [
14370 - "default.handlebars->29->1104"
14370 + "default.handlebars->29->1105"
14371 ]
14372 },
14373 {
@@ -14387,7 +14387,7 @@
14387 "zh-chs": "英文(菲律宾)",
14388 "zh-cht": "英文(菲律賓)",
14389 "xloc": [
14390 - "default.handlebars->29->1105"
14390 + "default.handlebars->29->1106"
14391 ]
14392 },
14393 {
@@ -14407,7 +14407,7 @@
14407 "zh-chs": "英语(南非)",
14408 "zh-cht": "英語(南非)",
14409 "xloc": [
14410 - "default.handlebars->29->1106"
14410 + "default.handlebars->29->1107"
14411 ]
14412 },
14413 {
@@ -14427,7 +14427,7 @@
14427 "zh-chs": "英文(特立尼达和多巴哥)",
14428 "zh-cht": "英文(特立尼達和多巴哥)",
14429 "xloc": [
14430 - "default.handlebars->29->1107"
14430 + "default.handlebars->29->1108"
14431 ]
14432 },
14433 {
@@ -14447,7 +14447,7 @@
14447 "zh-chs": "英文(英国)",
14448 "zh-cht": "英文(英國)",
14449 "xloc": [
14450 - "default.handlebars->29->1108"
14450 + "default.handlebars->29->1109"
14451 ]
14452 },
14453 {
@@ -14467,7 +14467,7 @@
14467 "zh-chs": "美国英文",
14468 "zh-cht": "美國英語",
14469 "xloc": [
14470 - "default.handlebars->29->1109"
14470 + "default.handlebars->29->1110"
14471 ]
14472 },
14473 {
@@ -14487,7 +14487,7 @@
14487 "zh-chs": "英文(津巴布韦)",
14488 "zh-cht": "英文(津巴布韋)",
14489 "xloc": [
14490 - "default.handlebars->29->1110"
14490 + "default.handlebars->29->1111"
14491 ]
14492 },
14493 {
@@ -14507,8 +14507,9 @@
14507 "zh-chs": "输入",
14508 "zh-cht": "輸入",
14509 "xloc": [
14510 - "default.handlebars->29->1292",
14511 - "default.handlebars->29->1293"
14510 + "default.handlebars->29->1293",
14511 + "default.handlebars->29->1294",
14512 + "default.handlebars->29->896"
14513 ]
14514 },
14515 {
@@ -14528,7 +14529,7 @@
14529 "zh-chs": "输入管理领域名称的逗号分隔列表。",
14530 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14531 "xloc": [
14531 - "default.handlebars->29->1798"
14532 + "default.handlebars->29->1799"
14533 ]
14534 },
14535 {
@@ -14631,7 +14632,7 @@
14632 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14633 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14634 "xloc": [
14634 - "default.handlebars->29->1031"
14635 + "default.handlebars->29->1032"
14636 ]
14637 },
14638 {
@@ -14691,7 +14692,7 @@
14692 "zh-chs": "世界文",
14693 "zh-cht": "世界語",
14694 "xloc": [
14694 - "default.handlebars->29->1111"
14695 + "default.handlebars->29->1112"
14696 ]
14697 },
14698 {
@@ -14711,7 +14712,7 @@
14712 "zh-chs": "爱沙尼亚文",
14713 "zh-cht": "愛沙尼亞語",
14714 "xloc": [
14714 - "default.handlebars->29->1112"
14715 + "default.handlebars->29->1113"
14716 ]
14717 },
14718 {
@@ -14731,7 +14732,7 @@
14732 "zh-chs": "事件详情",
14733 "zh-cht": "事件詳情",
14734 "xloc": [
14734 - "default.handlebars->29->935"
14735 + "default.handlebars->29->936"
14736 ]
14737 },
14738 {
@@ -14751,7 +14752,7 @@
14752 "zh-chs": "事件列表输出",
14753 "zh-cht": "事件列表輸出",
14754 "xloc": [
14754 - "default.handlebars->29->1709"
14755 + "default.handlebars->29->1710"
14756 ]
14757 },
14758 {
@@ -14952,7 +14953,7 @@
14953 "zh-chs": "外部",
14954 "zh-cht": "外部",
14955 "xloc": [
14955 - "default.handlebars->29->2100"
14956 + "default.handlebars->29->2101"
14957 ]
14958 },
14959 {
@@ -14992,7 +14993,7 @@
14993 "zh-chs": "FYRO马其顿语",
14994 "zh-cht": "FYRO馬其頓語",
14995 "xloc": [
14995 - "default.handlebars->29->1162"
14996 + "default.handlebars->29->1163"
14997 ]
14998 },
14999 {
@@ -15012,7 +15013,7 @@
15013 "zh-chs": "法罗语",
15014 "zh-cht": "法羅語",
15015 "xloc": [
15015 - "default.handlebars->29->1113"
15016 + "default.handlebars->29->1114"
15017 ]
15018 },
15019 {
@@ -15052,7 +15053,7 @@
15053 "zh-chs": "本地用户拒绝后无法启动远程桌面",
15054 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
15055 "xloc": [
15055 - "default.handlebars->29->1619"
15056 + "default.handlebars->29->1620"
15057 ]
15058 },
15059 {
@@ -15072,7 +15073,7 @@
15073 "zh-chs": "本地用户拒绝后无法启动远程文件",
15074 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
15075 "xloc": [
15075 - "default.handlebars->29->1626"
15076 + "default.handlebars->29->1627"
15077 ]
15078 },
15079 {
@@ -15113,7 +15114,7 @@
15114 "zh-chs": "波斯文(波斯文)",
15115 "zh-cht": "波斯語(波斯語)",
15116 "xloc": [
15116 - "default.handlebars->29->1114"
15117 + "default.handlebars->29->1115"
15118 ]
15119 },
15120 {
@@ -15155,7 +15156,7 @@
15156 "zh-chs": "功能",
15157 "zh-cht": "功能",
15158 "xloc": [
15158 - "default.handlebars->29->1337"
15159 + "default.handlebars->29->1338"
15160 ]
15161 },
15162 {
@@ -15175,7 +15176,7 @@
15176 "zh-chs": "斐济",
15177 "zh-cht": "斐濟",
15178 "xloc": [
15178 - "default.handlebars->29->1115"
15179 + "default.handlebars->29->1116"
15180 ]
15181 },
15182 {
@@ -15217,14 +15218,11 @@
15218 "xloc": [
15219 "default-mobile.handlebars->9->318",
15220 "default.handlebars->29->513",
15220 - "default.handlebars->29->906"
15221 + "default.handlebars->29->907"
15222 ]
15223 },
15224 {
15224 - "en": "File Files",
15225 - "xloc": [
15226 - "default.handlebars->29->895"
15227 - ]
15225 + "en": "File Files"
15226 },
15227 {
15228 "cs": "Provoz souboru",
@@ -15306,8 +15304,8 @@
15304 "xloc": [
15305 "default-mobile.handlebars->9->171",
15306 "default-mobile.handlebars->9->268",
15309 - "default.handlebars->29->1423",
15310 - "default.handlebars->29->2034",
15307 + "default.handlebars->29->1424",
15308 + "default.handlebars->29->2035",
15309 "default.handlebars->29->259",
15310 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15311 "default.handlebars->contextMenu->cxfiles"
@@ -15350,9 +15348,9 @@
15348 "zh-chs": "档案通知",
15349 "zh-cht": "檔案通知",
15350 "xloc": [
15353 - "default.handlebars->29->1345",
15354 - "default.handlebars->29->1854",
15355 - "default.handlebars->29->1941",
15351 + "default.handlebars->29->1346",
15352 + "default.handlebars->29->1855",
15353 + "default.handlebars->29->1942",
15354 "default.handlebars->29->598"
15355 ]
15356 },
@@ -15373,9 +15371,9 @@
15371 "zh-chs": "档案提示",
15372 "zh-cht": "檔案提示",
15373 "xloc": [
15376 - "default.handlebars->29->1344",
15377 - "default.handlebars->29->1853",
15378 - "default.handlebars->29->1940",
15374 + "default.handlebars->29->1345",
15375 + "default.handlebars->29->1854",
15376 + "default.handlebars->29->1941",
15377 "default.handlebars->29->597"
15378 ]
15379 },
@@ -15410,6 +15408,12 @@
15408 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3"
15409 ]
15410 },
15411 + {
15412 + "en": "Find Files",
15413 + "xloc": [
15414 + "default.handlebars->29->895"
15415 + ]
15416 + },
15417 {
15418 "cs": "Dokončení relace nahrávání, {0} s",
15419 "de": "Beendete Aufnahmesitzung, {0} Sekunde(n)",
@@ -15427,7 +15431,7 @@
15431 "zh-chs": "录制会话已完成,{0}秒",
15432 "zh-cht": "錄製會話已完成,{0}秒",
15433 "xloc": [
15430 - "default.handlebars->29->1592"
15434 + "default.handlebars->29->1593"
15435 ]
15436 },
15437 {
@@ -15447,7 +15451,7 @@
15451 "zh-chs": "芬兰",
15452 "zh-cht": "芬蘭",
15453 "xloc": [
15450 - "default.handlebars->29->1116"
15454 + "default.handlebars->29->1117"
15455 ]
15456 },
15457 {
@@ -15602,8 +15606,8 @@
15606 "zh-chs": "下次登录时强制重置密码。",
15607 "zh-cht": "下次登入時強制重置密碼。",
15608 "xloc": [
15605 - "default.handlebars->29->1792",
15606 - "default.handlebars->29->1981"
15609 + "default.handlebars->29->1793",
15610 + "default.handlebars->29->1982"
15611 ]
15612 },
15613 {
@@ -15686,7 +15690,7 @@
15690 "zh-chs": "格式化",
15691 "zh-cht": "格式化",
15692 "xloc": [
15689 - "default.handlebars->29->1700"
15693 + "default.handlebars->29->1701"
15694 ]
15695 },
15696 {
@@ -15727,8 +15731,8 @@
15731 "zh-chs": "自由",
15732 "zh-cht": "自由",
15733 "xloc": [
15730 - "default.handlebars->29->2058",
15731 - "default.handlebars->29->2060"
15734 + "default.handlebars->29->2059",
15735 + "default.handlebars->29->2061"
15736 ]
15737 },
15738 {
@@ -15769,7 +15773,7 @@
15773 "zh-chs": "法文(比利时)",
15774 "zh-cht": "法語(比利時)",
15775 "xloc": [
15772 - "default.handlebars->29->1118"
15776 + "default.handlebars->29->1119"
15777 ]
15778 },
15779 {
@@ -15789,7 +15793,7 @@
15793 "zh-chs": "法文(加拿大)",
15794 "zh-cht": "法語(加拿大)",
15795 "xloc": [
15792 - "default.handlebars->29->1119"
15796 + "default.handlebars->29->1120"
15797 ]
15798 },
15799 {
@@ -15809,7 +15813,7 @@
15813 "zh-chs": "法文(法国)",
15814 "zh-cht": "法語(法國)",
15815 "xloc": [
15812 - "default.handlebars->29->1120"
15816 + "default.handlebars->29->1121"
15817 ]
15818 },
15819 {
@@ -15829,7 +15833,7 @@
15833 "zh-chs": "法文(卢森堡)",
15834 "zh-cht": "法語(盧森堡)",
15835 "xloc": [
15832 - "default.handlebars->29->1121"
15836 + "default.handlebars->29->1122"
15837 ]
15838 },
15839 {
@@ -15849,7 +15853,7 @@
15853 "zh-chs": "法文(摩纳哥)",
15854 "zh-cht": "法語(摩納哥)",
15855 "xloc": [
15852 - "default.handlebars->29->1122"
15856 + "default.handlebars->29->1123"
15857 ]
15858 },
15859 {
@@ -15869,7 +15873,7 @@
15873 "zh-chs": "法文(标准)",
15874 "zh-cht": "法語(標準)",
15875 "xloc": [
15872 - "default.handlebars->29->1117"
15876 + "default.handlebars->29->1118"
15877 ]
15878 },
15879 {
@@ -15889,7 +15893,7 @@
15893 "zh-chs": "法文(瑞士)",
15894 "zh-cht": "法語(瑞士)",
15895 "xloc": [
15892 - "default.handlebars->29->1123"
15896 + "default.handlebars->29->1124"
15897 ]
15898 },
15899 {
@@ -15909,7 +15913,7 @@
15913 "zh-chs": "弗里斯兰文",
15914 "zh-cht": "弗里斯蘭語",
15915 "xloc": [
15912 - "default.handlebars->29->1124"
15916 + "default.handlebars->29->1125"
15917 ]
15918 },
15919 {
@@ -15929,7 +15933,7 @@
15933 "zh-chs": "弗留利",
15934 "zh-cht": "弗留利",
15935 "xloc": [
15932 - "default.handlebars->29->1125"
15936 + "default.handlebars->29->1126"
15937 ]
15938 },
15939 {
@@ -15953,9 +15957,9 @@
15957 "default-mobile.handlebars->9->415",
15958 "default-mobile.handlebars->9->424",
15959 "default-mobile.handlebars->9->444",
15956 - "default.handlebars->29->1299",
15957 - "default.handlebars->29->1442",
15958 - "default.handlebars->29->1804"
15960 + "default.handlebars->29->1300",
15961 + "default.handlebars->29->1443",
15962 + "default.handlebars->29->1805"
15963 ]
15964 },
15965 {
@@ -15975,7 +15979,7 @@
15979 "zh-chs": "完整管理员(保留所有权利)",
15980 "zh-cht": "完整管理員(保留所有權利)",
15981 "xloc": [
15978 - "default.handlebars->29->1478"
15982 + "default.handlebars->29->1479"
15983 ]
15984 },
15985 {
@@ -16074,7 +16078,7 @@
16078 "zh-chs": "完整管理员",
16079 "zh-cht": "完整管理員",
16080 "xloc": [
16077 - "default.handlebars->29->1902"
16081 + "default.handlebars->29->1903"
16082 ]
16083 },
16084 {
@@ -16082,8 +16086,8 @@
16086 "nl": "Vol automatisch",
16087 "fr": "Entièrement automatique",
16088 "xloc": [
16085 - "default.handlebars->29->1362",
16086 - "default.handlebars->29->1385"
16089 + "default.handlebars->29->1363",
16090 + "default.handlebars->29->1386"
16091 ]
16092 },
16093 {
@@ -16104,7 +16108,7 @@
16108 "zh-cht": "GPU",
16109 "xloc": [
16110 "default-mobile.handlebars->9->391",
16107 - "default.handlebars->29->997"
16111 + "default.handlebars->29->998"
16112 ]
16113 },
16114 {
@@ -16124,7 +16128,7 @@
16128 "zh-chs": "盖尔文(爱尔兰)",
16129 "zh-cht": "蓋爾語(愛爾蘭)",
16130 "xloc": [
16127 - "default.handlebars->29->1127"
16131 + "default.handlebars->29->1128"
16132 ]
16133 },
16134 {
@@ -16144,7 +16148,7 @@
16148 "zh-chs": "盖尔文(苏格兰文)",
16149 "zh-cht": "蓋爾語(蘇格蘭語)",
16150 "xloc": [
16147 - "default.handlebars->29->1126"
16151 + "default.handlebars->29->1127"
16152 ]
16153 },
16154 {
@@ -16164,7 +16168,7 @@
16168 "zh-chs": "加拉契文",
16169 "zh-cht": "加拉契語",
16170 "xloc": [
16167 - "default.handlebars->29->1128"
16171 + "default.handlebars->29->1129"
16172 ]
16173 },
16174 {
@@ -16290,7 +16294,7 @@
16294 "zh-chs": "格鲁吉亚文",
16295 "zh-cht": "格魯吉亞文",
16296 "xloc": [
16293 - "default.handlebars->29->1129"
16297 + "default.handlebars->29->1130"
16298 ]
16299 },
16300 {
@@ -16310,7 +16314,7 @@
16314 "zh-chs": "德文(奥地利)",
16315 "zh-cht": "德語(奧地利)",
16316 "xloc": [
16313 - "default.handlebars->29->1131"
16317 + "default.handlebars->29->1132"
16318 ]
16319 },
16320 {
@@ -16330,7 +16334,7 @@
16334 "zh-chs": "德文(德国)",
16335 "zh-cht": "德文(德國)",
16336 "xloc": [
16333 - "default.handlebars->29->1132"
16337 + "default.handlebars->29->1133"
16338 ]
16339 },
16340 {
@@ -16350,7 +16354,7 @@
16354 "zh-chs": "德文(列支敦士登)",
16355 "zh-cht": "德文(列支敦士登)",
16356 "xloc": [
16353 - "default.handlebars->29->1133"
16357 + "default.handlebars->29->1134"
16358 ]
16359 },
16360 {
@@ -16370,7 +16374,7 @@
16374 "zh-chs": "德文(卢森堡)",
16375 "zh-cht": "德語(盧森堡)",
16376 "xloc": [
16373 - "default.handlebars->29->1134"
16377 + "default.handlebars->29->1135"
16378 ]
16379 },
16380 {
@@ -16390,7 +16394,7 @@
16394 "zh-chs": "德文(标准)",
16395 "zh-cht": "德語(標準)",
16396 "xloc": [
16393 - "default.handlebars->29->1130"
16397 + "default.handlebars->29->1131"
16398 ]
16399 },
16400 {
@@ -16410,7 +16414,7 @@
16414 "zh-chs": "德文(瑞士)",
16415 "zh-cht": "德文(瑞士)",
16416 "xloc": [
16413 - "default.handlebars->29->1135"
16417 + "default.handlebars->29->1136"
16418 ]
16419 },
16420 {
@@ -16471,7 +16475,7 @@
16475 "zh-chs": "正在获取剪贴板内容,{0}个字节",
16476 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
16477 "xloc": [
16474 - "default.handlebars->29->1606"
16478 + "default.handlebars->29->1607"
16479 ]
16480 },
16481 {
@@ -16533,7 +16537,7 @@
16537 "zh-chs": "好",
16538 "zh-cht": "好",
16539 "xloc": [
16536 - "default.handlebars->29->1295"
16540 + "default.handlebars->29->1296"
16541 ]
16542 },
16543 {
@@ -16578,8 +16582,8 @@
16582 "zh-chs": "Google云端硬盘备份",
16583 "zh-cht": "Google雲端硬盤備份",
16584 "xloc": [
16581 - "default.handlebars->29->1306",
16582 - "default.handlebars->29->1309",
16585 + "default.handlebars->29->1307",
16586 + "default.handlebars->29->1310",
16587 "default.handlebars->29->205"
16588 ]
16589 },
@@ -16600,7 +16604,7 @@
16604 "zh-chs": "Google云端硬盘控制台",
16605 "zh-cht": "Google雲端硬盤控制台",
16606 "xloc": [
16603 - "default.handlebars->29->1303"
16607 + "default.handlebars->29->1304"
16608 ]
16609 },
16610 {
@@ -16640,7 +16644,7 @@
16644 "zh-chs": "Google云端硬盘备份当前处于活动状态。",
16645 "zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
16646 "xloc": [
16643 - "default.handlebars->29->1307"
16647 + "default.handlebars->29->1308"
16648 ]
16649 },
16650 {
@@ -16660,7 +16664,7 @@
16664 "zh-chs": "希腊文",
16665 "zh-cht": "希臘文",
16666 "xloc": [
16663 - "default.handlebars->29->1136"
16667 + "default.handlebars->29->1137"
16668 ]
16669 },
16670 {
@@ -16702,8 +16706,8 @@
16706 "zh-chs": "集体指令",
16707 "zh-cht": "集體指令",
16708 "xloc": [
16705 - "default.handlebars->29->1748",
16706 - "default.handlebars->29->1827",
16709 + "default.handlebars->29->1749",
16710 + "default.handlebars->29->1828",
16711 "default.handlebars->29->450",
16712 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16713 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16727,7 +16731,7 @@
16731 "zh-chs": "通过...分组",
16732 "zh-cht": "通過...分群",
16733 "xloc": [
16730 - "default.handlebars->29->1696"
16734 + "default.handlebars->29->1697"
16735 ]
16736 },
16737 {
@@ -16747,7 +16751,7 @@
16751 "zh-chs": "组标识符",
16752 "zh-cht": "群標識符",
16753 "xloc": [
16750 - "default.handlebars->29->1844"
16754 + "default.handlebars->29->1845"
16755 ]
16756 },
16757 {
@@ -16767,7 +16771,7 @@
16771 "zh-chs": "群组成员",
16772 "zh-cht": "群組成員",
16773 "xloc": [
16770 - "default.handlebars->29->1865"
16774 + "default.handlebars->29->1866"
16775 ]
16776 },
16777 {
@@ -16787,7 +16791,7 @@
16791 "zh-chs": "用户{0}的群组权限。",
16792 "zh-cht": "用戶{0}的群組權限。",
16793 "xloc": [
16790 - "default.handlebars->29->1441"
16794 + "default.handlebars->29->1442"
16795 ]
16796 },
16797 {
@@ -16807,7 +16811,7 @@
16811 "zh-chs": "{0}的群组权限。",
16812 "zh-cht": "{0}的群組權限。",
16813 "xloc": [
16810 - "default.handlebars->29->1440"
16814 + "default.handlebars->29->1441"
16815 ]
16816 },
16817 {
@@ -16896,7 +16900,7 @@
16900 "zh-chs": "古久拉提",
16901 "zh-cht": "古久拉提",
16902 "xloc": [
16899 - "default.handlebars->29->1137"
16903 + "default.handlebars->29->1138"
16904 ]
16905 },
16906 {
@@ -16939,7 +16943,7 @@
16943 "zh-chs": "海地文",
16944 "zh-cht": "海地文",
16945 "xloc": [
16942 - "default.handlebars->29->1138"
16946 + "default.handlebars->29->1139"
16947 ]
16948 },
16949 {
@@ -16979,7 +16983,7 @@
16983 "zh-chs": "强行断开代理",
16984 "zh-cht": "強行斷開代理",
16985 "xloc": [
16982 - "default.handlebars->29->1026"
16986 + "default.handlebars->29->1027"
16987 ]
16988 },
16989 {
@@ -16999,7 +17003,7 @@
17003 "zh-chs": "堆总数",
17004 "zh-cht": "堆總數",
17005 "xloc": [
17002 - "default.handlebars->29->2102"
17006 + "default.handlebars->29->2103"
17007 ]
17008 },
17009 {
@@ -17019,7 +17023,7 @@
17023 "zh-chs": "堆使用",
17024 "zh-cht": "堆使用",
17025 "xloc": [
17022 - "default.handlebars->29->2101"
17026 + "default.handlebars->29->2102"
17027 ]
17028 },
17029 {
@@ -17039,7 +17043,7 @@
17043 "zh-chs": "希伯来文",
17044 "zh-cht": "希伯來文",
17045 "xloc": [
17042 - "default.handlebars->29->1139"
17046 + "default.handlebars->29->1140"
17047 ]
17048 },
17049 {
@@ -17076,7 +17080,7 @@
17080 "fr": "Assistance demandée, utilisateur: {0}, message: {1}",
17081 "nl": "Hulp verzoek van, user: {0}, details: {1}",
17082 "xloc": [
17079 - "default.handlebars->29->1683"
17083 + "default.handlebars->29->1684"
17084 ]
17085 },
17086 {
@@ -17113,7 +17117,7 @@
17117 "zh-chs": "帮助翻译MeshCentral",
17118 "zh-cht": "幫助翻譯MeshCentral",
17119 "xloc": [
17116 - "default.handlebars->29->1254"
17120 + "default.handlebars->29->1255"
17121 ]
17122 },
17123 {
@@ -17217,7 +17221,7 @@
17221 "zh-chs": "印地文",
17222 "zh-cht": "印地文",
17223 "xloc": [
17220 - "default.handlebars->29->1140"
17224 + "default.handlebars->29->1141"
17225 ]
17226 },
17227 {
@@ -17255,7 +17259,7 @@
17259 "zh-cht": "保存1個項目進行複製",
17260 "xloc": [
17261 "default-mobile.handlebars->9->327",
17258 - "default.handlebars->29->916"
17262 + "default.handlebars->29->917"
17263 ]
17264 },
17265 {
@@ -17276,7 +17280,7 @@
17280 "zh-cht": "保存1個項目進行移動",
17281 "xloc": [
17282 "default-mobile.handlebars->9->331",
17279 - "default.handlebars->29->920"
17283 + "default.handlebars->29->921"
17284 ]
17285 },
17286 {
@@ -17297,7 +17301,7 @@
17301 "zh-cht": "保留{0}個項目進行複製",
17302 "xloc": [
17303 "default-mobile.handlebars->9->325",
17300 - "default.handlebars->29->914"
17304 + "default.handlebars->29->915"
17305 ]
17306 },
17307 {
@@ -17318,7 +17322,7 @@
17322 "zh-cht": "保存{0}個項目以進行移動",
17323 "xloc": [
17324 "default-mobile.handlebars->9->329",
17321 - "default.handlebars->29->918"
17325 + "default.handlebars->29->919"
17326 ]
17327 },
17328 {
@@ -17339,7 +17343,7 @@
17343 "zh-cht": "保存{0}項目{1}給{2}",
17344 "xloc": [
17345 "default-mobile.handlebars->9->129",
17342 - "default.handlebars->29->1579"
17346 + "default.handlebars->29->1580"
17347 ]
17348 },
17349 {
@@ -17385,7 +17389,7 @@
17389 "zh-chs": "主机名同步",
17390 "zh-cht": "主機名同步",
17391 "xloc": [
17388 - "default.handlebars->29->1334"
17392 + "default.handlebars->29->1335"
17393 ]
17394 },
17395 {
@@ -17405,7 +17409,7 @@
17409 "zh-chs": "匈牙利文",
17410 "zh-cht": "匈牙利文",
17411 "xloc": [
17408 - "default.handlebars->29->1141"
17412 + "default.handlebars->29->1142"
17413 ]
17414 },
17415 {
@@ -17470,9 +17474,9 @@
17474 "xloc": [
17475 "default-mobile.handlebars->9->360",
17476 "default-mobile.handlebars->9->364",
17473 - "default.handlebars->29->956",
17474 - "default.handlebars->29->966",
17475 - "default.handlebars->29->970"
17477 + "default.handlebars->29->957",
17478 + "default.handlebars->29->967",
17479 + "default.handlebars->29->971"
17480 ]
17481 },
17482 {
@@ -17494,9 +17498,9 @@
17498 "xloc": [
17499 "default-mobile.handlebars->9->358",
17500 "default-mobile.handlebars->9->362",
17497 - "default.handlebars->29->954",
17498 - "default.handlebars->29->964",
17499 - "default.handlebars->29->968"
17501 + "default.handlebars->29->955",
17502 + "default.handlebars->29->965",
17503 + "default.handlebars->29->969"
17504 ]
17505 },
17506 {
@@ -17518,10 +17522,10 @@
17522 "xloc": [
17523 "default-mobile.handlebars->9->357",
17524 "default-mobile.handlebars->9->359",
17521 - "default.handlebars->29->953",
17522 - "default.handlebars->29->955",
17523 - "default.handlebars->29->963",
17524 - "default.handlebars->29->965"
17525 + "default.handlebars->29->954",
17526 + "default.handlebars->29->956",
17527 + "default.handlebars->29->964",
17528 + "default.handlebars->29->966"
17529 ]
17530 },
17531 {
@@ -17606,8 +17610,8 @@
17610 "xloc": [
17611 "default-mobile.handlebars->9->361",
17612 "default-mobile.handlebars->9->363",
17609 - "default.handlebars->29->967",
17610 - "default.handlebars->29->969"
17613 + "default.handlebars->29->968",
17614 + "default.handlebars->29->970"
17615 ]
17616 },
17617 {
@@ -17687,7 +17691,7 @@
17691 "zh-chs": "冰岛文",
17692 "zh-cht": "冰島文",
17693 "xloc": [
17690 - "default.handlebars->29->1142"
17694 + "default.handlebars->29->1143"
17695 ]
17696 },
17697 {
@@ -17729,7 +17733,7 @@
17733 "zh-cht": "識別符",
17734 "xloc": [
17735 "default-mobile.handlebars->9->389",
17732 - "default.handlebars->29->995"
17736 + "default.handlebars->29->996"
17737 ]
17738 },
17739 {
@@ -17737,7 +17741,7 @@
17741 "fr": "Si dans CCM, réactiver Intel® AMT",
17742 "nl": "Indien in CCM, heractiveer Intel® AMT",
17743 "xloc": [
17740 - "default.handlebars->29->1395"
17744 + "default.handlebars->29->1396"
17745 ]
17746 },
17747 {
@@ -17885,7 +17889,7 @@
17889 "zh-chs": "印度尼西亚文",
17890 "zh-cht": "印度尼西亞文",
17891 "xloc": [
17888 - "default.handlebars->29->1143"
17892 + "default.handlebars->29->1144"
17893 ]
17894 },
17895 {
@@ -18058,8 +18062,8 @@
18062 "zh-chs": "安装类型",
18063 "zh-cht": "安裝方式",
18064 "xloc": [
18061 - "default.handlebars->29->1511",
18062 - "default.handlebars->29->1518",
18065 + "default.handlebars->29->1512",
18066 + "default.handlebars->29->1519",
18067 "default.handlebars->29->335",
18068 "default.handlebars->29->349",
18069 "default.handlebars->29->363"
@@ -18103,7 +18107,7 @@
18107 "zh-chs": "英特尔AMT",
18108 "zh-cht": "英特爾AMT",
18109 "xloc": [
18106 - "default.handlebars->29->2098"
18110 + "default.handlebars->29->2099"
18111 ]
18112 },
18113 {
@@ -18146,11 +18150,11 @@
18150 "default-mobile.handlebars->9->205",
18151 "default-mobile.handlebars->9->247",
18152 "default-mobile.handlebars->9->252",
18149 - "default.handlebars->29->1352",
18150 - "default.handlebars->29->1363",
18151 - "default.handlebars->29->1530",
18152 - "default.handlebars->29->1538",
18153 - "default.handlebars->29->2120",
18153 + "default.handlebars->29->1353",
18154 + "default.handlebars->29->1364",
18155 + "default.handlebars->29->1531",
18156 + "default.handlebars->29->1539",
18157 + "default.handlebars->29->2121",
18158 "default.handlebars->29->523",
18159 "default.handlebars->29->581",
18160 "default.handlebars->29->608"
@@ -18306,7 +18310,7 @@
18310 "zh-chs": "英特尔®AMT政策",
18311 "zh-cht": "Intel® AMT政策",
18312 "xloc": [
18309 - "default.handlebars->29->1386"
18313 + "default.handlebars->29->1387"
18314 ]
18315 },
18316 {
@@ -18326,7 +18330,7 @@
18330 "zh-chs": "英特尔®AMT重定向",
18331 "zh-cht": "Intel® AMT重定向",
18332 "xloc": [
18329 - "default.handlebars->29->2036",
18333 + "default.handlebars->29->2037",
18334 "player.handlebars->3->14"
18335 ]
18336 },
@@ -18367,7 +18371,7 @@
18371 "zh-chs": "英特尔®AMT WSMAN",
18372 "zh-cht": "Intle® AMT WSMAN",
18373 "xloc": [
18370 - "default.handlebars->29->2035",
18374 + "default.handlebars->29->2036",
18375 "player.handlebars->3->13"
18376 ]
18377 },
@@ -18427,8 +18431,8 @@
18431 "zh-chs": "英特尔®AMT桌面和串行事件。",
18432 "zh-cht": "Intel® AMT桌面和串行事件。",
18433 "xloc": [
18430 - "default.handlebars->29->1260",
18431 - "default.handlebars->29->1526"
18434 + "default.handlebars->29->1261",
18435 + "default.handlebars->29->1527"
18436 ]
18437 },
18438 {
@@ -18614,8 +18618,8 @@
18618 "zh-cht": "僅限Intel® AMT,無代理",
18619 "xloc": [
18620 "default-mobile.handlebars->9->406",
18617 - "default.handlebars->29->1289",
18618 - "default.handlebars->29->1324"
18621 + "default.handlebars->29->1290",
18622 + "default.handlebars->29->1325"
18623 ]
18624 },
18625 {
@@ -18681,7 +18685,7 @@
18685 "zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
18686 "xloc": [
18687 "default-mobile.handlebars->9->381",
18684 - "default.handlebars->29->987"
18688 + "default.handlebars->29->988"
18689 ]
18690 },
18691 {
@@ -18906,8 +18910,8 @@
18910 "zh-chs": "仅限互动",
18911 "zh-cht": "僅限互動",
18912 "xloc": [
18909 - "default.handlebars->29->1514",
18910 - "default.handlebars->29->1521",
18913 + "default.handlebars->29->1515",
18914 + "default.handlebars->29->1522",
18915 "default.handlebars->29->338",
18916 "default.handlebars->29->352",
18917 "default.handlebars->29->366"
@@ -18950,7 +18954,7 @@
18954 "zh-chs": "因纽特文",
18955 "zh-cht": "因紐特文",
18956 "xloc": [
18953 - "default.handlebars->29->1144"
18957 + "default.handlebars->29->1145"
18958 ]
18959 },
18960 {
@@ -18981,7 +18985,7 @@
18985 "zh-chs": "无效的设备组类型",
18986 "zh-cht": "無效的裝置群類型",
18987 "xloc": [
18984 - "default.handlebars->29->2072"
18988 + "default.handlebars->29->2073"
18989 ]
18990 },
18991 {
@@ -19001,7 +19005,7 @@
19005 "zh-chs": "无效的JSON",
19006 "zh-cht": "無效的JSON",
19007 "xloc": [
19004 - "default.handlebars->29->2066"
19008 + "default.handlebars->29->2067"
19009 ]
19010 },
19011 {
@@ -19021,8 +19025,8 @@
19025 "zh-chs": "无效的JSON档案格式。",
19026 "zh-cht": "無效的JSON檔案格式。",
19027 "xloc": [
19024 - "default.handlebars->29->1766",
19025 - "default.handlebars->29->1768"
19028 + "default.handlebars->29->1767",
19029 + "default.handlebars->29->1769"
19030 ]
19031 },
19032 {
@@ -19042,7 +19046,7 @@
19046 "zh-chs": "无效的JSON档案:{0}。",
19047 "zh-cht": "無效的JSON檔案:{0}。",
19048 "xloc": [
19045 - "default.handlebars->29->1764"
19049 + "default.handlebars->29->1765"
19050 ]
19051 },
19052 {
@@ -19062,7 +19066,7 @@
19066 "zh-chs": "无效的PKCS签名",
19067 "zh-cht": "無效的PKCS簽名",
19068 "xloc": [
19065 - "default.handlebars->29->2064"
19069 + "default.handlebars->29->2065"
19070 ]
19071 },
19072 {
@@ -19082,7 +19086,7 @@
19086 "zh-chs": "無效的RSA密碼",
19087 "zh-cht": "無效的RSA密碼",
19088 "xloc": [
19085 - "default.handlebars->29->2065"
19089 + "default.handlebars->29->2066"
19090 ]
19091 },
19092 {
@@ -19209,7 +19213,7 @@
19213 "zh-chs": "使电邮无效",
19214 "zh-cht": "使電郵無效",
19215 "xloc": [
19212 - "default.handlebars->29->1742"
19216 + "default.handlebars->29->1743"
19217 ]
19218 },
19219 {
@@ -19286,7 +19290,7 @@
19290 "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
19291 "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
19292 "xloc": [
19289 - "default.handlebars->29->1516"
19293 + "default.handlebars->29->1517"
19294 ]
19295 },
19296 {
@@ -19314,7 +19318,7 @@
19318 "zh-chs": "邀请",
19319 "zh-cht": "邀請",
19320 "xloc": [
19317 - "default.handlebars->29->1373",
19321 + "default.handlebars->29->1374",
19322 "default.handlebars->29->286",
19323 "default.handlebars->29->354"
19324 ]
@@ -19336,11 +19340,11 @@
19340 "zh-chs": "邀请码",
19341 "zh-cht": "邀請碼",
19342 "xloc": [
19339 - "default.handlebars->29->1356",
19340 - "default.handlebars->29->1510",
19341 - "default.handlebars->29->1515",
19342 - "default.handlebars->29->1517",
19343 - "default.handlebars->29->1522"
19343 + "default.handlebars->29->1357",
19344 + "default.handlebars->29->1511",
19345 + "default.handlebars->29->1516",
19346 + "default.handlebars->29->1518",
19347 + "default.handlebars->29->1523"
19348 ]
19349 },
19350 {
@@ -19380,7 +19384,7 @@
19384 "zh-chs": "邀请某人在该设备组上安装网格代理。",
19385 "zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
19386 "xloc": [
19383 - "default.handlebars->29->1372",
19387 + "default.handlebars->29->1373",
19388 "default.handlebars->29->285"
19389 ]
19390 },
@@ -19421,7 +19425,7 @@
19425 "zh-chs": "爱尔兰文",
19426 "zh-cht": "愛爾蘭文",
19427 "xloc": [
19424 - "default.handlebars->29->1145"
19428 + "default.handlebars->29->1146"
19429 ]
19430 },
19431 {
@@ -19441,7 +19445,7 @@
19445 "zh-chs": "意大利文(标准)",
19446 "zh-cht": "意大利文(標準)",
19447 "xloc": [
19444 - "default.handlebars->29->1146"
19448 + "default.handlebars->29->1147"
19449 ]
19450 },
19451 {
@@ -19461,7 +19465,7 @@
19465 "zh-chs": "意大利文(瑞士)",
19466 "zh-cht": "義大利文(瑞士)",
19467 "xloc": [
19464 - "default.handlebars->29->1147"
19468 + "default.handlebars->29->1148"
19469 ]
19470 },
19471 {
@@ -19481,7 +19485,7 @@
19485 "zh-chs": "JSON",
19486 "zh-cht": "JSON",
19487 "xloc": [
19484 - "default.handlebars->29->1702"
19488 + "default.handlebars->29->1703"
19489 ]
19490 },
19491 {
@@ -19501,8 +19505,8 @@
19505 "zh-chs": "JSON格式",
19506 "zh-cht": "JSON格式",
19507 "xloc": [
19504 - "default.handlebars->29->1707",
19505 - "default.handlebars->29->1772",
19508 + "default.handlebars->29->1708",
19509 + "default.handlebars->29->1773",
19510 "default.handlebars->29->484"
19511 ]
19512 },
@@ -19523,7 +19527,7 @@
19527 "zh-chs": "日文",
19528 "zh-cht": "日文",
19529 "xloc": [
19526 - "default.handlebars->29->1148"
19530 + "default.handlebars->29->1149"
19531 ]
19532 },
19533 {
@@ -19543,7 +19547,7 @@
19547 "zh-chs": "已加入桌面Multiplex会话",
19548 "zh-cht": "已加入桌面Multiplex會話",
19549 "xloc": [
19546 - "default.handlebars->29->1589"
19550 + "default.handlebars->29->1590"
19551 ]
19552 },
19553 {
@@ -19563,7 +19567,7 @@
19567 "zh-chs": "卡纳达文",
19568 "zh-cht": "卡納達文",
19569 "xloc": [
19566 - "default.handlebars->29->1149"
19570 + "default.handlebars->29->1150"
19571 ]
19572 },
19573 {
@@ -19583,7 +19587,7 @@
19587 "zh-chs": "克什米尔文",
19588 "zh-cht": "克什米爾文",
19589 "xloc": [
19586 - "default.handlebars->29->1150"
19590 + "default.handlebars->29->1151"
19591 ]
19592 },
19593 {
@@ -19603,7 +19607,7 @@
19607 "zh-chs": "哈萨克文",
19608 "zh-cht": "哈薩克文",
19609 "xloc": [
19606 - "default.handlebars->29->1151"
19610 + "default.handlebars->29->1152"
19611 ]
19612 },
19613 {
@@ -19611,7 +19615,7 @@
19615 "fr": "Conserver l'actuel mot de passe",
19616 "nl": "Behoud huidige wachtwoord",
19617 "xloc": [
19614 - "default.handlebars->29->1387"
19618 + "default.handlebars->29->1388"
19619 ]
19620 },
19621 {
@@ -19651,8 +19655,8 @@
19655 "zh-chs": "键名",
19656 "zh-cht": "鍵名",
19657 "xloc": [
19654 - "default.handlebars->29->1042",
19655 - "default.handlebars->29->1045"
19658 + "default.handlebars->29->1043",
19659 + "default.handlebars->29->1046"
19660 ]
19661 },
19662 {
@@ -19712,7 +19716,7 @@
19716 "zh-chs": "高棉文",
19717 "zh-cht": "高棉文",
19718 "xloc": [
19715 - "default.handlebars->29->1152"
19719 + "default.handlebars->29->1153"
19720 ]
19721 },
19722 {
@@ -19732,7 +19736,7 @@
19736 "zh-chs": "杀死进程{0}",
19737 "zh-cht": "殺死進程{0}",
19738 "xloc": [
19735 - "default.handlebars->29->1604"
19739 + "default.handlebars->29->1605"
19740 ]
19741 },
19742 {
@@ -19752,7 +19756,7 @@
19756 "zh-chs": "吉尔吉斯",
19757 "zh-cht": "吉爾吉斯",
19758 "xloc": [
19755 - "default.handlebars->29->1153"
19759 + "default.handlebars->29->1154"
19760 ]
19761 },
19762 {
@@ -19772,7 +19776,7 @@
19776 "zh-chs": "克林贡",
19777 "zh-cht": "克林貢",
19778 "xloc": [
19775 - "default.handlebars->29->1154"
19779 + "default.handlebars->29->1155"
19780 ]
19781 },
19782 {
@@ -19793,7 +19797,7 @@
19797 "zh-cht": "已知的",
19798 "xloc": [
19799 "default-mobile.handlebars->9->380",
19796 - "default.handlebars->29->986"
19800 + "default.handlebars->29->987"
19801 ]
19802 },
19803 {
@@ -19813,7 +19817,7 @@
19817 "zh-chs": "韩文",
19818 "zh-cht": "韓文",
19819 "xloc": [
19816 - "default.handlebars->29->1155"
19820 + "default.handlebars->29->1156"
19821 ]
19822 },
19823 {
@@ -19833,7 +19837,7 @@
19837 "zh-chs": "韩文(朝鲜)",
19838 "zh-cht": "韓文(朝鮮)",
19839 "xloc": [
19836 - "default.handlebars->29->1156"
19840 + "default.handlebars->29->1157"
19841 ]
19842 },
19843 {
@@ -19853,7 +19857,7 @@
19857 "zh-chs": "韩文(韩国)",
19858 "zh-cht": "韓文(韓國)",
19859 "xloc": [
19856 - "default.handlebars->29->1157"
19860 + "default.handlebars->29->1158"
19861 ]
19862 },
19863 {
@@ -19894,7 +19898,7 @@
19898 "zh-chs": "语言",
19899 "zh-cht": "語言",
19900 "xloc": [
19897 - "default.handlebars->29->1252"
19901 + "default.handlebars->29->1253"
19902 ]
19903 },
19904 {
@@ -20147,7 +20151,7 @@
20151 "zh-chs": "最后访问",
20152 "zh-cht": "最後訪問",
20153 "xloc": [
20150 - "default.handlebars->29->1715"
20154 + "default.handlebars->29->1716"
20155 ]
20156 },
20157 {
@@ -20167,7 +20171,7 @@
20171 "zh-chs": "上次登录",
20172 "zh-cht": "上次登入",
20173 "xloc": [
20170 - "default.handlebars->29->1923"
20174 + "default.handlebars->29->1924"
20175 ]
20176 },
20177 {
@@ -20193,9 +20197,9 @@
20197 "default.handlebars->29->69",
20198 "default.handlebars->29->71",
20199 "default.handlebars->29->73",
20196 - "default.handlebars->29->944",
20200 "default.handlebars->29->945",
20198 - "default.handlebars->29->946"
20201 + "default.handlebars->29->946",
20202 + "default.handlebars->29->947"
20203 ]
20204 },
20205 {
@@ -20218,8 +20222,8 @@
20222 "default-mobile.handlebars->9->345",
20223 "default-mobile.handlebars->9->347",
20224 "default.handlebars->29->68",
20221 - "default.handlebars->29->941",
20222 - "default.handlebars->29->943"
20225 + "default.handlebars->29->942",
20226 + "default.handlebars->29->944"
20227 ]
20228 },
20229 {
@@ -20239,7 +20243,7 @@
20243 "zh-chs": "上次更改:{0}",
20244 "zh-cht": "上次更改:{0}",
20245 "xloc": [
20242 - "default.handlebars->29->1927"
20246 + "default.handlebars->29->1928"
20247 ]
20248 },
20249 {
@@ -20299,7 +20303,7 @@
20303 "zh-chs": "上次登录:{0}",
20304 "zh-cht": "上次登入:{0}",
20305 "xloc": [
20302 - "default.handlebars->29->1725"
20306 + "default.handlebars->29->1726"
20307 ]
20308 },
20309 {
@@ -20400,7 +20404,7 @@
20404 "zh-chs": "拉丁文",
20405 "zh-cht": "拉丁文",
20406 "xloc": [
20403 - "default.handlebars->29->1158"
20407 + "default.handlebars->29->1159"
20408 ]
20409 },
20410 {
@@ -20420,7 +20424,7 @@
20424 "zh-chs": "拉脱维亚文",
20425 "zh-cht": "拉脫維亞文",
20426 "xloc": [
20423 - "default.handlebars->29->1159"
20427 + "default.handlebars->29->1160"
20428 ]
20429 },
20430 {
@@ -20500,7 +20504,7 @@
20504 "zh-chs": "如没有请留空。",
20505 "zh-cht": "如沒有請留空。",
20506 "xloc": [
20503 - "default.handlebars->29->1967"
20507 + "default.handlebars->29->1968"
20508 ]
20509 },
20510 {
@@ -20545,7 +20549,7 @@
20549 "zh-chs": "离开桌面多路复用会话",
20550 "zh-cht": "離開桌面多路復用會話",
20551 "xloc": [
20548 - "default.handlebars->29->1590"
20552 + "default.handlebars->29->1591"
20553 ]
20554 },
20555 {
@@ -20565,7 +20569,7 @@
20569 "zh-chs": "减",
20570 "zh-cht": "減",
20571 "xloc": [
20568 - "default.handlebars->29->2137"
20572 + "default.handlebars->29->2138"
20573 ]
20574 },
20575 {
@@ -20628,7 +20632,7 @@
20632 "zh-cht": "有限輸入",
20633 "xloc": [
20634 "default-mobile.handlebars->9->457",
20631 - "default.handlebars->29->1492",
20635 + "default.handlebars->29->1493",
20636 "default.handlebars->29->678",
20637 "default.handlebars->29->699"
20638 ]
@@ -20651,7 +20655,7 @@
20655 "zh-cht": "僅有限輸入",
20656 "xloc": [
20657 "default-mobile.handlebars->9->430",
20654 - "default.handlebars->29->1448"
20658 + "default.handlebars->29->1449"
20659 ]
20660 },
20661 {
@@ -21107,7 +21111,7 @@
21111 "zh-chs": "立陶宛文",
21112 "zh-cht": "立陶宛文",
21113 "xloc": [
21110 - "default.handlebars->29->1160"
21114 + "default.handlebars->29->1161"
21115 ]
21116 },
21117 {
@@ -21128,10 +21132,10 @@
21132 "zh-cht": "載入中...",
21133 "xloc": [
21134 "default-mobile.handlebars->9->72",
21131 - "default.handlebars->29->1038",
21132 - "default.handlebars->29->1315",
21133 - "default.handlebars->29->1319",
21134 - "default.handlebars->29->2023",
21135 + "default.handlebars->29->1039",
21136 + "default.handlebars->29->1316",
21137 + "default.handlebars->29->1320",
21138 + "default.handlebars->29->2024",
21139 "default.handlebars->29->794"
21140 ]
21141 },
@@ -21214,7 +21218,7 @@
21218 "zh-chs": "本地用户接受的远程终端请求",
21219 "zh-cht": "本地用戶接受的遠程終端請求",
21220 "xloc": [
21217 - "default.handlebars->29->1612"
21221 + "default.handlebars->29->1613"
21222 ]
21223 },
21224 {
@@ -21234,7 +21238,7 @@
21238 "zh-chs": "本地用户拒绝了远程终端请求",
21239 "zh-cht": "本地用戶拒絕了遠程終端請求",
21240 "xloc": [
21237 - "default.handlebars->29->1613"
21241 + "default.handlebars->29->1614"
21242 ]
21243 },
21244 {
@@ -21254,7 +21258,7 @@
21258 "zh-chs": "本地化设置",
21259 "zh-cht": "本地化設置",
21260 "xloc": [
21257 - "default.handlebars->29->1255",
21261 + "default.handlebars->29->1256",
21262 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
21263 ]
21264 },
@@ -21315,7 +21319,7 @@
21319 "zh-chs": "锁定账户",
21320 "zh-cht": "鎖定賬戶",
21321 "xloc": [
21318 - "default.handlebars->29->1812"
21322 + "default.handlebars->29->1813"
21323 ]
21324 },
21325 {
@@ -21335,7 +21339,7 @@
21339 "zh-chs": "锁定帐户设置",
21340 "zh-cht": "鎖定帳戶設置",
21341 "xloc": [
21338 - "default.handlebars->29->1815"
21342 + "default.handlebars->29->1816"
21343 ]
21344 },
21345 {
@@ -21355,7 +21359,7 @@
21359 "zh-chs": "锁定账户",
21360 "zh-cht": "鎖定賬戶",
21361 "xloc": [
21358 - "default.handlebars->29->1745"
21362 + "default.handlebars->29->1746"
21363 ]
21364 },
21365 {
@@ -21375,7 +21379,7 @@
21379 "zh-chs": "已锁定",
21380 "zh-cht": "已鎖定",
21381 "xloc": [
21378 - "default.handlebars->29->1726"
21382 + "default.handlebars->29->1727"
21383 ]
21384 },
21385 {
@@ -21395,7 +21399,7 @@
21399 "zh-chs": "被锁定账户",
21400 "zh-cht": "被鎖定賬戶",
21401 "xloc": [
21398 - "default.handlebars->29->1899"
21402 + "default.handlebars->29->1900"
21403 ]
21404 },
21405 {
@@ -21415,7 +21419,7 @@
21419 "zh-chs": "将远程用户锁定在桌面之外",
21420 "zh-cht": "將遠程用戶鎖定在桌面之外",
21421 "xloc": [
21418 - "default.handlebars->29->1638"
21422 + "default.handlebars->29->1639"
21423 ]
21424 },
21425 {
@@ -21655,7 +21659,7 @@
21659 "zh-chs": "卢森堡文",
21660 "zh-cht": "盧森堡文",
21661 "xloc": [
21658 - "default.handlebars->29->1161"
21662 + "default.handlebars->29->1162"
21663 ]
21664 },
21665 {
@@ -21677,10 +21681,10 @@
21681 "xloc": [
21682 "default-mobile.handlebars->9->353",
21683 "default-mobile.handlebars->9->355",
21680 - "default.handlebars->29->949",
21681 - "default.handlebars->29->951",
21682 - "default.handlebars->29->959",
21683 - "default.handlebars->29->961"
21684 + "default.handlebars->29->950",
21685 + "default.handlebars->29->952",
21686 + "default.handlebars->29->960",
21687 + "default.handlebars->29->962"
21688 ]
21689 },
21690 {
@@ -21722,8 +21726,8 @@
21726 "zh-cht": "MAC:{0}",
21727 "xloc": [
21728 "default-mobile.handlebars->9->356",
21725 - "default.handlebars->29->952",
21726 - "default.handlebars->29->962"
21729 + "default.handlebars->29->953",
21730 + "default.handlebars->29->963"
21731 ]
21732 },
21733 {
@@ -21744,8 +21748,8 @@
21748 "zh-cht": "MAC:{0},網關:{1}",
21749 "xloc": [
21750 "default-mobile.handlebars->9->354",
21747 - "default.handlebars->29->950",
21748 - "default.handlebars->29->960"
21751 + "default.handlebars->29->951",
21752 + "default.handlebars->29->961"
21753 ]
21754 },
21755 {
@@ -21826,8 +21830,8 @@
21830 "xloc": [
21831 "default-mobile.handlebars->9->207",
21832 "default-mobile.handlebars->9->254",
21829 - "default.handlebars->29->1016",
21833 "default.handlebars->29->1017",
21834 + "default.handlebars->29->1018",
21835 "default.handlebars->29->222",
21836 "default.handlebars->29->431",
21837 "default.handlebars->29->612",
@@ -22035,7 +22039,7 @@
22039 "zh-chs": "主服务器信息",
22040 "zh-cht": "主伺服器訊息",
22041 "xloc": [
22038 - "default.handlebars->29->2109"
22042 + "default.handlebars->29->2110"
22043 ]
22044 },
22045 {
@@ -22055,7 +22059,7 @@
22059 "zh-chs": "马来文",
22060 "zh-cht": "馬來文",
22061 "xloc": [
22058 - "default.handlebars->29->1163"
22062 + "default.handlebars->29->1164"
22063 ]
22064 },
22065 {
@@ -22075,7 +22079,7 @@
22079 "zh-chs": "玛拉雅拉姆文",
22080 "zh-cht": "馬拉雅拉姆文",
22081 "xloc": [
22078 - "default.handlebars->29->1164"
22082 + "default.handlebars->29->1165"
22083 ]
22084 },
22085 {
@@ -22095,7 +22099,7 @@
22099 "zh-chs": "马耳他文",
22100 "zh-cht": "馬耳他文",
22101 "xloc": [
22098 - "default.handlebars->29->1165"
22102 + "default.handlebars->29->1166"
22103 ]
22104 },
22105 {
@@ -22138,8 +22142,8 @@
22142 "xloc": [
22143 "default-mobile.handlebars->9->427",
22144 "default-mobile.handlebars->9->447",
22141 - "default.handlebars->29->1445",
22142 - "default.handlebars->29->1481"
22145 + "default.handlebars->29->1446",
22146 + "default.handlebars->29->1482"
22147 ]
22148 },
22149 {
@@ -22161,8 +22165,8 @@
22165 "xloc": [
22166 "default-mobile.handlebars->9->426",
22167 "default-mobile.handlebars->9->446",
22164 - "default.handlebars->29->1444",
22165 - "default.handlebars->29->1480"
22168 + "default.handlebars->29->1445",
22169 + "default.handlebars->29->1481"
22170 ]
22171 },
22172 {
@@ -22202,7 +22206,7 @@
22206 "zh-chs": "管理录音",
22207 "zh-cht": "管理錄音",
22208 "xloc": [
22205 - "default.handlebars->29->1810"
22209 + "default.handlebars->29->1811"
22210 ]
22211 },
22212 {
@@ -22242,7 +22246,7 @@
22246 "zh-chs": "管理用户组",
22247 "zh-cht": "管理用戶群",
22248 "xloc": [
22245 - "default.handlebars->29->1809"
22249 + "default.handlebars->29->1810"
22250 ]
22251 },
22252 {
@@ -22262,7 +22266,7 @@
22266 "zh-chs": "管理用户",
22267 "zh-cht": "管理用戶",
22268 "xloc": [
22265 - "default.handlebars->29->1808",
22269 + "default.handlebars->29->1809",
22270 "default.handlebars->29->693"
22271 ]
22272 },
@@ -22389,7 +22393,7 @@
22393 "zh-chs": "使用软件代理进行管理",
22394 "zh-cht": "使用軟體代理進行管理",
22395 "xloc": [
22392 - "default.handlebars->29->1288"
22396 + "default.handlebars->29->1289"
22397 ]
22398 },
22399 {
@@ -22410,7 +22414,7 @@
22414 "zh-cht": "使用軟體代理進行管理",
22415 "xloc": [
22416 "default-mobile.handlebars->9->407",
22413 - "default.handlebars->29->1325"
22417 + "default.handlebars->29->1326"
22418 ]
22419 },
22420 {
@@ -22430,7 +22434,7 @@
22434 "zh-chs": "经理",
22435 "zh-cht": "經理",
22436 "xloc": [
22433 - "default.handlebars->29->1731"
22437 + "default.handlebars->29->1732"
22438 ]
22439 },
22440 {
@@ -22484,7 +22488,7 @@
22488 "zh-chs": "毛利文",
22489 "zh-cht": "毛利文",
22490 "xloc": [
22487 - "default.handlebars->29->1166"
22491 + "default.handlebars->29->1167"
22492 ]
22493 },
22494 {
@@ -22525,7 +22529,7 @@
22529 "zh-chs": "马拉地文",
22530 "zh-cht": "馬拉地文",
22531 "xloc": [
22528 - "default.handlebars->29->1167"
22532 + "default.handlebars->29->1168"
22533 ]
22534 },
22535 {
@@ -22545,7 +22549,7 @@
22549 "zh-chs": "达到连接数量上限",
22550 "zh-cht": "達到連接數量上限",
22551 "xloc": [
22548 - "default.handlebars->29->2070"
22552 + "default.handlebars->29->2071"
22553 ]
22554 },
22555 {
@@ -22610,7 +22614,7 @@
22614 "zh-chs": "Megabyte",
22615 "zh-cht": "Megabyte",
22616 "xloc": [
22613 - "default.handlebars->29->2099"
22617 + "default.handlebars->29->2100"
22618 ]
22619 },
22620 {
@@ -22631,8 +22635,8 @@
22635 "zh-cht": "記憶體",
22636 "xloc": [
22637 "default-mobile.handlebars->9->398",
22634 - "default.handlebars->29->1004",
22635 - "default.handlebars->29->2090",
22638 + "default.handlebars->29->1005",
22639 + "default.handlebars->29->2091",
22640 "default.handlebars->container->column_l->p40->3->1->p40type->3"
22641 ]
22642 },
@@ -22664,8 +22668,8 @@
22668 "default.handlebars->29->393",
22669 "default.handlebars->29->558",
22670 "default.handlebars->29->604",
22667 - "default.handlebars->29->940",
22668 - "default.handlebars->29->947"
22671 + "default.handlebars->29->941",
22672 + "default.handlebars->29->948"
22673 ]
22674 },
22675 {
@@ -22686,7 +22690,7 @@
22690 "zh-cht": "網格代理控制台",
22691 "xloc": [
22692 "default-mobile.handlebars->9->434",
22689 - "default.handlebars->29->1453"
22693 + "default.handlebars->29->1454"
22694 ]
22695 },
22696 {
@@ -22791,7 +22795,7 @@
22795 "zh-chs": "MeshAgent流量",
22796 "zh-cht": "MeshAgent流量",
22797 "xloc": [
22794 - "default.handlebars->29->2111"
22798 + "default.handlebars->29->2112"
22799 ]
22800 },
22801 {
@@ -22811,7 +22815,7 @@
22815 "zh-chs": "MeshAgent更新",
22816 "zh-cht": "MeshAgent更新",
22817 "xloc": [
22814 - "default.handlebars->29->2112"
22818 + "default.handlebars->29->2113"
22819 ]
22820 },
22821 {
@@ -22851,7 +22855,7 @@
22855 "zh-chs": "MeshCentral错误",
22856 "zh-cht": "MeshCentral錯誤",
22857 "xloc": [
22854 - "default.handlebars->29->1318"
22858 + "default.handlebars->29->1319"
22859 ]
22860 },
22861 {
@@ -22932,7 +22936,7 @@
22936 "zh-chs": "MeshCentral服务器同级化",
22937 "zh-cht": "MeshCentral伺服器同級化",
22938 "xloc": [
22935 - "default.handlebars->29->2110"
22939 + "default.handlebars->29->2111"
22940 ]
22941 },
22942 {
@@ -22974,7 +22978,7 @@
22978 "xloc": [
22979 "default.handlebars->29->115",
22980 "default.handlebars->29->117",
22977 - "default.handlebars->29->1314"
22981 + "default.handlebars->29->1315"
22982 ]
22983 },
22984 {
@@ -23254,7 +23258,7 @@
23258 "zh-chs": "消息调度器",
23259 "zh-cht": "電郵調度器",
23260 "xloc": [
23257 - "default.handlebars->29->2108"
23261 + "default.handlebars->29->2109"
23262 ]
23263 },
23264 {
@@ -23377,7 +23381,7 @@
23381 "zh-cht": "模型",
23382 "xloc": [
23383 "default-mobile.handlebars->9->399",
23380 - "default.handlebars->29->1005"
23384 + "default.handlebars->29->1006"
23385 ]
23386 },
23387 {
@@ -23417,7 +23421,7 @@
23421 "zh-chs": "摩尔达维亚文",
23422 "zh-cht": "摩爾達維亞文",
23423 "xloc": [
23420 - "default.handlebars->29->1168"
23424 + "default.handlebars->29->1169"
23425 ]
23426 },
23427 {
@@ -23437,7 +23441,7 @@
23441 "zh-chs": "更多",
23442 "zh-cht": "更多",
23443 "xloc": [
23440 - "default.handlebars->29->2136"
23444 + "default.handlebars->29->2137"
23445 ]
23446 },
23447 {
@@ -23458,7 +23462,7 @@
23462 "zh-cht": "母板",
23463 "xloc": [
23464 "default-mobile.handlebars->9->392",
23461 - "default.handlebars->29->998"
23465 + "default.handlebars->29->999"
23466 ]
23467 },
23468 {
@@ -23518,7 +23522,7 @@
23522 "zh-chs": "移动:“{0}”到“{1}”",
23523 "zh-cht": "移動:“{0}”到“{1}”",
23524 "xloc": [
23521 - "default.handlebars->29->1637"
23525 + "default.handlebars->29->1638"
23526 ]
23527 },
23528 {
@@ -23538,7 +23542,7 @@
23542 "zh-chs": "将设备{0}移动到组{1}",
23543 "zh-cht": "將設備{0}移動到組{1}",
23544 "xloc": [
23541 - "default.handlebars->29->1670"
23545 + "default.handlebars->29->1671"
23546 ]
23547 },
23548 {
@@ -23578,7 +23582,7 @@
23582 "zh-chs": "多路复用器",
23583 "zh-cht": "多工器",
23584 "xloc": [
23581 - "default.handlebars->29->2048"
23585 + "default.handlebars->29->2049"
23586 ]
23587 },
23588 {
@@ -23720,7 +23724,7 @@
23724 "zh-chs": "我的服务器控制台",
23725 "zh-cht": "我的伺服器控制台",
23726 "xloc": [
23723 - "default.handlebars->29->1011"
23727 + "default.handlebars->29->1012"
23728 ]
23729 },
23730 {
@@ -23882,8 +23886,8 @@
23886 "zh-chs": "我的密钥",
23887 "zh-cht": "我的密鍵",
23888 "xloc": [
23885 - "default.handlebars->29->1043",
23886 - "default.handlebars->29->1046"
23889 + "default.handlebars->29->1044",
23890 + "default.handlebars->29->1047"
23891 ]
23892 },
23893 {
@@ -23930,21 +23934,21 @@
23934 "default-mobile.handlebars->9->421",
23935 "default-mobile.handlebars->9->97",
23936 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
23933 - "default.handlebars->29->1286",
23934 - "default.handlebars->29->1326",
23935 - "default.handlebars->29->1409",
23936 - "default.handlebars->29->1713",
23937 - "default.handlebars->29->1818",

This file is too large to show in full.

views/default.handlebars
+9 -13
@@ -8158,25 +8158,21 @@
8158
8159 function p13findfile() {
8160 if (xxdialogMode) return;
8161 - var x = addHtmlValue("Filter", '<input id=d2findFilter style="width:230px" onkeyup=p13findfileValidate() placeholder="*.txt"></input>');
8161 + var x = addHtmlValue("Filter", '<input id=d2findFilter style="width:230px" onkeyup=p13findfileValidate() onkeydown=p13findfileDown(event) placeholder="*.txt"></input>');
8162 x += '<div id=d2findResults style="width:100%;height:184px;background-color:white;border:1px solid black;padding:3px;overflow:scroll;margin-top:8px"></div>';
8163 - x += '<div style=margin-top:8px><input id=filefind_dlgCancelButton type=button value=' + "Cancel" + ' style=float:right;width:80px;margin-left:5px onclick=p13findfileCancel()>';
8164 - x += '<input id=filefind_dlgOkButton type=submit value=' + "OK" + ' style=float:right;width:80px onclick=p13findfileEx()><br /><br /></div>';
8165 - setDialogMode(2, "File Files", 0, null, x);
8166 - Q('d2findResults').focus();
8163 + x += '<div style=margin-top:8px><input id=filefind_dlgCancelButton type=button value=' + "Close" + ' style=float:right;width:80px;margin-left:5px onclick=p13findfileCancel()>';
8164 + x += '<input id=filefind_dlgOkButton type=submit value=' + "Search" + ' style=float:right;width:80px onclick=p13findfileEx()><br /><br /></div>';
8165 + setDialogMode(2, "Find Files", 0, null, x);
8166 p13findfileValidate();
8167 + Q('d2findFilter').focus();
8168 }
8169
8170 - function p13findfileValidate() {
8171 - QE('filefind_dlgOkButton', Q('d2findFilter').value.length > 0);
8172 - }
8173 -
8174 - function p13findfileCancel() {
8175 - if (xxdialogTag != null) { files.sendText({ action: 'cancelfindfile', reqid: xxdialogTag }); }
8176 - dialogclose(0)
8177 - }
8170 + function p13findfileDown(e) { if (e.code == "Enter") { p13findfileEx(); } }
8171 + function p13findfileValidate() { QE('filefind_dlgOkButton', Q('d2findFilter').value.length > 0); }
8172 + function p13findfileCancel() { if (xxdialogTag != null) { files.sendText({ action: 'cancelfindfile', reqid: xxdialogTag }); } dialogclose(0) }
8173
8174 function p13findfileEx(b, t) {
8175 + if (Q('d2findFilter').value.length == 0) return;
8176 var winagent = ((currentNode.agent.id > 0) && (currentNode.agent.id < 5));
8177 var slash = winagent ? '\\' : '/';
8178 var path = p13filetreelocation.join(slash) + slash;