From 61dfa7e988e064c91ae2322659f2257b057a0666 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Wed, 30 Sep 2020 11:05:53 -0700 Subject: [PATCH] Added user group consent policy and fixed user access rights. --- meshuser.js | 29 +- translate/translate.json | 1404 +++++++++++++++++++------------------- views/default.handlebars | 20 + webserver.js | 16 +- 4 files changed, 769 insertions(+), 700 deletions(-) diff --git a/meshuser.js b/meshuser.js index ae35dc2e..e83346c3 100644 --- a/meshuser.js +++ b/meshuser.js @@ -213,6 +213,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (typeof mesh.consent == 'number') { command.consent |= mesh.consent; } // Add device group user consent if (typeof node.consent == 'number') { command.consent |= node.consent; } // Add node user consent if (typeof user.consent == 'number') { command.consent |= user.consent; } // Add user consent + + // Check if we need to add consent flags because of a user group link + if ((user.links != null) && (user.links[mesh._id] == null) && (user.links[node._id] == null)) { + // This user does not have a direct link to the device group or device. Find all user groups the would cause the link. + for (var i in user.links) { + var ugrp = parent.userGroups[i]; + if ((ugrp != null) && (ugrp.consent != null) && (ugrp.links != null) && ((ugrp.links[mesh._id] != null) || (ugrp.links[node._id] != null))) { + command.consent |= ugrp.consent; // Add user group consent flags + } + } + } + command.username = user.name; // Add user name command.realname = user.realname; // Add real name command.userid = user._id; // Add user id @@ -240,6 +252,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (typeof mesh.consent == 'number') { command.consent |= mesh.consent; } // Add device group user consent if (typeof node.consent == 'number') { command.consent |= node.consent; } // Add node user consent if (typeof user.consent == 'number') { command.consent |= user.consent; } // Add user consent + + // Check if we need to add consent flags because of a user group link + if ((user.links != null) && (user.links[mesh._id] == null) && (user.links[node._id] == null)) { + // This user does not have a direct link to the device group or device. Find all user groups the would cause the link. + for (var i in user.links) { + var ugrp = parent.userGroups[i]; + if ((ugrp != null) && (ugrp.consent != null) && (ugrp.links != null) && ((ugrp.links[mesh._id] != null) || (ugrp.links[node._id] != null))) { + command.consent |= ugrp.consent; // Add user group consent flags + } + } + } + command.username = user.name; // Add user name command.realname = user.realname; // Add real name command.userid = user._id; // Add user id @@ -605,6 +629,8 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Request a list of all nodes db.GetAllTypeNoTypeFieldMeshFiltered(links, extraids, domain.id, 'node', command.id, function (err, docs) { if (docs == null) { docs = []; } + parent.common.unEscapeAllLinksFieldName(docs); + var r = {}; for (i in docs) { // Check device links, if a link points to an unknown user, remove it. @@ -2224,9 +2250,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (group != null) { if ((common.validateString(command.name, 1, 64) == true) && (command.name != group.name)) { change = 'User group name changed from "' + group.name + '" to "' + command.name + '"'; group.name = command.name; } if ((common.validateString(command.desc, 0, 1024) == true) && (command.desc != group.desc)) { if (change != '') change += ' and description changed'; else change += 'User group "' + group.name + '" description changed'; group.desc = command.desc; } + if ((typeof command.consent == 'number') && (command.consent != group.consent)) { if (change != '') change += ' and consent changed'; else change += 'User group "' + group.name + '" consent changed'; group.consent = command.consent; } if (change != '') { db.Set(group); - var event = { etype: 'ugrp', userid: user._id, username: user.name, ugrpid: group._id, name: group.name, desc: group.desc, action: 'usergroupchange', links: group.links, msg: change, domain: domain.id }; + var event = { etype: 'ugrp', userid: user._id, username: user.name, ugrpid: group._id, name: group.name, desc: group.desc, consent: group.consent, action: 'usergroupchange', links: group.links, msg: change, domain: domain.id }; if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come. parent.parent.DispatchEvent(['*', group._id, user._id], obj, event); } diff --git a/translate/translate.json b/translate/translate.json index 1c271486..358b874c 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -224,8 +224,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->27->1416", - "default.handlebars->27->1858" + "default.handlebars->27->1417", + "default.handlebars->27->1871" ] }, { @@ -496,7 +496,7 @@ "zh-cht": ",", "xloc": [ "default-mobile.handlebars->9->449", - "default.handlebars->27->1483" + "default.handlebars->27->1484" ] }, { @@ -768,8 +768,8 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->295", - "default.handlebars->27->1524", - "default.handlebars->27->2013", + "default.handlebars->27->1525", + "default.handlebars->27->2026", "default.handlebars->27->878" ] }, @@ -826,7 +826,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->27->1927" + "default.handlebars->27->1940" ] }, { @@ -848,7 +848,7 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->453", - "default.handlebars->27->1548", + "default.handlebars->27->1549", "download.handlebars->3->1", "download2.handlebars->5->1" ] @@ -913,7 +913,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->27->1892" + "default.handlebars->27->1905" ] }, { @@ -1017,7 +1017,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->27->1694" + "default.handlebars->27->1695" ] }, { @@ -1083,7 +1083,7 @@ "default-mobile.handlebars->9->168", "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->174", - "default.handlebars->27->1698", + "default.handlebars->27->1699", "default.handlebars->27->245", "default.handlebars->27->248", "default.handlebars->27->251", @@ -1500,7 +1500,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->27->1659" + "default.handlebars->27->1660" ] }, { @@ -1520,8 +1520,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1711", - "default.handlebars->27->1914" + "default.handlebars->27->1712", + "default.handlebars->27->1927" ] }, { @@ -2503,7 +2503,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->27->1864" + "default.handlebars->27->1877" ] }, { @@ -2656,7 +2656,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->27->1632" + "default.handlebars->27->1633" ] }, { @@ -2676,7 +2676,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->27->1631" + "default.handlebars->27->1632" ] }, { @@ -2696,7 +2696,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->27->1630" + "default.handlebars->27->1631" ] }, { @@ -2716,8 +2716,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->27->1713", - "default.handlebars->27->1861" + "default.handlebars->27->1714", + "default.handlebars->27->1874" ] }, { @@ -2781,7 +2781,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->27->1567" + "default.handlebars->27->1568" ] }, { @@ -2801,7 +2801,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->27->1568" + "default.handlebars->27->1569" ] }, { @@ -2843,7 +2843,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->27->1640" + "default.handlebars->27->1641" ] }, { @@ -2863,7 +2863,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->27->1629" + "default.handlebars->27->1630" ] }, { @@ -3121,8 +3121,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->27->1838", - "default.handlebars->27->1962" + "default.handlebars->27->1851", + "default.handlebars->27->1975" ] }, { @@ -3162,9 +3162,9 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->27->1449", - "default.handlebars->27->1832", - "default.handlebars->27->1950", + "default.handlebars->27->1450", + "default.handlebars->27->1845", + "default.handlebars->27->1963", "default.handlebars->27->233" ] }, @@ -3185,7 +3185,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->27->1446" + "default.handlebars->27->1447" ] }, { @@ -3205,8 +3205,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->27->1451", - "default.handlebars->27->1453" + "default.handlebars->27->1452", + "default.handlebars->27->1454" ] }, { @@ -3306,7 +3306,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->27->1980" + "default.handlebars->27->1993" ] }, { @@ -3392,7 +3392,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->27->1456" + "default.handlebars->27->1457" ] }, { @@ -3413,8 +3413,8 @@ "zh-cht": "新增用戶群", "xloc": [ "default.handlebars->27->1347", - "default.handlebars->27->1448", - "default.handlebars->27->1956", + "default.handlebars->27->1449", + "default.handlebars->27->1969", "default.handlebars->27->666" ] }, @@ -3435,7 +3435,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->27->1458" + "default.handlebars->27->1459" ] }, { @@ -3493,7 +3493,7 @@ "zh-cht": "新增用戶", "xloc": [ "default.handlebars->27->1346", - "default.handlebars->27->1827" + "default.handlebars->27->1840" ] }, { @@ -3513,7 +3513,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->27->1445" + "default.handlebars->27->1446" ] }, { @@ -3533,7 +3533,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->27->1860" + "default.handlebars->27->1873" ] }, { @@ -3696,7 +3696,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->27->1656" + "default.handlebars->27->1657" ] }, { @@ -3716,8 +3716,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->27->1623", - "default.handlebars->27->1650" + "default.handlebars->27->1624", + "default.handlebars->27->1651" ] }, { @@ -3737,7 +3737,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->27->1661" + "default.handlebars->27->1662" ] }, { @@ -3757,7 +3757,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->27->1634" + "default.handlebars->27->1635" ] }, { @@ -3777,8 +3777,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->27->1637", - "default.handlebars->27->1646" + "default.handlebars->27->1638", + "default.handlebars->27->1647" ] }, { @@ -3901,7 +3901,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->27->1896" + "default.handlebars->27->1909" ] }, { @@ -3942,7 +3942,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->27->1776" + "default.handlebars->27->1777" ] }, { @@ -3962,7 +3962,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->27->1705" + "default.handlebars->27->1706" ] }, { @@ -4005,8 +4005,8 @@ "default-mobile.handlebars->9->199", "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->239", - "default.handlebars->27->1510", - "default.handlebars->27->1518", + "default.handlebars->27->1511", + "default.handlebars->27->1519", "default.handlebars->27->210", "default.handlebars->27->439", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -4029,8 +4029,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->27->1512", - "default.handlebars->27->1520" + "default.handlebars->27->1513", + "default.handlebars->27->1521" ] }, { @@ -4071,7 +4071,7 @@ "zh-cht": "代理控制台", "xloc": [ "default-mobile.handlebars->9->433", - "default.handlebars->27->1466" + "default.handlebars->27->1467" ] }, { @@ -4091,7 +4091,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->27->2023" + "default.handlebars->27->2036" ] }, { @@ -4194,7 +4194,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->27->2039" + "default.handlebars->27->2052" ] }, { @@ -4235,7 +4235,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->27->1516", + "default.handlebars->27->1517", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -4256,7 +4256,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->27->1620" + "default.handlebars->27->1621" ] }, { @@ -4358,7 +4358,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->27->2055" + "default.handlebars->27->2068" ] }, { @@ -4421,7 +4421,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->27->1668" + "default.handlebars->27->1669" ] }, { @@ -4458,7 +4458,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->27->1666" + "default.handlebars->27->1667" ] }, { @@ -4500,8 +4500,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->27->1414", - "default.handlebars->27->1857" + "default.handlebars->27->1415", + "default.handlebars->27->1870" ] }, { @@ -4521,7 +4521,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->27->1415" + "default.handlebars->27->1416" ] }, { @@ -4627,7 +4627,8 @@ "zh-cht": "一直通知", "xloc": [ "default.handlebars->27->1327", - "default.handlebars->27->1905", + "default.handlebars->27->1831", + "default.handlebars->27->1918", "default.handlebars->27->606" ] }, @@ -4649,7 +4650,8 @@ "zh-cht": "一直提示", "xloc": [ "default.handlebars->27->1328", - "default.handlebars->27->1906", + "default.handlebars->27->1832", + "default.handlebars->27->1919", "default.handlebars->27->607" ] }, @@ -5374,7 +5376,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->27->2095" + "default.handlebars->27->2108" ] }, { @@ -5494,7 +5496,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->27->1589" + "default.handlebars->27->1590" ] }, { @@ -5514,7 +5516,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->27->1909" + "default.handlebars->27->1922" ] }, { @@ -5685,7 +5687,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->27->2048" + "default.handlebars->27->2061" ] }, { @@ -5841,8 +5843,8 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->27->1493", - "default.handlebars->27->1500", + "default.handlebars->27->1494", + "default.handlebars->27->1501", "default.handlebars->27->352", "default.handlebars->27->366" ] @@ -5864,8 +5866,8 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->27->1494", - "default.handlebars->27->1501", + "default.handlebars->27->1495", + "default.handlebars->27->1502", "default.handlebars->27->353", "default.handlebars->27->367", "default.handlebars->27->381" @@ -5908,7 +5910,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->27->1911" + "default.handlebars->27->1924" ] }, { @@ -5928,7 +5930,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->27->2030" + "default.handlebars->27->2043" ] }, { @@ -5948,7 +5950,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->27->2029" + "default.handlebars->27->2042" ] }, { @@ -6111,7 +6113,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->27->1825", + "default.handlebars->27->1838", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6132,7 +6134,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->27->1758" + "default.handlebars->27->1759" ] }, { @@ -6152,7 +6154,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1753" + "default.handlebars->27->1754" ] }, { @@ -6257,7 +6259,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->27->2083" + "default.handlebars->27->2096" ] }, { @@ -6277,7 +6279,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->27->2084" + "default.handlebars->27->2097" ] }, { @@ -6318,7 +6320,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->27->2044" + "default.handlebars->27->2057" ] }, { @@ -6338,7 +6340,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2047" + "default.handlebars->27->2060" ] }, { @@ -6358,7 +6360,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2046" + "default.handlebars->27->2059" ] }, { @@ -6378,7 +6380,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2045" + "default.handlebars->27->2058" ] }, { @@ -6420,7 +6422,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->27->1676" + "default.handlebars->27->1677" ] }, { @@ -6440,8 +6442,8 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->27->1680", - "default.handlebars->27->1745", + "default.handlebars->27->1681", + "default.handlebars->27->1746", "default.handlebars->27->491" ] }, @@ -6462,7 +6464,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->27->2096" + "default.handlebars->27->2109" ] }, { @@ -6637,7 +6639,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->27->1939" + "default.handlebars->27->1952" ] }, { @@ -6681,7 +6683,7 @@ "xloc": [ "default-mobile.handlebars->9->90", "default.handlebars->27->1259", - "default.handlebars->27->1926" + "default.handlebars->27->1939" ] }, { @@ -6701,7 +6703,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1946" + "default.handlebars->27->1959" ] }, { @@ -6721,7 +6723,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->27->1934" + "default.handlebars->27->1947" ] }, { @@ -6803,7 +6805,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1925" + "default.handlebars->27->1938" ] }, { @@ -6883,7 +6885,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->27->1641" + "default.handlebars->27->1642" ] }, { @@ -6903,7 +6905,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->27->1625" + "default.handlebars->27->1626" ] }, { @@ -6923,7 +6925,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->27->1569" + "default.handlebars->27->1570" ] }, { @@ -6943,8 +6945,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->27->1627", - "default.handlebars->27->1648" + "default.handlebars->27->1628", + "default.handlebars->27->1649" ] }, { @@ -6984,7 +6986,7 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->27->1697", + "default.handlebars->27->1698", "default.handlebars->27->686", "default.handlebars->27->705" ] @@ -7008,8 +7010,8 @@ "xloc": [ "default-mobile.handlebars->9->425", "default-mobile.handlebars->9->443", - "default.handlebars->27->1442", - "default.handlebars->27->1477" + "default.handlebars->27->1443", + "default.handlebars->27->1478" ] }, { @@ -7150,7 +7152,7 @@ "zh-cht": "檢查...", "xloc": [ "default.handlebars->27->1031", - "default.handlebars->27->2090" + "default.handlebars->27->2103" ] }, { @@ -7377,7 +7379,7 @@ "default-mobile.handlebars->9->318", "default-mobile.handlebars->9->320", "default-mobile.handlebars->9->59", - "default.handlebars->27->1563", + "default.handlebars->27->1564", "default.handlebars->27->898", "default.handlebars->27->900", "default.handlebars->27->902", @@ -7424,7 +7426,7 @@ "zh-chs": "全部清除", "zh-cht": "全部清除", "xloc": [ - "default.handlebars->27->2017" + "default.handlebars->27->2030" ] }, { @@ -7484,7 +7486,7 @@ "zh-chs": "清除此通知", "zh-cht": "清除此通知", "xloc": [ - "default.handlebars->27->2016" + "default.handlebars->27->2029" ] }, { @@ -7545,7 +7547,7 @@ "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ "default.handlebars->27->1303", - "default.handlebars->27->1514" + "default.handlebars->27->1515" ] }, { @@ -7585,7 +7587,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->27->1814" + "default.handlebars->27->1815" ] }, { @@ -7812,7 +7814,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->27->1574" + "default.handlebars->27->1575" ] }, { @@ -7901,8 +7903,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->27->1833", - "default.handlebars->27->1951" + "default.handlebars->27->1846", + "default.handlebars->27->1964" ] }, { @@ -7922,8 +7924,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->27->1839", - "default.handlebars->27->1963" + "default.handlebars->27->1852", + "default.handlebars->27->1976" ] }, { @@ -7964,7 +7966,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->1558" + "default.handlebars->27->1559" ] }, { @@ -7987,10 +7989,10 @@ "default-mobile.handlebars->9->276", "default-mobile.handlebars->9->405", "default.handlebars->27->1392", - "default.handlebars->27->1725", - "default.handlebars->27->1804", - "default.handlebars->27->1853", - "default.handlebars->27->1949", + "default.handlebars->27->1726", + "default.handlebars->27->1805", + "default.handlebars->27->1866", + "default.handlebars->27->1962", "default.handlebars->27->467", "default.handlebars->27->768", "default.handlebars->27->777" @@ -8074,7 +8076,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->27->1724" + "default.handlebars->27->1725" ] }, { @@ -8114,7 +8116,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->27->1803" + "default.handlebars->27->1804" ] }, { @@ -8134,7 +8136,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1948" + "default.handlebars->27->1961" ] }, { @@ -8154,7 +8156,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->27->1856" + "default.handlebars->27->1869" ] }, { @@ -8174,7 +8176,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->27->1978" + "default.handlebars->27->1991" ] }, { @@ -8255,7 +8257,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1557" + "default.handlebars->27->1558" ] }, { @@ -8275,8 +8277,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1846", - "default.handlebars->27->1969" + "default.handlebars->27->1859", + "default.handlebars->27->1982" ] }, { @@ -8296,8 +8298,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1848", - "default.handlebars->27->1982" + "default.handlebars->27->1861", + "default.handlebars->27->1995" ] }, { @@ -8317,7 +8319,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1971" + "default.handlebars->27->1984" ] }, { @@ -8337,7 +8339,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1974" + "default.handlebars->27->1987" ] }, { @@ -8357,8 +8359,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->27->1972", - "default.handlebars->27->1975" + "default.handlebars->27->1985", + "default.handlebars->27->1988" ] }, { @@ -8450,7 +8452,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->27->1486" + "default.handlebars->27->1487" ] }, { @@ -8470,7 +8472,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->27->1488" + "default.handlebars->27->1489" ] }, { @@ -8700,7 +8702,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->27->2035" + "default.handlebars->27->2048" ] }, { @@ -8720,7 +8722,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->27->2040" + "default.handlebars->27->2053" ] }, { @@ -8810,7 +8812,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->27->2054" + "default.handlebars->27->2067" ] }, { @@ -8830,7 +8832,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->27->2082" + "default.handlebars->27->2095" ] }, { @@ -8891,7 +8893,7 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->9->244", - "default.handlebars->27->1521", + "default.handlebars->27->1522", "default.handlebars->27->230", "default.handlebars->27->620", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -8980,7 +8982,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->27->2068" + "default.handlebars->27->2081" ] }, { @@ -9137,8 +9139,8 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->27->1526", - "default.handlebars->27->1545", + "default.handlebars->27->1527", + "default.handlebars->27->1546", "default.handlebars->27->192", "default.handlebars->27->369" ] @@ -9241,7 +9243,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->27->1617" + "default.handlebars->27->1618" ] }, { @@ -9387,7 +9389,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->27->2067" + "default.handlebars->27->2080" ] }, { @@ -9427,7 +9429,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->27->1772", + "default.handlebars->27->1773", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" @@ -9470,7 +9472,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->27->1811" + "default.handlebars->27->1812" ] }, { @@ -9550,7 +9552,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->27->1610" + "default.handlebars->27->1611" ] }, { @@ -9570,7 +9572,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1736" + "default.handlebars->27->1737" ] }, { @@ -9612,7 +9614,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->27->1621" + "default.handlebars->27->1622" ] }, { @@ -9652,7 +9654,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->27->1885" + "default.handlebars->27->1898" ] }, { @@ -10105,10 +10107,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->27->1759", - "default.handlebars->27->1807", - "default.handlebars->27->1818", - "default.handlebars->27->1874" + "default.handlebars->27->1760", + "default.handlebars->27->1808", + "default.handlebars->27->1819", + "default.handlebars->27->1887" ] }, { @@ -10132,7 +10134,7 @@ "default-mobile.handlebars->9->301", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->27->1552", + "default.handlebars->27->1553", "default.handlebars->27->524", "default.handlebars->27->884", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -10182,7 +10184,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->27->1726" + "default.handlebars->27->1727" ] }, { @@ -10287,7 +10289,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->27->1924" + "default.handlebars->27->1937" ] }, { @@ -10307,8 +10309,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->27->1844", - "default.handlebars->27->1854" + "default.handlebars->27->1857", + "default.handlebars->27->1867" ] }, { @@ -10328,7 +10330,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->27->1805" + "default.handlebars->27->1806" ] }, { @@ -10348,7 +10350,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1947" + "default.handlebars->27->1960" ] }, { @@ -10369,7 +10371,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->27->1722", + "default.handlebars->27->1723", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -10410,7 +10412,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->27->1801" + "default.handlebars->27->1802" ] }, { @@ -10450,7 +10452,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->27->1612" + "default.handlebars->27->1613" ] }, { @@ -10472,7 +10474,7 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->303", - "default.handlebars->27->1554", + "default.handlebars->27->1555", "default.handlebars->27->886" ] }, @@ -10493,7 +10495,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->27->1852" + "default.handlebars->27->1865" ] }, { @@ -10515,7 +10517,7 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->302", - "default.handlebars->27->1553", + "default.handlebars->27->1554", "default.handlebars->27->885" ] }, @@ -10556,7 +10558,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->27->1611" + "default.handlebars->27->1612" ] }, { @@ -10576,7 +10578,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->27->1613" + "default.handlebars->27->1614" ] }, { @@ -10696,10 +10698,10 @@ "default.handlebars->27->1271", "default.handlebars->27->1308", "default.handlebars->27->1395", - "default.handlebars->27->1810", - "default.handlebars->27->1820", + "default.handlebars->27->1811", "default.handlebars->27->1821", - "default.handlebars->27->1850", + "default.handlebars->27->1822", + "default.handlebars->27->1863", "default.handlebars->27->565", "default.handlebars->27->566", "default.handlebars->27->77", @@ -10744,8 +10746,8 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->27->1400", - "default.handlebars->27->1994", + "default.handlebars->27->1401", + "default.handlebars->27->2007", "default.handlebars->27->530", "default.handlebars->27->856", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", @@ -10791,7 +10793,8 @@ "zh-cht": "桌面通知", "xloc": [ "default.handlebars->27->1322", - "default.handlebars->27->1900", + "default.handlebars->27->1826", + "default.handlebars->27->1913", "default.handlebars->27->601" ] }, @@ -10813,7 +10816,8 @@ "zh-cht": "桌面提示", "xloc": [ "default.handlebars->27->1321", - "default.handlebars->27->1899", + "default.handlebars->27->1825", + "default.handlebars->27->1912", "default.handlebars->27->600" ] }, @@ -10835,7 +10839,8 @@ "zh-cht": "桌面提示+工具欄", "xloc": [ "default.handlebars->27->1319", - "default.handlebars->27->1897", + "default.handlebars->27->1823", + "default.handlebars->27->1910", "default.handlebars->27->598" ] }, @@ -10878,7 +10883,8 @@ "zh-cht": "桌面工具欄", "xloc": [ "default.handlebars->27->1320", - "default.handlebars->27->1898", + "default.handlebars->27->1824", + "default.handlebars->27->1911", "default.handlebars->27->599" ] }, @@ -10982,9 +10988,9 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->27->1423", + "default.handlebars->27->1424", "default.handlebars->27->183", - "default.handlebars->27->1966", + "default.handlebars->27->1979", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -11033,14 +11039,14 @@ "zh-chs": "设备组", "zh-cht": "裝置群", "xloc": [ - "default.handlebars->27->1418", - "default.handlebars->27->1421", + "default.handlebars->27->1419", "default.handlebars->27->1422", - "default.handlebars->27->1673", - "default.handlebars->27->1836", - "default.handlebars->27->1842", - "default.handlebars->27->1954", - "default.handlebars->27->2003" + "default.handlebars->27->1423", + "default.handlebars->27->1674", + "default.handlebars->27->1849", + "default.handlebars->27->1855", + "default.handlebars->27->1967", + "default.handlebars->27->2016" ] }, { @@ -11061,7 +11067,7 @@ "zh-cht": "裝置群用戶", "xloc": [ "default-mobile.handlebars->9->450", - "default.handlebars->27->1484" + "default.handlebars->27->1485" ] }, { @@ -11082,11 +11088,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1689", - "default.handlebars->27->1795", - "default.handlebars->27->1823", - "default.handlebars->27->1894", - "default.handlebars->27->2038", + "default.handlebars->27->1690", + "default.handlebars->27->1796", + "default.handlebars->27->1836", + "default.handlebars->27->1907", + "default.handlebars->27->2051", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -11168,7 +11174,7 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->27->2002", + "default.handlebars->27->2015", "default.handlebars->27->286", "default.handlebars->27->809", "player.handlebars->3->9" @@ -11233,7 +11239,7 @@ "zh-cht": "裝置連接。", "xloc": [ "default.handlebars->27->1239", - "default.handlebars->27->1505" + "default.handlebars->27->1506" ] }, { @@ -11254,7 +11260,7 @@ "zh-cht": "裝置斷開連接。", "xloc": [ "default.handlebars->27->1240", - "default.handlebars->27->1506" + "default.handlebars->27->1507" ] }, { @@ -11274,7 +11280,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->27->1642" + "default.handlebars->27->1643" ] }, { @@ -11294,7 +11300,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->27->1643" + "default.handlebars->27->1644" ] }, { @@ -11314,7 +11320,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->27->1644" + "default.handlebars->27->1645" ] }, { @@ -11354,7 +11360,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->27->1639" + "default.handlebars->27->1640" ] }, { @@ -11374,7 +11380,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->27->1622" + "default.handlebars->27->1623" ] }, { @@ -11767,7 +11773,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->27->1624" + "default.handlebars->27->1625" ] }, { @@ -11804,8 +11810,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->27->1796", - "default.handlebars->27->1824" + "default.handlebars->27->1797", + "default.handlebars->27->1837" ] }, { @@ -11845,7 +11851,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->27->1655" + "default.handlebars->27->1656" ] }, { @@ -12045,7 +12051,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->27->1525" + "default.handlebars->27->1526" ] }, { @@ -12065,7 +12071,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1585" ] }, { @@ -12085,7 +12091,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->27->1592" + "default.handlebars->27->1593" ] }, { @@ -12125,10 +12131,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->27->1760", - "default.handlebars->27->1808", - "default.handlebars->27->1817", - "default.handlebars->27->1873", + "default.handlebars->27->1761", + "default.handlebars->27->1809", + "default.handlebars->27->1818", + "default.handlebars->27->1886", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -12391,7 +12397,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->27->1678", + "default.handlebars->27->1679", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -12592,7 +12598,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->27->1679" + "default.handlebars->27->1680" ] }, { @@ -12612,7 +12618,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1744" + "default.handlebars->27->1745" ] }, { @@ -12693,7 +12699,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->27->1615" + "default.handlebars->27->1616" ] }, { @@ -12733,7 +12739,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->27->2034" + "default.handlebars->27->2047" ] }, { @@ -12773,7 +12779,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->27->1812" + "default.handlebars->27->1813" ] }, { @@ -12810,8 +12816,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->27->1988", - "default.handlebars->27->2008", + "default.handlebars->27->2001", + "default.handlebars->27->2021", "player.handlebars->3->2" ] }, @@ -13166,9 +13172,9 @@ "default-mobile.handlebars->9->411", "default-mobile.handlebars->9->429", "default.handlebars->27->1396", - "default.handlebars->27->1427", - "default.handlebars->27->1450", - "default.handlebars->27->1462" + "default.handlebars->27->1428", + "default.handlebars->27->1451", + "default.handlebars->27->1463" ] }, { @@ -13188,7 +13194,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->27->1413" + "default.handlebars->27->1414" ] }, { @@ -13208,8 +13214,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->27->1447", - "default.handlebars->27->1459" + "default.handlebars->27->1448", + "default.handlebars->27->1460" ] }, { @@ -13250,7 +13256,7 @@ "zh-cht": "編輯裝置筆記", "xloc": [ "default-mobile.handlebars->9->423", - "default.handlebars->27->1440" + "default.handlebars->27->1441" ] }, { @@ -13270,8 +13276,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->27->1452", - "default.handlebars->27->1454" + "default.handlebars->27->1453", + "default.handlebars->27->1455" ] }, { @@ -13375,7 +13381,7 @@ "zh-cht": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->436", - "default.handlebars->27->1469" + "default.handlebars->27->1470" ] }, { @@ -13415,7 +13421,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->27->1460" + "default.handlebars->27->1461" ] }, { @@ -13435,7 +13441,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->27->1455" + "default.handlebars->27->1456" ] }, { @@ -13455,7 +13461,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->27->1851" + "default.handlebars->27->1864" ] }, { @@ -13475,7 +13481,13 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->27->1457" + "default.handlebars->27->1458" + ] + }, + { + "en": "Edit User Group User Consent", + "xloc": [ + "default.handlebars->27->1400" ] }, { @@ -13537,11 +13549,11 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1762", - "default.handlebars->27->1877", - "default.handlebars->27->1879", - "default.handlebars->27->1919", - "default.handlebars->27->1935", + "default.handlebars->27->1763", + "default.handlebars->27->1890", + "default.handlebars->27->1892", + "default.handlebars->27->1932", + "default.handlebars->27->1948", "default.handlebars->27->336", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -13695,7 +13707,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->27->1708" + "default.handlebars->27->1709" ] }, { @@ -13715,8 +13727,8 @@ "zh-chs": "电邮已验证", "zh-cht": "電郵已驗證", "xloc": [ - "default.handlebars->27->1709", - "default.handlebars->27->1871" + "default.handlebars->27->1710", + "default.handlebars->27->1884" ] }, { @@ -13736,7 +13748,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->27->1768" + "default.handlebars->27->1769" ] }, { @@ -13756,7 +13768,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->27->1872" + "default.handlebars->27->1885" ] }, { @@ -13820,7 +13832,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->27->1769" + "default.handlebars->27->1770" ] }, { @@ -13840,7 +13852,7 @@ "zh-chs": "电邮/短信流量", "zh-cht": "電郵/短信流量", "xloc": [ - "default.handlebars->27->2076" + "default.handlebars->27->2089" ] }, { @@ -13886,7 +13898,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1490" + "default.handlebars->27->1491" ] }, { @@ -13967,7 +13979,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->27->2010" + "default.handlebars->27->2023" ] }, { @@ -13987,7 +13999,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->27->1654" + "default.handlebars->27->1655" ] }, { @@ -14027,7 +14039,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->27->2007" + "default.handlebars->27->2020" ] }, { @@ -14047,7 +14059,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->27->1577" + "default.handlebars->27->1578" ] }, { @@ -14067,7 +14079,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->27->1578" + "default.handlebars->27->1579" ] }, { @@ -14087,7 +14099,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->27->1575" + "default.handlebars->27->1576" ] }, { @@ -14107,7 +14119,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->27->1576" + "default.handlebars->27->1577" ] }, { @@ -14408,7 +14420,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1773" + "default.handlebars->27->1774" ] }, { @@ -14631,7 +14643,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->27->1684" + "default.handlebars->27->1685" ] }, { @@ -14817,7 +14829,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->27->2061" + "default.handlebars->27->2074" ] }, { @@ -14917,7 +14929,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->27->1600" + "default.handlebars->27->1601" ] }, { @@ -14937,7 +14949,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->27->1607" + "default.handlebars->27->1608" ] }, { @@ -15165,8 +15177,8 @@ "xloc": [ "default-mobile.handlebars->9->167", "default-mobile.handlebars->9->257", - "default.handlebars->27->1407", - "default.handlebars->27->1995", + "default.handlebars->27->1408", + "default.handlebars->27->2008", "default.handlebars->27->253", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -15210,7 +15222,8 @@ "zh-cht": "檔案通知", "xloc": [ "default.handlebars->27->1326", - "default.handlebars->27->1904", + "default.handlebars->27->1830", + "default.handlebars->27->1917", "default.handlebars->27->605" ] }, @@ -15232,7 +15245,8 @@ "zh-cht": "檔案提示", "xloc": [ "default.handlebars->27->1325", - "default.handlebars->27->1903", + "default.handlebars->27->1829", + "default.handlebars->27->1916", "default.handlebars->27->604" ] }, @@ -15276,7 +15290,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->27->1573" + "default.handlebars->27->1574" ] }, { @@ -15443,8 +15457,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->27->1767", - "default.handlebars->27->1944" + "default.handlebars->27->1768", + "default.handlebars->27->1957" ] }, { @@ -15527,7 +15541,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->27->1675" + "default.handlebars->27->1676" ] }, { @@ -15568,8 +15582,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->27->2019", - "default.handlebars->27->2021" + "default.handlebars->27->2032", + "default.handlebars->27->2034" ] }, { @@ -15795,8 +15809,8 @@ "default-mobile.handlebars->9->410", "default-mobile.handlebars->9->428", "default.handlebars->27->1280", - "default.handlebars->27->1426", - "default.handlebars->27->1779" + "default.handlebars->27->1427", + "default.handlebars->27->1780" ] }, { @@ -15816,7 +15830,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1461" + "default.handlebars->27->1462" ] }, { @@ -15915,7 +15929,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->27->1865" + "default.handlebars->27->1878" ] }, { @@ -16303,7 +16317,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1588" ] }, { @@ -16534,8 +16548,8 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->27->1723", - "default.handlebars->27->1802", + "default.handlebars->27->1724", + "default.handlebars->27->1803", "default.handlebars->27->465", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -16559,7 +16573,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->27->1671" + "default.handlebars->27->1672" ] }, { @@ -16579,7 +16593,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->27->1819" + "default.handlebars->27->1820" ] }, { @@ -16599,7 +16613,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->27->1828" + "default.handlebars->27->1841" ] }, { @@ -16619,7 +16633,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->27->1425" + "default.handlebars->27->1426" ] }, { @@ -16639,7 +16653,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->27->1424" + "default.handlebars->27->1425" ] }, { @@ -16829,7 +16843,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->27->2063" + "default.handlebars->27->2076" ] }, { @@ -16849,7 +16863,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->27->2062" + "default.handlebars->27->2075" ] }, { @@ -17143,7 +17157,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->27->1560" + "default.handlebars->27->1561" ] }, { @@ -17860,8 +17874,8 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->27->1492", - "default.handlebars->27->1499", + "default.handlebars->27->1493", + "default.handlebars->27->1500", "default.handlebars->27->351", "default.handlebars->27->365", "default.handlebars->27->379" @@ -17905,7 +17919,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->27->2059" + "default.handlebars->27->2072" ] }, { @@ -17950,9 +17964,9 @@ "default-mobile.handlebars->9->241", "default.handlebars->27->1333", "default.handlebars->27->1343", - "default.handlebars->27->1511", - "default.handlebars->27->1519", - "default.handlebars->27->2081", + "default.handlebars->27->1512", + "default.handlebars->27->1520", + "default.handlebars->27->2094", "default.handlebars->27->532", "default.handlebars->27->587", "default.handlebars->27->615" @@ -18121,7 +18135,7 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->27->1997", + "default.handlebars->27->2010", "player.handlebars->3->14" ] }, @@ -18162,7 +18176,7 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->27->1996", + "default.handlebars->27->2009", "player.handlebars->3->13" ] }, @@ -18227,7 +18241,7 @@ "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ "default.handlebars->27->1241", - "default.handlebars->27->1507" + "default.handlebars->27->1508" ] }, { @@ -18699,8 +18713,8 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->27->1495", - "default.handlebars->27->1502", + "default.handlebars->27->1496", + "default.handlebars->27->1503", "default.handlebars->27->354", "default.handlebars->27->368", "default.handlebars->27->382" @@ -18763,7 +18777,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->27->2033" + "default.handlebars->27->2046" ] }, { @@ -18783,7 +18797,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->27->2027" + "default.handlebars->27->2040" ] }, { @@ -18803,8 +18817,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->27->1741", - "default.handlebars->27->1743" + "default.handlebars->27->1742", + "default.handlebars->27->1744" ] }, { @@ -18824,7 +18838,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->27->1739" + "default.handlebars->27->1740" ] }, { @@ -18844,7 +18858,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->2025" + "default.handlebars->27->2038" ] }, { @@ -18864,7 +18878,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->2026" + "default.handlebars->27->2039" ] }, { @@ -18991,7 +19005,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->27->1717" + "default.handlebars->27->1718" ] }, { @@ -19068,7 +19082,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->27->1497" + "default.handlebars->27->1498" ] }, { @@ -19131,10 +19145,10 @@ "zh-cht": "邀請碼", "xloc": [ "default.handlebars->27->1337", - "default.handlebars->27->1491", - "default.handlebars->27->1496", - "default.handlebars->27->1498", - "default.handlebars->27->1503" + "default.handlebars->27->1492", + "default.handlebars->27->1497", + "default.handlebars->27->1499", + "default.handlebars->27->1504" ] }, { @@ -19275,7 +19289,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->27->1677" + "default.handlebars->27->1678" ] }, { @@ -19295,8 +19309,8 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->27->1682", - "default.handlebars->27->1747", + "default.handlebars->27->1683", + "default.handlebars->27->1748", "default.handlebars->27->493" ] }, @@ -19337,7 +19351,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->27->1570" + "default.handlebars->27->1571" ] }, { @@ -19518,7 +19532,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->27->1585" + "default.handlebars->27->1586" ] }, { @@ -19933,7 +19947,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->27->1690" + "default.handlebars->27->1691" ] }, { @@ -19953,7 +19967,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->27->1886" + "default.handlebars->27->1899" ] }, { @@ -20025,7 +20039,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1890" + "default.handlebars->27->1903" ] }, { @@ -20085,7 +20099,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->27->1700" + "default.handlebars->27->1701" ] }, { @@ -20286,7 +20300,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->27->1930" + "default.handlebars->27->1943" ] }, { @@ -20331,7 +20345,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->27->1571" + "default.handlebars->27->1572" ] }, { @@ -20351,7 +20365,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->27->2098" + "default.handlebars->27->2111" ] }, { @@ -20414,7 +20428,7 @@ "zh-cht": "有限輸入", "xloc": [ "default-mobile.handlebars->9->441", - "default.handlebars->27->1475", + "default.handlebars->27->1476", "default.handlebars->27->678", "default.handlebars->27->697" ] @@ -20437,7 +20451,7 @@ "zh-cht": "僅有限輸入", "xloc": [ "default-mobile.handlebars->9->416", - "default.handlebars->27->1432" + "default.handlebars->27->1433" ] }, { @@ -20909,7 +20923,7 @@ "default.handlebars->27->1019", "default.handlebars->27->1296", "default.handlebars->27->1300", - "default.handlebars->27->1984", + "default.handlebars->27->1997", "default.handlebars->27->781" ] }, @@ -20992,7 +21006,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->27->1593" + "default.handlebars->27->1594" ] }, { @@ -21012,7 +21026,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->27->1594" + "default.handlebars->27->1595" ] }, { @@ -21093,7 +21107,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1787" + "default.handlebars->27->1788" ] }, { @@ -21113,8 +21127,8 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->27->1444", - "default.handlebars->27->1790" + "default.handlebars->27->1445", + "default.handlebars->27->1791" ] }, { @@ -21134,7 +21148,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1720" + "default.handlebars->27->1721" ] }, { @@ -21154,7 +21168,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->27->1701" + "default.handlebars->27->1702" ] }, { @@ -21174,7 +21188,7 @@ "zh-chs": "被锁定账户", "zh-cht": "被鎖定賬戶", "xloc": [ - "default.handlebars->27->1862" + "default.handlebars->27->1875" ] }, { @@ -21194,7 +21208,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->27->1619" + "default.handlebars->27->1620" ] }, { @@ -21818,7 +21832,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->27->2070" + "default.handlebars->27->2083" ] }, { @@ -21921,8 +21935,8 @@ "xloc": [ "default-mobile.handlebars->9->413", "default-mobile.handlebars->9->431", - "default.handlebars->27->1429", - "default.handlebars->27->1464" + "default.handlebars->27->1430", + "default.handlebars->27->1465" ] }, { @@ -21944,8 +21958,8 @@ "xloc": [ "default-mobile.handlebars->9->412", "default-mobile.handlebars->9->430", - "default.handlebars->27->1428", - "default.handlebars->27->1463" + "default.handlebars->27->1429", + "default.handlebars->27->1464" ] }, { @@ -21985,7 +21999,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->27->1785" + "default.handlebars->27->1786" ] }, { @@ -22025,7 +22039,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->27->1784" + "default.handlebars->27->1785" ] }, { @@ -22045,7 +22059,7 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->27->1783", + "default.handlebars->27->1784", "default.handlebars->27->691" ] }, @@ -22213,7 +22227,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->27->1706" + "default.handlebars->27->1707" ] }, { @@ -22334,7 +22348,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->27->2031" + "default.handlebars->27->2044" ] }, { @@ -22399,7 +22413,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->27->2060" + "default.handlebars->27->2073" ] }, { @@ -22420,7 +22434,7 @@ "zh-cht": "記憶體", "xloc": [ "default-mobile.handlebars->9->384", - "default.handlebars->27->2051", + "default.handlebars->27->2064", "default.handlebars->27->985", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] @@ -22475,7 +22489,7 @@ "zh-cht": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->420", - "default.handlebars->27->1437" + "default.handlebars->27->1438" ] }, { @@ -22580,7 +22594,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->27->2072" + "default.handlebars->27->2085" ] }, { @@ -22600,7 +22614,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->27->2073" + "default.handlebars->27->2086" ] }, { @@ -22721,7 +22735,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->27->2071" + "default.handlebars->27->2084" ] }, { @@ -23050,7 +23064,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->27->2069" + "default.handlebars->27->2082" ] }, { @@ -23233,7 +23247,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->27->2097" + "default.handlebars->27->2110" ] }, { @@ -23314,7 +23328,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->27->1618" + "default.handlebars->27->1619" ] }, { @@ -23334,7 +23348,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->27->1651" + "default.handlebars->27->1652" ] }, { @@ -23374,7 +23388,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->27->2009" + "default.handlebars->27->2022" ] }, { @@ -23726,12 +23740,12 @@ "default.handlebars->27->1267", "default.handlebars->27->1307", "default.handlebars->27->1394", - "default.handlebars->27->1688", - "default.handlebars->27->1793", - "default.handlebars->27->1809", - "default.handlebars->27->1816", - "default.handlebars->27->1849", - "default.handlebars->27->1868", + "default.handlebars->27->1689", + "default.handlebars->27->1794", + "default.handlebars->27->1810", + "default.handlebars->27->1817", + "default.handlebars->27->1862", + "default.handlebars->27->1881", "default.handlebars->27->555", "default.handlebars->27->76", "default.handlebars->27->840", @@ -23780,7 +23794,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1775" + "default.handlebars->27->1776" ] }, { @@ -23940,7 +23954,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->27->1658" + "default.handlebars->27->1659" ] }, { @@ -24005,7 +24019,7 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->299", - "default.handlebars->27->1550", + "default.handlebars->27->1551", "default.handlebars->27->882", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -24173,7 +24187,7 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->27->1471", + "default.handlebars->27->1472", "default.handlebars->27->679", "default.handlebars->27->698" ] @@ -24195,7 +24209,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->27->1433" + "default.handlebars->27->1434" ] }, { @@ -24215,8 +24229,8 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->27->1664", - "default.handlebars->27->1983", + "default.handlebars->27->1665", + "default.handlebars->27->1996", "default.handlebars->27->917" ] }, @@ -24238,7 +24252,7 @@ "zh-cht": "不能存取檔案", "xloc": [ "default-mobile.handlebars->9->418", - "default.handlebars->27->1435" + "default.handlebars->27->1436" ] }, { @@ -24259,7 +24273,7 @@ "zh-cht": "沒有檔案", "xloc": [ "default-mobile.handlebars->9->439", - "default.handlebars->27->1473", + "default.handlebars->27->1474", "default.handlebars->27->676", "default.handlebars->27->695" ] @@ -24304,8 +24318,8 @@ "xloc": [ "default-mobile.handlebars->9->419", "default-mobile.handlebars->9->440", - "default.handlebars->27->1436", - "default.handlebars->27->1474" + "default.handlebars->27->1437", + "default.handlebars->27->1475" ] }, { @@ -24385,7 +24399,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->27->1831" + "default.handlebars->27->1844" ] }, { @@ -24405,7 +24419,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->27->1788" + "default.handlebars->27->1789" ] }, { @@ -24451,7 +24465,7 @@ "default-mobile.handlebars->9->402", "default-mobile.handlebars->9->445", "default.handlebars->27->1281", - "default.handlebars->27->1479", + "default.handlebars->27->1480", "default.handlebars->27->688", "default.handlebars->27->707" ] @@ -24496,7 +24510,7 @@ "zh-cht": "沒有終端", "xloc": [ "default-mobile.handlebars->9->438", - "default.handlebars->27->1472", + "default.handlebars->27->1473", "default.handlebars->27->675", "default.handlebars->27->694" ] @@ -24519,7 +24533,7 @@ "zh-cht": "不能訪問終端", "xloc": [ "default-mobile.handlebars->9->417", - "default.handlebars->27->1434" + "default.handlebars->27->1435" ] }, { @@ -24539,7 +24553,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1789" + "default.handlebars->27->1790" ] }, { @@ -24559,8 +24573,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->27->1837", - "default.handlebars->27->1955" + "default.handlebars->27->1850", + "default.handlebars->27->1968" ] }, { @@ -24679,8 +24693,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->27->1843", - "default.handlebars->27->1967" + "default.handlebars->27->1856", + "default.handlebars->27->1980" ] }, { @@ -24700,7 +24714,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->27->1522" + "default.handlebars->27->1523" ] }, { @@ -24782,7 +24796,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->27->1792" + "default.handlebars->27->1793" ] }, { @@ -24903,7 +24917,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->27->1985" + "default.handlebars->27->1998" ] }, { @@ -24923,7 +24937,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->27->1863" + "default.handlebars->27->1876" ] }, { @@ -24943,7 +24957,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->27->1961" + "default.handlebars->27->1974" ] }, { @@ -24963,7 +24977,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1696" + "default.handlebars->27->1697" ] }, { @@ -25059,18 +25073,19 @@ "default.handlebars->27->1329", "default.handlebars->27->1334", "default.handlebars->27->1336", - "default.handlebars->27->1513", - "default.handlebars->27->1532", - "default.handlebars->27->1537", - "default.handlebars->27->1672", + "default.handlebars->27->1514", + "default.handlebars->27->1533", + "default.handlebars->27->1538", + "default.handlebars->27->1673", "default.handlebars->27->174", - "default.handlebars->27->1813", - "default.handlebars->27->1815", - "default.handlebars->27->1882", + "default.handlebars->27->1814", + "default.handlebars->27->1816", + "default.handlebars->27->1833", "default.handlebars->27->189", - "default.handlebars->27->1891", "default.handlebars->27->1895", - "default.handlebars->27->1907", + "default.handlebars->27->1904", + "default.handlebars->27->1908", + "default.handlebars->27->1920", "default.handlebars->27->205", "default.handlebars->27->206", "default.handlebars->27->552", @@ -25225,8 +25240,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->27->1509", - "default.handlebars->27->1517" + "default.handlebars->27->1510", + "default.handlebars->27->1518" ] }, { @@ -25267,7 +25282,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->27->2001" + "default.handlebars->27->2014" ] }, { @@ -25287,8 +25302,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->27->1869", - "default.handlebars->27->1870" + "default.handlebars->27->1882", + "default.handlebars->27->1883" ] }, { @@ -25308,7 +25323,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->27->1937" + "default.handlebars->27->1950" ] }, { @@ -25329,7 +25344,7 @@ "zh-cht": "筆記", "xloc": [ "default.handlebars->27->1344", - "default.handlebars->27->1915", + "default.handlebars->27->1928", "default.handlebars->27->624", "default.handlebars->27->684", "default.handlebars->27->703", @@ -25374,7 +25389,7 @@ "zh-cht": "通知設定", "xloc": [ "default.handlebars->27->1242", - "default.handlebars->27->1508", + "default.handlebars->27->1509", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -25395,7 +25410,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->27->1504" + "default.handlebars->27->1505" ] }, { @@ -25456,7 +25471,7 @@ "zh-cht": "通知", "xloc": [ "default.handlebars->27->186", - "default.handlebars->27->1921" + "default.handlebars->27->1934" ] }, { @@ -25496,9 +25511,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->27->1401", - "default.handlebars->27->1405", - "default.handlebars->27->1408" + "default.handlebars->27->1402", + "default.handlebars->27->1406", + "default.handlebars->27->1409" ] }, { @@ -25518,7 +25533,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->27->1735" + "default.handlebars->27->1736" ] }, { @@ -25610,7 +25625,7 @@ "zh-chs": "发生在{0}", "zh-cht": "發生在{0}", "xloc": [ - "default.handlebars->27->2015" + "default.handlebars->27->2028" ] }, { @@ -25636,7 +25651,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->27->1693" + "default.handlebars->27->1694" ] }, { @@ -25677,7 +25692,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->27->1669" + "default.handlebars->27->1670" ] }, { @@ -25740,7 +25755,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->27->1692" + "default.handlebars->27->1693" ] }, { @@ -25924,7 +25939,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->27->1586" + "default.handlebars->27->1587" ] }, { @@ -25970,8 +25985,8 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->27->1719", - "default.handlebars->27->1800", + "default.handlebars->27->1720", + "default.handlebars->27->1801", "default.handlebars->27->455", "default.handlebars->27->478", "default.handlebars->27->746" @@ -26179,7 +26194,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->27->1707" + "default.handlebars->27->1708" ] }, { @@ -26255,7 +26270,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->27->1866" + "default.handlebars->27->1879" ] }, { @@ -26296,12 +26311,12 @@ "zh-cht": "密碼", "xloc": [ "default-mobile.handlebars->9->269", - "default.handlebars->27->1763", "default.handlebars->27->1764", - "default.handlebars->27->1887", - "default.handlebars->27->1889", - "default.handlebars->27->1940", - "default.handlebars->27->1941", + "default.handlebars->27->1765", + "default.handlebars->27->1900", + "default.handlebars->27->1902", + "default.handlebars->27->1953", + "default.handlebars->27->1954", "default.handlebars->27->291", "default.handlebars->27->322", "default.handlebars->27->756", @@ -26445,7 +26460,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->27->1942" + "default.handlebars->27->1955" ] }, { @@ -26591,7 +26606,7 @@ "default-mobile.handlebars->9->312", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->27->1559", + "default.handlebars->27->1560", "default.handlebars->27->870", "default.handlebars->27->896", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", @@ -26855,7 +26870,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->27->1591" + "default.handlebars->27->1592" ] }, { @@ -26876,8 +26891,8 @@ "zh-cht": "權限", "xloc": [ "default-mobile.handlebars->9->448", - "default.handlebars->27->1482", - "default.handlebars->27->1691" + "default.handlebars->27->1483", + "default.handlebars->27->1692" ] }, { @@ -26923,7 +26938,7 @@ "default.handlebars->27->1011", "default.handlebars->27->1014", "default.handlebars->27->159", - "default.handlebars->27->1932" + "default.handlebars->27->1945" ] }, { @@ -26943,7 +26958,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->27->1881" + "default.handlebars->27->1894" ] }, { @@ -26965,7 +26980,7 @@ "xloc": [ "default-mobile.handlebars->9->66", "default.handlebars->27->1013", - "default.handlebars->27->1931" + "default.handlebars->27->1944" ] }, { @@ -27125,7 +27140,7 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->27->196", - "default.handlebars->27->2094" + "default.handlebars->27->2107" ] }, { @@ -27410,7 +27425,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->27->1515", + "default.handlebars->27->1516", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -27520,7 +27535,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->27->2000" + "default.handlebars->27->2013" ] }, { @@ -27666,7 +27681,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->27->1583" + "default.handlebars->27->1584" ] }, { @@ -27726,9 +27741,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->27->1402", - "default.handlebars->27->1406", - "default.handlebars->27->1409" + "default.handlebars->27->1403", + "default.handlebars->27->1407", + "default.handlebars->27->1410" ] }, { @@ -27748,7 +27763,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->27->1998", + "default.handlebars->27->2011", "player.handlebars->3->16" ] }, @@ -27808,7 +27823,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->1544" + "default.handlebars->27->1545" ] }, { @@ -28115,7 +28130,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->27->2064" + "default.handlebars->27->2077" ] }, { @@ -28135,7 +28150,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->27->1765" + "default.handlebars->27->1766" ] }, { @@ -28195,9 +28210,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->27->1878", - "default.handlebars->27->1880", - "default.handlebars->27->1933" + "default.handlebars->27->1891", + "default.handlebars->27->1893", + "default.handlebars->27->1946" ] }, { @@ -28217,7 +28232,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->27->1774" + "default.handlebars->27->1775" ] }, { @@ -28270,7 +28285,7 @@ { "en": "Record sessions", "xloc": [ - "default.handlebars->27->1412" + "default.handlebars->27->1413" ] }, { @@ -28290,7 +28305,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->27->2012" + "default.handlebars->27->2025" ] }, { @@ -28332,7 +28347,7 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->300", - "default.handlebars->27->1551", + "default.handlebars->27->1552", "default.handlebars->27->883" ] }, @@ -28445,7 +28460,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->27->2043" + "default.handlebars->27->2056" ] }, { @@ -28465,7 +28480,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->27->2036" + "default.handlebars->27->2049" ] }, { @@ -28485,8 +28500,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->27->2042", - "default.handlebars->27->2058" + "default.handlebars->27->2055", + "default.handlebars->27->2071" ] }, { @@ -28645,8 +28660,8 @@ "xloc": [ "default-mobile.handlebars->9->414", "default-mobile.handlebars->9->432", - "default.handlebars->27->1430", - "default.handlebars->27->1465" + "default.handlebars->27->1431", + "default.handlebars->27->1466" ] }, { @@ -28689,8 +28704,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->27->1597", - "default.handlebars->27->1603" + "default.handlebars->27->1598", + "default.handlebars->27->1604" ] }, { @@ -28710,7 +28725,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->27->1598" + "default.handlebars->27->1599" ] }, { @@ -28730,7 +28745,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->27->1604" + "default.handlebars->27->1605" ] }, { @@ -28750,9 +28765,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->27->1595", - "default.handlebars->27->1599", - "default.handlebars->27->1605" + "default.handlebars->27->1596", + "default.handlebars->27->1600", + "default.handlebars->27->1606" ] }, { @@ -28875,8 +28890,8 @@ "xloc": [ "default-mobile.handlebars->9->415", "default-mobile.handlebars->9->437", - "default.handlebars->27->1431", - "default.handlebars->27->1470" + "default.handlebars->27->1432", + "default.handlebars->27->1471" ] }, { @@ -29011,8 +29026,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->27->1847", - "default.handlebars->27->1981" + "default.handlebars->27->1860", + "default.handlebars->27->1994" ] }, { @@ -29032,8 +29047,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->27->1845", - "default.handlebars->27->1968" + "default.handlebars->27->1858", + "default.handlebars->27->1981" ] }, { @@ -29070,7 +29085,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->27->1977" + "default.handlebars->27->1990" ] }, { @@ -29090,8 +29105,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->27->1487", - "default.handlebars->27->1973" + "default.handlebars->27->1488", + "default.handlebars->27->1986" ] }, { @@ -29111,7 +29126,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->27->1855" + "default.handlebars->27->1868" ] }, { @@ -29131,8 +29146,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->27->1485", - "default.handlebars->27->1970" + "default.handlebars->27->1486", + "default.handlebars->27->1983" ] }, { @@ -29152,7 +29167,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->27->1945" + "default.handlebars->27->1958" ] }, { @@ -29172,7 +29187,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1766" + "default.handlebars->27->1767" ] }, { @@ -29192,7 +29207,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->27->1410" + "default.handlebars->27->1411" ] }, { @@ -29293,7 +29308,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->27->1923" + "default.handlebars->27->1936" ] }, { @@ -29313,7 +29328,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->27->1959" + "default.handlebars->27->1972" ] }, { @@ -29333,7 +29348,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->27->1841" + "default.handlebars->27->1854" ] }, { @@ -29353,7 +29368,7 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->27->1835", + "default.handlebars->27->1848", "default.handlebars->27->668" ] }, @@ -29375,9 +29390,9 @@ "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ "default.handlebars->27->1361", - "default.handlebars->27->1829", - "default.handlebars->27->1953", - "default.handlebars->27->1965", + "default.handlebars->27->1842", + "default.handlebars->27->1966", + "default.handlebars->27->1978", "default.handlebars->27->669" ] }, @@ -29398,7 +29413,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->27->1657" + "default.handlebars->27->1658" ] }, { @@ -29418,7 +29433,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->27->1653" + "default.handlebars->27->1654" ] }, { @@ -29438,7 +29453,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->27->1663" + "default.handlebars->27->1664" ] }, { @@ -29458,7 +29473,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->27->1660" + "default.handlebars->27->1661" ] }, { @@ -29478,9 +29493,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->27->1626", - "default.handlebars->27->1647", - "default.handlebars->27->1652" + "default.handlebars->27->1627", + "default.handlebars->27->1648", + "default.handlebars->27->1653" ] }, { @@ -29500,7 +29515,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->27->1636" + "default.handlebars->27->1637" ] }, { @@ -29520,7 +29535,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->27->1649" + "default.handlebars->27->1650" ] }, { @@ -29540,8 +29555,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->27->1628", - "default.handlebars->27->1638" + "default.handlebars->27->1629", + "default.handlebars->27->1639" ] }, { @@ -29565,7 +29580,7 @@ "default-mobile.handlebars->9->304", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->27->1555", + "default.handlebars->27->1556", "default.handlebars->27->521", "default.handlebars->27->887", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -29590,7 +29605,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->27->1614" + "default.handlebars->27->1615" ] }, { @@ -29610,7 +29625,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->27->1670" + "default.handlebars->27->1671" ] }, { @@ -29630,7 +29645,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->27->1665" + "default.handlebars->27->1666" ] }, { @@ -29671,8 +29686,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1771", - "default.handlebars->27->1943" + "default.handlebars->27->1772", + "default.handlebars->27->1956" ] }, { @@ -29964,7 +29979,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->27->1867" + "default.handlebars->27->1880" ] }, { @@ -30046,7 +30061,7 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->294", - "default.handlebars->27->1523", + "default.handlebars->27->1524", "default.handlebars->27->877" ] }, @@ -30306,7 +30321,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->27->1590" + "default.handlebars->27->1591" ] }, { @@ -30366,8 +30381,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->27->1912", - "default.handlebars->27->1917", + "default.handlebars->27->1925", + "default.handlebars->27->1930", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", @@ -30392,7 +30407,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->27->1929" + "default.handlebars->27->1942" ] }, { @@ -30942,7 +30957,7 @@ "xloc": [ "default-mobile.handlebars->9->270", "default-mobile.handlebars->9->363", - "default.handlebars->27->1913", + "default.handlebars->27->1926", "default.handlebars->27->292", "default.handlebars->27->757", "default.handlebars->27->964" @@ -30965,7 +30980,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->27->1910" + "default.handlebars->27->1923" ] }, { @@ -31005,9 +31020,9 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->27->1547", - "default.handlebars->27->1715", - "default.handlebars->27->1798", + "default.handlebars->27->1548", + "default.handlebars->27->1716", + "default.handlebars->27->1799", "default.handlebars->27->450", "default.handlebars->27->879", "default.handlebars->27->881", @@ -31036,9 +31051,9 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->27->1546", - "default.handlebars->27->1714", - "default.handlebars->27->1797", + "default.handlebars->27->1547", + "default.handlebars->27->1715", + "default.handlebars->27->1798", "default.handlebars->27->449", "default.handlebars->27->880", "default.handlebars->meshContextMenu->cxselectnone" @@ -31141,8 +31156,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->27->1718", - "default.handlebars->27->1799" + "default.handlebars->27->1719", + "default.handlebars->27->1800" ] }, { @@ -31205,7 +31220,7 @@ "zh-cht": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->442", - "default.handlebars->27->1476" + "default.handlebars->27->1477" ] }, { @@ -31248,7 +31263,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->27->1729" + "default.handlebars->27->1730" ] }, { @@ -31309,7 +31324,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->27->1727" + "default.handlebars->27->1728" ] }, { @@ -31329,7 +31344,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->27->1918" + "default.handlebars->27->1931" ] }, { @@ -31349,7 +31364,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->27->1920" + "default.handlebars->27->1933" ] }, { @@ -31369,7 +31384,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1826" + "default.handlebars->27->1839" ] }, { @@ -31389,7 +31404,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1730" + "default.handlebars->27->1731" ] }, { @@ -31409,7 +31424,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->27->1710" + "default.handlebars->27->1711" ] }, { @@ -31449,7 +31464,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->27->1770" + "default.handlebars->27->1771" ] }, { @@ -31571,7 +31586,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->27->1922" + "default.handlebars->27->1935" ] }, { @@ -31632,7 +31647,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->27->1780" + "default.handlebars->27->1781" ] }, { @@ -31652,7 +31667,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->27->2074" + "default.handlebars->27->2087" ] }, { @@ -31672,7 +31687,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->27->2075" + "default.handlebars->27->2088" ] }, { @@ -31694,9 +31709,9 @@ "xloc": [ "default-mobile.handlebars->9->421", "default-mobile.handlebars->9->434", - "default.handlebars->27->1438", - "default.handlebars->27->1467", - "default.handlebars->27->1777", + "default.handlebars->27->1439", + "default.handlebars->27->1468", + "default.handlebars->27->1778", "default.handlebars->27->682", "default.handlebars->27->701" ] @@ -31718,8 +31733,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->27->1702", - "default.handlebars->27->1791" + "default.handlebars->27->1703", + "default.handlebars->27->1792" ] }, { @@ -31739,7 +31754,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->27->1884" + "default.handlebars->27->1897" ] }, { @@ -31759,7 +31774,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->27->1781" + "default.handlebars->27->1782" ] }, { @@ -31779,7 +31794,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->27->1883" + "default.handlebars->27->1896" ] }, { @@ -31799,7 +31814,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->27->2022" + "default.handlebars->27->2035" ] }, { @@ -31839,7 +31854,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->27->2085" + "default.handlebars->27->2098" ] }, { @@ -31859,7 +31874,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->27->1782" + "default.handlebars->27->1783" ] }, { @@ -32002,7 +32017,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->27->2066" + "default.handlebars->27->2079" ] }, { @@ -32062,7 +32077,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->27->1986" + "default.handlebars->27->1999" ] }, { @@ -32187,7 +32202,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->27->1588" + "default.handlebars->27->1589" ] }, { @@ -32568,7 +32583,7 @@ "zh-cht": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->424", - "default.handlebars->27->1441" + "default.handlebars->27->1442" ] }, { @@ -32588,7 +32603,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1403" + "default.handlebars->27->1404" ] }, { @@ -32668,8 +32683,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->27->1733", - "default.handlebars->27->1756" + "default.handlebars->27->1734", + "default.handlebars->27->1757" ] }, { @@ -32689,8 +32704,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->27->1732", - "default.handlebars->27->1755" + "default.handlebars->27->1733", + "default.handlebars->27->1756" ] }, { @@ -32710,8 +32725,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->27->1734", - "default.handlebars->27->1757" + "default.handlebars->27->1735", + "default.handlebars->27->1758" ] }, { @@ -32731,8 +32746,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->27->1731", - "default.handlebars->27->1754" + "default.handlebars->27->1732", + "default.handlebars->27->1755" ] }, { @@ -33031,8 +33046,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->27->1989", - "default.handlebars->27->2004", + "default.handlebars->27->2002", + "default.handlebars->27->2017", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -34022,8 +34037,8 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->27->1987", - "default.handlebars->27->2006", + "default.handlebars->27->2000", + "default.handlebars->27->2019", "default.handlebars->27->823", "desktop.handlebars->3->15" ] @@ -34045,7 +34060,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->27->1572" + "default.handlebars->27->1573" ] }, { @@ -34065,7 +34080,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->27->1581" + "default.handlebars->27->1582" ] }, { @@ -34085,7 +34100,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->27->1582" + "default.handlebars->27->1583" ] }, { @@ -34105,7 +34120,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->27->1579" + "default.handlebars->27->1580" ] }, { @@ -34125,7 +34140,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->27->1601" + "default.handlebars->27->1602" ] }, { @@ -34145,7 +34160,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->27->1602" + "default.handlebars->27->1603" ] }, { @@ -34165,7 +34180,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->27->1608" + "default.handlebars->27->1609" ] }, { @@ -34185,7 +34200,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->27->1609" + "default.handlebars->27->1610" ] }, { @@ -34205,7 +34220,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1581" ] }, { @@ -34225,7 +34240,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->27->1596" + "default.handlebars->27->1597" ] }, { @@ -34245,7 +34260,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->27->1606" + "default.handlebars->27->1607" ] }, { @@ -34306,8 +34321,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->27->1936", - "default.handlebars->27->1999", + "default.handlebars->27->1949", + "default.handlebars->27->2012", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -34435,7 +34450,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->27->1527" + "default.handlebars->27->1528" ] }, { @@ -34500,7 +34515,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->27->1728" + "default.handlebars->27->1729" ] }, { @@ -34706,7 +34721,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1412" ] }, { @@ -35025,8 +35040,8 @@ "zh-cht": "終端機", "xloc": [ "default-mobile.handlebars->9->164", - "default.handlebars->27->1404", - "default.handlebars->27->1993", + "default.handlebars->27->1405", + "default.handlebars->27->2006", "default.handlebars->27->250", "default.handlebars->27->531", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -35071,7 +35086,8 @@ "zh-cht": "終端機通知", "xloc": [ "default.handlebars->27->1324", - "default.handlebars->27->1902", + "default.handlebars->27->1828", + "default.handlebars->27->1915", "default.handlebars->27->603" ] }, @@ -35093,7 +35109,8 @@ "zh-cht": "終端機提示", "xloc": [ "default.handlebars->27->1323", - "default.handlebars->27->1901", + "default.handlebars->27->1827", + "default.handlebars->27->1914", "default.handlebars->27->602" ] }, @@ -35264,7 +35281,7 @@ "zh-chs": "目前没有任何通知", "zh-cht": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->2014" + "default.handlebars->27->2027" ] }, { @@ -35643,7 +35660,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->27->1667" + "default.handlebars->27->1668" ] }, { @@ -36823,7 +36840,7 @@ "zh-cht": "卸載", "xloc": [ "default-mobile.handlebars->9->444", - "default.handlebars->27->1478", + "default.handlebars->27->1479", "default.handlebars->27->687", "default.handlebars->27->706" ] @@ -36867,7 +36884,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->27->1443" + "default.handlebars->27->1444" ] }, { @@ -36920,9 +36937,9 @@ "default.handlebars->27->1297", "default.handlebars->27->1298", "default.handlebars->27->13", - "default.handlebars->27->1976", - "default.handlebars->27->1991", - "default.handlebars->27->1992", + "default.handlebars->27->1989", + "default.handlebars->27->2004", + "default.handlebars->27->2005", "default.handlebars->27->42", "default.handlebars->27->448", "default.handlebars->27->956", @@ -36967,7 +36984,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->27->2028" + "default.handlebars->27->2041" ] }, { @@ -36987,8 +37004,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->27->1840", - "default.handlebars->27->1964" + "default.handlebars->27->1853", + "default.handlebars->27->1977" ] }, { @@ -37008,9 +37025,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->27->1834", - "default.handlebars->27->1952", - "default.handlebars->27->2032" + "default.handlebars->27->1847", + "default.handlebars->27->1965", + "default.handlebars->27->2045" ] }, { @@ -37030,7 +37047,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->27->2024" + "default.handlebars->27->2037" ] }, { @@ -37071,7 +37088,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->27->1958" + "default.handlebars->27->1971" ] }, { @@ -37134,7 +37151,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->27->1721" + "default.handlebars->27->1722" ] }, { @@ -37178,7 +37195,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->27->2092" + "default.handlebars->27->2105" ] }, { @@ -37226,8 +37243,8 @@ "default-mobile.handlebars->9->305", "default-mobile.handlebars->9->323", "default-mobile.handlebars->9->326", - "default.handlebars->27->1556", - "default.handlebars->27->1564", + "default.handlebars->27->1557", + "default.handlebars->27->1565", "default.handlebars->27->888", "default.handlebars->27->912", "default.handlebars->27->915", @@ -37352,7 +37369,7 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->27->1565", + "default.handlebars->27->1566", "default.handlebars->27->913" ] }, @@ -37374,7 +37391,7 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->9->325", - "default.handlebars->27->1566", + "default.handlebars->27->1567", "default.handlebars->27->914" ] }, @@ -37412,7 +37429,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->27->1616" + "default.handlebars->27->1617" ] }, { @@ -37516,8 +37533,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->27->2018", - "default.handlebars->27->2020" + "default.handlebars->27->2031", + "default.handlebars->27->2033" ] }, { @@ -37538,10 +37555,10 @@ "zh-cht": "用戶", "xloc": [ "default.handlebars->27->1362", - "default.handlebars->27->1674", - "default.handlebars->27->1703", - "default.handlebars->27->1830", - "default.handlebars->27->2011", + "default.handlebars->27->1675", + "default.handlebars->27->1704", + "default.handlebars->27->1843", + "default.handlebars->27->2024", "default.handlebars->27->228", "default.handlebars->27->671" ] @@ -37563,7 +37580,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->27->1704" + "default.handlebars->27->1705" ] }, { @@ -37583,10 +37600,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1737", "default.handlebars->27->1738", - "default.handlebars->27->1740", - "default.handlebars->27->1742" + "default.handlebars->27->1739", + "default.handlebars->27->1741", + "default.handlebars->27->1743" ] }, { @@ -37606,7 +37623,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->27->2037" + "default.handlebars->27->2050" ] }, { @@ -37649,8 +37666,9 @@ "zh-cht": "用戶同意", "xloc": [ "default.handlebars->27->1330", + "default.handlebars->27->1834", "default.handlebars->27->190", - "default.handlebars->27->1908", + "default.handlebars->27->1921", "default.handlebars->27->609", "default.handlebars->27->734" ] @@ -37672,11 +37690,11 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->27->1419", "default.handlebars->27->1420", - "default.handlebars->27->1806", - "default.handlebars->27->1960", - "default.handlebars->27->1979", + "default.handlebars->27->1421", + "default.handlebars->27->1807", + "default.handlebars->27->1973", + "default.handlebars->27->1992", "default.handlebars->27->670" ] }, @@ -37717,7 +37735,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->27->1957" + "default.handlebars->27->1970" ] }, { @@ -37757,9 +37775,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->27->1481", - "default.handlebars->27->1875", - "default.handlebars->27->1876" + "default.handlebars->27->1482", + "default.handlebars->27->1888", + "default.handlebars->27->1889" ] }, { @@ -37779,8 +37797,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->27->1417", - "default.handlebars->27->1859" + "default.handlebars->27->1418", + "default.handlebars->27->1872" ] }, { @@ -37800,7 +37818,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->27->1749" + "default.handlebars->27->1750" ] }, { @@ -37821,7 +37839,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->9->446", - "default.handlebars->27->1480" + "default.handlebars->27->1481" ] }, { @@ -37896,7 +37914,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->27->2057" + "default.handlebars->27->2070" ] }, { @@ -38024,7 +38042,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->27->1645" + "default.handlebars->27->1646" ] }, { @@ -38044,7 +38062,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->27->1635" + "default.handlebars->27->1636" ] }, { @@ -38064,7 +38082,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->27->1633" + "default.handlebars->27->1634" ] }, { @@ -38130,7 +38148,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->27->1761", + "default.handlebars->27->1762", "default.handlebars->27->289", "default.handlebars->27->321", "default.handlebars->27->755", @@ -38205,9 +38223,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->27->1794", - "default.handlebars->27->1822", - "default.handlebars->27->2056", + "default.handlebars->27->1795", + "default.handlebars->27->1835", + "default.handlebars->27->2069", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -38228,7 +38246,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->27->2041" + "default.handlebars->27->2054" ] }, { @@ -38268,7 +38286,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->27->1716" + "default.handlebars->27->1717" ] }, { @@ -38352,7 +38370,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->27->1938" + "default.handlebars->27->1951" ] }, { @@ -38395,7 +38413,7 @@ "xloc": [ "default-mobile.handlebars->9->63", "default.handlebars->27->1009", - "default.handlebars->27->1712" + "default.handlebars->27->1713" ] }, { @@ -38415,7 +38433,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->27->1662" + "default.handlebars->27->1663" ] }, { @@ -38504,7 +38522,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->27->2088" + "default.handlebars->27->2101" ] }, { @@ -38586,7 +38604,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->27->1786" + "default.handlebars->27->1787" ] }, { @@ -38606,8 +38624,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->27->2091", - "default.handlebars->27->2093" + "default.handlebars->27->2104", + "default.handlebars->27->2106" ] }, { @@ -38667,7 +38685,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1916" + "default.handlebars->27->1929" ] }, { @@ -38791,8 +38809,8 @@ "xloc": [ "default-mobile.handlebars->9->422", "default-mobile.handlebars->9->435", - "default.handlebars->27->1439", - "default.handlebars->27->1468" + "default.handlebars->27->1440", + "default.handlebars->27->1469" ] }, { @@ -38918,8 +38936,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->27->2077", - "default.handlebars->27->2078" + "default.handlebars->27->2090", + "default.handlebars->27->2091" ] }, { @@ -38939,7 +38957,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->27->2079" + "default.handlebars->27->2092" ] }, { @@ -38959,7 +38977,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->27->2080" + "default.handlebars->27->2093" ] }, { @@ -39061,7 +39079,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->27->1489" + "default.handlebars->27->1490" ] }, { @@ -39102,7 +39120,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->27->1888" + "default.handlebars->27->1901" ] }, { @@ -40355,7 +40373,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->27->2089" + "default.handlebars->27->2102" ] }, { @@ -40602,7 +40620,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->27->1561" + "default.handlebars->27->1562" ] }, { @@ -40701,8 +40719,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->27->1681", - "default.handlebars->27->1686" + "default.handlebars->27->1682", + "default.handlebars->27->1687" ] }, { @@ -40722,8 +40740,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->27->1683", - "default.handlebars->27->1687" + "default.handlebars->27->1684", + "default.handlebars->27->1688" ] }, { @@ -40763,8 +40781,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->27->2049", - "default.handlebars->27->2052" + "default.handlebars->27->2062", + "default.handlebars->27->2065" ] }, { @@ -40979,7 +40997,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->27->1750" + "default.handlebars->27->1751" ] }, { @@ -41102,7 +41120,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->27->1778" + "default.handlebars->27->1779" ] }, { @@ -41244,7 +41262,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->27->1562" + "default.handlebars->27->1563" ] }, { @@ -41361,7 +41379,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->27->2087" + "default.handlebars->27->2100" ] }, { @@ -41427,7 +41445,7 @@ "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->27->2065" + "default.handlebars->27->2078" ] }, { @@ -41447,7 +41465,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->2086" + "default.handlebars->27->2099" ] }, { @@ -41484,8 +41502,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->27->2050", - "default.handlebars->27->2053" + "default.handlebars->27->2063", + "default.handlebars->27->2066" ] }, { @@ -41568,8 +41586,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->27->1746", - "default.handlebars->27->1751" + "default.handlebars->27->1747", + "default.handlebars->27->1752" ] }, { @@ -41589,8 +41607,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->27->1748", - "default.handlebars->27->1752" + "default.handlebars->27->1749", + "default.handlebars->27->1753" ] }, { @@ -41610,7 +41628,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->27->1685" + "default.handlebars->27->1686" ] }, { @@ -41650,8 +41668,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->27->1536", - "default.handlebars->27->1541" + "default.handlebars->27->1537", + "default.handlebars->27->1542" ] }, { @@ -41671,9 +41689,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->27->1534", - "default.handlebars->27->1539", - "default.handlebars->27->1990" + "default.handlebars->27->1535", + "default.handlebars->27->1540", + "default.handlebars->27->2003" ] }, { @@ -41694,8 +41712,8 @@ "zh-cht": "{0} Mb", "xloc": [ "default-mobile.handlebars->9->387", - "default.handlebars->27->1535", - "default.handlebars->27->1540", + "default.handlebars->27->1536", + "default.handlebars->27->1541", "default.handlebars->27->988" ] }, @@ -41737,7 +41755,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->27->1928" + "default.handlebars->27->1941" ] }, { @@ -41757,8 +41775,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->27->1533", - "default.handlebars->27->1538" + "default.handlebars->27->1534", + "default.handlebars->27->1539" ] }, { @@ -41779,8 +41797,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->1549", - "default.handlebars->27->2005", + "default.handlebars->27->1550", + "default.handlebars->27->2018", "download.handlebars->3->2", "download2.handlebars->5->2" ] @@ -41802,7 +41820,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1528" + "default.handlebars->27->1529" ] }, { @@ -41843,7 +41861,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1532" ] }, { @@ -41863,7 +41881,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->27->1893" + "default.handlebars->27->1906" ] }, { @@ -41920,7 +41938,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1529" + "default.handlebars->27->1530" ] }, { @@ -41962,7 +41980,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1530" + "default.handlebars->27->1531" ] }, { @@ -42002,7 +42020,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1695" + "default.handlebars->27->1696" ] }, { @@ -42166,7 +42184,7 @@ "default-mobile.handlebars->9->169", "default-mobile.handlebars->9->172", "default-mobile.handlebars->9->175", - "default.handlebars->27->1699", + "default.handlebars->27->1700", "default.handlebars->27->246", "default.handlebars->27->249", "default.handlebars->27->252", @@ -42314,7 +42332,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->27->1543" + "default.handlebars->27->1544" ] }, { @@ -42334,7 +42352,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->27->1542" + "default.handlebars->27->1543" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index e5706200..a6c7cc5a 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -2594,6 +2594,7 @@ ugroup.name = message.event.name; if (message.event.desc) { ugroup.desc = message.event.desc; } else { delete ugroup.desc; } if (message.event.links) { ugroup.links = message.event.links; } else { delete ugroup.links; } + if (message.event.consent) { ugroup.consent = message.event.consent; } else { delete ugroup.consent; } } mainUpdate(4096 + 8192 + 16384); @@ -9573,6 +9574,7 @@ if (editType == 1) { consent = (currentMesh.consent) ? currentMesh.consent : 0; title = "Edit Device Group User Consent"; } if (editType == 2) { consent = (currentUser.consent) ? currentUser.consent : 0; title = "Edit User Consent"; } if (editType == 3) { consent = (currentNode.consent) ? currentNode.consent : 0; title = "Edit Device User Consent"; } + if (editType == 4) { consent = (currentUserGroup.consent) ? currentUserGroup.consent : 0; title = "Edit User Group User Consent"; } x += '
' + "Desktop" + '
'; x += '
'; x += '
'; @@ -9614,6 +9616,7 @@ if (editType == 1) { meshserver.send({ action: 'editmesh', meshid: currentMesh._id, consent: consent }); } if (editType == 2) { meshserver.send({ action: 'edituser', id: currentUser._id, consent: consent }); } if (editType == 3) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, consent: consent }); } + if (editType == 4) { meshserver.send({ action: 'editusergroup', ugrpid: currentUserGroup._id, consent: consent }); } } function p20editmeshfeatures() { @@ -11586,6 +11589,23 @@ } else { x += addDeviceAttribute("Description", desc); } + + // Display user consent flags for this user group + { + var consentOptionsStr = [], consent = 0; + if (group.consent) { consent = group.consent; } + if (serverinfo.consent) { consent |= serverinfo.consent; } + if ((consent & 0x0040) && (consent & 0x0008)) { consentOptionsStr.push("Desktop Prompt+Toolbar"); } else if (consent & 0x0040) { consentOptionsStr.push("Desktop Toolbar"); } else if (consent & 0x0008) { consentOptionsStr.push("Desktop Prompt"); } else { if (consent & 0x0001) { consentOptionsStr.push("Desktop Notify"); } } + if (consent & 0x0010) { consentOptionsStr.push("Terminal Prompt"); } else { if (consent & 0x0002) { consentOptionsStr.push("Terminal Notify"); } } + if (consent & 0x0020) { consentOptionsStr.push("Files Prompt"); } else { if (consent & 0x0004) { consentOptionsStr.push("Files Notify"); } } + if (consent == 7) { consentOptionsStr = ["Always Notify"]; } + if ((consent & 56) == 56) { consentOptionsStr = ["Always Prompt"]; } + + consentOptionsStr = consentOptionsStr.join(', '); + if (consentOptionsStr == '') { consentOptionsStr = '' + "None" + ''; } + x += addDeviceAttribute("User Consent", addLinkConditional(consentOptionsStr, 'p20editmeshconsent(4)', true)); + } + x += addDeviceAttribute("Users", usercount); x += addDeviceAttribute("Device Groups", meshcount); x += addDeviceAttribute("Devices", devicecount); diff --git a/webserver.js b/webserver.js index e02c97b3..bb98ad20 100644 --- a/webserver.js +++ b/webserver.js @@ -2373,12 +2373,16 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Server features var serverFeatures = 63; if (domain.myserver) { - if (domain.myserver.backup !== true) { serverFeatures -= 1; } // Allow server backups - if (domain.myserver.restore !== true) { serverFeatures -= 2; } // Allow server restore - if (domain.myserver.upgrade !== true) { serverFeatures -= 4; } // Allow server upgrade - if (domain.myserver.errorlog !== true) { serverFeatures -= 8; } // Allow show server crash log - if (domain.myserver.console !== true) { serverFeatures -= 16; } // Allow server console - if (domain.myserver.trace !== true) { serverFeatures -= 32; } // Allow server tracing + if (domain.myserver.backup !== true) { serverFeatures -= 1; } // Disallow simple server backups + if (domain.myserver.restore !== true) { serverFeatures -= 2; } // Disallow simple server restore + if (domain.myserver.upgrade !== true) { serverFeatures -= 4; } // Disallow server upgrade + if (domain.myserver.errorlog !== true) { serverFeatures -= 8; } // Disallow show server crash log + if (domain.myserver.console !== true) { serverFeatures -= 16; } // Disallow server console + if (domain.myserver.trace !== true) { serverFeatures -= 32; } // Disallow server tracing + } + if (obj.db.databaseType != 1) { // If not using NeDB, we can't backup using the simple system. + if ((serverFeatures & 1) != 0) { serverFeatures -= 1; } // Disallow server backups + if ((serverFeatures & 2) != 0) { serverFeatures -= 2; } // Disallow simple server restore } // Refresh the session