diff --git a/meshuser.js b/meshuser.js index 0b37f8cc..419e8448 100644 --- a/meshuser.js +++ b/meshuser.js @@ -50,6 +50,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use const MESHRIGHT_NODESKTOP = 0x00010000; const MESHRIGHT_REMOTECOMMAND = 0x00020000; const MESHRIGHT_RESETOFF = 0x00040000; + const MESHRIGHT_GUESTSHARING = 0x00080000; const MESHRIGHT_ADMIN = 0xFFFFFFFF; // Site rights @@ -4706,13 +4707,19 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Get the device rights parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) { // If node not found or we don't have remote control, reject. - if ((node == null) || ((rights & 8) == 0)) { + if (node == null) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } } return; } - // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request. - if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return; + // If there is MESHRIGHT_DESKLIMITEDINPUT or we don't have MESHRIGHT_GUESTSHARING on this account, reject this request. + if (rights != MESHRIGHT_ADMIN) { + // If we don't have remote control, or have limited input, or don't have guest sharing permission, fail here. + if (((rights & MESHRIGHT_REMOTECONTROL) == 0) || ((rights & MESHRIGHT_DESKLIMITEDINPUT) != 0) || ((rights & MESHRIGHT_GUESTSHARING) == 0)) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } } + return; + } + } parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) { if (err != null) return; @@ -4759,13 +4766,19 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Get the device rights parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) { // If node not found or we don't have remote control, reject. - if ((node == null) || ((rights & 8) == 0)) { - if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'removeDeviceShare', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } } + if (node == null) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } } return; } - - // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request. - if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return; + + // If there is MESHRIGHT_DESKLIMITEDINPUT or we don't have MESHRIGHT_GUESTSHARING on this account, reject this request. + if (rights != MESHRIGHT_ADMIN) { + // If we don't have remote control, or have limited input, or don't have guest sharing permission, fail here. + if (((rights & MESHRIGHT_REMOTECONTROL) == 0) || ((rights & MESHRIGHT_DESKLIMITEDINPUT) != 0) || ((rights & MESHRIGHT_GUESTSHARING) == 0)) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } } + return; + } + } parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) { if (err != null) return; @@ -4835,13 +4848,28 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Get the device rights parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) { // If node not found or we don't have remote control, reject. - if ((node == null) || ((rights & 8) == 0)) { - if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'createDeviceShareLink', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } } + if (node == null) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Invalid node id' })); } catch (ex) { } } return; } - // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request. - if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return; + // If there is MESHRIGHT_DESKLIMITEDINPUT or we don't have MESHRIGHT_GUESTSHARING on this account, reject this request. + if (rights != MESHRIGHT_ADMIN) { + // If we don't have remote control, or have limited input, or don't have guest sharing permission, fail here. + if (((rights & MESHRIGHT_REMOTECONTROL) == 0) || ((rights & MESHRIGHT_DESKLIMITEDINPUT) != 0) || ((rights & MESHRIGHT_GUESTSHARING) == 0)) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } } + return; + } + } + + // If we are limited to no terminal, don't allow terminal sharing + if ((command.p == 1) && (rights != MESHRIGHT_ADMIN) && ((rights & MESHRIGHT_NOTERMINAL) != 0)) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } } + return; + } + + // If we have view only remote desktop rights, force view-only on the guest share. + if ((rights != MESHRIGHT_ADMIN) && ((rights & MESHRIGHT_REMOTEVIEWONLY) != 0)) { command.viewOnly = true; } // Create cookie var publicid = getRandomPassword(), startTime, expireTime; diff --git a/translate/translate.json b/translate/translate.json index 5e401dd5..c518714b 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -17,8 +17,8 @@ "zh-chs": " + CIRA", "zh-cht": " + CIRA", "xloc": [ - "default.handlebars->31->1443", - "default.handlebars->31->1445" + "default.handlebars->31->1445", + "default.handlebars->31->1447" ] }, { @@ -204,7 +204,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->31->1356" + "default.handlebars->31->1358" ] }, { @@ -224,8 +224,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->31->1520", - "default.handlebars->31->1986" + "default.handlebars->31->1522", + "default.handlebars->31->1989" ] }, { @@ -432,7 +432,7 @@ "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。", "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "xloc": [ - "default.handlebars->31->1489", + "default.handlebars->31->1491", "default.handlebars->31->323" ] }, @@ -508,7 +508,7 @@ "zh-cht": ",", "xloc": [ "default-mobile.handlebars->11->532", - "default.handlebars->31->1590" + "default.handlebars->31->1593" ] }, { @@ -549,7 +549,7 @@ "zh-chs": ",MQTT在线", "zh-cht": ",MQTT在線", "xloc": [ - "default.handlebars->31->1097" + "default.handlebars->31->1099" ] }, { @@ -597,7 +597,7 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->31->883", + "default.handlebars->31->885", "desktop.handlebars->3->12" ] }, @@ -636,9 +636,9 @@ "xloc": [ "default-mobile.handlebars->11->314", "default-mobile.handlebars->11->347", - "default.handlebars->31->890", - "default.handlebars->31->949", - "default.handlebars->31->961", + "default.handlebars->31->892", + "default.handlebars->31->951", + "default.handlebars->31->963", "desktop.handlebars->3->19", "terminal.handlebars->3->9", "xterm.handlebars->9->6" @@ -761,7 +761,7 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->31->884", + "default.handlebars->31->886", "desktop.handlebars->3->13" ] }, @@ -826,9 +826,9 @@ "xloc": [ "default-mobile.handlebars->11->119", "default-mobile.handlebars->11->349", - "default.handlebars->31->1631", - "default.handlebars->31->2145", - "default.handlebars->31->967" + "default.handlebars->31->1634", + "default.handlebars->31->2148", + "default.handlebars->31->969" ] }, { @@ -885,7 +885,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->31->2057" + "default.handlebars->31->2060" ] }, { @@ -907,7 +907,7 @@ "xloc": [ "default-mobile.handlebars->11->129", "default-mobile.handlebars->11->575", - "default.handlebars->31->1655", + "default.handlebars->31->1658", "download.handlebars->3->1", "download2.handlebars->5->1" ] @@ -929,7 +929,7 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->31->886", + "default.handlebars->31->888", "desktop.handlebars->3->15" ] }, @@ -972,7 +972,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->31->2020" + "default.handlebars->31->2023" ] }, { @@ -1014,7 +1014,7 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->31->766" + "default.handlebars->31->768" ] }, { @@ -1076,7 +1076,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->31->1810" + "default.handlebars->31->1813" ] }, { @@ -1142,7 +1142,7 @@ "default-mobile.handlebars->11->183", "default-mobile.handlebars->11->186", "default-mobile.handlebars->11->189", - "default.handlebars->31->1814", + "default.handlebars->31->1817", "default.handlebars->31->268", "default.handlebars->31->271", "default.handlebars->31->274", @@ -1274,7 +1274,7 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->31->768" + "default.handlebars->31->770" ] }, { @@ -1357,7 +1357,7 @@ "zh-chs": "12小时", "zh-cht": "12小時", "xloc": [ - "default.handlebars->31->776" + "default.handlebars->31->778" ] }, { @@ -1399,7 +1399,7 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->31->769" + "default.handlebars->31->771" ] }, { @@ -1419,7 +1419,7 @@ "zh-chs": "16小时", "zh-cht": "16小時", "xloc": [ - "default.handlebars->31->777" + "default.handlebars->31->779" ] }, { @@ -1439,7 +1439,7 @@ "zh-chs": "2天", "zh-cht": "2天", "xloc": [ - "default.handlebars->31->779" + "default.handlebars->31->781" ] }, { @@ -1459,7 +1459,7 @@ "zh-chs": "2小时", "zh-cht": "2小時", "xloc": [ - "default.handlebars->31->773" + "default.handlebars->31->775" ] }, { @@ -1563,7 +1563,7 @@ "zh-chs": "24小时", "zh-cht": "24小時", "xloc": [ - "default.handlebars->31->778" + "default.handlebars->31->780" ] }, { @@ -1625,7 +1625,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->31->1766" + "default.handlebars->31->1769" ] }, { @@ -1645,8 +1645,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->31->1827", - "default.handlebars->31->2042" + "default.handlebars->31->1830", + "default.handlebars->31->2045" ] }, { @@ -1765,7 +1765,7 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->31->770" + "default.handlebars->31->772" ] }, { @@ -1828,7 +1828,7 @@ "zh-chs": "4天", "zh-cht": "4天", "xloc": [ - "default.handlebars->31->780" + "default.handlebars->31->782" ] }, { @@ -1848,7 +1848,7 @@ "zh-chs": "4个小时", "zh-cht": "4個小時", "xloc": [ - "default.handlebars->31->774" + "default.handlebars->31->776" ] }, { @@ -1931,7 +1931,7 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->31->771" + "default.handlebars->31->773" ] }, { @@ -1971,7 +1971,7 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->31->767" + "default.handlebars->31->769" ] }, { @@ -2097,7 +2097,7 @@ "zh-chs": "60分钟", "zh-cht": "60分鐘", "xloc": [ - "default.handlebars->31->772" + "default.handlebars->31->774" ] }, { @@ -2217,7 +2217,7 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->31->811" + "default.handlebars->31->813" ] }, { @@ -2282,7 +2282,7 @@ "xloc": [ "default.handlebars->31->347", "default.handlebars->31->361", - "default.handlebars->31->775" + "default.handlebars->31->777" ] }, { @@ -2517,7 +2517,7 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->11->247", - "default.handlebars->31->1459", + "default.handlebars->31->1461", "default.handlebars->31->588" ] }, @@ -2708,7 +2708,7 @@ "zh-chs": "拒绝访问", "zh-cht": "拒絕存取", "xloc": [ - "default.handlebars->31->1098" + "default.handlebars->31->1100" ] }, { @@ -2750,7 +2750,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->31->1992" + "default.handlebars->31->1995" ] }, { @@ -2839,9 +2839,9 @@ "default-mobile.handlebars->11->222", "default-mobile.handlebars->11->224", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->31->1365", "default.handlebars->31->1367", - "default.handlebars->31->2259", + "default.handlebars->31->1369", + "default.handlebars->31->2262", "default.handlebars->31->557", "default.handlebars->31->559" ] @@ -2852,7 +2852,7 @@ "fr": "Paramètres du compte", "xloc": [ "default-mobile.handlebars->11->543", - "default.handlebars->31->2153" + "default.handlebars->31->2156" ] }, { @@ -2913,7 +2913,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->31->1739" + "default.handlebars->31->1742" ] }, { @@ -2933,7 +2933,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->31->1738" + "default.handlebars->31->1741" ] }, { @@ -2953,7 +2953,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->31->1737" + "default.handlebars->31->1740" ] }, { @@ -2973,8 +2973,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->31->1829", - "default.handlebars->31->1989" + "default.handlebars->31->1832", + "default.handlebars->31->1992" ] }, { @@ -2995,7 +2995,7 @@ "zh-cht": "達到帳戶限制。", "xloc": [ "default-mobile.handlebars->11->555", - "default.handlebars->31->2165", + "default.handlebars->31->2168", "login-mobile.handlebars->5->6", "login.handlebars->5->6", "login2.handlebars->7->7" @@ -3040,7 +3040,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->31->1674" + "default.handlebars->31->1677" ] }, { @@ -3060,7 +3060,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->31->1675" + "default.handlebars->31->1678" ] }, { @@ -3102,7 +3102,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->31->1747" + "default.handlebars->31->1750" ] }, { @@ -3122,7 +3122,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->31->1736" + "default.handlebars->31->1739" ] }, { @@ -3162,7 +3162,7 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default.handlebars->31->1103", + "default.handlebars->31->1105", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -3183,8 +3183,8 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->31->857", - "default.handlebars->31->859" + "default.handlebars->31->859", + "default.handlebars->31->861" ] }, { @@ -3290,7 +3290,7 @@ "zh-chs": "如果ACM失败,则激活到CCM", "zh-cht": "如果ACM失敗,則激活到CCM", "xloc": [ - "default.handlebars->31->1480" + "default.handlebars->31->1482" ] }, { @@ -3313,7 +3313,7 @@ "default-mobile.handlebars->11->242", "default-mobile.handlebars->11->244", "default-mobile.handlebars->11->435", - "default.handlebars->31->1059", + "default.handlebars->31->1061", "default.handlebars->31->581", "default.handlebars->31->583" ] @@ -3381,7 +3381,7 @@ "nl": "Toevoegen", "xloc": [ "default-mobile.handlebars->11->340", - "default.handlebars->31->920" + "default.handlebars->31->922" ] }, { @@ -3401,7 +3401,7 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->31->1455", + "default.handlebars->31->1457", "default.handlebars->31->301" ] }, @@ -3439,8 +3439,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->31->1966", - "default.handlebars->31->2092" + "default.handlebars->31->1969", + "default.handlebars->31->2095" ] }, { @@ -3460,7 +3460,7 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->31->752" + "default.handlebars->31->754" ] }, { @@ -3480,9 +3480,9 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->31->1554", - "default.handlebars->31->1960", - "default.handlebars->31->2080", + "default.handlebars->31->1557", + "default.handlebars->31->1963", + "default.handlebars->31->2083", "default.handlebars->31->238" ] }, @@ -3503,7 +3503,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->31->1551" + "default.handlebars->31->1554" ] }, { @@ -3523,8 +3523,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->31->1556", - "default.handlebars->31->1558" + "default.handlebars->31->1559", + "default.handlebars->31->1561" ] }, { @@ -3621,7 +3621,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->31->2112" + "default.handlebars->31->2115" ] }, { @@ -3661,8 +3661,8 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->31->1132", - "default.handlebars->31->1133", + "default.handlebars->31->1134", + "default.handlebars->31->1135", "default.handlebars->31->160", "default.handlebars->31->162", "default.handlebars->31->165", @@ -3707,7 +3707,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->31->1561" + "default.handlebars->31->1564" ] }, { @@ -3727,9 +3727,9 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->31->1451", - "default.handlebars->31->1553", - "default.handlebars->31->2086", + "default.handlebars->31->1453", + "default.handlebars->31->1556", + "default.handlebars->31->2089", "default.handlebars->31->696" ] }, @@ -3750,7 +3750,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->31->1563" + "default.handlebars->31->1566" ] }, { @@ -3807,8 +3807,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->31->1450", - "default.handlebars->31->1955" + "default.handlebars->31->1452", + "default.handlebars->31->1958" ] }, { @@ -3828,7 +3828,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->31->1550" + "default.handlebars->31->1553" ] }, { @@ -3848,7 +3848,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->31->1988" + "default.handlebars->31->1991" ] }, { @@ -3965,7 +3965,7 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->31->1454", + "default.handlebars->31->1456", "default.handlebars->31->300" ] }, @@ -4026,7 +4026,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->31->1763" + "default.handlebars->31->1766" ] }, { @@ -4046,7 +4046,7 @@ "zh-chs": "已将设备共享{0}从{1}添加到{2}", "zh-cht": "已將設備共享{0}從{1}添加到{2}", "xloc": [ - "default.handlebars->31->1774" + "default.handlebars->31->1777" ] }, { @@ -4066,8 +4066,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->31->1730", - "default.handlebars->31->1757" + "default.handlebars->31->1733", + "default.handlebars->31->1760" ] }, { @@ -4087,7 +4087,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->31->1768" + "default.handlebars->31->1771" ] }, { @@ -4107,7 +4107,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->31->1741" + "default.handlebars->31->1744" ] }, { @@ -4127,8 +4127,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->31->1744", - "default.handlebars->31->1753" + "default.handlebars->31->1747", + "default.handlebars->31->1756" ] }, { @@ -4189,7 +4189,7 @@ "zh-cht": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->11->437", - "default.handlebars->31->1061" + "default.handlebars->31->1063" ] }, { @@ -4210,7 +4210,7 @@ "zh-cht": "管理員憑證", "xloc": [ "default-mobile.handlebars->11->443", - "default.handlebars->31->1067" + "default.handlebars->31->1069" ] }, { @@ -4251,7 +4251,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->31->2024" + "default.handlebars->31->2027" ] }, { @@ -4292,7 +4292,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->31->1892" + "default.handlebars->31->1895" ] }, { @@ -4312,7 +4312,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->31->1821" + "default.handlebars->31->1824" ] }, { @@ -4332,7 +4332,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->31->1135" + "default.handlebars->31->1137" ] }, { @@ -4356,8 +4356,8 @@ "default-mobile.handlebars->11->214", "default-mobile.handlebars->11->239", "default-mobile.handlebars->11->261", - "default.handlebars->31->1617", - "default.handlebars->31->1625", + "default.handlebars->31->1620", + "default.handlebars->31->1628", "default.handlebars->31->254", "default.handlebars->31->443", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -4380,8 +4380,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->31->1619", - "default.handlebars->31->1627" + "default.handlebars->31->1622", + "default.handlebars->31->1630" ] }, { @@ -4422,7 +4422,7 @@ "zh-cht": "代理控制台", "xloc": [ "default-mobile.handlebars->11->514", - "default.handlebars->31->1571" + "default.handlebars->31->1574" ] }, { @@ -4442,7 +4442,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->31->2190" + "default.handlebars->31->2193" ] }, { @@ -4545,7 +4545,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->31->2206" + "default.handlebars->31->2209" ] }, { @@ -4586,7 +4586,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->31->1623", + "default.handlebars->31->1626", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -4607,7 +4607,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->31->1727" + "default.handlebars->31->1730" ] }, { @@ -4669,7 +4669,7 @@ "zh-chs": "代理离线", "zh-cht": "代理離線", "xloc": [ - "default.handlebars->31->1096" + "default.handlebars->31->1098" ] }, { @@ -4689,7 +4689,7 @@ "zh-chs": "代理在线", "zh-cht": "代理在線", "xloc": [ - "default.handlebars->31->1095" + "default.handlebars->31->1097" ] }, { @@ -4730,7 +4730,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->31->2222" + "default.handlebars->31->2225" ] }, { @@ -4750,7 +4750,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->31->1136" + "default.handlebars->31->1138" ] }, { @@ -4793,7 +4793,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->31->1784" + "default.handlebars->31->1787" ] }, { @@ -4830,7 +4830,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->31->1782" + "default.handlebars->31->1785" ] }, { @@ -4850,9 +4850,9 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->31->891", "default.handlebars->31->893", - "default.handlebars->31->894" + "default.handlebars->31->895", + "default.handlebars->31->896" ] }, { @@ -4872,8 +4872,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->31->1518", - "default.handlebars->31->1985" + "default.handlebars->31->1520", + "default.handlebars->31->1988" ] }, { @@ -4893,7 +4893,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->31->1519" + "default.handlebars->31->1521" ] }, { @@ -4911,8 +4911,8 @@ "xloc": [ "default-mobile.handlebars->11->333", "default-mobile.handlebars->11->337", - "default.handlebars->31->913", - "default.handlebars->31->917" + "default.handlebars->31->915", + "default.handlebars->31->919" ] }, { @@ -4974,7 +4974,7 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->31->954", + "default.handlebars->31->956", "terminal.handlebars->3->19" ] }, @@ -5016,9 +5016,9 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->31->1430", - "default.handlebars->31->1946", - "default.handlebars->31->2033", + "default.handlebars->31->1432", + "default.handlebars->31->1949", + "default.handlebars->31->2036", "default.handlebars->31->632" ] }, @@ -5039,9 +5039,9 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->31->1431", - "default.handlebars->31->1947", - "default.handlebars->31->2034", + "default.handlebars->31->1433", + "default.handlebars->31->1950", + "default.handlebars->31->2037", "default.handlebars->31->633" ] }, @@ -5304,7 +5304,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->31->1138" + "default.handlebars->31->1140" ] }, { @@ -5324,7 +5324,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->31->1139" + "default.handlebars->31->1141" ] }, { @@ -5344,7 +5344,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->31->1140" + "default.handlebars->31->1142" ] }, { @@ -5364,7 +5364,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->31->1141" + "default.handlebars->31->1143" ] }, { @@ -5384,7 +5384,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->31->1142" + "default.handlebars->31->1144" ] }, { @@ -5404,7 +5404,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->31->1143" + "default.handlebars->31->1145" ] }, { @@ -5424,7 +5424,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->31->1144" + "default.handlebars->31->1146" ] }, { @@ -5444,7 +5444,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->31->1145" + "default.handlebars->31->1147" ] }, { @@ -5464,7 +5464,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->31->1146" + "default.handlebars->31->1148" ] }, { @@ -5484,7 +5484,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->31->1147" + "default.handlebars->31->1149" ] }, { @@ -5504,7 +5504,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->31->1148" + "default.handlebars->31->1150" ] }, { @@ -5524,7 +5524,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->31->1149" + "default.handlebars->31->1151" ] }, { @@ -5544,7 +5544,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->31->1137" + "default.handlebars->31->1139" ] }, { @@ -5564,7 +5564,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->31->1150" + "default.handlebars->31->1152" ] }, { @@ -5584,7 +5584,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->31->1151" + "default.handlebars->31->1153" ] }, { @@ -5604,7 +5604,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->31->1152" + "default.handlebars->31->1154" ] }, { @@ -5624,7 +5624,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->31->1153" + "default.handlebars->31->1155" ] }, { @@ -5644,7 +5644,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->31->1154" + "default.handlebars->31->1156" ] }, { @@ -5665,7 +5665,7 @@ "zh-cht": "結構", "xloc": [ "default-mobile.handlebars->11->384", - "default.handlebars->31->1015" + "default.handlebars->31->1017" ] }, { @@ -5706,7 +5706,7 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ "default-mobile.handlebars->11->483", - "default.handlebars->31->1494" + "default.handlebars->31->1496" ] }, { @@ -5726,7 +5726,7 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->31->833" + "default.handlebars->31->835" ] }, { @@ -5746,7 +5746,7 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->31->822" + "default.handlebars->31->824" ] }, { @@ -5766,7 +5766,7 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->31->821" + "default.handlebars->31->823" ] }, { @@ -5786,7 +5786,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->31->2268" + "default.handlebars->31->2271" ] }, { @@ -5806,7 +5806,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->31->1155" + "default.handlebars->31->1157" ] }, { @@ -5866,7 +5866,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->31->1156" + "default.handlebars->31->1158" ] }, { @@ -5886,7 +5886,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->31->1157" + "default.handlebars->31->1159" ] }, { @@ -5906,7 +5906,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->31->1696" + "default.handlebars->31->1699" ] }, { @@ -5926,7 +5926,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->31->2037" + "default.handlebars->31->2040" ] }, { @@ -5950,8 +5950,8 @@ "default-mobile.handlebars->11->63", "default-mobile.handlebars->11->82", "default-mobile.handlebars->11->84", - "default.handlebars->31->1121", "default.handlebars->31->1123", + "default.handlebars->31->1125", "default.handlebars->31->136", "default.handlebars->31->141" ] @@ -6033,7 +6033,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->31->1417" + "default.handlebars->31->1419" ] }, { @@ -6077,7 +6077,7 @@ "zh-chs": "自动下载代理程序核心转储文件:“{0}”", "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "xloc": [ - "default.handlebars->31->1777" + "default.handlebars->31->1780" ] }, { @@ -6117,7 +6117,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->31->2215" + "default.handlebars->31->2218" ] }, { @@ -6137,7 +6137,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->31->1158" + "default.handlebars->31->1160" ] }, { @@ -6170,7 +6170,7 @@ "zh-cht": "的BIOS", "xloc": [ "default-mobile.handlebars->11->449", - "default.handlebars->31->1073" + "default.handlebars->31->1075" ] }, { @@ -6254,7 +6254,7 @@ "nl": "BackSpace", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->31->897" + "default.handlebars->31->899" ] }, { @@ -6294,8 +6294,8 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->31->1600", - "default.handlebars->31->1607", + "default.handlebars->31->1603", + "default.handlebars->31->1610", "default.handlebars->31->353", "default.handlebars->31->367" ] @@ -6317,8 +6317,8 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->31->1601", - "default.handlebars->31->1608", + "default.handlebars->31->1604", + "default.handlebars->31->1611", "default.handlebars->31->354", "default.handlebars->31->368", "default.handlebars->31->383" @@ -6362,7 +6362,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->31->2039" + "default.handlebars->31->2042" ] }, { @@ -6382,7 +6382,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->31->2197" + "default.handlebars->31->2200" ] }, { @@ -6402,7 +6402,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->31->2196" + "default.handlebars->31->2199" ] }, { @@ -6422,7 +6422,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->31->1159" + "default.handlebars->31->1161" ] }, { @@ -6482,7 +6482,7 @@ "zh-chs": "将{0}个文件批量上传到文件夹{1}", "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "xloc": [ - "default.handlebars->31->1776" + "default.handlebars->31->1779" ] }, { @@ -6502,7 +6502,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->31->1161" + "default.handlebars->31->1163" ] }, { @@ -6522,7 +6522,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->31->1162" + "default.handlebars->31->1164" ] }, { @@ -6554,7 +6554,7 @@ "fr": "Chargeur de démarrage", "xloc": [ "default-mobile.handlebars->11->413", - "default.handlebars->31->1027" + "default.handlebars->31->1029" ] }, { @@ -6574,7 +6574,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->31->1163" + "default.handlebars->31->1165" ] }, { @@ -6594,7 +6594,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->31->1164" + "default.handlebars->31->1166" ] }, { @@ -6614,7 +6614,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->31->1953", + "default.handlebars->31->1956", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6635,7 +6635,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->31->1874" + "default.handlebars->31->1877" ] }, { @@ -6655,7 +6655,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->31->1869" + "default.handlebars->31->1872" ] }, { @@ -6675,7 +6675,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->31->1160" + "default.handlebars->31->1162" ] }, { @@ -6695,7 +6695,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->31->1165" + "default.handlebars->31->1167" ] }, { @@ -6736,7 +6736,7 @@ "zh-chs": "CCM模式", "zh-cht": "CCM模式", "xloc": [ - "default.handlebars->31->1477" + "default.handlebars->31->1479" ] }, { @@ -6778,7 +6778,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->31->2254" + "default.handlebars->31->2257" ] }, { @@ -6798,7 +6798,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->31->2255" + "default.handlebars->31->2258" ] }, { @@ -6818,7 +6818,7 @@ "zh-chs": "CIRA设置", "zh-cht": "CIRA設置", "xloc": [ - "default.handlebars->31->1485" + "default.handlebars->31->1487" ] }, { @@ -6839,7 +6839,7 @@ "zh-cht": "CPU", "xloc": [ "default-mobile.handlebars->11->455", - "default.handlebars->31->1079" + "default.handlebars->31->1081" ] }, { @@ -6859,7 +6859,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->31->2211" + "default.handlebars->31->2214" ] }, { @@ -6879,7 +6879,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2214" + "default.handlebars->31->2217" ] }, { @@ -6899,7 +6899,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2213" + "default.handlebars->31->2216" ] }, { @@ -6919,7 +6919,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2212" + "default.handlebars->31->2215" ] }, { @@ -6939,8 +6939,8 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->31->947", - "default.handlebars->31->956", + "default.handlebars->31->949", + "default.handlebars->31->958", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "terminal.handlebars->3->21", "terminal.handlebars->3->7", @@ -6964,7 +6964,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->31->1792" + "default.handlebars->31->1795" ] }, { @@ -6984,8 +6984,8 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->31->1796", - "default.handlebars->31->1861", + "default.handlebars->31->1799", + "default.handlebars->31->1864", "default.handlebars->31->502" ] }, @@ -7023,7 +7023,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->31->2269" + "default.handlebars->31->2272" ] }, { @@ -7046,7 +7046,7 @@ "agent-translations.json", "default-mobile.handlebars->11->93", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->31->1395", + "default.handlebars->31->1397", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -7077,9 +7077,9 @@ "default-mobile.handlebars->11->460", "default-mobile.handlebars->11->465", "default-mobile.handlebars->11->467", - "default.handlebars->31->1084", - "default.handlebars->31->1089", - "default.handlebars->31->1091" + "default.handlebars->31->1086", + "default.handlebars->31->1091", + "default.handlebars->31->1093" ] }, { @@ -7100,7 +7100,7 @@ "zh-cht": "容量/速度", "xloc": [ "default-mobile.handlebars->11->458", - "default.handlebars->31->1082" + "default.handlebars->31->1084" ] }, { @@ -7120,7 +7120,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->31->1166" + "default.handlebars->31->1168" ] }, { @@ -7160,7 +7160,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->31->1167" + "default.handlebars->31->1169" ] }, { @@ -7202,7 +7202,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->31->2069" + "default.handlebars->31->2072" ] }, { @@ -7223,8 +7223,8 @@ "zh-cht": "更改群", "xloc": [ "default.handlebars->31->661", - "default.handlebars->31->830", - "default.handlebars->31->831" + "default.handlebars->31->832", + "default.handlebars->31->833" ] }, { @@ -7245,8 +7245,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->31->1362", - "default.handlebars->31->2056" + "default.handlebars->31->1364", + "default.handlebars->31->2059" ] }, { @@ -7266,7 +7266,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->31->2076" + "default.handlebars->31->2079" ] }, { @@ -7286,7 +7286,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->31->2064" + "default.handlebars->31->2067" ] }, { @@ -7368,7 +7368,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->31->2055" + "default.handlebars->31->2058" ] }, { @@ -7408,7 +7408,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->31->1349" + "default.handlebars->31->1351" ] }, { @@ -7428,7 +7428,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->31->1355" + "default.handlebars->31->1357" ] }, { @@ -7448,7 +7448,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->31->1748" + "default.handlebars->31->1751" ] }, { @@ -7468,7 +7468,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->31->1732" + "default.handlebars->31->1735" ] }, { @@ -7488,7 +7488,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->31->1676" + "default.handlebars->31->1679" ] }, { @@ -7508,8 +7508,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->31->1734", - "default.handlebars->31->1755" + "default.handlebars->31->1737", + "default.handlebars->31->1758" ] }, { @@ -7529,7 +7529,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->31->1334" + "default.handlebars->31->1336" ] }, { @@ -7549,11 +7549,11 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->31->1813", - "default.handlebars->31->2051", - "default.handlebars->31->2052", - "default.handlebars->31->726", - "default.handlebars->31->747" + "default.handlebars->31->1816", + "default.handlebars->31->2054", + "default.handlebars->31->2055", + "default.handlebars->31->727", + "default.handlebars->31->749" ] }, { @@ -7575,8 +7575,8 @@ "xloc": [ "default-mobile.handlebars->11->504", "default-mobile.handlebars->11->524", - "default.handlebars->31->1546", - "default.handlebars->31->1582" + "default.handlebars->31->1549", + "default.handlebars->31->1585" ] }, { @@ -7585,7 +7585,7 @@ "fr": "Demande de chat, cliquez ici pour accepter.", "xloc": [ "default-mobile.handlebars->11->556", - "default.handlebars->31->2166" + "default.handlebars->31->2169" ] }, { @@ -7625,7 +7625,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->31->1168" + "default.handlebars->31->1170" ] }, { @@ -7725,8 +7725,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->31->1134", - "default.handlebars->31->2263" + "default.handlebars->31->1136", + "default.handlebars->31->2266" ] }, { @@ -7746,7 +7746,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->31->1169" + "default.handlebars->31->1171" ] }, { @@ -7766,7 +7766,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->31->1170" + "default.handlebars->31->1172" ] }, { @@ -7786,7 +7786,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->31->1171" + "default.handlebars->31->1173" ] }, { @@ -7806,7 +7806,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->31->1331" + "default.handlebars->31->1333" ] }, { @@ -7826,7 +7826,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->31->1172" + "default.handlebars->31->1174" ] }, { @@ -7846,7 +7846,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->31->1173" + "default.handlebars->31->1175" ] }, { @@ -7866,7 +7866,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->31->1332" + "default.handlebars->31->1334" ] }, { @@ -7907,7 +7907,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->31->1174" + "default.handlebars->31->1176" ] }, { @@ -7950,8 +7950,8 @@ "default-mobile.handlebars->11->372", "default-mobile.handlebars->11->374", "default-mobile.handlebars->11->70", - "default.handlebars->31->1670", - "default.handlebars->31->992", + "default.handlebars->31->1000", + "default.handlebars->31->1673", "default.handlebars->31->994", "default.handlebars->31->996", "default.handlebars->31->998", @@ -7998,7 +7998,7 @@ "zh-cht": "全部清除", "xloc": [ "default-mobile.handlebars->11->539", - "default.handlebars->31->2149" + "default.handlebars->31->2152" ] }, { @@ -8039,7 +8039,7 @@ "zh-chs": "清除核心", "zh-cht": "清除核心", "xloc": [ - "default.handlebars->31->1105" + "default.handlebars->31->1107" ] }, { @@ -8080,7 +8080,7 @@ "zh-cht": "清除此通知", "xloc": [ "default-mobile.handlebars->11->538", - "default.handlebars->31->2148" + "default.handlebars->31->2151" ] }, { @@ -8140,8 +8140,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->31->1406", - "default.handlebars->31->1621" + "default.handlebars->31->1408", + "default.handlebars->31->1624" ] }, { @@ -8181,7 +8181,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->31->1930" + "default.handlebars->31->1933" ] }, { @@ -8252,7 +8252,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->11->86", - "default.handlebars->31->1346" + "default.handlebars->31->1348" ] }, { @@ -8314,7 +8314,7 @@ "zh-cht": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->11->436", - "default.handlebars->31->1060" + "default.handlebars->31->1062" ] }, { @@ -8334,7 +8334,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->31->1388" + "default.handlebars->31->1390" ] }, { @@ -8354,7 +8354,7 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->31->1484" + "default.handlebars->31->1486" ] }, { @@ -8374,7 +8374,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->31->1389" + "default.handlebars->31->1391" ] }, { @@ -8418,8 +8418,8 @@ "default-mobile.handlebars->11->68", "default.handlebars->31->148", "default.handlebars->31->156", - "default.handlebars->31->938", - "default.handlebars->31->969" + "default.handlebars->31->940", + "default.handlebars->31->971" ] }, { @@ -8439,7 +8439,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->31->1681" + "default.handlebars->31->1684" ] }, { @@ -8562,9 +8562,9 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->526", - "default.handlebars->31->1584", - "default.handlebars->31->728", - "default.handlebars->31->749" + "default.handlebars->31->1587", + "default.handlebars->31->729", + "default.handlebars->31->751" ] }, { @@ -8584,8 +8584,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->31->1961", - "default.handlebars->31->2081" + "default.handlebars->31->1964", + "default.handlebars->31->2084" ] }, { @@ -8605,8 +8605,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->31->1967", - "default.handlebars->31->2093" + "default.handlebars->31->1970", + "default.handlebars->31->2096" ] }, { @@ -8626,7 +8626,7 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->31->964" + "default.handlebars->31->966" ] }, { @@ -8648,14 +8648,14 @@ "xloc": [ "default-mobile.handlebars->11->301", "default-mobile.handlebars->11->484", - "default.handlebars->31->1495", - "default.handlebars->31->1841", - "default.handlebars->31->1920", - "default.handlebars->31->1981", - "default.handlebars->31->2079", + "default.handlebars->31->1497", + "default.handlebars->31->1844", + "default.handlebars->31->1923", + "default.handlebars->31->1984", + "default.handlebars->31->2082", "default.handlebars->31->472", - "default.handlebars->31->825", - "default.handlebars->31->834" + "default.handlebars->31->827", + "default.handlebars->31->836" ] }, { @@ -8676,7 +8676,7 @@ "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->11->363", - "default.handlebars->31->987" + "default.handlebars->31->989" ] }, { @@ -8696,7 +8696,7 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->31->986" + "default.handlebars->31->988" ] }, { @@ -8736,7 +8736,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->31->1840" + "default.handlebars->31->1843" ] }, { @@ -8776,7 +8776,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->31->1919" + "default.handlebars->31->1922" ] }, { @@ -8796,7 +8796,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->31->2078" + "default.handlebars->31->2081" ] }, { @@ -8816,7 +8816,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->31->1984" + "default.handlebars->31->1987" ] }, { @@ -8836,7 +8836,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->31->2110" + "default.handlebars->31->2113" ] }, { @@ -8857,7 +8857,7 @@ "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ "default-mobile.handlebars->11->365", - "default.handlebars->31->989" + "default.handlebars->31->991" ] }, { @@ -8877,7 +8877,7 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->31->988" + "default.handlebars->31->990" ] }, { @@ -8917,7 +8917,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->31->1664" + "default.handlebars->31->1667" ] }, { @@ -8937,8 +8937,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->1974", - "default.handlebars->31->2101" + "default.handlebars->31->1977", + "default.handlebars->31->2104" ] }, { @@ -8958,8 +8958,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->1976", - "default.handlebars->31->2114" + "default.handlebars->31->1979", + "default.handlebars->31->2117" ] }, { @@ -8979,7 +8979,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2103" + "default.handlebars->31->2106" ] }, { @@ -8999,7 +8999,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2106" + "default.handlebars->31->2109" ] }, { @@ -9019,8 +9019,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->31->2104", - "default.handlebars->31->2107" + "default.handlebars->31->2107", + "default.handlebars->31->2110" ] }, { @@ -9041,7 +9041,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->11->85", - "default.handlebars->31->1124" + "default.handlebars->31->1126" ] }, { @@ -9078,7 +9078,7 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->31->2099" + "default.handlebars->31->2102" ] }, { @@ -9132,7 +9132,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->31->1593" + "default.handlebars->31->1596" ] }, { @@ -9152,7 +9152,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->31->1595" + "default.handlebars->31->1598" ] }, { @@ -9210,7 +9210,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->11->138", - "default.handlebars->31->1665" + "default.handlebars->31->1668" ] }, { @@ -9234,8 +9234,8 @@ "default-mobile.handlebars->11->345", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->31->1434", - "default.handlebars->31->959", + "default.handlebars->31->1436", + "default.handlebars->31->961", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -9283,7 +9283,7 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->31->1488" + "default.handlebars->31->1490" ] }, { @@ -9405,7 +9405,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->31->2202" + "default.handlebars->31->2205" ] }, { @@ -9425,7 +9425,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->31->2207" + "default.handlebars->31->2210" ] }, { @@ -9446,7 +9446,7 @@ "zh-cht": "現在已連接", "xloc": [ "default-mobile.handlebars->11->405", - "default.handlebars->31->1019" + "default.handlebars->31->1021" ] }, { @@ -9489,7 +9489,7 @@ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->381", "default-mobile.handlebars->11->48", - "default.handlebars->31->1010", + "default.handlebars->31->1012", "default.handlebars->31->244", "default.handlebars->31->247", "default.handlebars->31->291", @@ -9516,7 +9516,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->31->2221" + "default.handlebars->31->2224" ] }, { @@ -9536,7 +9536,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->31->2253" + "default.handlebars->31->2256" ] }, { @@ -9597,7 +9597,7 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->11->266", - "default.handlebars->31->1628", + "default.handlebars->31->1631", "default.handlebars->31->235", "default.handlebars->31->646", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -9620,8 +9620,8 @@ "zh-chs": "控制台", "zh-cht": "控制台", "xloc": [ - "default.handlebars->31->721", - "default.handlebars->31->742", + "default.handlebars->31->722", + "default.handlebars->31->744", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole" @@ -9664,8 +9664,8 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->31->720", - "default.handlebars->31->741", + "default.handlebars->31->721", + "default.handlebars->31->743", "messenger.handlebars->13->2" ] }, @@ -9686,7 +9686,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->31->2237" + "default.handlebars->31->2240" ] }, { @@ -9843,8 +9843,8 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->31->1633", - "default.handlebars->31->1652", + "default.handlebars->31->1636", + "default.handlebars->31->1655", "default.handlebars->31->211", "default.handlebars->31->370" ] @@ -9947,7 +9947,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->31->1724" + "default.handlebars->31->1727" ] }, { @@ -10093,7 +10093,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->31->2236" + "default.handlebars->31->2239" ] }, { @@ -10113,7 +10113,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->31->1175" + "default.handlebars->31->1177" ] }, { @@ -10133,7 +10133,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->31->1888", + "default.handlebars->31->1891", "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" @@ -10176,7 +10176,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->31->1927" + "default.handlebars->31->1930" ] }, { @@ -10216,7 +10216,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->31->1369" + "default.handlebars->31->1371" ] }, { @@ -10276,7 +10276,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->31->1717" + "default.handlebars->31->1720" ] }, { @@ -10296,7 +10296,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->31->1852" + "default.handlebars->31->1855" ] }, { @@ -10338,7 +10338,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->31->1728" + "default.handlebars->31->1731" ] }, { @@ -10358,7 +10358,7 @@ "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。", "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "xloc": [ - "default.handlebars->31->760" + "default.handlebars->31->762" ] }, { @@ -10412,7 +10412,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->31->2013" + "default.handlebars->31->2016" ] }, { @@ -10432,7 +10432,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->31->1416" + "default.handlebars->31->1418" ] }, { @@ -10474,8 +10474,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->31->1414", - "default.handlebars->31->1415" + "default.handlebars->31->1416", + "default.handlebars->31->1417" ] }, { @@ -10495,7 +10495,7 @@ "zh-chs": "证书", "zh-cht": "證書", "xloc": [ - "default.handlebars->31->1386" + "default.handlebars->31->1388" ] }, { @@ -10515,7 +10515,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->31->1176" + "default.handlebars->31->1178" ] }, { @@ -10535,7 +10535,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->31->1177" + "default.handlebars->31->1179" ] }, { @@ -10600,8 +10600,8 @@ "default-mobile.handlebars->11->334", "default-mobile.handlebars->11->338", "default.handlebars->31->57", - "default.handlebars->31->914", - "default.handlebars->31->918", + "default.handlebars->31->916", + "default.handlebars->31->920", "terminal.handlebars->3->6" ] }, @@ -10710,7 +10710,7 @@ "fr": "Le mot de passe actuel n'est pas correct.", "xloc": [ "default-mobile.handlebars->11->566", - "default.handlebars->31->2176" + "default.handlebars->31->2179" ] }, { @@ -10769,7 +10769,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->31->1178" + "default.handlebars->31->1180" ] }, { @@ -10809,7 +10809,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->31->1179" + "default.handlebars->31->1181" ] }, { @@ -10829,7 +10829,7 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->31->882", + "default.handlebars->31->884", "desktop.handlebars->3->11" ] }, @@ -10850,7 +10850,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->31->1337" + "default.handlebars->31->1339" ] }, { @@ -10871,7 +10871,7 @@ "zh-cht": "天", "xloc": [ "default-mobile.handlebars->11->291", - "default.handlebars->31->809" + "default.handlebars->31->811" ] }, { @@ -10891,7 +10891,7 @@ "zh-chs": "停用", "zh-cht": "停用", "xloc": [ - "default.handlebars->31->1467" + "default.handlebars->31->1469" ] }, { @@ -10911,7 +10911,7 @@ "zh-chs": "如果设置停用CCM", "zh-cht": "如果設置停用CCM", "xloc": [ - "default.handlebars->31->1479" + "default.handlebars->31->1481" ] }, { @@ -10969,10 +10969,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->31->1875", - "default.handlebars->31->1923", - "default.handlebars->31->1934", - "default.handlebars->31->2002" + "default.handlebars->31->1878", + "default.handlebars->31->1926", + "default.handlebars->31->1937", + "default.handlebars->31->2005" ] }, { @@ -10981,7 +10981,7 @@ "nl": "Del", "xloc": [ "default-mobile.handlebars->11->322", - "default.handlebars->31->902" + "default.handlebars->31->904" ] }, { @@ -11005,9 +11005,9 @@ "default-mobile.handlebars->11->355", "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->31->1659", + "default.handlebars->31->1662", "default.handlebars->31->535", - "default.handlebars->31->978", + "default.handlebars->31->980", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -11036,7 +11036,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->11->95", - "default.handlebars->31->1354" + "default.handlebars->31->1356" ] }, { @@ -11056,7 +11056,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->31->1842" + "default.handlebars->31->1845" ] }, { @@ -11099,8 +11099,8 @@ "xloc": [ "default-mobile.handlebars->11->482", "default-mobile.handlebars->11->485", - "default.handlebars->31->1463", - "default.handlebars->31->1496" + "default.handlebars->31->1465", + "default.handlebars->31->1498" ] }, { @@ -11121,7 +11121,7 @@ "zh-cht": "刪除節點", "xloc": [ "default-mobile.handlebars->11->299", - "default.handlebars->31->835" + "default.handlebars->31->837" ] }, { @@ -11161,7 +11161,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->31->2054" + "default.handlebars->31->2057" ] }, { @@ -11181,8 +11181,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->31->1972", - "default.handlebars->31->1982" + "default.handlebars->31->1975", + "default.handlebars->31->1985" ] }, { @@ -11202,7 +11202,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->31->1921" + "default.handlebars->31->1924" ] }, { @@ -11222,7 +11222,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->31->2077" + "default.handlebars->31->2080" ] }, { @@ -11243,7 +11243,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->31->1838", + "default.handlebars->31->1841", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -11284,7 +11284,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->31->1917" + "default.handlebars->31->1920" ] }, { @@ -11324,7 +11324,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->31->1719" + "default.handlebars->31->1722" ] }, { @@ -11346,8 +11346,8 @@ "xloc": [ "default-mobile.handlebars->11->135", "default-mobile.handlebars->11->357", - "default.handlebars->31->1661", - "default.handlebars->31->980" + "default.handlebars->31->1664", + "default.handlebars->31->982" ] }, { @@ -11367,7 +11367,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->31->1980" + "default.handlebars->31->1983" ] }, { @@ -11389,8 +11389,8 @@ "xloc": [ "default-mobile.handlebars->11->134", "default-mobile.handlebars->11->356", - "default.handlebars->31->1660", - "default.handlebars->31->979" + "default.handlebars->31->1663", + "default.handlebars->31->981" ] }, { @@ -11430,7 +11430,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->31->1718" + "default.handlebars->31->1721" ] }, { @@ -11450,7 +11450,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->31->1720" + "default.handlebars->31->1723" ] }, { @@ -11471,7 +11471,7 @@ "zh-cht": "被拒絕", "xloc": [ "default-mobile.handlebars->11->310", - "default.handlebars->31->878", + "default.handlebars->31->880", "desktop.handlebars->3->7", "terminal.handlebars->3->11" ] @@ -11569,18 +11569,18 @@ "default-mobile.handlebars->11->417", "default-mobile.handlebars->11->474", "default-mobile.handlebars->11->487", - "default.handlebars->31->1031", - "default.handlebars->31->1041", - "default.handlebars->31->1374", - "default.handlebars->31->1411", - "default.handlebars->31->1498", - "default.handlebars->31->1926", - "default.handlebars->31->1936", - "default.handlebars->31->1937", - "default.handlebars->31->1978", + "default.handlebars->31->1033", + "default.handlebars->31->1043", + "default.handlebars->31->1376", + "default.handlebars->31->1413", + "default.handlebars->31->1500", + "default.handlebars->31->1929", + "default.handlebars->31->1939", + "default.handlebars->31->1940", + "default.handlebars->31->1981", "default.handlebars->31->576", "default.handlebars->31->577", - "default.handlebars->31->873", + "default.handlebars->31->875", "default.handlebars->31->88", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] @@ -11620,12 +11620,12 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->11->278", - "default.handlebars->31->1504", - "default.handlebars->31->2126", + "default.handlebars->31->1506", + "default.handlebars->31->2129", "default.handlebars->31->541", "default.handlebars->31->708", - "default.handlebars->31->763", - "default.handlebars->31->944", + "default.handlebars->31->764", + "default.handlebars->31->946", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", "desktop.handlebars->3->23" @@ -11668,9 +11668,9 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->31->1425", - "default.handlebars->31->1941", - "default.handlebars->31->2028", + "default.handlebars->31->1427", + "default.handlebars->31->1944", + "default.handlebars->31->2031", "default.handlebars->31->627" ] }, @@ -11691,9 +11691,9 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->31->1424", - "default.handlebars->31->1940", - "default.handlebars->31->2027", + "default.handlebars->31->1426", + "default.handlebars->31->1943", + "default.handlebars->31->2030", "default.handlebars->31->626" ] }, @@ -11714,9 +11714,9 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->31->1422", - "default.handlebars->31->1938", - "default.handlebars->31->2025", + "default.handlebars->31->1424", + "default.handlebars->31->1941", + "default.handlebars->31->2028", "default.handlebars->31->624" ] }, @@ -11779,9 +11779,9 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->31->1423", - "default.handlebars->31->1939", - "default.handlebars->31->2026", + "default.handlebars->31->1425", + "default.handlebars->31->1942", + "default.handlebars->31->2029", "default.handlebars->31->625" ] }, @@ -11790,7 +11790,7 @@ "nl": "Desktop, Alleen kijken", "fr": "Bureau en visualisation seulement", "xloc": [ - "default.handlebars->31->764" + "default.handlebars->31->767" ] }, { @@ -11810,7 +11810,7 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->31->943" + "default.handlebars->31->945" ] }, { @@ -11894,10 +11894,10 @@ "zh-cht": "裝置", "xloc": [ "default-mobile.handlebars->11->412", - "default.handlebars->31->1026", - "default.handlebars->31->1527", + "default.handlebars->31->1028", + "default.handlebars->31->1529", "default.handlebars->31->197", - "default.handlebars->31->2096", + "default.handlebars->31->2099", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -11920,7 +11920,7 @@ "xloc": [ "default-mobile.handlebars->11->288", "default-mobile.handlebars->11->289", - "default.handlebars->31->800" + "default.handlebars->31->802" ] }, { @@ -11962,15 +11962,15 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->544", - "default.handlebars->31->1522", - "default.handlebars->31->1525", - "default.handlebars->31->1526", - "default.handlebars->31->1789", - "default.handlebars->31->1964", - "default.handlebars->31->1970", - "default.handlebars->31->2084", - "default.handlebars->31->2135", - "default.handlebars->31->2154" + "default.handlebars->31->1524", + "default.handlebars->31->1527", + "default.handlebars->31->1528", + "default.handlebars->31->1792", + "default.handlebars->31->1967", + "default.handlebars->31->1973", + "default.handlebars->31->2087", + "default.handlebars->31->2138", + "default.handlebars->31->2157" ] }, { @@ -11991,7 +11991,7 @@ "zh-cht": "裝置群用戶", "xloc": [ "default-mobile.handlebars->11->533", - "default.handlebars->31->1591" + "default.handlebars->31->1594" ] }, { @@ -12012,11 +12012,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->31->1805", - "default.handlebars->31->1911", - "default.handlebars->31->1951", - "default.handlebars->31->2022", - "default.handlebars->31->2205", + "default.handlebars->31->1808", + "default.handlebars->31->1914", + "default.handlebars->31->1954", + "default.handlebars->31->2025", + "default.handlebars->31->2208", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -12057,7 +12057,7 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->31->836" + "default.handlebars->31->838" ] }, { @@ -12077,7 +12077,7 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->31->757" + "default.handlebars->31->759" ] }, { @@ -12098,9 +12098,9 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->31->2134", + "default.handlebars->31->2137", "default.handlebars->31->305", - "default.handlebars->31->871", + "default.handlebars->31->873", "player.handlebars->3->9" ] }, @@ -12122,7 +12122,7 @@ "zh-cht": "裝置通知", "xloc": [ "default.handlebars->31->494", - "default.handlebars->31->759" + "default.handlebars->31->761" ] }, { @@ -12199,8 +12199,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->31->1342", - "default.handlebars->31->1612" + "default.handlebars->31->1344", + "default.handlebars->31->1615" ] }, { @@ -12220,8 +12220,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->31->1343", - "default.handlebars->31->1613" + "default.handlebars->31->1345", + "default.handlebars->31->1616" ] }, { @@ -12241,7 +12241,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->31->1749" + "default.handlebars->31->1752" ] }, { @@ -12261,7 +12261,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->31->1750" + "default.handlebars->31->1753" ] }, { @@ -12281,7 +12281,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->31->1751" + "default.handlebars->31->1754" ] }, { @@ -12301,7 +12301,7 @@ "zh-chs": "其他设备组管理员可以查看和更改设备组注释。", "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ - "default.handlebars->31->754" + "default.handlebars->31->756" ] }, { @@ -12321,7 +12321,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->31->1746" + "default.handlebars->31->1749" ] }, { @@ -12341,7 +12341,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->31->1729" + "default.handlebars->31->1732" ] }, { @@ -12734,7 +12734,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->31->1731" + "default.handlebars->31->1734" ] }, { @@ -12771,8 +12771,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->31->1912", - "default.handlebars->31->1952" + "default.handlebars->31->1915", + "default.handlebars->31->1955" ] }, { @@ -12813,7 +12813,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->31->1762" + "default.handlebars->31->1765" ] }, { @@ -12836,8 +12836,8 @@ "agent-translations.json", "default-mobile.handlebars->11->346", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->31->1435", - "default.handlebars->31->960", + "default.handlebars->31->1437", + "default.handlebars->31->962", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span", @@ -12937,7 +12937,7 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->31->758" + "default.handlebars->31->760" ] }, { @@ -12997,7 +12997,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->31->1341" + "default.handlebars->31->1343" ] }, { @@ -13017,7 +13017,7 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->31->929" + "default.handlebars->31->931" ] }, { @@ -13037,7 +13037,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->31->1632" + "default.handlebars->31->1635" ] }, { @@ -13057,7 +13057,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->31->1691" + "default.handlebars->31->1694" ] }, { @@ -13077,7 +13077,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->31->1699" + "default.handlebars->31->1702" ] }, { @@ -13097,8 +13097,8 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->31->1482", - "default.handlebars->31->1486" + "default.handlebars->31->1484", + "default.handlebars->31->1488" ] }, { @@ -13118,10 +13118,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->31->1876", - "default.handlebars->31->1924", - "default.handlebars->31->1933", - "default.handlebars->31->2001", + "default.handlebars->31->1879", + "default.handlebars->31->1927", + "default.handlebars->31->1936", + "default.handlebars->31->2004", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -13143,7 +13143,7 @@ "zh-chs": "请勿更改,如果设置请保留CCM", "zh-cht": "請勿更改,如果設置請保留CCM", "xloc": [ - "default.handlebars->31->1478" + "default.handlebars->31->1480" ] }, { @@ -13180,7 +13180,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->31->1487" + "default.handlebars->31->1489" ] }, { @@ -13245,7 +13245,7 @@ "nl": "Omlaag", "xloc": [ "default-mobile.handlebars->11->330", - "default.handlebars->31->910" + "default.handlebars->31->912" ] }, { @@ -13309,7 +13309,7 @@ "zh-cht": "下載檔案", "xloc": [ "default-mobile.handlebars->11->376", - "default.handlebars->31->999" + "default.handlebars->31->1001" ] }, { @@ -13349,7 +13349,7 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->31->861" + "default.handlebars->31->863" ] }, { @@ -13409,7 +13409,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->31->1794", + "default.handlebars->31->1797", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -13430,7 +13430,7 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->31->854" + "default.handlebars->31->856" ] }, { @@ -13510,7 +13510,7 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->31->810" + "default.handlebars->31->812" ] }, { @@ -13610,7 +13610,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->31->1795" + "default.handlebars->31->1798" ] }, { @@ -13630,7 +13630,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->31->1860" + "default.handlebars->31->1863" ] }, { @@ -13711,14 +13711,14 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->31->1722" + "default.handlebars->31->1725" ] }, { "en": "Download: \\\"{0}\\\", Size: {1}", "fr": "Téléchargement : \\\"{0}\\\", Taille : {1}", "xloc": [ - "default.handlebars->31->1779" + "default.handlebars->31->1782" ] }, { @@ -13758,7 +13758,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->31->2201" + "default.handlebars->31->2204" ] }, { @@ -13798,7 +13798,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->31->1928" + "default.handlebars->31->1931" ] }, { @@ -13835,8 +13835,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->31->2120", - "default.handlebars->31->2140", + "default.handlebars->31->2123", + "default.handlebars->31->2143", "player.handlebars->3->2" ] }, @@ -13874,7 +13874,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->31->1181" + "default.handlebars->31->1183" ] }, { @@ -13894,7 +13894,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->31->1180" + "default.handlebars->31->1182" ] }, { @@ -14183,7 +14183,7 @@ "zh-cht": "編輯裝置", "xloc": [ "default-mobile.handlebars->11->308", - "default.handlebars->31->876" + "default.handlebars->31->878" ] }, { @@ -14206,10 +14206,10 @@ "default-mobile.handlebars->11->488", "default-mobile.handlebars->11->490", "default-mobile.handlebars->11->510", - "default.handlebars->31->1499", - "default.handlebars->31->1531", - "default.handlebars->31->1555", - "default.handlebars->31->1567" + "default.handlebars->31->1501", + "default.handlebars->31->1533", + "default.handlebars->31->1558", + "default.handlebars->31->1570" ] }, { @@ -14229,7 +14229,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->31->1517" + "default.handlebars->31->1519" ] }, { @@ -14249,8 +14249,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->31->1552", - "default.handlebars->31->1564" + "default.handlebars->31->1555", + "default.handlebars->31->1567" ] }, { @@ -14270,7 +14270,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->31->1500" + "default.handlebars->31->1502" ] }, { @@ -14291,7 +14291,7 @@ "zh-cht": "編輯裝置筆記", "xloc": [ "default-mobile.handlebars->11->502", - "default.handlebars->31->1544" + "default.handlebars->31->1547" ] }, { @@ -14311,8 +14311,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->31->1557", - "default.handlebars->31->1559" + "default.handlebars->31->1560", + "default.handlebars->31->1562" ] }, { @@ -14352,7 +14352,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->31->1502" + "default.handlebars->31->1504" ] }, { @@ -14372,7 +14372,7 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->31->732" + "default.handlebars->31->733" ] }, { @@ -14399,7 +14399,7 @@ "default.handlebars->31->591", "default.handlebars->31->594", "default.handlebars->31->597", - "default.handlebars->31->817" + "default.handlebars->31->819" ] }, { @@ -14420,7 +14420,7 @@ "zh-cht": "編輯筆記", "xloc": [ "default-mobile.handlebars->11->517", - "default.handlebars->31->1574" + "default.handlebars->31->1577" ] }, { @@ -14440,7 +14440,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->31->1501" + "default.handlebars->31->1503" ] }, { @@ -14460,7 +14460,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->31->1565" + "default.handlebars->31->1568" ] }, { @@ -14480,7 +14480,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->31->1560" + "default.handlebars->31->1563" ] }, { @@ -14500,7 +14500,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->31->1979" + "default.handlebars->31->1982" ] }, { @@ -14520,7 +14520,7 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->31->1562" + "default.handlebars->31->1565" ] }, { @@ -14540,7 +14540,7 @@ "zh-chs": "编辑用户组用户同意", "zh-cht": "編輯用戶組用戶同意", "xloc": [ - "default.handlebars->31->1503" + "default.handlebars->31->1505" ] }, { @@ -14622,11 +14622,11 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->11->89", - "default.handlebars->31->1878", - "default.handlebars->31->2005", - "default.handlebars->31->2007", - "default.handlebars->31->2047", - "default.handlebars->31->2065", + "default.handlebars->31->1881", + "default.handlebars->31->2008", + "default.handlebars->31->2010", + "default.handlebars->31->2050", + "default.handlebars->31->2068", "default.handlebars->31->337", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -14659,7 +14659,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->11->90", - "default.handlebars->31->1350" + "default.handlebars->31->1352" ] }, { @@ -14680,7 +14680,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->11->79", - "default.handlebars->31->1118" + "default.handlebars->31->1120" ] }, { @@ -14740,7 +14740,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->11->88", - "default.handlebars->31->1348" + "default.handlebars->31->1350" ] }, { @@ -14780,7 +14780,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->31->1824" + "default.handlebars->31->1827" ] }, { @@ -14800,8 +14800,8 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->31->1825", - "default.handlebars->31->1999" + "default.handlebars->31->1828", + "default.handlebars->31->2002" ] }, { @@ -14821,7 +14821,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->31->1884" + "default.handlebars->31->1887" ] }, { @@ -14841,7 +14841,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->31->2000" + "default.handlebars->31->2003" ] }, { @@ -14862,7 +14862,7 @@ "zh-cht": "電郵已發送。", "xloc": [ "default-mobile.handlebars->11->559", - "default.handlebars->31->2169", + "default.handlebars->31->2172", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->3" @@ -14907,7 +14907,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->31->1885" + "default.handlebars->31->1888" ] }, { @@ -14927,7 +14927,7 @@ "zh-chs": "电邮/短信流量", "zh-cht": "電郵/短信流量", "xloc": [ - "default.handlebars->31->2245" + "default.handlebars->31->2248" ] }, { @@ -14973,7 +14973,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->31->1597" + "default.handlebars->31->1600" ] }, { @@ -15014,7 +15014,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->11->81", - "default.handlebars->31->1120" + "default.handlebars->31->1122" ] }, { @@ -15054,7 +15054,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->31->2142" + "default.handlebars->31->2145" ] }, { @@ -15074,7 +15074,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->31->1761" + "default.handlebars->31->1764" ] }, { @@ -15103,7 +15103,7 @@ "nl": "End", "xloc": [ "default-mobile.handlebars->11->324", - "default.handlebars->31->904" + "default.handlebars->31->906" ] }, { @@ -15123,7 +15123,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->31->2139" + "default.handlebars->31->2142" ] }, { @@ -15143,7 +15143,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->31->1684" + "default.handlebars->31->1687" ] }, { @@ -15163,7 +15163,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->31->1685" + "default.handlebars->31->1688" ] }, { @@ -15183,7 +15183,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->31->1682" + "default.handlebars->31->1685" ] }, { @@ -15203,7 +15203,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->31->1683" + "default.handlebars->31->1686" ] }, { @@ -15223,7 +15223,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->31->1182" + "default.handlebars->31->1184" ] }, { @@ -15243,7 +15243,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->31->1183" + "default.handlebars->31->1185" ] }, { @@ -15263,7 +15263,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->31->1184" + "default.handlebars->31->1186" ] }, { @@ -15283,7 +15283,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->31->1185" + "default.handlebars->31->1187" ] }, { @@ -15303,7 +15303,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->31->1186" + "default.handlebars->31->1188" ] }, { @@ -15323,7 +15323,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->31->1187" + "default.handlebars->31->1189" ] }, { @@ -15343,7 +15343,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->31->1188" + "default.handlebars->31->1190" ] }, { @@ -15363,7 +15363,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->31->1189" + "default.handlebars->31->1191" ] }, { @@ -15383,7 +15383,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->31->1190" + "default.handlebars->31->1192" ] }, { @@ -15403,7 +15403,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->31->1191" + "default.handlebars->31->1193" ] }, { @@ -15423,7 +15423,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->31->1192" + "default.handlebars->31->1194" ] }, { @@ -15443,7 +15443,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->31->1193" + "default.handlebars->31->1195" ] }, { @@ -15463,7 +15463,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->31->1194" + "default.handlebars->31->1196" ] }, { @@ -15484,10 +15484,10 @@ "zh-cht": "輸入", "xloc": [ "default-mobile.handlebars->11->319", - "default.handlebars->31->1376", - "default.handlebars->31->1377", - "default.handlebars->31->899", - "default.handlebars->31->972" + "default.handlebars->31->1378", + "default.handlebars->31->1379", + "default.handlebars->31->901", + "default.handlebars->31->974" ] }, { @@ -15507,7 +15507,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->31->1889" + "default.handlebars->31->1892" ] }, { @@ -15567,7 +15567,7 @@ "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->31->923" + "default.handlebars->31->925" ] }, { @@ -15629,7 +15629,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->31->1115" + "default.handlebars->31->1117" ] }, { @@ -15658,7 +15658,7 @@ "fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.", "xloc": [ "default-mobile.handlebars->11->567", - "default.handlebars->31->2177" + "default.handlebars->31->2180" ] }, { @@ -15667,7 +15667,7 @@ "fr": "Erreur, mot de passe non modifié.", "xloc": [ "default-mobile.handlebars->11->564", - "default.handlebars->31->2174" + "default.handlebars->31->2177" ] }, { @@ -15676,7 +15676,7 @@ "fr": "Erreur, impossible de changer le mot de passe couramment utilisé.", "xloc": [ "default-mobile.handlebars->11->563", - "default.handlebars->31->2173" + "default.handlebars->31->2176" ] }, { @@ -15685,7 +15685,7 @@ "fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.", "xloc": [ "default-mobile.handlebars->11->562", - "default.handlebars->31->2172" + "default.handlebars->31->2175" ] }, { @@ -15714,7 +15714,7 @@ "nl": "Escape", "xloc": [ "default-mobile.handlebars->11->320", - "default.handlebars->31->900" + "default.handlebars->31->902" ] }, { @@ -15734,7 +15734,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->31->1195" + "default.handlebars->31->1197" ] }, { @@ -15754,7 +15754,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->31->1196" + "default.handlebars->31->1198" ] }, { @@ -15774,7 +15774,7 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->31->1012" + "default.handlebars->31->1014" ] }, { @@ -15794,7 +15794,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->31->1800" + "default.handlebars->31->1803" ] }, { @@ -15900,7 +15900,7 @@ "zh-cht": "到期時間", "xloc": [ "default.handlebars->31->203", - "default.handlebars->31->784" + "default.handlebars->31->786" ] }, { @@ -15982,7 +15982,7 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->31->951", + "default.handlebars->31->953", "terminal.handlebars->3->16" ] }, @@ -16024,7 +16024,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->31->2228" + "default.handlebars->31->2231" ] }, { @@ -16064,7 +16064,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->31->1246" + "default.handlebars->31->1248" ] }, { @@ -16084,7 +16084,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->31->1197" + "default.handlebars->31->1199" ] }, { @@ -16113,7 +16113,7 @@ "fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.", "xloc": [ "default-mobile.handlebars->11->558", - "default.handlebars->31->2168" + "default.handlebars->31->2171" ] }, { @@ -16133,7 +16133,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->31->1707" + "default.handlebars->31->1710" ] }, { @@ -16153,7 +16153,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->31->1714" + "default.handlebars->31->1717" ] }, { @@ -16174,7 +16174,7 @@ "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ "default-mobile.handlebars->11->311", - "default.handlebars->31->879", + "default.handlebars->31->881", "desktop.handlebars->3->8", "terminal.handlebars->3->12" ] @@ -16196,7 +16196,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->31->1198" + "default.handlebars->31->1200" ] }, { @@ -16238,7 +16238,7 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->31->1421" + "default.handlebars->31->1423" ] }, { @@ -16258,7 +16258,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->31->1199" + "default.handlebars->31->1201" ] }, { @@ -16300,7 +16300,7 @@ "xloc": [ "default-mobile.handlebars->11->360", "default.handlebars->31->533", - "default.handlebars->31->983" + "default.handlebars->31->985" ] }, { @@ -16336,8 +16336,8 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->31->963", - "default.handlebars->31->965" + "default.handlebars->31->965", + "default.handlebars->31->967" ] }, { @@ -16377,7 +16377,7 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->31->932" + "default.handlebars->31->934" ] }, { @@ -16399,8 +16399,8 @@ "xloc": [ "default-mobile.handlebars->11->182", "default-mobile.handlebars->11->279", - "default.handlebars->31->1511", - "default.handlebars->31->2127", + "default.handlebars->31->1513", + "default.handlebars->31->2130", "default.handlebars->31->276", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -16443,9 +16443,9 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->31->1429", - "default.handlebars->31->1945", - "default.handlebars->31->2032", + "default.handlebars->31->1431", + "default.handlebars->31->1948", + "default.handlebars->31->2035", "default.handlebars->31->631" ] }, @@ -16466,9 +16466,9 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->31->1428", - "default.handlebars->31->1944", - "default.handlebars->31->2031", + "default.handlebars->31->1430", + "default.handlebars->31->1947", + "default.handlebars->31->2034", "default.handlebars->31->630" ] }, @@ -16490,7 +16490,7 @@ "zh-cht": "過濾", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->31->968", + "default.handlebars->31->970", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3" @@ -16533,7 +16533,7 @@ "zh-chs": "查找文件", "zh-cht": "查找文件", "xloc": [ - "default.handlebars->31->971" + "default.handlebars->31->973" ] }, { @@ -16553,7 +16553,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->31->1680" + "default.handlebars->31->1683" ] }, { @@ -16573,7 +16573,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->31->1200" + "default.handlebars->31->1202" ] }, { @@ -16750,8 +16750,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->31->1883", - "default.handlebars->31->2074" + "default.handlebars->31->1886", + "default.handlebars->31->2077" ] }, { @@ -16834,7 +16834,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->31->1791" + "default.handlebars->31->1794" ] }, { @@ -16875,8 +16875,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->31->2186", - "default.handlebars->31->2188" + "default.handlebars->31->2189", + "default.handlebars->31->2191" ] }, { @@ -16917,7 +16917,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->31->1202" + "default.handlebars->31->1204" ] }, { @@ -16937,7 +16937,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->31->1203" + "default.handlebars->31->1205" ] }, { @@ -16957,7 +16957,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->31->1204" + "default.handlebars->31->1206" ] }, { @@ -16977,7 +16977,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->31->1205" + "default.handlebars->31->1207" ] }, { @@ -16997,7 +16997,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->31->1206" + "default.handlebars->31->1208" ] }, { @@ -17017,7 +17017,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->31->1201" + "default.handlebars->31->1203" ] }, { @@ -17037,7 +17037,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->31->1207" + "default.handlebars->31->1209" ] }, { @@ -17057,7 +17057,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->31->1208" + "default.handlebars->31->1210" ] }, { @@ -17077,7 +17077,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->31->1209" + "default.handlebars->31->1211" ] }, { @@ -17101,9 +17101,9 @@ "default-mobile.handlebars->11->480", "default-mobile.handlebars->11->489", "default-mobile.handlebars->11->509", - "default.handlebars->31->1383", - "default.handlebars->31->1530", - "default.handlebars->31->1895" + "default.handlebars->31->1385", + "default.handlebars->31->1532", + "default.handlebars->31->1898" ] }, { @@ -17123,7 +17123,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->31->1566" + "default.handlebars->31->1569" ] }, { @@ -17180,7 +17180,7 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->31->731" + "default.handlebars->31->732" ] }, { @@ -17242,7 +17242,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->31->1993" + "default.handlebars->31->1996" ] }, { @@ -17262,8 +17262,8 @@ "zh-chs": "全自动的", "zh-cht": "全自動的", "xloc": [ - "default.handlebars->31->1446", - "default.handlebars->31->1469" + "default.handlebars->31->1448", + "default.handlebars->31->1471" ] }, { @@ -17284,7 +17284,7 @@ "zh-cht": "GPU", "xloc": [ "default-mobile.handlebars->11->456", - "default.handlebars->31->1080" + "default.handlebars->31->1082" ] }, { @@ -17304,7 +17304,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->31->1211" + "default.handlebars->31->1213" ] }, { @@ -17324,7 +17324,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->31->1210" + "default.handlebars->31->1212" ] }, { @@ -17344,7 +17344,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->31->1212" + "default.handlebars->31->1214" ] }, { @@ -17470,7 +17470,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->31->1213" + "default.handlebars->31->1215" ] }, { @@ -17490,7 +17490,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->31->1215" + "default.handlebars->31->1217" ] }, { @@ -17510,7 +17510,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->31->1216" + "default.handlebars->31->1218" ] }, { @@ -17530,7 +17530,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->31->1217" + "default.handlebars->31->1219" ] }, { @@ -17550,7 +17550,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->31->1218" + "default.handlebars->31->1220" ] }, { @@ -17570,7 +17570,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->31->1214" + "default.handlebars->31->1216" ] }, { @@ -17590,7 +17590,7 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->31->1219" + "default.handlebars->31->1221" ] }, { @@ -17651,7 +17651,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->31->1694" + "default.handlebars->31->1697" ] }, { @@ -17713,7 +17713,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->31->1379" + "default.handlebars->31->1381" ] }, { @@ -17758,8 +17758,8 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->31->1390", - "default.handlebars->31->1393", + "default.handlebars->31->1392", + "default.handlebars->31->1395", "default.handlebars->31->220" ] }, @@ -17780,7 +17780,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->31->1387" + "default.handlebars->31->1389" ] }, { @@ -17820,7 +17820,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->31->1391" + "default.handlebars->31->1393" ] }, { @@ -17840,7 +17840,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->31->1220" + "default.handlebars->31->1222" ] }, { @@ -17882,8 +17882,8 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->31->1839", - "default.handlebars->31->1918", + "default.handlebars->31->1842", + "default.handlebars->31->1921", "default.handlebars->31->470", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -17907,7 +17907,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->31->1787" + "default.handlebars->31->1790" ] }, { @@ -17927,7 +17927,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->31->1935" + "default.handlebars->31->1938" ] }, { @@ -17947,7 +17947,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->31->1956" + "default.handlebars->31->1959" ] }, { @@ -17967,7 +17967,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->31->1529" + "default.handlebars->31->1531" ] }, { @@ -17987,7 +17987,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->31->1528" + "default.handlebars->31->1530" ] }, { @@ -18068,7 +18068,20 @@ "zh-cht": "來賓姓名", "xloc": [ "default.handlebars->31->198", - "default.handlebars->31->761" + "default.handlebars->31->763" + ] + }, + { + "en": "Guest Share", + "xloc": [ + "default.handlebars->31->720", + "default.handlebars->31->742" + ] + }, + { + "en": "Guest Sharing", + "xloc": [ + "default.handlebars->31->1539" ] }, { @@ -18088,7 +18101,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->31->1221" + "default.handlebars->31->1223" ] }, { @@ -18131,7 +18144,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->31->1222" + "default.handlebars->31->1224" ] }, { @@ -18171,7 +18184,7 @@ "zh-chs": "强行断开代理", "zh-cht": "強行斷開代理", "xloc": [ - "default.handlebars->31->1110" + "default.handlebars->31->1112" ] }, { @@ -18191,7 +18204,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->31->2230" + "default.handlebars->31->2233" ] }, { @@ -18211,7 +18224,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->31->2229" + "default.handlebars->31->2232" ] }, { @@ -18231,7 +18244,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->31->1223" + "default.handlebars->31->1225" ] }, { @@ -18292,7 +18305,7 @@ "zh-chs": "已请求帮助,用户:{0},详细信息:{1}", "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "xloc": [ - "default.handlebars->31->1771" + "default.handlebars->31->1774" ] }, { @@ -18353,7 +18366,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->31->1338" + "default.handlebars->31->1340" ] }, { @@ -18457,7 +18470,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->31->1224" + "default.handlebars->31->1226" ] }, { @@ -18495,7 +18508,7 @@ "zh-cht": "保存1個項目進行複製", "xloc": [ "default-mobile.handlebars->11->369", - "default.handlebars->31->993" + "default.handlebars->31->995" ] }, { @@ -18516,7 +18529,7 @@ "zh-cht": "保存1個項目進行移動", "xloc": [ "default-mobile.handlebars->11->373", - "default.handlebars->31->997" + "default.handlebars->31->999" ] }, { @@ -18537,7 +18550,7 @@ "zh-cht": "保留{0}個項目進行複製", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->31->991" + "default.handlebars->31->993" ] }, { @@ -18558,7 +18571,7 @@ "zh-cht": "保存{0}個項目以進行移動", "xloc": [ "default-mobile.handlebars->11->371", - "default.handlebars->31->995" + "default.handlebars->31->997" ] }, { @@ -18579,7 +18592,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->11->140", - "default.handlebars->31->1667" + "default.handlebars->31->1670" ] }, { @@ -18588,7 +18601,7 @@ "nl": "Home", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->31->903" + "default.handlebars->31->905" ] }, { @@ -18613,10 +18626,10 @@ "default-mobile.handlebars->11->234", "default-mobile.handlebars->11->304", "default-mobile.handlebars->11->415", - "default.handlebars->31->1029", + "default.handlebars->31->1031", "default.handlebars->31->306", "default.handlebars->31->573", - "default.handlebars->31->872" + "default.handlebars->31->874" ] }, { @@ -18636,7 +18649,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->31->1418" + "default.handlebars->31->1420" ] }, { @@ -18656,7 +18669,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->31->1225" + "default.handlebars->31->1227" ] }, { @@ -18719,9 +18732,9 @@ "zh-chs": "IP:{0}", "zh-cht": "IP:{0}", "xloc": [ - "default.handlebars->31->1039", - "default.handlebars->31->1049", - "default.handlebars->31->1053" + "default.handlebars->31->1041", + "default.handlebars->31->1051", + "default.handlebars->31->1055" ] }, { @@ -18741,9 +18754,9 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default.handlebars->31->1037", - "default.handlebars->31->1047", - "default.handlebars->31->1051" + "default.handlebars->31->1039", + "default.handlebars->31->1049", + "default.handlebars->31->1053" ] }, { @@ -18765,10 +18778,10 @@ "xloc": [ "default-mobile.handlebars->11->422", "default-mobile.handlebars->11->424", - "default.handlebars->31->1036", "default.handlebars->31->1038", - "default.handlebars->31->1046", - "default.handlebars->31->1048" + "default.handlebars->31->1040", + "default.handlebars->31->1048", + "default.handlebars->31->1050" ] }, { @@ -18853,8 +18866,8 @@ "xloc": [ "default-mobile.handlebars->11->426", "default-mobile.handlebars->11->428", - "default.handlebars->31->1050", - "default.handlebars->31->1052" + "default.handlebars->31->1052", + "default.handlebars->31->1054" ] }, { @@ -18934,7 +18947,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->31->1226" + "default.handlebars->31->1228" ] }, { @@ -18955,7 +18968,7 @@ "zh-cht": "圖符選擇", "xloc": [ "default-mobile.handlebars->11->302", - "default.handlebars->31->870" + "default.handlebars->31->872" ] }, { @@ -18977,8 +18990,8 @@ "xloc": [ "default-mobile.handlebars->11->414", "default-mobile.handlebars->11->454", - "default.handlebars->31->1028", - "default.handlebars->31->1078" + "default.handlebars->31->1030", + "default.handlebars->31->1080" ] }, { @@ -18998,7 +19011,7 @@ "zh-chs": "如果在CCM中,请重新激活英特尔®AMT", "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "xloc": [ - "default.handlebars->31->1483" + "default.handlebars->31->1485" ] }, { @@ -19167,7 +19180,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->31->1227" + "default.handlebars->31->1229" ] }, { @@ -19238,7 +19251,7 @@ "nl": "Insert", "xloc": [ "default-mobile.handlebars->11->321", - "default.handlebars->31->901" + "default.handlebars->31->903" ] }, { @@ -19352,8 +19365,8 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->31->1599", - "default.handlebars->31->1606", + "default.handlebars->31->1602", + "default.handlebars->31->1609", "default.handlebars->31->352", "default.handlebars->31->366", "default.handlebars->31->381" @@ -19376,7 +19389,7 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->31->953", + "default.handlebars->31->955", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "terminal.handlebars->3->18", "terminal.handlebars->p12->9->1->terminalSettingsButtons" @@ -19399,7 +19412,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->31->2226" + "default.handlebars->31->2229" ] }, { @@ -19407,7 +19420,7 @@ "fr": "Gestionnaire Intel AMT", "nl": "Intel AMT beheerder", "xloc": [ - "default.handlebars->31->2252" + "default.handlebars->31->2255" ] }, { @@ -19427,7 +19440,7 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->31->952", + "default.handlebars->31->954", "terminal.handlebars->3->17" ] }, @@ -19451,11 +19464,11 @@ "default-mobile.handlebars->11->216", "default-mobile.handlebars->11->258", "default-mobile.handlebars->11->263", - "default.handlebars->31->1436", - "default.handlebars->31->1447", - "default.handlebars->31->1618", - "default.handlebars->31->1626", - "default.handlebars->31->2251", + "default.handlebars->31->1438", + "default.handlebars->31->1449", + "default.handlebars->31->1621", + "default.handlebars->31->1629", + "default.handlebars->31->2254", "default.handlebars->31->543", "default.handlebars->31->601", "default.handlebars->31->641" @@ -19625,7 +19638,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->31->1470" + "default.handlebars->31->1472" ] }, { @@ -19645,7 +19658,7 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->31->2129", + "default.handlebars->31->2132", "player.handlebars->3->14" ] }, @@ -19686,7 +19699,7 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->31->2128", + "default.handlebars->31->2131", "player.handlebars->3->13" ] }, @@ -19746,8 +19759,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->31->1344", - "default.handlebars->31->1614" + "default.handlebars->31->1346", + "default.handlebars->31->1617" ] }, { @@ -19933,8 +19946,8 @@ "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ "default-mobile.handlebars->11->471", - "default.handlebars->31->1373", - "default.handlebars->31->1408" + "default.handlebars->31->1375", + "default.handlebars->31->1410" ] }, { @@ -20012,7 +20025,7 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ "default-mobile.handlebars->11->446", - "default.handlebars->31->1070" + "default.handlebars->31->1072" ] }, { @@ -20218,7 +20231,7 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->31->933" + "default.handlebars->31->935" ] }, { @@ -20238,8 +20251,8 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->31->1602", - "default.handlebars->31->1609", + "default.handlebars->31->1605", + "default.handlebars->31->1612", "default.handlebars->31->355", "default.handlebars->31->369", "default.handlebars->31->384" @@ -20282,7 +20295,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->31->1228" + "default.handlebars->31->1230" ] }, { @@ -20325,7 +20338,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->31->2200" + "default.handlebars->31->2203" ] }, { @@ -20345,7 +20358,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->31->2194" + "default.handlebars->31->2197" ] }, { @@ -20365,8 +20378,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->31->1857", - "default.handlebars->31->1859" + "default.handlebars->31->1860", + "default.handlebars->31->1862" ] }, { @@ -20386,7 +20399,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->31->1855" + "default.handlebars->31->1858" ] }, { @@ -20406,7 +20419,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->31->2192" + "default.handlebars->31->2195" ] }, { @@ -20426,7 +20439,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->31->2193" + "default.handlebars->31->2196" ] }, { @@ -20435,7 +20448,7 @@ "fr": "Message SMS non valide", "xloc": [ "default-mobile.handlebars->11->570", - "default.handlebars->31->2180" + "default.handlebars->31->2183" ] }, { @@ -20466,7 +20479,7 @@ "fr": "Domaine non valide", "xloc": [ "default-mobile.handlebars->11->550", - "default.handlebars->31->2160" + "default.handlebars->31->2163" ] }, { @@ -20475,7 +20488,7 @@ "fr": "Email invalide", "xloc": [ "default-mobile.handlebars->11->549", - "default.handlebars->31->2159" + "default.handlebars->31->2162" ] }, { @@ -20547,7 +20560,7 @@ "fr": "Mot de passe incorrect", "xloc": [ "default-mobile.handlebars->11->548", - "default.handlebars->31->2158" + "default.handlebars->31->2161" ] }, { @@ -20556,7 +20569,7 @@ "fr": "Autorisations de site non valides", "xloc": [ "default-mobile.handlebars->11->551", - "default.handlebars->31->2161" + "default.handlebars->31->2164" ] }, { @@ -20587,7 +20600,7 @@ "fr": "Nom d'utilisateur invalide", "xloc": [ "default-mobile.handlebars->11->547", - "default.handlebars->31->2157" + "default.handlebars->31->2160" ] }, { @@ -20607,7 +20620,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->31->1833" + "default.handlebars->31->1836" ] }, { @@ -20684,7 +20697,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->31->1604" + "default.handlebars->31->1607" ] }, { @@ -20724,7 +20737,7 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->31->1457", + "default.handlebars->31->1459", "default.handlebars->31->303", "default.handlebars->31->371" ] @@ -20747,12 +20760,12 @@ "zh-cht": "邀請碼", "xloc": [ "default-mobile.handlebars->11->545", - "default.handlebars->31->1440", - "default.handlebars->31->1598", - "default.handlebars->31->1603", - "default.handlebars->31->1605", - "default.handlebars->31->1610", - "default.handlebars->31->2155" + "default.handlebars->31->1442", + "default.handlebars->31->1601", + "default.handlebars->31->1606", + "default.handlebars->31->1608", + "default.handlebars->31->1613", + "default.handlebars->31->2158" ] }, { @@ -20792,7 +20805,7 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->31->1456", + "default.handlebars->31->1458", "default.handlebars->31->302" ] }, @@ -20833,7 +20846,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->31->1229" + "default.handlebars->31->1231" ] }, { @@ -20853,7 +20866,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->31->1230" + "default.handlebars->31->1232" ] }, { @@ -20873,7 +20886,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->31->1231" + "default.handlebars->31->1233" ] }, { @@ -20893,7 +20906,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->31->1793" + "default.handlebars->31->1796" ] }, { @@ -20913,8 +20926,8 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->31->1798", - "default.handlebars->31->1863", + "default.handlebars->31->1801", + "default.handlebars->31->1866", "default.handlebars->31->504" ] }, @@ -20935,7 +20948,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->31->1232" + "default.handlebars->31->1234" ] }, { @@ -20955,7 +20968,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->31->1677" + "default.handlebars->31->1680" ] }, { @@ -20975,7 +20988,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->31->1233" + "default.handlebars->31->1235" ] }, { @@ -20995,7 +21008,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->31->1234" + "default.handlebars->31->1236" ] }, { @@ -21015,7 +21028,7 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->31->1235" + "default.handlebars->31->1237" ] }, { @@ -21035,7 +21048,7 @@ "zh-chs": "保留现有密码", "zh-cht": "保留現有密碼", "xloc": [ - "default.handlebars->31->1471" + "default.handlebars->31->1473" ] }, { @@ -21055,7 +21068,7 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->31->934" + "default.handlebars->31->936" ] }, { @@ -21075,8 +21088,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->31->1126", - "default.handlebars->31->1129" + "default.handlebars->31->1128", + "default.handlebars->31->1131" ] }, { @@ -21102,7 +21115,7 @@ "nl": "Toetsenbord sneltoetsen aanpassen", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->31->921" + "default.handlebars->31->923" ] }, { @@ -21139,7 +21152,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->31->1236" + "default.handlebars->31->1238" ] }, { @@ -21159,7 +21172,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->31->1692" + "default.handlebars->31->1695" ] }, { @@ -21179,7 +21192,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->31->1237" + "default.handlebars->31->1239" ] }, { @@ -21199,7 +21212,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->31->1238" + "default.handlebars->31->1240" ] }, { @@ -21220,7 +21233,7 @@ "zh-cht": "已知的", "xloc": [ "default-mobile.handlebars->11->445", - "default.handlebars->31->1069" + "default.handlebars->31->1071" ] }, { @@ -21240,7 +21253,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->31->1239" + "default.handlebars->31->1241" ] }, { @@ -21260,7 +21273,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->31->1240" + "default.handlebars->31->1242" ] }, { @@ -21280,7 +21293,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->31->1241" + "default.handlebars->31->1243" ] }, { @@ -21300,8 +21313,8 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->31->948", - "default.handlebars->31->957", + "default.handlebars->31->950", + "default.handlebars->31->959", "terminal.handlebars->3->22", "terminal.handlebars->3->8" ] @@ -21323,7 +21336,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->31->1336" + "default.handlebars->31->1338" ] }, { @@ -21363,7 +21376,7 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->31->896" + "default.handlebars->31->898" ] }, { @@ -21576,7 +21589,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->31->1806" + "default.handlebars->31->1809" ] }, { @@ -21596,7 +21609,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->31->2014" + "default.handlebars->31->2017" ] }, { @@ -21619,9 +21632,9 @@ "default-mobile.handlebars->11->407", "default-mobile.handlebars->11->408", "default-mobile.handlebars->11->409", - "default.handlebars->31->1021", - "default.handlebars->31->1022", "default.handlebars->31->1023", + "default.handlebars->31->1024", + "default.handlebars->31->1025", "default.handlebars->31->80", "default.handlebars->31->82", "default.handlebars->31->84" @@ -21646,8 +21659,8 @@ "xloc": [ "default-mobile.handlebars->11->404", "default-mobile.handlebars->11->406", - "default.handlebars->31->1018", "default.handlebars->31->1020", + "default.handlebars->31->1022", "default.handlebars->31->79" ] }, @@ -21668,7 +21681,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->31->2018" + "default.handlebars->31->2021" ] }, { @@ -21728,7 +21741,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->31->1816" + "default.handlebars->31->1819" ] }, { @@ -21829,7 +21842,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->31->1242" + "default.handlebars->31->1244" ] }, { @@ -21849,7 +21862,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->31->1243" + "default.handlebars->31->1245" ] }, { @@ -21869,7 +21882,7 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->31->843" + "default.handlebars->31->845" ] }, { @@ -21929,7 +21942,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->31->2060" + "default.handlebars->31->2063" ] }, { @@ -21938,7 +21951,7 @@ "nl": "Links", "xloc": [ "default-mobile.handlebars->11->327", - "default.handlebars->31->907" + "default.handlebars->31->909" ] }, { @@ -21983,7 +21996,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->31->1678" + "default.handlebars->31->1681" ] }, { @@ -22003,7 +22016,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->31->2271" + "default.handlebars->31->2274" ] }, { @@ -22023,8 +22036,8 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->31->725", - "default.handlebars->31->746" + "default.handlebars->31->726", + "default.handlebars->31->748" ] }, { @@ -22066,9 +22079,9 @@ "zh-cht": "有限輸入", "xloc": [ "default-mobile.handlebars->11->522", - "default.handlebars->31->1580", + "default.handlebars->31->1583", "default.handlebars->31->718", - "default.handlebars->31->739" + "default.handlebars->31->740" ] }, { @@ -22089,7 +22102,7 @@ "zh-cht": "僅有限輸入", "xloc": [ "default-mobile.handlebars->11->495", - "default.handlebars->31->1536" + "default.handlebars->31->1538" ] }, { @@ -22336,7 +22349,7 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->31->851" + "default.handlebars->31->853" ] }, { @@ -22356,7 +22369,7 @@ "zh-chs": "Linux ARM, Raspberry Pi (64位)", "zh-cht": "Linux ARM, Raspberry Pi (64位)", "xloc": [ - "default.handlebars->31->852" + "default.handlebars->31->854" ] }, { @@ -22500,7 +22513,7 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->31->848" + "default.handlebars->31->850" ] }, { @@ -22520,7 +22533,7 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->31->847" + "default.handlebars->31->849" ] }, { @@ -22541,7 +22554,7 @@ "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ "default.handlebars->31->477", - "default.handlebars->31->804" + "default.handlebars->31->806" ] }, { @@ -22599,7 +22612,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->31->1244" + "default.handlebars->31->1246" ] }, { @@ -22640,11 +22653,11 @@ "zh-cht": "載入中...", "xloc": [ "default-mobile.handlebars->11->83", - "default.handlebars->31->1122", - "default.handlebars->31->1399", - "default.handlebars->31->1403", - "default.handlebars->31->2116", - "default.handlebars->31->838" + "default.handlebars->31->1124", + "default.handlebars->31->1401", + "default.handlebars->31->1405", + "default.handlebars->31->2119", + "default.handlebars->31->840" ] }, { @@ -22726,7 +22739,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->31->1700" + "default.handlebars->31->1703" ] }, { @@ -22746,7 +22759,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->31->1701" + "default.handlebars->31->1704" ] }, { @@ -22766,7 +22779,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->31->1339", + "default.handlebars->31->1341", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -22827,7 +22840,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->31->1903" + "default.handlebars->31->1906" ] }, { @@ -22847,7 +22860,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->31->1906" + "default.handlebars->31->1909" ] }, { @@ -22867,7 +22880,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->31->1836" + "default.handlebars->31->1839" ] }, { @@ -22894,7 +22907,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->31->1817" + "default.handlebars->31->1820" ] }, { @@ -22914,7 +22927,7 @@ "zh-chs": "被锁定账户", "zh-cht": "被鎖定賬戶", "xloc": [ - "default.handlebars->31->1990" + "default.handlebars->31->1993" ] }, { @@ -22934,7 +22947,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->31->1726" + "default.handlebars->31->1729" ] }, { @@ -23174,7 +23187,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->31->1245" + "default.handlebars->31->1247" ] }, { @@ -23196,10 +23209,10 @@ "xloc": [ "default-mobile.handlebars->11->418", "default-mobile.handlebars->11->420", - "default.handlebars->31->1032", "default.handlebars->31->1034", - "default.handlebars->31->1042", - "default.handlebars->31->1044" + "default.handlebars->31->1036", + "default.handlebars->31->1044", + "default.handlebars->31->1046" ] }, { @@ -23241,8 +23254,8 @@ "zh-cht": "MAC:{0}", "xloc": [ "default-mobile.handlebars->11->421", - "default.handlebars->31->1035", - "default.handlebars->31->1045" + "default.handlebars->31->1037", + "default.handlebars->31->1047" ] }, { @@ -23263,8 +23276,8 @@ "zh-cht": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->11->419", - "default.handlebars->31->1033", - "default.handlebars->31->1043" + "default.handlebars->31->1035", + "default.handlebars->31->1045" ] }, { @@ -23354,8 +23367,8 @@ "xloc": [ "default-mobile.handlebars->11->218", "default-mobile.handlebars->11->265", - "default.handlebars->31->1099", - "default.handlebars->31->1100", + "default.handlebars->31->1101", + "default.handlebars->31->1102", "default.handlebars->31->262", "default.handlebars->31->451", "default.handlebars->31->645", @@ -23545,7 +23558,7 @@ "nl": "MacOS installatieprogramma", "fr": "Installateur MacOS", "xloc": [ - "default.handlebars->31->841" + "default.handlebars->31->843" ] }, { @@ -23565,7 +23578,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->31->2239" + "default.handlebars->31->2242" ] }, { @@ -23585,7 +23598,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->31->1247" + "default.handlebars->31->1249" ] }, { @@ -23605,7 +23618,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->31->1248" + "default.handlebars->31->1250" ] }, { @@ -23625,7 +23638,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->31->1249" + "default.handlebars->31->1251" ] }, { @@ -23668,8 +23681,8 @@ "xloc": [ "default-mobile.handlebars->11->492", "default-mobile.handlebars->11->512", - "default.handlebars->31->1533", - "default.handlebars->31->1569" + "default.handlebars->31->1535", + "default.handlebars->31->1572" ] }, { @@ -23691,8 +23704,8 @@ "xloc": [ "default-mobile.handlebars->11->491", "default-mobile.handlebars->11->511", - "default.handlebars->31->1532", - "default.handlebars->31->1568" + "default.handlebars->31->1534", + "default.handlebars->31->1571" ] }, { @@ -23712,7 +23725,7 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->31->734" + "default.handlebars->31->735" ] }, { @@ -23732,7 +23745,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->31->1901" + "default.handlebars->31->1904" ] }, { @@ -23772,7 +23785,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->31->1900" + "default.handlebars->31->1903" ] }, { @@ -23792,8 +23805,8 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->31->1899", - "default.handlebars->31->733" + "default.handlebars->31->1902", + "default.handlebars->31->734" ] }, { @@ -23919,7 +23932,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->31->1372" + "default.handlebars->31->1374" ] }, { @@ -23940,7 +23953,7 @@ "zh-cht": "使用軟體代理進行管理", "xloc": [ "default-mobile.handlebars->11->472", - "default.handlebars->31->1409" + "default.handlebars->31->1411" ] }, { @@ -23960,7 +23973,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->31->1822" + "default.handlebars->31->1825" ] }, { @@ -24014,7 +24027,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->31->1250" + "default.handlebars->31->1252" ] }, { @@ -24055,7 +24068,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->31->1251" + "default.handlebars->31->1253" ] }, { @@ -24075,7 +24088,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->31->2198" + "default.handlebars->31->2201" ] }, { @@ -24140,7 +24153,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->31->2227" + "default.handlebars->31->2230" ] }, { @@ -24161,8 +24174,8 @@ "zh-cht": "記憶體", "xloc": [ "default-mobile.handlebars->11->463", - "default.handlebars->31->1087", - "default.handlebars->31->2218", + "default.handlebars->31->1089", + "default.handlebars->31->2221", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -24186,8 +24199,8 @@ "default-mobile.handlebars->11->272", "default-mobile.handlebars->11->403", "default-mobile.handlebars->11->410", - "default.handlebars->31->1017", - "default.handlebars->31->1024", + "default.handlebars->31->1019", + "default.handlebars->31->1026", "default.handlebars->31->386", "default.handlebars->31->390", "default.handlebars->31->399", @@ -24216,7 +24229,7 @@ "zh-cht": "網格代理控制台", "xloc": [ "default-mobile.handlebars->11->499", - "default.handlebars->31->1541" + "default.handlebars->31->1544" ] }, { @@ -24340,8 +24353,8 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->31->858", - "default.handlebars->31->860" + "default.handlebars->31->860", + "default.handlebars->31->862" ] }, { @@ -24361,7 +24374,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->31->2241" + "default.handlebars->31->2244" ] }, { @@ -24381,7 +24394,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->31->2242" + "default.handlebars->31->2245" ] }, { @@ -24421,7 +24434,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->31->1402" + "default.handlebars->31->1404" ] }, { @@ -24441,7 +24454,7 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->31->844" + "default.handlebars->31->846" ] }, { @@ -24461,7 +24474,7 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->31->839" + "default.handlebars->31->841" ] }, { @@ -24502,7 +24515,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->31->2240" + "default.handlebars->31->2243" ] }, { @@ -24544,7 +24557,7 @@ "xloc": [ "default.handlebars->31->126", "default.handlebars->31->128", - "default.handlebars->31->1398" + "default.handlebars->31->1400" ] }, { @@ -24566,7 +24579,7 @@ "xloc": [ "default.handlebars->31->240", "default.handlebars->31->669", - "default.handlebars->31->856" + "default.handlebars->31->858" ] }, { @@ -24586,7 +24599,7 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->31->868" + "default.handlebars->31->870" ] }, { @@ -24606,7 +24619,7 @@ "zh-chs": "MeshCmd(Linux ARM,64位)", "zh-cht": "MeshCmd(Linux ARM,64位)", "xloc": [ - "default.handlebars->31->869" + "default.handlebars->31->871" ] }, { @@ -24626,7 +24639,7 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->31->864" + "default.handlebars->31->866" ] }, { @@ -24646,7 +24659,7 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->31->865" + "default.handlebars->31->867" ] }, { @@ -24666,7 +24679,7 @@ "zh-chs": "MeshCmd(Win32可执行档案)", "zh-cht": "MeshCmd(Win32可執行檔案)", "xloc": [ - "default.handlebars->31->862" + "default.handlebars->31->864" ] }, { @@ -24686,7 +24699,7 @@ "zh-chs": "MeshCmd(Win64可执行档案)", "zh-cht": "MeshCmd(Win64可執行檔案)", "xloc": [ - "default.handlebars->31->863" + "default.handlebars->31->865" ] }, { @@ -24723,7 +24736,7 @@ "zh-chs": "MeshCmd(macOS,ARM-64位)", "zh-cht": "MeshCmd(macOS,ARM-64位)", "xloc": [ - "default.handlebars->31->867" + "default.handlebars->31->869" ] }, { @@ -24743,7 +24756,7 @@ "zh-chs": "MeshCmd(macOS,x86-ARM-64位)", "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "xloc": [ - "default.handlebars->31->866" + "default.handlebars->31->868" ] }, { @@ -24763,7 +24776,7 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->31->853" + "default.handlebars->31->855" ] }, { @@ -24841,7 +24854,7 @@ "xloc": [ "default.handlebars->31->356", "default.handlebars->31->656", - "default.handlebars->31->819" + "default.handlebars->31->821" ] }, { @@ -24881,7 +24894,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->31->2238" + "default.handlebars->31->2241" ] }, { @@ -24992,7 +25005,7 @@ "fr": "Appareil mobile", "xloc": [ "default-mobile.handlebars->11->416", - "default.handlebars->31->1030" + "default.handlebars->31->1032" ] }, { @@ -25022,8 +25035,8 @@ "xloc": [ "default-mobile.handlebars->11->411", "default-mobile.handlebars->11->464", - "default.handlebars->31->1025", - "default.handlebars->31->1088" + "default.handlebars->31->1027", + "default.handlebars->31->1090" ] }, { @@ -25063,7 +25076,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->31->1252" + "default.handlebars->31->1254" ] }, { @@ -25083,7 +25096,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->31->2270" + "default.handlebars->31->2273" ] }, { @@ -25104,7 +25117,7 @@ "zh-cht": "母板", "xloc": [ "default-mobile.handlebars->11->457", - "default.handlebars->31->1081" + "default.handlebars->31->1083" ] }, { @@ -25164,7 +25177,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->31->1725" + "default.handlebars->31->1728" ] }, { @@ -25184,7 +25197,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->31->1758" + "default.handlebars->31->1761" ] }, { @@ -25224,7 +25237,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->31->2141" + "default.handlebars->31->2144" ] }, { @@ -25245,7 +25258,7 @@ "zh-cht": "必須以用戶身份運行", "xloc": [ "default.handlebars->31->480", - "default.handlebars->31->807" + "default.handlebars->31->809" ] }, { @@ -25378,7 +25391,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->31->1094" + "default.handlebars->31->1096" ] }, { @@ -25540,8 +25553,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->31->1127", - "default.handlebars->31->1130" + "default.handlebars->31->1129", + "default.handlebars->31->1132" ] }, { @@ -25628,20 +25641,20 @@ "default-mobile.handlebars->11->473", "default-mobile.handlebars->11->486", "default.handlebars->31->101", - "default.handlebars->31->1013", - "default.handlebars->31->1075", - "default.handlebars->31->1370", - "default.handlebars->31->1410", - "default.handlebars->31->1497", - "default.handlebars->31->1804", - "default.handlebars->31->1909", - "default.handlebars->31->1925", - "default.handlebars->31->1932", - "default.handlebars->31->1977", - "default.handlebars->31->1996", + "default.handlebars->31->1015", + "default.handlebars->31->1077", + "default.handlebars->31->1372", + "default.handlebars->31->1412", + "default.handlebars->31->1499", + "default.handlebars->31->1807", + "default.handlebars->31->1912", + "default.handlebars->31->1928", + "default.handlebars->31->1935", + "default.handlebars->31->1980", + "default.handlebars->31->1999", "default.handlebars->31->566", "default.handlebars->31->87", - "default.handlebars->31->928", + "default.handlebars->31->930", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -25684,7 +25697,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->31->1891" + "default.handlebars->31->1894" ] }, { @@ -25704,7 +25717,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->31->1253" + "default.handlebars->31->1255" ] }, { @@ -25724,7 +25737,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->31->1254" + "default.handlebars->31->1256" ] }, { @@ -25744,7 +25757,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->31->1255" + "default.handlebars->31->1257" ] }, { @@ -25764,7 +25777,7 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->31->837" + "default.handlebars->31->839" ] }, { @@ -25802,8 +25815,8 @@ "zh-cht": "網路", "xloc": [ "default-mobile.handlebars->11->430", - "default.handlebars->31->1040", - "default.handlebars->31->1054" + "default.handlebars->31->1042", + "default.handlebars->31->1056" ] }, { @@ -25844,7 +25857,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->31->1765" + "default.handlebars->31->1768" ] }, { @@ -25853,7 +25866,7 @@ "fr": "Nouveau compte", "xloc": [ "default-mobile.handlebars->11->540", - "default.handlebars->31->2150" + "default.handlebars->31->2153" ] }, { @@ -25914,9 +25927,9 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->31->1363", - "default.handlebars->31->1375", - "default.handlebars->31->829" + "default.handlebars->31->1365", + "default.handlebars->31->1377", + "default.handlebars->31->831" ] }, { @@ -25938,8 +25951,8 @@ "xloc": [ "default-mobile.handlebars->11->131", "default-mobile.handlebars->11->353", - "default.handlebars->31->1657", - "default.handlebars->31->976", + "default.handlebars->31->1660", + "default.handlebars->31->978", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -26022,8 +26035,8 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->31->1475", - "default.handlebars->31->1476" + "default.handlebars->31->1477", + "default.handlebars->31->1478" ] }, { @@ -26045,8 +26058,8 @@ "xloc": [ "default-mobile.handlebars->11->97", "default-mobile.handlebars->11->98", - "default.handlebars->31->1358", - "default.handlebars->31->1359" + "default.handlebars->31->1360", + "default.handlebars->31->1361" ] }, { @@ -26067,7 +26080,7 @@ "zh-cht": "沒有AMT", "xloc": [ "default.handlebars->31->717", - "default.handlebars->31->738" + "default.handlebars->31->739" ] }, { @@ -26148,9 +26161,9 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->31->1576", + "default.handlebars->31->1579", "default.handlebars->31->719", - "default.handlebars->31->740" + "default.handlebars->31->741" ] }, { @@ -26170,7 +26183,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->31->1537" + "default.handlebars->31->1540" ] }, { @@ -26190,9 +26203,9 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->31->1011", - "default.handlebars->31->1780", - "default.handlebars->31->2115" + "default.handlebars->31->1013", + "default.handlebars->31->1783", + "default.handlebars->31->2118" ] }, { @@ -26213,7 +26226,7 @@ "zh-cht": "不能存取檔案", "xloc": [ "default-mobile.handlebars->11->497", - "default.handlebars->31->1539" + "default.handlebars->31->1542" ] }, { @@ -26234,9 +26247,9 @@ "zh-cht": "沒有檔案", "xloc": [ "default-mobile.handlebars->11->520", - "default.handlebars->31->1578", + "default.handlebars->31->1581", "default.handlebars->31->716", - "default.handlebars->31->737" + "default.handlebars->31->738" ] }, { @@ -26257,7 +26270,7 @@ "zh-cht": "無輸入", "xloc": [ "default.handlebars->31->714", - "default.handlebars->31->735" + "default.handlebars->31->736" ] }, { @@ -26279,8 +26292,8 @@ "xloc": [ "default-mobile.handlebars->11->498", "default-mobile.handlebars->11->521", - "default.handlebars->31->1540", - "default.handlebars->31->1579" + "default.handlebars->31->1543", + "default.handlebars->31->1582" ] }, { @@ -26360,7 +26373,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->31->1959" + "default.handlebars->31->1962" ] }, { @@ -26380,7 +26393,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->31->1904" + "default.handlebars->31->1907" ] }, { @@ -26400,8 +26413,8 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->31->1441", - "default.handlebars->31->1466" + "default.handlebars->31->1443", + "default.handlebars->31->1468" ] }, { @@ -26424,10 +26437,10 @@ "default-mobile.handlebars->11->117", "default-mobile.handlebars->11->481", "default-mobile.handlebars->11->528", - "default.handlebars->31->1384", - "default.handlebars->31->1586", - "default.handlebars->31->730", - "default.handlebars->31->751" + "default.handlebars->31->1386", + "default.handlebars->31->1589", + "default.handlebars->31->731", + "default.handlebars->31->753" ] }, { @@ -26449,7 +26462,7 @@ "xloc": [ "default-mobile.handlebars->11->296", "default.handlebars->31->312", - "default.handlebars->31->815" + "default.handlebars->31->817" ] }, { @@ -26470,9 +26483,9 @@ "zh-cht": "沒有終端", "xloc": [ "default-mobile.handlebars->11->519", - "default.handlebars->31->1577", + "default.handlebars->31->1580", "default.handlebars->31->715", - "default.handlebars->31->736" + "default.handlebars->31->737" ] }, { @@ -26493,7 +26506,7 @@ "zh-cht": "不能訪問終端", "xloc": [ "default-mobile.handlebars->11->496", - "default.handlebars->31->1538" + "default.handlebars->31->1541" ] }, { @@ -26513,7 +26526,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->31->1905" + "default.handlebars->31->1908" ] }, { @@ -26534,7 +26547,7 @@ "zh-cht": "該設備當前無可用操作。", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->31->799" + "default.handlebars->31->801" ] }, { @@ -26554,8 +26567,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->31->1965", - "default.handlebars->31->2085" + "default.handlebars->31->1968", + "default.handlebars->31->2088" ] }, { @@ -26675,8 +26688,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->31->1971", - "default.handlebars->31->2097" + "default.handlebars->31->1974", + "default.handlebars->31->2100" ] }, { @@ -26696,7 +26709,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->31->1629" + "default.handlebars->31->1632" ] }, { @@ -26779,7 +26792,7 @@ "zh-chs": "找不到文件", "zh-cht": "找不到文件", "xloc": [ - "default.handlebars->31->962" + "default.handlebars->31->964" ] }, { @@ -26799,7 +26812,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->31->1908" + "default.handlebars->31->1911" ] }, { @@ -26820,7 +26833,7 @@ "zh-cht": "沒有此裝置的訊息。", "xloc": [ "default-mobile.handlebars->11->469", - "default.handlebars->31->1093" + "default.handlebars->31->1095" ] }, { @@ -26829,7 +26842,7 @@ "nl": "Geen toetsenbord snelkoppelingen gedefinieerd", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->31->922" + "default.handlebars->31->924" ] }, { @@ -26889,7 +26902,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->31->832" + "default.handlebars->31->834" ] }, { @@ -26898,7 +26911,7 @@ "fr": "Aucun numéro de téléphone pour cet utilisateur", "xloc": [ "default-mobile.handlebars->11->571", - "default.handlebars->31->2181" + "default.handlebars->31->2184" ] }, { @@ -26938,7 +26951,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->31->2117" + "default.handlebars->31->2120" ] }, { @@ -26958,7 +26971,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->31->1991" + "default.handlebars->31->1994" ] }, { @@ -26978,7 +26991,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->31->2091" + "default.handlebars->31->2094" ] }, { @@ -26987,7 +27000,7 @@ "fr": "Aucun droit de gestion des utilisateurs", "xloc": [ "default-mobile.handlebars->11->569", - "default.handlebars->31->2179" + "default.handlebars->31->2182" ] }, { @@ -27007,7 +27020,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->31->1812" + "default.handlebars->31->1815" ] }, { @@ -27098,24 +27111,24 @@ "default-mobile.handlebars->11->331", "default-mobile.handlebars->11->351", "default-mobile.handlebars->11->475", - "default.handlebars->31->1405", - "default.handlebars->31->1412", - "default.handlebars->31->1420", - "default.handlebars->31->1432", - "default.handlebars->31->1437", + "default.handlebars->31->1407", + "default.handlebars->31->1414", + "default.handlebars->31->1422", + "default.handlebars->31->1434", "default.handlebars->31->1439", - "default.handlebars->31->1620", - "default.handlebars->31->1639", - "default.handlebars->31->1644", - "default.handlebars->31->1788", + "default.handlebars->31->1441", + "default.handlebars->31->1623", + "default.handlebars->31->1642", + "default.handlebars->31->1647", + "default.handlebars->31->1791", "default.handlebars->31->188", - "default.handlebars->31->1929", - "default.handlebars->31->1931", - "default.handlebars->31->1948", - "default.handlebars->31->2010", - "default.handlebars->31->2019", - "default.handlebars->31->2023", - "default.handlebars->31->2035", + "default.handlebars->31->1932", + "default.handlebars->31->1934", + "default.handlebars->31->1951", + "default.handlebars->31->2013", + "default.handlebars->31->2022", + "default.handlebars->31->2026", + "default.handlebars->31->2038", "default.handlebars->31->207", "default.handlebars->31->249", "default.handlebars->31->250", @@ -27125,7 +27138,7 @@ "default.handlebars->31->634", "default.handlebars->31->647", "default.handlebars->31->74", - "default.handlebars->31->911", + "default.handlebars->31->913", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -27166,7 +27179,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->31->1256" + "default.handlebars->31->1258" ] }, { @@ -27186,7 +27199,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->31->1257" + "default.handlebars->31->1259" ] }, { @@ -27206,7 +27219,7 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->31->1258" + "default.handlebars->31->1260" ] }, { @@ -27226,7 +27239,7 @@ "zh-chs": "未激活", "zh-cht": "未激活", "xloc": [ - "default.handlebars->31->1057" + "default.handlebars->31->1059" ] }, { @@ -27290,8 +27303,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->31->1616", - "default.handlebars->31->1624" + "default.handlebars->31->1619", + "default.handlebars->31->1627" ] }, { @@ -27312,7 +27325,7 @@ "zh-cht": "未知", "xloc": [ "default-mobile.handlebars->11->444", - "default.handlebars->31->1068" + "default.handlebars->31->1070" ] }, { @@ -27340,7 +27353,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->31->2133" + "default.handlebars->31->2136" ] }, { @@ -27360,8 +27373,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->31->1997", - "default.handlebars->31->1998" + "default.handlebars->31->2000", + "default.handlebars->31->2001" ] }, { @@ -27381,7 +27394,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->31->2067" + "default.handlebars->31->2070" ] }, { @@ -27401,12 +27414,12 @@ "zh-chs": "笔记", "zh-cht": "筆記", "xloc": [ - "default.handlebars->31->1448", - "default.handlebars->31->2043", + "default.handlebars->31->1450", + "default.handlebars->31->2046", "default.handlebars->31->652", - "default.handlebars->31->724", - "default.handlebars->31->745", - "default.handlebars->31->755" + "default.handlebars->31->725", + "default.handlebars->31->747", + "default.handlebars->31->757" ] }, { @@ -27446,8 +27459,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->31->1345", - "default.handlebars->31->1615", + "default.handlebars->31->1347", + "default.handlebars->31->1618", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -27468,7 +27481,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->31->1611" + "default.handlebars->31->1614" ] }, { @@ -27488,7 +27501,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->31->1340" + "default.handlebars->31->1342" ] }, { @@ -27508,7 +27521,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->31->1438" + "default.handlebars->31->1440" ] }, { @@ -27529,7 +27542,7 @@ "zh-cht": "通知", "xloc": [ "default.handlebars->31->204", - "default.handlebars->31->2049" + "default.handlebars->31->2052" ] }, { @@ -27549,7 +27562,7 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->31->788" + "default.handlebars->31->790" ] }, { @@ -27569,9 +27582,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->31->1505", - "default.handlebars->31->1509", - "default.handlebars->31->1512" + "default.handlebars->31->1507", + "default.handlebars->31->1511", + "default.handlebars->31->1514" ] }, { @@ -27591,7 +27604,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->31->1851" + "default.handlebars->31->1854" ] }, { @@ -27599,7 +27612,7 @@ "fr": "Null", "nl": "Null", "xloc": [ - "default.handlebars->31->2232" + "default.handlebars->31->2235" ] }, { @@ -27626,7 +27639,7 @@ "default-mobile.handlebars->11->94", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->31->1396", + "default.handlebars->31->1398", "default.handlebars->31->608", "default.handlebars->31->612", "default.handlebars->31->616", @@ -27680,7 +27693,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->31->1259" + "default.handlebars->31->1261" ] }, { @@ -27701,7 +27714,7 @@ "zh-cht": "發生在{0}", "xloc": [ "default-mobile.handlebars->11->537", - "default.handlebars->31->2147" + "default.handlebars->31->2150" ] }, { @@ -27741,7 +27754,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->31->1809" + "default.handlebars->31->1812" ] }, { @@ -27782,7 +27795,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->11->96", - "default.handlebars->31->1357" + "default.handlebars->31->1359" ] }, { @@ -27802,7 +27815,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->31->1785" + "default.handlebars->31->1788" ] }, { @@ -27865,7 +27878,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->31->1808" + "default.handlebars->31->1811" ] }, { @@ -27887,7 +27900,7 @@ "xloc": [ "default-mobile.handlebars->11->361", "default.handlebars->31->534", - "default.handlebars->31->984" + "default.handlebars->31->986" ] }, { @@ -27948,7 +27961,7 @@ "zh-chs": "在设备上打开页面", "zh-cht": "在裝置上打開頁面", "xloc": [ - "default.handlebars->31->756" + "default.handlebars->31->758" ] }, { @@ -28049,7 +28062,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->31->1693" + "default.handlebars->31->1696" ] }, { @@ -28070,11 +28083,11 @@ "zh-cht": "操作系統", "xloc": [ "default-mobile.handlebars->11->402", - "default.handlebars->31->1016", + "default.handlebars->31->1018", "default.handlebars->31->339", "default.handlebars->31->379", "default.handlebars->31->606", - "default.handlebars->31->855" + "default.handlebars->31->857" ] }, { @@ -28095,11 +28108,11 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->31->1835", - "default.handlebars->31->1916", + "default.handlebars->31->1838", + "default.handlebars->31->1919", "default.handlebars->31->468", "default.handlebars->31->483", - "default.handlebars->31->798" + "default.handlebars->31->800" ] }, { @@ -28136,7 +28149,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->31->1260" + "default.handlebars->31->1262" ] }, { @@ -28156,7 +28169,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->31->1261" + "default.handlebars->31->1263" ] }, { @@ -28256,7 +28269,7 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->31->935" + "default.handlebars->31->937" ] }, { @@ -28276,7 +28289,7 @@ "zh-chs": "PID", "zh-cht": "PID", "xloc": [ - "default.handlebars->31->931", + "default.handlebars->31->933", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -28286,7 +28299,7 @@ "nl": "Page Down", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->31->906" + "default.handlebars->31->908" ] }, { @@ -28295,7 +28308,7 @@ "nl": "Page Up", "xloc": [ "default-mobile.handlebars->11->325", - "default.handlebars->31->905" + "default.handlebars->31->907" ] }, { @@ -28316,7 +28329,7 @@ "zh-cht": "零件號", "xloc": [ "default-mobile.handlebars->11->462", - "default.handlebars->31->1086" + "default.handlebars->31->1088" ] }, { @@ -28336,7 +28349,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->31->1823" + "default.handlebars->31->1826" ] }, { @@ -28392,7 +28405,7 @@ "xloc": [ "default-mobile.handlebars->11->115", "default-mobile.handlebars->11->479", - "default.handlebars->31->1382" + "default.handlebars->31->1384" ] }, { @@ -28412,7 +28425,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->31->1994" + "default.handlebars->31->1997" ] }, { @@ -28453,15 +28466,15 @@ "zh-cht": "密碼", "xloc": [ "default-mobile.handlebars->11->294", - "default.handlebars->31->1472", - "default.handlebars->31->1879", - "default.handlebars->31->1880", - "default.handlebars->31->2015", - "default.handlebars->31->2017", - "default.handlebars->31->2070", - "default.handlebars->31->2071", + "default.handlebars->31->1474", + "default.handlebars->31->1882", + "default.handlebars->31->1883", + "default.handlebars->31->2018", + "default.handlebars->31->2020", + "default.handlebars->31->2073", + "default.handlebars->31->2074", "default.handlebars->31->310", - "default.handlebars->31->813", + "default.handlebars->31->815", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "mstsc.handlebars->main->1->3->1->6->1->0", @@ -28570,7 +28583,7 @@ "fr": "Mot de passe changé.", "xloc": [ "default-mobile.handlebars->11->565", - "default.handlebars->31->2175" + "default.handlebars->31->2178" ] }, { @@ -28611,7 +28624,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->31->2072" + "default.handlebars->31->2075" ] }, { @@ -28632,7 +28645,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->31->1360" + "default.handlebars->31->1362" ] }, { @@ -28711,8 +28724,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->91", "default-mobile.handlebars->11->92", - "default.handlebars->31->1352", - "default.handlebars->31->1353", + "default.handlebars->31->1354", + "default.handlebars->31->1355", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -28750,9 +28763,9 @@ "default-mobile.handlebars->11->366", "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->31->1666", - "default.handlebars->31->958", - "default.handlebars->31->990", + "default.handlebars->31->1669", + "default.handlebars->31->960", + "default.handlebars->31->992", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -28818,7 +28831,7 @@ "zh-chs": "执行代理指令", "zh-cht": "執行代理指令", "xloc": [ - "default.handlebars->31->1102" + "default.handlebars->31->1104" ] }, { @@ -28872,7 +28885,7 @@ "zh-chs": "执行英特尔®AMT激活和配置。", "zh-cht": "執行英特爾®AMT激活和配置。", "xloc": [ - "default.handlebars->31->1452", + "default.handlebars->31->1454", "default.handlebars->31->298" ] }, @@ -29024,7 +29037,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->31->1698" + "default.handlebars->31->1701" ] }, { @@ -29033,7 +29046,7 @@ "fr": "Permission refusée", "xloc": [ "default-mobile.handlebars->11->546", - "default.handlebars->31->2156" + "default.handlebars->31->2159" ] }, { @@ -29054,8 +29067,8 @@ "zh-cht": "權限", "xloc": [ "default-mobile.handlebars->11->531", - "default.handlebars->31->1589", - "default.handlebars->31->1807" + "default.handlebars->31->1592", + "default.handlebars->31->1810" ] }, { @@ -29075,7 +29088,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->31->1262" + "default.handlebars->31->1264" ] }, { @@ -29098,10 +29111,10 @@ "default-mobile.handlebars->11->73", "default-mobile.handlebars->11->76", "default-mobile.handlebars->11->78", - "default.handlebars->31->1114", - "default.handlebars->31->1117", + "default.handlebars->31->1116", + "default.handlebars->31->1119", "default.handlebars->31->170", - "default.handlebars->31->2062" + "default.handlebars->31->2065" ] }, { @@ -29121,7 +29134,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->31->2009" + "default.handlebars->31->2012" ] }, { @@ -29142,8 +29155,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->11->77", - "default.handlebars->31->1116", - "default.handlebars->31->2061" + "default.handlebars->31->1118", + "default.handlebars->31->2064" ] }, { @@ -29302,7 +29315,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->11->87", - "default.handlebars->31->1347" + "default.handlebars->31->1349" ] }, { @@ -29323,7 +29336,7 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->31->215", - "default.handlebars->31->2267" + "default.handlebars->31->2270" ] }, { @@ -29467,7 +29480,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->31->1381" + "default.handlebars->31->1383" ] }, { @@ -29487,7 +29500,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->31->1263" + "default.handlebars->31->1265" ] }, { @@ -29507,7 +29520,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->31->1264" + "default.handlebars->31->1266" ] }, { @@ -29527,7 +29540,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->31->1265" + "default.handlebars->31->1267" ] }, { @@ -29608,7 +29621,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->31->1622", + "default.handlebars->31->1625", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -29632,7 +29645,7 @@ "default-mobile.handlebars->11->198", "default-mobile.handlebars->11->285", "default.handlebars->31->6", - "default.handlebars->31->795" + "default.handlebars->31->797" ] }, { @@ -29695,7 +29708,7 @@ "zh-chs": "预激活", "zh-cht": "預激活", "xloc": [ - "default.handlebars->31->1058" + "default.handlebars->31->1060" ] }, { @@ -29738,7 +29751,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->31->2132" + "default.handlebars->31->2135" ] }, { @@ -29881,7 +29894,7 @@ "zh-chs": "进程控制", "zh-cht": "進程控制", "xloc": [ - "default.handlebars->31->945", + "default.handlebars->31->947", "desktop.handlebars->3->24" ] }, @@ -29922,7 +29935,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->31->1690" + "default.handlebars->31->1693" ] }, { @@ -29962,7 +29975,7 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->31->787" + "default.handlebars->31->789" ] }, { @@ -29982,9 +29995,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->31->1506", - "default.handlebars->31->1510", - "default.handlebars->31->1513" + "default.handlebars->31->1508", + "default.handlebars->31->1512", + "default.handlebars->31->1515" ] }, { @@ -30004,7 +30017,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->31->2130", + "default.handlebars->31->2133", "player.handlebars->3->16" ] }, @@ -30043,7 +30056,7 @@ "zh-cht": "配置狀態", "xloc": [ "default-mobile.handlebars->11->438", - "default.handlebars->31->1062" + "default.handlebars->31->1064" ] }, { @@ -30064,7 +30077,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->11->126", - "default.handlebars->31->1651" + "default.handlebars->31->1654" ] }, { @@ -30084,7 +30097,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->31->1266" + "default.handlebars->31->1268" ] }, { @@ -30104,7 +30117,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->31->1267" + "default.handlebars->31->1269" ] }, { @@ -30124,7 +30137,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->31->1268" + "default.handlebars->31->1270" ] }, { @@ -30183,7 +30196,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->31->1269" + "default.handlebars->31->1271" ] }, { @@ -30368,7 +30381,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->31->2231" + "default.handlebars->31->2234" ] }, { @@ -30408,7 +30421,7 @@ "zh-chs": "随机密码", "zh-cht": "隨機密碼", "xloc": [ - "default.handlebars->31->1473" + "default.handlebars->31->1475" ] }, { @@ -30428,7 +30441,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->31->1881" + "default.handlebars->31->1884" ] }, { @@ -30485,9 +30498,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->31->2006", - "default.handlebars->31->2008", - "default.handlebars->31->2063" + "default.handlebars->31->2009", + "default.handlebars->31->2011", + "default.handlebars->31->2066" ] }, { @@ -30507,7 +30520,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->31->1890" + "default.handlebars->31->1893" ] }, { @@ -30528,7 +30541,7 @@ "zh-cht": "收到無效的網絡數據", "xloc": [ "default-mobile.handlebars->11->313", - "default.handlebars->31->881", + "default.handlebars->31->883", "desktop.handlebars->3->10", "terminal.handlebars->3->14" ] @@ -30550,7 +30563,7 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->31->1419" + "default.handlebars->31->1421" ] }, { @@ -30590,7 +30603,7 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->31->1516" + "default.handlebars->31->1518" ] }, { @@ -30610,7 +30623,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->31->2144" + "default.handlebars->31->2147" ] }, { @@ -30652,8 +30665,8 @@ "xloc": [ "default-mobile.handlebars->11->132", "default-mobile.handlebars->11->354", - "default.handlebars->31->1658", - "default.handlebars->31->977" + "default.handlebars->31->1661", + "default.handlebars->31->979" ] }, { @@ -30784,7 +30797,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->31->2210" + "default.handlebars->31->2213" ] }, { @@ -30804,7 +30817,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->31->2203" + "default.handlebars->31->2206" ] }, { @@ -30824,8 +30837,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->31->2209", - "default.handlebars->31->2225" + "default.handlebars->31->2212", + "default.handlebars->31->2228" ] }, { @@ -30962,7 +30975,7 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->31->926" + "default.handlebars->31->928" ] }, { @@ -30983,7 +30996,7 @@ "zh-cht": "遠程命令", "xloc": [ "default-mobile.handlebars->11->506", - "default.handlebars->31->1548" + "default.handlebars->31->1551" ] }, { @@ -31005,8 +31018,8 @@ "xloc": [ "default-mobile.handlebars->11->493", "default-mobile.handlebars->11->513", - "default.handlebars->31->1534", - "default.handlebars->31->1570" + "default.handlebars->31->1536", + "default.handlebars->31->1573" ] }, { @@ -31049,8 +31062,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->31->1704", - "default.handlebars->31->1710" + "default.handlebars->31->1707", + "default.handlebars->31->1713" ] }, { @@ -31070,7 +31083,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->31->1705" + "default.handlebars->31->1708" ] }, { @@ -31090,7 +31103,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->31->1711" + "default.handlebars->31->1714" ] }, { @@ -31110,9 +31123,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->31->1702", - "default.handlebars->31->1706", - "default.handlebars->31->1712" + "default.handlebars->31->1705", + "default.handlebars->31->1709", + "default.handlebars->31->1715" ] }, { @@ -31154,7 +31167,7 @@ "xloc": [ "default-mobile.handlebars->11->315", "default.handlebars->31->293", - "default.handlebars->31->892", + "default.handlebars->31->894", "desktop.handlebars->3->20" ] }, @@ -31175,7 +31188,7 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->31->924", + "default.handlebars->31->926", "desktop.handlebars->3->22" ] }, @@ -31255,8 +31268,8 @@ "xloc": [ "default-mobile.handlebars->11->494", "default-mobile.handlebars->11->518", - "default.handlebars->31->1535", - "default.handlebars->31->1575" + "default.handlebars->31->1537", + "default.handlebars->31->1578" ] }, { @@ -31276,7 +31289,7 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->31->925" + "default.handlebars->31->927" ] }, { @@ -31338,7 +31351,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->31->1392" + "default.handlebars->31->1394" ] }, { @@ -31392,8 +31405,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->31->1975", - "default.handlebars->31->2113" + "default.handlebars->31->1978", + "default.handlebars->31->2116" ] }, { @@ -31413,8 +31426,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->31->1973", - "default.handlebars->31->2100" + "default.handlebars->31->1976", + "default.handlebars->31->2103" ] }, { @@ -31434,7 +31447,7 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->31->2098" + "default.handlebars->31->2101" ] }, { @@ -31471,7 +31484,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->31->2109" + "default.handlebars->31->2112" ] }, { @@ -31491,8 +31504,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->31->1594", - "default.handlebars->31->2105" + "default.handlebars->31->1597", + "default.handlebars->31->2108" ] }, { @@ -31512,7 +31525,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->31->1983" + "default.handlebars->31->1986" ] }, { @@ -31532,8 +31545,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->31->1592", - "default.handlebars->31->2102" + "default.handlebars->31->1595", + "default.handlebars->31->2105" ] }, { @@ -31553,7 +31566,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->31->2075" + "default.handlebars->31->2078" ] }, { @@ -31573,7 +31586,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->31->1882" + "default.handlebars->31->1885" ] }, { @@ -31593,7 +31606,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->31->1514" + "default.handlebars->31->1516" ] }, { @@ -31654,7 +31667,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->11->75", - "default.handlebars->31->1113" + "default.handlebars->31->1115" ] }, { @@ -31714,7 +31727,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->31->2053" + "default.handlebars->31->2056" ] }, { @@ -31734,7 +31747,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->31->2089" + "default.handlebars->31->2092" ] }, { @@ -31754,7 +31767,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->31->1969" + "default.handlebars->31->1972" ] }, { @@ -31774,7 +31787,7 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->31->1963", + "default.handlebars->31->1966", "default.handlebars->31->698" ] }, @@ -31795,10 +31808,10 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->31->1461", - "default.handlebars->31->1957", - "default.handlebars->31->2083", - "default.handlebars->31->2095", + "default.handlebars->31->1463", + "default.handlebars->31->1960", + "default.handlebars->31->2086", + "default.handlebars->31->2098", "default.handlebars->31->699" ] }, @@ -31819,7 +31832,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->31->1764" + "default.handlebars->31->1767" ] }, { @@ -31839,7 +31852,7 @@ "zh-chs": "删除的设备共享{0}", "zh-cht": "刪除的設備共享{0}", "xloc": [ - "default.handlebars->31->1775" + "default.handlebars->31->1778" ] }, { @@ -31859,7 +31872,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->31->1760" + "default.handlebars->31->1763" ] }, { @@ -31879,7 +31892,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->31->1770" + "default.handlebars->31->1773" ] }, { @@ -31899,7 +31912,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->31->1767" + "default.handlebars->31->1770" ] }, { @@ -31919,9 +31932,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->31->1733", - "default.handlebars->31->1754", - "default.handlebars->31->1759" + "default.handlebars->31->1736", + "default.handlebars->31->1757", + "default.handlebars->31->1762" ] }, { @@ -31941,7 +31954,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->31->1743" + "default.handlebars->31->1746" ] }, { @@ -31961,7 +31974,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->31->1756" + "default.handlebars->31->1759" ] }, { @@ -31981,8 +31994,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->31->1735", - "default.handlebars->31->1745" + "default.handlebars->31->1738", + "default.handlebars->31->1748" ] }, { @@ -32006,9 +32019,9 @@ "default-mobile.handlebars->11->358", "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->31->1662", + "default.handlebars->31->1665", "default.handlebars->31->532", - "default.handlebars->31->981", + "default.handlebars->31->983", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->1" @@ -32031,7 +32044,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->31->1721" + "default.handlebars->31->1724" ] }, { @@ -32051,7 +32064,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->31->1786" + "default.handlebars->31->1789" ] }, { @@ -32071,7 +32084,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->31->1781" + "default.handlebars->31->1784" ] }, { @@ -32091,7 +32104,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->31->1361" + "default.handlebars->31->1363" ] }, { @@ -32112,8 +32125,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->11->100", - "default.handlebars->31->1887", - "default.handlebars->31->2073" + "default.handlebars->31->1890", + "default.handlebars->31->2076" ] }, { @@ -32197,7 +32210,7 @@ "zh-cht": "重設", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->31->794", + "default.handlebars->31->796", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -32219,7 +32232,7 @@ "zh-cht": "重置/關閉電源", "xloc": [ "default-mobile.handlebars->11->507", - "default.handlebars->31->1549" + "default.handlebars->31->1552" ] }, { @@ -32346,9 +32359,9 @@ "zh-cht": "重置/關閉", "xloc": [ "default-mobile.handlebars->11->527", - "default.handlebars->31->1585", - "default.handlebars->31->729", - "default.handlebars->31->750" + "default.handlebars->31->1588", + "default.handlebars->31->730", + "default.handlebars->31->752" ] }, { @@ -32368,7 +32381,7 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->31->941", + "default.handlebars->31->943", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -32389,7 +32402,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->31->1397" + "default.handlebars->31->1399" ] }, { @@ -32429,7 +32442,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->31->1394" + "default.handlebars->31->1396" ] }, { @@ -32471,7 +32484,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->31->1995" + "default.handlebars->31->1998" ] }, { @@ -32491,7 +32504,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->31->1270" + "default.handlebars->31->1272" ] }, { @@ -32500,7 +32513,7 @@ "nl": "Rechts", "xloc": [ "default-mobile.handlebars->11->329", - "default.handlebars->31->909" + "default.handlebars->31->911" ] }, { @@ -32520,7 +32533,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->31->1271" + "default.handlebars->31->1273" ] }, { @@ -32540,7 +32553,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->31->1272" + "default.handlebars->31->1274" ] }, { @@ -32562,8 +32575,8 @@ "xloc": [ "default-mobile.handlebars->11->118", "default-mobile.handlebars->11->348", - "default.handlebars->31->1630", - "default.handlebars->31->966" + "default.handlebars->31->1633", + "default.handlebars->31->968" ] }, { @@ -32701,8 +32714,8 @@ "zh-cht": "運行命令", "xloc": [ "default.handlebars->31->481", - "default.handlebars->31->792", - "default.handlebars->31->808" + "default.handlebars->31->794", + "default.handlebars->31->810" ] }, { @@ -32722,7 +32735,7 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->31->842" + "default.handlebars->31->844" ] }, { @@ -32743,7 +32756,7 @@ "zh-cht": "以代理身份運行", "xloc": [ "default.handlebars->31->478", - "default.handlebars->31->805" + "default.handlebars->31->807" ] }, { @@ -32764,7 +32777,7 @@ "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "xloc": [ "default.handlebars->31->479", - "default.handlebars->31->806" + "default.handlebars->31->808" ] }, { @@ -32805,7 +32818,7 @@ "zh-cht": "在所選裝置上運行命令。", "xloc": [ "default.handlebars->31->474", - "default.handlebars->31->801" + "default.handlebars->31->803" ] }, { @@ -32842,7 +32855,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->31->1697" + "default.handlebars->31->1700" ] }, { @@ -32862,7 +32875,7 @@ "zh-chs": "以用户身份运行命令", "zh-cht": "以用戶身份運行命令", "xloc": [ - "default.handlebars->31->1772" + "default.handlebars->31->1775" ] }, { @@ -32882,7 +32895,7 @@ "zh-chs": "如果可能,以用户身份运行命令", "zh-cht": "如果可能,以用戶身份運行命令", "xloc": [ - "default.handlebars->31->1773" + "default.handlebars->31->1776" ] }, { @@ -32902,7 +32915,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->31->1273" + "default.handlebars->31->1275" ] }, { @@ -32922,7 +32935,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->31->1274" + "default.handlebars->31->1276" ] }, { @@ -32960,8 +32973,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->31->2040", - "default.handlebars->31->2045", + "default.handlebars->31->2043", + "default.handlebars->31->2048", "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", @@ -32986,7 +32999,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->31->2059" + "default.handlebars->31->2062" ] }, { @@ -32995,7 +33008,7 @@ "fr": "Erreur SMS", "xloc": [ "default-mobile.handlebars->11->573", - "default.handlebars->31->2183" + "default.handlebars->31->2186" ] }, { @@ -33004,7 +33017,7 @@ "fr": "Erreur SMS: {0}", "xloc": [ "default-mobile.handlebars->11->574", - "default.handlebars->31->2184" + "default.handlebars->31->2187" ] }, { @@ -33013,7 +33026,7 @@ "fr": "Passerelle SMS non activée", "xloc": [ "default-mobile.handlebars->11->568", - "default.handlebars->31->2178" + "default.handlebars->31->2181" ] }, { @@ -33044,7 +33057,7 @@ "fr": "SMS envoyé avec succès.", "xloc": [ "default-mobile.handlebars->11->572", - "default.handlebars->31->2182" + "default.handlebars->31->2185" ] }, { @@ -33102,7 +33115,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->31->1275" + "default.handlebars->31->1277" ] }, { @@ -33160,7 +33173,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->31->1276" + "default.handlebars->31->1278" ] }, { @@ -33180,7 +33193,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->31->1277" + "default.handlebars->31->1279" ] }, { @@ -33200,7 +33213,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->31->1278" + "default.handlebars->31->1280" ] }, { @@ -33482,7 +33495,7 @@ "zh-cht": "搜尋", "xloc": [ "default.handlebars->31->552", - "default.handlebars->31->970", + "default.handlebars->31->972", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -33569,7 +33582,7 @@ "zh-cht": "已使用TLS保安", "xloc": [ "default-mobile.handlebars->11->441", - "default.handlebars->31->1065" + "default.handlebars->31->1067" ] }, { @@ -33591,10 +33604,10 @@ "xloc": [ "default-mobile.handlebars->11->295", "default-mobile.handlebars->11->440", - "default.handlebars->31->1064", - "default.handlebars->31->2041", + "default.handlebars->31->1066", + "default.handlebars->31->2044", "default.handlebars->31->311", - "default.handlebars->31->814" + "default.handlebars->31->816" ] }, { @@ -33614,7 +33627,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->31->2038" + "default.handlebars->31->2041" ] }, { @@ -33623,7 +33636,7 @@ "fr": "Avertissement de sécurité", "xloc": [ "default-mobile.handlebars->11->542", - "default.handlebars->31->2152" + "default.handlebars->31->2155" ] }, { @@ -33663,12 +33676,12 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->31->1654", - "default.handlebars->31->1831", - "default.handlebars->31->1914", + "default.handlebars->31->1657", + "default.handlebars->31->1834", + "default.handlebars->31->1917", "default.handlebars->31->454", - "default.handlebars->31->973", "default.handlebars->31->975", + "default.handlebars->31->977", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -33694,11 +33707,11 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->31->1653", - "default.handlebars->31->1830", - "default.handlebars->31->1913", + "default.handlebars->31->1656", + "default.handlebars->31->1833", + "default.handlebars->31->1916", "default.handlebars->31->453", - "default.handlebars->31->974", + "default.handlebars->31->976", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -33719,7 +33732,7 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->31->828" + "default.handlebars->31->830" ] }, { @@ -33739,7 +33752,7 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->31->827" + "default.handlebars->31->829" ] }, { @@ -33799,8 +33812,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->31->1834", - "default.handlebars->31->1915" + "default.handlebars->31->1837", + "default.handlebars->31->1918" ] }, { @@ -33821,7 +33834,7 @@ "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->31->790" + "default.handlebars->31->792" ] }, { @@ -33841,7 +33854,7 @@ "zh-chs": "选择新密码", "zh-cht": "選擇新密碼", "xloc": [ - "default.handlebars->31->1474" + "default.handlebars->31->1476" ] }, { @@ -33883,7 +33896,7 @@ "zh-cht": "僅自我事件", "xloc": [ "default-mobile.handlebars->11->523", - "default.handlebars->31->1581" + "default.handlebars->31->1584" ] }, { @@ -33927,7 +33940,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->31->1845" + "default.handlebars->31->1848" ] }, { @@ -33948,7 +33961,7 @@ "zh-cht": "發送MQTT消息", "xloc": [ "default.handlebars->31->455", - "default.handlebars->31->796" + "default.handlebars->31->798" ] }, { @@ -33968,7 +33981,7 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->31->820" + "default.handlebars->31->822" ] }, { @@ -33988,7 +34001,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->31->1843" + "default.handlebars->31->1846" ] }, { @@ -34008,7 +34021,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->31->2046" + "default.handlebars->31->2049" ] }, { @@ -34028,7 +34041,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->31->2048" + "default.handlebars->31->2051" ] }, { @@ -34048,7 +34061,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->31->1954" + "default.handlebars->31->1957" ] }, { @@ -34068,7 +34081,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->31->1846" + "default.handlebars->31->1849" ] }, { @@ -34088,7 +34101,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->31->1826" + "default.handlebars->31->1829" ] }, { @@ -34128,7 +34141,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->31->1886" + "default.handlebars->31->1889" ] }, { @@ -34251,7 +34264,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->31->2050" + "default.handlebars->31->2053" ] }, { @@ -34271,7 +34284,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->31->1281" + "default.handlebars->31->1283" ] }, { @@ -34292,7 +34305,7 @@ "zh-cht": "序列號", "xloc": [ "default-mobile.handlebars->11->452", - "default.handlebars->31->1076" + "default.handlebars->31->1078" ] }, { @@ -34312,7 +34325,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->31->1896" + "default.handlebars->31->1899" ] }, { @@ -34332,7 +34345,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->31->2243" + "default.handlebars->31->2246" ] }, { @@ -34352,7 +34365,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->31->2244" + "default.handlebars->31->2247" ] }, { @@ -34374,11 +34387,11 @@ "xloc": [ "default-mobile.handlebars->11->500", "default-mobile.handlebars->11->515", - "default.handlebars->31->1542", - "default.handlebars->31->1572", - "default.handlebars->31->1893", - "default.handlebars->31->722", - "default.handlebars->31->743" + "default.handlebars->31->1545", + "default.handlebars->31->1575", + "default.handlebars->31->1896", + "default.handlebars->31->723", + "default.handlebars->31->745" ] }, { @@ -34407,7 +34420,7 @@ "fr": "Limite du serveur", "xloc": [ "default-mobile.handlebars->11->541", - "default.handlebars->31->2151" + "default.handlebars->31->2154" ] }, { @@ -34427,8 +34440,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->31->1818", - "default.handlebars->31->1907" + "default.handlebars->31->1821", + "default.handlebars->31->1910" ] }, { @@ -34448,7 +34461,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->31->2012" + "default.handlebars->31->2015" ] }, { @@ -34468,7 +34481,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->31->1897" + "default.handlebars->31->1900" ] }, { @@ -34488,7 +34501,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->31->2011" + "default.handlebars->31->2014" ] }, { @@ -34508,7 +34521,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->31->2189" + "default.handlebars->31->2192" ] }, { @@ -34548,7 +34561,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->31->2256" + "default.handlebars->31->2259" ] }, { @@ -34556,7 +34569,7 @@ "nl": "Server Tracing Event", "fr": "Évènement du serveur", "xloc": [ - "default.handlebars->31->2235" + "default.handlebars->31->2238" ] }, { @@ -34617,7 +34630,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->31->1898" + "default.handlebars->31->1901" ] }, { @@ -34782,7 +34795,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->31->2234" + "default.handlebars->31->2237" ] }, { @@ -34802,7 +34815,7 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->31->942" + "default.handlebars->31->944" ] }, { @@ -34842,7 +34855,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->31->2118" + "default.handlebars->31->2121" ] }, { @@ -34862,7 +34875,7 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->31->889", + "default.handlebars->31->891", "desktop.handlebars->3->18" ] }, @@ -34968,7 +34981,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->31->1695" + "default.handlebars->31->1698" ] }, { @@ -35051,7 +35064,7 @@ "zh-cht": "設定", "xloc": [ "agent-translations.json", - "default.handlebars->31->1453", + "default.handlebars->31->1455", "default.handlebars->31->299" ] }, @@ -35106,7 +35119,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->31->1385" + "default.handlebars->31->1387" ] }, { @@ -35174,7 +35187,7 @@ "zh-cht": "共享裝置", "xloc": [ "default.handlebars->31->212", - "default.handlebars->31->789" + "default.handlebars->31->791" ] }, { @@ -35214,7 +35227,7 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->31->936" + "default.handlebars->31->938" ] }, { @@ -35266,8 +35279,8 @@ "xloc": [ "default-mobile.handlebars->11->332", "default-mobile.handlebars->11->336", - "default.handlebars->31->912", - "default.handlebars->31->916" + "default.handlebars->31->914", + "default.handlebars->31->918" ] }, { @@ -35450,7 +35463,7 @@ "zh-cht": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->11->503", - "default.handlebars->31->1545" + "default.handlebars->31->1548" ] }, { @@ -35470,7 +35483,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->31->1507" + "default.handlebars->31->1509" ] }, { @@ -35570,8 +35583,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->31->1849", - "default.handlebars->31->1872" + "default.handlebars->31->1852", + "default.handlebars->31->1875" ] }, { @@ -35591,8 +35604,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->31->1848", - "default.handlebars->31->1871" + "default.handlebars->31->1851", + "default.handlebars->31->1874" ] }, { @@ -35612,8 +35625,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->31->1850", - "default.handlebars->31->1873" + "default.handlebars->31->1853", + "default.handlebars->31->1876" ] }, { @@ -35633,8 +35646,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->31->1847", - "default.handlebars->31->1870" + "default.handlebars->31->1850", + "default.handlebars->31->1873" ] }, { @@ -35828,8 +35841,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->31->1444", - "default.handlebars->31->1464" + "default.handlebars->31->1446", + "default.handlebars->31->1466" ] }, { @@ -35849,8 +35862,8 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->31->1442", - "default.handlebars->31->1468" + "default.handlebars->31->1444", + "default.handlebars->31->1470" ] }, { @@ -35870,7 +35883,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->31->1279" + "default.handlebars->31->1281" ] }, { @@ -35890,7 +35903,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->31->1280" + "default.handlebars->31->1282" ] }, { @@ -35932,8 +35945,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->31->2121", - "default.handlebars->31->2136", + "default.handlebars->31->2124", + "default.handlebars->31->2139", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -35954,7 +35967,7 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->31->1002" + "default.handlebars->31->1004" ] }, { @@ -35974,7 +35987,7 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->31->1003" + "default.handlebars->31->1005" ] }, { @@ -35994,7 +36007,7 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->31->1004" + "default.handlebars->31->1006" ] }, { @@ -36014,7 +36027,7 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->31->1005" + "default.handlebars->31->1007" ] }, { @@ -36041,7 +36054,7 @@ "default.handlebars->31->2", "default.handlebars->31->3", "default.handlebars->31->4", - "default.handlebars->31->793" + "default.handlebars->31->795" ] }, { @@ -36104,7 +36117,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->31->1282" + "default.handlebars->31->1284" ] }, { @@ -36124,7 +36137,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->31->1283" + "default.handlebars->31->1285" ] }, { @@ -36187,7 +36200,7 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->31->895" + "default.handlebars->31->897" ] }, { @@ -36207,7 +36220,7 @@ "zh-chs": "软断开代理", "zh-cht": "軟斷開代理", "xloc": [ - "default.handlebars->31->1109" + "default.handlebars->31->1111" ] }, { @@ -36268,7 +36281,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->31->1284" + "default.handlebars->31->1286" ] }, { @@ -36288,7 +36301,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->31->1285" + "default.handlebars->31->1287" ] }, { @@ -36439,7 +36452,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->31->1286" + "default.handlebars->31->1288" ] }, { @@ -36459,7 +36472,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->31->1287" + "default.handlebars->31->1289" ] }, { @@ -36479,7 +36492,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->31->1288" + "default.handlebars->31->1290" ] }, { @@ -36499,7 +36512,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->31->1289" + "default.handlebars->31->1291" ] }, { @@ -36519,7 +36532,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->31->1290" + "default.handlebars->31->1292" ] }, { @@ -36539,7 +36552,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->31->1291" + "default.handlebars->31->1293" ] }, { @@ -36559,7 +36572,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->31->1292" + "default.handlebars->31->1294" ] }, { @@ -36579,7 +36592,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->31->1293" + "default.handlebars->31->1295" ] }, { @@ -36599,7 +36612,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->31->1294" + "default.handlebars->31->1296" ] }, { @@ -36619,7 +36632,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->31->1295" + "default.handlebars->31->1297" ] }, { @@ -36639,7 +36652,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->31->1296" + "default.handlebars->31->1298" ] }, { @@ -36659,7 +36672,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->31->1297" + "default.handlebars->31->1299" ] }, { @@ -36679,7 +36692,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->31->1298" + "default.handlebars->31->1300" ] }, { @@ -36699,7 +36712,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->31->1299" + "default.handlebars->31->1301" ] }, { @@ -36719,7 +36732,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->31->1300" + "default.handlebars->31->1302" ] }, { @@ -36739,7 +36752,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->31->1301" + "default.handlebars->31->1303" ] }, { @@ -36759,7 +36772,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->31->1302" + "default.handlebars->31->1304" ] }, { @@ -36779,7 +36792,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->31->1303" + "default.handlebars->31->1305" ] }, { @@ -36799,7 +36812,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->31->1304" + "default.handlebars->31->1306" ] }, { @@ -36819,7 +36832,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->31->1305" + "default.handlebars->31->1307" ] }, { @@ -36899,7 +36912,7 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->31->939" + "default.handlebars->31->941" ] }, { @@ -36937,9 +36950,9 @@ "zh-cht": "開始時間", "xloc": [ "default.handlebars->31->202", - "default.handlebars->31->2119", - "default.handlebars->31->2138", - "default.handlebars->31->885", + "default.handlebars->31->2122", + "default.handlebars->31->2141", + "default.handlebars->31->887", "desktop.handlebars->3->14" ] }, @@ -36988,7 +37001,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->31->1679" + "default.handlebars->31->1682" ] }, { @@ -37008,7 +37021,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->31->1688" + "default.handlebars->31->1691" ] }, { @@ -37028,7 +37041,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->31->1689" + "default.handlebars->31->1692" ] }, { @@ -37048,7 +37061,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->31->1686" + "default.handlebars->31->1689" ] }, { @@ -37068,7 +37081,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->31->1708" + "default.handlebars->31->1711" ] }, { @@ -37088,7 +37101,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->31->1709" + "default.handlebars->31->1712" ] }, { @@ -37108,7 +37121,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->31->1715" + "default.handlebars->31->1718" ] }, { @@ -37128,7 +37141,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->31->1716" + "default.handlebars->31->1719" ] }, { @@ -37148,7 +37161,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->31->1687" + "default.handlebars->31->1690" ] }, { @@ -37168,7 +37181,7 @@ "zh-chs": "现在开始", "zh-cht": "現在開始", "xloc": [ - "default.handlebars->31->782" + "default.handlebars->31->784" ] }, { @@ -37188,7 +37201,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->31->1703" + "default.handlebars->31->1706" ] }, { @@ -37208,7 +37221,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->31->1713" + "default.handlebars->31->1716" ] }, { @@ -37228,7 +37241,7 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->31->930", + "default.handlebars->31->932", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -37269,8 +37282,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->31->2066", - "default.handlebars->31->2131", + "default.handlebars->31->2069", + "default.handlebars->31->2134", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -37291,7 +37304,7 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->31->940" + "default.handlebars->31->942" ] }, { @@ -37311,7 +37324,7 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->31->927" + "default.handlebars->31->929" ] }, { @@ -37331,7 +37344,7 @@ "zh-chs": "停止进程#{0} “{1}”?", "zh-cht": "停止進程#{0} “{1}”?", "xloc": [ - "default.handlebars->31->946", + "default.handlebars->31->948", "desktop.handlebars->3->25" ] }, @@ -37370,7 +37383,7 @@ "zh-cht": "儲存", "xloc": [ "default-mobile.handlebars->11->468", - "default.handlebars->31->1092" + "default.handlebars->31->1094" ] }, { @@ -37410,7 +37423,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->31->1634" + "default.handlebars->31->1637" ] }, { @@ -37430,7 +37443,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->31->1378" + "default.handlebars->31->1380" ] }, { @@ -37475,7 +37488,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->31->1844" + "default.handlebars->31->1847" ] }, { @@ -37575,7 +37588,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->31->1306" + "default.handlebars->31->1308" ] }, { @@ -37595,7 +37608,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->31->1307" + "default.handlebars->31->1309" ] }, { @@ -37635,7 +37648,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->31->1308" + "default.handlebars->31->1310" ] }, { @@ -37655,7 +37668,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->31->1309" + "default.handlebars->31->1311" ] }, { @@ -37675,7 +37688,7 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->31->1310" + "default.handlebars->31->1312" ] }, { @@ -37695,7 +37708,7 @@ "zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。", "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "xloc": [ - "default.handlebars->31->1458" + "default.handlebars->31->1460" ] }, { @@ -37715,7 +37728,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->31->1515" + "default.handlebars->31->1517" ] }, { @@ -37882,7 +37895,7 @@ "zh-cht": "未設置TLS", "xloc": [ "default-mobile.handlebars->11->442", - "default.handlebars->31->1066" + "default.handlebars->31->1068" ] }, { @@ -37904,7 +37917,7 @@ "xloc": [ "default-mobile.handlebars->11->297", "default.handlebars->31->313", - "default.handlebars->31->816" + "default.handlebars->31->818" ] }, { @@ -37926,7 +37939,7 @@ "xloc": [ "default-mobile.handlebars->11->318", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->31->898" + "default.handlebars->31->900" ] }, { @@ -37947,7 +37960,7 @@ "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ "default.handlebars->31->488", - "default.handlebars->31->875" + "default.handlebars->31->877" ] }, { @@ -37993,7 +38006,7 @@ "default.handlebars->31->487", "default.handlebars->31->648", "default.handlebars->31->649", - "default.handlebars->31->874", + "default.handlebars->31->876", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -38014,7 +38027,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->31->1311" + "default.handlebars->31->1313" ] }, { @@ -38034,7 +38047,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->31->1312" + "default.handlebars->31->1314" ] }, { @@ -38054,7 +38067,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->31->1313" + "default.handlebars->31->1315" ] }, { @@ -38075,8 +38088,8 @@ "zh-cht": "終端機", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->31->1508", - "default.handlebars->31->2125", + "default.handlebars->31->1510", + "default.handlebars->31->2128", "default.handlebars->31->273", "default.handlebars->31->542", "default.handlebars->31->707", @@ -38122,9 +38135,9 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->31->1427", - "default.handlebars->31->1943", - "default.handlebars->31->2030", + "default.handlebars->31->1429", + "default.handlebars->31->1946", + "default.handlebars->31->2033", "default.handlebars->31->629" ] }, @@ -38145,9 +38158,9 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->31->1426", - "default.handlebars->31->1942", - "default.handlebars->31->2029", + "default.handlebars->31->1428", + "default.handlebars->31->1945", + "default.handlebars->31->2032", "default.handlebars->31->628" ] }, @@ -38257,7 +38270,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->31->1314" + "default.handlebars->31->1316" ] }, { @@ -38397,7 +38410,7 @@ "zh-cht": "目前沒有任何通知", "xloc": [ "default-mobile.handlebars->11->536", - "default.handlebars->31->2146" + "default.handlebars->31->2149" ] }, { @@ -38406,7 +38419,7 @@ "fr": "Il y a eu {0} tentatives de connexion infructueuses sur ce compte depuis la dernière connexion.", "xloc": [ "default-mobile.handlebars->11->557", - "default.handlebars->31->2167" + "default.handlebars->31->2170" ] }, { @@ -38467,7 +38480,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->11->103", - "default.handlebars->31->1364" + "default.handlebars->31->1366" ] }, { @@ -38561,7 +38574,7 @@ "zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。", "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "xloc": [ - "default.handlebars->31->1493" + "default.handlebars->31->1495" ] }, { @@ -38602,7 +38615,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->31->1490" + "default.handlebars->31->1492" ] }, { @@ -38685,7 +38698,7 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->31->753" + "default.handlebars->31->755" ] }, { @@ -38722,7 +38735,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->31->823" + "default.handlebars->31->825" ] }, { @@ -38742,7 +38755,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->31->824" + "default.handlebars->31->826" ] }, { @@ -38762,7 +38775,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->31->1315" + "default.handlebars->31->1317" ] }, { @@ -38802,7 +38815,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->31->785" + "default.handlebars->31->787" ] }, { @@ -38822,7 +38835,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->31->1783" + "default.handlebars->31->1786" ] }, { @@ -38842,7 +38855,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->31->783" + "default.handlebars->31->785" ] }, { @@ -38863,7 +38876,7 @@ "zh-cht": "超時", "xloc": [ "default-mobile.handlebars->11->312", - "default.handlebars->31->880", + "default.handlebars->31->882", "desktop.handlebars->3->9", "terminal.handlebars->3->13" ] @@ -39024,7 +39037,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->31->1351" + "default.handlebars->31->1353" ] }, { @@ -39503,7 +39516,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->31->818" + "default.handlebars->31->820" ] }, { @@ -39623,7 +39636,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->31->1316" + "default.handlebars->31->1318" ] }, { @@ -39643,7 +39656,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->31->1317" + "default.handlebars->31->1319" ] }, { @@ -39663,7 +39676,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->31->1318" + "default.handlebars->31->1320" ] }, { @@ -39683,7 +39696,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->31->1319" + "default.handlebars->31->1321" ] }, { @@ -39725,11 +39738,11 @@ "xloc": [ "default-mobile.handlebars->11->109", "default-mobile.handlebars->11->476", - "default.handlebars->31->1371", - "default.handlebars->31->1413", - "default.handlebars->31->1465", - "default.handlebars->31->762", - "default.handlebars->31->937", + "default.handlebars->31->1373", + "default.handlebars->31->1415", + "default.handlebars->31->1467", + "default.handlebars->31->766", + "default.handlebars->31->939", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "desktop.handlebars->p11->deskarea0->deskarea4->3" ] @@ -39751,7 +39764,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->31->1128" + "default.handlebars->31->1130" ] }, { @@ -39771,7 +39784,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->31->1125" + "default.handlebars->31->1127" ] }, { @@ -39812,7 +39825,7 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->31->950", + "default.handlebars->31->952", "terminal.handlebars->3->15" ] }, @@ -39833,7 +39846,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->31->1320" + "default.handlebars->31->1322" ] }, { @@ -39929,7 +39942,7 @@ "zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。", "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->31->1366", + "default.handlebars->31->1368", "default.handlebars->31->558" ] }, @@ -39950,8 +39963,8 @@ "zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->31->1368", - "default.handlebars->31->2260", + "default.handlebars->31->1370", + "default.handlebars->31->2263", "default.handlebars->31->560" ] }, @@ -39961,7 +39974,7 @@ "fr": "Impossible d'ajouter un utilisateur dans ce mode", "xloc": [ "default-mobile.handlebars->11->553", - "default.handlebars->31->2163" + "default.handlebars->31->2166" ] }, { @@ -40089,9 +40102,9 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->525", - "default.handlebars->31->1583", - "default.handlebars->31->727", - "default.handlebars->31->748" + "default.handlebars->31->1586", + "default.handlebars->31->728", + "default.handlebars->31->750" ] }, { @@ -40113,7 +40126,7 @@ "xloc": [ "default-mobile.handlebars->11->505", "default.handlebars->31->457", - "default.handlebars->31->797" + "default.handlebars->31->799" ] }, { @@ -40133,7 +40146,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->31->1547" + "default.handlebars->31->1550" ] }, { @@ -40153,7 +40166,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->31->826" + "default.handlebars->31->828" ] }, { @@ -40185,19 +40198,19 @@ "default-mobile.handlebars->11->44", "default-mobile.handlebars->11->45", "default-mobile.handlebars->11->6", - "default.handlebars->31->1056", - "default.handlebars->31->1063", + "default.handlebars->31->1058", + "default.handlebars->31->1065", "default.handlebars->31->118", "default.handlebars->31->119", "default.handlebars->31->120", "default.handlebars->31->122", "default.handlebars->31->124", "default.handlebars->31->13", - "default.handlebars->31->1400", - "default.handlebars->31->1401", - "default.handlebars->31->2108", - "default.handlebars->31->2123", - "default.handlebars->31->2124", + "default.handlebars->31->1402", + "default.handlebars->31->1403", + "default.handlebars->31->2111", + "default.handlebars->31->2126", + "default.handlebars->31->2127", "default.handlebars->31->44", "default.handlebars->31->452", "default.handlebars->31->46", @@ -40227,7 +40240,7 @@ "zh-cht": "未知#{0}", "xloc": [ "default-mobile.handlebars->11->470", - "default.handlebars->31->1407" + "default.handlebars->31->1409" ] }, { @@ -40247,7 +40260,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->31->2195" + "default.handlebars->31->2198" ] }, { @@ -40267,8 +40280,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->31->1968", - "default.handlebars->31->2094" + "default.handlebars->31->1971", + "default.handlebars->31->2097" ] }, { @@ -40288,9 +40301,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->31->1962", - "default.handlebars->31->2082", - "default.handlebars->31->2199" + "default.handlebars->31->1965", + "default.handlebars->31->2085", + "default.handlebars->31->2202" ] }, { @@ -40310,7 +40323,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->31->2191" + "default.handlebars->31->2194" ] }, { @@ -40351,7 +40364,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->31->2088" + "default.handlebars->31->2091" ] }, { @@ -40392,7 +40405,7 @@ "zh-chs": "密码未知", "zh-cht": "密碼未知", "xloc": [ - "default.handlebars->31->1481" + "default.handlebars->31->1483" ] }, { @@ -40434,7 +40447,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->31->1837" + "default.handlebars->31->1840" ] }, { @@ -40477,7 +40490,7 @@ "default-mobile.handlebars->11->328", "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->31->908", + "default.handlebars->31->910", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction" @@ -40500,7 +40513,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->31->2265" + "default.handlebars->31->2268" ] }, { @@ -40572,11 +40585,11 @@ "default-mobile.handlebars->11->359", "default-mobile.handlebars->11->377", "default-mobile.handlebars->11->380", - "default.handlebars->31->1006", - "default.handlebars->31->1009", - "default.handlebars->31->1663", - "default.handlebars->31->1671", - "default.handlebars->31->982", + "default.handlebars->31->1008", + "default.handlebars->31->1011", + "default.handlebars->31->1666", + "default.handlebars->31->1674", + "default.handlebars->31->984", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -40597,7 +40610,7 @@ "zh-chs": "上载网格代理核心", "zh-cht": "上載mesh agent核心", "xloc": [ - "default.handlebars->31->1111" + "default.handlebars->31->1113" ] }, { @@ -40617,7 +40630,7 @@ "zh-chs": "上载核心档案", "zh-cht": "上載核心檔案", "xloc": [ - "default.handlebars->31->1108" + "default.handlebars->31->1110" ] }, { @@ -40637,7 +40650,7 @@ "zh-chs": "上载默认服务器核心", "zh-cht": "上載默認伺服器核心", "xloc": [ - "default.handlebars->31->1104" + "default.handlebars->31->1106" ] }, { @@ -40697,7 +40710,7 @@ "zh-chs": "上传恢复核心", "zh-cht": "上傳恢復核心", "xloc": [ - "default.handlebars->31->1106" + "default.handlebars->31->1108" ] }, { @@ -40724,7 +40737,7 @@ "en": "Upload tiny core", "fr": "Charger un micro noyau", "xloc": [ - "default.handlebars->31->1107" + "default.handlebars->31->1109" ] }, { @@ -40745,8 +40758,8 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->378", - "default.handlebars->31->1007", - "default.handlebars->31->1672" + "default.handlebars->31->1009", + "default.handlebars->31->1675" ] }, { @@ -40767,8 +40780,8 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->379", - "default.handlebars->31->1008", - "default.handlebars->31->1673" + "default.handlebars->31->1010", + "default.handlebars->31->1676" ] }, { @@ -40805,14 +40818,14 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->31->1723" + "default.handlebars->31->1726" ] }, { "en": "Upload: \\\"{0}\\\", Size: {1}", "fr": "Chargement : \\\"{0}\\\", Taille : {1}", "xloc": [ - "default.handlebars->31->1778" + "default.handlebars->31->1781" ] }, { @@ -40832,7 +40845,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->31->1321" + "default.handlebars->31->1323" ] }, { @@ -40852,7 +40865,7 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->31->1322" + "default.handlebars->31->1324" ] }, { @@ -40936,8 +40949,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->31->2185", - "default.handlebars->31->2187" + "default.handlebars->31->2188", + "default.handlebars->31->2190" ] }, { @@ -40957,11 +40970,11 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->31->1462", - "default.handlebars->31->1790", - "default.handlebars->31->1819", - "default.handlebars->31->1958", - "default.handlebars->31->2143", + "default.handlebars->31->1464", + "default.handlebars->31->1793", + "default.handlebars->31->1822", + "default.handlebars->31->1961", + "default.handlebars->31->2146", "default.handlebars->31->233", "default.handlebars->31->701" ] @@ -40983,7 +40996,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->31->1820" + "default.handlebars->31->1823" ] }, { @@ -41003,10 +41016,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->31->1853", - "default.handlebars->31->1854", "default.handlebars->31->1856", - "default.handlebars->31->1858" + "default.handlebars->31->1857", + "default.handlebars->31->1859", + "default.handlebars->31->1861" ] }, { @@ -41026,7 +41039,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->31->2204" + "default.handlebars->31->2207" ] }, { @@ -41047,7 +41060,7 @@ "zh-cht": "用戶授權", "xloc": [ "default-mobile.handlebars->11->478", - "default.handlebars->31->1460", + "default.handlebars->31->1462", "default.handlebars->31->697" ] }, @@ -41068,12 +41081,12 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->31->1433", - "default.handlebars->31->1949", - "default.handlebars->31->2036", + "default.handlebars->31->1435", + "default.handlebars->31->1952", + "default.handlebars->31->2039", "default.handlebars->31->208", "default.handlebars->31->635", - "default.handlebars->31->786" + "default.handlebars->31->788" ] }, { @@ -41093,11 +41106,11 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->31->1523", - "default.handlebars->31->1524", - "default.handlebars->31->1922", - "default.handlebars->31->2090", - "default.handlebars->31->2111", + "default.handlebars->31->1525", + "default.handlebars->31->1526", + "default.handlebars->31->1925", + "default.handlebars->31->2093", + "default.handlebars->31->2114", "default.handlebars->31->700" ] }, @@ -41138,7 +41151,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->31->2087" + "default.handlebars->31->2090" ] }, { @@ -41178,9 +41191,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->31->1588", - "default.handlebars->31->2003", - "default.handlebars->31->2004" + "default.handlebars->31->1591", + "default.handlebars->31->2006", + "default.handlebars->31->2007" ] }, { @@ -41200,8 +41213,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->31->1521", - "default.handlebars->31->1987" + "default.handlebars->31->1523", + "default.handlebars->31->1990" ] }, { @@ -41229,7 +41242,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->31->1865" + "default.handlebars->31->1868" ] }, { @@ -41250,7 +41263,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->529", - "default.handlebars->31->1587" + "default.handlebars->31->1590" ] }, { @@ -41325,7 +41338,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->31->2224" + "default.handlebars->31->2227" ] }, { @@ -41408,7 +41421,7 @@ "zh-chs": "用户“{0}”", "zh-cht": "用戶“{0}”", "xloc": [ - "default.handlebars->31->888", + "default.handlebars->31->890", "desktop.handlebars->3->17" ] }, @@ -41418,7 +41431,7 @@ "fr": "L'utilisateur existe déjà", "xloc": [ "default-mobile.handlebars->11->552", - "default.handlebars->31->2162" + "default.handlebars->31->2165" ] }, { @@ -41438,8 +41451,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->31->1333", - "default.handlebars->31->1335" + "default.handlebars->31->1335", + "default.handlebars->31->1337" ] }, { @@ -41459,7 +41472,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->31->1752" + "default.handlebars->31->1755" ] }, { @@ -41479,7 +41492,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->31->1742" + "default.handlebars->31->1745" ] }, { @@ -41499,7 +41512,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->31->1740" + "default.handlebars->31->1743" ] }, { @@ -41533,7 +41546,7 @@ "fr": "Utilisateur {0} introuvable.", "xloc": [ "default-mobile.handlebars->11->560", - "default.handlebars->31->2170" + "default.handlebars->31->2173" ] }, { @@ -41574,9 +41587,9 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->31->1877", + "default.handlebars->31->1880", "default.handlebars->31->308", - "default.handlebars->31->812", + "default.handlebars->31->814", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "mstsc.handlebars->main->1->3->1->4->1->0", @@ -41648,9 +41661,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->31->1910", - "default.handlebars->31->1950", - "default.handlebars->31->2223", + "default.handlebars->31->1913", + "default.handlebars->31->1953", + "default.handlebars->31->2226", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -41671,7 +41684,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->31->2208" + "default.handlebars->31->2211" ] }, { @@ -41680,7 +41693,7 @@ "fr": "Utilisateurs {0} introuvables.", "xloc": [ "default-mobile.handlebars->11->561", - "default.handlebars->31->2171" + "default.handlebars->31->2174" ] }, { @@ -41700,7 +41713,7 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->31->955", + "default.handlebars->31->957", "terminal.handlebars->3->20" ] }, @@ -41721,7 +41734,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->31->1832" + "default.handlebars->31->1835" ] }, { @@ -41730,7 +41743,7 @@ "fr": "Exception de validation", "xloc": [ "default-mobile.handlebars->11->554", - "default.handlebars->31->2164" + "default.handlebars->31->2167" ] }, { @@ -41750,7 +41763,7 @@ "zh-chs": "有效期", "zh-cht": "有效期", "xloc": [ - "default.handlebars->31->781" + "default.handlebars->31->783" ] }, { @@ -41770,7 +41783,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->31->1323" + "default.handlebars->31->1325" ] }, { @@ -41792,8 +41805,8 @@ "xloc": [ "default-mobile.handlebars->11->447", "default-mobile.handlebars->11->450", - "default.handlebars->31->1071", - "default.handlebars->31->1074" + "default.handlebars->31->1073", + "default.handlebars->31->1076" ] }, { @@ -41834,7 +41847,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->31->2068" + "default.handlebars->31->2071" ] }, { @@ -41876,8 +41889,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->11->74", - "default.handlebars->31->1112", - "default.handlebars->31->1828" + "default.handlebars->31->1114", + "default.handlebars->31->1831" ] }, { @@ -41897,7 +41910,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->31->1769" + "default.handlebars->31->1772" ] }, { @@ -41962,10 +41975,10 @@ "default-mobile.handlebars->11->431", "default-mobile.handlebars->11->448", "default-mobile.handlebars->11->453", - "default.handlebars->31->1014", - "default.handlebars->31->1055", - "default.handlebars->31->1072", - "default.handlebars->31->1077", + "default.handlebars->31->1016", + "default.handlebars->31->1057", + "default.handlebars->31->1074", + "default.handlebars->31->1079", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -41986,7 +41999,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->31->2261" + "default.handlebars->31->2264" ] }, { @@ -42028,7 +42041,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->31->1324" + "default.handlebars->31->1326" ] }, { @@ -42068,7 +42081,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->31->1902" + "default.handlebars->31->1905" ] }, { @@ -42088,8 +42101,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->31->2264", - "default.handlebars->31->2266" + "default.handlebars->31->2267", + "default.handlebars->31->2269" ] }, { @@ -42129,7 +42142,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->31->1449" + "default.handlebars->31->1451" ] }, { @@ -42149,7 +42162,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->31->2044" + "default.handlebars->31->2047" ] }, { @@ -42169,7 +42182,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->31->1325" + "default.handlebars->31->1327" ] }, { @@ -42315,7 +42328,7 @@ "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ "default-mobile.handlebars->11->309", - "default.handlebars->31->877", + "default.handlebars->31->879", "desktop.handlebars->3->6", "terminal.handlebars->3->10" ] @@ -42337,8 +42350,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->31->723", - "default.handlebars->31->744" + "default.handlebars->31->724", + "default.handlebars->31->746" ] }, { @@ -42360,8 +42373,8 @@ "xloc": [ "default-mobile.handlebars->11->501", "default-mobile.handlebars->11->516", - "default.handlebars->31->1543", - "default.handlebars->31->1573" + "default.handlebars->31->1546", + "default.handlebars->31->1576" ] }, { @@ -42382,7 +42395,7 @@ "zh-cht": "喚醒", "xloc": [ "default-mobile.handlebars->11->282", - "default.handlebars->31->791" + "default.handlebars->31->793" ] }, { @@ -42422,7 +42435,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->31->1326" + "default.handlebars->31->1328" ] }, { @@ -42442,7 +42455,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->31->1380" + "default.handlebars->31->1382" ] }, { @@ -42487,8 +42500,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->31->2246", - "default.handlebars->31->2247" + "default.handlebars->31->2249", + "default.handlebars->31->2250" ] }, { @@ -42496,7 +42509,7 @@ "nl": "Webserver HTTP Headers", "fr": "Entêtes du serveur web HTTP", "xloc": [ - "default.handlebars->31->2250" + "default.handlebars->31->2253" ] }, { @@ -42516,7 +42529,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->31->2248" + "default.handlebars->31->2251" ] }, { @@ -42536,7 +42549,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->31->2249" + "default.handlebars->31->2252" ] }, { @@ -42618,7 +42631,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->31->1327" + "default.handlebars->31->1329" ] }, { @@ -42638,7 +42651,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->31->1596" + "default.handlebars->31->1599" ] }, { @@ -42659,7 +42672,7 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->11->80", - "default.handlebars->31->1119" + "default.handlebars->31->1121" ] }, { @@ -42679,7 +42692,7 @@ "zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。", "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "xloc": [ - "default.handlebars->31->1491" + "default.handlebars->31->1493" ] }, { @@ -42716,7 +42729,7 @@ "zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。", "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "xloc": [ - "default.handlebars->31->1492" + "default.handlebars->31->1494" ] }, { @@ -42736,7 +42749,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->31->2016" + "default.handlebars->31->2019" ] }, { @@ -42759,8 +42772,8 @@ "default-mobile.handlebars->11->335", "default-mobile.handlebars->11->339", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->31->915", - "default.handlebars->31->919", + "default.handlebars->31->917", + "default.handlebars->31->921", "desktop.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3" ] }, @@ -42926,7 +42939,7 @@ "zh-chs": "Win32可执行档案", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->31->840" + "default.handlebars->31->842" ] }, { @@ -43004,7 +43017,7 @@ "zh-chs": "Windows(32位)", "zh-cht": "Windows(32位)", "xloc": [ - "default.handlebars->31->846" + "default.handlebars->31->848" ] }, { @@ -43024,7 +43037,7 @@ "zh-chs": "Windows(64位)", "zh-cht": "Windows(64位)", "xloc": [ - "default.handlebars->31->845" + "default.handlebars->31->847" ] }, { @@ -43189,7 +43202,7 @@ "zh-cht": "Windows命令提示", "xloc": [ "default.handlebars->31->475", - "default.handlebars->31->802" + "default.handlebars->31->804" ] }, { @@ -43272,7 +43285,7 @@ "zh-cht": "Windows PowerShell", "xloc": [ "default.handlebars->31->476", - "default.handlebars->31->803" + "default.handlebars->31->805" ] }, { @@ -43361,7 +43374,7 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->31->1001" + "default.handlebars->31->1003" ] }, { @@ -43381,7 +43394,7 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->31->1000" + "default.handlebars->31->1002" ] }, { @@ -43482,7 +43495,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->31->1328" + "default.handlebars->31->1330" ] }, { @@ -43502,7 +43515,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->31->1329" + "default.handlebars->31->1331" ] }, { @@ -43640,7 +43653,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->31->1131" + "default.handlebars->31->1133" ] }, { @@ -43680,7 +43693,7 @@ "zh-chs": "邮编档案名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->31->985" + "default.handlebars->31->987" ] }, { @@ -43762,7 +43775,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->31->1330" + "default.handlebars->31->1332" ] }, { @@ -44030,7 +44043,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->31->2262" + "default.handlebars->31->2265" ] }, { @@ -44276,7 +44289,7 @@ "zh-chs": "console.txt", "zh-cht": "console.txt", "xloc": [ - "default.handlebars->31->1101" + "default.handlebars->31->1103" ] }, { @@ -44297,7 +44310,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->11->141", - "default.handlebars->31->1668" + "default.handlebars->31->1671" ] }, { @@ -44396,8 +44409,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->31->1797", - "default.handlebars->31->1802" + "default.handlebars->31->1800", + "default.handlebars->31->1805" ] }, { @@ -44417,8 +44430,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->31->1799", - "default.handlebars->31->1803" + "default.handlebars->31->1802", + "default.handlebars->31->1806" ] }, { @@ -44458,8 +44471,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->31->2216", - "default.handlebars->31->2219" + "default.handlebars->31->2219", + "default.handlebars->31->2222" ] }, { @@ -44674,7 +44687,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->31->1866" + "default.handlebars->31->1869" ] }, { @@ -44797,7 +44810,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->31->1894" + "default.handlebars->31->1897" ] }, { @@ -44909,7 +44922,7 @@ "zh-chs": "macOS ARM (64位)", "zh-cht": "macOS ARM (64位)", "xloc": [ - "default.handlebars->31->850" + "default.handlebars->31->852" ] }, { @@ -44929,7 +44942,7 @@ "zh-chs": "macOS x86 (64位)", "zh-cht": "macOS x86 (64位)", "xloc": [ - "default.handlebars->31->849" + "default.handlebars->31->851" ] }, { @@ -45012,7 +45025,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->11->142", - "default.handlebars->31->1669" + "default.handlebars->31->1672" ] }, { @@ -45109,7 +45122,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->31->1404" + "default.handlebars->31->1406" ] }, { @@ -45129,7 +45142,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->31->2258" + "default.handlebars->31->2261" ] }, { @@ -45195,7 +45208,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->31->2233" + "default.handlebars->31->2236" ] }, { @@ -45215,7 +45228,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->31->2257" + "default.handlebars->31->2260" ] }, { @@ -45252,8 +45265,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->31->2217", - "default.handlebars->31->2220" + "default.handlebars->31->2220", + "default.handlebars->31->2223" ] }, { @@ -45336,8 +45349,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->31->1862", - "default.handlebars->31->1867" + "default.handlebars->31->1865", + "default.handlebars->31->1870" ] }, { @@ -45357,8 +45370,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->31->1864", - "default.handlebars->31->1868" + "default.handlebars->31->1867", + "default.handlebars->31->1871" ] }, { @@ -45378,7 +45391,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->31->1801" + "default.handlebars->31->1804" ] }, { @@ -45426,8 +45439,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->31->1643", - "default.handlebars->31->1648" + "default.handlebars->31->1646", + "default.handlebars->31->1651" ] }, { @@ -45447,9 +45460,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->31->1641", - "default.handlebars->31->1646", - "default.handlebars->31->2122" + "default.handlebars->31->1644", + "default.handlebars->31->1649", + "default.handlebars->31->2125" ] }, { @@ -45471,10 +45484,10 @@ "xloc": [ "default-mobile.handlebars->11->461", "default-mobile.handlebars->11->466", - "default.handlebars->31->1085", - "default.handlebars->31->1090", - "default.handlebars->31->1642", - "default.handlebars->31->1647" + "default.handlebars->31->1087", + "default.handlebars->31->1092", + "default.handlebars->31->1645", + "default.handlebars->31->1650" ] }, { @@ -45495,7 +45508,7 @@ "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->11->459", - "default.handlebars->31->1083" + "default.handlebars->31->1085" ] }, { @@ -45515,7 +45528,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->31->2058" + "default.handlebars->31->2061" ] }, { @@ -45535,8 +45548,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->31->1640", - "default.handlebars->31->1645" + "default.handlebars->31->1643", + "default.handlebars->31->1648" ] }, { @@ -45557,8 +45570,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->11->130", - "default.handlebars->31->1656", - "default.handlebars->31->2137", + "default.handlebars->31->1659", + "default.handlebars->31->2140", "download.handlebars->3->2", "download2.handlebars->5->2" ] @@ -45580,7 +45593,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->31->1635" + "default.handlebars->31->1638" ] }, { @@ -45600,7 +45613,7 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->31->887", + "default.handlebars->31->889", "desktop.handlebars->3->16" ] }, @@ -45621,7 +45634,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->31->1638" + "default.handlebars->31->1641" ] }, { @@ -45641,7 +45654,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->31->2021" + "default.handlebars->31->2024" ] }, { @@ -45698,7 +45711,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->31->1636" + "default.handlebars->31->1639" ] }, { @@ -45740,7 +45753,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->31->1637" + "default.handlebars->31->1640" ] }, { @@ -45780,7 +45793,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->31->1811" + "default.handlebars->31->1814" ] }, { @@ -45944,7 +45957,7 @@ "default-mobile.handlebars->11->184", "default-mobile.handlebars->11->187", "default-mobile.handlebars->11->190", - "default.handlebars->31->1815", + "default.handlebars->31->1818", "default.handlebars->31->269", "default.handlebars->31->272", "default.handlebars->31->275", @@ -46120,7 +46133,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->31->1650" + "default.handlebars->31->1653" ] }, { @@ -46140,7 +46153,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->31->1649" + "default.handlebars->31->1652" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index 5ecb2ce3..1b024367 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -5978,7 +5978,7 @@ x += ''; if ((connectivity & 1) && (meshrights & 8) && (node.agent.id != 14)) { x += ''; } //if ((connectivity & 1) && (meshrights & 8) && (node.agent.id < 5)) { x += ''; } - if ((serverinfo.guestdevicesharing !== false) && (node.agent != null) && (node.agent.caps & 3) && (connectivity & 1) && (meshrights & 8) && ((meshrights == 0xFFFFFFFF) || ((meshrights & 4352) == 0))) { x += ''; } + if ((serverinfo.guestdevicesharing !== false) && (node.agent != null) && (node.agent.caps & 3) && (connectivity & 1) && (meshrights & 0x80008) && ((meshrights == 0xFFFFFFFF) || ((meshrights & 0x1000) == 0))) { x += ''; } // Custom UI if ((customui != null) && (customui.devicebuttons != null)) { @@ -6235,6 +6235,7 @@ if (rights & 2048) str1.push("No AMT"); if (rights & 4096) str1.push("Limited Input"); if (rights & 65536) str1.push("No Desktop"); + if ((rights & 524288) && (serverinfo.guestdevicesharing !== false)) str1.push("Guest Share"); if (str1.length > 0) { str.push('Control (' + str1.join(', ') + ')'); } else { str.push("Control"); } } if (rights & 16) str.push("Console"); @@ -6264,6 +6265,7 @@ if (rights & 2048) str1.push("No AMT"); if (rights & 4096) str1.push("Limited Input"); if (rights & 65536) str1.push("No Desktop"); + if ((rights & 524288) && (serverinfo.guestdevicesharing !== false)) str1.push("Guest Share"); if (str1.length > 0) { str.push('Control (' + str1.join(', ') + ')'); } else { str.push("Control"); } } if (rights & 16) str.push("Console"); @@ -6371,9 +6373,14 @@ function showShareDevice() { if (xxdialogMode) return; + var rights = GetNodeRights(currentNode); var y = '', x = "Creates a link that allows a guest without an account to remote control this device for a limited time." + '

