Added guest sharing account permission.

Ylian Saint-Hilaire committed Jan 25, 2021 at 15:04 UTC 66eb53e2f6bdb5ace5b29f9d46573ce6877787f8
3 files changed +1607 -1553
meshuser.js
+40 -12
@@ -50,6 +50,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
50 const MESHRIGHT_NODESKTOP = 0x00010000;
51 const MESHRIGHT_REMOTECOMMAND = 0x00020000;
52 const MESHRIGHT_RESETOFF = 0x00040000;
53 + const MESHRIGHT_GUESTSHARING = 0x00080000;
54 const MESHRIGHT_ADMIN = 0xFFFFFFFF;
55
56 // Site rights
@@ -4706,13 +4707,19 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4707 // Get the device rights
4708 parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
4709 // If node not found or we don't have remote control, reject.
4709 - if ((node == null) || ((rights & 8) == 0)) {
4710 + if (node == null) {
4711 if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } }
4712 return;
4713 }
4714
4714 - // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request.
4715 - if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return;
4715 + // If there is MESHRIGHT_DESKLIMITEDINPUT or we don't have MESHRIGHT_GUESTSHARING on this account, reject this request.
4716 + if (rights != MESHRIGHT_ADMIN) {
4717 + // If we don't have remote control, or have limited input, or don't have guest sharing permission, fail here.
4718 + if (((rights & MESHRIGHT_REMOTECONTROL) == 0) || ((rights & MESHRIGHT_DESKLIMITEDINPUT) != 0) || ((rights & MESHRIGHT_GUESTSHARING) == 0)) {
4719 + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } }
4720 + return;
4721 + }
4722 + }
4723
4724 parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) {
4725 if (err != null) return;
@@ -4759,13 +4766,19 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4766 // Get the device rights
4767 parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
4768 // If node not found or we don't have remote control, reject.
4762 - if ((node == null) || ((rights & 8) == 0)) {
4763 - if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'removeDeviceShare', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } }
4769 + if (node == null) {
4770 + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } }
4771 return;
4772 }
4766 -
4767 - // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request.
4768 - if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return;
4773 +
4774 + // If there is MESHRIGHT_DESKLIMITEDINPUT or we don't have MESHRIGHT_GUESTSHARING on this account, reject this request.
4775 + if (rights != MESHRIGHT_ADMIN) {
4776 + // If we don't have remote control, or have limited input, or don't have guest sharing permission, fail here.
4777 + if (((rights & MESHRIGHT_REMOTECONTROL) == 0) || ((rights & MESHRIGHT_DESKLIMITEDINPUT) != 0) || ((rights & MESHRIGHT_GUESTSHARING) == 0)) {
4778 + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } }
4779 + return;
4780 + }
4781 + }
4782
4783 parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) {
4784 if (err != null) return;
@@ -4835,13 +4848,28 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4848 // Get the device rights
4849 parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
4850 // If node not found or we don't have remote control, reject.
4838 - if ((node == null) || ((rights & 8) == 0)) {
4839 - if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'createDeviceShareLink', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } }
4851 + if (node == null) {
4852 + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } }
4853 return;
4854 }
4855
4843 - // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request.
4844 - if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return;
4856 + // If there is MESHRIGHT_DESKLIMITEDINPUT or we don't have MESHRIGHT_GUESTSHARING on this account, reject this request.
4857 + if (rights != MESHRIGHT_ADMIN) {
4858 + // If we don't have remote control, or have limited input, or don't have guest sharing permission, fail here.
4859 + if (((rights & MESHRIGHT_REMOTECONTROL) == 0) || ((rights & MESHRIGHT_DESKLIMITEDINPUT) != 0) || ((rights & MESHRIGHT_GUESTSHARING) == 0)) {
4860 + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } }
4861 + return;
4862 + }
4863 + }
4864 +
4865 + // If we are limited to no terminal, don't allow terminal sharing
4866 + if ((command.p == 1) && (rights != MESHRIGHT_ADMIN) && ((rights & MESHRIGHT_NOTERMINAL) != 0)) {
4867 + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } }
4868 + return;
4869 + }
4870 +
4871 + // If we have view only remote desktop rights, force view-only on the guest share.
4872 + if ((rights != MESHRIGHT_ADMIN) && ((rights & MESHRIGHT_REMOTEVIEWONLY) != 0)) { command.viewOnly = true; }
4873
4874 // Create cookie
4875 var publicid = getRandomPassword(), startTime, expireTime;
translate/translate.json
+1551 -1538
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->31->1443",
21 - "default.handlebars->31->1445"
20 + "default.handlebars->31->1445",
21 + "default.handlebars->31->1447"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->31->1356"
207 + "default.handlebars->31->1358"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->31->1520",
228 - "default.handlebars->31->1986"
227 + "default.handlebars->31->1522",
228 + "default.handlebars->31->1989"
229 ]
230 },
231 {
@@ -432,7 +432,7 @@
432 "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434 "xloc": [
435 - "default.handlebars->31->1489",
435 + "default.handlebars->31->1491",
436 "default.handlebars->31->323"
437 ]
438 },
@@ -508,7 +508,7 @@
508 "zh-cht": ",",
509 "xloc": [
510 "default-mobile.handlebars->11->532",
511 - "default.handlebars->31->1590"
511 + "default.handlebars->31->1593"
512 ]
513 },
514 {
@@ -549,7 +549,7 @@
549 "zh-chs": ",MQTT在线",
550 "zh-cht": ",MQTT在線",
551 "xloc": [
552 - "default.handlebars->31->1097"
552 + "default.handlebars->31->1099"
553 ]
554 },
555 {
@@ -597,7 +597,7 @@
597 "zh-chs": ",软体KVM",
598 "zh-cht": ",軟體KVM",
599 "xloc": [
600 - "default.handlebars->31->883",
600 + "default.handlebars->31->885",
601 "desktop.handlebars->3->12"
602 ]
603 },
@@ -636,9 +636,9 @@
636 "xloc": [
637 "default-mobile.handlebars->11->314",
638 "default-mobile.handlebars->11->347",
639 - "default.handlebars->31->890",
640 - "default.handlebars->31->949",
641 - "default.handlebars->31->961",
639 + "default.handlebars->31->892",
640 + "default.handlebars->31->951",
641 + "default.handlebars->31->963",
642 "desktop.handlebars->3->19",
643 "terminal.handlebars->3->9",
644 "xterm.handlebars->9->6"
@@ -761,7 +761,7 @@
761 "zh-chs": ",{0}观看",
762 "zh-cht": ",{0}觀看",
763 "xloc": [
764 - "default.handlebars->31->884",
764 + "default.handlebars->31->886",
765 "desktop.handlebars->3->13"
766 ]
767 },
@@ -826,9 +826,9 @@
826 "xloc": [
827 "default-mobile.handlebars->11->119",
828 "default-mobile.handlebars->11->349",
829 - "default.handlebars->31->1631",
830 - "default.handlebars->31->2145",
831 - "default.handlebars->31->967"
829 + "default.handlebars->31->1634",
830 + "default.handlebars->31->2148",
831 + "default.handlebars->31->969"
832 ]
833 },
834 {
@@ -885,7 +885,7 @@
885 "zh-chs": "1个活跃时段",
886 "zh-cht": "1個活躍時段",
887 "xloc": [
888 - "default.handlebars->31->2057"
888 + "default.handlebars->31->2060"
889 ]
890 },
891 {
@@ -907,7 +907,7 @@
907 "xloc": [
908 "default-mobile.handlebars->11->129",
909 "default-mobile.handlebars->11->575",
910 - "default.handlebars->31->1655",
910 + "default.handlebars->31->1658",
911 "download.handlebars->3->1",
912 "download2.handlebars->5->1"
913 ]
@@ -929,7 +929,7 @@
929 "zh-chs": "1条连接",
930 "zh-cht": "1位聯絡文",
931 "xloc": [
932 - "default.handlebars->31->886",
932 + "default.handlebars->31->888",
933 "desktop.handlebars->3->15"
934 ]
935 },
@@ -972,7 +972,7 @@
972 "zh-chs": "1组",
973 "zh-cht": "1群",
974 "xloc": [
975 - "default.handlebars->31->2020"
975 + "default.handlebars->31->2023"
976 ]
977 },
978 {
@@ -1014,7 +1014,7 @@
1014 "zh-chs": "1分钟",
1015 "zh-cht": "1分鐘",
1016 "xloc": [
1017 - "default.handlebars->31->766"
1017 + "default.handlebars->31->768"
1018 ]
1019 },
1020 {
@@ -1076,7 +1076,7 @@
1076 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1077 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1078 "xloc": [
1079 - "default.handlebars->31->1810"
1079 + "default.handlebars->31->1813"
1080 ]
1081 },
1082 {
@@ -1142,7 +1142,7 @@
1142 "default-mobile.handlebars->11->183",
1143 "default-mobile.handlebars->11->186",
1144 "default-mobile.handlebars->11->189",
1145 - "default.handlebars->31->1814",
1145 + "default.handlebars->31->1817",
1146 "default.handlebars->31->268",
1147 "default.handlebars->31->271",
1148 "default.handlebars->31->274",
@@ -1274,7 +1274,7 @@
1274 "zh-chs": "10分钟",
1275 "zh-cht": "10分鐘",
1276 "xloc": [
1277 - "default.handlebars->31->768"
1277 + "default.handlebars->31->770"
1278 ]
1279 },
1280 {
@@ -1357,7 +1357,7 @@
1357 "zh-chs": "12小时",
1358 "zh-cht": "12小時",
1359 "xloc": [
1360 - "default.handlebars->31->776"
1360 + "default.handlebars->31->778"
1361 ]
1362 },
1363 {
@@ -1399,7 +1399,7 @@
1399 "zh-chs": "15分钟",
1400 "zh-cht": "15分鐘",
1401 "xloc": [
1402 - "default.handlebars->31->769"
1402 + "default.handlebars->31->771"
1403 ]
1404 },
1405 {
@@ -1419,7 +1419,7 @@
1419 "zh-chs": "16小时",
1420 "zh-cht": "16小時",
1421 "xloc": [
1422 - "default.handlebars->31->777"
1422 + "default.handlebars->31->779"
1423 ]
1424 },
1425 {
@@ -1439,7 +1439,7 @@
1439 "zh-chs": "2天",
1440 "zh-cht": "2天",
1441 "xloc": [
1442 - "default.handlebars->31->779"
1442 + "default.handlebars->31->781"
1443 ]
1444 },
1445 {
@@ -1459,7 +1459,7 @@
1459 "zh-chs": "2小时",
1460 "zh-cht": "2小時",
1461 "xloc": [
1462 - "default.handlebars->31->773"
1462 + "default.handlebars->31->775"
1463 ]
1464 },
1465 {
@@ -1563,7 +1563,7 @@
1563 "zh-chs": "24小时",
1564 "zh-cht": "24小時",
1565 "xloc": [
1566 - "default.handlebars->31->778"
1566 + "default.handlebars->31->780"
1567 ]
1568 },
1569 {
@@ -1625,7 +1625,7 @@
1625 "zh-chs": "2FA备份代码已清除",
1626 "zh-cht": "2FA備份代碼已清除",
1627 "xloc": [
1628 - "default.handlebars->31->1766"
1628 + "default.handlebars->31->1769"
1629 ]
1630 },
1631 {
@@ -1645,8 +1645,8 @@
1645 "zh-chs": "启用第二因素身份验证",
1646 "zh-cht": "啟用第二因素身份驗證",
1647 "xloc": [
1648 - "default.handlebars->31->1827",
1649 - "default.handlebars->31->2042"
1648 + "default.handlebars->31->1830",
1649 + "default.handlebars->31->2045"
1650 ]
1651 },
1652 {
@@ -1765,7 +1765,7 @@
1765 "zh-chs": "30分钟",
1766 "zh-cht": "30分鐘",
1767 "xloc": [
1768 - "default.handlebars->31->770"
1768 + "default.handlebars->31->772"
1769 ]
1770 },
1771 {
@@ -1828,7 +1828,7 @@
1828 "zh-chs": "4天",
1829 "zh-cht": "4天",
1830 "xloc": [
1831 - "default.handlebars->31->780"
1831 + "default.handlebars->31->782"
1832 ]
1833 },
1834 {
@@ -1848,7 +1848,7 @@
1848 "zh-chs": "4个小时",
1849 "zh-cht": "4個小時",
1850 "xloc": [
1851 - "default.handlebars->31->774"
1851 + "default.handlebars->31->776"
1852 ]
1853 },
1854 {
@@ -1931,7 +1931,7 @@
1931 "zh-chs": "45分钟",
1932 "zh-cht": "45分鐘",
1933 "xloc": [
1934 - "default.handlebars->31->771"
1934 + "default.handlebars->31->773"
1935 ]
1936 },
1937 {
@@ -1971,7 +1971,7 @@
1971 "zh-chs": "5分钟",
1972 "zh-cht": "5分鐘",
1973 "xloc": [
1974 - "default.handlebars->31->767"
1974 + "default.handlebars->31->769"
1975 ]
1976 },
1977 {
@@ -2097,7 +2097,7 @@
2097 "zh-chs": "60分钟",
2098 "zh-cht": "60分鐘",
2099 "xloc": [
2100 - "default.handlebars->31->772"
2100 + "default.handlebars->31->774"
2101 ]
2102 },
2103 {
@@ -2217,7 +2217,7 @@
2217 "zh-chs": "7天电源状态",
2218 "zh-cht": "7天電源狀態",
2219 "xloc": [
2220 - "default.handlebars->31->811"
2220 + "default.handlebars->31->813"
2221 ]
2222 },
2223 {
@@ -2282,7 +2282,7 @@
2282 "xloc": [
2283 "default.handlebars->31->347",
2284 "default.handlebars->31->361",
2285 - "default.handlebars->31->775"
2285 + "default.handlebars->31->777"
2286 ]
2287 },
2288 {
@@ -2517,7 +2517,7 @@
2517 "zh-cht": "ACM",
2518 "xloc": [
2519 "default-mobile.handlebars->11->247",
2520 - "default.handlebars->31->1459",
2520 + "default.handlebars->31->1461",
2521 "default.handlebars->31->588"
2522 ]
2523 },
@@ -2708,7 +2708,7 @@
2708 "zh-chs": "拒绝访问",
2709 "zh-cht": "拒絕存取",
2710 "xloc": [
2711 - "default.handlebars->31->1098"
2711 + "default.handlebars->31->1100"
2712 ]
2713 },
2714 {
@@ -2750,7 +2750,7 @@
2750 "zh-chs": "访问服务器档案",
2751 "zh-cht": "存取伺服器檔案",
2752 "xloc": [
2753 - "default.handlebars->31->1992"
2753 + "default.handlebars->31->1995"
2754 ]
2755 },
2756 {
@@ -2839,9 +2839,9 @@
2839 "default-mobile.handlebars->11->222",
2840 "default-mobile.handlebars->11->224",
2841 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2842 - "default.handlebars->31->1365",
2842 "default.handlebars->31->1367",
2844 - "default.handlebars->31->2259",
2843 + "default.handlebars->31->1369",
2844 + "default.handlebars->31->2262",
2845 "default.handlebars->31->557",
2846 "default.handlebars->31->559"
2847 ]
@@ -2852,7 +2852,7 @@
2852 "fr": "Paramètres du compte",
2853 "xloc": [
2854 "default-mobile.handlebars->11->543",
2855 - "default.handlebars->31->2153"
2855 + "default.handlebars->31->2156"
2856 ]
2857 },
2858 {
@@ -2913,7 +2913,7 @@
2913 "zh-chs": "帐户已更改:{0}",
2914 "zh-cht": "帳戶已更改:{0}",
2915 "xloc": [
2916 - "default.handlebars->31->1739"
2916 + "default.handlebars->31->1742"
2917 ]
2918 },
2919 {
@@ -2933,7 +2933,7 @@
2933 "zh-chs": "创建帐户,电子邮件为{0}",
2934 "zh-cht": "創建帳戶,電子郵件為{0}",
2935 "xloc": [
2936 - "default.handlebars->31->1738"
2936 + "default.handlebars->31->1741"
2937 ]
2938 },
2939 {
@@ -2953,7 +2953,7 @@
2953 "zh-chs": "创建帐户,用户名是{0}",
2954 "zh-cht": "帳戶已創建,用戶名是{0}",
2955 "xloc": [
2956 - "default.handlebars->31->1737"
2956 + "default.handlebars->31->1740"
2957 ]
2958 },
2959 {
@@ -2973,8 +2973,8 @@
2973 "zh-chs": "帐户已被锁定",
2974 "zh-cht": "帳戶已被鎖定",
2975 "xloc": [
2976 - "default.handlebars->31->1829",
2977 - "default.handlebars->31->1989"
2976 + "default.handlebars->31->1832",
2977 + "default.handlebars->31->1992"
2978 ]
2979 },
2980 {
@@ -2995,7 +2995,7 @@
2995 "zh-cht": "達到帳戶限制。",
2996 "xloc": [
2997 "default-mobile.handlebars->11->555",
2998 - "default.handlebars->31->2165",
2998 + "default.handlebars->31->2168",
2999 "login-mobile.handlebars->5->6",
3000 "login.handlebars->5->6",
3001 "login2.handlebars->7->7"
@@ -3040,7 +3040,7 @@
3040 "zh-chs": "帐号登录",
3041 "zh-cht": "帳號登錄",
3042 "xloc": [
3043 - "default.handlebars->31->1674"
3043 + "default.handlebars->31->1677"
3044 ]
3045 },
3046 {
@@ -3060,7 +3060,7 @@
3060 "zh-chs": "帐户登出",
3061 "zh-cht": "帳戶登出",
3062 "xloc": [
3063 - "default.handlebars->31->1675"
3063 + "default.handlebars->31->1678"
3064 ]
3065 },
3066 {
@@ -3102,7 +3102,7 @@
3102 "zh-chs": "帐户密码已更改:{0}",
3103 "zh-cht": "帳戶密碼已更改:{0}",
3104 "xloc": [
3105 - "default.handlebars->31->1747"
3105 + "default.handlebars->31->1750"
3106 ]
3107 },
3108 {
@@ -3122,7 +3122,7 @@
3122 "zh-chs": "帐户已删除",
3123 "zh-cht": "帳戶已刪除",
3124 "xloc": [
3125 - "default.handlebars->31->1736"
3125 + "default.handlebars->31->1739"
3126 ]
3127 },
3128 {
@@ -3162,7 +3162,7 @@
3162 "zh-chs": "指令",
3163 "zh-cht": "指令",
3164 "xloc": [
3165 - "default.handlebars->31->1103",
3165 + "default.handlebars->31->1105",
3166 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3167 ]
3168 },
@@ -3183,8 +3183,8 @@
3183 "zh-chs": "动作档案",
3184 "zh-cht": "動作檔案",
3185 "xloc": [
3186 - "default.handlebars->31->857",
3187 - "default.handlebars->31->859"
3186 + "default.handlebars->31->859",
3187 + "default.handlebars->31->861"
3188 ]
3189 },
3190 {
@@ -3290,7 +3290,7 @@
3290 "zh-chs": "如果ACM失败,则激活到CCM",
3291 "zh-cht": "如果ACM失敗,則激活到CCM",
3292 "xloc": [
3293 - "default.handlebars->31->1480"
3293 + "default.handlebars->31->1482"
3294 ]
3295 },
3296 {
@@ -3313,7 +3313,7 @@
3313 "default-mobile.handlebars->11->242",
3314 "default-mobile.handlebars->11->244",
3315 "default-mobile.handlebars->11->435",
3316 - "default.handlebars->31->1059",
3316 + "default.handlebars->31->1061",
3317 "default.handlebars->31->581",
3318 "default.handlebars->31->583"
3319 ]
@@ -3381,7 +3381,7 @@
3381 "nl": "Toevoegen",
3382 "xloc": [
3383 "default-mobile.handlebars->11->340",
3384 - "default.handlebars->31->920"
3384 + "default.handlebars->31->922"
3385 ]
3386 },
3387 {
@@ -3401,7 +3401,7 @@
3401 "zh-chs": "添加代理",
3402 "zh-cht": "新增代理",
3403 "xloc": [
3404 - "default.handlebars->31->1455",
3404 + "default.handlebars->31->1457",
3405 "default.handlebars->31->301"
3406 ]
3407 },
@@ -3439,8 +3439,8 @@
3439 "zh-chs": "添加设备",
3440 "zh-cht": "新增裝置",
3441 "xloc": [
3442 - "default.handlebars->31->1966",
3443 - "default.handlebars->31->2092"
3442 + "default.handlebars->31->1969",
3443 + "default.handlebars->31->2095"
3444 ]
3445 },
3446 {
@@ -3460,7 +3460,7 @@
3460 "zh-chs": "添加设备日志",
3461 "zh-cht": "新增裝置日誌",
3462 "xloc": [
3463 - "default.handlebars->31->752"
3463 + "default.handlebars->31->754"
3464 ]
3465 },
3466 {
@@ -3480,9 +3480,9 @@
3480 "zh-chs": "添加设备组",
3481 "zh-cht": "新增裝置群",
3482 "xloc": [
3483 - "default.handlebars->31->1554",
3484 - "default.handlebars->31->1960",
3485 - "default.handlebars->31->2080",
3483 + "default.handlebars->31->1557",
3484 + "default.handlebars->31->1963",
3485 + "default.handlebars->31->2083",
3486 "default.handlebars->31->238"
3487 ]
3488 },
@@ -3503,7 +3503,7 @@
3503 "zh-chs": "添加设备组权限",
3504 "zh-cht": "新增裝置群權限",
3505 "xloc": [
3506 - "default.handlebars->31->1551"
3506 + "default.handlebars->31->1554"
3507 ]
3508 },
3509 {
@@ -3523,8 +3523,8 @@
3523 "zh-chs": "添加设备权限",
3524 "zh-cht": "新增裝置權限",
3525 "xloc": [
3526 - "default.handlebars->31->1556",
3527 - "default.handlebars->31->1558"
3526 + "default.handlebars->31->1559",
3527 + "default.handlebars->31->1561"
3528 ]
3529 },
3530 {
@@ -3621,7 +3621,7 @@
3621 "zh-chs": "添加成员身份",
3622 "zh-cht": "新增成員身份",
3623 "xloc": [
3624 - "default.handlebars->31->2112"
3624 + "default.handlebars->31->2115"
3625 ]
3626 },
3627 {
@@ -3661,8 +3661,8 @@
3661 "zh-chs": "添加安全密钥",
3662 "zh-cht": "新增安全密鑰",
3663 "xloc": [
3664 - "default.handlebars->31->1132",
3665 - "default.handlebars->31->1133",
3664 + "default.handlebars->31->1134",
3665 + "default.handlebars->31->1135",
3666 "default.handlebars->31->160",
3667 "default.handlebars->31->162",
3668 "default.handlebars->31->165",
@@ -3707,7 +3707,7 @@
3707 "zh-chs": "添加用户设备权限",
3708 "zh-cht": "新增用戶裝置權限",
3709 "xloc": [
3710 - "default.handlebars->31->1561"
3710 + "default.handlebars->31->1564"
3711 ]
3712 },
3713 {
@@ -3727,9 +3727,9 @@
3727 "zh-chs": "添加用户组",
3728 "zh-cht": "新增用戶群",
3729 "xloc": [
3730 - "default.handlebars->31->1451",
3731 - "default.handlebars->31->1553",
3732 - "default.handlebars->31->2086",
3730 + "default.handlebars->31->1453",
3731 + "default.handlebars->31->1556",
3732 + "default.handlebars->31->2089",
3733 "default.handlebars->31->696"
3734 ]
3735 },
@@ -3750,7 +3750,7 @@
3750 "zh-chs": "添加用户组设备权限",
3751 "zh-cht": "新增用戶群裝置權限",
3752 "xloc": [
3753 - "default.handlebars->31->1563"
3753 + "default.handlebars->31->1566"
3754 ]
3755 },
3756 {
@@ -3807,8 +3807,8 @@
3807 "zh-chs": "添加用户",
3808 "zh-cht": "新增用戶",
3809 "xloc": [
3810 - "default.handlebars->31->1450",
3811 - "default.handlebars->31->1955"
3810 + "default.handlebars->31->1452",
3811 + "default.handlebars->31->1958"
3812 ]
3813 },
3814 {
@@ -3828,7 +3828,7 @@
3828 "zh-chs": "将用户添加到设备组",
3829 "zh-cht": "將用戶新增到裝置群",
3830 "xloc": [
3831 - "default.handlebars->31->1550"
3831 + "default.handlebars->31->1553"
3832 ]
3833 },
3834 {
@@ -3848,7 +3848,7 @@
3848 "zh-chs": "将用户添加到用户组",
3849 "zh-cht": "將用戶新增到用戶群",
3850 "xloc": [
3851 - "default.handlebars->31->1988"
3851 + "default.handlebars->31->1991"
3852 ]
3853 },
3854 {
@@ -3965,7 +3965,7 @@
3965 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3966 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3967 "xloc": [
3968 - "default.handlebars->31->1454",
3968 + "default.handlebars->31->1456",
3969 "default.handlebars->31->300"
3970 ]
3971 },
@@ -4026,7 +4026,7 @@
4026 "zh-chs": "添加了身份验证应用程序",
4027 "zh-cht": "添加了身份驗證應用程序",
4028 "xloc": [
4029 - "default.handlebars->31->1763"
4029 + "default.handlebars->31->1766"
4030 ]
4031 },
4032 {
@@ -4046,7 +4046,7 @@
4046 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
4047 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
4048 "xloc": [
4049 - "default.handlebars->31->1774"
4049 + "default.handlebars->31->1777"
4050 ]
4051 },
4052 {
@@ -4066,8 +4066,8 @@
4066 "zh-chs": "已将设备{0}添加到设备组{1}",
4067 "zh-cht": "已將設備{0}添加到設備組{1}",
4068 "xloc": [
4069 - "default.handlebars->31->1730",
4070 - "default.handlebars->31->1757"
4069 + "default.handlebars->31->1733",
4070 + "default.handlebars->31->1760"
4071 ]
4072 },
4073 {
@@ -4087,7 +4087,7 @@
4087 "zh-chs": "添加了安全密钥",
4088 "zh-cht": "添加了安全密鑰",
4089 "xloc": [
4090 - "default.handlebars->31->1768"
4090 + "default.handlebars->31->1771"
4091 ]
4092 },
4093 {
@@ -4107,7 +4107,7 @@
4107 "zh-chs": "已将用户组{0}添加到设备组{1}",
4108 "zh-cht": "已將用戶組{0}添加到設備組{1}",
4109 "xloc": [
4110 - "default.handlebars->31->1741"
4110 + "default.handlebars->31->1744"
4111 ]
4112 },
4113 {
@@ -4127,8 +4127,8 @@
4127 "zh-chs": "已将用户{0}添加到用户组{1}",
4128 "zh-cht": "已將用戶{0}添加到用戶組{1}",
4129 "xloc": [
4130 - "default.handlebars->31->1744",
4131 - "default.handlebars->31->1753"
4130 + "default.handlebars->31->1747",
4131 + "default.handlebars->31->1756"
4132 ]
4133 },
4134 {
@@ -4189,7 +4189,7 @@
4189 "zh-cht": "管理員控制模式(ACM)",
4190 "xloc": [
4191 "default-mobile.handlebars->11->437",
4192 - "default.handlebars->31->1061"
4192 + "default.handlebars->31->1063"
4193 ]
4194 },
4195 {
@@ -4210,7 +4210,7 @@
4210 "zh-cht": "管理員憑證",
4211 "xloc": [
4212 "default-mobile.handlebars->11->443",
4213 - "default.handlebars->31->1067"
4213 + "default.handlebars->31->1069"
4214 ]
4215 },
4216 {
@@ -4251,7 +4251,7 @@
4251 "zh-chs": "管理领域",
4252 "zh-cht": "管理領域",
4253 "xloc": [
4254 - "default.handlebars->31->2024"
4254 + "default.handlebars->31->2027"
4255 ]
4256 },
4257 {
@@ -4292,7 +4292,7 @@
4292 "zh-chs": "管理领域",
4293 "zh-cht": "管理領域",
4294 "xloc": [
4295 - "default.handlebars->31->1892"
4295 + "default.handlebars->31->1895"
4296 ]
4297 },
4298 {
@@ -4312,7 +4312,7 @@
4312 "zh-chs": "管理员",
4313 "zh-cht": "管理員",
4314 "xloc": [
4315 - "default.handlebars->31->1821"
4315 + "default.handlebars->31->1824"
4316 ]
4317 },
4318 {
@@ -4332,7 +4332,7 @@
4332 "zh-chs": "南非文",
4333 "zh-cht": "南非文",
4334 "xloc": [
4335 - "default.handlebars->31->1135"
4335 + "default.handlebars->31->1137"
4336 ]
4337 },
4338 {
@@ -4356,8 +4356,8 @@
4356 "default-mobile.handlebars->11->214",
4357 "default-mobile.handlebars->11->239",
4358 "default-mobile.handlebars->11->261",
4359 - "default.handlebars->31->1617",
4360 - "default.handlebars->31->1625",
4359 + "default.handlebars->31->1620",
4360 + "default.handlebars->31->1628",
4361 "default.handlebars->31->254",
4362 "default.handlebars->31->443",
4363 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4380,8 +4380,8 @@
4380 "zh-chs": "代理+英特尔AMT",
4381 "zh-cht": "代理+Intel® AMT",
4382 "xloc": [
4383 - "default.handlebars->31->1619",
4384 - "default.handlebars->31->1627"
4383 + "default.handlebars->31->1622",
4384 + "default.handlebars->31->1630"
4385 ]
4386 },
4387 {
@@ -4422,7 +4422,7 @@
4422 "zh-cht": "代理控制台",
4423 "xloc": [
4424 "default-mobile.handlebars->11->514",
4425 - "default.handlebars->31->1571"
4425 + "default.handlebars->31->1574"
4426 ]
4427 },
4428 {
@@ -4442,7 +4442,7 @@
4442 "zh-chs": "代理错误计数器",
4443 "zh-cht": "代理錯誤計數器",
4444 "xloc": [
4445 - "default.handlebars->31->2190"
4445 + "default.handlebars->31->2193"
4446 ]
4447 },
4448 {
@@ -4545,7 +4545,7 @@
4545 "zh-chs": "代理时段",
4546 "zh-cht": "代理時段",
4547 "xloc": [
4548 - "default.handlebars->31->2206"
4548 + "default.handlebars->31->2209"
4549 ]
4550 },
4551 {
@@ -4586,7 +4586,7 @@
4586 "zh-chs": "代理类型",
4587 "zh-cht": "代理類型",
4588 "xloc": [
4589 - "default.handlebars->31->1623",
4589 + "default.handlebars->31->1626",
4590 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4591 ]
4592 },
@@ -4607,7 +4607,7 @@
4607 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4608 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4609 "xloc": [
4610 - "default.handlebars->31->1727"
4610 + "default.handlebars->31->1730"
4611 ]
4612 },
4613 {
@@ -4669,7 +4669,7 @@
4669 "zh-chs": "代理离线",
4670 "zh-cht": "代理離線",
4671 "xloc": [
4672 - "default.handlebars->31->1096"
4672 + "default.handlebars->31->1098"
4673 ]
4674 },
4675 {
@@ -4689,7 +4689,7 @@
4689 "zh-chs": "代理在线",
4690 "zh-cht": "代理在線",
4691 "xloc": [
4692 - "default.handlebars->31->1095"
4692 + "default.handlebars->31->1097"
4693 ]
4694 },
4695 {
@@ -4730,7 +4730,7 @@
4730 "zh-chs": "代理",
4731 "zh-cht": "代理",
4732 "xloc": [
4733 - "default.handlebars->31->2222"
4733 + "default.handlebars->31->2225"
4734 ]
4735 },
4736 {
@@ -4750,7 +4750,7 @@
4750 "zh-chs": "阿尔巴尼亚文",
4751 "zh-cht": "阿爾巴尼亞文",
4752 "xloc": [
4753 - "default.handlebars->31->1136"
4753 + "default.handlebars->31->1138"
4754 ]
4755 },
4756 {
@@ -4793,7 +4793,7 @@
4793 "zh-chs": "全部可用",
4794 "zh-cht": "全部可用",
4795 "xloc": [
4796 - "default.handlebars->31->1784"
4796 + "default.handlebars->31->1787"
4797 ]
4798 },
4799 {
@@ -4830,7 +4830,7 @@
4830 "zh-chs": "所有事件",
4831 "zh-cht": "所有事件",
4832 "xloc": [
4833 - "default.handlebars->31->1782"
4833 + "default.handlebars->31->1785"
4834 ]
4835 },
4836 {
@@ -4850,9 +4850,9 @@
4850 "zh-chs": "全部聚焦",
4851 "zh-cht": "全部聚焦",
4852 "xloc": [
4853 - "default.handlebars->31->891",
4853 "default.handlebars->31->893",
4855 - "default.handlebars->31->894"
4854 + "default.handlebars->31->895",
4855 + "default.handlebars->31->896"
4856 ]
4857 },
4858 {
@@ -4872,8 +4872,8 @@
4872 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4873 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4874 "xloc": [
4875 - "default.handlebars->31->1518",
4876 - "default.handlebars->31->1985"
4875 + "default.handlebars->31->1520",
4876 + "default.handlebars->31->1988"
4877 ]
4878 },
4879 {
@@ -4893,7 +4893,7 @@
4893 "zh-chs": "允许用户管理此设备。",
4894 "zh-cht": "允許用戶管理此裝置。",
4895 "xloc": [
4896 - "default.handlebars->31->1519"
4896 + "default.handlebars->31->1521"
4897 ]
4898 },
4899 {
@@ -4911,8 +4911,8 @@
4911 "xloc": [
4912 "default-mobile.handlebars->11->333",
4913 "default-mobile.handlebars->11->337",
4914 - "default.handlebars->31->913",
4915 - "default.handlebars->31->917"
4914 + "default.handlebars->31->915",
4915 + "default.handlebars->31->919"
4916 ]
4917 },
4918 {
@@ -4974,7 +4974,7 @@
4974 "zh-chs": "备用(F10 = ESC + 0)",
4975 "zh-cht": "備用(F10 = ESC + 0)",
4976 "xloc": [
4977 - "default.handlebars->31->954",
4977 + "default.handlebars->31->956",
4978 "terminal.handlebars->3->19"
4979 ]
4980 },
@@ -5016,9 +5016,9 @@
5016 "zh-chs": "一直通知",
5017 "zh-cht": "一直通知",
5018 "xloc": [
5019 - "default.handlebars->31->1430",
5020 - "default.handlebars->31->1946",
5021 - "default.handlebars->31->2033",
5019 + "default.handlebars->31->1432",
5020 + "default.handlebars->31->1949",
5021 + "default.handlebars->31->2036",
5022 "default.handlebars->31->632"
5023 ]
5024 },
@@ -5039,9 +5039,9 @@
5039 "zh-chs": "一直提示",
5040 "zh-cht": "一直提示",
5041 "xloc": [
5042 - "default.handlebars->31->1431",
5043 - "default.handlebars->31->1947",
5044 - "default.handlebars->31->2034",
5042 + "default.handlebars->31->1433",
5043 + "default.handlebars->31->1950",
5044 + "default.handlebars->31->2037",
5045 "default.handlebars->31->633"
5046 ]
5047 },
@@ -5304,7 +5304,7 @@
5304 "zh-chs": "阿拉伯文(阿尔及利亚)",
5305 "zh-cht": "阿拉伯文(阿爾及利亞)",
5306 "xloc": [
5307 - "default.handlebars->31->1138"
5307 + "default.handlebars->31->1140"
5308 ]
5309 },
5310 {
@@ -5324,7 +5324,7 @@
5324 "zh-chs": "阿拉伯文(巴林)",
5325 "zh-cht": "阿拉伯文(巴林)",
5326 "xloc": [
5327 - "default.handlebars->31->1139"
5327 + "default.handlebars->31->1141"
5328 ]
5329 },
5330 {
@@ -5344,7 +5344,7 @@
5344 "zh-chs": "阿拉伯文(埃及)",
5345 "zh-cht": "阿拉伯文(埃及)",
5346 "xloc": [
5347 - "default.handlebars->31->1140"
5347 + "default.handlebars->31->1142"
5348 ]
5349 },
5350 {
@@ -5364,7 +5364,7 @@
5364 "zh-chs": "阿拉伯文(伊拉克)",
5365 "zh-cht": "阿拉伯文(伊拉克)",
5366 "xloc": [
5367 - "default.handlebars->31->1141"
5367 + "default.handlebars->31->1143"
5368 ]
5369 },
5370 {
@@ -5384,7 +5384,7 @@
5384 "zh-chs": "阿拉伯文(约旦)",
5385 "zh-cht": "阿拉伯文(約旦)",
5386 "xloc": [
5387 - "default.handlebars->31->1142"
5387 + "default.handlebars->31->1144"
5388 ]
5389 },
5390 {
@@ -5404,7 +5404,7 @@
5404 "zh-chs": "阿拉伯文(科威特)",
5405 "zh-cht": "阿拉伯文(科威特)",
5406 "xloc": [
5407 - "default.handlebars->31->1143"
5407 + "default.handlebars->31->1145"
5408 ]
5409 },
5410 {
@@ -5424,7 +5424,7 @@
5424 "zh-chs": "阿拉伯文(黎巴嫩)",
5425 "zh-cht": "阿拉伯文(黎巴嫩)",
5426 "xloc": [
5427 - "default.handlebars->31->1144"
5427 + "default.handlebars->31->1146"
5428 ]
5429 },
5430 {
@@ -5444,7 +5444,7 @@
5444 "zh-chs": "阿拉伯文(利比亚)",
5445 "zh-cht": "阿拉伯文(利比亞)",
5446 "xloc": [
5447 - "default.handlebars->31->1145"
5447 + "default.handlebars->31->1147"
5448 ]
5449 },
5450 {
@@ -5464,7 +5464,7 @@
5464 "zh-chs": "阿拉伯文(摩洛哥)",
5465 "zh-cht": "阿拉伯文(摩洛哥)",
5466 "xloc": [
5467 - "default.handlebars->31->1146"
5467 + "default.handlebars->31->1148"
5468 ]
5469 },
5470 {
@@ -5484,7 +5484,7 @@
5484 "zh-chs": "阿拉伯文(阿曼)",
5485 "zh-cht": "阿拉伯文(阿曼)",
5486 "xloc": [
5487 - "default.handlebars->31->1147"
5487 + "default.handlebars->31->1149"
5488 ]
5489 },
5490 {
@@ -5504,7 +5504,7 @@
5504 "zh-chs": "阿拉伯文(卡塔尔)",
5505 "zh-cht": "阿拉伯文(卡塔爾)",
5506 "xloc": [
5507 - "default.handlebars->31->1148"
5507 + "default.handlebars->31->1150"
5508 ]
5509 },
5510 {
@@ -5524,7 +5524,7 @@
5524 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5525 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5526 "xloc": [
5527 - "default.handlebars->31->1149"
5527 + "default.handlebars->31->1151"
5528 ]
5529 },
5530 {
@@ -5544,7 +5544,7 @@
5544 "zh-chs": "阿拉伯文(标准)",
5545 "zh-cht": "阿拉伯文(標準)",
5546 "xloc": [
5547 - "default.handlebars->31->1137"
5547 + "default.handlebars->31->1139"
5548 ]
5549 },
5550 {
@@ -5564,7 +5564,7 @@
5564 "zh-chs": "阿拉伯文(叙利亚)",
5565 "zh-cht": "阿拉伯文(敘利亞)",
5566 "xloc": [
5567 - "default.handlebars->31->1150"
5567 + "default.handlebars->31->1152"
5568 ]
5569 },
5570 {
@@ -5584,7 +5584,7 @@
5584 "zh-chs": "阿拉伯文(突尼斯)",
5585 "zh-cht": "阿拉伯文(突尼斯)",
5586 "xloc": [
5587 - "default.handlebars->31->1151"
5587 + "default.handlebars->31->1153"
5588 ]
5589 },
5590 {
@@ -5604,7 +5604,7 @@
5604 "zh-chs": "阿拉伯文(阿联酋)",
5605 "zh-cht": "阿拉伯文(阿聯酋)",
5606 "xloc": [
5607 - "default.handlebars->31->1152"
5607 + "default.handlebars->31->1154"
5608 ]
5609 },
5610 {
@@ -5624,7 +5624,7 @@
5624 "zh-chs": "阿拉伯文(也门)",
5625 "zh-cht": "阿拉伯文(也門)",
5626 "xloc": [
5627 - "default.handlebars->31->1153"
5627 + "default.handlebars->31->1155"
5628 ]
5629 },
5630 {
@@ -5644,7 +5644,7 @@
5644 "zh-chs": "阿拉贡文",
5645 "zh-cht": "阿拉貢文",
5646 "xloc": [
5647 - "default.handlebars->31->1154"
5647 + "default.handlebars->31->1156"
5648 ]
5649 },
5650 {
@@ -5665,7 +5665,7 @@
5665 "zh-cht": "結構",
5666 "xloc": [
5667 "default-mobile.handlebars->11->384",
5668 - "default.handlebars->31->1015"
5668 + "default.handlebars->31->1017"
5669 ]
5670 },
5671 {
@@ -5706,7 +5706,7 @@
5706 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5707 "xloc": [
5708 "default-mobile.handlebars->11->483",
5709 - "default.handlebars->31->1494"
5709 + "default.handlebars->31->1496"
5710 ]
5711 },
5712 {
@@ -5726,7 +5726,7 @@
5726 "zh-chs": "您确定要删除节点{0}吗?",
5727 "zh-cht": "你確定要刪除節點{0}嗎?",
5728 "xloc": [
5729 - "default.handlebars->31->833"
5729 + "default.handlebars->31->835"
5730 ]
5731 },
5732 {
@@ -5746,7 +5746,7 @@
5746 "zh-chs": "您确定要卸载所选代理吗?",
5747 "zh-cht": "你確定要卸載所選代理嗎?",
5748 "xloc": [
5749 - "default.handlebars->31->822"
5749 + "default.handlebars->31->824"
5750 ]
5751 },
5752 {
@@ -5766,7 +5766,7 @@
5766 "zh-chs": "您确定要卸载所选的{0}代理吗?",
5767 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
5768 "xloc": [
5769 - "default.handlebars->31->821"
5769 + "default.handlebars->31->823"
5770 ]
5771 },
5772 {
@@ -5786,7 +5786,7 @@
5786 "zh-chs": "您确定要{0}插件吗:{1}",
5787 "zh-cht": "你確定要{0}外掛嗎:{1}",
5788 "xloc": [
5789 - "default.handlebars->31->2268"
5789 + "default.handlebars->31->2271"
5790 ]
5791 },
5792 {
@@ -5806,7 +5806,7 @@
5806 "zh-chs": "亚美尼亚文",
5807 "zh-cht": "亞美尼亞文",
5808 "xloc": [
5809 - "default.handlebars->31->1155"
5809 + "default.handlebars->31->1157"
5810 ]
5811 },
5812 {
@@ -5866,7 +5866,7 @@
5866 "zh-chs": "阿萨姆文",
5867 "zh-cht": "阿薩姆文",
5868 "xloc": [
5869 - "default.handlebars->31->1156"
5869 + "default.handlebars->31->1158"
5870 ]
5871 },
5872 {
@@ -5886,7 +5886,7 @@
5886 "zh-chs": "阿斯图里亚斯文",
5887 "zh-cht": "阿斯圖里亞斯文",
5888 "xloc": [
5889 - "default.handlebars->31->1157"
5889 + "default.handlebars->31->1159"
5890 ]
5891 },
5892 {
@@ -5906,7 +5906,7 @@
5906 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5907 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5908 "xloc": [
5909 - "default.handlebars->31->1696"
5909 + "default.handlebars->31->1699"
5910 ]
5911 },
5912 {
@@ -5926,7 +5926,7 @@
5926 "zh-chs": "认证软件",
5927 "zh-cht": "認證軟體",
5928 "xloc": [
5929 - "default.handlebars->31->2037"
5929 + "default.handlebars->31->2040"
5930 ]
5931 },
5932 {
@@ -5950,8 +5950,8 @@
5950 "default-mobile.handlebars->11->63",
5951 "default-mobile.handlebars->11->82",
5952 "default-mobile.handlebars->11->84",
5953 - "default.handlebars->31->1121",
5953 "default.handlebars->31->1123",
5954 + "default.handlebars->31->1125",
5955 "default.handlebars->31->136",
5956 "default.handlebars->31->141"
5957 ]
@@ -6033,7 +6033,7 @@
6033 "zh-chs": "自动删除",
6034 "zh-cht": "自動刪除",
6035 "xloc": [
6036 - "default.handlebars->31->1417"
6036 + "default.handlebars->31->1419"
6037 ]
6038 },
6039 {
@@ -6077,7 +6077,7 @@
6077 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6078 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6079 "xloc": [
6080 - "default.handlebars->31->1777"
6080 + "default.handlebars->31->1780"
6081 ]
6082 },
6083 {
@@ -6117,7 +6117,7 @@
6117 "zh-chs": "可用內存",
6118 "zh-cht": "可用內存",
6119 "xloc": [
6120 - "default.handlebars->31->2215"
6120 + "default.handlebars->31->2218"
6121 ]
6122 },
6123 {
@@ -6137,7 +6137,7 @@
6137 "zh-chs": "阿塞拜疆文",
6138 "zh-cht": "阿塞拜疆文",
6139 "xloc": [
6140 - "default.handlebars->31->1158"
6140 + "default.handlebars->31->1160"
6141 ]
6142 },
6143 {
@@ -6170,7 +6170,7 @@
6170 "zh-cht": "的BIOS",
6171 "xloc": [
6172 "default-mobile.handlebars->11->449",
6173 - "default.handlebars->31->1073"
6173 + "default.handlebars->31->1075"
6174 ]
6175 },
6176 {
@@ -6254,7 +6254,7 @@
6254 "nl": "BackSpace",
6255 "xloc": [
6256 "default-mobile.handlebars->11->317",
6257 - "default.handlebars->31->897"
6257 + "default.handlebars->31->899"
6258 ]
6259 },
6260 {
@@ -6294,8 +6294,8 @@
6294 "zh-chs": "背景与互动",
6295 "zh-cht": "背景與互動",
6296 "xloc": [
6297 - "default.handlebars->31->1600",
6298 - "default.handlebars->31->1607",
6297 + "default.handlebars->31->1603",
6298 + "default.handlebars->31->1610",
6299 "default.handlebars->31->353",
6300 "default.handlebars->31->367"
6301 ]
@@ -6317,8 +6317,8 @@
6317 "zh-chs": "仅背景",
6318 "zh-cht": "僅背景",
6319 "xloc": [
6320 - "default.handlebars->31->1601",
6321 - "default.handlebars->31->1608",
6320 + "default.handlebars->31->1604",
6321 + "default.handlebars->31->1611",
6322 "default.handlebars->31->354",
6323 "default.handlebars->31->368",
6324 "default.handlebars->31->383"
@@ -6362,7 +6362,7 @@
6362 "zh-chs": "备用码",
6363 "zh-cht": "備用碼",
6364 "xloc": [
6365 - "default.handlebars->31->2039"
6365 + "default.handlebars->31->2042"
6366 ]
6367 },
6368 {
@@ -6382,7 +6382,7 @@
6382 "zh-chs": "错误的签名",
6383 "zh-cht": "錯誤的簽名",
6384 "xloc": [
6385 - "default.handlebars->31->2197"
6385 + "default.handlebars->31->2200"
6386 ]
6387 },
6388 {
@@ -6402,7 +6402,7 @@
6402 "zh-chs": "错误的网络证书",
6403 "zh-cht": "錯誤的網絡憑證",
6404 "xloc": [
6405 - "default.handlebars->31->2196"
6405 + "default.handlebars->31->2199"
6406 ]
6407 },
6408 {
@@ -6422,7 +6422,7 @@
6422 "zh-chs": "巴斯克",
6423 "zh-cht": "巴斯克",
6424 "xloc": [
6425 - "default.handlebars->31->1159"
6425 + "default.handlebars->31->1161"
6426 ]
6427 },
6428 {
@@ -6482,7 +6482,7 @@
6482 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
6483 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6484 "xloc": [
6485 - "default.handlebars->31->1776"
6485 + "default.handlebars->31->1779"
6486 ]
6487 },
6488 {
@@ -6502,7 +6502,7 @@
6502 "zh-chs": "白俄罗斯文",
6503 "zh-cht": "白俄羅斯文",
6504 "xloc": [
6505 - "default.handlebars->31->1161"
6505 + "default.handlebars->31->1163"
6506 ]
6507 },
6508 {
@@ -6522,7 +6522,7 @@
6522 "zh-chs": "孟加拉",
6523 "zh-cht": "孟加拉",
6524 "xloc": [
6525 - "default.handlebars->31->1162"
6525 + "default.handlebars->31->1164"
6526 ]
6527 },
6528 {
@@ -6554,7 +6554,7 @@
6554 "fr": "Chargeur de démarrage",
6555 "xloc": [
6556 "default-mobile.handlebars->11->413",
6557 - "default.handlebars->31->1027"
6557 + "default.handlebars->31->1029"
6558 ]
6559 },
6560 {
@@ -6574,7 +6574,7 @@
6574 "zh-chs": "波斯尼亚文",
6575 "zh-cht": "波斯尼亞文",
6576 "xloc": [
6577 - "default.handlebars->31->1163"
6577 + "default.handlebars->31->1165"
6578 ]
6579 },
6580 {
@@ -6594,7 +6594,7 @@
6594 "zh-chs": "布列塔尼",
6595 "zh-cht": "布列塔尼",
6596 "xloc": [
6597 - "default.handlebars->31->1164"
6597 + "default.handlebars->31->1166"
6598 ]
6599 },
6600 {
@@ -6614,7 +6614,7 @@
6614 "zh-chs": "广播",
6615 "zh-cht": "廣播",
6616 "xloc": [
6617 - "default.handlebars->31->1953",
6617 + "default.handlebars->31->1956",
6618 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6619 ]
6620 },
@@ -6635,7 +6635,7 @@
6635 "zh-chs": "广播消息",
6636 "zh-cht": "廣播消息",
6637 "xloc": [
6638 - "default.handlebars->31->1874"
6638 + "default.handlebars->31->1877"
6639 ]
6640 },
6641 {
@@ -6655,7 +6655,7 @@
6655 "zh-chs": "向所有连接的用户广播消息。",
6656 "zh-cht": "向所有連接的用戶廣播消息。",
6657 "xloc": [
6658 - "default.handlebars->31->1869"
6658 + "default.handlebars->31->1872"
6659 ]
6660 },
6661 {
@@ -6675,7 +6675,7 @@
6675 "zh-chs": "保加利亚文",
6676 "zh-cht": "保加利亞文",
6677 "xloc": [
6678 - "default.handlebars->31->1160"
6678 + "default.handlebars->31->1162"
6679 ]
6680 },
6681 {
@@ -6695,7 +6695,7 @@
6695 "zh-chs": "缅甸文",
6696 "zh-cht": "緬甸文",
6697 "xloc": [
6698 - "default.handlebars->31->1165"
6698 + "default.handlebars->31->1167"
6699 ]
6700 },
6701 {
@@ -6736,7 +6736,7 @@
6736 "zh-chs": "CCM模式",
6737 "zh-cht": "CCM模式",
6738 "xloc": [
6739 - "default.handlebars->31->1477"
6739 + "default.handlebars->31->1479"
6740 ]
6741 },
6742 {
@@ -6778,7 +6778,7 @@
6778 "zh-chs": "CIRA服务器",
6779 "zh-cht": "CIRA伺服器",
6780 "xloc": [
6781 - "default.handlebars->31->2254"
6781 + "default.handlebars->31->2257"
6782 ]
6783 },
6784 {
@@ -6798,7 +6798,7 @@
6798 "zh-chs": "CIRA服务器命令",
6799 "zh-cht": "CIRA伺服器指令",
6800 "xloc": [
6801 - "default.handlebars->31->2255"
6801 + "default.handlebars->31->2258"
6802 ]
6803 },
6804 {
@@ -6818,7 +6818,7 @@
6818 "zh-chs": "CIRA设置",
6819 "zh-cht": "CIRA設置",
6820 "xloc": [
6821 - "default.handlebars->31->1485"
6821 + "default.handlebars->31->1487"
6822 ]
6823 },
6824 {
@@ -6839,7 +6839,7 @@
6839 "zh-cht": "CPU",
6840 "xloc": [
6841 "default-mobile.handlebars->11->455",
6842 - "default.handlebars->31->1079"
6842 + "default.handlebars->31->1081"
6843 ]
6844 },
6845 {
@@ -6859,7 +6859,7 @@
6859 "zh-chs": "CPU负载",
6860 "zh-cht": "CPU負載",
6861 "xloc": [
6862 - "default.handlebars->31->2211"
6862 + "default.handlebars->31->2214"
6863 ]
6864 },
6865 {
@@ -6879,7 +6879,7 @@
6879 "zh-chs": "最近15分钟的CPU负载",
6880 "zh-cht": "最近15分鐘的CPU負載",
6881 "xloc": [
6882 - "default.handlebars->31->2214"
6882 + "default.handlebars->31->2217"
6883 ]
6884 },
6885 {
@@ -6899,7 +6899,7 @@
6899 "zh-chs": "最近5分钟的CPU负载",
6900 "zh-cht": "最近5分鐘的CPU負載",
6901 "xloc": [
6902 - "default.handlebars->31->2213"
6902 + "default.handlebars->31->2216"
6903 ]
6904 },
6905 {
@@ -6919,7 +6919,7 @@
6919 "zh-chs": "最近一分钟的CPU负载",
6920 "zh-cht": "最近一分鐘的CPU負載",
6921 "xloc": [
6922 - "default.handlebars->31->2212"
6922 + "default.handlebars->31->2215"
6923 ]
6924 },
6925 {
@@ -6939,8 +6939,8 @@
6939 "zh-chs": "CR+LF",
6940 "zh-cht": "CR+LF",
6941 "xloc": [
6942 - "default.handlebars->31->947",
6943 - "default.handlebars->31->956",
6942 + "default.handlebars->31->949",
6943 + "default.handlebars->31->958",
6944 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
6945 "terminal.handlebars->3->21",
6946 "terminal.handlebars->3->7",
@@ -6964,7 +6964,7 @@
6964 "zh-chs": "CSV",
6965 "zh-cht": "CSV",
6966 "xloc": [
6967 - "default.handlebars->31->1792"
6967 + "default.handlebars->31->1795"
6968 ]
6969 },
6970 {
@@ -6984,8 +6984,8 @@
6984 "zh-chs": "CSV格式",
6985 "zh-cht": "CSV格式",
6986 "xloc": [
6987 - "default.handlebars->31->1796",
6988 - "default.handlebars->31->1861",
6987 + "default.handlebars->31->1799",
6988 + "default.handlebars->31->1864",
6989 "default.handlebars->31->502"
6990 ]
6991 },
@@ -7023,7 +7023,7 @@
7023 "zh-chs": "呼叫错误",
7024 "zh-cht": "呼叫錯誤",
7025 "xloc": [
7026 - "default.handlebars->31->2269"
7026 + "default.handlebars->31->2272"
7027 ]
7028 },
7029 {
@@ -7046,7 +7046,7 @@
7046 "agent-translations.json",
7047 "default-mobile.handlebars->11->93",
7048 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
7049 - "default.handlebars->31->1395",
7049 + "default.handlebars->31->1397",
7050 "default.handlebars->container->dialog->idx_dlgButtonBar",
7051 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7052 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7077,9 +7077,9 @@
7077 "default-mobile.handlebars->11->460",
7078 "default-mobile.handlebars->11->465",
7079 "default-mobile.handlebars->11->467",
7080 - "default.handlebars->31->1084",
7081 - "default.handlebars->31->1089",
7082 - "default.handlebars->31->1091"
7080 + "default.handlebars->31->1086",
7081 + "default.handlebars->31->1091",
7082 + "default.handlebars->31->1093"
7083 ]
7084 },
7085 {
@@ -7100,7 +7100,7 @@
7100 "zh-cht": "容量/速度",
7101 "xloc": [
7102 "default-mobile.handlebars->11->458",
7103 - "default.handlebars->31->1082"
7103 + "default.handlebars->31->1084"
7104 ]
7105 },
7106 {
@@ -7120,7 +7120,7 @@
7120 "zh-chs": "加泰罗尼亚文",
7121 "zh-cht": "加泰羅尼亞文",
7122 "xloc": [
7123 - "default.handlebars->31->1166"
7123 + "default.handlebars->31->1168"
7124 ]
7125 },
7126 {
@@ -7160,7 +7160,7 @@
7160 "zh-chs": "查莫罗",
7161 "zh-cht": "查莫羅",
7162 "xloc": [
7163 - "default.handlebars->31->1167"
7163 + "default.handlebars->31->1169"
7164 ]
7165 },
7166 {
@@ -7202,7 +7202,7 @@
7202 "zh-chs": "更改{0}的电邮",
7203 "zh-cht": "更改{0}的電郵",
7204 "xloc": [
7205 - "default.handlebars->31->2069"
7205 + "default.handlebars->31->2072"
7206 ]
7207 },
7208 {
@@ -7223,8 +7223,8 @@
7223 "zh-cht": "更改群",
7224 "xloc": [
7225 "default.handlebars->31->661",
7226 - "default.handlebars->31->830",
7227 - "default.handlebars->31->831"
7226 + "default.handlebars->31->832",
7227 + "default.handlebars->31->833"
7228 ]
7229 },
7230 {
@@ -7245,8 +7245,8 @@
7245 "zh-cht": "更改密碼",
7246 "xloc": [
7247 "default-mobile.handlebars->11->101",
7248 - "default.handlebars->31->1362",
7249 - "default.handlebars->31->2056"
7248 + "default.handlebars->31->1364",
7249 + "default.handlebars->31->2059"
7250 ]
7251 },
7252 {
@@ -7266,7 +7266,7 @@
7266 "zh-chs": "更改{0}的密码",
7267 "zh-cht": "更改{0}的密碼",
7268 "xloc": [
7269 - "default.handlebars->31->2076"
7269 + "default.handlebars->31->2079"
7270 ]
7271 },
7272 {
@@ -7286,7 +7286,7 @@
7286 "zh-chs": "更改{0}的真实名称",
7287 "zh-cht": "更改{0}的真實名稱",
7288 "xloc": [
7289 - "default.handlebars->31->2064"
7289 + "default.handlebars->31->2067"
7290 ]
7291 },
7292 {
@@ -7368,7 +7368,7 @@
7368 "zh-chs": "更改该用户的密码",
7369 "zh-cht": "更改該用戶的密碼",
7370 "xloc": [
7371 - "default.handlebars->31->2055"
7371 + "default.handlebars->31->2058"
7372 ]
7373 },
7374 {
@@ -7408,7 +7408,7 @@
7408 "zh-chs": "在此处更改您的帐户电邮地址。",
7409 "zh-cht": "在此處更改你的帳戶電郵地址。",
7410 "xloc": [
7411 - "default.handlebars->31->1349"
7411 + "default.handlebars->31->1351"
7412 ]
7413 },
7414 {
@@ -7428,7 +7428,7 @@
7428 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7429 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7430 "xloc": [
7431 - "default.handlebars->31->1355"
7431 + "default.handlebars->31->1357"
7432 ]
7433 },
7434 {
@@ -7448,7 +7448,7 @@
7448 "zh-chs": "更改帐户凭据",
7449 "zh-cht": "帳戶憑證已更改",
7450 "xloc": [
7451 - "default.handlebars->31->1748"
7451 + "default.handlebars->31->1751"
7452 ]
7453 },
7454 {
@@ -7468,7 +7468,7 @@
7468 "zh-chs": "{1}组中的设备{0}已更改:{2}",
7469 "zh-cht": "{1}組中的設備{0}已更改:{2}",
7470 "xloc": [
7471 - "default.handlebars->31->1732"
7471 + "default.handlebars->31->1735"
7472 ]
7473 },
7474 {
@@ -7488,7 +7488,7 @@
7488 "zh-chs": "语言从{1}更改为{2}",
7489 "zh-cht": "語言從{1}更改為{2}",
7490 "xloc": [
7491 - "default.handlebars->31->1676"
7491 + "default.handlebars->31->1679"
7492 ]
7493 },
7494 {
@@ -7508,8 +7508,8 @@
7508 "zh-chs": "已更改{0}的用户设备权限",
7509 "zh-cht": "已更改{0}的用戶設備權限",
7510 "xloc": [
7511 - "default.handlebars->31->1734",
7512 - "default.handlebars->31->1755"
7511 + "default.handlebars->31->1737",
7512 + "default.handlebars->31->1758"
7513 ]
7514 },
7515 {
@@ -7529,7 +7529,7 @@
7529 "zh-chs": "更改语言将需要刷新页面。",
7530 "zh-cht": "更改語言將需要刷新頁面。",
7531 "xloc": [
7532 - "default.handlebars->31->1334"
7532 + "default.handlebars->31->1336"
7533 ]
7534 },
7535 {
@@ -7549,11 +7549,11 @@
7549 "zh-chs": "聊天",
7550 "zh-cht": "聊天",
7551 "xloc": [
7552 - "default.handlebars->31->1813",
7553 - "default.handlebars->31->2051",
7554 - "default.handlebars->31->2052",
7555 - "default.handlebars->31->726",
7556 - "default.handlebars->31->747"
7552 + "default.handlebars->31->1816",
7553 + "default.handlebars->31->2054",
7554 + "default.handlebars->31->2055",
7555 + "default.handlebars->31->727",
7556 + "default.handlebars->31->749"
7557 ]
7558 },
7559 {
@@ -7575,8 +7575,8 @@
7575 "xloc": [
7576 "default-mobile.handlebars->11->504",
7577 "default-mobile.handlebars->11->524",
7578 - "default.handlebars->31->1546",
7579 - "default.handlebars->31->1582"
7578 + "default.handlebars->31->1549",
7579 + "default.handlebars->31->1585"
7580 ]
7581 },
7582 {
@@ -7585,7 +7585,7 @@
7585 "fr": "Demande de chat, cliquez ici pour accepter.",
7586 "xloc": [
7587 "default-mobile.handlebars->11->556",
7588 - "default.handlebars->31->2166"
7588 + "default.handlebars->31->2169"
7589 ]
7590 },
7591 {
@@ -7625,7 +7625,7 @@
7625 "zh-chs": "车臣",
7626 "zh-cht": "車臣",
7627 "xloc": [
7628 - "default.handlebars->31->1168"
7628 + "default.handlebars->31->1170"
7629 ]
7630 },
7631 {
@@ -7725,8 +7725,8 @@
7725 "zh-chs": "检查...",
7726 "zh-cht": "檢查...",
7727 "xloc": [
7728 - "default.handlebars->31->1134",
7729 - "default.handlebars->31->2263"
7728 + "default.handlebars->31->1136",
7729 + "default.handlebars->31->2266"
7730 ]
7731 },
7732 {
@@ -7746,7 +7746,7 @@
7746 "zh-chs": "中文",
7747 "zh-cht": "中文",
7748 "xloc": [
7749 - "default.handlebars->31->1169"
7749 + "default.handlebars->31->1171"
7750 ]
7751 },
7752 {
@@ -7766,7 +7766,7 @@
7766 "zh-chs": "中文(香港)",
7767 "zh-cht": "中文(香港)",
7768 "xloc": [
7769 - "default.handlebars->31->1170"
7769 + "default.handlebars->31->1172"
7770 ]
7771 },
7772 {
@@ -7786,7 +7786,7 @@
7786 "zh-chs": "中文(中国)",
7787 "zh-cht": "中文(中國)",
7788 "xloc": [
7789 - "default.handlebars->31->1171"
7789 + "default.handlebars->31->1173"
7790 ]
7791 },
7792 {
@@ -7806,7 +7806,7 @@
7806 "zh-chs": "简体中文",
7807 "zh-cht": "簡體中文",
7808 "xloc": [
7809 - "default.handlebars->31->1331"
7809 + "default.handlebars->31->1333"
7810 ]
7811 },
7812 {
@@ -7826,7 +7826,7 @@
7826 "zh-chs": "中文(新加坡)",
7827 "zh-cht": "中文(新加坡)",
7828 "xloc": [
7829 - "default.handlebars->31->1172"
7829 + "default.handlebars->31->1174"
7830 ]
7831 },
7832 {
@@ -7846,7 +7846,7 @@
7846 "zh-chs": "中文(台湾)",
7847 "zh-cht": "中文(台灣)",
7848 "xloc": [
7849 - "default.handlebars->31->1173"
7849 + "default.handlebars->31->1175"
7850 ]
7851 },
7852 {
@@ -7866,7 +7866,7 @@
7866 "zh-chs": "繁体中文",
7867 "zh-cht": "繁體中文",
7868 "xloc": [
7869 - "default.handlebars->31->1332"
7869 + "default.handlebars->31->1334"
7870 ]
7871 },
7872 {
@@ -7907,7 +7907,7 @@
7907 "zh-chs": "楚瓦什",
7908 "zh-cht": "楚瓦什",
7909 "xloc": [
7910 - "default.handlebars->31->1174"
7910 + "default.handlebars->31->1176"
7911 ]
7912 },
7913 {
@@ -7950,8 +7950,8 @@
7950 "default-mobile.handlebars->11->372",
7951 "default-mobile.handlebars->11->374",
7952 "default-mobile.handlebars->11->70",
7953 - "default.handlebars->31->1670",
7954 - "default.handlebars->31->992",
7953 + "default.handlebars->31->1000",
7954 + "default.handlebars->31->1673",
7955 "default.handlebars->31->994",
7956 "default.handlebars->31->996",
7957 "default.handlebars->31->998",
@@ -7998,7 +7998,7 @@
7998 "zh-cht": "全部清除",
7999 "xloc": [
8000 "default-mobile.handlebars->11->539",
8001 - "default.handlebars->31->2149"
8001 + "default.handlebars->31->2152"
8002 ]
8003 },
8004 {
@@ -8039,7 +8039,7 @@
8039 "zh-chs": "清除核心",
8040 "zh-cht": "清除核心",
8041 "xloc": [
8042 - "default.handlebars->31->1105"
8042 + "default.handlebars->31->1107"
8043 ]
8044 },
8045 {
@@ -8080,7 +8080,7 @@
8080 "zh-cht": "清除此通知",
8081 "xloc": [
8082 "default-mobile.handlebars->11->538",
8083 - "default.handlebars->31->2148"
8083 + "default.handlebars->31->2151"
8084 ]
8085 },
8086 {
@@ -8140,8 +8140,8 @@
8140 "zh-chs": "单击此处编辑设备组名称",
8141 "zh-cht": "單擊此處編輯裝置群名稱",
8142 "xloc": [
8143 - "default.handlebars->31->1406",
8144 - "default.handlebars->31->1621"
8143 + "default.handlebars->31->1408",
8144 + "default.handlebars->31->1624"
8145 ]
8146 },
8147 {
@@ -8181,7 +8181,7 @@
8181 "zh-chs": "单击此处编辑用户组名称",
8182 "zh-cht": "單擊此處編輯用戶群名稱",
8183 "xloc": [
8184 - "default.handlebars->31->1930"
8184 + "default.handlebars->31->1933"
8185 ]
8186 },
8187 {
@@ -8252,7 +8252,7 @@
8252 "zh-cht": "單擊確定將驗證電郵發送到:",
8253 "xloc": [
8254 "default-mobile.handlebars->11->86",
8255 - "default.handlebars->31->1346"
8255 + "default.handlebars->31->1348"
8256 ]
8257 },
8258 {
@@ -8314,7 +8314,7 @@
8314 "zh-cht": "客戶端控制模式(CCM)",
8315 "xloc": [
8316 "default-mobile.handlebars->11->436",
8317 - "default.handlebars->31->1060"
8317 + "default.handlebars->31->1062"
8318 ]
8319 },
8320 {
@@ -8334,7 +8334,7 @@
8334 "zh-chs": "客户编号",
8335 "zh-cht": "客戶編號",
8336 "xloc": [
8337 - "default.handlebars->31->1388"
8337 + "default.handlebars->31->1390"
8338 ]
8339 },
8340 {
@@ -8354,7 +8354,7 @@
8354 "zh-chs": "客户端启动的远程访问",
8355 "zh-cht": "客戶端啟動的遠程訪問",
8356 "xloc": [
8357 - "default.handlebars->31->1484"
8357 + "default.handlebars->31->1486"
8358 ]
8359 },
8360 {
@@ -8374,7 +8374,7 @@
8374 "zh-chs": "客户机密",
8375 "zh-cht": "客戶機密",
8376 "xloc": [
8377 - "default.handlebars->31->1389"
8377 + "default.handlebars->31->1391"
8378 ]
8379 },
8380 {
@@ -8418,8 +8418,8 @@
8418 "default-mobile.handlebars->11->68",
8419 "default.handlebars->31->148",
8420 "default.handlebars->31->156",
8421 - "default.handlebars->31->938",
8422 - "default.handlebars->31->969"
8421 + "default.handlebars->31->940",
8422 + "default.handlebars->31->971"
8423 ]
8424 },
8425 {
@@ -8439,7 +8439,7 @@
8439 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
8440 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
8441 "xloc": [
8442 - "default.handlebars->31->1681"
8442 + "default.handlebars->31->1684"
8443 ]
8444 },
8445 {
@@ -8562,9 +8562,9 @@
8562 "zh-cht": "指令",
8563 "xloc": [
8564 "default-mobile.handlebars->11->526",
8565 - "default.handlebars->31->1584",
8566 - "default.handlebars->31->728",
8567 - "default.handlebars->31->749"
8565 + "default.handlebars->31->1587",
8566 + "default.handlebars->31->729",
8567 + "default.handlebars->31->751"
8568 ]
8569 },
8570 {
@@ -8584,8 +8584,8 @@
8584 "zh-chs": "通用设备组",
8585 "zh-cht": "通用裝置群",
8586 "xloc": [
8587 - "default.handlebars->31->1961",
8588 - "default.handlebars->31->2081"
8587 + "default.handlebars->31->1964",
8588 + "default.handlebars->31->2084"
8589 ]
8590 },
8591 {
@@ -8605,8 +8605,8 @@
8605 "zh-chs": "通用设备",
8606 "zh-cht": "通用裝置",
8607 "xloc": [
8608 - "default.handlebars->31->1967",
8609 - "default.handlebars->31->2093"
8608 + "default.handlebars->31->1970",
8609 + "default.handlebars->31->2096"
8610 ]
8611 },
8612 {
@@ -8626,7 +8626,7 @@
8626 "zh-chs": "压缩档案...",
8627 "zh-cht": "壓縮檔案...",
8628 "xloc": [
8629 - "default.handlebars->31->964"
8629 + "default.handlebars->31->966"
8630 ]
8631 },
8632 {
@@ -8648,14 +8648,14 @@
8648 "xloc": [
8649 "default-mobile.handlebars->11->301",
8650 "default-mobile.handlebars->11->484",
8651 - "default.handlebars->31->1495",
8652 - "default.handlebars->31->1841",
8653 - "default.handlebars->31->1920",
8654 - "default.handlebars->31->1981",
8655 - "default.handlebars->31->2079",
8651 + "default.handlebars->31->1497",
8652 + "default.handlebars->31->1844",
8653 + "default.handlebars->31->1923",
8654 + "default.handlebars->31->1984",
8655 + "default.handlebars->31->2082",
8656 "default.handlebars->31->472",
8657 - "default.handlebars->31->825",
8658 - "default.handlebars->31->834"
8657 + "default.handlebars->31->827",
8658 + "default.handlebars->31->836"
8659 ]
8660 },
8661 {
@@ -8676,7 +8676,7 @@
8676 "zh-cht": "確認將1個副本複製到此位置?",
8677 "xloc": [
8678 "default-mobile.handlebars->11->363",
8679 - "default.handlebars->31->987"
8679 + "default.handlebars->31->989"
8680 ]
8681 },
8682 {
@@ -8696,7 +8696,7 @@
8696 "zh-chs": "确认{0}个条目的复制到此位置?",
8697 "zh-cht": "確認{0}個條目的複製到此位置?",
8698 "xloc": [
8699 - "default.handlebars->31->986"
8699 + "default.handlebars->31->988"
8700 ]
8701 },
8702 {
@@ -8736,7 +8736,7 @@
8736 "zh-chs": "确认删除选定的帐户?",
8737 "zh-cht": "確認刪除所選帳戶?",
8738 "xloc": [
8739 - "default.handlebars->31->1840"
8739 + "default.handlebars->31->1843"
8740 ]
8741 },
8742 {
@@ -8776,7 +8776,7 @@
8776 "zh-chs": "确认删除选定的用户组?",
8777 "zh-cht": "確認刪除所選用戶群?",
8778 "xloc": [
8779 - "default.handlebars->31->1919"
8779 + "default.handlebars->31->1922"
8780 ]
8781 },
8782 {
@@ -8796,7 +8796,7 @@
8796 "zh-chs": "确认删除用户{0}?",
8797 "zh-cht": "確認刪除用戶{0}?",
8798 "xloc": [
8799 - "default.handlebars->31->2078"
8799 + "default.handlebars->31->2081"
8800 ]
8801 },
8802 {
@@ -8816,7 +8816,7 @@
8816 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8817 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8818 "xloc": [
8819 - "default.handlebars->31->1984"
8819 + "default.handlebars->31->1987"
8820 ]
8821 },
8822 {
@@ -8836,7 +8836,7 @@
8836 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8837 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8838 "xloc": [
8839 - "default.handlebars->31->2110"
8839 + "default.handlebars->31->2113"
8840 ]
8841 },
8842 {
@@ -8857,7 +8857,7 @@
8857 "zh-cht": "確認將1個條目移動到此位置?",
8858 "xloc": [
8859 "default-mobile.handlebars->11->365",
8860 - "default.handlebars->31->989"
8860 + "default.handlebars->31->991"
8861 ]
8862 },
8863 {
@@ -8877,7 +8877,7 @@
8877 "zh-chs": "确认将{0}个条目移到此位置?",
8878 "zh-cht": "確認將{0}個條目移到該位置?",
8879 "xloc": [
8880 - "default.handlebars->31->988"
8880 + "default.handlebars->31->990"
8881 ]
8882 },
8883 {
@@ -8917,7 +8917,7 @@
8917 "zh-chs": "确认覆盖?",
8918 "zh-cht": "確認覆蓋?",
8919 "xloc": [
8920 - "default.handlebars->31->1664"
8920 + "default.handlebars->31->1667"
8921 ]
8922 },
8923 {
@@ -8937,8 +8937,8 @@
8937 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
8938 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8939 "xloc": [
8940 - "default.handlebars->31->1974",
8941 - "default.handlebars->31->2101"
8940 + "default.handlebars->31->1977",
8941 + "default.handlebars->31->2104"
8942 ]
8943 },
8944 {
@@ -8958,8 +8958,8 @@
8958 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8959 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8960 "xloc": [
8961 - "default.handlebars->31->1976",
8962 - "default.handlebars->31->2114"
8961 + "default.handlebars->31->1979",
8962 + "default.handlebars->31->2117"
8963 ]
8964 },
8965 {
@@ -8979,7 +8979,7 @@
8979 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
8980 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8981 "xloc": [
8982 - "default.handlebars->31->2103"
8982 + "default.handlebars->31->2106"
8983 ]
8984 },
8985 {
@@ -8999,7 +8999,7 @@
8999 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9000 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9001 "xloc": [
9002 - "default.handlebars->31->2106"
9002 + "default.handlebars->31->2109"
9003 ]
9004 },
9005 {
@@ -9019,8 +9019,8 @@
9019 "zh-chs": "确认删除访问权限?",
9020 "zh-cht": "確認刪除訪問權限?",
9021 "xloc": [
9022 - "default.handlebars->31->2104",
9023 - "default.handlebars->31->2107"
9022 + "default.handlebars->31->2107",
9023 + "default.handlebars->31->2110"
9024 ]
9025 },
9026 {
@@ -9041,7 +9041,7 @@
9041 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
9042 "xloc": [
9043 "default-mobile.handlebars->11->85",
9044 - "default.handlebars->31->1124"
9044 + "default.handlebars->31->1126"
9045 ]
9046 },
9047 {
@@ -9078,7 +9078,7 @@
9078 "zh-chs": "确认删除设备共享“{0}”?",
9079 "zh-cht": "確認刪除設備共享“{0}”?",
9080 "xloc": [
9081 - "default.handlebars->31->2099"
9081 + "default.handlebars->31->2102"
9082 ]
9083 },
9084 {
@@ -9132,7 +9132,7 @@
9132 "zh-chs": "确认删除用户“ {0} ”的权限?",
9133 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
9134 "xloc": [
9135 - "default.handlebars->31->1593"
9135 + "default.handlebars->31->1596"
9136 ]
9137 },
9138 {
@@ -9152,7 +9152,7 @@
9152 "zh-chs": "确认删除用户组“ {0} ”的权限?",
9153 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9154 "xloc": [
9155 - "default.handlebars->31->1595"
9155 + "default.handlebars->31->1598"
9156 ]
9157 },
9158 {
@@ -9210,7 +9210,7 @@
9210 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9211 "xloc": [
9212 "default-mobile.handlebars->11->138",
9213 - "default.handlebars->31->1665"
9213 + "default.handlebars->31->1668"
9214 ]
9215 },
9216 {
@@ -9234,8 +9234,8 @@
9234 "default-mobile.handlebars->11->345",
9235 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9236 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9237 - "default.handlebars->31->1434",
9238 - "default.handlebars->31->959",
9237 + "default.handlebars->31->1436",
9238 + "default.handlebars->31->961",
9239 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9240 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9241 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9283,7 +9283,7 @@
9283 "zh-chs": "连接到服务器",
9284 "zh-cht": "連接到伺服器",
9285 "xloc": [
9286 - "default.handlebars->31->1488"
9286 + "default.handlebars->31->1490"
9287 ]
9288 },
9289 {
@@ -9405,7 +9405,7 @@
9405 "zh-chs": "已连接的英特尔®AMT",
9406 "zh-cht": "已連接的Intel® AMT",
9407 "xloc": [
9408 - "default.handlebars->31->2202"
9408 + "default.handlebars->31->2205"
9409 ]
9410 },
9411 {
@@ -9425,7 +9425,7 @@
9425 "zh-chs": "已连接的用户",
9426 "zh-cht": "已连接的用户",
9427 "xloc": [
9428 - "default.handlebars->31->2207"
9428 + "default.handlebars->31->2210"
9429 ]
9430 },
9431 {
@@ -9446,7 +9446,7 @@
9446 "zh-cht": "現在已連接",
9447 "xloc": [
9448 "default-mobile.handlebars->11->405",
9449 - "default.handlebars->31->1019"
9449 + "default.handlebars->31->1021"
9450 ]
9451 },
9452 {
@@ -9489,7 +9489,7 @@
9489 "default-mobile.handlebars->11->2",
9490 "default-mobile.handlebars->11->381",
9491 "default-mobile.handlebars->11->48",
9492 - "default.handlebars->31->1010",
9492 + "default.handlebars->31->1012",
9493 "default.handlebars->31->244",
9494 "default.handlebars->31->247",
9495 "default.handlebars->31->291",
@@ -9516,7 +9516,7 @@
9516 "zh-chs": "连接数量",
9517 "zh-cht": "連接數量",
9518 "xloc": [
9519 - "default.handlebars->31->2221"
9519 + "default.handlebars->31->2224"
9520 ]
9521 },
9522 {
@@ -9536,7 +9536,7 @@
9536 "zh-chs": "连接转发器",
9537 "zh-cht": "連接轉發器",
9538 "xloc": [
9539 - "default.handlebars->31->2253"
9539 + "default.handlebars->31->2256"
9540 ]
9541 },
9542 {
@@ -9597,7 +9597,7 @@
9597 "zh-cht": "連接性",
9598 "xloc": [
9599 "default-mobile.handlebars->11->266",
9600 - "default.handlebars->31->1628",
9600 + "default.handlebars->31->1631",
9601 "default.handlebars->31->235",
9602 "default.handlebars->31->646",
9603 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -9620,8 +9620,8 @@
9620 "zh-chs": "控制台",
9621 "zh-cht": "控制台",
9622 "xloc": [
9623 - "default.handlebars->31->721",
9624 - "default.handlebars->31->742",
9623 + "default.handlebars->31->722",
9624 + "default.handlebars->31->744",
9625 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
9626 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
9627 "default.handlebars->contextMenu->cxconsole"
@@ -9664,8 +9664,8 @@
9664 "zh-chs": "控制",
9665 "zh-cht": "控制",
9666 "xloc": [
9667 - "default.handlebars->31->720",
9668 - "default.handlebars->31->741",
9667 + "default.handlebars->31->721",
9668 + "default.handlebars->31->743",
9669 "messenger.handlebars->13->2"
9670 ]
9671 },
@@ -9686,7 +9686,7 @@
9686 "zh-chs": "Cookie编码器",
9687 "zh-cht": "Cookie編碼器",
9688 "xloc": [
9689 - "default.handlebars->31->2237"
9689 + "default.handlebars->31->2240"
9690 ]
9691 },
9692 {
@@ -9843,8 +9843,8 @@
9843 "zh-chs": "复制连结到剪贴板",
9844 "zh-cht": "複製連結到剪貼板",
9845 "xloc": [
9846 - "default.handlebars->31->1633",
9847 - "default.handlebars->31->1652",
9846 + "default.handlebars->31->1636",
9847 + "default.handlebars->31->1655",
9848 "default.handlebars->31->211",
9849 "default.handlebars->31->370"
9850 ]
@@ -9947,7 +9947,7 @@
9947 "zh-chs": "复制:“{0}”到“{1}”",
9948 "zh-cht": "複製:“{0}”到“{1}”",
9949 "xloc": [
9950 - "default.handlebars->31->1724"
9950 + "default.handlebars->31->1727"
9951 ]
9952 },
9953 {
@@ -10093,7 +10093,7 @@
10093 "zh-chs": "核心服务器",
10094 "zh-cht": "核心伺服器",
10095 "xloc": [
10096 - "default.handlebars->31->2236"
10096 + "default.handlebars->31->2239"
10097 ]
10098 },
10099 {
@@ -10113,7 +10113,7 @@
10113 "zh-chs": "科西嘉文",
10114 "zh-cht": "科西嘉文",
10115 "xloc": [
10116 - "default.handlebars->31->1175"
10116 + "default.handlebars->31->1177"
10117 ]
10118 },
10119 {
@@ -10133,7 +10133,7 @@
10133 "zh-chs": "创建帐号",
10134 "zh-cht": "創建帳號",
10135 "xloc": [
10136 - "default.handlebars->31->1888",
10136 + "default.handlebars->31->1891",
10137 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10138 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10139 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10176,7 +10176,7 @@
10176 "zh-chs": "创建用户组",
10177 "zh-cht": "創建用戶群",
10178 "xloc": [
10179 - "default.handlebars->31->1927"
10179 + "default.handlebars->31->1930"
10180 ]
10181 },
10182 {
@@ -10216,7 +10216,7 @@
10216 "zh-chs": "使用以下选项创建一个新的设备组。",
10217 "zh-cht": "使用以下選項創建一個新的裝置群。",
10218 "xloc": [
10219 - "default.handlebars->31->1369"
10219 + "default.handlebars->31->1371"
10220 ]
10221 },
10222 {
@@ -10276,7 +10276,7 @@
10276 "zh-chs": "创建文件夹:“{0}”",
10277 "zh-cht": "創建文件夾:“{0}”",
10278 "xloc": [
10279 - "default.handlebars->31->1717"
10279 + "default.handlebars->31->1720"
10280 ]
10281 },
10282 {
@@ -10296,7 +10296,7 @@
10296 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10297 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10298 "xloc": [
10299 - "default.handlebars->31->1852"
10299 + "default.handlebars->31->1855"
10300 ]
10301 },
10302 {
@@ -10338,7 +10338,7 @@
10338 "zh-chs": "创建的设备组:{0}",
10339 "zh-cht": "創建的設備組:{0}",
10340 "xloc": [
10341 - "default.handlebars->31->1728"
10341 + "default.handlebars->31->1731"
10342 ]
10343 },
10344 {
@@ -10358,7 +10358,7 @@
10358 "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
10359 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
10360 "xloc": [
10361 - "default.handlebars->31->760"
10361 + "default.handlebars->31->762"
10362 ]
10363 },
10364 {
@@ -10412,7 +10412,7 @@
10412 "zh-chs": "创建",
10413 "zh-cht": "創建",
10414 "xloc": [
10415 - "default.handlebars->31->2013"
10415 + "default.handlebars->31->2016"
10416 ]
10417 },
10418 {
@@ -10432,7 +10432,7 @@
10432 "zh-chs": "创建时间",
10433 "zh-cht": "創作時間",
10434 "xloc": [
10435 - "default.handlebars->31->1416"
10435 + "default.handlebars->31->1418"
10436 ]
10437 },
10438 {
@@ -10474,8 +10474,8 @@
10474 "zh-chs": "创建者",
10475 "zh-cht": "創作者",
10476 "xloc": [
10477 - "default.handlebars->31->1414",
10478 - "default.handlebars->31->1415"
10477 + "default.handlebars->31->1416",
10478 + "default.handlebars->31->1417"
10479 ]
10480 },
10481 {
@@ -10495,7 +10495,7 @@
10495 "zh-chs": "证书",
10496 "zh-cht": "證書",
10497 "xloc": [
10498 - "default.handlebars->31->1386"
10498 + "default.handlebars->31->1388"
10499 ]
10500 },
10501 {
@@ -10515,7 +10515,7 @@
10515 "zh-chs": "克里语",
10516 "zh-cht": "克里語",
10517 "xloc": [
10518 - "default.handlebars->31->1176"
10518 + "default.handlebars->31->1178"
10519 ]
10520 },
10521 {
@@ -10535,7 +10535,7 @@
10535 "zh-chs": "克罗地亚文",
10536 "zh-cht": "克羅地亞文",
10537 "xloc": [
10538 - "default.handlebars->31->1177"
10538 + "default.handlebars->31->1179"
10539 ]
10540 },
10541 {
@@ -10600,8 +10600,8 @@
10600 "default-mobile.handlebars->11->334",
10601 "default-mobile.handlebars->11->338",
10602 "default.handlebars->31->57",
10603 - "default.handlebars->31->914",
10604 - "default.handlebars->31->918",
10603 + "default.handlebars->31->916",
10604 + "default.handlebars->31->920",
10605 "terminal.handlebars->3->6"
10606 ]
10607 },
@@ -10710,7 +10710,7 @@
10710 "fr": "Le mot de passe actuel n'est pas correct.",
10711 "xloc": [
10712 "default-mobile.handlebars->11->566",
10713 - "default.handlebars->31->2176"
10713 + "default.handlebars->31->2179"
10714 ]
10715 },
10716 {
@@ -10769,7 +10769,7 @@
10769 "zh-chs": "捷克文",
10770 "zh-cht": "捷克文",
10771 "xloc": [
10772 - "default.handlebars->31->1178"
10772 + "default.handlebars->31->1180"
10773 ]
10774 },
10775 {
@@ -10809,7 +10809,7 @@
10809 "zh-chs": "丹麦文",
10810 "zh-cht": "丹麥文",
10811 "xloc": [
10812 - "default.handlebars->31->1179"
10812 + "default.handlebars->31->1181"
10813 ]
10814 },
10815 {
@@ -10829,7 +10829,7 @@
10829 "zh-chs": "数据通道",
10830 "zh-cht": "數據通道",
10831 "xloc": [
10832 - "default.handlebars->31->882",
10832 + "default.handlebars->31->884",
10833 "desktop.handlebars->3->11"
10834 ]
10835 },
@@ -10850,7 +10850,7 @@
10850 "zh-chs": "日期和时间",
10851 "zh-cht": "日期和時間",
10852 "xloc": [
10853 - "default.handlebars->31->1337"
10853 + "default.handlebars->31->1339"
10854 ]
10855 },
10856 {
@@ -10871,7 +10871,7 @@
10871 "zh-cht": "天",
10872 "xloc": [
10873 "default-mobile.handlebars->11->291",
10874 - "default.handlebars->31->809"
10874 + "default.handlebars->31->811"
10875 ]
10876 },
10877 {
@@ -10891,7 +10891,7 @@
10891 "zh-chs": "停用",
10892 "zh-cht": "停用",
10893 "xloc": [
10894 - "default.handlebars->31->1467"
10894 + "default.handlebars->31->1469"
10895 ]
10896 },
10897 {
@@ -10911,7 +10911,7 @@
10911 "zh-chs": "如果设置停用CCM",
10912 "zh-cht": "如果設置停用CCM",
10913 "xloc": [
10914 - "default.handlebars->31->1479"
10914 + "default.handlebars->31->1481"
10915 ]
10916 },
10917 {
@@ -10969,10 +10969,10 @@
10969 "zh-chs": "默认",
10970 "zh-cht": "默認",
10971 "xloc": [
10972 - "default.handlebars->31->1875",
10973 - "default.handlebars->31->1923",
10974 - "default.handlebars->31->1934",
10975 - "default.handlebars->31->2002"
10972 + "default.handlebars->31->1878",
10973 + "default.handlebars->31->1926",
10974 + "default.handlebars->31->1937",
10975 + "default.handlebars->31->2005"
10976 ]
10977 },
10978 {
@@ -10981,7 +10981,7 @@
10981 "nl": "Del",
10982 "xloc": [
10983 "default-mobile.handlebars->11->322",
10984 - "default.handlebars->31->902"
10984 + "default.handlebars->31->904"
10985 ]
10986 },
10987 {
@@ -11005,9 +11005,9 @@
11005 "default-mobile.handlebars->11->355",
11006 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11007 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11008 - "default.handlebars->31->1659",
11008 + "default.handlebars->31->1662",
11009 "default.handlebars->31->535",
11010 - "default.handlebars->31->978",
11010 + "default.handlebars->31->980",
11011 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11012 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
11013 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -11036,7 +11036,7 @@
11036 "zh-cht": "刪除帳戶",
11037 "xloc": [
11038 "default-mobile.handlebars->11->95",
11039 - "default.handlebars->31->1354"
11039 + "default.handlebars->31->1356"
11040 ]
11041 },
11042 {
@@ -11056,7 +11056,7 @@
11056 "zh-chs": "删除帐户",
11057 "zh-cht": "刪除帳戶",
11058 "xloc": [
11059 - "default.handlebars->31->1842"
11059 + "default.handlebars->31->1845"
11060 ]
11061 },
11062 {
@@ -11099,8 +11099,8 @@
11099 "xloc": [
11100 "default-mobile.handlebars->11->482",
11101 "default-mobile.handlebars->11->485",
11102 - "default.handlebars->31->1463",
11103 - "default.handlebars->31->1496"
11102 + "default.handlebars->31->1465",
11103 + "default.handlebars->31->1498"
11104 ]
11105 },
11106 {
@@ -11121,7 +11121,7 @@
11121 "zh-cht": "刪除節點",
11122 "xloc": [
11123 "default-mobile.handlebars->11->299",
11124 - "default.handlebars->31->835"
11124 + "default.handlebars->31->837"
11125 ]
11126 },
11127 {
@@ -11161,7 +11161,7 @@
11161 "zh-chs": "删除用户",
11162 "zh-cht": "刪除用戶",
11163 "xloc": [
11164 - "default.handlebars->31->2054"
11164 + "default.handlebars->31->2057"
11165 ]
11166 },
11167 {
@@ -11181,8 +11181,8 @@
11181 "zh-chs": "删除用户群组",
11182 "zh-cht": "刪除用戶群組",
11183 "xloc": [
11184 - "default.handlebars->31->1972",
11185 - "default.handlebars->31->1982"
11184 + "default.handlebars->31->1975",
11185 + "default.handlebars->31->1985"
11186 ]
11187 },
11188 {
@@ -11202,7 +11202,7 @@
11202 "zh-chs": "删除用户群组",
11203 "zh-cht": "刪除用戶群組",
11204 "xloc": [
11205 - "default.handlebars->31->1921"
11205 + "default.handlebars->31->1924"
11206 ]
11207 },
11208 {
@@ -11222,7 +11222,7 @@
11222 "zh-chs": "删除用户{0}",
11223 "zh-cht": "刪除用戶{0}",
11224 "xloc": [
11225 - "default.handlebars->31->2077"
11225 + "default.handlebars->31->2080"
11226 ]
11227 },
11228 {
@@ -11243,7 +11243,7 @@
11243 "zh-cht": "刪除帳戶",
11244 "xloc": [
11245 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11246 - "default.handlebars->31->1838",
11246 + "default.handlebars->31->1841",
11247 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11248 ]
11249 },
@@ -11284,7 +11284,7 @@
11284 "zh-chs": "删除群组",
11285 "zh-cht": "刪除群組",
11286 "xloc": [
11287 - "default.handlebars->31->1917"
11287 + "default.handlebars->31->1920"
11288 ]
11289 },
11290 {
@@ -11324,7 +11324,7 @@
11324 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11325 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11326 "xloc": [
11327 - "default.handlebars->31->1719"
11327 + "default.handlebars->31->1722"
11328 ]
11329 },
11330 {
@@ -11346,8 +11346,8 @@
11346 "xloc": [
11347 "default-mobile.handlebars->11->135",
11348 "default-mobile.handlebars->11->357",
11349 - "default.handlebars->31->1661",
11350 - "default.handlebars->31->980"
11349 + "default.handlebars->31->1664",
11350 + "default.handlebars->31->982"
11351 ]
11352 },
11353 {
@@ -11367,7 +11367,7 @@
11367 "zh-chs": "删除用户群组{0}?",
11368 "zh-cht": "刪除用戶群組{0}?",
11369 "xloc": [
11370 - "default.handlebars->31->1980"
11370 + "default.handlebars->31->1983"
11371 ]
11372 },
11373 {
@@ -11389,8 +11389,8 @@
11389 "xloc": [
11390 "default-mobile.handlebars->11->134",
11391 "default-mobile.handlebars->11->356",
11392 - "default.handlebars->31->1660",
11393 - "default.handlebars->31->979"
11392 + "default.handlebars->31->1663",
11393 + "default.handlebars->31->981"
11394 ]
11395 },
11396 {
@@ -11430,7 +11430,7 @@
11430 "zh-chs": "删除:“{0}”",
11431 "zh-cht": "刪除:“{0}”",
11432 "xloc": [
11433 - "default.handlebars->31->1718"
11433 + "default.handlebars->31->1721"
11434 ]
11435 },
11436 {
@@ -11450,7 +11450,7 @@
11450 "zh-chs": "删除:“{0}”,{1}个元素已删除",
11451 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11452 "xloc": [
11453 - "default.handlebars->31->1720"
11453 + "default.handlebars->31->1723"
11454 ]
11455 },
11456 {
@@ -11471,7 +11471,7 @@
11471 "zh-cht": "被拒絕",
11472 "xloc": [
11473 "default-mobile.handlebars->11->310",
11474 - "default.handlebars->31->878",
11474 + "default.handlebars->31->880",
11475 "desktop.handlebars->3->7",
11476 "terminal.handlebars->3->11"
11477 ]
@@ -11569,18 +11569,18 @@
11569 "default-mobile.handlebars->11->417",
11570 "default-mobile.handlebars->11->474",
11571 "default-mobile.handlebars->11->487",
11572 - "default.handlebars->31->1031",
11573 - "default.handlebars->31->1041",
11574 - "default.handlebars->31->1374",
11575 - "default.handlebars->31->1411",
11576 - "default.handlebars->31->1498",
11577 - "default.handlebars->31->1926",
11578 - "default.handlebars->31->1936",
11579 - "default.handlebars->31->1937",
11580 - "default.handlebars->31->1978",
11572 + "default.handlebars->31->1033",
11573 + "default.handlebars->31->1043",
11574 + "default.handlebars->31->1376",
11575 + "default.handlebars->31->1413",
11576 + "default.handlebars->31->1500",
11577 + "default.handlebars->31->1929",
11578 + "default.handlebars->31->1939",
11579 + "default.handlebars->31->1940",
11580 + "default.handlebars->31->1981",
11581 "default.handlebars->31->576",
11582 "default.handlebars->31->577",
11583 - "default.handlebars->31->873",
11583 + "default.handlebars->31->875",
11584 "default.handlebars->31->88",
11585 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
11586 ]
@@ -11620,12 +11620,12 @@
11620 "zh-cht": "桌面",
11621 "xloc": [
11622 "default-mobile.handlebars->11->278",
11623 - "default.handlebars->31->1504",
11624 - "default.handlebars->31->2126",
11623 + "default.handlebars->31->1506",
11624 + "default.handlebars->31->2129",
11625 "default.handlebars->31->541",
11626 "default.handlebars->31->708",
11627 - "default.handlebars->31->763",
11628 - "default.handlebars->31->944",
11627 + "default.handlebars->31->764",
11628 + "default.handlebars->31->946",
11629 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11630 "default.handlebars->contextMenu->cxdesktop",
11631 "desktop.handlebars->3->23"
@@ -11668,9 +11668,9 @@
11668 "zh-chs": "桌面通知",
11669 "zh-cht": "桌面通知",
11670 "xloc": [
11671 - "default.handlebars->31->1425",
11672 - "default.handlebars->31->1941",
11673 - "default.handlebars->31->2028",
11671 + "default.handlebars->31->1427",
11672 + "default.handlebars->31->1944",
11673 + "default.handlebars->31->2031",
11674 "default.handlebars->31->627"
11675 ]
11676 },
@@ -11691,9 +11691,9 @@
11691 "zh-chs": "桌面提示",
11692 "zh-cht": "桌面提示",
11693 "xloc": [
11694 - "default.handlebars->31->1424",
11695 - "default.handlebars->31->1940",
11696 - "default.handlebars->31->2027",
11694 + "default.handlebars->31->1426",
11695 + "default.handlebars->31->1943",
11696 + "default.handlebars->31->2030",
11697 "default.handlebars->31->626"
11698 ]
11699 },
@@ -11714,9 +11714,9 @@
11714 "zh-chs": "桌面提示+工具栏",
11715 "zh-cht": "桌面提示+工具欄",
11716 "xloc": [
11717 - "default.handlebars->31->1422",
11718 - "default.handlebars->31->1938",
11719 - "default.handlebars->31->2025",
11717 + "default.handlebars->31->1424",
11718 + "default.handlebars->31->1941",
11719 + "default.handlebars->31->2028",
11720 "default.handlebars->31->624"
11721 ]
11722 },
@@ -11779,9 +11779,9 @@
11779 "zh-chs": "桌面工具栏",
11780 "zh-cht": "桌面工具欄",
11781 "xloc": [
11782 - "default.handlebars->31->1423",
11783 - "default.handlebars->31->1939",
11784 - "default.handlebars->31->2026",
11782 + "default.handlebars->31->1425",
11783 + "default.handlebars->31->1942",
11784 + "default.handlebars->31->2029",
11785 "default.handlebars->31->625"
11786 ]
11787 },
@@ -11790,7 +11790,7 @@
11790 "nl": "Desktop, Alleen kijken",
11791 "fr": "Bureau en visualisation seulement",
11792 "xloc": [
11793 - "default.handlebars->31->764"
11793 + "default.handlebars->31->767"
11794 ]
11795 },
11796 {
@@ -11810,7 +11810,7 @@
11810 "zh-chs": "桌面时段",
11811 "zh-cht": "桌面時段",
11812 "xloc": [
11813 - "default.handlebars->31->943"
11813 + "default.handlebars->31->945"
11814 ]
11815 },
11816 {
@@ -11894,10 +11894,10 @@
11894 "zh-cht": "裝置",
11895 "xloc": [
11896 "default-mobile.handlebars->11->412",
11897 - "default.handlebars->31->1026",
11898 - "default.handlebars->31->1527",
11897 + "default.handlebars->31->1028",
11898 + "default.handlebars->31->1529",
11899 "default.handlebars->31->197",
11900 - "default.handlebars->31->2096",
11900 + "default.handlebars->31->2099",
11901 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11902 ]
11903 },
@@ -11920,7 +11920,7 @@
11920 "xloc": [
11921 "default-mobile.handlebars->11->288",
11922 "default-mobile.handlebars->11->289",
11923 - "default.handlebars->31->800"
11923 + "default.handlebars->31->802"
11924 ]
11925 },
11926 {
@@ -11962,15 +11962,15 @@
11962 "xloc": [
11963 "agent-translations.json",
11964 "default-mobile.handlebars->11->544",
11965 - "default.handlebars->31->1522",
11966 - "default.handlebars->31->1525",
11967 - "default.handlebars->31->1526",
11968 - "default.handlebars->31->1789",
11969 - "default.handlebars->31->1964",
11970 - "default.handlebars->31->1970",
11971 - "default.handlebars->31->2084",
11972 - "default.handlebars->31->2135",
11973 - "default.handlebars->31->2154"
11965 + "default.handlebars->31->1524",
11966 + "default.handlebars->31->1527",
11967 + "default.handlebars->31->1528",
11968 + "default.handlebars->31->1792",
11969 + "default.handlebars->31->1967",
11970 + "default.handlebars->31->1973",
11971 + "default.handlebars->31->2087",
11972 + "default.handlebars->31->2138",
11973 + "default.handlebars->31->2157"
11974 ]
11975 },
11976 {
@@ -11991,7 +11991,7 @@
11991 "zh-cht": "裝置群用戶",
11992 "xloc": [
11993 "default-mobile.handlebars->11->533",
11994 - "default.handlebars->31->1591"
11994 + "default.handlebars->31->1594"
11995 ]
11996 },
11997 {
@@ -12012,11 +12012,11 @@
12012 "zh-cht": "裝置群",
12013 "xloc": [
12014 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
12015 - "default.handlebars->31->1805",
12016 - "default.handlebars->31->1911",
12017 - "default.handlebars->31->1951",
12018 - "default.handlebars->31->2022",
12019 - "default.handlebars->31->2205",
12015 + "default.handlebars->31->1808",
12016 + "default.handlebars->31->1914",
12017 + "default.handlebars->31->1954",
12018 + "default.handlebars->31->2025",
12019 + "default.handlebars->31->2208",
12020 "default.handlebars->container->column_l->p2->p2info->7"
12021 ]
12022 },
@@ -12057,7 +12057,7 @@
12057 "zh-chs": "设备位置",
12058 "zh-cht": "裝置位置",
12059 "xloc": [
12060 - "default.handlebars->31->836"
12060 + "default.handlebars->31->838"
12061 ]
12062 },
12063 {
@@ -12077,7 +12077,7 @@
12077 "zh-chs": "设备消息",
12078 "zh-cht": "裝置訊息",
12079 "xloc": [
12080 - "default.handlebars->31->757"
12080 + "default.handlebars->31->759"
12081 ]
12082 },
12083 {
@@ -12098,9 +12098,9 @@
12098 "zh-cht": "裝置名稱",
12099 "xloc": [
12100 "default-mobile.handlebars->11->303",
12101 - "default.handlebars->31->2134",
12101 + "default.handlebars->31->2137",
12102 "default.handlebars->31->305",
12103 - "default.handlebars->31->871",
12103 + "default.handlebars->31->873",
12104 "player.handlebars->3->9"
12105 ]
12106 },
@@ -12122,7 +12122,7 @@
12122 "zh-cht": "裝置通知",
12123 "xloc": [
12124 "default.handlebars->31->494",
12125 - "default.handlebars->31->759"
12125 + "default.handlebars->31->761"
12126 ]
12127 },
12128 {
@@ -12199,8 +12199,8 @@
12199 "zh-chs": "设备连接。",
12200 "zh-cht": "裝置連接。",
12201 "xloc": [
12202 - "default.handlebars->31->1342",
12203 - "default.handlebars->31->1612"
12202 + "default.handlebars->31->1344",
12203 + "default.handlebars->31->1615"
12204 ]
12205 },
12206 {
@@ -12220,8 +12220,8 @@
12220 "zh-chs": "设备断开连接。",
12221 "zh-cht": "裝置斷開連接。",
12222 "xloc": [
12223 - "default.handlebars->31->1343",
12224 - "default.handlebars->31->1613"
12223 + "default.handlebars->31->1345",
12224 + "default.handlebars->31->1616"
12225 ]
12226 },
12227 {
@@ -12241,7 +12241,7 @@
12241 "zh-chs": "创建的设备组:{0}",
12242 "zh-cht": "設備組已創建:{0}",
12243 "xloc": [
12244 - "default.handlebars->31->1749"
12244 + "default.handlebars->31->1752"
12245 ]
12246 },
12247 {
@@ -12261,7 +12261,7 @@
12261 "zh-chs": "设备组已删除:{0}",
12262 "zh-cht": "設備組已刪除:{0}",
12263 "xloc": [
12264 - "default.handlebars->31->1750"
12264 + "default.handlebars->31->1753"
12265 ]
12266 },
12267 {
@@ -12281,7 +12281,7 @@
12281 "zh-chs": "设备组成员身份已更改:{0}",
12282 "zh-cht": "設備組成員身份已更改:{0}",
12283 "xloc": [
12284 - "default.handlebars->31->1751"
12284 + "default.handlebars->31->1754"
12285 ]
12286 },
12287 {
@@ -12301,7 +12301,7 @@
12301 "zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
12302 "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12303 "xloc": [
12304 - "default.handlebars->31->754"
12304 + "default.handlebars->31->756"
12305 ]
12306 },
12307 {
@@ -12321,7 +12321,7 @@
12321 "zh-chs": "设备组通知已更改",
12322 "zh-cht": "設備組通知已更改",
12323 "xloc": [
12324 - "default.handlebars->31->1746"
12324 + "default.handlebars->31->1749"
12325 ]
12326 },
12327 {
@@ -12341,7 +12341,7 @@
12341 "zh-chs": "未删除的设备组:{0}",
12342 "zh-cht": "未刪除的設備組:{0}",
12343 "xloc": [
12344 - "default.handlebars->31->1729"
12344 + "default.handlebars->31->1732"
12345 ]
12346 },
12347 {
@@ -12734,7 +12734,7 @@
12734 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12735 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12736 "xloc": [
12737 - "default.handlebars->31->1731"
12737 + "default.handlebars->31->1734"
12738 ]
12739 },
12740 {
@@ -12771,8 +12771,8 @@
12771 "zh-chs": "设备",
12772 "zh-cht": "裝置",
12773 "xloc": [
12774 - "default.handlebars->31->1912",
12775 - "default.handlebars->31->1952"
12774 + "default.handlebars->31->1915",
12775 + "default.handlebars->31->1955"
12776 ]
12777 },
12778 {
@@ -12813,7 +12813,7 @@
12813 "zh-chs": "禁用的电子邮件两因素身份验证",
12814 "zh-cht": "禁用的電子郵件兩因素身份驗證",
12815 "xloc": [
12816 - "default.handlebars->31->1762"
12816 + "default.handlebars->31->1765"
12817 ]
12818 },
12819 {
@@ -12836,8 +12836,8 @@
12836 "agent-translations.json",
12837 "default-mobile.handlebars->11->346",
12838 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12839 - "default.handlebars->31->1435",
12840 - "default.handlebars->31->960",
12839 + "default.handlebars->31->1437",
12840 + "default.handlebars->31->962",
12841 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12842 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
12843 "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -12937,7 +12937,7 @@
12937 "zh-chs": "在远程设备上显示一个消息框。",
12938 "zh-cht": "在遠程裝置上顯示一個訊息框。",
12939 "xloc": [
12940 - "default.handlebars->31->758"
12940 + "default.handlebars->31->760"
12941 ]
12942 },
12943 {
@@ -12997,7 +12997,7 @@
12997 "zh-chs": "显示设备组名称",
12998 "zh-cht": "顯示裝置群名稱",
12999 "xloc": [
13000 - "default.handlebars->31->1341"
13000 + "default.handlebars->31->1343"
13001 ]
13002 },
13003 {
@@ -13017,7 +13017,7 @@
13017 "zh-chs": "显示名称",
13018 "zh-cht": "顯示名稱",
13019 "xloc": [
13020 - "default.handlebars->31->929"
13020 + "default.handlebars->31->931"
13021 ]
13022 },
13023 {
@@ -13037,7 +13037,7 @@
13037 "zh-chs": "显示公共连结",
13038 "zh-cht": "顯示公共鏈結",
13039 "xloc": [
13040 - "default.handlebars->31->1632"
13040 + "default.handlebars->31->1635"
13041 ]
13042 },
13043 {
@@ -13057,7 +13057,7 @@
13057 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13058 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13059 "xloc": [
13060 - "default.handlebars->31->1691"
13060 + "default.handlebars->31->1694"
13061 ]
13062 },
13063 {
@@ -13077,7 +13077,7 @@
13077 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13078 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13079 "xloc": [
13080 - "default.handlebars->31->1699"
13080 + "default.handlebars->31->1702"
13081 ]
13082 },
13083 {
@@ -13097,8 +13097,8 @@
13097 "zh-chs": "什么都不做",
13098 "zh-cht": "什麼都不做",
13099 "xloc": [
13100 - "default.handlebars->31->1482",
13101 - "default.handlebars->31->1486"
13100 + "default.handlebars->31->1484",
13101 + "default.handlebars->31->1488"
13102 ]
13103 },
13104 {
@@ -13118,10 +13118,10 @@
13118 "zh-chs": "域",
13119 "zh-cht": "域",
13120 "xloc": [
13121 - "default.handlebars->31->1876",
13122 - "default.handlebars->31->1924",
13123 - "default.handlebars->31->1933",
13124 - "default.handlebars->31->2001",
13121 + "default.handlebars->31->1879",
13122 + "default.handlebars->31->1927",
13123 + "default.handlebars->31->1936",
13124 + "default.handlebars->31->2004",
13125 "mstsc.handlebars->main->1->3->1->2->1->0",
13126 "mstsc.handlebars->main->1->3->1->2->3"
13127 ]
@@ -13143,7 +13143,7 @@
13143 "zh-chs": "请勿更改,如果设置请保留CCM",
13144 "zh-cht": "請勿更改,如果設置請保留CCM",
13145 "xloc": [
13146 - "default.handlebars->31->1478"
13146 + "default.handlebars->31->1480"
13147 ]
13148 },
13149 {
@@ -13180,7 +13180,7 @@
13180 "zh-chs": "不要连接到服务器",
13181 "zh-cht": "不要連接到伺服器",
13182 "xloc": [
13183 - "default.handlebars->31->1487"
13183 + "default.handlebars->31->1489"
13184 ]
13185 },
13186 {
@@ -13245,7 +13245,7 @@
13245 "nl": "Omlaag",
13246 "xloc": [
13247 "default-mobile.handlebars->11->330",
13248 - "default.handlebars->31->910"
13248 + "default.handlebars->31->912"
13249 ]
13250 },
13251 {
@@ -13309,7 +13309,7 @@
13309 "zh-cht": "下載檔案",
13310 "xloc": [
13311 "default-mobile.handlebars->11->376",
13312 - "default.handlebars->31->999"
13312 + "default.handlebars->31->1001"
13313 ]
13314 },
13315 {
@@ -13349,7 +13349,7 @@
13349 "zh-chs": "下载MeshCmd",
13350 "zh-cht": "下載MeshCmd",
13351 "xloc": [
13352 - "default.handlebars->31->861"
13352 + "default.handlebars->31->863"
13353 ]
13354 },
13355 {
@@ -13409,7 +13409,7 @@
13409 "zh-chs": "下载报告",
13410 "zh-cht": "下載報告",
13411 "xloc": [
13412 - "default.handlebars->31->1794",
13412 + "default.handlebars->31->1797",
13413 "default.handlebars->container->column_l->p3->3->1->0->3"
13414 ]
13415 },
@@ -13430,7 +13430,7 @@
13430 "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
13431 "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
13432 "xloc": [
13433 - "default.handlebars->31->854"
13433 + "default.handlebars->31->856"
13434 ]
13435 },
13436 {
@@ -13510,7 +13510,7 @@
13510 "zh-chs": "下载电源事件",
13511 "zh-cht": "下載電源事件",
13512 "xloc": [
13513 - "default.handlebars->31->810"
13513 + "default.handlebars->31->812"
13514 ]
13515 },
13516 {
@@ -13610,7 +13610,7 @@
13610 "zh-chs": "使用以下一种档案格式下载事件列表。",
13611 "zh-cht": "使用以下一種檔案格式下載事件列表。",
13612 "xloc": [
13613 - "default.handlebars->31->1795"
13613 + "default.handlebars->31->1798"
13614 ]
13615 },
13616 {
@@ -13630,7 +13630,7 @@
13630 "zh-chs": "使用以下一种档案格式下载用户列表。",
13631 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
13632 "xloc": [
13633 - "default.handlebars->31->1860"
13633 + "default.handlebars->31->1863"
13634 ]
13635 },
13636 {
@@ -13711,14 +13711,14 @@
13711 "zh-chs": "下载:“{0}”",
13712 "zh-cht": "下載:“{0}”",
13713 "xloc": [
13714 - "default.handlebars->31->1722"
13714 + "default.handlebars->31->1725"
13715 ]
13716 },
13717 {
13718 "en": "Download: \\\"{0}\\\", Size: {1}",
13719 "fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
13720 "xloc": [
13721 - "default.handlebars->31->1779"
13721 + "default.handlebars->31->1782"
13722 ]
13723 },
13724 {
@@ -13758,7 +13758,7 @@
13758 "zh-chs": "代理重复",
13759 "zh-cht": "代理重複",
13760 "xloc": [
13761 - "default.handlebars->31->2201"
13761 + "default.handlebars->31->2204"
13762 ]
13763 },
13764 {
@@ -13798,7 +13798,7 @@
13798 "zh-chs": "复制用户组",
13799 "zh-cht": "複製用戶群",
13800 "xloc": [
13801 - "default.handlebars->31->1928"
13801 + "default.handlebars->31->1931"
13802 ]
13803 },
13804 {
@@ -13835,8 +13835,8 @@
13835 "zh-chs": "持续时间",
13836 "zh-cht": "持續時間",
13837 "xloc": [
13838 - "default.handlebars->31->2120",
13839 - "default.handlebars->31->2140",
13838 + "default.handlebars->31->2123",
13839 + "default.handlebars->31->2143",
13840 "player.handlebars->3->2"
13841 ]
13842 },
@@ -13874,7 +13874,7 @@
13874 "zh-chs": "荷兰文(比利时)",
13875 "zh-cht": "荷蘭文(比利時)",
13876 "xloc": [
13877 - "default.handlebars->31->1181"
13877 + "default.handlebars->31->1183"
13878 ]
13879 },
13880 {
@@ -13894,7 +13894,7 @@
13894 "zh-chs": "荷兰文(标准)",
13895 "zh-cht": "荷蘭文(標準)",
13896 "xloc": [
13897 - "default.handlebars->31->1180"
13897 + "default.handlebars->31->1182"
13898 ]
13899 },
13900 {
@@ -14183,7 +14183,7 @@
14183 "zh-cht": "編輯裝置",
14184 "xloc": [
14185 "default-mobile.handlebars->11->308",
14186 - "default.handlebars->31->876"
14186 + "default.handlebars->31->878"
14187 ]
14188 },
14189 {
@@ -14206,10 +14206,10 @@
14206 "default-mobile.handlebars->11->488",
14207 "default-mobile.handlebars->11->490",
14208 "default-mobile.handlebars->11->510",
14209 - "default.handlebars->31->1499",
14210 - "default.handlebars->31->1531",
14211 - "default.handlebars->31->1555",
14212 - "default.handlebars->31->1567"
14209 + "default.handlebars->31->1501",
14210 + "default.handlebars->31->1533",
14211 + "default.handlebars->31->1558",
14212 + "default.handlebars->31->1570"
14213 ]
14214 },
14215 {
@@ -14229,7 +14229,7 @@
14229 "zh-chs": "编辑设备组功能",
14230 "zh-cht": "編輯裝置群功能",
14231 "xloc": [
14232 - "default.handlebars->31->1517"
14232 + "default.handlebars->31->1519"
14233 ]
14234 },
14235 {
@@ -14249,8 +14249,8 @@
14249 "zh-chs": "编辑设备组权限",
14250 "zh-cht": "編輯裝置群權限",
14251 "xloc": [
14252 - "default.handlebars->31->1552",
14253 - "default.handlebars->31->1564"
14252 + "default.handlebars->31->1555",
14253 + "default.handlebars->31->1567"
14254 ]
14255 },
14256 {
@@ -14270,7 +14270,7 @@
14270 "zh-chs": "编辑设备组用户同意",
14271 "zh-cht": "編輯裝置群用戶同意",
14272 "xloc": [
14273 - "default.handlebars->31->1500"
14273 + "default.handlebars->31->1502"
14274 ]
14275 },
14276 {
@@ -14291,7 +14291,7 @@
14291 "zh-cht": "編輯裝置筆記",
14292 "xloc": [
14293 "default-mobile.handlebars->11->502",
14294 - "default.handlebars->31->1544"
14294 + "default.handlebars->31->1547"
14295 ]
14296 },
14297 {
@@ -14311,8 +14311,8 @@
14311 "zh-chs": "编辑设备权限",
14312 "zh-cht": "編輯裝置權限",
14313 "xloc": [
14314 - "default.handlebars->31->1557",
14315 - "default.handlebars->31->1559"
14314 + "default.handlebars->31->1560",
14315 + "default.handlebars->31->1562"
14316 ]
14317 },
14318 {
@@ -14352,7 +14352,7 @@
14352 "zh-chs": "编辑设备用户同意",
14353 "zh-cht": "編輯裝置用戶同意",
14354 "xloc": [
14355 - "default.handlebars->31->1502"
14355 + "default.handlebars->31->1504"
14356 ]
14357 },
14358 {
@@ -14372,7 +14372,7 @@
14372 "zh-chs": "编辑群组",
14373 "zh-cht": "編輯群組",
14374 "xloc": [
14375 - "default.handlebars->31->732"
14375 + "default.handlebars->31->733"
14376 ]
14377 },
14378 {
@@ -14399,7 +14399,7 @@
14399 "default.handlebars->31->591",
14400 "default.handlebars->31->594",
14401 "default.handlebars->31->597",
14402 - "default.handlebars->31->817"
14402 + "default.handlebars->31->819"
14403 ]
14404 },
14405 {
@@ -14420,7 +14420,7 @@
14420 "zh-cht": "編輯筆記",
14421 "xloc": [
14422 "default-mobile.handlebars->11->517",
14423 - "default.handlebars->31->1574"
14423 + "default.handlebars->31->1577"
14424 ]
14425 },
14426 {
@@ -14440,7 +14440,7 @@
14440 "zh-chs": "编辑用户同意",
14441 "zh-cht": "編輯用戶同意",
14442 "xloc": [
14443 - "default.handlebars->31->1501"
14443 + "default.handlebars->31->1503"
14444 ]
14445 },
14446 {
@@ -14460,7 +14460,7 @@
14460 "zh-chs": "编辑用户设备组权限",
14461 "zh-cht": "編輯用戶裝置群權限",
14462 "xloc": [
14463 - "default.handlebars->31->1565"
14463 + "default.handlebars->31->1568"
14464 ]
14465 },
14466 {
@@ -14480,7 +14480,7 @@
14480 "zh-chs": "编辑用户设备权限",
14481 "zh-cht": "編輯用戶裝置權限",
14482 "xloc": [
14483 - "default.handlebars->31->1560"
14483 + "default.handlebars->31->1563"
14484 ]
14485 },
14486 {
@@ -14500,7 +14500,7 @@
14500 "zh-chs": "编辑用户组",
14501 "zh-cht": "編輯用戶群",
14502 "xloc": [
14503 - "default.handlebars->31->1979"
14503 + "default.handlebars->31->1982"
14504 ]
14505 },
14506 {
@@ -14520,7 +14520,7 @@
14520 "zh-chs": "编辑用户组设备权限",
14521 "zh-cht": "編輯用戶群裝置權限",
14522 "xloc": [
14523 - "default.handlebars->31->1562"
14523 + "default.handlebars->31->1565"
14524 ]
14525 },
14526 {
@@ -14540,7 +14540,7 @@
14540 "zh-chs": "编辑用户组用户同意",
14541 "zh-cht": "編輯用戶組用戶同意",
14542 "xloc": [
14543 - "default.handlebars->31->1503"
14543 + "default.handlebars->31->1505"
14544 ]
14545 },
14546 {
@@ -14622,11 +14622,11 @@
14622 "zh-cht": "電郵",
14623 "xloc": [
14624 "default-mobile.handlebars->11->89",
14625 - "default.handlebars->31->1878",
14626 - "default.handlebars->31->2005",
14627 - "default.handlebars->31->2007",
14628 - "default.handlebars->31->2047",
14629 - "default.handlebars->31->2065",
14625 + "default.handlebars->31->1881",
14626 + "default.handlebars->31->2008",
14627 + "default.handlebars->31->2010",
14628 + "default.handlebars->31->2050",
14629 + "default.handlebars->31->2068",
14630 "default.handlebars->31->337",
14631 "login-mobile.handlebars->5->42",
14632 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14659,7 +14659,7 @@
14659 "zh-cht": "電郵地址變更",
14660 "xloc": [
14661 "default-mobile.handlebars->11->90",
14662 - "default.handlebars->31->1350"
14662 + "default.handlebars->31->1352"
14663 ]
14664 },
14665 {
@@ -14680,7 +14680,7 @@
14680 "zh-cht": "電郵認證",
14681 "xloc": [
14682 "default-mobile.handlebars->11->79",
14683 - "default.handlebars->31->1118"
14683 + "default.handlebars->31->1120"
14684 ]
14685 },
14686 {
@@ -14740,7 +14740,7 @@
14740 "zh-cht": "電郵驗證",
14741 "xloc": [
14742 "default-mobile.handlebars->11->88",
14743 - "default.handlebars->31->1348"
14743 + "default.handlebars->31->1350"
14744 ]
14745 },
14746 {
@@ -14780,7 +14780,7 @@
14780 "zh-chs": "电邮未验证",
14781 "zh-cht": "電郵未驗證",
14782 "xloc": [
14783 - "default.handlebars->31->1824"
14783 + "default.handlebars->31->1827"
14784 ]
14785 },
14786 {
@@ -14800,8 +14800,8 @@
14800 "zh-chs": "电子邮件已验证",
14801 "zh-cht": "電子郵件已驗證",
14802 "xloc": [
14803 - "default.handlebars->31->1825",
14804 - "default.handlebars->31->1999"
14803 + "default.handlebars->31->1828",
14804 + "default.handlebars->31->2002"
14805 ]
14806 },
14807 {
@@ -14821,7 +14821,7 @@
14821 "zh-chs": "电邮已验证。",
14822 "zh-cht": "電郵已驗證。",
14823 "xloc": [
14824 - "default.handlebars->31->1884"
14824 + "default.handlebars->31->1887"
14825 ]
14826 },
14827 {
@@ -14841,7 +14841,7 @@
14841 "zh-chs": "电邮未验证",
14842 "zh-cht": "電郵未驗證",
14843 "xloc": [
14844 - "default.handlebars->31->2000"
14844 + "default.handlebars->31->2003"
14845 ]
14846 },
14847 {
@@ -14862,7 +14862,7 @@
14862 "zh-cht": "電郵已發送。",
14863 "xloc": [
14864 "default-mobile.handlebars->11->559",
14865 - "default.handlebars->31->2169",
14865 + "default.handlebars->31->2172",
14866 "login-mobile.handlebars->5->2",
14867 "login.handlebars->5->2",
14868 "login2.handlebars->7->3"
@@ -14907,7 +14907,7 @@
14907 "zh-chs": "已通过电邮验证,并且需要重置密码。",
14908 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
14909 "xloc": [
14910 - "default.handlebars->31->1885"
14910 + "default.handlebars->31->1888"
14911 ]
14912 },
14913 {
@@ -14927,7 +14927,7 @@
14927 "zh-chs": "电邮/短信流量",
14928 "zh-cht": "電郵/短信流量",
14929 "xloc": [
14930 - "default.handlebars->31->2245"
14930 + "default.handlebars->31->2248"
14931 ]
14932 },
14933 {
@@ -14973,7 +14973,7 @@
14973 "zh-chs": "启用邀请代码",
14974 "zh-cht": "啟用邀請代碼",
14975 "xloc": [
14976 - "default.handlebars->31->1597"
14976 + "default.handlebars->31->1600"
14977 ]
14978 },
14979 {
@@ -15014,7 +15014,7 @@
15014 "zh-cht": "啟用電郵二因子鑑別。",
15015 "xloc": [
15016 "default-mobile.handlebars->11->81",
15017 - "default.handlebars->31->1120"
15017 + "default.handlebars->31->1122"
15018 ]
15019 },
15020 {
@@ -15054,7 +15054,7 @@
15054 "zh-chs": "已启用",
15055 "zh-cht": "已啟用",
15056 "xloc": [
15057 - "default.handlebars->31->2142"
15057 + "default.handlebars->31->2145"
15058 ]
15059 },
15060 {
@@ -15074,7 +15074,7 @@
15074 "zh-chs": "启用电子邮件两因素身份验证",
15075 "zh-cht": "啟用電子郵件兩因素身份驗證",
15076 "xloc": [
15077 - "default.handlebars->31->1761"
15077 + "default.handlebars->31->1764"
15078 ]
15079 },
15080 {
@@ -15103,7 +15103,7 @@
15103 "nl": "End",
15104 "xloc": [
15105 "default-mobile.handlebars->11->324",
15106 - "default.handlebars->31->904"
15106 + "default.handlebars->31->906"
15107 ]
15108 },
15109 {
@@ -15123,7 +15123,7 @@
15123 "zh-chs": "时间结束",
15124 "zh-cht": "時間結束",
15125 "xloc": [
15126 - "default.handlebars->31->2139"
15126 + "default.handlebars->31->2142"
15127 ]
15128 },
15129 {
@@ -15143,7 +15143,7 @@
15143 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15144 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15145 "xloc": [
15146 - "default.handlebars->31->1684"
15146 + "default.handlebars->31->1687"
15147 ]
15148 },
15149 {
@@ -15163,7 +15163,7 @@
15163 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15164 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15165 "xloc": [
15166 - "default.handlebars->31->1685"
15166 + "default.handlebars->31->1688"
15167 ]
15168 },
15169 {
@@ -15183,7 +15183,7 @@
15183 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15184 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15185 "xloc": [
15186 - "default.handlebars->31->1682"
15186 + "default.handlebars->31->1685"
15187 ]
15188 },
15189 {
@@ -15203,7 +15203,7 @@
15203 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15204 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15205 "xloc": [
15206 - "default.handlebars->31->1683"
15206 + "default.handlebars->31->1686"
15207 ]
15208 },
15209 {
@@ -15223,7 +15223,7 @@
15223 "zh-chs": "英文",
15224 "zh-cht": "英文",
15225 "xloc": [
15226 - "default.handlebars->31->1182"
15226 + "default.handlebars->31->1184"
15227 ]
15228 },
15229 {
@@ -15243,7 +15243,7 @@
15243 "zh-chs": "英文(澳洲)",
15244 "zh-cht": "英文(澳洲)",
15245 "xloc": [
15246 - "default.handlebars->31->1183"
15246 + "default.handlebars->31->1185"
15247 ]
15248 },
15249 {
@@ -15263,7 +15263,7 @@
15263 "zh-chs": "英文(伯利茲)",
15264 "zh-cht": "英文(伯利茲)",
15265 "xloc": [
15266 - "default.handlebars->31->1184"
15266 + "default.handlebars->31->1186"
15267 ]
15268 },
15269 {
@@ -15283,7 +15283,7 @@
15283 "zh-chs": "英文(加拿大)",
15284 "zh-cht": "英文(加拿大)",
15285 "xloc": [
15286 - "default.handlebars->31->1185"
15286 + "default.handlebars->31->1187"
15287 ]
15288 },
15289 {
@@ -15303,7 +15303,7 @@
15303 "zh-chs": "英文(爱尔兰)",
15304 "zh-cht": "英文(愛爾蘭)",
15305 "xloc": [
15306 - "default.handlebars->31->1186"
15306 + "default.handlebars->31->1188"
15307 ]
15308 },
15309 {
@@ -15323,7 +15323,7 @@
15323 "zh-chs": "英文(牙买加)",
15324 "zh-cht": "英文(牙買加)",
15325 "xloc": [
15326 - "default.handlebars->31->1187"
15326 + "default.handlebars->31->1189"
15327 ]
15328 },
15329 {
@@ -15343,7 +15343,7 @@
15343 "zh-chs": "英文(纽西兰)",
15344 "zh-cht": "英文(紐西蘭)",
15345 "xloc": [
15346 - "default.handlebars->31->1188"
15346 + "default.handlebars->31->1190"
15347 ]
15348 },
15349 {
@@ -15363,7 +15363,7 @@
15363 "zh-chs": "英文(菲律宾)",
15364 "zh-cht": "英文(菲律賓)",
15365 "xloc": [
15366 - "default.handlebars->31->1189"
15366 + "default.handlebars->31->1191"
15367 ]
15368 },
15369 {
@@ -15383,7 +15383,7 @@
15383 "zh-chs": "英语(南非)",
15384 "zh-cht": "英語(南非)",
15385 "xloc": [
15386 - "default.handlebars->31->1190"
15386 + "default.handlebars->31->1192"
15387 ]
15388 },
15389 {
@@ -15403,7 +15403,7 @@
15403 "zh-chs": "英文(特立尼达和多巴哥)",
15404 "zh-cht": "英文(特立尼達和多巴哥)",
15405 "xloc": [
15406 - "default.handlebars->31->1191"
15406 + "default.handlebars->31->1193"
15407 ]
15408 },
15409 {
@@ -15423,7 +15423,7 @@
15423 "zh-chs": "英文(英国)",
15424 "zh-cht": "英文(英國)",
15425 "xloc": [
15426 - "default.handlebars->31->1192"
15426 + "default.handlebars->31->1194"
15427 ]
15428 },
15429 {
@@ -15443,7 +15443,7 @@
15443 "zh-chs": "美国英文",
15444 "zh-cht": "美國英語",
15445 "xloc": [
15446 - "default.handlebars->31->1193"
15446 + "default.handlebars->31->1195"
15447 ]
15448 },
15449 {
@@ -15463,7 +15463,7 @@
15463 "zh-chs": "英文(津巴布韦)",
15464 "zh-cht": "英文(津巴布韋)",
15465 "xloc": [
15466 - "default.handlebars->31->1194"
15466 + "default.handlebars->31->1196"
15467 ]
15468 },
15469 {
@@ -15484,10 +15484,10 @@
15484 "zh-cht": "輸入",
15485 "xloc": [
15486 "default-mobile.handlebars->11->319",
15487 - "default.handlebars->31->1376",
15488 - "default.handlebars->31->1377",
15489 - "default.handlebars->31->899",
15490 - "default.handlebars->31->972"
15487 + "default.handlebars->31->1378",
15488 + "default.handlebars->31->1379",
15489 + "default.handlebars->31->901",
15490 + "default.handlebars->31->974"
15491 ]
15492 },
15493 {
@@ -15507,7 +15507,7 @@
15507 "zh-chs": "输入管理领域名称的逗号分隔列表。",
15508 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15509 "xloc": [
15510 - "default.handlebars->31->1889"
15510 + "default.handlebars->31->1892"
15511 ]
15512 },
15513 {
@@ -15567,7 +15567,7 @@
15567 "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
15568 "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
15569 "xloc": [
15570 - "default.handlebars->31->923"
15570 + "default.handlebars->31->925"
15571 ]
15572 },
15573 {
@@ -15629,7 +15629,7 @@
15629 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
15630 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
15631 "xloc": [
15632 - "default.handlebars->31->1115"
15632 + "default.handlebars->31->1117"
15633 ]
15634 },
15635 {
@@ -15658,7 +15658,7 @@
15658 "fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
15659 "xloc": [
15660 "default-mobile.handlebars->11->567",
15661 - "default.handlebars->31->2177"
15661 + "default.handlebars->31->2180"
15662 ]
15663 },
15664 {
@@ -15667,7 +15667,7 @@
15667 "fr": "Erreur, mot de passe non modifié.",
15668 "xloc": [
15669 "default-mobile.handlebars->11->564",
15670 - "default.handlebars->31->2174"
15670 + "default.handlebars->31->2177"
15671 ]
15672 },
15673 {
@@ -15676,7 +15676,7 @@
15676 "fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
15677 "xloc": [
15678 "default-mobile.handlebars->11->563",
15679 - "default.handlebars->31->2173"
15679 + "default.handlebars->31->2176"
15680 ]
15681 },
15682 {
@@ -15685,7 +15685,7 @@
15685 "fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
15686 "xloc": [
15687 "default-mobile.handlebars->11->562",
15688 - "default.handlebars->31->2172"
15688 + "default.handlebars->31->2175"
15689 ]
15690 },
15691 {
@@ -15714,7 +15714,7 @@
15714 "nl": "Escape",
15715 "xloc": [
15716 "default-mobile.handlebars->11->320",
15717 - "default.handlebars->31->900"
15717 + "default.handlebars->31->902"
15718 ]
15719 },
15720 {
@@ -15734,7 +15734,7 @@
15734 "zh-chs": "世界文",
15735 "zh-cht": "世界語",
15736 "xloc": [
15737 - "default.handlebars->31->1195"
15737 + "default.handlebars->31->1197"
15738 ]
15739 },
15740 {
@@ -15754,7 +15754,7 @@
15754 "zh-chs": "爱沙尼亚文",
15755 "zh-cht": "愛沙尼亞語",
15756 "xloc": [
15757 - "default.handlebars->31->1196"
15757 + "default.handlebars->31->1198"
15758 ]
15759 },
15760 {
@@ -15774,7 +15774,7 @@
15774 "zh-chs": "事件详情",
15775 "zh-cht": "事件詳情",
15776 "xloc": [
15777 - "default.handlebars->31->1012"
15777 + "default.handlebars->31->1014"
15778 ]
15779 },
15780 {
@@ -15794,7 +15794,7 @@
15794 "zh-chs": "事件列表输出",
15795 "zh-cht": "事件列表輸出",
15796 "xloc": [
15797 - "default.handlebars->31->1800"
15797 + "default.handlebars->31->1803"
15798 ]
15799 },
15800 {
@@ -15900,7 +15900,7 @@
15900 "zh-cht": "到期時間",
15901 "xloc": [
15902 "default.handlebars->31->203",
15903 - "default.handlebars->31->784"
15903 + "default.handlebars->31->786"
15904 ]
15905 },
15906 {
@@ -15982,7 +15982,7 @@
15982 "zh-chs": "扩充式ASCII",
15983 "zh-cht": "擴充式ASCII",
15984 "xloc": [
15985 - "default.handlebars->31->951",
15985 + "default.handlebars->31->953",
15986 "terminal.handlebars->3->16"
15987 ]
15988 },
@@ -16024,7 +16024,7 @@
16024 "zh-chs": "外部",
16025 "zh-cht": "外部",
16026 "xloc": [
16027 - "default.handlebars->31->2228"
16027 + "default.handlebars->31->2231"
16028 ]
16029 },
16030 {
@@ -16064,7 +16064,7 @@
16064 "zh-chs": "FYRO马其顿语",
16065 "zh-cht": "FYRO馬其頓語",
16066 "xloc": [
16067 - "default.handlebars->31->1246"
16067 + "default.handlebars->31->1248"
16068 ]
16069 },
16070 {
@@ -16084,7 +16084,7 @@
16084 "zh-chs": "法罗语",
16085 "zh-cht": "法羅語",
16086 "xloc": [
16087 - "default.handlebars->31->1197"
16087 + "default.handlebars->31->1199"
16088 ]
16089 },
16090 {
@@ -16113,7 +16113,7 @@
16113 "fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16114 "xloc": [
16115 "default-mobile.handlebars->11->558",
16116 - "default.handlebars->31->2168"
16116 + "default.handlebars->31->2171"
16117 ]
16118 },
16119 {
@@ -16133,7 +16133,7 @@
16133 "zh-chs": "本地用户拒绝后无法启动远程桌面",
16134 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
16135 "xloc": [
16136 - "default.handlebars->31->1707"
16136 + "default.handlebars->31->1710"
16137 ]
16138 },
16139 {
@@ -16153,7 +16153,7 @@
16153 "zh-chs": "本地用户拒绝后无法启动远程文件",
16154 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
16155 "xloc": [
16156 - "default.handlebars->31->1714"
16156 + "default.handlebars->31->1717"
16157 ]
16158 },
16159 {
@@ -16174,7 +16174,7 @@
16174 "zh-cht": "無法啟動遠程終端接合{0}({1})",
16175 "xloc": [
16176 "default-mobile.handlebars->11->311",
16177 - "default.handlebars->31->879",
16177 + "default.handlebars->31->881",
16178 "desktop.handlebars->3->8",
16179 "terminal.handlebars->3->12"
16180 ]
@@ -16196,7 +16196,7 @@
16196 "zh-chs": "波斯文(波斯文)",
16197 "zh-cht": "波斯語(波斯語)",
16198 "xloc": [
16199 - "default.handlebars->31->1198"
16199 + "default.handlebars->31->1200"
16200 ]
16201 },
16202 {
@@ -16238,7 +16238,7 @@
16238 "zh-chs": "功能",
16239 "zh-cht": "功能",
16240 "xloc": [
16241 - "default.handlebars->31->1421"
16241 + "default.handlebars->31->1423"
16242 ]
16243 },
16244 {
@@ -16258,7 +16258,7 @@
16258 "zh-chs": "斐济",
16259 "zh-cht": "斐濟",
16260 "xloc": [
16261 - "default.handlebars->31->1199"
16261 + "default.handlebars->31->1201"
16262 ]
16263 },
16264 {
@@ -16300,7 +16300,7 @@
16300 "xloc": [
16301 "default-mobile.handlebars->11->360",
16302 "default.handlebars->31->533",
16303 - "default.handlebars->31->983"
16303 + "default.handlebars->31->985"
16304 ]
16305 },
16306 {
@@ -16336,8 +16336,8 @@
16336 "zh-chs": "档案操作",
16337 "zh-cht": "檔案操作",
16338 "xloc": [
16339 - "default.handlebars->31->963",
16340 - "default.handlebars->31->965"
16339 + "default.handlebars->31->965",
16340 + "default.handlebars->31->967"
16341 ]
16342 },
16343 {
@@ -16377,7 +16377,7 @@
16377 "zh-chs": "文件系统驱动",
16378 "zh-cht": "FileSystemDriver",
16379 "xloc": [
16380 - "default.handlebars->31->932"
16380 + "default.handlebars->31->934"
16381 ]
16382 },
16383 {
@@ -16399,8 +16399,8 @@
16399 "xloc": [
16400 "default-mobile.handlebars->11->182",
16401 "default-mobile.handlebars->11->279",
16402 - "default.handlebars->31->1511",
16403 - "default.handlebars->31->2127",
16402 + "default.handlebars->31->1513",
16403 + "default.handlebars->31->2130",
16404 "default.handlebars->31->276",
16405 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
16406 "default.handlebars->contextMenu->cxfiles"
@@ -16443,9 +16443,9 @@
16443 "zh-chs": "档案通知",
16444 "zh-cht": "檔案通知",
16445 "xloc": [
16446 - "default.handlebars->31->1429",
16447 - "default.handlebars->31->1945",
16448 - "default.handlebars->31->2032",
16446 + "default.handlebars->31->1431",
16447 + "default.handlebars->31->1948",
16448 + "default.handlebars->31->2035",
16449 "default.handlebars->31->631"
16450 ]
16451 },
@@ -16466,9 +16466,9 @@
16466 "zh-chs": "档案提示",
16467 "zh-cht": "檔案提示",
16468 "xloc": [
16469 - "default.handlebars->31->1428",
16470 - "default.handlebars->31->1944",
16471 - "default.handlebars->31->2031",
16469 + "default.handlebars->31->1430",
16470 + "default.handlebars->31->1947",
16471 + "default.handlebars->31->2034",
16472 "default.handlebars->31->630"
16473 ]
16474 },
@@ -16490,7 +16490,7 @@
16490 "zh-cht": "過濾",
16491 "xloc": [
16492 "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
16493 - "default.handlebars->31->968",
16493 + "default.handlebars->31->970",
16494 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16495 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
16496 "default.handlebars->container->column_l->p4->3->1->0->3->3"
@@ -16533,7 +16533,7 @@
16533 "zh-chs": "查找文件",
16534 "zh-cht": "查找文件",
16535 "xloc": [
16536 - "default.handlebars->31->971"
16536 + "default.handlebars->31->973"
16537 ]
16538 },
16539 {
@@ -16553,7 +16553,7 @@
16553 "zh-chs": "录制会话已完成,{0}秒",
16554 "zh-cht": "錄製會話已完成,{0}秒",
16555 "xloc": [
16556 - "default.handlebars->31->1680"
16556 + "default.handlebars->31->1683"
16557 ]
16558 },
16559 {
@@ -16573,7 +16573,7 @@
16573 "zh-chs": "芬兰",
16574 "zh-cht": "芬蘭",
16575 "xloc": [
16576 - "default.handlebars->31->1200"
16576 + "default.handlebars->31->1202"
16577 ]
16578 },
16579 {
@@ -16750,8 +16750,8 @@
16750 "zh-chs": "下次登录时强制重置密码。",
16751 "zh-cht": "下次登入時強制重置密碼。",
16752 "xloc": [
16753 - "default.handlebars->31->1883",
16754 - "default.handlebars->31->2074"
16753 + "default.handlebars->31->1886",
16754 + "default.handlebars->31->2077"
16755 ]
16756 },
16757 {
@@ -16834,7 +16834,7 @@
16834 "zh-chs": "格式化",
16835 "zh-cht": "格式化",
16836 "xloc": [
16837 - "default.handlebars->31->1791"
16837 + "default.handlebars->31->1794"
16838 ]
16839 },
16840 {
@@ -16875,8 +16875,8 @@
16875 "zh-chs": "自由",
16876 "zh-cht": "自由",
16877 "xloc": [
16878 - "default.handlebars->31->2186",
16879 - "default.handlebars->31->2188"
16878 + "default.handlebars->31->2189",
16879 + "default.handlebars->31->2191"
16880 ]
16881 },
16882 {
@@ -16917,7 +16917,7 @@
16917 "zh-chs": "法文(比利时)",
16918 "zh-cht": "法語(比利時)",
16919 "xloc": [
16920 - "default.handlebars->31->1202"
16920 + "default.handlebars->31->1204"
16921 ]
16922 },
16923 {
@@ -16937,7 +16937,7 @@
16937 "zh-chs": "法文(加拿大)",
16938 "zh-cht": "法語(加拿大)",
16939 "xloc": [
16940 - "default.handlebars->31->1203"
16940 + "default.handlebars->31->1205"
16941 ]
16942 },
16943 {
@@ -16957,7 +16957,7 @@
16957 "zh-chs": "法文(法国)",
16958 "zh-cht": "法語(法國)",
16959 "xloc": [
16960 - "default.handlebars->31->1204"
16960 + "default.handlebars->31->1206"
16961 ]
16962 },
16963 {
@@ -16977,7 +16977,7 @@
16977 "zh-chs": "法文(卢森堡)",
16978 "zh-cht": "法語(盧森堡)",
16979 "xloc": [
16980 - "default.handlebars->31->1205"
16980 + "default.handlebars->31->1207"
16981 ]
16982 },
16983 {
@@ -16997,7 +16997,7 @@
16997 "zh-chs": "法文(摩纳哥)",
16998 "zh-cht": "法語(摩納哥)",
16999 "xloc": [
17000 - "default.handlebars->31->1206"
17000 + "default.handlebars->31->1208"
17001 ]
17002 },
17003 {
@@ -17017,7 +17017,7 @@
17017 "zh-chs": "法文(标准)",
17018 "zh-cht": "法語(標準)",
17019 "xloc": [
17020 - "default.handlebars->31->1201"
17020 + "default.handlebars->31->1203"
17021 ]
17022 },
17023 {
@@ -17037,7 +17037,7 @@
17037 "zh-chs": "法文(瑞士)",
17038 "zh-cht": "法語(瑞士)",
17039 "xloc": [
17040 - "default.handlebars->31->1207"
17040 + "default.handlebars->31->1209"
17041 ]
17042 },
17043 {
@@ -17057,7 +17057,7 @@
17057 "zh-chs": "弗里斯兰文",
17058 "zh-cht": "弗里斯蘭語",
17059 "xloc": [
17060 - "default.handlebars->31->1208"
17060 + "default.handlebars->31->1210"
17061 ]
17062 },
17063 {
@@ -17077,7 +17077,7 @@
17077 "zh-chs": "弗留利",
17078 "zh-cht": "弗留利",
17079 "xloc": [
17080 - "default.handlebars->31->1209"
17080 + "default.handlebars->31->1211"
17081 ]
17082 },
17083 {
@@ -17101,9 +17101,9 @@
17101 "default-mobile.handlebars->11->480",
17102 "default-mobile.handlebars->11->489",
17103 "default-mobile.handlebars->11->509",
17104 - "default.handlebars->31->1383",
17105 - "default.handlebars->31->1530",
17106 - "default.handlebars->31->1895"
17104 + "default.handlebars->31->1385",
17105 + "default.handlebars->31->1532",
17106 + "default.handlebars->31->1898"
17107 ]
17108 },
17109 {
@@ -17123,7 +17123,7 @@
17123 "zh-chs": "完整管理员(保留所有权利)",
17124 "zh-cht": "完整管理員(保留所有權利)",
17125 "xloc": [
17126 - "default.handlebars->31->1566"
17126 + "default.handlebars->31->1569"
17127 ]
17128 },
17129 {
@@ -17180,7 +17180,7 @@
17180 "zh-chs": "全部权限",
17181 "zh-cht": "全部權限",
17182 "xloc": [
17183 - "default.handlebars->31->731"
17183 + "default.handlebars->31->732"
17184 ]
17185 },
17186 {
@@ -17242,7 +17242,7 @@
17242 "zh-chs": "完整管理员",
17243 "zh-cht": "完整管理員",
17244 "xloc": [
17245 - "default.handlebars->31->1993"
17245 + "default.handlebars->31->1996"
17246 ]
17247 },
17248 {
@@ -17262,8 +17262,8 @@
17262 "zh-chs": "全自动的",
17263 "zh-cht": "全自動的",
17264 "xloc": [
17265 - "default.handlebars->31->1446",
17266 - "default.handlebars->31->1469"
17265 + "default.handlebars->31->1448",
17266 + "default.handlebars->31->1471"
17267 ]
17268 },
17269 {
@@ -17284,7 +17284,7 @@
17284 "zh-cht": "GPU",
17285 "xloc": [
17286 "default-mobile.handlebars->11->456",
17287 - "default.handlebars->31->1080"
17287 + "default.handlebars->31->1082"
17288 ]
17289 },
17290 {
@@ -17304,7 +17304,7 @@
17304 "zh-chs": "盖尔文(爱尔兰)",
17305 "zh-cht": "蓋爾語(愛爾蘭)",
17306 "xloc": [
17307 - "default.handlebars->31->1211"
17307 + "default.handlebars->31->1213"
17308 ]
17309 },
17310 {
@@ -17324,7 +17324,7 @@
17324 "zh-chs": "盖尔文(苏格兰文)",
17325 "zh-cht": "蓋爾語(蘇格蘭語)",
17326 "xloc": [
17327 - "default.handlebars->31->1210"
17327 + "default.handlebars->31->1212"
17328 ]
17329 },
17330 {
@@ -17344,7 +17344,7 @@
17344 "zh-chs": "加拉契文",
17345 "zh-cht": "加拉契語",
17346 "xloc": [
17347 - "default.handlebars->31->1212"
17347 + "default.handlebars->31->1214"
17348 ]
17349 },
17350 {
@@ -17470,7 +17470,7 @@
17470 "zh-chs": "格鲁吉亚文",
17471 "zh-cht": "格魯吉亞文",
17472 "xloc": [
17473 - "default.handlebars->31->1213"
17473 + "default.handlebars->31->1215"
17474 ]
17475 },
17476 {
@@ -17490,7 +17490,7 @@
17490 "zh-chs": "德文(奥地利)",
17491 "zh-cht": "德語(奧地利)",
17492 "xloc": [
17493 - "default.handlebars->31->1215"
17493 + "default.handlebars->31->1217"
17494 ]
17495 },
17496 {
@@ -17510,7 +17510,7 @@
17510 "zh-chs": "德文(德国)",
17511 "zh-cht": "德文(德國)",
17512 "xloc": [
17513 - "default.handlebars->31->1216"
17513 + "default.handlebars->31->1218"
17514 ]
17515 },
17516 {
@@ -17530,7 +17530,7 @@
17530 "zh-chs": "德文(列支敦士登)",
17531 "zh-cht": "德文(列支敦士登)",
17532 "xloc": [
17533 - "default.handlebars->31->1217"
17533 + "default.handlebars->31->1219"
17534 ]
17535 },
17536 {
@@ -17550,7 +17550,7 @@
17550 "zh-chs": "德文(卢森堡)",
17551 "zh-cht": "德語(盧森堡)",
17552 "xloc": [
17553 - "default.handlebars->31->1218"
17553 + "default.handlebars->31->1220"
17554 ]
17555 },
17556 {
@@ -17570,7 +17570,7 @@
17570 "zh-chs": "德文(标准)",
17571 "zh-cht": "德語(標準)",
17572 "xloc": [
17573 - "default.handlebars->31->1214"
17573 + "default.handlebars->31->1216"
17574 ]
17575 },
17576 {
@@ -17590,7 +17590,7 @@
17590 "zh-chs": "德文(瑞士)",
17591 "zh-cht": "德文(瑞士)",
17592 "xloc": [
17593 - "default.handlebars->31->1219"
17593 + "default.handlebars->31->1221"
17594 ]
17595 },
17596 {
@@ -17651,7 +17651,7 @@
17651 "zh-chs": "正在获取剪贴板内容,{0}个字节",
17652 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
17653 "xloc": [
17654 - "default.handlebars->31->1694"
17654 + "default.handlebars->31->1697"
17655 ]
17656 },
17657 {
@@ -17713,7 +17713,7 @@
17713 "zh-chs": "好",
17714 "zh-cht": "好",
17715 "xloc": [
17716 - "default.handlebars->31->1379"
17716 + "default.handlebars->31->1381"
17717 ]
17718 },
17719 {
@@ -17758,8 +17758,8 @@
17758 "zh-chs": "Google云端硬盘备份",
17759 "zh-cht": "Google雲端硬盤備份",
17760 "xloc": [
17761 - "default.handlebars->31->1390",
17762 - "default.handlebars->31->1393",
17761 + "default.handlebars->31->1392",
17762 + "default.handlebars->31->1395",
17763 "default.handlebars->31->220"
17764 ]
17765 },
@@ -17780,7 +17780,7 @@
17780 "zh-chs": "Google云端硬盘控制台",
17781 "zh-cht": "Google雲端硬盤控制台",
17782 "xloc": [
17783 - "default.handlebars->31->1387"
17783 + "default.handlebars->31->1389"
17784 ]
17785 },
17786 {
@@ -17820,7 +17820,7 @@
17820 "zh-chs": "Google云端硬盘备份当前处于活动状态。",
17821 "zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
17822 "xloc": [
17823 - "default.handlebars->31->1391"
17823 + "default.handlebars->31->1393"
17824 ]
17825 },
17826 {
@@ -17840,7 +17840,7 @@
17840 "zh-chs": "希腊文",
17841 "zh-cht": "希臘文",
17842 "xloc": [
17843 - "default.handlebars->31->1220"
17843 + "default.handlebars->31->1222"
17844 ]
17845 },
17846 {
@@ -17882,8 +17882,8 @@
17882 "zh-chs": "集体指令",
17883 "zh-cht": "集體指令",
17884 "xloc": [
17885 - "default.handlebars->31->1839",
17886 - "default.handlebars->31->1918",
17885 + "default.handlebars->31->1842",
17886 + "default.handlebars->31->1921",
17887 "default.handlebars->31->470",
17888 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
17889 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -17907,7 +17907,7 @@
17907 "zh-chs": "通过...分组",
17908 "zh-cht": "通過...分群",
17909 "xloc": [
17910 - "default.handlebars->31->1787"
17910 + "default.handlebars->31->1790"
17911 ]
17912 },
17913 {
@@ -17927,7 +17927,7 @@
17927 "zh-chs": "组标识符",
17928 "zh-cht": "群標識符",
17929 "xloc": [
17930 - "default.handlebars->31->1935"
17930 + "default.handlebars->31->1938"
17931 ]
17932 },
17933 {
@@ -17947,7 +17947,7 @@
17947 "zh-chs": "群组成员",
17948 "zh-cht": "群組成員",
17949 "xloc": [
17950 - "default.handlebars->31->1956"
17950 + "default.handlebars->31->1959"
17951 ]
17952 },
17953 {
@@ -17967,7 +17967,7 @@
17967 "zh-chs": "用户{0}的群组权限。",
17968 "zh-cht": "用戶{0}的群組權限。",
17969 "xloc": [
17970 - "default.handlebars->31->1529"
17970 + "default.handlebars->31->1531"
17971 ]
17972 },
17973 {
@@ -17987,7 +17987,7 @@
17987 "zh-chs": "{0}的群组权限。",
17988 "zh-cht": "{0}的群組權限。",
17989 "xloc": [
17990 - "default.handlebars->31->1528"
17990 + "default.handlebars->31->1530"
17991 ]
17992 },
17993 {
@@ -18068,7 +18068,20 @@
18068 "zh-cht": "來賓姓名",
18069 "xloc": [
18070 "default.handlebars->31->198",
18071 - "default.handlebars->31->761"
18071 + "default.handlebars->31->763"
18072 + ]
18073 + },
18074 + {
18075 + "en": "Guest Share",
18076 + "xloc": [
18077 + "default.handlebars->31->720",
18078 + "default.handlebars->31->742"
18079 + ]
18080 + },
18081 + {
18082 + "en": "Guest Sharing",
18083 + "xloc": [
18084 + "default.handlebars->31->1539"
18085 ]
18086 },
18087 {
@@ -18088,7 +18101,7 @@
18101 "zh-chs": "古久拉提",
18102 "zh-cht": "古久拉提",
18103 "xloc": [
18091 - "default.handlebars->31->1221"
18104 + "default.handlebars->31->1223"
18105 ]
18106 },
18107 {
@@ -18131,7 +18144,7 @@
18144 "zh-chs": "海地文",
18145 "zh-cht": "海地文",
18146 "xloc": [
18134 - "default.handlebars->31->1222"
18147 + "default.handlebars->31->1224"
18148 ]
18149 },
18150 {
@@ -18171,7 +18184,7 @@
18184 "zh-chs": "强行断开代理",
18185 "zh-cht": "強行斷開代理",
18186 "xloc": [
18174 - "default.handlebars->31->1110"
18187 + "default.handlebars->31->1112"
18188 ]
18189 },
18190 {
@@ -18191,7 +18204,7 @@
18204 "zh-chs": "堆总数",
18205 "zh-cht": "堆總數",
18206 "xloc": [
18194 - "default.handlebars->31->2230"
18207 + "default.handlebars->31->2233"
18208 ]
18209 },
18210 {
@@ -18211,7 +18224,7 @@
18224 "zh-chs": "堆使用",
18225 "zh-cht": "堆使用",
18226 "xloc": [
18214 - "default.handlebars->31->2229"
18227 + "default.handlebars->31->2232"
18228 ]
18229 },
18230 {
@@ -18231,7 +18244,7 @@
18244 "zh-chs": "希伯来文",
18245 "zh-cht": "希伯來文",
18246 "xloc": [
18234 - "default.handlebars->31->1223"
18247 + "default.handlebars->31->1225"
18248 ]
18249 },
18250 {
@@ -18292,7 +18305,7 @@
18305 "zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
18306 "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
18307 "xloc": [
18295 - "default.handlebars->31->1771"
18308 + "default.handlebars->31->1774"
18309 ]
18310 },
18311 {
@@ -18353,7 +18366,7 @@
18366 "zh-chs": "帮助翻译MeshCentral",
18367 "zh-cht": "幫助翻譯MeshCentral",
18368 "xloc": [
18356 - "default.handlebars->31->1338"
18369 + "default.handlebars->31->1340"
18370 ]
18371 },
18372 {
@@ -18457,7 +18470,7 @@
18470 "zh-chs": "印地文",
18471 "zh-cht": "印地文",
18472 "xloc": [
18460 - "default.handlebars->31->1224"
18473 + "default.handlebars->31->1226"
18474 ]
18475 },
18476 {
@@ -18495,7 +18508,7 @@
18508 "zh-cht": "保存1個項目進行複製",
18509 "xloc": [
18510 "default-mobile.handlebars->11->369",
18498 - "default.handlebars->31->993"
18511 + "default.handlebars->31->995"
18512 ]
18513 },
18514 {
@@ -18516,7 +18529,7 @@
18529 "zh-cht": "保存1個項目進行移動",
18530 "xloc": [
18531 "default-mobile.handlebars->11->373",
18519 - "default.handlebars->31->997"
18532 + "default.handlebars->31->999"
18533 ]
18534 },
18535 {
@@ -18537,7 +18550,7 @@
18550 "zh-cht": "保留{0}個項目進行複製",
18551 "xloc": [
18552 "default-mobile.handlebars->11->367",
18540 - "default.handlebars->31->991"
18553 + "default.handlebars->31->993"
18554 ]
18555 },
18556 {
@@ -18558,7 +18571,7 @@
18571 "zh-cht": "保存{0}個項目以進行移動",
18572 "xloc": [
18573 "default-mobile.handlebars->11->371",
18561 - "default.handlebars->31->995"
18574 + "default.handlebars->31->997"
18575 ]
18576 },
18577 {
@@ -18579,7 +18592,7 @@
18592 "zh-cht": "保存{0}項目{1}給{2}",
18593 "xloc": [
18594 "default-mobile.handlebars->11->140",
18582 - "default.handlebars->31->1667"
18595 + "default.handlebars->31->1670"
18596 ]
18597 },
18598 {
@@ -18588,7 +18601,7 @@
18601 "nl": "Home",
18602 "xloc": [
18603 "default-mobile.handlebars->11->323",
18591 - "default.handlebars->31->903"
18604 + "default.handlebars->31->905"
18605 ]
18606 },
18607 {
@@ -18613,10 +18626,10 @@
18626 "default-mobile.handlebars->11->234",
18627 "default-mobile.handlebars->11->304",
18628 "default-mobile.handlebars->11->415",
18616 - "default.handlebars->31->1029",
18629 + "default.handlebars->31->1031",
18630 "default.handlebars->31->306",
18631 "default.handlebars->31->573",
18619 - "default.handlebars->31->872"
18632 + "default.handlebars->31->874"
18633 ]
18634 },
18635 {
@@ -18636,7 +18649,7 @@
18649 "zh-chs": "主机名同步",
18650 "zh-cht": "主機名同步",
18651 "xloc": [
18639 - "default.handlebars->31->1418"
18652 + "default.handlebars->31->1420"
18653 ]
18654 },
18655 {
@@ -18656,7 +18669,7 @@
18669 "zh-chs": "匈牙利文",
18670 "zh-cht": "匈牙利文",
18671 "xloc": [
18659 - "default.handlebars->31->1225"
18672 + "default.handlebars->31->1227"
18673 ]
18674 },
18675 {
@@ -18719,9 +18732,9 @@
18732 "zh-chs": "IP:{0}",
18733 "zh-cht": "IP:{0}",
18734 "xloc": [
18722 - "default.handlebars->31->1039",
18723 - "default.handlebars->31->1049",
18724 - "default.handlebars->31->1053"
18735 + "default.handlebars->31->1041",
18736 + "default.handlebars->31->1051",
18737 + "default.handlebars->31->1055"
18738 ]
18739 },
18740 {
@@ -18741,9 +18754,9 @@
18754 "zh-chs": "IP:{0},掩码:{1},网关:{2}",
18755 "zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
18756 "xloc": [
18744 - "default.handlebars->31->1037",
18745 - "default.handlebars->31->1047",
18746 - "default.handlebars->31->1051"
18757 + "default.handlebars->31->1039",
18758 + "default.handlebars->31->1049",
18759 + "default.handlebars->31->1053"
18760 ]
18761 },
18762 {
@@ -18765,10 +18778,10 @@
18778 "xloc": [
18779 "default-mobile.handlebars->11->422",
18780 "default-mobile.handlebars->11->424",
18768 - "default.handlebars->31->1036",
18781 "default.handlebars->31->1038",
18770 - "default.handlebars->31->1046",
18771 - "default.handlebars->31->1048"
18782 + "default.handlebars->31->1040",
18783 + "default.handlebars->31->1048",
18784 + "default.handlebars->31->1050"
18785 ]
18786 },
18787 {
@@ -18853,8 +18866,8 @@
18866 "xloc": [
18867 "default-mobile.handlebars->11->426",
18868 "default-mobile.handlebars->11->428",
18856 - "default.handlebars->31->1050",
18857 - "default.handlebars->31->1052"
18869 + "default.handlebars->31->1052",
18870 + "default.handlebars->31->1054"
18871 ]
18872 },
18873 {
@@ -18934,7 +18947,7 @@
18947 "zh-chs": "冰岛文",
18948 "zh-cht": "冰島文",
18949 "xloc": [
18937 - "default.handlebars->31->1226"
18950 + "default.handlebars->31->1228"
18951 ]
18952 },
18953 {
@@ -18955,7 +18968,7 @@
18968 "zh-cht": "圖符選擇",
18969 "xloc": [
18970 "default-mobile.handlebars->11->302",
18958 - "default.handlebars->31->870"
18971 + "default.handlebars->31->872"
18972 ]
18973 },
18974 {
@@ -18977,8 +18990,8 @@
18990 "xloc": [
18991 "default-mobile.handlebars->11->414",
18992 "default-mobile.handlebars->11->454",
18980 - "default.handlebars->31->1028",
18981 - "default.handlebars->31->1078"
18993 + "default.handlebars->31->1030",
18994 + "default.handlebars->31->1080"
18995 ]
18996 },
18997 {
@@ -18998,7 +19011,7 @@
19011 "zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
19012 "zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
19013 "xloc": [
19001 - "default.handlebars->31->1483"
19014 + "default.handlebars->31->1485"
19015 ]
19016 },
19017 {
@@ -19167,7 +19180,7 @@
19180 "zh-chs": "印度尼西亚文",
19181 "zh-cht": "印度尼西亞文",
19182 "xloc": [
19170 - "default.handlebars->31->1227"
19183 + "default.handlebars->31->1229"
19184 ]
19185 },
19186 {
@@ -19238,7 +19251,7 @@
19251 "nl": "Insert",
19252 "xloc": [
19253 "default-mobile.handlebars->11->321",
19241 - "default.handlebars->31->901"
19254 + "default.handlebars->31->903"
19255 ]
19256 },
19257 {
@@ -19352,8 +19365,8 @@
19365 "zh-chs": "安装类型",
19366 "zh-cht": "安裝方式",
19367 "xloc": [
19355 - "default.handlebars->31->1599",
19356 - "default.handlebars->31->1606",
19368 + "default.handlebars->31->1602",
19369 + "default.handlebars->31->1609",
19370 "default.handlebars->31->352",
19371 "default.handlebars->31->366",
19372 "default.handlebars->31->381"
@@ -19376,7 +19389,7 @@
19389 "zh-chs": "英特尔(F10 = ESC + [OM)",
19390 "zh-cht": "Intel(F10 = ESC + [OM)",
19391 "xloc": [
19379 - "default.handlebars->31->953",
19392 + "default.handlebars->31->955",
19393 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
19394 "terminal.handlebars->3->18",
19395 "terminal.handlebars->p12->9->1->terminalSettingsButtons"
@@ -19399,7 +19412,7 @@
19412 "zh-chs": "英特尔AMT",
19413 "zh-cht": "英特爾AMT",
19414 "xloc": [
19402 - "default.handlebars->31->2226"
19415 + "default.handlebars->31->2229"
19416 ]
19417 },
19418 {
@@ -19407,7 +19420,7 @@
19420 "fr": "Gestionnaire Intel AMT",
19421 "nl": "Intel AMT beheerder",
19422 "xloc": [
19410 - "default.handlebars->31->2252"
19423 + "default.handlebars->31->2255"
19424 ]
19425 },
19426 {
@@ -19427,7 +19440,7 @@
19440 "zh-chs": "英特尔ASCII",
19441 "zh-cht": "Intel ASCII",
19442 "xloc": [
19430 - "default.handlebars->31->952",
19443 + "default.handlebars->31->954",
19444 "terminal.handlebars->3->17"
19445 ]
19446 },
@@ -19451,11 +19464,11 @@
19464 "default-mobile.handlebars->11->216",
19465 "default-mobile.handlebars->11->258",
19466 "default-mobile.handlebars->11->263",
19454 - "default.handlebars->31->1436",
19455 - "default.handlebars->31->1447",
19456 - "default.handlebars->31->1618",
19457 - "default.handlebars->31->1626",
19458 - "default.handlebars->31->2251",
19467 + "default.handlebars->31->1438",
19468 + "default.handlebars->31->1449",
19469 + "default.handlebars->31->1621",
19470 + "default.handlebars->31->1629",
19471 + "default.handlebars->31->2254",
19472 "default.handlebars->31->543",
19473 "default.handlebars->31->601",
19474 "default.handlebars->31->641"
@@ -19625,7 +19638,7 @@
19638 "zh-chs": "英特尔®AMT政策",
19639 "zh-cht": "Intel® AMT政策",
19640 "xloc": [
19628 - "default.handlebars->31->1470"
19641 + "default.handlebars->31->1472"
19642 ]
19643 },
19644 {
@@ -19645,7 +19658,7 @@
19658 "zh-chs": "英特尔®AMT重定向",
19659 "zh-cht": "Intel® AMT重定向",
19660 "xloc": [
19648 - "default.handlebars->31->2129",
19661 + "default.handlebars->31->2132",
19662 "player.handlebars->3->14"
19663 ]
19664 },
@@ -19686,7 +19699,7 @@
19699 "zh-chs": "英特尔®AMT WSMAN",
19700 "zh-cht": "Intle® AMT WSMAN",
19701 "xloc": [
19689 - "default.handlebars->31->2128",
19702 + "default.handlebars->31->2131",
19703 "player.handlebars->3->13"
19704 ]
19705 },
@@ -19746,8 +19759,8 @@
19759 "zh-chs": "英特尔®AMT桌面和串行事件。",
19760 "zh-cht": "Intel® AMT桌面和串行事件。",
19761 "xloc": [
19749 - "default.handlebars->31->1344",
19750 - "default.handlebars->31->1614"
19762 + "default.handlebars->31->1346",
19763 + "default.handlebars->31->1617"
19764 ]
19765 },
19766 {
@@ -19933,8 +19946,8 @@
19946 "zh-cht": "僅限Intel® AMT,無代理",
19947 "xloc": [
19948 "default-mobile.handlebars->11->471",
19936 - "default.handlebars->31->1373",
19937 - "default.handlebars->31->1408"
19949 + "default.handlebars->31->1375",
19950 + "default.handlebars->31->1410"
19951 ]
19952 },
19953 {
@@ -20012,7 +20025,7 @@
20025 "zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
20026 "xloc": [
20027 "default-mobile.handlebars->11->446",
20015 - "default.handlebars->31->1070"
20028 + "default.handlebars->31->1072"
20029 ]
20030 },
20031 {
@@ -20218,7 +20231,7 @@
20231 "zh-chs": "互动",
20232 "zh-cht": "互動",
20233 "xloc": [
20221 - "default.handlebars->31->933"
20234 + "default.handlebars->31->935"
20235 ]
20236 },
20237 {
@@ -20238,8 +20251,8 @@
20251 "zh-chs": "仅限互动",
20252 "zh-cht": "僅限互動",
20253 "xloc": [
20241 - "default.handlebars->31->1602",
20242 - "default.handlebars->31->1609",
20254 + "default.handlebars->31->1605",
20255 + "default.handlebars->31->1612",
20256 "default.handlebars->31->355",
20257 "default.handlebars->31->369",
20258 "default.handlebars->31->384"
@@ -20282,7 +20295,7 @@
20295 "zh-chs": "因纽特文",
20296 "zh-cht": "因紐特文",
20297 "xloc": [
20285 - "default.handlebars->31->1228"
20298 + "default.handlebars->31->1230"
20299 ]
20300 },

This file is too large to show in full.

views/default.handlebars
+16 -3
@@ -5978,7 +5978,7 @@
5978 x += '<input type=button value="' + "Log Event" + '" title="' + "Write an event for this device" + '" onclick=writeDeviceEvent("' + encodeURIComponentEx(node._id) + '") />';
5979 if ((connectivity & 1) && (meshrights & 8) && (node.agent.id != 14)) { x += '<input type=button value="' + "Message" + '" title="' + "Display a text message on the remote device" + '" onclick=deviceMessageFunction() />'; }
5980 //if ((connectivity & 1) && (meshrights & 8) && (node.agent.id < 5)) { x += '<input type=button value=Toast title="' + "Display a text message of the remote device" + '" onclick=deviceToastFunction() />'; }
5981 - if ((serverinfo.guestdevicesharing !== false) && (node.agent != null) && (node.agent.caps & 3) && (connectivity & 1) && (meshrights & 8) && ((meshrights == 0xFFFFFFFF) || ((meshrights & 4352) == 0))) { x += '<input type=button value="' + "Share" + '" title="' + "Create a link to share this device with a guest" + '" onclick=showShareDevice() />'; }
5981 + if ((serverinfo.guestdevicesharing !== false) && (node.agent != null) && (node.agent.caps & 3) && (connectivity & 1) && (meshrights & 0x80008) && ((meshrights == 0xFFFFFFFF) || ((meshrights & 0x1000) == 0))) { x += '<input type=button value="' + "Share" + '" title="' + "Create a link to share this device with a guest" + '" onclick=showShareDevice() />'; }
5982
5983 // Custom UI
5984 if ((customui != null) && (customui.devicebuttons != null)) {
@@ -6235,6 +6235,7 @@
6235 if (rights & 2048) str1.push("No AMT");
6236 if (rights & 4096) str1.push("Limited Input");
6237 if (rights & 65536) str1.push("No Desktop");
6238 + if ((rights & 524288) && (serverinfo.guestdevicesharing !== false)) str1.push("Guest Share");
6239 if (str1.length > 0) { str.push('Control (' + str1.join(', ') + ')'); } else { str.push("Control"); }
6240 }
6241 if (rights & 16) str.push("Console");
@@ -6264,6 +6265,7 @@
6265 if (rights & 2048) str1.push("No AMT");
6266 if (rights & 4096) str1.push("Limited Input");
6267 if (rights & 65536) str1.push("No Desktop");
6268 + if ((rights & 524288) && (serverinfo.guestdevicesharing !== false)) str1.push("Guest Share");
6269 if (str1.length > 0) { str.push('Control (' + str1.join(', ') + ')'); } else { str.push("Control"); }
6270 }
6271 if (rights & 16) str.push("Console");
@@ -6371,9 +6373,14 @@
6373
6374 function showShareDevice() {
6375 if (xxdialogMode) return;
6376 + var rights = GetNodeRights(currentNode);
6377 var y = '', x = "Creates a link that allows a guest without an account to remote control this device for a limited time." + '<br /><br />';
6378 x += addHtmlValue("Guest Name", '<input id=d2inviteName style=width:250px maxlength=128 type=text onkeyup=showShareDeviceValidate() />');
6376 - x += addHtmlValue("Type", '<select id=d2shareType style=float:right;width:250px onchange=showShareDeviceValidate()>' + ((currentNode.agent.caps & 1)?('<option value=2>' + "Desktop" + '</option><option value=3>' + "Desktop, View only" + '</option>'):'') + ((currentNode.agent.caps & 2)?('<option value=1>' + "Terminal" + '</option>'):'') + '</select>');
6379 + var deskFull = '<option value=2>' + "Desktop" + '</option>';
6380 + if ((rights != 0xFFFFFFFF) && ((rights & 0x100) != 0)) { deskFull = ''; }
6381 + var fullTerm = '<option value=1>' + "Terminal" + '</option>';
6382 + if ((rights != 0xFFFFFFFF) && ((rights & 0x200) != 0)) { fullTerm = ''; }
6383 + x += addHtmlValue("Type", '<select id=d2shareType style=float:right;width:250px onchange=showShareDeviceValidate()>' + ((currentNode.agent.caps & 1)?(deskFull + '<option value=3>' + "Desktop, View only" + '</option>'):'') + ((currentNode.agent.caps & 2)?fullTerm:'') + '</select>');
6384 var options = { 1 : "1 minute", 5 : "5 minutes", 10 : "10 minutes", 15 : "15 minutes", 30 : "30 minutes", 45 : "45 minutes", 60 : "60 minutes", 120 : "2 hours", 240 : "4 hours", 480 : "8 hours", 720 : "12 hours", 960 : "16 hours", 1440 : "24 hours", 2880 : "2 days", 5760 : "4 days" }
6385 for (var i in options) { y += '<option value=' + i + '>' + options[i] + '</option>'; }
6386 x += addHtmlValue("Validity", '<select id=d2timeRange style=float:right;width:250px onchange=showShareDeviceValidate()><option value=0>' + "Starting now" + '</option><option value=1>' + "Time range" + '</option></select>');
@@ -10372,6 +10379,7 @@
10379 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20remotecontrol>' + "Remote Control" + '</label><br>';
10380 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20remoteview style=margin-left:12px>' + "Remote View Only" + '</label><br>';
10381 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20remotelimitedinput style=margin-left:12px>' + "Limited Input Only" + '</label><br>';
10382 + if (serverinfo.guestdevicesharing !== false) { x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20guestshare style=margin-left:12px>' + "Guest Sharing" + '</label><br>'; }
10383 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20nodesktop style=margin-left:12px>' + "No Desktop Access" + '</label><br>';
10384 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20noterminal style=margin-left:12px>' + "No Terminal Access" + '</label><br>';
10385 x += '<label><input type=checkbox onchange=p20validateAddMeshUserDialog() id=p20nofiles style=margin-left:12px>' + "No File Access" + '</label><br>';
@@ -10445,6 +10453,7 @@
10453 Q('p20remotecontrol').checked = true;
10454 if (urights & 65536) { Q('p20nodesktop').checked = true; }
10455 if (urights & 256) { Q('p20remoteview').checked = true; }
10456 + if ((urights & 524288) && (serverinfo.guestdevicesharing !== false)) { Q('p20guestshare').checked = true; }
10457 if (urights & 512) { Q('p20noterminal').checked = true; }
10458 if (urights & 1024) { Q('p20nofiles').checked = true; }
10459 if (urights & 2048) { Q('p20noamt').checked = true; }
@@ -10459,6 +10468,7 @@
10468 if (urights & 32768) { Q('p20uninstall').checked = true; }
10469 if (urights & 131072) { Q('p20commands').checked = true; }
10470 if (urights & 262144) { Q('p20resetoff').checked = true; }
10471 + if ((urights & 524288) && (serverinfo.guestdevicesharing !== false)) { Q('p20guestshare').checked = true; }
10472 }
10473
10474 p20validateAddMeshUserDialog(userid);
@@ -10505,6 +10515,7 @@
10515 Q('p20nodesktop').checked = ((devrights & 65536) != 0);
10516 Q('p20commands').checked = ((devrights & 131072) != 0);
10517 Q('p20resetoff').checked = ((devrights & 262144) != 0);
10518 + if (serverinfo.guestdevicesharing !== false) { Q('p20guestshare').checked = ((devrights & 524288) != 0); }
10519 ok = (nodeid != '');
10520 }
10521
@@ -10575,6 +10586,7 @@
10586 QE('p20editnotes', nc);
10587 QE('p20limitevents', nc);
10588 QE('p20remoteview', nc && Q('p20remotecontrol').checked);
10589 + if (serverinfo.guestdevicesharing !== false) { QE('p20guestshare', nc && Q('p20remotecontrol').checked && (Q('p20remoteview').checked || !Q('p20remotelimitedinput').checked)); }
10590 QE('p20remotelimitedinput', nc && Q('p20remotecontrol').checked && !Q('p20remoteview').checked);
10591 QE('p20nodesktop', nc && Q('p20remotecontrol').checked);
10592 QE('p20noterminal', nc && Q('p20remotecontrol').checked);
@@ -10605,12 +10617,13 @@
10617 if (Q('p20noterminal').checked == true) meshadmin += 512;
10618 if (Q('p20nofiles').checked == true) meshadmin += 1024;
10619 if (Q('p20noamt').checked == true) meshadmin += 2048;
10608 - if (Q('p20remotelimitedinput').checked == true) meshadmin += 4096;
10620 + if ((Q('p20remotelimitedinput').checked == true) && (!Q('p20remoteview').checked)) meshadmin += 4096;
10621 if (Q('p20limitevents').checked == true) meshadmin += 8192;
10622 if (Q('p20chatnotify').checked == true) meshadmin += 16384;
10623 if (Q('p20uninstall').checked == true) meshadmin += 32768;
10624 if (Q('p20commands').checked == true) meshadmin += 131072;
10625 if (Q('p20resetoff').checked == true) meshadmin += 262144;
10626 + if ((serverinfo.guestdevicesharing !== false) && (Q('p20guestshare').checked == true) && (Q('p20remoteview').checked || (!Q('p20remoteview').checked && !Q('p20remotelimitedinput').checked))) meshadmin += 524288;
10627 }
10628
10629 // Clean up incorrect rights. If Remote Control is not selected, remove flags that don't make sense.