'; x += addHtmlValue("Guest Name", ''); - x += addHtmlValue("Type", ''); + var deskFull = ''; + if ((rights != 0xFFFFFFFF) && ((rights & 0x100) != 0)) { deskFull = ''; } + var fullTerm = ''; + if ((rights != 0xFFFFFFFF) && ((rights & 0x200) != 0)) { fullTerm = ''; } + x += addHtmlValue("Type", ''); var options = { 1 : "1 minute", 5 : "5 minutes", 10 : "10 minutes", 15 : "15 minutes", 30 : "30 minutes", 45 : "45 minutes", 60 : "60 minutes", 120 : "2 hours", 240 : "4 hours", 480 : "8 hours", 720 : "12 hours", 960 : "16 hours", 1440 : "24 hours", 2880 : "2 days", 5760 : "4 days" } for (var i in options) { y += ''; } x += addHtmlValue("Validity", ''); @@ -10372,6 +10379,7 @@ x += '
'; x += '
'; x += '
'; + if (serverinfo.guestdevicesharing !== false) { x += '
'; } x += '
'; x += '
'; x += '
'; @@ -10445,6 +10453,7 @@ Q('p20remotecontrol').checked = true; if (urights & 65536) { Q('p20nodesktop').checked = true; } if (urights & 256) { Q('p20remoteview').checked = true; } + if ((urights & 524288) && (serverinfo.guestdevicesharing !== false)) { Q('p20guestshare').checked = true; } if (urights & 512) { Q('p20noterminal').checked = true; } if (urights & 1024) { Q('p20nofiles').checked = true; } if (urights & 2048) { Q('p20noamt').checked = true; } @@ -10459,6 +10468,7 @@ if (urights & 32768) { Q('p20uninstall').checked = true; } if (urights & 131072) { Q('p20commands').checked = true; } if (urights & 262144) { Q('p20resetoff').checked = true; } + if ((urights & 524288) && (serverinfo.guestdevicesharing !== false)) { Q('p20guestshare').checked = true; } } p20validateAddMeshUserDialog(userid); @@ -10505,6 +10515,7 @@ Q('p20nodesktop').checked = ((devrights & 65536) != 0); Q('p20commands').checked = ((devrights & 131072) != 0); Q('p20resetoff').checked = ((devrights & 262144) != 0); + if (serverinfo.guestdevicesharing !== false) { Q('p20guestshare').checked = ((devrights & 524288) != 0); } ok = (nodeid != ''); } @@ -10575,6 +10586,7 @@ QE('p20editnotes', nc); QE('p20limitevents', nc); QE('p20remoteview', nc && Q('p20remotecontrol').checked); + if (serverinfo.guestdevicesharing !== false) { QE('p20guestshare', nc && Q('p20remotecontrol').checked && (Q('p20remoteview').checked || !Q('p20remotelimitedinput').checked)); } QE('p20remotelimitedinput', nc && Q('p20remotecontrol').checked && !Q('p20remoteview').checked); QE('p20nodesktop', nc && Q('p20remotecontrol').checked); QE('p20noterminal', nc && Q('p20remotecontrol').checked); @@ -10605,12 +10617,13 @@ if (Q('p20noterminal').checked == true) meshadmin += 512; if (Q('p20nofiles').checked == true) meshadmin += 1024; if (Q('p20noamt').checked == true) meshadmin += 2048; - if (Q('p20remotelimitedinput').checked == true) meshadmin += 4096; + if ((Q('p20remotelimitedinput').checked == true) && (!Q('p20remoteview').checked)) meshadmin += 4096; if (Q('p20limitevents').checked == true) meshadmin += 8192; if (Q('p20chatnotify').checked == true) meshadmin += 16384; if (Q('p20uninstall').checked == true) meshadmin += 32768; if (Q('p20commands').checked == true) meshadmin += 131072; if (Q('p20resetoff').checked == true) meshadmin += 262144; + if ((serverinfo.guestdevicesharing !== false) && (Q('p20guestshare').checked == true) && (Q('p20remoteview').checked || (!Q('p20remoteview').checked && !Q('p20remotelimitedinput').checked))) meshadmin += 524288; } // Clean up incorrect rights. If Remote Control is not selected, remove flags that don't make sense.