diff --git a/apprelays.js b/apprelays.js index b209ff1f..b274abfa 100644 --- a/apprelays.js +++ b/apprelays.js @@ -74,17 +74,13 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) { obj.relaySocket.on('end', function () { obj.close(); }); obj.relaySocket.on('error', function (err) { obj.close(); }); - // Decode the authentication cookie - var cookie = parent.parent.decodeCookie(obj.infos.ip, parent.parent.loginCookieEncryptionKey); - if (cookie == null) return; - // Setup the correct URL with domain and use TLS only if needed. var options = { rejectUnauthorized: false }; if (domain.dns != null) { options.servername = domain.dns; } var protocol = (args.tlsoffload) ? 'ws' : 'wss'; var domainadd = ''; if ((domain.dns == null) && (domain.id != '')) { domainadd = domain.id + '/' } - var url = protocol + '://127.0.0.1:' + args.port + '/' + domainadd + ((cookie.lc == 1) ? 'local' : 'mesh') + 'relay.ashx?noping=1&p=10&auth=' + obj.infos.ip; // Protocol 10 is Web-RDP + var url = protocol + '://127.0.0.1:' + args.port + '/' + domainadd + ((obj.cookie.lc == 1) ? 'local' : 'mesh') + 'relay.ashx?noping=1&p=10&auth=' + obj.infos.ip; // Protocol 10 is Web-RDP parent.parent.debug('relay', 'RDP: Connection websocket to ' + url); obj.wsClient = new WebSocket(url, options); obj.wsClient.on('open', function () { parent.parent.debug('relay', 'RDP: Relay websocket open'); }); @@ -119,6 +115,7 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) { locale: obj.infos.locale }).on('connect', function () { send(['rdp-connect']); + if ((typeof obj.infos.options == 'object') && (obj.infos.options.savepass == true)) { saveRdpCredentials(); } // Save the credentials if needed }).on('bitmap', function (bitmap) { try { ws.send(bitmap.data); } catch (ex) { } // Send the bitmap data as binary delete bitmap.data; @@ -134,13 +131,70 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) { } } + // Save SSH credentials into device + function saveRdpCredentials() { + parent.parent.db.Get(obj.nodeid, function (err, nodes) { + if ((err != null) || (nodes == null) || (nodes.length != 1)) return; + const node = nodes[0]; + const changed = (node.rdp == null); + + // Check if credentials are the same + if ((typeof node.rdp == 'object') && (node.rdp.d == obj.infos.domain) && (node.rdp.u == obj.infos.username) && (node.rdp.p == obj.infos.password)) return; + + // Save the credentials + node.rdp = { d: obj.infos.domain, u: obj.infos.username, p: obj.infos.password }; + parent.parent.db.Set(node); + + // Event node change if needed + if (changed) { + // Event the node change + var event = { etype: 'node', action: 'changenode', nodeid: obj.nodeid, domain: domain.id, userid: obj.userid, node: parent.CloneSafeNode(node), msg: "Changed RDP credentials" }; + if (parent.parent.db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the node. Another event will come. + parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(node.meshid, [obj.nodeid]), obj, event); + } + }); + } + // When data is received from the web socket // RDP default port is 3389 ws.on('message', function (msg) { try { msg = JSON.parse(msg); switch (msg[0]) { - case 'infos': { obj.infos = msg[1]; startTcpServer(); break; } + case 'infos': { + obj.infos = msg[1]; + + // Decode the authentication cookie + obj.cookie = parent.parent.decodeCookie(obj.infos.ip, parent.parent.loginCookieEncryptionKey); + if ((obj.cookie == null) || (typeof obj.cookie.nodeid != 'string') || (typeof obj.cookie.userid != 'string')) return; + obj.nodeid = obj.cookie.nodeid; + obj.userid = obj.cookie.userid; + + // Check is you need to load server stored credentials + if ((typeof obj.infos.options == 'object') && (obj.infos.options.useServerCreds == true)) { + parent.parent.db.Get(obj.nodeid, function (err, nodes) { + if ((err != null) || (nodes == null) || (nodes.length != 1)) return; + const node = nodes[0]; + + // Check if RDP credentials exist + if ((typeof node.rdp == 'object') && (typeof node.rdp.d == 'string') && (typeof node.rdp.u == 'string') && (typeof node.rdp.p == 'string')) { + obj.infos.domain = node.rdp.d; + obj.infos.username = node.rdp.u; + obj.infos.password = node.rdp.p; + startTcpServer(); + } else { + // No server credentials. + obj.infos.domain = ''; + obj.infos.username = ''; + obj.infos.password = ''; + startTcpServer(); + } + }); + } else { + startTcpServer(); + } + break; + } case 'mouse': { if (rdpClient) { rdpClient.sendPointerEvent(msg[1], msg[2], msg[3], msg[4]); } break; } case 'wheel': { if (rdpClient) { rdpClient.sendWheelEvent(msg[1], msg[2], msg[3], msg[4]); } break; } case 'scancode': { if (rdpClient) { rdpClient.sendKeyEventScancode(msg[1], msg[2]); } break; } @@ -417,6 +471,9 @@ module.exports.CreateSshTerminalRelay = function (parent, db, ws, req, domain, u const node = nodes[0]; const changed = (node.ssh == null); + // Check if credentials are the same + if ((typeof node.ssh == 'object') && (node.ssh.u == obj.username) && (node.ssh.p == obj.password)) return; + // Save the credentials node.ssh = { u: obj.username, p: obj.password }; parent.parent.db.Set(node); diff --git a/meshuser.js b/meshuser.js index 644b2a6c..34b3219f 100644 --- a/meshuser.js +++ b/meshuser.js @@ -713,6 +713,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Remove SSH credentials if present if (docs[i].ssh != null) { docs[i].ssh = 1; } + // Remove RDP credentials if present + if (docs[i].rdp != null) { docs[i].rdp = 1; } + // Remove Intel AMT credential if present if (docs[i].intelamt != null) { if (docs[i].intelamt.pass != null) { docs[i].intelamt.pass = 1; } @@ -4275,6 +4278,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (node.ssh != null) { delete node.ssh; change = 1; changes.push('ssh'); } // Delete the SSH cendentials } + if ((typeof command.rdp == 'number') && (command.rdp == 0)) { + if (node.rdp != null) { delete node.rdp; change = 1; changes.push('rdp'); } // Delete the RDP cendentials + } + if (domain.geolocation && command.userloc && ((node.userloc == null) || (command.userloc[0] != node.userloc[0]) || (command.userloc[1] != node.userloc[1]))) { change = 1; if ((command.userloc.length == 0) && (node.userloc)) { diff --git a/public/mstsc/client.js b/public/mstsc/client.js index 7f4c95e7..62ff5f8d 100644 --- a/public/mstsc/client.js +++ b/public/mstsc/client.js @@ -147,7 +147,7 @@ * @param password {string} session password * @param next {function} asynchrone end callback */ - connect : function (ip, domain, username, password, next) { + connect : function (ip, domain, username, password, options, next) { // Start connection var self = this; this.socket = new WebSocket('wss://' + window.location.host + '/mstscrelay.ashx'); @@ -164,6 +164,7 @@ domain: domain, username: username, password: password, + options: options, locale: Mstsc.locale() }])); }; diff --git a/translate/translate.json b/translate/translate.json index cb571dc9..30b79c6c 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -19,8 +19,8 @@ "zh-chs": " + CIRA", "zh-cht": " + CIRA", "xloc": [ - "default.handlebars->35->1676", - "default.handlebars->35->1678" + "default.handlebars->35->1679", + "default.handlebars->35->1681" ] }, { @@ -235,7 +235,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->35->1577" + "default.handlebars->35->1580" ] }, { @@ -257,8 +257,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->35->1755", - "default.handlebars->35->2246" + "default.handlebars->35->1758", + "default.handlebars->35->2251" ] }, { @@ -614,7 +614,7 @@ "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。", "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "xloc": [ - "default.handlebars->35->1724", + "default.handlebars->35->1727", "default.handlebars->35->403" ] }, @@ -696,8 +696,8 @@ "zh-chs": ",", "zh-cht": ",", "xloc": [ - "default-mobile.handlebars->11->630", - "default.handlebars->35->1826" + "default-mobile.handlebars->11->633", + "default.handlebars->35->1829" ] }, { @@ -768,8 +768,8 @@ "zh-chs": ",MQTT在线", "zh-cht": ",MQTT在線", "xloc": [ - "default-mobile.handlebars->11->547", - "default.handlebars->35->1287" + "default-mobile.handlebars->11->550", + "default.handlebars->35->1290" ] }, { @@ -785,7 +785,7 @@ "sv": ", Inget samtycke", "zh-chs": ", 不同意", "xloc": [ - "default.handlebars->35->845" + "default.handlebars->35->846" ] }, { @@ -807,7 +807,7 @@ "zh-chs": ",提示同意", "zh-cht": ",提示同意", "xloc": [ - "default.handlebars->35->846" + "default.handlebars->35->847" ] }, { @@ -840,7 +840,7 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->35->1050", + "default.handlebars->35->1053", "sharing.handlebars->11->12" ] }, @@ -857,7 +857,7 @@ "sv": ", Verktygsfält", "zh-chs": ", 工具栏", "xloc": [ - "default.handlebars->35->847" + "default.handlebars->35->848" ] }, { @@ -872,7 +872,7 @@ "sv": ", Titta enbart", "zh-chs": ", 只读", "xloc": [ - "default.handlebars->35->844" + "default.handlebars->35->845" ] }, { @@ -894,12 +894,12 @@ "zh-chs": ",WebRTC", "zh-cht": ",WebRTC", "xloc": [ - "default-mobile.handlebars->11->366", - "default-mobile.handlebars->11->401", - "default-mobile.handlebars->11->412", - "default.handlebars->35->1056", - "default.handlebars->35->1121", - "default.handlebars->35->1141", + "default-mobile.handlebars->11->369", + "default-mobile.handlebars->11->404", + "default-mobile.handlebars->11->415", + "default.handlebars->35->1059", + "default.handlebars->35->1124", + "default.handlebars->35->1144", "sharing.handlebars->11->19", "sharing.handlebars->11->27", "sharing.handlebars->11->44", @@ -1057,7 +1057,7 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->35->1051", + "default.handlebars->35->1054", "sharing.handlebars->11->13" ] }, @@ -1137,10 +1137,10 @@ "zh-cht": "...", "xloc": [ "default-mobile.handlebars->11->132", - "default-mobile.handlebars->11->422", - "default.handlebars->35->1155", - "default.handlebars->35->1878", - "default.handlebars->35->2415", + "default-mobile.handlebars->11->425", + "default.handlebars->35->1158", + "default.handlebars->35->1881", + "default.handlebars->35->2420", "sharing.handlebars->11->50" ] }, @@ -1225,7 +1225,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->35->2319" + "default.handlebars->35->2324" ] }, { @@ -1248,8 +1248,8 @@ "zh-cht": "1個位元組", "xloc": [ "default-mobile.handlebars->11->142", - "default-mobile.handlebars->11->673", - "default.handlebars->35->1902", + "default-mobile.handlebars->11->676", + "default.handlebars->35->1905", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->96" @@ -1274,7 +1274,7 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->35->1053", + "default.handlebars->35->1056", "sharing.handlebars->11->15" ] }, @@ -1321,7 +1321,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->35->2280" + "default.handlebars->35->2285" ] }, { @@ -1367,8 +1367,8 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->35->1543", - "default.handlebars->35->912" + "default.handlebars->35->1546", + "default.handlebars->35->913" ] }, { @@ -1436,7 +1436,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->35->2070" + "default.handlebars->35->2075" ] }, { @@ -1495,8 +1495,8 @@ "sv": "1 sekund", "zh-chs": "1秒", "xloc": [ - "default-mobile.handlebars->11->318", - "default.handlebars->35->940" + "default-mobile.handlebars->11->319", + "default.handlebars->35->941" ] }, { @@ -1546,7 +1546,7 @@ "default-mobile.handlebars->11->204", "default-mobile.handlebars->11->207", "default-mobile.handlebars->11->210", - "default.handlebars->35->2074", + "default.handlebars->35->2079", "default.handlebars->35->336", "default.handlebars->35->339", "default.handlebars->35->342", @@ -1690,8 +1690,8 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->35->1545", - "default.handlebars->35->914" + "default.handlebars->35->1548", + "default.handlebars->35->915" ] }, { @@ -1706,8 +1706,8 @@ "sv": "10 sekunder", "zh-chs": "10 秒", "xloc": [ - "default-mobile.handlebars->11->320", - "default.handlebars->35->942" + "default-mobile.handlebars->11->321", + "default.handlebars->35->943" ] }, { @@ -1798,8 +1798,8 @@ "zh-chs": "12小时", "zh-cht": "12小時", "xloc": [ - "default.handlebars->35->1553", - "default.handlebars->35->922" + "default.handlebars->35->1556", + "default.handlebars->35->923" ] }, { @@ -1856,8 +1856,8 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->35->1546", - "default.handlebars->35->915" + "default.handlebars->35->1549", + "default.handlebars->35->916" ] }, { @@ -1879,8 +1879,8 @@ "zh-chs": "16小时", "zh-cht": "16小時", "xloc": [ - "default.handlebars->35->1554", - "default.handlebars->35->923" + "default.handlebars->35->1557", + "default.handlebars->35->924" ] }, { @@ -1902,8 +1902,8 @@ "zh-chs": "2天", "zh-cht": "2天", "xloc": [ - "default.handlebars->35->1556", - "default.handlebars->35->925" + "default.handlebars->35->1559", + "default.handlebars->35->926" ] }, { @@ -1925,8 +1925,8 @@ "zh-chs": "2小时", "zh-cht": "2小時", "xloc": [ - "default.handlebars->35->1550", - "default.handlebars->35->919" + "default.handlebars->35->1553", + "default.handlebars->35->920" ] }, { @@ -2040,8 +2040,8 @@ "zh-chs": "24小时", "zh-cht": "24小時", "xloc": [ - "default.handlebars->35->1555", - "default.handlebars->35->924" + "default.handlebars->35->1558", + "default.handlebars->35->925" ] }, { @@ -2109,7 +2109,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->35->2013" + "default.handlebars->35->2016" ] }, { @@ -2131,8 +2131,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->35->2087", - "default.handlebars->35->2302" + "default.handlebars->35->2092", + "default.handlebars->35->2307" ] }, { @@ -2171,7 +2171,7 @@ "pt": "3", "ru": "3", "xloc": [ - "default-mobile.handlebars->11->449" + "default-mobile.handlebars->11->452" ] }, { @@ -2262,8 +2262,8 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->35->1547", - "default.handlebars->35->916" + "default.handlebars->35->1550", + "default.handlebars->35->917" ] }, { @@ -2332,8 +2332,8 @@ "zh-chs": "4天", "zh-cht": "4天", "xloc": [ - "default.handlebars->35->1557", - "default.handlebars->35->926" + "default.handlebars->35->1560", + "default.handlebars->35->927" ] }, { @@ -2355,8 +2355,8 @@ "zh-chs": "4个小时", "zh-cht": "4個小時", "xloc": [ - "default.handlebars->35->1551", - "default.handlebars->35->920" + "default.handlebars->35->1554", + "default.handlebars->35->921" ] }, { @@ -2447,8 +2447,8 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->35->1548", - "default.handlebars->35->917" + "default.handlebars->35->1551", + "default.handlebars->35->918" ] }, { @@ -2492,8 +2492,8 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->35->1544", - "default.handlebars->35->913" + "default.handlebars->35->1547", + "default.handlebars->35->914" ] }, { @@ -2508,8 +2508,8 @@ "sv": "5 sekunder", "zh-chs": "5秒", "xloc": [ - "default-mobile.handlebars->11->319", - "default.handlebars->35->941" + "default-mobile.handlebars->11->320", + "default.handlebars->35->942" ] }, { @@ -2647,8 +2647,8 @@ "zh-chs": "60分钟", "zh-cht": "60分鐘", "xloc": [ - "default.handlebars->35->1549", - "default.handlebars->35->918" + "default.handlebars->35->1552", + "default.handlebars->35->919" ] }, { @@ -2780,7 +2780,7 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->35->975" + "default.handlebars->35->976" ] }, { @@ -2849,10 +2849,10 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->35->1552", + "default.handlebars->35->1555", "default.handlebars->35->427", "default.handlebars->35->441", - "default.handlebars->35->921" + "default.handlebars->35->922" ] }, { @@ -3087,7 +3087,7 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->35->1692", + "default.handlebars->35->1695", "default.handlebars->35->709" ] }, @@ -3164,7 +3164,7 @@ "sv": "AMT-OS", "zh-chs": "操作系统", "xloc": [ - "default.handlebars->35->2493" + "default.handlebars->35->2498" ] }, { @@ -3293,8 +3293,8 @@ "sv": "AV", "zh-chs": "影音", "xloc": [ - "default-mobile.handlebars->11->459", - "default-mobile.handlebars->11->461", + "default-mobile.handlebars->11->462", + "default-mobile.handlebars->11->464", "default.handlebars->35->728", "default.handlebars->35->730" ] @@ -3318,8 +3318,8 @@ "zh-chs": "拒绝访问", "zh-cht": "拒絕存取", "xloc": [ - "default-mobile.handlebars->11->548", - "default.handlebars->35->1288" + "default-mobile.handlebars->11->551", + "default.handlebars->35->1291" ] }, { @@ -3380,7 +3380,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->35->2252" + "default.handlebars->35->2257" ] }, { @@ -3477,9 +3477,9 @@ "default-mobile.handlebars->11->243", "default-mobile.handlebars->11->245", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->35->1586", - "default.handlebars->35->1588", - "default.handlebars->35->2546", + "default.handlebars->35->1589", + "default.handlebars->35->1591", + "default.handlebars->35->2551", "default.handlebars->35->671", "default.handlebars->35->673" ] @@ -3497,8 +3497,8 @@ "sv": "Kontoinställningar", "zh-chs": "帐号设定", "xloc": [ - "default-mobile.handlebars->11->641", - "default.handlebars->35->2423" + "default-mobile.handlebars->11->644", + "default.handlebars->35->2428" ] }, { @@ -3565,7 +3565,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->35->1986" + "default.handlebars->35->1989" ] }, { @@ -3587,7 +3587,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->35->1985" + "default.handlebars->35->1988" ] }, { @@ -3609,7 +3609,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->35->1984" + "default.handlebars->35->1987" ] }, { @@ -3631,8 +3631,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->35->2089", - "default.handlebars->35->2249" + "default.handlebars->35->2094", + "default.handlebars->35->2254" ] }, { @@ -3654,8 +3654,8 @@ "zh-chs": "达到帐户限制。", "zh-cht": "達到帳戶限制。", "xloc": [ - "default-mobile.handlebars->11->653", - "default.handlebars->35->2435", + "default-mobile.handlebars->11->656", + "default.handlebars->35->2440", "login-mobile.handlebars->5->6", "login.handlebars->5->6", "login2.handlebars->7->8" @@ -3704,7 +3704,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->35->1921" + "default.handlebars->35->1924" ] }, { @@ -3719,7 +3719,7 @@ "sv": "Kontoinloggning från {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的帐户登录", "xloc": [ - "default.handlebars->35->2027" + "default.handlebars->35->2030" ] }, { @@ -3741,7 +3741,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->35->1922" + "default.handlebars->35->1925" ] }, { @@ -3787,7 +3787,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->35->1994" + "default.handlebars->35->1997" ] }, { @@ -3809,7 +3809,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->35->1983" + "default.handlebars->35->1986" ] }, { @@ -3853,8 +3853,8 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default-mobile.handlebars->11->554", - "default.handlebars->35->1294", + "default-mobile.handlebars->11->557", + "default.handlebars->35->1297", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -3877,8 +3877,8 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->35->1021", - "default.handlebars->35->1023" + "default.handlebars->35->1022", + "default.handlebars->35->1024" ] }, { @@ -3900,11 +3900,11 @@ "zh-chs": "动作", "zh-cht": "動作", "xloc": [ - "default-mobile.handlebars->11->301", + "default-mobile.handlebars->11->302", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->35->775", + "default.handlebars->35->776", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -3995,7 +3995,7 @@ "zh-chs": "如果ACM失败,则激活到CCM", "zh-cht": "如果ACM失敗,則激活到CCM", "xloc": [ - "default.handlebars->35->1715" + "default.handlebars->35->1718" ] }, { @@ -4019,8 +4019,8 @@ "xloc": [ "default-mobile.handlebars->11->269", "default-mobile.handlebars->11->271", - "default-mobile.handlebars->11->510", - "default.handlebars->35->1249", + "default-mobile.handlebars->11->513", + "default.handlebars->35->1252", "default.handlebars->35->702", "default.handlebars->35->704" ] @@ -4066,7 +4066,7 @@ "zh-chs": "主动设备共享", "zh-cht": "主動設備共享", "xloc": [ - "default.handlebars->35->833" + "default.handlebars->35->834" ] }, { @@ -4081,7 +4081,7 @@ "sv": "Aktiva inloggningspengar", "zh-chs": "活动登录令牌", "xloc": [ - "default.handlebars->35->1607" + "default.handlebars->35->1610" ] }, { @@ -4115,8 +4115,8 @@ "sv": "Lägg till", "zh-chs": "添加", "xloc": [ - "default-mobile.handlebars->11->393", - "default.handlebars->35->1087" + "default-mobile.handlebars->11->396", + "default.handlebars->35->1090" ] }, { @@ -4160,7 +4160,7 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->35->1688", + "default.handlebars->35->1691", "default.handlebars->35->369" ] }, @@ -4202,8 +4202,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->35->2226", - "default.handlebars->35->2356", + "default.handlebars->35->2231", + "default.handlebars->35->2361", "default.handlebars->35->373" ] }, @@ -4226,7 +4226,7 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->35->889" + "default.handlebars->35->890" ] }, { @@ -4248,9 +4248,9 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->35->1790", - "default.handlebars->35->2220", - "default.handlebars->35->2344", + "default.handlebars->35->1793", + "default.handlebars->35->2225", + "default.handlebars->35->2349", "default.handlebars->35->303" ] }, @@ -4273,7 +4273,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->35->1787" + "default.handlebars->35->1790" ] }, { @@ -4295,8 +4295,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->35->1792", - "default.handlebars->35->1794" + "default.handlebars->35->1795", + "default.handlebars->35->1797" ] }, { @@ -4414,7 +4414,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->35->2376" + "default.handlebars->35->2381" ] }, { @@ -4469,8 +4469,8 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->35->1333", - "default.handlebars->35->1334", + "default.handlebars->35->1336", + "default.handlebars->35->1337", "default.handlebars->35->194", "default.handlebars->35->196", "default.handlebars->35->199", @@ -4496,8 +4496,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default-mobile.handlebars->11->570", - "default.handlebars->35->825" + "default-mobile.handlebars->11->573", + "default.handlebars->35->826" ] }, { @@ -4519,7 +4519,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->35->1797" + "default.handlebars->35->1800" ] }, { @@ -4541,10 +4541,10 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->35->1684", - "default.handlebars->35->1789", - "default.handlebars->35->2350", - "default.handlebars->35->826" + "default.handlebars->35->1687", + "default.handlebars->35->1792", + "default.handlebars->35->2355", + "default.handlebars->35->827" ] }, { @@ -4566,7 +4566,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->35->1799" + "default.handlebars->35->1802" ] }, { @@ -4588,7 +4588,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default-mobile.handlebars->11->606" + "default-mobile.handlebars->11->609" ] }, { @@ -4629,8 +4629,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->35->1683", - "default.handlebars->35->2215" + "default.handlebars->35->1686", + "default.handlebars->35->2220" ] }, { @@ -4652,7 +4652,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->35->1786" + "default.handlebars->35->1789" ] }, { @@ -4674,7 +4674,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->35->2248" + "default.handlebars->35->2253" ] }, { @@ -4818,7 +4818,7 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->35->1687", + "default.handlebars->35->1690", "default.handlebars->35->368" ] }, @@ -4915,7 +4915,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->35->2010" + "default.handlebars->35->2013" ] }, { @@ -4937,7 +4937,7 @@ "zh-chs": "已将设备共享{0}从{1}添加到{2}", "zh-cht": "已將設備共享{0}從{1}添加到{2}", "xloc": [ - "default.handlebars->35->2021" + "default.handlebars->35->2024" ] }, { @@ -4959,8 +4959,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->35->1977", - "default.handlebars->35->2004" + "default.handlebars->35->1980", + "default.handlebars->35->2007" ] }, { @@ -4975,7 +4975,7 @@ "sv": "Lagt inloggningstoken", "zh-chs": "添加登录令牌", "xloc": [ - "default.handlebars->35->2035" + "default.handlebars->35->2038" ] }, { @@ -4989,7 +4989,7 @@ "sv": "Lagt till push-autentiseringsenhet", "zh-chs": "新增推送通知认证装置", "xloc": [ - "default.handlebars->35->2033" + "default.handlebars->35->2036" ] }, { @@ -5011,7 +5011,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->35->2015" + "default.handlebars->35->2018" ] }, { @@ -5033,7 +5033,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->35->1988" + "default.handlebars->35->1991" ] }, { @@ -5055,8 +5055,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->35->1991", - "default.handlebars->35->2000" + "default.handlebars->35->1994", + "default.handlebars->35->2003" ] }, { @@ -5122,8 +5122,8 @@ "zh-chs": "管理员控制模式(ACM)", "zh-cht": "管理員控制模式(ACM)", "xloc": [ - "default-mobile.handlebars->11->512", - "default.handlebars->35->1251" + "default-mobile.handlebars->11->515", + "default.handlebars->35->1254" ] }, { @@ -5145,8 +5145,8 @@ "zh-chs": "管理员凭证", "zh-cht": "管理員憑證", "xloc": [ - "default-mobile.handlebars->11->518", - "default.handlebars->35->1257" + "default-mobile.handlebars->11->521", + "default.handlebars->35->1260" ] }, { @@ -5191,7 +5191,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->35->2284" + "default.handlebars->35->2289" ] }, { @@ -5236,7 +5236,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->35->2152" + "default.handlebars->35->2157" ] }, { @@ -5258,7 +5258,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->35->2081" + "default.handlebars->35->2086" ] }, { @@ -5280,7 +5280,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->35->1336" + "default.handlebars->35->1339" ] }, { @@ -5306,9 +5306,9 @@ "default-mobile.handlebars->11->235", "default-mobile.handlebars->11->288", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->35->1853", - "default.handlebars->35->1866", - "default.handlebars->35->2491", + "default.handlebars->35->1856", + "default.handlebars->35->1869", + "default.handlebars->35->2496", "default.handlebars->35->319", "default.handlebars->35->539", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1" @@ -5333,8 +5333,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->35->1855", - "default.handlebars->35->1868" + "default.handlebars->35->1858", + "default.handlebars->35->1871" ] }, { @@ -5379,8 +5379,8 @@ "zh-chs": "代理控制台", "zh-cht": "代理控制台", "xloc": [ - "default-mobile.handlebars->11->612", - "default.handlebars->35->1807" + "default-mobile.handlebars->11->615", + "default.handlebars->35->1810" ] }, { @@ -5402,7 +5402,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->35->2460" + "default.handlebars->35->2465" ] }, { @@ -5534,7 +5534,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->35->2476" + "default.handlebars->35->2481" ] }, { @@ -5590,7 +5590,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->35->1864", + "default.handlebars->35->1867", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -5613,7 +5613,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->35->1974" + "default.handlebars->35->1977" ] }, { @@ -5636,8 +5636,8 @@ "zh-cht": "代理已連接", "xloc": [ "default.handlebars->35->208", - "default.handlebars->35->816", - "default.handlebars->35->817" + "default.handlebars->35->817", + "default.handlebars->35->818" ] }, { @@ -5714,8 +5714,8 @@ "zh-chs": "代理离线", "zh-cht": "代理離線", "xloc": [ - "default-mobile.handlebars->11->546", - "default.handlebars->35->1286" + "default-mobile.handlebars->11->549", + "default.handlebars->35->1289" ] }, { @@ -5737,8 +5737,8 @@ "zh-chs": "代理在线", "zh-cht": "代理在線", "xloc": [ - "default-mobile.handlebars->11->545", - "default.handlebars->35->1285" + "default-mobile.handlebars->11->548", + "default.handlebars->35->1288" ] }, { @@ -5794,7 +5794,7 @@ "zh-cht": "代理在特權降低的遠程設備上運行。", "xloc": [ "default.handlebars->35->206", - "default.handlebars->35->814" + "default.handlebars->35->815" ] }, { @@ -5860,7 +5860,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->35->2504" + "default.handlebars->35->2509" ] }, { @@ -5882,7 +5882,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->35->1337" + "default.handlebars->35->1340" ] }, { @@ -5905,8 +5905,8 @@ "zh-cht": "所有", "xloc": [ "default-mobile.handlebars->11->141", - "default-mobile.handlebars->11->423", - "default-mobile.handlebars->11->425", + "default-mobile.handlebars->11->426", + "default-mobile.handlebars->11->428", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1" ] }, @@ -5929,7 +5929,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->35->2044" + "default.handlebars->35->2049" ] }, { @@ -5951,7 +5951,7 @@ "zh-chs": "所有显示", "zh-cht": "所有顯示", "xloc": [ - "default.handlebars->35->1114" + "default.handlebars->35->1117" ] }, { @@ -5973,7 +5973,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->35->2042" + "default.handlebars->35->2047" ] }, { @@ -5995,9 +5995,9 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->35->1057", - "default.handlebars->35->1059", - "default.handlebars->35->1060" + "default.handlebars->35->1060", + "default.handlebars->35->1062", + "default.handlebars->35->1063" ] }, { @@ -6030,8 +6030,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->35->1753", - "default.handlebars->35->2245" + "default.handlebars->35->1756", + "default.handlebars->35->2250" ] }, { @@ -6053,7 +6053,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->35->1754" + "default.handlebars->35->1757" ] }, { @@ -6105,10 +6105,10 @@ "sv": "Alt", "zh-chs": "替代", "xloc": [ - "default-mobile.handlebars->11->386", - "default-mobile.handlebars->11->390", - "default.handlebars->35->1080", - "default.handlebars->35->1084" + "default-mobile.handlebars->11->389", + "default-mobile.handlebars->11->393", + "default.handlebars->35->1083", + "default.handlebars->35->1087" ] }, { @@ -6176,7 +6176,7 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->35->1134", + "default.handlebars->35->1137", "sharing.handlebars->11->37" ] }, @@ -6234,9 +6234,9 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->35->1663", - "default.handlebars->35->2206", - "default.handlebars->35->2293", + "default.handlebars->35->1666", + "default.handlebars->35->2211", + "default.handlebars->35->2298", "default.handlebars->35->753" ] }, @@ -6259,9 +6259,9 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->35->1664", - "default.handlebars->35->2207", - "default.handlebars->35->2294", + "default.handlebars->35->1667", + "default.handlebars->35->2212", + "default.handlebars->35->2299", "default.handlebars->35->754" ] }, @@ -6413,7 +6413,7 @@ "sv": "Android-installation", "zh-chs": "安卓安装", "xloc": [ - "default-mobile.handlebars->11->586" + "default-mobile.handlebars->11->589" ] }, { @@ -6451,8 +6451,8 @@ "sv": "Anti-virus inte aktivt", "zh-chs": "杀毒软件未激活", "xloc": [ - "default.handlebars->35->1857", - "default.handlebars->35->1871" + "default.handlebars->35->1860", + "default.handlebars->35->1874" ] }, { @@ -6474,7 +6474,7 @@ "zh-chs": "杀毒软件", "zh-cht": "防毒軟體", "xloc": [ - "default-mobile.handlebars->11->475", + "default-mobile.handlebars->11->478", "default.handlebars->35->744" ] }, @@ -6670,7 +6670,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->35->1339" + "default.handlebars->35->1342" ] }, { @@ -6692,7 +6692,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->35->1340" + "default.handlebars->35->1343" ] }, { @@ -6714,7 +6714,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->35->1341" + "default.handlebars->35->1344" ] }, { @@ -6736,7 +6736,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->35->1342" + "default.handlebars->35->1345" ] }, { @@ -6758,7 +6758,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->35->1343" + "default.handlebars->35->1346" ] }, { @@ -6780,7 +6780,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->35->1344" + "default.handlebars->35->1347" ] }, { @@ -6802,7 +6802,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->35->1345" + "default.handlebars->35->1348" ] }, { @@ -6824,7 +6824,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->35->1346" + "default.handlebars->35->1349" ] }, { @@ -6846,7 +6846,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->35->1347" + "default.handlebars->35->1350" ] }, { @@ -6868,7 +6868,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->35->1348" + "default.handlebars->35->1351" ] }, { @@ -6890,7 +6890,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->35->1349" + "default.handlebars->35->1352" ] }, { @@ -6912,7 +6912,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->35->1350" + "default.handlebars->35->1353" ] }, { @@ -6934,7 +6934,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->35->1338" + "default.handlebars->35->1341" ] }, { @@ -6956,7 +6956,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->35->1351" + "default.handlebars->35->1354" ] }, { @@ -6978,7 +6978,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->35->1352" + "default.handlebars->35->1355" ] }, { @@ -7000,7 +7000,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->35->1353" + "default.handlebars->35->1356" ] }, { @@ -7022,7 +7022,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->35->1354" + "default.handlebars->35->1357" ] }, { @@ -7044,7 +7044,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->35->1355" + "default.handlebars->35->1358" ] }, { @@ -7066,8 +7066,8 @@ "zh-chs": "架构", "zh-cht": "結構", "xloc": [ - "default-mobile.handlebars->11->458", - "default.handlebars->35->1204" + "default-mobile.handlebars->11->461", + "default.handlebars->35->1207" ] }, { @@ -7111,8 +7111,8 @@ "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。", "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ - "default-mobile.handlebars->11->577", - "default.handlebars->35->1729" + "default-mobile.handlebars->11->580", + "default.handlebars->35->1732" ] }, { @@ -7134,7 +7134,7 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->35->997" + "default.handlebars->35->998" ] }, { @@ -7156,7 +7156,7 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->35->986" + "default.handlebars->35->987" ] }, { @@ -7178,7 +7178,7 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->35->985" + "default.handlebars->35->986" ] }, { @@ -7200,7 +7200,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->35->2555" + "default.handlebars->35->2560" ] }, { @@ -7222,7 +7222,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->35->1356" + "default.handlebars->35->1359" ] }, { @@ -7288,7 +7288,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->35->1357" + "default.handlebars->35->1360" ] }, { @@ -7384,7 +7384,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->35->1358" + "default.handlebars->35->1361" ] }, { @@ -7406,7 +7406,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->35->1943" + "default.handlebars->35->1946" ] }, { @@ -7432,10 +7432,10 @@ "sv": "Autentisering", "zh-chs": "验证", "xloc": [ - "default-mobile.handlebars->11->405", - "default-mobile.handlebars->11->416", - "default.handlebars->35->1125", - "default.handlebars->35->1146", + "default-mobile.handlebars->11->408", + "default-mobile.handlebars->11->419", + "default.handlebars->35->1128", + "default.handlebars->35->1149", "ssh.handlebars->3->7", "ssh.handlebars->3->8" ] @@ -7459,7 +7459,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->35->2297" + "default.handlebars->35->2302" ] }, { @@ -7474,9 +7474,9 @@ "sv": "Autentiseringsenhet", "zh-chs": "认证设备", "xloc": [ - "default.handlebars->35->1319", - "default.handlebars->35->1321", - "default.handlebars->35->1325" + "default.handlebars->35->1322", + "default.handlebars->35->1324", + "default.handlebars->35->1328" ] }, { @@ -7490,10 +7490,10 @@ "sv": "Verifieringsfel", "zh-chs": "授权错误", "xloc": [ - "default-mobile.handlebars->11->406", - "default-mobile.handlebars->11->417", - "default.handlebars->35->1127", - "default.handlebars->35->1147" + "default-mobile.handlebars->11->409", + "default-mobile.handlebars->11->420", + "default.handlebars->35->1130", + "default.handlebars->35->1150" ] }, { @@ -7519,8 +7519,8 @@ "default-mobile.handlebars->11->64", "default-mobile.handlebars->11->95", "default-mobile.handlebars->11->97", - "default.handlebars->35->1315", - "default.handlebars->35->1317", + "default.handlebars->35->1318", + "default.handlebars->35->1320", "default.handlebars->35->170", "default.handlebars->35->175" ] @@ -7610,7 +7610,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->35->1650" + "default.handlebars->35->1653" ] }, { @@ -7658,7 +7658,7 @@ "zh-chs": "自动下载代理程序核心转储文件:“{0}”", "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "xloc": [ - "default.handlebars->35->2024" + "default.handlebars->35->2027" ] }, { @@ -7709,7 +7709,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->35->2485" + "default.handlebars->35->2490" ] }, { @@ -7731,7 +7731,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->35->1359" + "default.handlebars->35->1362" ] }, { @@ -7746,9 +7746,9 @@ "sv": "DÅLIG", "zh-chs": "坏的", "xloc": [ - "default-mobile.handlebars->11->462", - "default-mobile.handlebars->11->466", - "default-mobile.handlebars->11->470", + "default-mobile.handlebars->11->465", + "default-mobile.handlebars->11->469", + "default-mobile.handlebars->11->473", "default.handlebars->35->731", "default.handlebars->35->735", "default.handlebars->35->739" @@ -7773,8 +7773,8 @@ "zh-chs": "的BIOS", "zh-cht": "的BIOS", "xloc": [ - "default-mobile.handlebars->11->524", - "default.handlebars->35->1263" + "default-mobile.handlebars->11->527", + "default.handlebars->35->1266" ] }, { @@ -7869,8 +7869,8 @@ "sv": "BackSpace", "zh-chs": "退格", "xloc": [ - "default-mobile.handlebars->11->369", - "default.handlebars->35->1063" + "default-mobile.handlebars->11->372", + "default.handlebars->35->1066" ] }, { @@ -7914,8 +7914,8 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->35->1836", - "default.handlebars->35->1843", + "default.handlebars->35->1839", + "default.handlebars->35->1846", "default.handlebars->35->433", "default.handlebars->35->447" ] @@ -7939,8 +7939,8 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->35->1837", - "default.handlebars->35->1844", + "default.handlebars->35->1840", + "default.handlebars->35->1847", "default.handlebars->35->434", "default.handlebars->35->448", "default.handlebars->35->464" @@ -7988,7 +7988,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->35->2299" + "default.handlebars->35->2304" ] }, { @@ -8010,7 +8010,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->35->2467" + "default.handlebars->35->2472" ] }, { @@ -8032,7 +8032,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->35->2466" + "default.handlebars->35->2471" ] }, { @@ -8054,7 +8054,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->35->1360" + "default.handlebars->35->1363" ] }, { @@ -8120,7 +8120,7 @@ "zh-chs": "将{0}个文件批量上传到文件夹{1}", "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "xloc": [ - "default.handlebars->35->2023" + "default.handlebars->35->2026" ] }, { @@ -8142,7 +8142,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->35->1362" + "default.handlebars->35->1365" ] }, { @@ -8164,7 +8164,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->35->1363" + "default.handlebars->35->1366" ] }, { @@ -8215,8 +8215,8 @@ "sv": "Bootloader", "zh-chs": "引导加载程序", "xloc": [ - "default-mobile.handlebars->11->488", - "default.handlebars->35->1217" + "default-mobile.handlebars->11->491", + "default.handlebars->35->1220" ] }, { @@ -8238,7 +8238,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->35->1364" + "default.handlebars->35->1367" ] }, { @@ -8260,7 +8260,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->35->1365" + "default.handlebars->35->1368" ] }, { @@ -8282,7 +8282,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->35->2213", + "default.handlebars->35->2218", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -8305,7 +8305,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->35->2134" + "default.handlebars->35->2139" ] }, { @@ -8327,7 +8327,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->35->2129" + "default.handlebars->35->2134" ] }, { @@ -8365,7 +8365,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->35->1361" + "default.handlebars->35->1364" ] }, { @@ -8387,7 +8387,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->35->1366" + "default.handlebars->35->1369" ] }, { @@ -8432,7 +8432,7 @@ "zh-chs": "CCM模式", "zh-cht": "CCM模式", "xloc": [ - "default.handlebars->35->1712" + "default.handlebars->35->1715" ] }, { @@ -8455,7 +8455,7 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->35->2492", + "default.handlebars->35->2497", "default.handlebars->35->321", "default.handlebars->35->541" ] @@ -8479,7 +8479,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->35->2539" + "default.handlebars->35->2544" ] }, { @@ -8501,7 +8501,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->35->2540" + "default.handlebars->35->2545" ] }, { @@ -8523,7 +8523,7 @@ "zh-chs": "CIRA设置", "zh-cht": "CIRA設置", "xloc": [ - "default.handlebars->35->1720" + "default.handlebars->35->1723" ] }, { @@ -8545,9 +8545,9 @@ "zh-chs": "CPU", "zh-cht": "CPU", "xloc": [ - "default-mobile.handlebars->11->530", - "default.handlebars->35->1269", - "default.handlebars->35->2516", + "default-mobile.handlebars->11->533", + "default.handlebars->35->1272", + "default.handlebars->35->2521", "default.handlebars->container->column_l->p40->3->1->p40type->5" ] }, @@ -8570,7 +8570,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->35->2481" + "default.handlebars->35->2486" ] }, { @@ -8592,7 +8592,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->35->2484" + "default.handlebars->35->2489" ] }, { @@ -8614,7 +8614,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->35->2483" + "default.handlebars->35->2488" ] }, { @@ -8636,7 +8636,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->35->2482" + "default.handlebars->35->2487" ] }, { @@ -8658,8 +8658,8 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->35->1119", - "default.handlebars->35->1136", + "default.handlebars->35->1122", + "default.handlebars->35->1139", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "sharing.handlebars->11->25", "sharing.handlebars->11->39", @@ -8685,7 +8685,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->35->2052" + "default.handlebars->35->2057" ] }, { @@ -8707,8 +8707,8 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->35->2056", - "default.handlebars->35->2121", + "default.handlebars->35->2061", + "default.handlebars->35->2126", "default.handlebars->35->607" ] }, @@ -8750,7 +8750,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->35->2556" + "default.handlebars->35->2561" ] }, { @@ -8775,8 +8775,8 @@ "agent-translations.json", "default-mobile.handlebars->11->106", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->35->1627", - "default.handlebars->35->2545", + "default.handlebars->35->1630", + "default.handlebars->35->2550", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -8828,12 +8828,12 @@ "zh-chs": "容量", "zh-cht": "容量", "xloc": [ - "default-mobile.handlebars->11->535", - "default-mobile.handlebars->11->540", - "default-mobile.handlebars->11->542", - "default.handlebars->35->1274", - "default.handlebars->35->1279", - "default.handlebars->35->1281" + "default-mobile.handlebars->11->538", + "default-mobile.handlebars->11->543", + "default-mobile.handlebars->11->545", + "default.handlebars->35->1277", + "default.handlebars->35->1282", + "default.handlebars->35->1284" ] }, { @@ -8855,8 +8855,8 @@ "zh-chs": "容量/速度", "zh-cht": "容量/速度", "xloc": [ - "default-mobile.handlebars->11->533", - "default.handlebars->35->1272" + "default-mobile.handlebars->11->536", + "default.handlebars->35->1275" ] }, { @@ -8878,7 +8878,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->35->1367" + "default.handlebars->35->1370" ] }, { @@ -8950,7 +8950,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->35->1368" + "default.handlebars->35->1371" ] }, { @@ -8996,7 +8996,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->35->2331" + "default.handlebars->35->2336" ] }, { @@ -9018,9 +9018,9 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->35->788", - "default.handlebars->35->994", - "default.handlebars->35->995" + "default.handlebars->35->789", + "default.handlebars->35->995", + "default.handlebars->35->996" ] }, { @@ -9043,8 +9043,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->35->1583", - "default.handlebars->35->2316" + "default.handlebars->35->1586", + "default.handlebars->35->2321" ] }, { @@ -9066,7 +9066,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->35->2340" + "default.handlebars->35->2345" ] }, { @@ -9088,7 +9088,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->35->2326" + "default.handlebars->35->2331" ] }, { @@ -9204,7 +9204,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->35->2315" + "default.handlebars->35->2320" ] }, { @@ -9248,7 +9248,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->35->1570" + "default.handlebars->35->1573" ] }, { @@ -9270,7 +9270,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->35->1576" + "default.handlebars->35->1579" ] }, { @@ -9292,7 +9292,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->35->1995" + "default.handlebars->35->1998" ] }, { @@ -9314,7 +9314,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->35->1979" + "default.handlebars->35->1982" ] }, { @@ -9336,7 +9336,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->35->1923" + "default.handlebars->35->1926" ] }, { @@ -9358,8 +9358,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->35->1981", - "default.handlebars->35->2002" + "default.handlebars->35->1984", + "default.handlebars->35->2005" ] }, { @@ -9392,7 +9392,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->35->1535" + "default.handlebars->35->1538" ] }, { @@ -9414,12 +9414,12 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->35->2073", - "default.handlebars->35->2311", - "default.handlebars->35->2312", - "default.handlebars->35->783", - "default.handlebars->35->862", - "default.handlebars->35->884" + "default.handlebars->35->2078", + "default.handlebars->35->2316", + "default.handlebars->35->2317", + "default.handlebars->35->784", + "default.handlebars->35->863", + "default.handlebars->35->885" ] }, { @@ -9441,10 +9441,10 @@ "zh-chs": "聊天并通知", "zh-cht": "聊天並通知", "xloc": [ - "default-mobile.handlebars->11->602", - "default-mobile.handlebars->11->622", - "default.handlebars->35->1782", - "default.handlebars->35->1818" + "default-mobile.handlebars->11->605", + "default-mobile.handlebars->11->625", + "default.handlebars->35->1785", + "default.handlebars->35->1821" ] }, { @@ -9460,8 +9460,8 @@ "sv": "Chattförfrågan, klicka här för att acceptera.", "zh-chs": "聊天请求,点击这里接受。", "xloc": [ - "default-mobile.handlebars->11->654", - "default.handlebars->35->2436" + "default-mobile.handlebars->11->657", + "default.handlebars->35->2441" ] }, { @@ -9505,7 +9505,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->35->1369" + "default.handlebars->35->1372" ] }, { @@ -9615,8 +9615,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->35->1335", - "default.handlebars->35->2550" + "default.handlebars->35->1338", + "default.handlebars->35->2555" ] }, { @@ -9638,7 +9638,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->35->1370" + "default.handlebars->35->1373" ] }, { @@ -9660,7 +9660,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->35->1371" + "default.handlebars->35->1374" ] }, { @@ -9682,7 +9682,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->35->1372" + "default.handlebars->35->1375" ] }, { @@ -9704,7 +9704,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->35->1532" + "default.handlebars->35->1535" ] }, { @@ -9726,7 +9726,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->35->1373" + "default.handlebars->35->1376" ] }, { @@ -9748,7 +9748,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->35->1374" + "default.handlebars->35->1377" ] }, { @@ -9770,7 +9770,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->35->1533" + "default.handlebars->35->1536" ] }, { @@ -9815,7 +9815,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->35->1375" + "default.handlebars->35->1378" ] }, { @@ -9857,17 +9857,17 @@ "zh-cht": "清除", "xloc": [ "default-mobile.handlebars->11->156", - "default-mobile.handlebars->11->442", - "default-mobile.handlebars->11->444", - "default-mobile.handlebars->11->446", - "default-mobile.handlebars->11->448", + "default-mobile.handlebars->11->445", + "default-mobile.handlebars->11->447", + "default-mobile.handlebars->11->449", + "default-mobile.handlebars->11->451", "default-mobile.handlebars->11->71", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->35->1181", - "default.handlebars->35->1183", - "default.handlebars->35->1185", - "default.handlebars->35->1187", - "default.handlebars->35->1917", + "default.handlebars->35->1184", + "default.handlebars->35->1186", + "default.handlebars->35->1188", + "default.handlebars->35->1190", + "default.handlebars->35->1920", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom->1->1->0->5", @@ -9877,6 +9877,13 @@ "sharing.handlebars->11->81" ] }, + { + "en": "Clear RDP credentials?", + "xloc": [ + "default-mobile.handlebars->11->357", + "default.handlebars->35->1039" + ] + }, { "de": "SSH-Anmeldeinformationen löschen?", "en": "Clear SSH credentials?", @@ -9889,8 +9896,8 @@ "sv": "Rensa SSH-referenser?", "zh-chs": "清除 SSH 凭据?", "xloc": [ - "default-mobile.handlebars->11->354", - "default.handlebars->35->1036" + "default-mobile.handlebars->11->355", + "default.handlebars->35->1037" ] }, { @@ -9965,8 +9972,8 @@ "zh-chs": "全部清除", "zh-cht": "全部清除", "xloc": [ - "default-mobile.handlebars->11->637", - "default.handlebars->35->2419" + "default-mobile.handlebars->11->640", + "default.handlebars->35->2424" ] }, { @@ -10011,8 +10018,8 @@ "zh-chs": "清除核心", "zh-cht": "清除核心", "xloc": [ - "default-mobile.handlebars->11->556", - "default.handlebars->35->1296" + "default-mobile.handlebars->11->559", + "default.handlebars->35->1299" ] }, { @@ -10056,8 +10063,8 @@ "zh-chs": "清除此通知", "zh-cht": "清除此通知", "xloc": [ - "default-mobile.handlebars->11->636", - "default.handlebars->35->2418" + "default-mobile.handlebars->11->639", + "default.handlebars->35->2423" ] }, { @@ -10123,8 +10130,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->35->1638", - "default.handlebars->35->1862" + "default.handlebars->35->1641", + "default.handlebars->35->1865" ] }, { @@ -10168,7 +10175,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->35->2190" + "default.handlebars->35->2195" ] }, { @@ -10264,7 +10271,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->35->1567" + "default.handlebars->35->1570" ] }, { @@ -10331,8 +10338,8 @@ "zh-chs": "客户端控制模式(CCM)", "zh-cht": "客戶端控制模式(CCM)", "xloc": [ - "default-mobile.handlebars->11->511", - "default.handlebars->35->1250" + "default-mobile.handlebars->11->514", + "default.handlebars->35->1253" ] }, { @@ -10354,7 +10361,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->35->1620" + "default.handlebars->35->1623" ] }, { @@ -10376,7 +10383,7 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->35->1719" + "default.handlebars->35->1722" ] }, { @@ -10398,7 +10405,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->35->1621" + "default.handlebars->35->1624" ] }, { @@ -10444,11 +10451,11 @@ "zh-cht": "關", "xloc": [ "default-mobile.handlebars->11->69", - "default.handlebars->35->1107", - "default.handlebars->35->1157", + "default.handlebars->35->1110", + "default.handlebars->35->1160", "default.handlebars->35->182", "default.handlebars->35->190", - "default.handlebars->35->2544", + "default.handlebars->35->2549", "sharing.handlebars->11->52" ] }, @@ -10471,7 +10478,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->35->1928" + "default.handlebars->35->1931" ] }, { @@ -10614,10 +10621,10 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default-mobile.handlebars->11->624", - "default.handlebars->35->1820", - "default.handlebars->35->864", - "default.handlebars->35->886" + "default-mobile.handlebars->11->627", + "default.handlebars->35->1823", + "default.handlebars->35->865", + "default.handlebars->35->887" ] }, { @@ -10639,8 +10646,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->35->2221", - "default.handlebars->35->2345" + "default.handlebars->35->2226", + "default.handlebars->35->2350" ] }, { @@ -10662,8 +10669,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->35->2227", - "default.handlebars->35->2357" + "default.handlebars->35->2232", + "default.handlebars->35->2362" ] }, { @@ -10678,8 +10685,8 @@ "sv": "Kompilera tid", "zh-chs": "编译时间", "xloc": [ - "default-mobile.handlebars->11->484", - "default.handlebars->35->1213" + "default-mobile.handlebars->11->487", + "default.handlebars->35->1216" ] }, { @@ -10712,7 +10719,7 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->35->1152", + "default.handlebars->35->1155", "sharing.handlebars->11->47" ] }, @@ -10746,16 +10753,16 @@ "zh-chs": "确认", "zh-cht": "確認", "xloc": [ - "default-mobile.handlebars->11->351", - "default-mobile.handlebars->11->578", - "default.handlebars->35->1730", - "default.handlebars->35->2101", - "default.handlebars->35->2180", - "default.handlebars->35->2241", - "default.handlebars->35->2343", + "default-mobile.handlebars->11->352", + "default-mobile.handlebars->11->581", + "default.handlebars->35->1733", + "default.handlebars->35->2106", + "default.handlebars->35->2185", + "default.handlebars->35->2246", + "default.handlebars->35->2348", "default.handlebars->35->571", - "default.handlebars->35->989", - "default.handlebars->35->998" + "default.handlebars->35->990", + "default.handlebars->35->999" ] }, { @@ -10788,8 +10795,8 @@ "zh-chs": "确认将1个副本复制到此位置?", "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ - "default-mobile.handlebars->11->437", - "default.handlebars->35->1176", + "default-mobile.handlebars->11->440", + "default.handlebars->35->1179", "sharing.handlebars->11->70" ] }, @@ -10812,7 +10819,7 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->35->1175", + "default.handlebars->35->1178", "sharing.handlebars->11->69" ] }, @@ -10835,7 +10842,7 @@ "zh-chs": "确认{0}个条目的副本到此位置?", "zh-cht": "確認{0}個條目的副本到此位置?", "xloc": [ - "default-mobile.handlebars->11->436" + "default-mobile.handlebars->11->439" ] }, { @@ -10857,7 +10864,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->35->2100" + "default.handlebars->35->2105" ] }, { @@ -10901,7 +10908,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->35->2179" + "default.handlebars->35->2184" ] }, { @@ -10923,7 +10930,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->35->2342" + "default.handlebars->35->2347" ] }, { @@ -10945,7 +10952,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->35->2244" + "default.handlebars->35->2249" ] }, { @@ -10967,7 +10974,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->35->2374" + "default.handlebars->35->2379" ] }, { @@ -10989,8 +10996,8 @@ "zh-chs": "确认将1个条目移动到此位置?", "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ - "default-mobile.handlebars->11->439", - "default.handlebars->35->1178", + "default-mobile.handlebars->11->442", + "default.handlebars->35->1181", "sharing.handlebars->11->72" ] }, @@ -11013,7 +11020,7 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->35->1177", + "default.handlebars->35->1180", "sharing.handlebars->11->71" ] }, @@ -11036,7 +11043,7 @@ "zh-chs": "确认将{0}个条目移到该位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default-mobile.handlebars->11->438" + "default-mobile.handlebars->11->441" ] }, { @@ -11058,7 +11065,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->35->1911" + "default.handlebars->35->1914" ] }, { @@ -11080,8 +11087,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2234", - "default.handlebars->35->2365" + "default.handlebars->35->2239", + "default.handlebars->35->2370" ] }, { @@ -11103,8 +11110,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2236", - "default.handlebars->35->2378" + "default.handlebars->35->2241", + "default.handlebars->35->2383" ] }, { @@ -11126,7 +11133,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2367" + "default.handlebars->35->2372" ] }, { @@ -11148,7 +11155,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->35->2370" + "default.handlebars->35->2375" ] }, { @@ -11170,8 +11177,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->35->2368", - "default.handlebars->35->2371" + "default.handlebars->35->2373", + "default.handlebars->35->2376" ] }, { @@ -11194,7 +11201,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->11->98", - "default.handlebars->35->1318" + "default.handlebars->35->1321" ] }, { @@ -11235,7 +11242,7 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->35->2363" + "default.handlebars->35->2368" ] }, { @@ -11287,7 +11294,7 @@ "sv": "Bekräfta borttagning av push-autentiseringsenhet?", "zh-chs": "确认移除推送认证设备?", "xloc": [ - "default.handlebars->35->1320" + "default.handlebars->35->1323" ] }, { @@ -11309,7 +11316,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->35->1829" + "default.handlebars->35->1832" ] }, { @@ -11331,7 +11338,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->35->1831" + "default.handlebars->35->1834" ] }, { @@ -11346,7 +11353,7 @@ "sv": "Bekräfta borttagningen av denna inloggningsbricka?", "zh-chs": "确认删除此登录令牌?", "xloc": [ - "default.handlebars->35->1613" + "default.handlebars->35->1616" ] }, { @@ -11387,7 +11394,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default-mobile.handlebars->11->633" + "default-mobile.handlebars->11->636" ] }, { @@ -11410,7 +11417,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->35->1912" + "default.handlebars->35->1915" ] }, { @@ -11433,16 +11440,16 @@ "zh-cht": "連接", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->410", + "default-mobile.handlebars->11->413", "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-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->35->1139", - "default.handlebars->35->1667", + "default.handlebars->35->1142", + "default.handlebars->35->1670", "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", - "mstsc.handlebars->main->1->3->1->8->1->0", + "mstsc.handlebars->main->1->3->1->12->1->0", "sharing.handlebars->11->42", "sharing.handlebars->p11->deskarea0->deskarea1->3->connectbutton1span", "sharing.handlebars->p12->5->3->connectbutton2span", @@ -11504,7 +11511,7 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->35->1723" + "default.handlebars->35->1726" ] }, { @@ -11638,7 +11645,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->35->2472" + "default.handlebars->35->2477" ] }, { @@ -11660,7 +11667,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->35->2477" + "default.handlebars->35->2482" ] }, { @@ -11682,8 +11689,8 @@ "zh-chs": "现在已连接", "zh-cht": "現在已連接", "xloc": [ - "default-mobile.handlebars->11->479", - "default.handlebars->35->1208" + "default-mobile.handlebars->11->482", + "default.handlebars->35->1211" ] }, { @@ -11750,9 +11757,9 @@ "zh-cht": "正在連線...", "xloc": [ "default-mobile.handlebars->11->2", - "default-mobile.handlebars->11->455", + "default-mobile.handlebars->11->458", "default-mobile.handlebars->11->48", - "default.handlebars->35->1199", + "default.handlebars->35->1202", "default.handlebars->35->309", "default.handlebars->35->312", "default.handlebars->35->359", @@ -11793,7 +11800,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->35->2503" + "default.handlebars->35->2508" ] }, { @@ -11808,9 +11815,9 @@ "sv": "Anslutningsfel", "zh-chs": "连接错误", "xloc": [ - "default-mobile.handlebars->11->418", - "default.handlebars->35->1126", - "default.handlebars->35->1148", + "default-mobile.handlebars->11->421", + "default.handlebars->35->1129", + "default.handlebars->35->1151", "login2.handlebars->7->32" ] }, @@ -11833,7 +11840,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->35->2538" + "default.handlebars->35->2543" ] }, { @@ -11900,7 +11907,7 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->35->1869", + "default.handlebars->35->1872", "default.handlebars->35->300", "default.handlebars->35->767", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" @@ -11925,9 +11932,9 @@ "zh-chs": "控制台", "zh-cht": "控制台", "xloc": [ - "default-mobile.handlebars->11->313", - "default.handlebars->35->857", - "default.handlebars->35->879", + "default-mobile.handlebars->11->314", + "default.handlebars->35->858", + "default.handlebars->35->880", "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" @@ -11974,8 +11981,8 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->35->856", - "default.handlebars->35->878", + "default.handlebars->35->857", + "default.handlebars->35->879", "messenger.handlebars->remoteImage->3->2" ] }, @@ -11998,7 +12005,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->35->2522" + "default.handlebars->35->2527" ] }, { @@ -12186,8 +12193,8 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->35->1880", - "default.handlebars->35->1899", + "default.handlebars->35->1883", + "default.handlebars->35->1902", "default.handlebars->35->250", "default.handlebars->35->272", "default.handlebars->35->274", @@ -12304,7 +12311,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->35->1971" + "default.handlebars->35->1974" ] }, { @@ -12464,7 +12471,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->35->2521" + "default.handlebars->35->2526" ] }, { @@ -12486,7 +12493,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->35->1376" + "default.handlebars->35->1379" ] }, { @@ -12519,7 +12526,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->35->2148", + "default.handlebars->35->2153", "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" @@ -12570,7 +12577,7 @@ "sv": "Skapa inloggningstoken", "zh-chs": "创建登录令牌", "xloc": [ - "default.handlebars->35->1560", + "default.handlebars->35->1563", "default.handlebars->35->275" ] }, @@ -12593,7 +12600,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->35->2187" + "default.handlebars->35->2192" ] }, { @@ -12615,7 +12622,7 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->35->786" + "default.handlebars->35->787" ] }, { @@ -12637,7 +12644,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->35->1590" + "default.handlebars->35->1593" ] }, { @@ -12674,7 +12681,7 @@ "sv": "Skapa ett tillfälligt användarnamn och lösenord som kan användas som alternativ inloggning till ditt konto. Detta är användbart för att låta verktyg eller andra tjänster komma åt ditt konto.", "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。", "xloc": [ - "default.handlebars->35->1541" + "default.handlebars->35->1544" ] }, { @@ -12718,7 +12725,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->35->1964" + "default.handlebars->35->1967" ] }, { @@ -12755,7 +12762,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->35->2112" + "default.handlebars->35->2117" ] }, { @@ -12801,7 +12808,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->35->1975" + "default.handlebars->35->1978" ] }, { @@ -12823,7 +12830,7 @@ "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。", "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "xloc": [ - "default.handlebars->35->902" + "default.handlebars->35->903" ] }, { @@ -12883,7 +12890,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->35->2273" + "default.handlebars->35->2278" ] }, { @@ -12905,7 +12912,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->35->1649" + "default.handlebars->35->1652" ] }, { @@ -12951,8 +12958,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->35->1647", - "default.handlebars->35->1648" + "default.handlebars->35->1650", + "default.handlebars->35->1651" ] }, { @@ -12974,11 +12981,9 @@ "zh-chs": "证书", "zh-cht": "證書", "xloc": [ - "default-mobile.handlebars->11->297", - "default-mobile.handlebars->11->299", - "default.handlebars->35->1618", - "default.handlebars->35->771", - "default.handlebars->35->773" + "default-mobile.handlebars->11->301", + "default.handlebars->35->1621", + "default.handlebars->35->775" ] }, { @@ -13000,7 +13005,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->35->1377" + "default.handlebars->35->1380" ] }, { @@ -13022,7 +13027,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->35->1378" + "default.handlebars->35->1381" ] }, { @@ -13090,10 +13095,10 @@ "zh-chs": "Ctrl", "zh-cht": "Ctrl", "xloc": [ - "default-mobile.handlebars->11->387", - "default-mobile.handlebars->11->391", - "default.handlebars->35->1081", - "default.handlebars->35->1085", + "default-mobile.handlebars->11->390", + "default-mobile.handlebars->11->394", + "default.handlebars->35->1084", + "default.handlebars->35->1088", "default.handlebars->35->57", "sharing.handlebars->11->24" ] @@ -13110,7 +13115,7 @@ "sv": "Ctrl +", "zh-chs": "Ctrl +", "xloc": [ - "default-mobile.handlebars->11->409" + "default-mobile.handlebars->11->412" ] }, { @@ -13235,8 +13240,8 @@ "sv": "Nuvarande lösenord är inte korrekt.", "zh-chs": "当前密码不正确。", "xloc": [ - "default-mobile.handlebars->11->664", - "default.handlebars->35->2446" + "default-mobile.handlebars->11->667", + "default.handlebars->35->2451" ] }, { @@ -13251,7 +13256,7 @@ "sv": "Anpassa", "zh-chs": "定制", "xloc": [ - "default-mobile.handlebars->11->368" + "default-mobile.handlebars->11->371" ] }, { @@ -13314,7 +13319,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->35->1379" + "default.handlebars->35->1382" ] }, { @@ -13358,7 +13363,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->35->1380" + "default.handlebars->35->1383" ] }, { @@ -13396,7 +13401,7 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->35->1049", + "default.handlebars->35->1052", "sharing.handlebars->11->11" ] }, @@ -13419,7 +13424,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->35->1538" + "default.handlebars->35->1541" ] }, { @@ -13441,8 +13446,8 @@ "zh-chs": "天", "zh-cht": "天", "xloc": [ - "default-mobile.handlebars->11->341", - "default.handlebars->35->973" + "default-mobile.handlebars->11->342", + "default.handlebars->35->974" ] }, { @@ -13464,7 +13469,7 @@ "zh-chs": "停用", "zh-cht": "停用", "xloc": [ - "default.handlebars->35->1702" + "default.handlebars->35->1705" ] }, { @@ -13486,7 +13491,7 @@ "zh-chs": "如果设置停用CCM", "zh-cht": "如果設置停用CCM", "xloc": [ - "default.handlebars->35->1714" + "default.handlebars->35->1717" ] }, { @@ -13550,10 +13555,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->35->2135", - "default.handlebars->35->2183", - "default.handlebars->35->2194", - "default.handlebars->35->2262" + "default.handlebars->35->2140", + "default.handlebars->35->2188", + "default.handlebars->35->2199", + "default.handlebars->35->2267" ] }, { @@ -13568,8 +13573,8 @@ "sv": "Del", "zh-chs": "德尔", "xloc": [ - "default-mobile.handlebars->11->375", - "default.handlebars->35->1069" + "default-mobile.handlebars->11->378", + "default.handlebars->35->1072" ] }, { @@ -13592,12 +13597,12 @@ "zh-cht": "刪除", "xloc": [ "default-mobile.handlebars->11->146", - "default-mobile.handlebars->11->429", + "default-mobile.handlebars->11->432", "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-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->35->1167", - "default.handlebars->35->1906", + "default.handlebars->35->1170", + "default.handlebars->35->1909", "default.handlebars->35->649", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -13631,7 +13636,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->35->1575" + "default.handlebars->35->1578" ] }, { @@ -13653,7 +13658,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->35->2102" + "default.handlebars->35->2107" ] }, { @@ -13675,8 +13680,8 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default-mobile.handlebars->11->302", - "default.handlebars->35->790" + "default-mobile.handlebars->11->303", + "default.handlebars->35->791" ] }, { @@ -13698,11 +13703,11 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default-mobile.handlebars->11->576", "default-mobile.handlebars->11->579", - "default.handlebars->35->1697", - "default.handlebars->35->1698", - "default.handlebars->35->1731" + "default-mobile.handlebars->11->582", + "default.handlebars->35->1700", + "default.handlebars->35->1701", + "default.handlebars->35->1734" ] }, { @@ -13724,8 +13729,8 @@ "zh-chs": "删除节点", "zh-cht": "刪除節點", "xloc": [ - "default-mobile.handlebars->11->349", - "default.handlebars->35->999" + "default-mobile.handlebars->11->350", + "default.handlebars->35->1000" ] }, { @@ -13769,7 +13774,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->35->2314" + "default.handlebars->35->2319" ] }, { @@ -13791,8 +13796,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->35->2232", - "default.handlebars->35->2242" + "default.handlebars->35->2237", + "default.handlebars->35->2247" ] }, { @@ -13814,7 +13819,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->35->2181" + "default.handlebars->35->2186" ] }, { @@ -13836,7 +13841,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->35->2341" + "default.handlebars->35->2346" ] }, { @@ -13859,7 +13864,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->35->2098", + "default.handlebars->35->2103", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -13904,7 +13909,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->35->2177" + "default.handlebars->35->2182" ] }, { @@ -13948,7 +13953,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->35->1966" + "default.handlebars->35->1969" ] }, { @@ -13971,9 +13976,9 @@ "zh-cht": "刪除所選項目?", "xloc": [ "default-mobile.handlebars->11->148", - "default-mobile.handlebars->11->431", - "default.handlebars->35->1169", - "default.handlebars->35->1908", + "default-mobile.handlebars->11->434", + "default.handlebars->35->1172", + "default.handlebars->35->1911", "sharing.handlebars->11->63" ] }, @@ -13996,7 +14001,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->35->2240" + "default.handlebars->35->2245" ] }, { @@ -14019,9 +14024,9 @@ "zh-cht": "刪除{0}個所選項目?", "xloc": [ "default-mobile.handlebars->11->147", - "default-mobile.handlebars->11->430", - "default.handlebars->35->1168", - "default.handlebars->35->1907", + "default-mobile.handlebars->11->433", + "default.handlebars->35->1171", + "default.handlebars->35->1910", "sharing.handlebars->11->62" ] }, @@ -14044,7 +14049,7 @@ "zh-chs": "删除{0}?", "zh-cht": "刪除{0}?", "xloc": [ - "default-mobile.handlebars->11->350" + "default-mobile.handlebars->11->351" ] }, { @@ -14066,7 +14071,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->35->1965" + "default.handlebars->35->1968" ] }, { @@ -14088,7 +14093,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->35->1967" + "default.handlebars->35->1970" ] }, { @@ -14110,8 +14115,8 @@ "zh-chs": "被拒绝", "zh-cht": "被拒絕", "xloc": [ - "default-mobile.handlebars->11->362", - "default.handlebars->35->1044", + "default-mobile.handlebars->11->365", + "default.handlebars->35->1047", "sharing.handlebars->11->29", "sharing.handlebars->11->7" ] @@ -14227,21 +14232,21 @@ "default-mobile.handlebars->11->125", "default-mobile.handlebars->11->257", "default-mobile.handlebars->11->258", - "default-mobile.handlebars->11->357", - "default-mobile.handlebars->11->492", - "default-mobile.handlebars->11->567", - "default-mobile.handlebars->11->581", - "default.handlebars->35->1039", + "default-mobile.handlebars->11->360", + "default-mobile.handlebars->11->495", + "default-mobile.handlebars->11->570", + "default-mobile.handlebars->11->584", + "default.handlebars->35->1042", "default.handlebars->35->122", - "default.handlebars->35->1221", - "default.handlebars->35->1231", - "default.handlebars->35->1596", - "default.handlebars->35->1644", - "default.handlebars->35->1733", - "default.handlebars->35->2186", - "default.handlebars->35->2196", - "default.handlebars->35->2197", - "default.handlebars->35->2238", + "default.handlebars->35->1224", + "default.handlebars->35->1234", + "default.handlebars->35->1599", + "default.handlebars->35->1647", + "default.handlebars->35->1736", + "default.handlebars->35->2191", + "default.handlebars->35->2201", + "default.handlebars->35->2202", + "default.handlebars->35->2243", "default.handlebars->35->690", "default.handlebars->35->691", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" @@ -14285,14 +14290,14 @@ "zh-chs": "桌面", "zh-cht": "桌面", "xloc": [ - "default-mobile.handlebars->11->309", - "default.handlebars->35->1113", - "default.handlebars->35->1739", - "default.handlebars->35->2396", - "default.handlebars->35->2497", + "default-mobile.handlebars->11->310", + "default.handlebars->35->1116", + "default.handlebars->35->1742", + "default.handlebars->35->2401", + "default.handlebars->35->2502", "default.handlebars->35->655", - "default.handlebars->35->837", - "default.handlebars->35->904", + "default.handlebars->35->838", + "default.handlebars->35->905", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", "sharing.handlebars->11->23", @@ -14311,8 +14316,8 @@ "sv": "Desktop + Files", "zh-chs": "桌面 + 文件", "xloc": [ - "default.handlebars->35->841", - "default.handlebars->35->907" + "default.handlebars->35->842", + "default.handlebars->35->908" ] }, { @@ -14327,7 +14332,7 @@ "sv": "Desktop + Terminal", "zh-chs": "桌面 + 终端", "xloc": [ - "default.handlebars->35->838" + "default.handlebars->35->839" ] }, { @@ -14342,8 +14347,8 @@ "sv": "Desktop + Terminal + Files", "zh-chs": "桌面 + 终端 + 文件", "xloc": [ - "default.handlebars->35->842", - "default.handlebars->35->909" + "default.handlebars->35->843", + "default.handlebars->35->910" ] }, { @@ -14379,7 +14384,7 @@ "sv": "Desktop Multiplex", "zh-chs": "桌面复用", "xloc": [ - "default.handlebars->35->2502" + "default.handlebars->35->2507" ] }, { @@ -14401,9 +14406,9 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->35->1658", - "default.handlebars->35->2201", - "default.handlebars->35->2288", + "default.handlebars->35->1661", + "default.handlebars->35->2206", + "default.handlebars->35->2293", "default.handlebars->35->748" ] }, @@ -14426,9 +14431,9 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->35->1657", - "default.handlebars->35->2200", - "default.handlebars->35->2287", + "default.handlebars->35->1660", + "default.handlebars->35->2205", + "default.handlebars->35->2292", "default.handlebars->35->747" ] }, @@ -14451,9 +14456,9 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->35->1655", - "default.handlebars->35->2198", - "default.handlebars->35->2285", + "default.handlebars->35->1658", + "default.handlebars->35->2203", + "default.handlebars->35->2290", "default.handlebars->35->745" ] }, @@ -14469,7 +14474,7 @@ "sv": "Skrivbordssession", "zh-chs": "桌面会话", "xloc": [ - "default.handlebars->35->2389" + "default.handlebars->35->2394" ] }, { @@ -14548,9 +14553,9 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->35->1656", - "default.handlebars->35->2199", - "default.handlebars->35->2286", + "default.handlebars->35->1659", + "default.handlebars->35->2204", + "default.handlebars->35->2291", "default.handlebars->35->746" ] }, @@ -14566,7 +14571,7 @@ "sv": "Skrivbord, endast visa", "zh-chs": "桌面,仅查看", "xloc": [ - "default.handlebars->35->910" + "default.handlebars->35->911" ] }, { @@ -14588,7 +14593,7 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->35->1112" + "default.handlebars->35->1115" ] }, { @@ -14649,7 +14654,7 @@ "zh-chs": "细节", "zh-cht": "細節", "xloc": [ - "default-mobile.handlebars->11->312", + "default-mobile.handlebars->11->313", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails" ] @@ -14695,12 +14700,12 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default-mobile.handlebars->11->487", - "default.handlebars->35->1216", - "default.handlebars->35->1324", - "default.handlebars->35->1762", + "default-mobile.handlebars->11->490", + "default.handlebars->35->1219", + "default.handlebars->35->1327", + "default.handlebars->35->1765", "default.handlebars->35->231", - "default.handlebars->35->2360", + "default.handlebars->35->2365", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -14723,9 +14728,9 @@ "zh-chs": "设备指令", "zh-cht": "裝置指令", "xloc": [ - "default-mobile.handlebars->11->330", - "default-mobile.handlebars->11->339", - "default.handlebars->35->956" + "default-mobile.handlebars->11->331", + "default-mobile.handlebars->11->340", + "default.handlebars->35->957" ] }, { @@ -14785,16 +14790,16 @@ "zh-cht": "裝置群", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->642", - "default.handlebars->35->1757", + "default-mobile.handlebars->11->645", "default.handlebars->35->1760", - "default.handlebars->35->1761", - "default.handlebars->35->2049", - "default.handlebars->35->2224", - "default.handlebars->35->2230", - "default.handlebars->35->2348", - "default.handlebars->35->2405", - "default.handlebars->35->2424" + "default.handlebars->35->1763", + "default.handlebars->35->1764", + "default.handlebars->35->2054", + "default.handlebars->35->2229", + "default.handlebars->35->2235", + "default.handlebars->35->2353", + "default.handlebars->35->2410", + "default.handlebars->35->2429" ] }, { @@ -14816,8 +14821,8 @@ "zh-chs": "设备组用户", "zh-cht": "裝置群用戶", "xloc": [ - "default-mobile.handlebars->11->631", - "default.handlebars->35->1827" + "default-mobile.handlebars->11->634", + "default.handlebars->35->1830" ] }, { @@ -14840,11 +14845,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->35->2065", - "default.handlebars->35->2171", - "default.handlebars->35->2211", - "default.handlebars->35->2282", - "default.handlebars->35->2475", + "default.handlebars->35->2070", + "default.handlebars->35->2176", + "default.handlebars->35->2216", + "default.handlebars->35->2287", + "default.handlebars->35->2480", "default.handlebars->container->column_l->p2->p2info->9" ] }, @@ -14889,7 +14894,7 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->35->1000" + "default.handlebars->35->1001" ] }, { @@ -14911,7 +14916,7 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->35->894" + "default.handlebars->35->895" ] }, { @@ -14933,9 +14938,9 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default-mobile.handlebars->11->355", - "default.handlebars->35->1037", - "default.handlebars->35->2404", + "default-mobile.handlebars->11->358", + "default.handlebars->35->1040", + "default.handlebars->35->2409", "default.handlebars->35->375", "default.handlebars->35->384", "player.handlebars->3->9" @@ -14961,7 +14966,7 @@ "zh-cht": "裝置通知", "xloc": [ "default.handlebars->35->593", - "default.handlebars->35->899" + "default.handlebars->35->900" ] }, { @@ -14976,7 +14981,7 @@ "sv": "Parningslänk för enhet", "zh-chs": "设备配对链接", "xloc": [ - "default-mobile.handlebars->11->585" + "default-mobile.handlebars->11->588" ] }, { @@ -15028,7 +15033,7 @@ "zh-chs": "设备共享链接", "zh-cht": "設備共享鏈接", "xloc": [ - "default.handlebars->35->834" + "default.handlebars->35->835" ] }, { @@ -15061,7 +15066,7 @@ "zh-chs": "设备提示", "zh-cht": "裝置吐司", "xloc": [ - "default-mobile.handlebars->11->307" + "default-mobile.handlebars->11->308" ] }, { @@ -15117,8 +15122,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->35->1563", - "default.handlebars->35->1848" + "default.handlebars->35->1566", + "default.handlebars->35->1851" ] }, { @@ -15140,8 +15145,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->35->1564", - "default.handlebars->35->1849" + "default.handlebars->35->1567", + "default.handlebars->35->1852" ] }, { @@ -15163,7 +15168,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->35->1996" + "default.handlebars->35->1999" ] }, { @@ -15185,7 +15190,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->35->1997" + "default.handlebars->35->2000" ] }, { @@ -15207,7 +15212,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->35->1998" + "default.handlebars->35->2001" ] }, { @@ -15229,8 +15234,8 @@ "zh-chs": "其他设备组管理员可以查看和更改设备组注释。", "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ - "default-mobile.handlebars->11->337", - "default.handlebars->35->891" + "default-mobile.handlebars->11->338", + "default.handlebars->35->892" ] }, { @@ -15252,7 +15257,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->35->1993" + "default.handlebars->35->1996" ] }, { @@ -15274,7 +15279,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->35->1976" + "default.handlebars->35->1979" ] }, { @@ -15698,7 +15703,7 @@ "sv": "Enhet begärde Intel (R) AMT ACM TLS-aktivering, FQDN: {0}", "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "xloc": [ - "default.handlebars->35->2031" + "default.handlebars->35->2034" ] }, { @@ -15720,7 +15725,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->35->1978" + "default.handlebars->35->1981" ] }, { @@ -15761,9 +15766,9 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->35->1696", - "default.handlebars->35->2172", - "default.handlebars->35->2212" + "default.handlebars->35->1699", + "default.handlebars->35->2177", + "default.handlebars->35->2217" ] }, { @@ -15796,7 +15801,7 @@ "zh-chs": "已禁用", "zh-cht": "已禁用", "xloc": [ - "default-mobile.handlebars->11->472", + "default-mobile.handlebars->11->475", "default.handlebars->35->741", "default.handlebars->35->95" ] @@ -15820,7 +15825,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->35->2009" + "default.handlebars->35->2012" ] }, { @@ -15843,11 +15848,11 @@ "zh-cht": "斷線", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->411", + "default-mobile.handlebars->11->414", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->35->1140", - "default.handlebars->35->1668", + "default.handlebars->35->1143", + "default.handlebars->35->1671", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "sharing.handlebars->11->43", @@ -15963,7 +15968,7 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->35->895" + "default.handlebars->35->896" ] }, { @@ -16007,7 +16012,7 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->35->782" + "default.handlebars->35->783" ] }, { @@ -16040,7 +16045,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->35->1562" + "default.handlebars->35->1565" ] }, { @@ -16062,7 +16067,7 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->35->1098" + "default.handlebars->35->1101" ] }, { @@ -16084,7 +16089,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->35->1879" + "default.handlebars->35->1882" ] }, { @@ -16099,7 +16104,7 @@ "sv": "Visa {0}", "zh-chs": "显示{0}", "xloc": [ - "default.handlebars->35->1115" + "default.handlebars->35->1118" ] }, { @@ -16121,7 +16126,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->35->1938" + "default.handlebars->35->1941" ] }, { @@ -16143,7 +16148,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->35->1946" + "default.handlebars->35->1949" ] }, { @@ -16165,8 +16170,8 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->35->1717", - "default.handlebars->35->1721" + "default.handlebars->35->1720", + "default.handlebars->35->1724" ] }, { @@ -16188,13 +16193,13 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->35->2136", - "default.handlebars->35->2184", - "default.handlebars->35->2193", - "default.handlebars->35->2261", + "default.handlebars->35->2141", + "default.handlebars->35->2189", + "default.handlebars->35->2198", + "default.handlebars->35->2266", "default.handlebars->35->91", - "mstsc.handlebars->main->1->3->1->2->1->0", - "mstsc.handlebars->main->1->3->1->2->3" + "mstsc.handlebars->main->1->3->1->rowdomain->1->0", + "mstsc.handlebars->main->1->3->1->rowdomain->3" ] }, { @@ -16227,7 +16232,7 @@ "zh-chs": "请勿更改,如果设置请保留CCM", "zh-cht": "請勿更改,如果設置請保留CCM", "xloc": [ - "default.handlebars->35->1713" + "default.handlebars->35->1716" ] }, { @@ -16268,7 +16273,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->35->1722" + "default.handlebars->35->1725" ] }, { @@ -16356,8 +16361,8 @@ "sv": "Ner", "zh-chs": "下", "xloc": [ - "default-mobile.handlebars->11->383", - "default.handlebars->35->1077" + "default-mobile.handlebars->11->386", + "default.handlebars->35->1080" ] }, { @@ -16441,8 +16446,8 @@ "zh-chs": "下载档案", "zh-cht": "下載檔案", "xloc": [ - "default-mobile.handlebars->11->450", - "default.handlebars->35->1188", + "default-mobile.handlebars->11->453", + "default.handlebars->35->1191", "sharing.handlebars->11->82" ] }, @@ -16487,7 +16492,7 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->35->1025" + "default.handlebars->35->1026" ] }, { @@ -16553,7 +16558,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->35->2054", + "default.handlebars->35->2059", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -16576,7 +16581,7 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->35->1018" + "default.handlebars->35->1019" ] }, { @@ -16664,7 +16669,7 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->35->974" + "default.handlebars->35->975" ] }, { @@ -16789,7 +16794,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->35->2055" + "default.handlebars->35->2060" ] }, { @@ -16811,7 +16816,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->35->2120" + "default.handlebars->35->2125" ] }, { @@ -16900,7 +16905,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->35->1969" + "default.handlebars->35->1972" ] }, { @@ -16915,7 +16920,7 @@ "sv": "Hämta: \\\"{0}\\\", Storlek: {1}", "zh-chs": "下载:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->35->2026" + "default.handlebars->35->2029" ] }, { @@ -16959,7 +16964,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->35->2471" + "default.handlebars->35->2476" ] }, { @@ -17003,7 +17008,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->35->2188" + "default.handlebars->35->2193" ] }, { @@ -17044,8 +17049,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->35->2384", - "default.handlebars->35->2410", + "default.handlebars->35->2389", + "default.handlebars->35->2415", "player.handlebars->3->2" ] }, @@ -17087,7 +17092,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->35->1382" + "default.handlebars->35->1385" ] }, { @@ -17109,7 +17114,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->35->1381" + "default.handlebars->35->1384" ] }, { @@ -17437,10 +17442,12 @@ "zh-chs": "编辑设备", "zh-cht": "編輯裝置", "xloc": [ - "default-mobile.handlebars->11->353", - "default-mobile.handlebars->11->360", - "default.handlebars->35->1035", - "default.handlebars->35->1042" + "default-mobile.handlebars->11->354", + "default-mobile.handlebars->11->356", + "default-mobile.handlebars->11->363", + "default.handlebars->35->1036", + "default.handlebars->35->1038", + "default.handlebars->35->1045" ] }, { @@ -17462,13 +17469,13 @@ "zh-chs": "编辑设备组", "zh-cht": "編輯裝置群", "xloc": [ - "default-mobile.handlebars->11->582", - "default-mobile.handlebars->11->588", - "default-mobile.handlebars->11->608", - "default.handlebars->35->1734", - "default.handlebars->35->1766", - "default.handlebars->35->1791", - "default.handlebars->35->1803" + "default-mobile.handlebars->11->585", + "default-mobile.handlebars->11->591", + "default-mobile.handlebars->11->611", + "default.handlebars->35->1737", + "default.handlebars->35->1769", + "default.handlebars->35->1794", + "default.handlebars->35->1806" ] }, { @@ -17490,7 +17497,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->35->1752" + "default.handlebars->35->1755" ] }, { @@ -17512,8 +17519,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->35->1788", - "default.handlebars->35->1800" + "default.handlebars->35->1791", + "default.handlebars->35->1803" ] }, { @@ -17535,7 +17542,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->35->1735" + "default.handlebars->35->1738" ] }, { @@ -17557,8 +17564,8 @@ "zh-chs": "编辑设备笔记", "zh-cht": "編輯裝置筆記", "xloc": [ - "default-mobile.handlebars->11->600", - "default.handlebars->35->1780" + "default-mobile.handlebars->11->603", + "default.handlebars->35->1783" ] }, { @@ -17580,8 +17587,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->35->1793", - "default.handlebars->35->1795" + "default.handlebars->35->1796", + "default.handlebars->35->1798" ] }, { @@ -17625,7 +17632,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->35->1737" + "default.handlebars->35->1740" ] }, { @@ -17647,7 +17654,7 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->35->868" + "default.handlebars->35->869" ] }, { @@ -17672,11 +17679,11 @@ "default-mobile.handlebars->11->277", "default-mobile.handlebars->11->282", "default-mobile.handlebars->11->283", - "default-mobile.handlebars->11->348", + "default-mobile.handlebars->11->349", "default.handlebars->35->712", "default.handlebars->35->717", "default.handlebars->35->718", - "default.handlebars->35->981" + "default.handlebars->35->982" ] }, { @@ -17698,8 +17705,8 @@ "zh-chs": "编辑笔记", "zh-cht": "編輯筆記", "xloc": [ - "default-mobile.handlebars->11->615", - "default.handlebars->35->1810" + "default-mobile.handlebars->11->618", + "default.handlebars->35->1813" ] }, { @@ -17721,7 +17728,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->35->1736" + "default.handlebars->35->1739" ] }, { @@ -17743,7 +17750,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->35->1801" + "default.handlebars->35->1804" ] }, { @@ -17765,7 +17772,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->35->1796" + "default.handlebars->35->1799" ] }, { @@ -17787,7 +17794,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->35->2239" + "default.handlebars->35->2244" ] }, { @@ -17809,7 +17816,7 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->35->1798" + "default.handlebars->35->1801" ] }, { @@ -17831,7 +17838,7 @@ "zh-chs": "编辑用户组用户同意", "zh-cht": "編輯用戶組用戶同意", "xloc": [ - "default.handlebars->35->1738" + "default.handlebars->35->1741" ] }, { @@ -17921,11 +17928,11 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->35->2138", - "default.handlebars->35->2265", - "default.handlebars->35->2267", - "default.handlebars->35->2307", - "default.handlebars->35->2327", + "default.handlebars->35->2143", + "default.handlebars->35->2270", + "default.handlebars->35->2272", + "default.handlebars->35->2312", + "default.handlebars->35->2332", "default.handlebars->35->417", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -17960,7 +17967,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->11->103", - "default.handlebars->35->1571" + "default.handlebars->35->1574" ] }, { @@ -17983,7 +17990,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->11->92", - "default.handlebars->35->1312" + "default.handlebars->35->1315" ] }, { @@ -18049,7 +18056,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->35->1569" + "default.handlebars->35->1572" ] }, { @@ -18093,7 +18100,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->35->2084" + "default.handlebars->35->2089" ] }, { @@ -18115,8 +18122,8 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->35->2085", - "default.handlebars->35->2259" + "default.handlebars->35->2090", + "default.handlebars->35->2264" ] }, { @@ -18138,7 +18145,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->35->2144" + "default.handlebars->35->2149" ] }, { @@ -18160,7 +18167,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->35->2260" + "default.handlebars->35->2265" ] }, { @@ -18193,8 +18200,8 @@ "zh-chs": "电邮已发送。", "zh-cht": "電郵已發送。", "xloc": [ - "default-mobile.handlebars->11->657", - "default.handlebars->35->2439", + "default-mobile.handlebars->11->660", + "default.handlebars->35->2444", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->3" @@ -18254,7 +18261,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->35->2145" + "default.handlebars->35->2150" ] }, { @@ -18288,7 +18295,7 @@ "sv": "E-post / SMS / Push-trafik", "zh-chs": "电子邮件/短信/推送流量", "xloc": [ - "default.handlebars->35->2530" + "default.handlebars->35->2535" ] }, { @@ -18338,7 +18345,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->35->1833" + "default.handlebars->35->1836" ] }, { @@ -18383,7 +18390,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->11->94", - "default.handlebars->35->1314" + "default.handlebars->35->1317" ] }, { @@ -18427,7 +18434,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->35->2412", + "default.handlebars->35->2417", "default.handlebars->35->94" ] }, @@ -18450,7 +18457,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->35->2008" + "default.handlebars->35->2011" ] }, { @@ -18487,8 +18494,8 @@ "sv": "Slutet", "zh-chs": "结尾", "xloc": [ - "default-mobile.handlebars->11->377", - "default.handlebars->35->1071" + "default-mobile.handlebars->11->380", + "default.handlebars->35->1074" ] }, { @@ -18510,7 +18517,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->35->2409" + "default.handlebars->35->2414" ] }, { @@ -18532,7 +18539,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->35->1931" + "default.handlebars->35->1934" ] }, { @@ -18554,7 +18561,13 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->35->1932" + "default.handlebars->35->1935" + ] + }, + { + "en": "Ended local relay session \\\"{0}\\\", protocol {1} to {2}, {3} second(s)", + "xloc": [ + "default.handlebars->35->2044" ] }, { @@ -18569,7 +18582,7 @@ "sv": "Avslutade messenger-session \\\"{0}\\\" från {1} till {2}, {3} sekund (er)", "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"", "xloc": [ - "default.handlebars->35->2032" + "default.handlebars->35->2035" ] }, { @@ -18591,7 +18604,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->35->1929" + "default.handlebars->35->1932" ] }, { @@ -18613,7 +18626,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->35->1930" + "default.handlebars->35->1933" ] }, { @@ -18635,7 +18648,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->35->1383" + "default.handlebars->35->1386" ] }, { @@ -18657,7 +18670,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->35->1384" + "default.handlebars->35->1387" ] }, { @@ -18679,7 +18692,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->35->1385" + "default.handlebars->35->1388" ] }, { @@ -18701,7 +18714,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->35->1386" + "default.handlebars->35->1389" ] }, { @@ -18723,7 +18736,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->35->1387" + "default.handlebars->35->1390" ] }, { @@ -18745,7 +18758,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->35->1388" + "default.handlebars->35->1391" ] }, { @@ -18767,7 +18780,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->35->1389" + "default.handlebars->35->1392" ] }, { @@ -18789,7 +18802,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->35->1390" + "default.handlebars->35->1393" ] }, { @@ -18811,7 +18824,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->35->1391" + "default.handlebars->35->1394" ] }, { @@ -18833,7 +18846,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->35->1392" + "default.handlebars->35->1395" ] }, { @@ -18855,7 +18868,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->35->1393" + "default.handlebars->35->1396" ] }, { @@ -18877,7 +18890,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->35->1394" + "default.handlebars->35->1397" ] }, { @@ -18899,7 +18912,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->35->1395" + "default.handlebars->35->1398" ] }, { @@ -18932,11 +18945,11 @@ "zh-chs": "输入", "zh-cht": "輸入", "xloc": [ - "default-mobile.handlebars->11->371", - "default.handlebars->35->1065", - "default.handlebars->35->1160", - "default.handlebars->35->1598", - "default.handlebars->35->1599", + "default-mobile.handlebars->11->374", + "default.handlebars->35->1068", + "default.handlebars->35->1163", + "default.handlebars->35->1601", + "default.handlebars->35->1602", "sharing.handlebars->11->55" ] }, @@ -18959,7 +18972,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->35->2149" + "default.handlebars->35->2154" ] }, { @@ -19036,7 +19049,7 @@ "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->35->1090" + "default.handlebars->35->1093" ] }, { @@ -19126,7 +19139,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->35->1309" + "default.handlebars->35->1312" ] }, { @@ -19175,8 +19188,8 @@ "sv": "Fel, inbjudningskod \\\"{0}\\\" används redan.", "zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。", "xloc": [ - "default-mobile.handlebars->11->665", - "default.handlebars->35->2447" + "default-mobile.handlebars->11->668", + "default.handlebars->35->2452" ] }, { @@ -19192,8 +19205,8 @@ "sv": "Fel, lösenordet har inte ändrats.", "zh-chs": "错误,密码未更改。", "xloc": [ - "default-mobile.handlebars->11->662", - "default.handlebars->35->2444" + "default-mobile.handlebars->11->665", + "default.handlebars->35->2449" ] }, { @@ -19208,8 +19221,8 @@ "sv": "Fel, det går inte att ändra till vanligt lösenord.", "zh-chs": "错误,无法更改为常用密码。", "xloc": [ - "default-mobile.handlebars->11->661", - "default.handlebars->35->2443" + "default-mobile.handlebars->11->664", + "default.handlebars->35->2448" ] }, { @@ -19224,8 +19237,8 @@ "sv": "Fel, kunde inte ändra till tidigare använt lösenord.", "zh-chs": "错误,无法更改为以前使用的密码。", "xloc": [ - "default-mobile.handlebars->11->660", - "default.handlebars->35->2442" + "default-mobile.handlebars->11->663", + "default.handlebars->35->2447" ] }, { @@ -19262,8 +19275,8 @@ "sv": "Fly", "zh-chs": "逃脱", "xloc": [ - "default-mobile.handlebars->11->372", - "default.handlebars->35->1066" + "default-mobile.handlebars->11->375", + "default.handlebars->35->1069" ] }, { @@ -19285,7 +19298,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->35->1396" + "default.handlebars->35->1399" ] }, { @@ -19307,7 +19320,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->35->1397" + "default.handlebars->35->1400" ] }, { @@ -19340,7 +19353,7 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->35->1201" + "default.handlebars->35->1204" ] }, { @@ -19362,7 +19375,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->35->2060" + "default.handlebars->35->2065" ] }, { @@ -19494,9 +19507,9 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ - "default.handlebars->35->1559", + "default.handlebars->35->1562", "default.handlebars->35->237", - "default.handlebars->35->930" + "default.handlebars->35->931" ] }, { @@ -19540,7 +19553,7 @@ "zh-chs": "过期{0}", "zh-cht": "過期{0}", "xloc": [ - "default.handlebars->35->1612", + "default.handlebars->35->1615", "sharing.handlebars->11->95" ] }, @@ -19585,7 +19598,7 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->35->1131", + "default.handlebars->35->1134", "sharing.handlebars->11->34" ] }, @@ -19631,7 +19644,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->35->2510" + "default.handlebars->35->2515" ] }, { @@ -19675,7 +19688,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->35->1447" + "default.handlebars->35->1450" ] }, { @@ -19697,7 +19710,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->35->1398" + "default.handlebars->35->1401" ] }, { @@ -19735,8 +19748,8 @@ "sv": "Det gick inte att ändra e-postadress, ett annat konto som redan använder: {0}.", "zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。", "xloc": [ - "default-mobile.handlebars->11->656", - "default.handlebars->35->2438" + "default-mobile.handlebars->11->659", + "default.handlebars->35->2443" ] }, { @@ -19773,7 +19786,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->35->1954" + "default.handlebars->35->1957" ] }, { @@ -19806,7 +19819,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->35->1961" + "default.handlebars->35->1964" ] }, { @@ -19839,8 +19852,8 @@ "zh-chs": "无法启动远程终端接合{0}({1})", "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ - "default-mobile.handlebars->11->363", - "default.handlebars->35->1045", + "default-mobile.handlebars->11->366", + "default.handlebars->35->1048", "sharing.handlebars->11->30", "sharing.handlebars->11->8" ] @@ -19864,7 +19877,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->35->1399" + "default.handlebars->35->1402" ] }, { @@ -19910,7 +19923,7 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->35->1654" + "default.handlebars->35->1657" ] }, { @@ -19932,7 +19945,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->35->1400" + "default.handlebars->35->1403" ] }, { @@ -19976,8 +19989,8 @@ "zh-chs": "档案编辑器", "zh-cht": "檔案編輯器", "xloc": [ - "default-mobile.handlebars->11->434", - "default.handlebars->35->1172", + "default-mobile.handlebars->11->437", + "default.handlebars->35->1175", "default.handlebars->35->647", "sharing.handlebars->11->66" ] @@ -20019,8 +20032,8 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->35->1151", - "default.handlebars->35->1153", + "default.handlebars->35->1154", + "default.handlebars->35->1156", "sharing.handlebars->11->46", "sharing.handlebars->11->48" ] @@ -20059,7 +20072,7 @@ "sv": "Filöverföring", "zh-chs": "文件传输", "xloc": [ - "default.handlebars->35->2390" + "default.handlebars->35->2395" ] }, { @@ -20081,7 +20094,7 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->35->1101" + "default.handlebars->35->1104" ] }, { @@ -20104,13 +20117,13 @@ "zh-cht": "檔案", "xloc": [ "default-mobile.handlebars->11->203", - "default-mobile.handlebars->11->311", - "default.handlebars->35->1746", - "default.handlebars->35->2397", - "default.handlebars->35->2498", + "default-mobile.handlebars->11->312", + "default.handlebars->35->1749", + "default.handlebars->35->2402", + "default.handlebars->35->2503", "default.handlebars->35->344", - "default.handlebars->35->839", - "default.handlebars->35->906", + "default.handlebars->35->840", + "default.handlebars->35->907", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", "sharing.handlebars->LeftSideToolBar" @@ -20157,9 +20170,9 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->35->1662", - "default.handlebars->35->2205", - "default.handlebars->35->2292", + "default.handlebars->35->1665", + "default.handlebars->35->2210", + "default.handlebars->35->2297", "default.handlebars->35->752" ] }, @@ -20182,9 +20195,9 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->35->1661", - "default.handlebars->35->2204", - "default.handlebars->35->2291", + "default.handlebars->35->1664", + "default.handlebars->35->2209", + "default.handlebars->35->2296", "default.handlebars->35->751" ] }, @@ -20208,7 +20221,7 @@ "zh-cht": "過濾", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->35->1156", + "default.handlebars->35->1159", "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", @@ -20257,7 +20270,7 @@ "zh-chs": "查找文件", "zh-cht": "查找文件", "xloc": [ - "default.handlebars->35->1159", + "default.handlebars->35->1162", "sharing.handlebars->11->54" ] }, @@ -20280,7 +20293,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->35->1927" + "default.handlebars->35->1930" ] }, { @@ -20302,7 +20315,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->35->1401" + "default.handlebars->35->1404" ] }, { @@ -20317,8 +20330,8 @@ "sv": "Brandvägg", "zh-chs": "防火墙", "xloc": [ - "default-mobile.handlebars->11->467", - "default-mobile.handlebars->11->469", + "default-mobile.handlebars->11->470", + "default-mobile.handlebars->11->472", "default.handlebars->35->736", "default.handlebars->35->738" ] @@ -20335,8 +20348,8 @@ "sv": "Brandväggen inte aktiv", "zh-chs": "防火墙未激活", "xloc": [ - "default.handlebars->35->1859", - "default.handlebars->35->1873" + "default.handlebars->35->1862", + "default.handlebars->35->1876" ] }, { @@ -20378,8 +20391,8 @@ "sv": "Blixt", "zh-chs": "闪光", "xloc": [ - "default-mobile.handlebars->11->315", - "default.handlebars->35->937" + "default-mobile.handlebars->11->316", + "default.handlebars->35->938" ] }, { @@ -20580,8 +20593,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->35->2143", - "default.handlebars->35->2338" + "default.handlebars->35->2148", + "default.handlebars->35->2343" ] }, { @@ -20672,7 +20685,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->35->2051" + "default.handlebars->35->2056" ] }, { @@ -20728,8 +20741,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->35->2456", - "default.handlebars->35->2458" + "default.handlebars->35->2461", + "default.handlebars->35->2463" ] }, { @@ -20774,7 +20787,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->35->1403" + "default.handlebars->35->1406" ] }, { @@ -20796,7 +20809,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->35->1404" + "default.handlebars->35->1407" ] }, { @@ -20818,7 +20831,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->35->1405" + "default.handlebars->35->1408" ] }, { @@ -20840,7 +20853,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->35->1406" + "default.handlebars->35->1409" ] }, { @@ -20862,7 +20875,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->35->1407" + "default.handlebars->35->1410" ] }, { @@ -20884,7 +20897,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->35->1402" + "default.handlebars->35->1405" ] }, { @@ -20906,7 +20919,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->35->1408" + "default.handlebars->35->1411" ] }, { @@ -20928,7 +20941,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->35->1409" + "default.handlebars->35->1412" ] }, { @@ -20950,7 +20963,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->35->1410" + "default.handlebars->35->1413" ] }, { @@ -20973,12 +20986,12 @@ "zh-cht": "完整管理員", "xloc": [ "default-mobile.handlebars->11->129", - "default-mobile.handlebars->11->574", - "default-mobile.handlebars->11->587", - "default-mobile.handlebars->11->607", - "default.handlebars->35->1605", - "default.handlebars->35->1765", - "default.handlebars->35->2155" + "default-mobile.handlebars->11->577", + "default-mobile.handlebars->11->590", + "default-mobile.handlebars->11->610", + "default.handlebars->35->1608", + "default.handlebars->35->1768", + "default.handlebars->35->2160" ] }, { @@ -21000,7 +21013,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->35->1802" + "default.handlebars->35->1805" ] }, { @@ -21041,7 +21054,7 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->35->848" + "default.handlebars->35->849" ] }, { @@ -21063,7 +21076,7 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->35->867" + "default.handlebars->35->868" ] }, { @@ -21132,7 +21145,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->35->2253" + "default.handlebars->35->2258" ] }, { @@ -21154,8 +21167,8 @@ "zh-chs": "全自动的", "zh-cht": "全自動的", "xloc": [ - "default.handlebars->35->1679", - "default.handlebars->35->1704" + "default.handlebars->35->1682", + "default.handlebars->35->1707" ] }, { @@ -21177,8 +21190,8 @@ "zh-chs": "GPU", "zh-cht": "GPU", "xloc": [ - "default-mobile.handlebars->11->531", - "default.handlebars->35->1270" + "default-mobile.handlebars->11->534", + "default.handlebars->35->1273" ] }, { @@ -21200,7 +21213,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->35->1412" + "default.handlebars->35->1415" ] }, { @@ -21222,7 +21235,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->35->1411" + "default.handlebars->35->1414" ] }, { @@ -21244,7 +21257,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->35->1413" + "default.handlebars->35->1416" ] }, { @@ -21288,7 +21301,7 @@ "zh-chs": "一般", "zh-cht": "一般", "xloc": [ - "default-mobile.handlebars->11->308", + "default-mobile.handlebars->11->309", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev", "default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral", @@ -21382,7 +21395,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->35->1414" + "default.handlebars->35->1417" ] }, { @@ -21404,7 +21417,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->35->1416" + "default.handlebars->35->1419" ] }, { @@ -21426,7 +21439,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->35->1417" + "default.handlebars->35->1420" ] }, { @@ -21448,7 +21461,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->35->1418" + "default.handlebars->35->1421" ] }, { @@ -21470,7 +21483,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->35->1419" + "default.handlebars->35->1422" ] }, { @@ -21492,7 +21505,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->35->1415" + "default.handlebars->35->1418" ] }, { @@ -21514,7 +21527,7 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->35->1420" + "default.handlebars->35->1423" ] }, { @@ -21536,7 +21549,7 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->35->812" + "default.handlebars->35->813" ] }, { @@ -21581,7 +21594,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->35->1941" + "default.handlebars->35->1944" ] }, { @@ -21649,7 +21662,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->35->1601" + "default.handlebars->35->1604" ] }, { @@ -21698,8 +21711,8 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->35->1622", "default.handlebars->35->1625", + "default.handlebars->35->1628", "default.handlebars->35->259" ] }, @@ -21722,7 +21735,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->35->1619" + "default.handlebars->35->1622" ] }, { @@ -21766,7 +21779,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->35->1623" + "default.handlebars->35->1626" ] }, { @@ -21803,7 +21816,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->35->1421" + "default.handlebars->35->1424" ] }, { @@ -21849,8 +21862,8 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->35->2099", - "default.handlebars->35->2178", + "default.handlebars->35->2104", + "default.handlebars->35->2183", "default.handlebars->35->569", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -21876,7 +21889,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->35->2047" + "default.handlebars->35->2052" ] }, { @@ -21898,7 +21911,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->35->2195" + "default.handlebars->35->2200" ] }, { @@ -21920,7 +21933,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->35->2216" + "default.handlebars->35->2221" ] }, { @@ -21942,7 +21955,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->35->1764" + "default.handlebars->35->1767" ] }, { @@ -21964,7 +21977,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->35->1763" + "default.handlebars->35->1766" ] }, { @@ -22008,7 +22021,7 @@ "zh-chs": "组1,组2,组3", "zh-cht": "群1,群2,群3", "xloc": [ - "default-mobile.handlebars->11->359" + "default-mobile.handlebars->11->362" ] }, { @@ -22053,7 +22066,7 @@ "zh-cht": "來賓姓名", "xloc": [ "default.handlebars->35->232", - "default.handlebars->35->903" + "default.handlebars->35->904" ] }, { @@ -22068,8 +22081,8 @@ "sv": "Gästdelning", "zh-chs": "嘉宾分享", "xloc": [ - "default.handlebars->35->855", - "default.handlebars->35->877" + "default.handlebars->35->856", + "default.handlebars->35->878" ] }, { @@ -22084,7 +22097,7 @@ "sv": "Gästdelning", "zh-chs": "嘉宾分享", "xloc": [ - "default.handlebars->35->1772" + "default.handlebars->35->1775" ] }, { @@ -22106,7 +22119,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->35->1422" + "default.handlebars->35->1425" ] }, { @@ -22121,7 +22134,7 @@ "sv": "HTTP", "zh-chs": "HTTP", "xloc": [ - "default.handlebars->35->2494" + "default.handlebars->35->2499" ] }, { @@ -22179,7 +22192,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->35->1423" + "default.handlebars->35->1426" ] }, { @@ -22230,8 +22243,8 @@ "zh-chs": "强行断开代理", "zh-cht": "強行斷開代理", "xloc": [ - "default-mobile.handlebars->11->561", - "default.handlebars->35->1301" + "default-mobile.handlebars->11->564", + "default.handlebars->35->1304" ] }, { @@ -22253,7 +22266,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->35->2512" + "default.handlebars->35->2517" ] }, { @@ -22275,7 +22288,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->35->2511" + "default.handlebars->35->2516" ] }, { @@ -22297,7 +22310,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->35->1424" + "default.handlebars->35->1427" ] }, { @@ -22375,7 +22388,7 @@ "zh-chs": "已请求帮助,用户:{0},详细信息:{1}", "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "xloc": [ - "default.handlebars->35->2018" + "default.handlebars->35->2021" ] }, { @@ -22442,7 +22455,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->35->1539" + "default.handlebars->35->1542" ] }, { @@ -22556,7 +22569,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->35->1425" + "default.handlebars->35->1428" ] }, { @@ -22597,8 +22610,8 @@ "zh-chs": "保存1个条目进行复制", "zh-cht": "保存1個項目進行複製", "xloc": [ - "default-mobile.handlebars->11->443", - "default.handlebars->35->1182", + "default-mobile.handlebars->11->446", + "default.handlebars->35->1185", "sharing.handlebars->11->76" ] }, @@ -22621,8 +22634,8 @@ "zh-chs": "保存1个项目进行移动", "zh-cht": "保存1個項目進行移動", "xloc": [ - "default-mobile.handlebars->11->447", - "default.handlebars->35->1186", + "default-mobile.handlebars->11->450", + "default.handlebars->35->1189", "sharing.handlebars->11->80" ] }, @@ -22645,8 +22658,8 @@ "zh-chs": "保存{0}个条目进行复制", "zh-cht": "保留{0}個項目進行複製", "xloc": [ - "default-mobile.handlebars->11->441", - "default.handlebars->35->1180", + "default-mobile.handlebars->11->444", + "default.handlebars->35->1183", "sharing.handlebars->11->74" ] }, @@ -22669,8 +22682,8 @@ "zh-chs": "保存{0}个条目以进行移动", "zh-cht": "保存{0}個項目以進行移動", "xloc": [ - "default-mobile.handlebars->11->445", - "default.handlebars->35->1184", + "default-mobile.handlebars->11->448", + "default.handlebars->35->1187", "sharing.handlebars->11->78" ] }, @@ -22694,7 +22707,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->35->1914" + "default.handlebars->35->1917" ] }, { @@ -22709,8 +22722,8 @@ "sv": "Hem", "zh-chs": "家", "xloc": [ - "default-mobile.handlebars->11->376", - "default.handlebars->35->1070" + "default-mobile.handlebars->11->379", + "default.handlebars->35->1073" ] }, { @@ -22735,10 +22748,10 @@ "default-mobile.handlebars->11->252", "default-mobile.handlebars->11->253", "default-mobile.handlebars->11->255", - "default-mobile.handlebars->11->356", - "default-mobile.handlebars->11->490", - "default.handlebars->35->1038", - "default.handlebars->35->1219", + "default-mobile.handlebars->11->359", + "default-mobile.handlebars->11->493", + "default.handlebars->35->1041", + "default.handlebars->35->1222", "default.handlebars->35->376", "default.handlebars->35->385", "default.handlebars->35->687" @@ -22763,7 +22776,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->35->1651" + "default.handlebars->35->1654" ] }, { @@ -22785,7 +22798,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->35->1426" + "default.handlebars->35->1429" ] }, { @@ -22854,9 +22867,9 @@ "zh-chs": "IP:{0}", "zh-cht": "IP:{0}", "xloc": [ - "default.handlebars->35->1229", - "default.handlebars->35->1239", - "default.handlebars->35->1243" + "default.handlebars->35->1232", + "default.handlebars->35->1242", + "default.handlebars->35->1246" ] }, { @@ -22878,9 +22891,9 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default.handlebars->35->1227", - "default.handlebars->35->1237", - "default.handlebars->35->1241" + "default.handlebars->35->1230", + "default.handlebars->35->1240", + "default.handlebars->35->1244" ] }, { @@ -22902,12 +22915,12 @@ "zh-chs": "IPv4层", "zh-cht": "IPv4層", "xloc": [ - "default-mobile.handlebars->11->497", - "default-mobile.handlebars->11->499", - "default.handlebars->35->1226", - "default.handlebars->35->1228", - "default.handlebars->35->1236", - "default.handlebars->35->1238" + "default-mobile.handlebars->11->500", + "default-mobile.handlebars->11->502", + "default.handlebars->35->1229", + "default.handlebars->35->1231", + "default.handlebars->35->1239", + "default.handlebars->35->1241" ] }, { @@ -22998,10 +23011,10 @@ "zh-chs": "IPv6层", "zh-cht": "IPv6層", "xloc": [ - "default-mobile.handlebars->11->501", - "default-mobile.handlebars->11->503", - "default.handlebars->35->1240", - "default.handlebars->35->1242" + "default-mobile.handlebars->11->504", + "default-mobile.handlebars->11->506", + "default.handlebars->35->1243", + "default.handlebars->35->1245" ] }, { @@ -23089,7 +23102,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->35->1427" + "default.handlebars->35->1430" ] }, { @@ -23111,8 +23124,8 @@ "zh-chs": "图标选择", "zh-cht": "圖符選擇", "xloc": [ - "default-mobile.handlebars->11->352", - "default.handlebars->35->1034" + "default-mobile.handlebars->11->353", + "default.handlebars->35->1035" ] }, { @@ -23134,10 +23147,10 @@ "zh-chs": "识别码", "zh-cht": "識別符", "xloc": [ - "default-mobile.handlebars->11->489", - "default-mobile.handlebars->11->529", - "default.handlebars->35->1218", - "default.handlebars->35->1268" + "default-mobile.handlebars->11->492", + "default-mobile.handlebars->11->532", + "default.handlebars->35->1221", + "default.handlebars->35->1271" ] }, { @@ -23159,7 +23172,7 @@ "zh-chs": "如果在CCM中,请重新激活英特尔®AMT", "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "xloc": [ - "default.handlebars->35->1718" + "default.handlebars->35->1721" ] }, { @@ -23300,7 +23313,7 @@ "sv": "För att kunna använda push-autentiseringsautentisering måste en mobil enhet vara inställd i ditt konto med fullständiga rättigheter.", "zh-chs": "为了使用推送通知身份验证,必须在您的帐户中设置具有完全权限的移动设备。", "xloc": [ - "default.handlebars->35->1322" + "default.handlebars->35->1325" ] }, { @@ -23421,7 +23434,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->35->1428" + "default.handlebars->35->1431" ] }, { @@ -23504,8 +23517,8 @@ "sv": "Föra in", "zh-chs": "插", "xloc": [ - "default-mobile.handlebars->11->374", - "default.handlebars->35->1068" + "default-mobile.handlebars->11->377", + "default.handlebars->35->1071" ] }, { @@ -23624,7 +23637,7 @@ "sv": "Installera på den här enheten", "zh-chs": "在此设备上安装", "xloc": [ - "default-mobile.handlebars->11->571" + "default-mobile.handlebars->11->574" ] }, { @@ -23639,7 +23652,7 @@ "sv": "Installera MeshCentral Agent på din Android-enhet. När du är installerad klickar du på parningslänken för att ansluta din enhet till den här servern.", "zh-chs": "在您的 Android 设备上安装 MeshCentral Agent。安装后,单击配对链接将您的设备连接到此服务器。", "xloc": [ - "default-mobile.handlebars->11->583" + "default-mobile.handlebars->11->586" ] }, { @@ -23683,8 +23696,8 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->35->1835", - "default.handlebars->35->1842", + "default.handlebars->35->1838", + "default.handlebars->35->1845", "default.handlebars->35->432", "default.handlebars->35->446", "default.handlebars->35->462", @@ -23710,7 +23723,7 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->35->1133", + "default.handlebars->35->1136", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "sharing.handlebars->11->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons" @@ -23735,7 +23748,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->35->2508" + "default.handlebars->35->2513" ] }, { @@ -23749,7 +23762,7 @@ "sv": "Intel AMT-chef", "zh-chs": "英特尔 AMT 经理", "xloc": [ - "default.handlebars->35->2537" + "default.handlebars->35->2542" ] }, { @@ -23771,7 +23784,7 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->35->1132", + "default.handlebars->35->1135", "sharing.handlebars->11->35" ] }, @@ -23797,11 +23810,11 @@ "default-mobile.handlebars->11->237", "default-mobile.handlebars->11->285", "default-mobile.handlebars->11->290", - "default.handlebars->35->1669", - "default.handlebars->35->1680", - "default.handlebars->35->1854", - "default.handlebars->35->1867", - "default.handlebars->35->2536", + "default.handlebars->35->1672", + "default.handlebars->35->1683", + "default.handlebars->35->1857", + "default.handlebars->35->1870", + "default.handlebars->35->2541", "default.handlebars->35->657", "default.handlebars->35->722", "default.handlebars->35->762" @@ -23978,8 +23991,8 @@ "sv": "Intel® AMT One Click Recovery", "zh-chs": "英特尔® AMT 一键恢复", "xloc": [ - "default.handlebars->35->952", - "default.handlebars->35->965" + "default.handlebars->35->953", + "default.handlebars->35->966" ] }, { @@ -24001,7 +24014,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->35->1705" + "default.handlebars->35->1708" ] }, { @@ -24015,12 +24028,12 @@ "sv": "Intel® AMT-strömdrift", "zh-chs": "英特尔® AMT 电源操作", "xloc": [ - "default-mobile.handlebars->11->331", - "default-mobile.handlebars->11->333", - "default-mobile.handlebars->11->335", - "default.handlebars->35->966", - "default.handlebars->35->968", - "default.handlebars->35->970" + "default-mobile.handlebars->11->332", + "default-mobile.handlebars->11->334", + "default-mobile.handlebars->11->336", + "default.handlebars->35->967", + "default.handlebars->35->969", + "default.handlebars->35->971" ] }, { @@ -24034,8 +24047,8 @@ "sv": "Intel® AMT Stäng av", "zh-chs": "英特尔® AMT 关机", "xloc": [ - "default-mobile.handlebars->11->327", - "default.handlebars->35->951" + "default-mobile.handlebars->11->328", + "default.handlebars->35->952" ] }, { @@ -24049,8 +24062,8 @@ "sv": "Intel® AMT Ström på", "zh-chs": "英特尔® AMT 开机", "xloc": [ - "default-mobile.handlebars->11->326", - "default.handlebars->35->950" + "default-mobile.handlebars->11->327", + "default.handlebars->35->951" ] }, { @@ -24072,8 +24085,8 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->35->2392", - "default.handlebars->35->2399", + "default.handlebars->35->2397", + "default.handlebars->35->2404", "player.handlebars->3->14" ] }, @@ -24088,8 +24101,8 @@ "sv": "Intel® AMT-återställning", "zh-chs": "英特尔® AMT 重置", "xloc": [ - "default-mobile.handlebars->11->325", - "default.handlebars->35->949" + "default-mobile.handlebars->11->326", + "default.handlebars->35->950" ] }, { @@ -24133,8 +24146,8 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->35->2391", - "default.handlebars->35->2398", + "default.handlebars->35->2396", + "default.handlebars->35->2403", "player.handlebars->3->13" ] }, @@ -24176,9 +24189,9 @@ "zh-chs": "英特尔®AMT已连接", "zh-cht": "Intel ®AMT已連接", "xloc": [ - "default-mobile.handlebars->11->304", - "default.handlebars->35->818", - "default.handlebars->35->819" + "default-mobile.handlebars->11->305", + "default.handlebars->35->819", + "default.handlebars->35->820" ] }, { @@ -24200,8 +24213,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->35->1565", - "default.handlebars->35->1850" + "default.handlebars->35->1568", + "default.handlebars->35->1853" ] }, { @@ -24223,10 +24236,10 @@ "zh-chs": "检测到英特尔®AMT", "zh-cht": "檢測到Intel® AMT", "xloc": [ - "default-mobile.handlebars->11->305", + "default-mobile.handlebars->11->306", "default.handlebars->35->209", - "default.handlebars->35->820", - "default.handlebars->35->821" + "default.handlebars->35->821", + "default.handlebars->35->822" ] }, { @@ -24404,9 +24417,9 @@ "zh-chs": "仅限英特尔®AMT,无代理", "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ - "default-mobile.handlebars->11->564", - "default.handlebars->35->1595", - "default.handlebars->35->1640" + "default-mobile.handlebars->11->567", + "default.handlebars->35->1598", + "default.handlebars->35->1643" ] }, { @@ -24491,8 +24504,8 @@ "zh-chs": "英特尔®主动管理技术(英特尔®AMT)", "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ - "default-mobile.handlebars->11->521", - "default.handlebars->35->1260" + "default-mobile.handlebars->11->524", + "default.handlebars->35->1263" ] }, { @@ -24751,7 +24764,7 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->35->1102" + "default.handlebars->35->1105" ] }, { @@ -24773,8 +24786,8 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->35->1838", - "default.handlebars->35->1845", + "default.handlebars->35->1841", + "default.handlebars->35->1848", "default.handlebars->35->435", "default.handlebars->35->449", "default.handlebars->35->465" @@ -24799,7 +24812,7 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->35->792" + "default.handlebars->35->793" ] }, { @@ -24821,7 +24834,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->35->1429" + "default.handlebars->35->1432" ] }, { @@ -24882,7 +24895,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->35->2470" + "default.handlebars->35->2475" ] }, { @@ -24904,7 +24917,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->35->2464" + "default.handlebars->35->2469" ] }, { @@ -24926,8 +24939,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->35->2117", - "default.handlebars->35->2119" + "default.handlebars->35->2122", + "default.handlebars->35->2124" ] }, { @@ -24949,7 +24962,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->35->2115" + "default.handlebars->35->2120" ] }, { @@ -24971,7 +24984,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->35->2462" + "default.handlebars->35->2467" ] }, { @@ -24991,7 +25004,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->35->2463" + "default.handlebars->35->2468" ] }, { @@ -25007,8 +25020,8 @@ "sv": "Ogiltigt SMS-meddelande", "zh-chs": "无效的短信", "xloc": [ - "default-mobile.handlebars->11->668", - "default.handlebars->35->2450" + "default-mobile.handlebars->11->671", + "default.handlebars->35->2455" ] }, { @@ -25048,8 +25061,8 @@ "sv": "Ogiltig domän", "zh-chs": "无效域", "xloc": [ - "default-mobile.handlebars->11->648", - "default.handlebars->35->2430" + "default-mobile.handlebars->11->651", + "default.handlebars->35->2435" ] }, { @@ -25076,8 +25089,8 @@ "sv": "Ogiltig e-postadress", "zh-chs": "不合规电邮", "xloc": [ - "default-mobile.handlebars->11->647", - "default.handlebars->35->2429" + "default-mobile.handlebars->11->650", + "default.handlebars->35->2434" ] }, { @@ -25162,9 +25175,9 @@ "sv": "Felaktigt lösenord", "zh-chs": "无效的密码", "xloc": [ - "default-mobile.handlebars->11->646", + "default-mobile.handlebars->11->649", "default-mobile.handlebars->11->78", - "default.handlebars->35->2428", + "default.handlebars->35->2433", "default.handlebars->35->265" ] }, @@ -25181,8 +25194,8 @@ "sv": "Ogiltiga webbplatsbehörigheter", "zh-chs": "网站权限无效", "xloc": [ - "default-mobile.handlebars->11->649", - "default.handlebars->35->2431" + "default-mobile.handlebars->11->652", + "default.handlebars->35->2436" ] }, { @@ -25221,7 +25234,7 @@ "sv": "Ogiltigt användarinloggningsförsök från {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的无效用户登录尝试", "xloc": [ - "default.handlebars->35->2030" + "default.handlebars->35->2033" ] }, { @@ -25237,8 +25250,8 @@ "sv": "Ogiltigt användarnamn", "zh-chs": "无效的用户名", "xloc": [ - "default-mobile.handlebars->11->645", - "default.handlebars->35->2427" + "default-mobile.handlebars->11->648", + "default.handlebars->35->2432" ] }, { @@ -25271,7 +25284,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->35->2093" + "default.handlebars->35->2098" ] }, { @@ -25356,7 +25369,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->35->1840" + "default.handlebars->35->1843" ] }, { @@ -25400,7 +25413,7 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->35->1690", + "default.handlebars->35->1693", "default.handlebars->35->371", "default.handlebars->35->451" ] @@ -25424,13 +25437,13 @@ "zh-chs": "邀请码", "zh-cht": "邀請碼", "xloc": [ - "default-mobile.handlebars->11->643", - "default.handlebars->35->1673", - "default.handlebars->35->1834", - "default.handlebars->35->1839", - "default.handlebars->35->1841", - "default.handlebars->35->1846", - "default.handlebars->35->2425" + "default-mobile.handlebars->11->646", + "default.handlebars->35->1676", + "default.handlebars->35->1837", + "default.handlebars->35->1842", + "default.handlebars->35->1844", + "default.handlebars->35->1849", + "default.handlebars->35->2430" ] }, { @@ -25474,7 +25487,7 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->35->1689", + "default.handlebars->35->1692", "default.handlebars->35->370" ] }, @@ -25519,7 +25532,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->35->1430" + "default.handlebars->35->1433" ] }, { @@ -25541,7 +25554,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->35->1431" + "default.handlebars->35->1434" ] }, { @@ -25563,7 +25576,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->35->1432" + "default.handlebars->35->1435" ] }, { @@ -25596,7 +25609,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->35->2053" + "default.handlebars->35->2058" ] }, { @@ -25618,8 +25631,8 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->35->2058", - "default.handlebars->35->2123", + "default.handlebars->35->2063", + "default.handlebars->35->2128", "default.handlebars->35->609" ] }, @@ -25642,7 +25655,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->35->1433" + "default.handlebars->35->1436" ] }, { @@ -25664,7 +25677,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->35->1924" + "default.handlebars->35->1927" ] }, { @@ -25686,7 +25699,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->35->1434" + "default.handlebars->35->1437" ] }, { @@ -25708,7 +25721,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->35->1435" + "default.handlebars->35->1438" ] }, { @@ -25730,7 +25743,7 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->35->1436" + "default.handlebars->35->1439" ] }, { @@ -25752,7 +25765,7 @@ "zh-chs": "保留现有密码", "zh-cht": "保留現有密碼", "xloc": [ - "default.handlebars->35->1706" + "default.handlebars->35->1709" ] }, { @@ -25774,7 +25787,7 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->35->1103" + "default.handlebars->35->1106" ] }, { @@ -25796,8 +25809,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->35->1327", - "default.handlebars->35->1330" + "default.handlebars->35->1330", + "default.handlebars->35->1333" ] }, { @@ -25832,7 +25845,7 @@ "zh-chs": "键盘快捷键自定义", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->35->1088" + "default.handlebars->35->1091" ] }, { @@ -25873,7 +25886,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->35->1437" + "default.handlebars->35->1440" ] }, { @@ -25895,7 +25908,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->35->1939" + "default.handlebars->35->1942" ] }, { @@ -25917,7 +25930,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->35->1438" + "default.handlebars->35->1441" ] }, { @@ -25939,7 +25952,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->35->1439" + "default.handlebars->35->1442" ] }, { @@ -25961,8 +25974,8 @@ "zh-chs": "已知的", "zh-cht": "已知的", "xloc": [ - "default-mobile.handlebars->11->520", - "default.handlebars->35->1259" + "default-mobile.handlebars->11->523", + "default.handlebars->35->1262" ] }, { @@ -25984,7 +25997,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->35->1440" + "default.handlebars->35->1443" ] }, { @@ -26006,7 +26019,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->35->1441" + "default.handlebars->35->1444" ] }, { @@ -26028,7 +26041,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->35->1442" + "default.handlebars->35->1445" ] }, { @@ -26050,8 +26063,8 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->35->1120", - "default.handlebars->35->1137", + "default.handlebars->35->1123", + "default.handlebars->35->1140", "sharing.handlebars->11->26", "sharing.handlebars->11->40" ] @@ -26075,7 +26088,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->35->1537" + "default.handlebars->35->1540" ] }, { @@ -26130,7 +26143,7 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->35->1062" + "default.handlebars->35->1065" ] }, { @@ -26363,7 +26376,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->35->2066" + "default.handlebars->35->2071" ] }, { @@ -26385,7 +26398,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->35->2274" + "default.handlebars->35->2279" ] }, { @@ -26407,15 +26420,15 @@ "zh-chs": "上次代理地址", "zh-cht": "上次代理地址", "xloc": [ - "default-mobile.handlebars->11->481", - "default-mobile.handlebars->11->482", - "default-mobile.handlebars->11->483", + "default-mobile.handlebars->11->484", + "default-mobile.handlebars->11->485", + "default-mobile.handlebars->11->486", "default.handlebars->35->114", "default.handlebars->35->116", "default.handlebars->35->118", - "default.handlebars->35->1210", - "default.handlebars->35->1211", - "default.handlebars->35->1212" + "default.handlebars->35->1213", + "default.handlebars->35->1214", + "default.handlebars->35->1215" ] }, { @@ -26437,11 +26450,11 @@ "zh-chs": "上次代理连接", "zh-cht": "上次代理連接", "xloc": [ - "default-mobile.handlebars->11->478", - "default-mobile.handlebars->11->480", + "default-mobile.handlebars->11->481", + "default-mobile.handlebars->11->483", "default.handlebars->35->113", - "default.handlebars->35->1207", - "default.handlebars->35->1209" + "default.handlebars->35->1210", + "default.handlebars->35->1212" ] }, { @@ -26463,7 +26476,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->35->2278" + "default.handlebars->35->2283" ] }, { @@ -26529,7 +26542,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->35->2076" + "default.handlebars->35->2081" ] }, { @@ -26551,7 +26564,7 @@ "zh-chs": "最后一次发现:", "zh-cht": "最後一次發現:", "xloc": [ - "default.handlebars->35->824", + "default.handlebars->35->825", "default.handlebars->35->83" ] }, @@ -26651,7 +26664,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->35->1443" + "default.handlebars->35->1446" ] }, { @@ -26673,7 +26686,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->35->1444" + "default.handlebars->35->1447" ] }, { @@ -26695,7 +26708,7 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->35->1007" + "default.handlebars->35->1008" ] }, { @@ -26736,7 +26749,7 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->35->808" + "default.handlebars->35->809" ] }, { @@ -26751,7 +26764,7 @@ "sv": "Starta webbaserad SSH-session till den här enheten", "zh-chs": "启动与此设备的基于 Web 的 SSH 会话", "xloc": [ - "default.handlebars->35->810" + "default.handlebars->35->811" ] }, { @@ -26766,7 +26779,7 @@ "sv": "Starta webbaserad VNC-session till den här enheten", "zh-chs": "启动与此设备的基于 Web 的 VNC 会话", "xloc": [ - "default.handlebars->35->806" + "default.handlebars->35->807" ] }, { @@ -26788,7 +26801,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->35->2322" + "default.handlebars->35->2327" ] }, { @@ -26803,8 +26816,8 @@ "sv": "Vänster", "zh-chs": "剩下", "xloc": [ - "default-mobile.handlebars->11->380", - "default.handlebars->35->1074" + "default-mobile.handlebars->11->383", + "default.handlebars->35->1077" ] }, { @@ -26853,7 +26866,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->35->1925" + "default.handlebars->35->1928" ] }, { @@ -26875,7 +26888,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->35->2558" + "default.handlebars->35->2563" ] }, { @@ -26913,8 +26926,8 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->35->861", - "default.handlebars->35->883" + "default.handlebars->35->862", + "default.handlebars->35->884" ] }, { @@ -26959,10 +26972,10 @@ "zh-chs": "有限输入", "zh-cht": "有限輸入", "xloc": [ - "default-mobile.handlebars->11->620", - "default.handlebars->35->1816", - "default.handlebars->35->853", - "default.handlebars->35->875" + "default-mobile.handlebars->11->623", + "default.handlebars->35->1819", + "default.handlebars->35->854", + "default.handlebars->35->876" ] }, { @@ -26984,8 +26997,8 @@ "zh-chs": "仅有限输入", "zh-cht": "僅有限輸入", "xloc": [ - "default-mobile.handlebars->11->593", - "default.handlebars->35->1771" + "default-mobile.handlebars->11->596", + "default.handlebars->35->1774" ] }, { @@ -27287,7 +27300,7 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->35->1015" + "default.handlebars->35->1016" ] }, { @@ -27309,7 +27322,7 @@ "zh-chs": "Linux ARM, Raspberry Pi (64位)", "zh-cht": "Linux ARM, Raspberry Pi (64位)", "xloc": [ - "default.handlebars->35->1016" + "default.handlebars->35->1017" ] }, { @@ -27467,7 +27480,7 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->35->1012" + "default.handlebars->35->1013" ] }, { @@ -27489,7 +27502,7 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->35->1011" + "default.handlebars->35->1012" ] }, { @@ -27512,7 +27525,7 @@ "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ "default.handlebars->35->576", - "default.handlebars->35->960" + "default.handlebars->35->961" ] }, { @@ -27587,7 +27600,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->35->1445" + "default.handlebars->35->1448" ] }, { @@ -27633,13 +27646,13 @@ "xloc": [ "default-mobile.handlebars->11->81", "default-mobile.handlebars->11->96", - "default.handlebars->35->1002", - "default.handlebars->35->1304", - "default.handlebars->35->1316", - "default.handlebars->35->1631", - "default.handlebars->35->1635", - "default.handlebars->35->2333", - "default.handlebars->35->2380" + "default.handlebars->35->1003", + "default.handlebars->35->1307", + "default.handlebars->35->1319", + "default.handlebars->35->1634", + "default.handlebars->35->1638", + "default.handlebars->35->2338", + "default.handlebars->35->2385" ] }, { @@ -27722,8 +27735,8 @@ "sv": "Lokala enheter, ingen agent", "zh-chs": "本地设备,无代理", "xloc": [ - "default.handlebars->35->1592", - "default.handlebars->35->1642" + "default.handlebars->35->1595", + "default.handlebars->35->1645" ] }, { @@ -27767,7 +27780,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->35->1947" + "default.handlebars->35->1950" ] }, { @@ -27789,7 +27802,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->35->1948" + "default.handlebars->35->1951" ] }, { @@ -27811,7 +27824,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->35->1540", + "default.handlebars->35->1543", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -27834,7 +27847,7 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->35->794" + "default.handlebars->35->795" ] }, { @@ -27878,7 +27891,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->35->2163" + "default.handlebars->35->2168" ] }, { @@ -27900,7 +27913,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->35->2166" + "default.handlebars->35->2171" ] }, { @@ -27915,7 +27928,7 @@ "sv": "Lås skrivbordet", "zh-chs": "锁定桌面", "xloc": [ - "default.handlebars->35->900" + "default.handlebars->35->901" ] }, { @@ -27937,7 +27950,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->35->2096" + "default.handlebars->35->2101" ] }, { @@ -27952,7 +27965,7 @@ "sv": "Låsa fjärranvändarens mus och tangentbord?", "zh-chs": "锁定远程用户的鼠标和键盘?", "xloc": [ - "default.handlebars->35->897" + "default.handlebars->35->898" ] }, { @@ -27982,7 +27995,7 @@ "sv": "Låsa användarens skrivbord?", "zh-chs": "锁定用户桌面?", "xloc": [ - "default.handlebars->35->901" + "default.handlebars->35->902" ] }, { @@ -28004,7 +28017,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->35->2077" + "default.handlebars->35->2082" ] }, { @@ -28027,7 +28040,7 @@ "zh-cht": "被鎖定賬戶", "xloc": [ "default-mobile.handlebars->11->77", - "default.handlebars->35->2250", + "default.handlebars->35->2255", "default.handlebars->35->264" ] }, @@ -28050,7 +28063,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->35->1973" + "default.handlebars->35->1976" ] }, { @@ -28072,7 +28085,7 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->35->779" + "default.handlebars->35->780" ] }, { @@ -28338,7 +28351,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->35->1446" + "default.handlebars->35->1449" ] }, { @@ -28360,12 +28373,12 @@ "zh-chs": "MAC层", "zh-cht": "MAC層", "xloc": [ - "default-mobile.handlebars->11->493", - "default-mobile.handlebars->11->495", - "default.handlebars->35->1222", - "default.handlebars->35->1224", - "default.handlebars->35->1232", - "default.handlebars->35->1234" + "default-mobile.handlebars->11->496", + "default-mobile.handlebars->11->498", + "default.handlebars->35->1225", + "default.handlebars->35->1227", + "default.handlebars->35->1235", + "default.handlebars->35->1237" ] }, { @@ -28410,9 +28423,9 @@ "zh-chs": "MAC:{0}", "zh-cht": "MAC:{0}", "xloc": [ - "default-mobile.handlebars->11->496", - "default.handlebars->35->1225", - "default.handlebars->35->1235" + "default-mobile.handlebars->11->499", + "default.handlebars->35->1228", + "default.handlebars->35->1238" ] }, { @@ -28434,9 +28447,9 @@ "zh-chs": "MAC:{0},网关:{1}", "zh-cht": "MAC:{0},網關:{1}", "xloc": [ - "default-mobile.handlebars->11->494", - "default.handlebars->35->1223", - "default.handlebars->35->1233" + "default-mobile.handlebars->11->497", + "default.handlebars->35->1226", + "default.handlebars->35->1236" ] }, { @@ -28541,11 +28554,11 @@ "xloc": [ "default-mobile.handlebars->11->239", "default-mobile.handlebars->11->292", - "default-mobile.handlebars->11->549", - "default-mobile.handlebars->11->551", + "default-mobile.handlebars->11->552", + "default-mobile.handlebars->11->554", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->35->1289", - "default.handlebars->35->1291", + "default.handlebars->35->1292", + "default.handlebars->35->1294", "default.handlebars->35->327", "default.handlebars->35->547", "default.handlebars->35->766", @@ -28593,7 +28606,7 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->35->813" + "default.handlebars->35->814" ] }, { @@ -28615,8 +28628,8 @@ "zh-chs": "MQTT通道已连接", "zh-cht": "MQTT通道已連接", "xloc": [ - "default-mobile.handlebars->11->306", - "default.handlebars->35->823" + "default-mobile.handlebars->11->307", + "default.handlebars->35->824" ] }, { @@ -28639,7 +28652,7 @@ "zh-cht": "MQTT已連接", "xloc": [ "default.handlebars->35->211", - "default.handlebars->35->822" + "default.handlebars->35->823" ] }, { @@ -28761,7 +28774,7 @@ "sv": "MacOS Installer", "zh-chs": "MacOS 安装程序", "xloc": [ - "default.handlebars->35->1005" + "default.handlebars->35->1006" ] }, { @@ -28790,7 +28803,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->35->2524" + "default.handlebars->35->2529" ] }, { @@ -28812,7 +28825,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->35->1448" + "default.handlebars->35->1451" ] }, { @@ -28834,7 +28847,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->35->1449" + "default.handlebars->35->1452" ] }, { @@ -28856,7 +28869,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->35->1450" + "default.handlebars->35->1453" ] }, { @@ -28872,7 +28885,7 @@ "zh-chs": "管理帐户图片", "xloc": [ "default-mobile.handlebars->11->82", - "default.handlebars->35->1305" + "default.handlebars->35->1308" ] }, { @@ -28917,10 +28930,10 @@ "zh-chs": "管理设备组计算机", "zh-cht": "管理裝置群電腦", "xloc": [ - "default-mobile.handlebars->11->590", - "default-mobile.handlebars->11->610", - "default.handlebars->35->1768", - "default.handlebars->35->1805" + "default-mobile.handlebars->11->593", + "default-mobile.handlebars->11->613", + "default.handlebars->35->1771", + "default.handlebars->35->1808" ] }, { @@ -28942,10 +28955,10 @@ "zh-chs": "管理设备组用户", "zh-cht": "管理裝置群用戶", "xloc": [ - "default-mobile.handlebars->11->589", - "default-mobile.handlebars->11->609", - "default.handlebars->35->1767", - "default.handlebars->35->1804" + "default-mobile.handlebars->11->592", + "default-mobile.handlebars->11->612", + "default.handlebars->35->1770", + "default.handlebars->35->1807" ] }, { @@ -28967,7 +28980,7 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->35->870" + "default.handlebars->35->871" ] }, { @@ -28989,7 +29002,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->35->2161" + "default.handlebars->35->2166" ] }, { @@ -29033,7 +29046,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->35->2160" + "default.handlebars->35->2165" ] }, { @@ -29055,8 +29068,8 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->35->2159", - "default.handlebars->35->869" + "default.handlebars->35->2164", + "default.handlebars->35->870" ] }, { @@ -29208,7 +29221,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->35->1594" + "default.handlebars->35->1597" ] }, { @@ -29230,8 +29243,8 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default-mobile.handlebars->11->565", - "default.handlebars->35->1641" + "default-mobile.handlebars->11->568", + "default.handlebars->35->1644" ] }, { @@ -29253,7 +29266,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->35->2082" + "default.handlebars->35->2087" ] }, { @@ -29313,7 +29326,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->35->1451" + "default.handlebars->35->1454" ] }, { @@ -29380,7 +29393,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->35->1452" + "default.handlebars->35->1455" ] }, { @@ -29402,7 +29415,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->35->2468" + "default.handlebars->35->2473" ] }, { @@ -29473,8 +29486,8 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->35->2509", - "default.handlebars->35->2514" + "default.handlebars->35->2514", + "default.handlebars->35->2519" ] }, { @@ -29496,9 +29509,9 @@ "zh-chs": "记忆体", "zh-cht": "記憶體", "xloc": [ - "default-mobile.handlebars->11->538", - "default.handlebars->35->1277", - "default.handlebars->35->2488", + "default-mobile.handlebars->11->541", + "default.handlebars->35->1280", + "default.handlebars->35->2493", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -29522,11 +29535,11 @@ "zh-cht": "Mesh Agent", "xloc": [ "default-mobile.handlebars->11->266", - "default-mobile.handlebars->11->303", - "default-mobile.handlebars->11->477", - "default-mobile.handlebars->11->485", - "default.handlebars->35->1206", - "default.handlebars->35->1214", + "default-mobile.handlebars->11->304", + "default-mobile.handlebars->11->480", + "default-mobile.handlebars->11->488", + "default.handlebars->35->1209", + "default.handlebars->35->1217", "default.handlebars->35->473", "default.handlebars->35->477", "default.handlebars->35->487", @@ -29556,8 +29569,8 @@ "zh-chs": "网格代理控制台", "zh-cht": "網格代理控制台", "xloc": [ - "default-mobile.handlebars->11->597", - "default.handlebars->35->1777" + "default-mobile.handlebars->11->600", + "default.handlebars->35->1780" ] }, { @@ -29693,8 +29706,8 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->35->1022", - "default.handlebars->35->1024" + "default.handlebars->35->1023", + "default.handlebars->35->1025" ] }, { @@ -29716,7 +29729,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->35->2526" + "default.handlebars->35->2531" ] }, { @@ -29738,7 +29751,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->35->2527" + "default.handlebars->35->2532" ] }, { @@ -29764,7 +29777,7 @@ "sv": "MeshCentral Agent för Android", "zh-chs": "适用于 Android 的 MeshCentral 代理", "xloc": [ - "default-mobile.handlebars->11->584" + "default-mobile.handlebars->11->587" ] }, { @@ -29868,7 +29881,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->35->1634" + "default.handlebars->35->1637" ] }, { @@ -29890,7 +29903,7 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->35->1008" + "default.handlebars->35->1009" ] }, { @@ -29960,7 +29973,7 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->35->1003" + "default.handlebars->35->1004" ] }, { @@ -30005,7 +30018,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->35->2525" + "default.handlebars->35->2530" ] }, { @@ -30051,7 +30064,7 @@ "xloc": [ "default.handlebars->35->160", "default.handlebars->35->162", - "default.handlebars->35->1630" + "default.handlebars->35->1633" ] }, { @@ -30073,9 +30086,9 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->35->1020", + "default.handlebars->35->1021", "default.handlebars->35->305", - "default.handlebars->35->796" + "default.handlebars->35->797" ] }, { @@ -30097,7 +30110,7 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->35->1032" + "default.handlebars->35->1033" ] }, { @@ -30119,7 +30132,7 @@ "zh-chs": "MeshCmd(Linux ARM,64位)", "zh-cht": "MeshCmd(Linux ARM,64位)", "xloc": [ - "default.handlebars->35->1033" + "default.handlebars->35->1034" ] }, { @@ -30141,7 +30154,7 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->35->1028" + "default.handlebars->35->1029" ] }, { @@ -30163,7 +30176,7 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->35->1029" + "default.handlebars->35->1030" ] }, { @@ -30185,7 +30198,7 @@ "zh-chs": "MeshCmd(Win32可执行档案)", "zh-cht": "MeshCmd(Win32可執行檔案)", "xloc": [ - "default.handlebars->35->1026" + "default.handlebars->35->1027" ] }, { @@ -30207,7 +30220,7 @@ "zh-chs": "MeshCmd(Win64可执行档案)", "zh-cht": "MeshCmd(Win64可執行檔案)", "xloc": [ - "default.handlebars->35->1027" + "default.handlebars->35->1028" ] }, { @@ -30248,7 +30261,7 @@ "zh-chs": "MeshCmd(macOS,ARM-64位)", "zh-cht": "MeshCmd(macOS,ARM-64位)", "xloc": [ - "default.handlebars->35->1031" + "default.handlebars->35->1032" ] }, { @@ -30270,7 +30283,7 @@ "zh-chs": "MeshCmd(macOS,x86-ARM-64位)", "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "xloc": [ - "default.handlebars->35->1030" + "default.handlebars->35->1031" ] }, { @@ -30292,7 +30305,7 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->35->1017" + "default.handlebars->35->1018" ] }, { @@ -30375,8 +30388,8 @@ "zh-cht": "訊息", "xloc": [ "default.handlebars->35->436", - "default.handlebars->35->781", - "default.handlebars->35->983" + "default.handlebars->35->782", + "default.handlebars->35->984" ] }, { @@ -30420,7 +30433,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->35->2523" + "default.handlebars->35->2528" ] }, { @@ -30478,7 +30491,7 @@ "sv": "budbärare", "zh-chs": "信使", "xloc": [ - "default.handlebars->35->2393" + "default.handlebars->35->2398" ] }, { @@ -30561,8 +30574,8 @@ "sv": "Mobilenhet", "zh-chs": "移动设备", "xloc": [ - "default-mobile.handlebars->11->491", - "default.handlebars->35->1220" + "default-mobile.handlebars->11->494", + "default.handlebars->35->1223" ] }, { @@ -30599,10 +30612,10 @@ "zh-chs": "模型", "zh-cht": "模型", "xloc": [ - "default-mobile.handlebars->11->486", - "default-mobile.handlebars->11->539", - "default.handlebars->35->1215", - "default.handlebars->35->1278" + "default-mobile.handlebars->11->489", + "default-mobile.handlebars->11->542", + "default.handlebars->35->1218", + "default.handlebars->35->1281" ] }, { @@ -30646,7 +30659,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->35->1453" + "default.handlebars->35->1456" ] }, { @@ -30668,7 +30681,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->35->2557" + "default.handlebars->35->2562" ] }, { @@ -30690,8 +30703,8 @@ "zh-chs": "母板", "zh-cht": "母板", "xloc": [ - "default-mobile.handlebars->11->532", - "default.handlebars->35->1271" + "default-mobile.handlebars->11->535", + "default.handlebars->35->1274" ] }, { @@ -30713,7 +30726,7 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->35->787" + "default.handlebars->35->788" ] }, { @@ -30757,7 +30770,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->35->1972" + "default.handlebars->35->1975" ] }, { @@ -30779,7 +30792,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->35->2005" + "default.handlebars->35->2008" ] }, { @@ -30816,8 +30829,8 @@ "sv": "Flera frågor", "zh-chs": "多个问题", "xloc": [ - "default.handlebars->35->1860", - "default.handlebars->35->1874" + "default.handlebars->35->1863", + "default.handlebars->35->1877" ] }, { @@ -30850,7 +30863,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->35->2411" + "default.handlebars->35->2416" ] }, { @@ -30873,7 +30886,7 @@ "zh-cht": "必須以用戶身份運行", "xloc": [ "default.handlebars->35->579", - "default.handlebars->35->963" + "default.handlebars->35->964" ] }, { @@ -31018,7 +31031,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->35->1284" + "default.handlebars->35->1287" ] }, { @@ -31196,8 +31209,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->35->1328", - "default.handlebars->35->1331" + "default.handlebars->35->1331", + "default.handlebars->35->1334" ] }, { @@ -31287,26 +31300,26 @@ "xloc": [ "default-mobile.handlebars->11->121", "default-mobile.handlebars->11->251", - "default-mobile.handlebars->11->456", - "default-mobile.handlebars->11->526", - "default-mobile.handlebars->11->566", - "default-mobile.handlebars->11->580", - "default.handlebars->35->1097", - "default.handlebars->35->1202", + "default-mobile.handlebars->11->459", + "default-mobile.handlebars->11->529", + "default-mobile.handlebars->11->569", + "default-mobile.handlebars->11->583", + "default.handlebars->35->1100", + "default.handlebars->35->1205", "default.handlebars->35->121", - "default.handlebars->35->1265", + "default.handlebars->35->1268", "default.handlebars->35->135", - "default.handlebars->35->1591", - "default.handlebars->35->1609", - "default.handlebars->35->1614", - "default.handlebars->35->1643", - "default.handlebars->35->1732", - "default.handlebars->35->2064", - "default.handlebars->35->2169", - "default.handlebars->35->2185", - "default.handlebars->35->2192", - "default.handlebars->35->2237", - "default.handlebars->35->2256", + "default.handlebars->35->1594", + "default.handlebars->35->1612", + "default.handlebars->35->1617", + "default.handlebars->35->1646", + "default.handlebars->35->1735", + "default.handlebars->35->2069", + "default.handlebars->35->2174", + "default.handlebars->35->2190", + "default.handlebars->35->2197", + "default.handlebars->35->2242", + "default.handlebars->35->2261", "default.handlebars->35->269", "default.handlebars->35->680", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", @@ -31355,7 +31368,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->35->2151" + "default.handlebars->35->2156" ] }, { @@ -31377,7 +31390,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->35->1454" + "default.handlebars->35->1457" ] }, { @@ -31399,7 +31412,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->35->1455" + "default.handlebars->35->1458" ] }, { @@ -31421,7 +31434,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->35->1456" + "default.handlebars->35->1459" ] }, { @@ -31443,7 +31456,7 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->35->1001" + "default.handlebars->35->1002" ] }, { @@ -31484,9 +31497,9 @@ "zh-chs": "网络", "zh-cht": "網路", "xloc": [ - "default-mobile.handlebars->11->505", - "default.handlebars->35->1230", - "default.handlebars->35->1244" + "default-mobile.handlebars->11->508", + "default.handlebars->35->1233", + "default.handlebars->35->1247" ] }, { @@ -31509,7 +31522,7 @@ "zh-cht": "新", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->35->1608", + "default.handlebars->35->1611", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -31532,7 +31545,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->35->2012" + "default.handlebars->35->2015" ] }, { @@ -31548,8 +31561,8 @@ "sv": "Nytt konto", "zh-chs": "新账户", "xloc": [ - "default-mobile.handlebars->11->638", - "default.handlebars->35->2420" + "default-mobile.handlebars->11->641", + "default.handlebars->35->2425" ] }, { @@ -31616,9 +31629,9 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->35->1584", - "default.handlebars->35->1597", - "default.handlebars->35->993" + "default.handlebars->35->1587", + "default.handlebars->35->1600", + "default.handlebars->35->994" ] }, { @@ -31641,9 +31654,9 @@ "zh-cht": "新建檔案夾", "xloc": [ "default-mobile.handlebars->11->144", - "default-mobile.handlebars->11->427", - "default.handlebars->35->1165", - "default.handlebars->35->1904", + "default-mobile.handlebars->11->430", + "default.handlebars->35->1168", + "default.handlebars->35->1907", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->11->59", @@ -31736,8 +31749,8 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->35->1710", - "default.handlebars->35->1711" + "default.handlebars->35->1713", + "default.handlebars->35->1714" ] }, { @@ -31761,8 +31774,8 @@ "xloc": [ "default-mobile.handlebars->11->110", "default-mobile.handlebars->11->111", - "default.handlebars->35->1579", - "default.handlebars->35->1580" + "default.handlebars->35->1582", + "default.handlebars->35->1583" ] }, { @@ -31811,8 +31824,8 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->35->852", - "default.handlebars->35->874" + "default.handlebars->35->853", + "default.handlebars->35->875" ] }, { @@ -31901,9 +31914,9 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->35->1812", - "default.handlebars->35->854", - "default.handlebars->35->876" + "default.handlebars->35->1815", + "default.handlebars->35->855", + "default.handlebars->35->877" ] }, { @@ -31925,7 +31938,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->35->1773" + "default.handlebars->35->1776" ] }, { @@ -31958,9 +31971,9 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->35->1200", - "default.handlebars->35->2040", - "default.handlebars->35->2379" + "default.handlebars->35->1203", + "default.handlebars->35->2045", + "default.handlebars->35->2384" ] }, { @@ -31982,8 +31995,8 @@ "zh-chs": "不能存取档案", "zh-cht": "不能存取檔案", "xloc": [ - "default-mobile.handlebars->11->595", - "default.handlebars->35->1775" + "default-mobile.handlebars->11->598", + "default.handlebars->35->1778" ] }, { @@ -32005,10 +32018,10 @@ "zh-chs": "没有档案", "zh-cht": "沒有檔案", "xloc": [ - "default-mobile.handlebars->11->618", - "default.handlebars->35->1814", - "default.handlebars->35->851", - "default.handlebars->35->873" + "default-mobile.handlebars->11->621", + "default.handlebars->35->1817", + "default.handlebars->35->852", + "default.handlebars->35->874" ] }, { @@ -32030,8 +32043,8 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->35->849", - "default.handlebars->35->871" + "default.handlebars->35->850", + "default.handlebars->35->872" ] }, { @@ -32053,10 +32066,10 @@ "zh-chs": "没有英特尔®AMT", "zh-cht": "沒有Intel® AMT", "xloc": [ - "default-mobile.handlebars->11->596", - "default-mobile.handlebars->11->619", - "default.handlebars->35->1776", - "default.handlebars->35->1815" + "default-mobile.handlebars->11->599", + "default-mobile.handlebars->11->622", + "default.handlebars->35->1779", + "default.handlebars->35->1818" ] }, { @@ -32156,7 +32169,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->35->2219" + "default.handlebars->35->2224" ] }, { @@ -32178,7 +32191,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->35->2164" + "default.handlebars->35->2169" ] }, { @@ -32200,8 +32213,8 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->35->1674", - "default.handlebars->35->1701" + "default.handlebars->35->1677", + "default.handlebars->35->1704" ] }, { @@ -32235,12 +32248,12 @@ "zh-cht": "沒有權利", "xloc": [ "default-mobile.handlebars->11->130", - "default-mobile.handlebars->11->575", - "default-mobile.handlebars->11->626", - "default.handlebars->35->1606", - "default.handlebars->35->1822", - "default.handlebars->35->866", - "default.handlebars->35->888" + "default-mobile.handlebars->11->578", + "default-mobile.handlebars->11->629", + "default.handlebars->35->1609", + "default.handlebars->35->1825", + "default.handlebars->35->867", + "default.handlebars->35->889" ] }, { @@ -32273,9 +32286,9 @@ "zh-chs": "没有TLS加密", "zh-cht": "沒有TLS加密", "xloc": [ - "default-mobile.handlebars->11->346", + "default-mobile.handlebars->11->347", "default.handlebars->35->391", - "default.handlebars->35->979" + "default.handlebars->35->980" ] }, { @@ -32297,10 +32310,10 @@ "zh-chs": "没有终端", "zh-cht": "沒有終端", "xloc": [ - "default-mobile.handlebars->11->617", - "default.handlebars->35->1813", - "default.handlebars->35->850", - "default.handlebars->35->872" + "default-mobile.handlebars->11->620", + "default.handlebars->35->1816", + "default.handlebars->35->851", + "default.handlebars->35->873" ] }, { @@ -32322,8 +32335,8 @@ "zh-chs": "不能访问终端", "zh-cht": "不能訪問終端", "xloc": [ - "default-mobile.handlebars->11->594", - "default.handlebars->35->1774" + "default-mobile.handlebars->11->597", + "default.handlebars->35->1777" ] }, { @@ -32345,7 +32358,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->35->2165" + "default.handlebars->35->2170" ] }, { @@ -32367,8 +32380,8 @@ "zh-chs": "该设备当前无可用操作。", "zh-cht": "該設備當前無可用操作。", "xloc": [ - "default-mobile.handlebars->11->329", - "default.handlebars->35->955" + "default-mobile.handlebars->11->330", + "default.handlebars->35->956" ] }, { @@ -32394,8 +32407,8 @@ "sv": "Ingen automatisk uppdatering", "zh-chs": "没有自动更新", "xloc": [ - "default.handlebars->35->1858", - "default.handlebars->35->1872" + "default.handlebars->35->1861", + "default.handlebars->35->1875" ] }, { @@ -32417,8 +32430,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->35->2225", - "default.handlebars->35->2349" + "default.handlebars->35->2230", + "default.handlebars->35->2354" ] }, { @@ -32550,8 +32563,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->35->2231", - "default.handlebars->35->2361" + "default.handlebars->35->2236", + "default.handlebars->35->2366" ] }, { @@ -32588,7 +32601,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->35->1876" + "default.handlebars->35->1879" ] }, { @@ -32678,7 +32691,7 @@ "zh-chs": "找不到文件", "zh-cht": "找不到文件", "xloc": [ - "default.handlebars->35->1142", + "default.handlebars->35->1145", "sharing.handlebars->11->45" ] }, @@ -32701,7 +32714,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->35->2168" + "default.handlebars->35->2173" ] }, { @@ -32723,8 +32736,8 @@ "zh-chs": "没有此设备的讯息。", "zh-cht": "沒有此裝置的訊息。", "xloc": [ - "default-mobile.handlebars->11->544", - "default.handlebars->35->1283" + "default-mobile.handlebars->11->547", + "default.handlebars->35->1286" ] }, { @@ -32746,8 +32759,8 @@ "sv": "Inga kortkommandon definierade", "zh-chs": "未定义键盘快捷键", "xloc": [ - "default-mobile.handlebars->11->394", - "default.handlebars->35->1089" + "default-mobile.handlebars->11->397", + "default.handlebars->35->1092" ] }, { @@ -32828,7 +32841,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->35->996" + "default.handlebars->35->997" ] }, { @@ -32844,8 +32857,8 @@ "sv": "Inget telefonnummer för den här användaren", "zh-chs": "此用户没有电话号码", "xloc": [ - "default-mobile.handlebars->11->669", - "default.handlebars->35->2451" + "default-mobile.handlebars->11->672", + "default.handlebars->35->2456" ] }, { @@ -32889,7 +32902,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->35->2381" + "default.handlebars->35->2386" ] }, { @@ -32922,7 +32935,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->35->2251" + "default.handlebars->35->2256" ] }, { @@ -32948,7 +32961,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->35->2355" + "default.handlebars->35->2360" ] }, { @@ -32964,8 +32977,8 @@ "sv": "Inga användarhanteringsrättigheter", "zh-chs": "无用户管理权限", "xloc": [ - "default-mobile.handlebars->11->667", - "default.handlebars->35->2449" + "default-mobile.handlebars->11->670", + "default.handlebars->35->2454" ] }, { @@ -32987,7 +33000,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->35->2072" + "default.handlebars->35->2077" ] }, { @@ -33009,7 +33022,7 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->35->832" + "default.handlebars->35->833" ] }, { @@ -33090,28 +33103,28 @@ "default-mobile.handlebars->11->254", "default-mobile.handlebars->11->256", "default-mobile.handlebars->11->294", - "default-mobile.handlebars->11->384", - "default-mobile.handlebars->11->424", - "default-mobile.handlebars->11->568", - "default.handlebars->35->1078", - "default.handlebars->35->1637", - "default.handlebars->35->1645", - "default.handlebars->35->1653", - "default.handlebars->35->1665", - "default.handlebars->35->1670", - "default.handlebars->35->1672", - "default.handlebars->35->1861", - "default.handlebars->35->1886", - "default.handlebars->35->1891", - "default.handlebars->35->2048", - "default.handlebars->35->2189", - "default.handlebars->35->2191", - "default.handlebars->35->2208", + "default-mobile.handlebars->11->387", + "default-mobile.handlebars->11->427", + "default-mobile.handlebars->11->571", + "default.handlebars->35->1081", + "default.handlebars->35->1640", + "default.handlebars->35->1648", + "default.handlebars->35->1656", + "default.handlebars->35->1668", + "default.handlebars->35->1673", + "default.handlebars->35->1675", + "default.handlebars->35->1864", + "default.handlebars->35->1889", + "default.handlebars->35->1894", + "default.handlebars->35->2053", + "default.handlebars->35->2194", + "default.handlebars->35->2196", + "default.handlebars->35->2213", "default.handlebars->35->222", - "default.handlebars->35->2270", - "default.handlebars->35->2279", - "default.handlebars->35->2283", - "default.handlebars->35->2295", + "default.handlebars->35->2275", + "default.handlebars->35->2284", + "default.handlebars->35->2288", + "default.handlebars->35->2300", "default.handlebars->35->241", "default.handlebars->35->314", "default.handlebars->35->315", @@ -33165,7 +33178,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->35->1457" + "default.handlebars->35->1460" ] }, { @@ -33187,7 +33200,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->35->1458" + "default.handlebars->35->1461" ] }, { @@ -33209,7 +33222,7 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->35->1459" + "default.handlebars->35->1462" ] }, { @@ -33231,7 +33244,7 @@ "zh-chs": "未激活", "zh-cht": "未激活", "xloc": [ - "default.handlebars->35->1247" + "default.handlebars->35->1250" ] }, { @@ -33254,7 +33267,7 @@ "zh-cht": "未啟動(輸入)", "xloc": [ "default-mobile.handlebars->11->268", - "default-mobile.handlebars->11->509", + "default-mobile.handlebars->11->512", "default.handlebars->35->701" ] }, @@ -33278,7 +33291,7 @@ "zh-cht": "未啟動(預)", "xloc": [ "default-mobile.handlebars->11->267", - "default-mobile.handlebars->11->508", + "default-mobile.handlebars->11->511", "default.handlebars->35->700" ] }, @@ -33301,8 +33314,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->35->1852", - "default.handlebars->35->1865" + "default.handlebars->35->1855", + "default.handlebars->35->1868" ] }, { @@ -33324,8 +33337,8 @@ "zh-chs": "未知", "zh-cht": "未知", "xloc": [ - "default-mobile.handlebars->11->519", - "default.handlebars->35->1258" + "default-mobile.handlebars->11->522", + "default.handlebars->35->1261" ] }, { @@ -33362,7 +33375,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->35->2403" + "default.handlebars->35->2408" ] }, { @@ -33384,8 +33397,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->35->2257", - "default.handlebars->35->2258" + "default.handlebars->35->2262", + "default.handlebars->35->2263" ] }, { @@ -33407,7 +33420,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->35->2329" + "default.handlebars->35->2334" ] }, { @@ -33429,13 +33442,13 @@ "zh-chs": "笔记", "zh-cht": "筆記", "xloc": [ - "default-mobile.handlebars->11->338", - "default.handlebars->35->1681", - "default.handlebars->35->2303", - "default.handlebars->35->777", - "default.handlebars->35->860", - "default.handlebars->35->882", - "default.handlebars->35->892" + "default-mobile.handlebars->11->339", + "default.handlebars->35->1684", + "default.handlebars->35->2308", + "default.handlebars->35->778", + "default.handlebars->35->861", + "default.handlebars->35->883", + "default.handlebars->35->893" ] }, { @@ -33479,8 +33492,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->35->1566", - "default.handlebars->35->1851", + "default.handlebars->35->1569", + "default.handlebars->35->1854", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -33515,7 +33528,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->35->1847" + "default.handlebars->35->1850" ] }, { @@ -33537,7 +33550,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->35->1561" + "default.handlebars->35->1564" ] }, { @@ -33559,7 +33572,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->35->1671" + "default.handlebars->35->1674" ] }, { @@ -33581,7 +33594,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->35->2309", + "default.handlebars->35->2314", "default.handlebars->35->238" ] }, @@ -33604,7 +33617,7 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->35->934" + "default.handlebars->35->935" ] }, { @@ -33626,9 +33639,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->35->1740", - "default.handlebars->35->1744", - "default.handlebars->35->1747" + "default.handlebars->35->1743", + "default.handlebars->35->1747", + "default.handlebars->35->1750" ] }, { @@ -33650,7 +33663,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->35->2111" + "default.handlebars->35->2116" ] }, { @@ -33665,7 +33678,7 @@ "sv": "Null", "zh-chs": "空值", "xloc": [ - "default.handlebars->35->2517" + "default.handlebars->35->2522" ] }, { @@ -33699,15 +33712,15 @@ "zh-cht": "OK", "xloc": [ "default-mobile.handlebars->11->107", - "default-mobile.handlebars->11->460", - "default-mobile.handlebars->11->464", - "default-mobile.handlebars->11->468", - "default-mobile.handlebars->11->474", + "default-mobile.handlebars->11->463", + "default-mobile.handlebars->11->467", + "default-mobile.handlebars->11->471", + "default-mobile.handlebars->11->477", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->35->1628", - "default.handlebars->35->1856", - "default.handlebars->35->1870", + "default.handlebars->35->1631", + "default.handlebars->35->1859", + "default.handlebars->35->1873", "default.handlebars->35->729", "default.handlebars->35->733", "default.handlebars->35->737", @@ -33780,7 +33793,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->35->1460" + "default.handlebars->35->1463" ] }, { @@ -33802,8 +33815,8 @@ "zh-chs": "发生在{0}", "zh-cht": "發生在{0}", "xloc": [ - "default-mobile.handlebars->11->635", - "default.handlebars->35->2417" + "default-mobile.handlebars->11->638", + "default.handlebars->35->2422" ] }, { @@ -33847,7 +33860,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->35->2069" + "default.handlebars->35->2074" ] }, { @@ -33892,7 +33905,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->11->109", - "default.handlebars->35->1578" + "default.handlebars->35->1581" ] }, { @@ -33914,7 +33927,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->35->2045" + "default.handlebars->35->2050" ] }, { @@ -33983,7 +33996,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->35->2068" + "default.handlebars->35->2073" ] }, { @@ -34005,8 +34018,8 @@ "zh-chs": "只能编辑小于200k的档案。", "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ - "default-mobile.handlebars->11->435", - "default.handlebars->35->1173", + "default-mobile.handlebars->11->438", + "default.handlebars->35->1176", "default.handlebars->35->648", "sharing.handlebars->11->67" ] @@ -34075,7 +34088,7 @@ "zh-chs": "在设备上打开页面", "zh-cht": "在裝置上打開頁面", "xloc": [ - "default.handlebars->35->893" + "default.handlebars->35->894" ] }, { @@ -34142,7 +34155,7 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->35->797" + "default.handlebars->35->798" ] }, { @@ -34186,7 +34199,7 @@ "zh-chs": "打开此计算机的聊天窗口", "zh-cht": "打開此電腦的聊天窗口", "xloc": [ - "default.handlebars->35->784", + "default.handlebars->35->785", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] }, @@ -34231,7 +34244,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->35->1940" + "default.handlebars->35->1943" ] }, { @@ -34253,9 +34266,9 @@ "zh-chs": "操作系统", "zh-cht": "操作系統", "xloc": [ - "default-mobile.handlebars->11->476", - "default.handlebars->35->1019", - "default.handlebars->35->1205", + "default-mobile.handlebars->11->479", + "default.handlebars->35->1020", + "default.handlebars->35->1208", "default.handlebars->35->276", "default.handlebars->35->419", "default.handlebars->35->460", @@ -34281,12 +34294,12 @@ "zh-chs": "运作", "zh-cht": "操作", "xloc": [ - "default-mobile.handlebars->11->328", - "default.handlebars->35->2095", - "default.handlebars->35->2176", + "default-mobile.handlebars->11->329", + "default.handlebars->35->2100", + "default.handlebars->35->2181", "default.handlebars->35->567", "default.handlebars->35->582", - "default.handlebars->35->954" + "default.handlebars->35->955" ] }, { @@ -34327,7 +34340,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->35->1461" + "default.handlebars->35->1464" ] }, { @@ -34349,7 +34362,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->35->1462" + "default.handlebars->35->1465" ] }, { @@ -34415,7 +34428,7 @@ "zh-chs": "过时的", "zh-cht": "過時的", "xloc": [ - "default-mobile.handlebars->11->473", + "default-mobile.handlebars->11->476", "default.handlebars->35->742" ] }, @@ -34497,7 +34510,7 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->35->1104" + "default.handlebars->35->1107" ] }, { @@ -34519,7 +34532,7 @@ "zh-chs": "PID", "zh-cht": "PID", "xloc": [ - "default.handlebars->35->1100", + "default.handlebars->35->1103", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -34534,8 +34547,8 @@ "sv": "SKJUTA PÅ", "zh-chs": "推", "xloc": [ - "default-mobile.handlebars->11->550", - "default.handlebars->35->1290" + "default-mobile.handlebars->11->553", + "default.handlebars->35->1293" ] }, { @@ -34550,8 +34563,8 @@ "sv": "Sida ned", "zh-chs": "向下翻页", "xloc": [ - "default-mobile.handlebars->11->379", - "default.handlebars->35->1073" + "default-mobile.handlebars->11->382", + "default.handlebars->35->1076" ] }, { @@ -34566,8 +34579,8 @@ "sv": "Sida upp", "zh-chs": "向上翻页", "xloc": [ - "default-mobile.handlebars->11->378", - "default.handlebars->35->1072" + "default-mobile.handlebars->11->381", + "default.handlebars->35->1075" ] }, { @@ -34596,8 +34609,8 @@ "zh-chs": "零件号", "zh-cht": "零件號", "xloc": [ - "default-mobile.handlebars->11->537", - "default.handlebars->35->1276" + "default-mobile.handlebars->11->540", + "default.handlebars->35->1279" ] }, { @@ -34619,7 +34632,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->35->2083" + "default.handlebars->35->2088" ] }, { @@ -34680,8 +34693,8 @@ "zh-cht": "部分權限", "xloc": [ "default-mobile.handlebars->11->128", - "default-mobile.handlebars->11->573", - "default.handlebars->35->1604" + "default-mobile.handlebars->11->576", + "default.handlebars->35->1607" ] }, { @@ -34703,7 +34716,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->35->2254" + "default.handlebars->35->2259" ] }, { @@ -34747,25 +34760,25 @@ "zh-chs": "密码", "zh-cht": "密碼", "xloc": [ - "default-mobile.handlebars->11->344", - "default-mobile.handlebars->11->403", - "default-mobile.handlebars->11->414", - "default.handlebars->35->1123", - "default.handlebars->35->1144", - "default.handlebars->35->1707", - "default.handlebars->35->2139", - "default.handlebars->35->2140", - "default.handlebars->35->2275", - "default.handlebars->35->2277", - "default.handlebars->35->2334", - "default.handlebars->35->2335", + "default-mobile.handlebars->11->345", + "default-mobile.handlebars->11->406", + "default-mobile.handlebars->11->417", + "default.handlebars->35->1126", + "default.handlebars->35->1147", + "default.handlebars->35->1710", + "default.handlebars->35->2144", + "default.handlebars->35->2145", + "default.handlebars->35->2280", + "default.handlebars->35->2282", + "default.handlebars->35->2339", + "default.handlebars->35->2340", "default.handlebars->35->273", "default.handlebars->35->389", - "default.handlebars->35->977", + "default.handlebars->35->978", "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", - "mstsc.handlebars->main->1->3->1->6->3", + "mstsc.handlebars->main->1->3->1->rowpassword->1->0", + "mstsc.handlebars->main->1->3->1->rowpassword->3", "ssh.handlebars->3->6" ] }, @@ -34886,8 +34899,8 @@ "sv": "Lösenordet ändrat.", "zh-chs": "密码已更改。", "xloc": [ - "default-mobile.handlebars->11->663", - "default.handlebars->35->2445" + "default-mobile.handlebars->11->666", + "default.handlebars->35->2450" ] }, { @@ -34932,7 +34945,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->35->2336" + "default.handlebars->35->2341" ] }, { @@ -34955,7 +34968,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->35->1581" + "default.handlebars->35->1584" ] }, { @@ -35042,8 +35055,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->104", "default-mobile.handlebars->11->105", - "default.handlebars->35->1573", - "default.handlebars->35->1574", + "default.handlebars->35->1576", + "default.handlebars->35->1577", "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", @@ -35080,12 +35093,12 @@ "zh-cht": "糊", "xloc": [ "default-mobile.handlebars->11->152", - "default-mobile.handlebars->11->440", + "default-mobile.handlebars->11->443", "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->35->1138", - "default.handlebars->35->1179", - "default.handlebars->35->1913", + "default.handlebars->35->1141", + "default.handlebars->35->1182", + "default.handlebars->35->1916", "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", @@ -35191,8 +35204,8 @@ "zh-chs": "执行代理指令", "zh-cht": "執行代理指令", "xloc": [ - "default-mobile.handlebars->11->553", - "default.handlebars->35->1293" + "default-mobile.handlebars->11->556", + "default.handlebars->35->1296" ] }, { @@ -35252,7 +35265,7 @@ "zh-chs": "执行英特尔®AMT激活和配置。", "zh-cht": "執行英特爾®AMT激活和配置。", "xloc": [ - "default.handlebars->35->1685", + "default.handlebars->35->1688", "default.handlebars->35->366" ] }, @@ -35343,8 +35356,8 @@ "sv": "Vill du stänga av Intel® AMT?", "zh-chs": "执行英特尔® AMT 关机?", "xloc": [ - "default-mobile.handlebars->11->334", - "default.handlebars->35->969" + "default-mobile.handlebars->11->335", + "default.handlebars->35->970" ] }, { @@ -35358,8 +35371,8 @@ "sv": "Gör Intel® AMT påslagen?", "zh-chs": "执行英特尔® AMT 电源?", "xloc": [ - "default-mobile.handlebars->11->332", - "default.handlebars->35->967" + "default-mobile.handlebars->11->333", + "default.handlebars->35->968" ] }, { @@ -35373,8 +35386,8 @@ "sv": "Utföra Intel® AMT-återställning?", "zh-chs": "执行英特尔® AMT 重置?", "xloc": [ - "default-mobile.handlebars->11->336", - "default.handlebars->35->971" + "default-mobile.handlebars->11->337", + "default.handlebars->35->972" ] }, { @@ -35441,7 +35454,7 @@ "zh-cht": "在裝置上執行電源操作", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->35->776", + "default.handlebars->35->777", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -35466,7 +35479,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->35->1945" + "default.handlebars->35->1948" ] }, { @@ -35482,8 +35495,8 @@ "sv": "Åtkomst nekad", "zh-chs": "没有权限", "xloc": [ - "default-mobile.handlebars->11->644", - "default.handlebars->35->2426" + "default-mobile.handlebars->11->647", + "default.handlebars->35->2431" ] }, { @@ -35505,9 +35518,9 @@ "zh-chs": "权限", "zh-cht": "權限", "xloc": [ - "default-mobile.handlebars->11->629", - "default.handlebars->35->1825", - "default.handlebars->35->2067" + "default-mobile.handlebars->11->632", + "default.handlebars->35->1828", + "default.handlebars->35->2072" ] }, { @@ -35529,7 +35542,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->35->1463" + "default.handlebars->35->1466" ] }, { @@ -35584,10 +35597,10 @@ "default-mobile.handlebars->11->74", "default-mobile.handlebars->11->89", "default-mobile.handlebars->11->91", - "default.handlebars->35->1308", "default.handlebars->35->1311", + "default.handlebars->35->1314", "default.handlebars->35->204", - "default.handlebars->35->2324" + "default.handlebars->35->2329" ] }, { @@ -35609,7 +35622,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->35->2269" + "default.handlebars->35->2274" ] }, { @@ -35632,8 +35645,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->11->90", - "default.handlebars->35->1310", - "default.handlebars->35->2323" + "default.handlebars->35->1313", + "default.handlebars->35->2328" ] }, { @@ -35808,7 +35821,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->11->100", - "default.handlebars->35->1568" + "default.handlebars->35->1571" ] }, { @@ -35831,7 +35844,7 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->35->254", - "default.handlebars->35->2554" + "default.handlebars->35->2559" ] }, { @@ -35989,7 +36002,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->35->1603" + "default.handlebars->35->1606" ] }, { @@ -36011,7 +36024,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->35->1464" + "default.handlebars->35->1467" ] }, { @@ -36077,7 +36090,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->35->1465" + "default.handlebars->35->1468" ] }, { @@ -36099,7 +36112,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->35->1466" + "default.handlebars->35->1469" ] }, { @@ -36166,7 +36179,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default-mobile.handlebars->11->342" + "default-mobile.handlebars->11->343" ] }, { @@ -36188,7 +36201,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->35->1863", + "default.handlebars->35->1866", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -36212,9 +36225,9 @@ "zh-cht": "關機", "xloc": [ "default-mobile.handlebars->11->219", - "default-mobile.handlebars->11->324", + "default-mobile.handlebars->11->325", "default.handlebars->35->6", - "default.handlebars->35->947" + "default.handlebars->35->948" ] }, { @@ -36283,7 +36296,7 @@ "zh-chs": "预激活", "zh-cht": "預激活", "xloc": [ - "default.handlebars->35->1248" + "default.handlebars->35->1251" ] }, { @@ -36330,7 +36343,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->35->2402" + "default.handlebars->35->2407" ] }, { @@ -36438,9 +36451,9 @@ "xloc": [ "default-mobile.handlebars->11->79", "default-mobile.handlebars->11->80", - "default.handlebars->35->1303", - "default.handlebars->35->2318", - "default.handlebars->35->2332", + "default.handlebars->35->1306", + "default.handlebars->35->2323", + "default.handlebars->35->2337", "default.handlebars->35->266" ] }, @@ -36456,8 +36469,8 @@ "sv": "Skärmdump", "zh-chs": "打印屏幕", "xloc": [ - "default-mobile.handlebars->11->373", - "default.handlebars->35->1067" + "default-mobile.handlebars->11->376", + "default.handlebars->35->1070" ] }, { @@ -36555,14 +36568,14 @@ "zh-chs": "进程控制", "zh-cht": "進程控制", "xloc": [ - "default.handlebars->35->1116" + "default.handlebars->35->1119" ] }, { "en": "Process Details, #{0}", "sv": "Processinformation, # {0}", "xloc": [ - "default.handlebars->35->1095" + "default.handlebars->35->1098" ] }, { @@ -36613,7 +36626,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->35->1937" + "default.handlebars->35->1940" ] }, { @@ -36657,7 +36670,7 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->35->933" + "default.handlebars->35->934" ] }, { @@ -36679,9 +36692,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->35->1741", - "default.handlebars->35->1745", - "default.handlebars->35->1748" + "default.handlebars->35->1744", + "default.handlebars->35->1748", + "default.handlebars->35->1751" ] }, { @@ -36703,7 +36716,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->35->2400", + "default.handlebars->35->2405", "player.handlebars->3->16" ] }, @@ -36745,8 +36758,8 @@ "zh-chs": "配置状态", "zh-cht": "配置狀態", "xloc": [ - "default-mobile.handlebars->11->513", - "default.handlebars->35->1252" + "default-mobile.handlebars->11->516", + "default.handlebars->35->1255" ] }, { @@ -36780,7 +36793,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->35->1898" + "default.handlebars->35->1901" ] }, { @@ -36813,7 +36826,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->35->1467" + "default.handlebars->35->1470" ] }, { @@ -36835,7 +36848,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->35->1468" + "default.handlebars->35->1471" ] }, { @@ -36857,7 +36870,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->35->1469" + "default.handlebars->35->1472" ] }, { @@ -36962,7 +36975,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->35->1470" + "default.handlebars->35->1473" ] }, { @@ -37043,8 +37056,12 @@ "zh-chs": "RDP", "zh-cht": "RDP", "xloc": [ + "default-mobile.handlebars->11->298", + "default-mobile.handlebars->11->300", "default.handlebars->35->329", - "default.handlebars->35->800" + "default.handlebars->35->772", + "default.handlebars->35->774", + "default.handlebars->35->801" ] }, { @@ -37188,7 +37205,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->35->2513" + "default.handlebars->35->2518" ] }, { @@ -37232,7 +37249,7 @@ "zh-chs": "随机密码", "zh-cht": "隨機密碼", "xloc": [ - "default.handlebars->35->1708" + "default.handlebars->35->1711" ] }, { @@ -37254,7 +37271,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->35->2141" + "default.handlebars->35->2146" ] }, { @@ -37317,9 +37334,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->35->2266", - "default.handlebars->35->2268", - "default.handlebars->35->2325" + "default.handlebars->35->2271", + "default.handlebars->35->2273", + "default.handlebars->35->2330" ] }, { @@ -37341,7 +37358,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->35->2150" + "default.handlebars->35->2155" ] }, { @@ -37363,8 +37380,8 @@ "zh-chs": "收到无效的网络数据", "zh-cht": "收到無效的網絡數據", "xloc": [ - "default-mobile.handlebars->11->365", - "default.handlebars->35->1047", + "default-mobile.handlebars->11->368", + "default.handlebars->35->1050", "sharing.handlebars->11->10", "sharing.handlebars->11->32" ] @@ -37388,7 +37405,7 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->35->1652" + "default.handlebars->35->1655" ] }, { @@ -37432,7 +37449,7 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->35->1751" + "default.handlebars->35->1754" ] }, { @@ -37454,7 +37471,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->35->2414" + "default.handlebars->35->2419" ] }, { @@ -37510,9 +37527,9 @@ "zh-cht": "遞迴刪除", "xloc": [ "default-mobile.handlebars->11->145", - "default-mobile.handlebars->11->428", - "default.handlebars->35->1166", - "default.handlebars->35->1905", + "default-mobile.handlebars->11->431", + "default.handlebars->35->1169", + "default.handlebars->35->1908", "sharing.handlebars->11->60" ] }, @@ -37634,7 +37651,7 @@ "zh-cht": "中繼", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->35->2495", + "default.handlebars->35->2500", "default.handlebars->35->325", "default.handlebars->35->545" ] @@ -37658,7 +37675,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->35->2480" + "default.handlebars->35->2485" ] }, { @@ -37691,7 +37708,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->35->2473" + "default.handlebars->35->2478" ] }, { @@ -37724,8 +37741,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->35->2479", - "default.handlebars->35->2507" + "default.handlebars->35->2484", + "default.handlebars->35->2512" ] }, { @@ -37759,10 +37776,11 @@ "sv": "Kom ihåg referenser", "zh-chs": "记住凭据", "xloc": [ - "default-mobile.handlebars->11->404", - "default-mobile.handlebars->11->415", - "default.handlebars->35->1124", - "default.handlebars->35->1145" + "default-mobile.handlebars->11->407", + "default-mobile.handlebars->11->418", + "default.handlebars->35->1127", + "default.handlebars->35->1148", + "mstsc.handlebars->main->1->3->1->rowremember->3->0" ] }, { @@ -37917,7 +37935,7 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->35->1093" + "default.handlebars->35->1096" ] }, { @@ -37939,8 +37957,8 @@ "zh-chs": "远程命令", "zh-cht": "遠程命令", "xloc": [ - "default-mobile.handlebars->11->604", - "default.handlebars->35->1784" + "default-mobile.handlebars->11->607", + "default.handlebars->35->1787" ] }, { @@ -37962,10 +37980,10 @@ "zh-chs": "遥控", "zh-cht": "遙控", "xloc": [ - "default-mobile.handlebars->11->591", - "default-mobile.handlebars->11->611", - "default.handlebars->35->1769", - "default.handlebars->35->1806" + "default-mobile.handlebars->11->594", + "default-mobile.handlebars->11->614", + "default.handlebars->35->1772", + "default.handlebars->35->1809" ] }, { @@ -38057,8 +38075,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->35->1951", - "default.handlebars->35->1957" + "default.handlebars->35->1954", + "default.handlebars->35->1960" ] }, { @@ -38080,7 +38098,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->35->1952" + "default.handlebars->35->1955" ] }, { @@ -38102,7 +38120,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->35->1958" + "default.handlebars->35->1961" ] }, { @@ -38124,9 +38142,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->35->1949", - "default.handlebars->35->1953", - "default.handlebars->35->1959" + "default.handlebars->35->1952", + "default.handlebars->35->1956", + "default.handlebars->35->1962" ] }, { @@ -38181,8 +38199,8 @@ "zh-chs": "远程桌面设置", "zh-cht": "遠程桌面設置", "xloc": [ - "default-mobile.handlebars->11->367", - "default.handlebars->35->1058", + "default-mobile.handlebars->11->370", + "default.handlebars->35->1061", "default.handlebars->35->361", "sharing.handlebars->11->20" ] @@ -38280,7 +38298,7 @@ "sv": "Fjärringångslås", "zh-chs": "远程输入锁定", "xloc": [ - "default.handlebars->35->896" + "default.handlebars->35->897" ] }, { @@ -38302,7 +38320,7 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->35->1091", + "default.handlebars->35->1094", "sharing.handlebars->11->22" ] }, @@ -38325,7 +38343,7 @@ "zh-chs": "远程网格用户", "zh-cht": "遠程網格用戶", "xloc": [ - "default-mobile.handlebars->11->632" + "default-mobile.handlebars->11->635" ] }, { @@ -38447,10 +38465,10 @@ "zh-chs": "仅远程查看", "zh-cht": "僅遠程查看", "xloc": [ - "default-mobile.handlebars->11->592", - "default-mobile.handlebars->11->616", - "default.handlebars->35->1770", - "default.handlebars->35->1811" + "default-mobile.handlebars->11->595", + "default-mobile.handlebars->11->619", + "default.handlebars->35->1773", + "default.handlebars->35->1814" ] }, { @@ -38472,7 +38490,7 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->35->1092" + "default.handlebars->35->1095" ] }, { @@ -38592,7 +38610,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->35->1624" + "default.handlebars->35->1627" ] }, { @@ -38652,8 +38670,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->35->2235", - "default.handlebars->35->2377" + "default.handlebars->35->2240", + "default.handlebars->35->2382" ] }, { @@ -38675,8 +38693,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->35->2233", - "default.handlebars->35->2364" + "default.handlebars->35->2238", + "default.handlebars->35->2369" ] }, { @@ -38698,7 +38716,7 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->35->2362" + "default.handlebars->35->2367" ] }, { @@ -38713,7 +38731,7 @@ "sv": "Ta bort inloggningstoken", "zh-chs": "删除登录令牌", "xloc": [ - "default.handlebars->35->1616" + "default.handlebars->35->1619" ] }, { @@ -38754,7 +38772,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->35->2373" + "default.handlebars->35->2378" ] }, { @@ -38776,8 +38794,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->35->1830", - "default.handlebars->35->2369" + "default.handlebars->35->1833", + "default.handlebars->35->2374" ] }, { @@ -38799,7 +38817,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->35->2243" + "default.handlebars->35->2248" ] }, { @@ -38821,8 +38839,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->35->1828", - "default.handlebars->35->2366" + "default.handlebars->35->1831", + "default.handlebars->35->2371" ] }, { @@ -38844,7 +38862,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->35->2339" + "default.handlebars->35->2344" ] }, { @@ -38866,7 +38884,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->35->2142" + "default.handlebars->35->2147" ] }, { @@ -38888,7 +38906,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->35->1749" + "default.handlebars->35->1752" ] }, { @@ -38910,7 +38928,7 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->35->835" + "default.handlebars->35->836" ] }, { @@ -38925,7 +38943,7 @@ "sv": "Ta bort inloggningstoken", "zh-chs": "删除登录令牌", "xloc": [ - "default.handlebars->35->1611" + "default.handlebars->35->1614" ] }, { @@ -38970,7 +38988,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->11->88", - "default.handlebars->35->1307" + "default.handlebars->35->1310" ] }, { @@ -39014,7 +39032,7 @@ "zh-chs": "删除此设备", "zh-cht": "刪除此裝置", "xloc": [ - "default.handlebars->35->789" + "default.handlebars->35->790" ] }, { @@ -39036,7 +39054,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->35->2313" + "default.handlebars->35->2318" ] }, { @@ -39058,7 +39076,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->35->2353" + "default.handlebars->35->2358" ] }, { @@ -39080,7 +39098,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->35->2229" + "default.handlebars->35->2234" ] }, { @@ -39102,8 +39120,8 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->35->2223", - "default.handlebars->35->828" + "default.handlebars->35->2228", + "default.handlebars->35->829" ] }, { @@ -39125,11 +39143,11 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->35->1694", - "default.handlebars->35->2217", - "default.handlebars->35->2347", - "default.handlebars->35->2359", - "default.handlebars->35->829" + "default.handlebars->35->1697", + "default.handlebars->35->2222", + "default.handlebars->35->2352", + "default.handlebars->35->2364", + "default.handlebars->35->830" ] }, { @@ -39162,7 +39180,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->35->2011" + "default.handlebars->35->2014" ] }, { @@ -39184,7 +39202,7 @@ "zh-chs": "删除的设备共享{0}", "zh-cht": "刪除的設備共享{0}", "xloc": [ - "default.handlebars->35->2022" + "default.handlebars->35->2025" ] }, { @@ -39206,7 +39224,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->35->2007" + "default.handlebars->35->2010" ] }, { @@ -39221,7 +39239,7 @@ "sv": "Borttagen inloggningstoken", "zh-chs": "删除了登录令牌", "xloc": [ - "default.handlebars->35->2036" + "default.handlebars->35->2039" ] }, { @@ -39243,7 +39261,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->35->2017" + "default.handlebars->35->2020" ] }, { @@ -39257,7 +39275,7 @@ "sv": "Borttagen autentiseringsenhet för push-meddelanden", "zh-chs": "删除了推送通知身份验证设备", "xloc": [ - "default.handlebars->35->2034" + "default.handlebars->35->2037" ] }, { @@ -39279,7 +39297,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->35->2014" + "default.handlebars->35->2017" ] }, { @@ -39301,9 +39319,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->35->1980", - "default.handlebars->35->2001", - "default.handlebars->35->2006" + "default.handlebars->35->1983", + "default.handlebars->35->2004", + "default.handlebars->35->2009" ] }, { @@ -39325,7 +39343,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->35->1990" + "default.handlebars->35->1993" ] }, { @@ -39347,7 +39365,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->35->2003" + "default.handlebars->35->2006" ] }, { @@ -39369,8 +39387,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->35->1982", - "default.handlebars->35->1992" + "default.handlebars->35->1985", + "default.handlebars->35->1995" ] }, { @@ -39393,11 +39411,11 @@ "zh-cht": "改名", "xloc": [ "default-mobile.handlebars->11->149", - "default-mobile.handlebars->11->432", + "default-mobile.handlebars->11->435", "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->35->1170", - "default.handlebars->35->1909", + "default.handlebars->35->1173", + "default.handlebars->35->1912", "default.handlebars->35->646", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -39436,7 +39454,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->35->1968" + "default.handlebars->35->1971" ] }, { @@ -39458,7 +39476,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->35->2046" + "default.handlebars->35->2051" ] }, { @@ -39480,7 +39498,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->35->2041" + "default.handlebars->35->2046" ] }, { @@ -39539,7 +39557,7 @@ "en": "Requesting details...", "sv": "Begär detaljer ...", "xloc": [ - "default.handlebars->35->1096" + "default.handlebars->35->1099" ] }, { @@ -39561,7 +39579,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->35->1582" + "default.handlebars->35->1585" ] }, { @@ -39584,8 +39602,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->35->2147", - "default.handlebars->35->2337" + "default.handlebars->35->2152", + "default.handlebars->35->2342" ] }, { @@ -39607,7 +39625,7 @@ "zh-chs": "需要安装MeshCentral路由器", "zh-cht": "需要安裝MeshCentral路由器", "xloc": [ - "default.handlebars->35->799" + "default.handlebars->35->800" ] }, { @@ -39629,9 +39647,9 @@ "zh-chs": "需要安装MeshCentral Router。", "zh-cht": "需要安裝MeshCentral Router。", "xloc": [ - "default.handlebars->35->801", - "default.handlebars->35->803", - "default.handlebars->35->805" + "default.handlebars->35->802", + "default.handlebars->35->804", + "default.handlebars->35->806" ] }, { @@ -39677,8 +39695,8 @@ "zh-chs": "重设", "zh-cht": "重設", "xloc": [ - "default-mobile.handlebars->11->323", - "default.handlebars->35->946", + "default-mobile.handlebars->11->324", + "default.handlebars->35->947", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -39701,8 +39719,8 @@ "zh-chs": "重置/关闭电源", "zh-cht": "重置/關閉電源", "xloc": [ - "default-mobile.handlebars->11->605", - "default.handlebars->35->1785" + "default-mobile.handlebars->11->608", + "default.handlebars->35->1788" ] }, { @@ -39840,10 +39858,10 @@ "zh-chs": "重置/关闭", "zh-cht": "重置/關閉", "xloc": [ - "default-mobile.handlebars->11->625", - "default.handlebars->35->1821", - "default.handlebars->35->865", - "default.handlebars->35->887" + "default-mobile.handlebars->11->628", + "default.handlebars->35->1824", + "default.handlebars->35->866", + "default.handlebars->35->888" ] }, { @@ -39865,7 +39883,7 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->35->1110", + "default.handlebars->35->1113", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -39888,7 +39906,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->35->1629" + "default.handlebars->35->1632" ] }, { @@ -39932,7 +39950,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->35->1626" + "default.handlebars->35->1629" ] }, { @@ -39957,7 +39975,7 @@ "default-mobile.handlebars->11->265", "default.handlebars->35->207", "default.handlebars->35->698", - "default.handlebars->35->815" + "default.handlebars->35->816" ] }, { @@ -39979,7 +39997,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->35->2255" + "default.handlebars->35->2260" ] }, { @@ -40001,7 +40019,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->35->1471" + "default.handlebars->35->1474" ] }, { @@ -40016,8 +40034,8 @@ "sv": "Rätt", "zh-chs": "正确的", "xloc": [ - "default-mobile.handlebars->11->382", - "default.handlebars->35->1076" + "default-mobile.handlebars->11->385", + "default.handlebars->35->1079" ] }, { @@ -40039,7 +40057,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->35->1472" + "default.handlebars->35->1475" ] }, { @@ -40061,7 +40079,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->35->1473" + "default.handlebars->35->1476" ] }, { @@ -40084,9 +40102,9 @@ "zh-cht": "根", "xloc": [ "default-mobile.handlebars->11->131", - "default-mobile.handlebars->11->421", - "default.handlebars->35->1154", - "default.handlebars->35->1877", + "default-mobile.handlebars->11->424", + "default.handlebars->35->1157", + "default.handlebars->35->1880", "sharing.handlebars->11->49" ] }, @@ -40261,8 +40279,8 @@ "zh-cht": "運行命令", "xloc": [ "default.handlebars->35->580", - "default.handlebars->35->944", - "default.handlebars->35->964" + "default.handlebars->35->945", + "default.handlebars->35->965" ] }, { @@ -40284,7 +40302,7 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->35->1006" + "default.handlebars->35->1007" ] }, { @@ -40307,7 +40325,7 @@ "zh-cht": "以代理身份運行", "xloc": [ "default.handlebars->35->577", - "default.handlebars->35->961" + "default.handlebars->35->962" ] }, { @@ -40330,7 +40348,7 @@ "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "xloc": [ "default.handlebars->35->578", - "default.handlebars->35->962" + "default.handlebars->35->963" ] }, { @@ -40375,7 +40393,7 @@ "zh-cht": "在所選裝置上運行命令。", "xloc": [ "default.handlebars->35->573", - "default.handlebars->35->957" + "default.handlebars->35->958" ] }, { @@ -40416,7 +40434,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->35->1944" + "default.handlebars->35->1947" ] }, { @@ -40438,7 +40456,7 @@ "zh-chs": "以用户身份运行命令", "zh-cht": "以用戶身份運行命令", "xloc": [ - "default.handlebars->35->2019" + "default.handlebars->35->2022" ] }, { @@ -40460,7 +40478,7 @@ "zh-chs": "如果可能,以用户身份运行命令", "zh-cht": "如果可能,以用戶身份運行命令", "xloc": [ - "default.handlebars->35->2020" + "default.handlebars->35->2023" ] }, { @@ -40482,7 +40500,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->35->1474" + "default.handlebars->35->1477" ] }, { @@ -40504,7 +40522,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->35->1475" + "default.handlebars->35->1478" ] }, { @@ -40548,7 +40566,7 @@ "zh-chs": "SCP", "xloc": [ "default.handlebars->35->331", - "default.handlebars->35->804" + "default.handlebars->35->805" ] }, { @@ -40570,8 +40588,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->35->2300", "default.handlebars->35->2305", + "default.handlebars->35->2310", "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", @@ -40598,7 +40616,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->35->2321" + "default.handlebars->35->2326" ] }, { @@ -40614,8 +40632,8 @@ "sv": "SMS-fel", "zh-chs": "短信错误", "xloc": [ - "default-mobile.handlebars->11->671", - "default.handlebars->35->2453" + "default-mobile.handlebars->11->674", + "default.handlebars->35->2458" ] }, { @@ -40631,8 +40649,8 @@ "sv": "SMS-fel: {0}", "zh-chs": "短信错误:{0}", "xloc": [ - "default-mobile.handlebars->11->672", - "default.handlebars->35->2454" + "default-mobile.handlebars->11->675", + "default.handlebars->35->2459" ] }, { @@ -40648,8 +40666,8 @@ "sv": "SMS-gateway inte aktiverad", "zh-chs": "短信网关未启用", "xloc": [ - "default-mobile.handlebars->11->666", - "default.handlebars->35->2448" + "default-mobile.handlebars->11->669", + "default.handlebars->35->2453" ] }, { @@ -40700,8 +40718,8 @@ "sv": "SMS framgångsrikt skickat.", "zh-chs": "短信发送成功。", "xloc": [ - "default-mobile.handlebars->11->670", - "default.handlebars->35->2452" + "default-mobile.handlebars->11->673", + "default.handlebars->35->2457" ] }, { @@ -40722,12 +40740,12 @@ "tr": "SSH", "zh-chs": "SSH", "xloc": [ - "default-mobile.handlebars->11->298", - "default-mobile.handlebars->11->300", + "default-mobile.handlebars->11->297", + "default-mobile.handlebars->11->299", "default.handlebars->35->330", - "default.handlebars->35->772", - "default.handlebars->35->774", - "default.handlebars->35->802" + "default.handlebars->35->771", + "default.handlebars->35->773", + "default.handlebars->35->803" ] }, { @@ -40742,7 +40760,7 @@ "sv": "SSH-anslutning", "zh-chs": "SSH 连接", "xloc": [ - "default-mobile.handlebars->11->400", + "default-mobile.handlebars->11->403", "default.handlebars->35->643" ] }, @@ -40758,10 +40776,10 @@ "sv": "SSH-port {0}", "zh-chs": "SSH 端口 {0}", "xloc": [ - "default-mobile.handlebars->11->398", - "default-mobile.handlebars->11->426", - "default.handlebars->35->1118", - "default.handlebars->35->1164" + "default-mobile.handlebars->11->401", + "default-mobile.handlebars->11->429", + "default.handlebars->35->1121", + "default.handlebars->35->1167" ] }, { @@ -40787,7 +40805,7 @@ "sv": "Port för SSH-fjärranslutning:", "zh-chs": "SSH远程连接端口:", "xloc": [ - "default-mobile.handlebars->11->399", + "default-mobile.handlebars->11->402", "default.handlebars->35->642" ] }, @@ -40833,7 +40851,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->35->1476" + "default.handlebars->35->1479" ] }, { @@ -40897,7 +40915,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->35->1477" + "default.handlebars->35->1480" ] }, { @@ -40919,7 +40937,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->35->1478" + "default.handlebars->35->1481" ] }, { @@ -40941,7 +40959,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->35->1479" + "default.handlebars->35->1482" ] }, { @@ -41184,7 +41202,7 @@ "zh-chs": "屏幕", "zh-cht": "屏幕", "xloc": [ - "default-mobile.handlebars->11->396" + "default-mobile.handlebars->11->399" ] }, { @@ -41206,7 +41224,7 @@ "zh-chs": "屏幕选择", "zh-cht": "屏幕選擇", "xloc": [ - "default-mobile.handlebars->11->397" + "default-mobile.handlebars->11->400" ] }, { @@ -41250,7 +41268,7 @@ "zh-chs": "搜寻", "zh-cht": "搜尋", "xloc": [ - "default.handlebars->35->1158", + "default.handlebars->35->1161", "default.handlebars->35->666", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "sharing.handlebars->11->53" @@ -41346,8 +41364,8 @@ "zh-chs": "已使用TLS保安", "zh-cht": "已使用TLS保安", "xloc": [ - "default-mobile.handlebars->11->516", - "default.handlebars->35->1255" + "default-mobile.handlebars->11->519", + "default.handlebars->35->1258" ] }, { @@ -41369,13 +41387,13 @@ "zh-chs": "安全", "zh-cht": "安全", "xloc": [ - "default-mobile.handlebars->11->345", - "default-mobile.handlebars->11->515", - "default.handlebars->35->1254", - "default.handlebars->35->1875", - "default.handlebars->35->2301", + "default-mobile.handlebars->11->346", + "default-mobile.handlebars->11->518", + "default.handlebars->35->1257", + "default.handlebars->35->1878", + "default.handlebars->35->2306", "default.handlebars->35->390", - "default.handlebars->35->978", + "default.handlebars->35->979", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] }, @@ -41398,7 +41416,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->35->2298" + "default.handlebars->35->2303" ] }, { @@ -41414,8 +41432,8 @@ "sv": "Säkerhetsvarning", "zh-chs": "安全警告", "xloc": [ - "default-mobile.handlebars->11->640", - "default.handlebars->35->2422" + "default-mobile.handlebars->11->643", + "default.handlebars->35->2427" ] }, { @@ -41470,11 +41488,11 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->35->1161", - "default.handlebars->35->1163", - "default.handlebars->35->1901", - "default.handlebars->35->2091", - "default.handlebars->35->2174", + "default.handlebars->35->1164", + "default.handlebars->35->1166", + "default.handlebars->35->1904", + "default.handlebars->35->2096", + "default.handlebars->35->2179", "default.handlebars->35->550", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -41506,10 +41524,10 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->35->1162", - "default.handlebars->35->1900", - "default.handlebars->35->2090", - "default.handlebars->35->2173", + "default.handlebars->35->1165", + "default.handlebars->35->1903", + "default.handlebars->35->2095", + "default.handlebars->35->2178", "default.handlebars->35->549", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" @@ -41526,7 +41544,7 @@ "sv": "Välj en enhet för att registrera dig för autentisering av push-meddelanden. När du väl har valt kommer enheten att be om bekräftelse.", "zh-chs": "选择要注册推送通知身份验证的设备。选择后,设备将提示确认。", "xloc": [ - "default.handlebars->35->1323" + "default.handlebars->35->1326" ] }, { @@ -41548,7 +41566,7 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->35->992" + "default.handlebars->35->993" ] }, { @@ -41570,7 +41588,7 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->35->991" + "default.handlebars->35->992" ] }, { @@ -41636,8 +41654,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->35->2094", - "default.handlebars->35->2175" + "default.handlebars->35->2099", + "default.handlebars->35->2180" ] }, { @@ -41659,8 +41677,8 @@ "zh-chs": "选择要在此设备上执行的操作。", "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ - "default-mobile.handlebars->11->314", - "default.handlebars->35->936" + "default-mobile.handlebars->11->315", + "default.handlebars->35->937" ] }, { @@ -41682,7 +41700,7 @@ "zh-chs": "选择新密码", "zh-cht": "選擇新密碼", "xloc": [ - "default.handlebars->35->1709" + "default.handlebars->35->1712" ] }, { @@ -41727,8 +41745,8 @@ "zh-chs": "仅自我事件", "zh-cht": "僅自我事件", "xloc": [ - "default-mobile.handlebars->11->621", - "default.handlebars->35->1817" + "default-mobile.handlebars->11->624", + "default.handlebars->35->1820" ] }, { @@ -41787,7 +41805,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->35->2105" + "default.handlebars->35->2110" ] }, { @@ -41810,7 +41828,7 @@ "zh-cht": "發送MQTT消息", "xloc": [ "default.handlebars->35->551", - "default.handlebars->35->948" + "default.handlebars->35->949" ] }, { @@ -41832,7 +41850,7 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->35->984" + "default.handlebars->35->985" ] }, { @@ -41854,7 +41872,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->35->2103" + "default.handlebars->35->2108" ] }, { @@ -41876,7 +41894,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->35->2306" + "default.handlebars->35->2311" ] }, { @@ -41898,7 +41916,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->35->2308" + "default.handlebars->35->2313" ] }, { @@ -41920,7 +41938,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->35->2214" + "default.handlebars->35->2219" ] }, { @@ -41942,7 +41960,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->35->2106" + "default.handlebars->35->2111" ] }, { @@ -41964,7 +41982,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->35->2086" + "default.handlebars->35->2091" ] }, { @@ -42008,7 +42026,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->35->2146" + "default.handlebars->35->2151" ] }, { @@ -42143,7 +42161,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->35->2310" + "default.handlebars->35->2315" ] }, { @@ -42194,7 +42212,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->35->1482" + "default.handlebars->35->1485" ] }, { @@ -42216,8 +42234,8 @@ "zh-chs": "序列号", "zh-cht": "序列號", "xloc": [ - "default-mobile.handlebars->11->527", - "default.handlebars->35->1266" + "default-mobile.handlebars->11->530", + "default.handlebars->35->1269" ] }, { @@ -42250,7 +42268,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->35->2156" + "default.handlebars->35->2161" ] }, { @@ -42272,7 +42290,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->35->2528" + "default.handlebars->35->2533" ] }, { @@ -42309,7 +42327,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->35->2529" + "default.handlebars->35->2534" ] }, { @@ -42331,13 +42349,13 @@ "zh-chs": "服务器档案", "zh-cht": "伺服器檔案", "xloc": [ - "default-mobile.handlebars->11->598", - "default-mobile.handlebars->11->613", - "default.handlebars->35->1778", - "default.handlebars->35->1808", - "default.handlebars->35->2153", - "default.handlebars->35->858", - "default.handlebars->35->880" + "default-mobile.handlebars->11->601", + "default-mobile.handlebars->11->616", + "default.handlebars->35->1781", + "default.handlebars->35->1811", + "default.handlebars->35->2158", + "default.handlebars->35->859", + "default.handlebars->35->881" ] }, { @@ -42374,8 +42392,8 @@ "sv": "Servergräns", "zh-chs": "服务器限制", "xloc": [ - "default-mobile.handlebars->11->639", - "default.handlebars->35->2421" + "default-mobile.handlebars->11->642", + "default.handlebars->35->2426" ] }, { @@ -42412,8 +42430,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->35->2078", - "default.handlebars->35->2167" + "default.handlebars->35->2083", + "default.handlebars->35->2172" ] }, { @@ -42435,7 +42453,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->35->2272" + "default.handlebars->35->2277" ] }, { @@ -42457,7 +42475,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->35->2157" + "default.handlebars->35->2162" ] }, { @@ -42479,7 +42497,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->35->2271" + "default.handlebars->35->2276" ] }, { @@ -42501,7 +42519,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->35->2459" + "default.handlebars->35->2464" ] }, { @@ -42545,7 +42563,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->35->2541" + "default.handlebars->35->2546" ] }, { @@ -42560,7 +42578,7 @@ "sv": "Serverspårningshändelse", "zh-chs": "服务器跟踪事件", "xloc": [ - "default.handlebars->35->2520" + "default.handlebars->35->2525" ] }, { @@ -42627,7 +42645,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->35->2158" + "default.handlebars->35->2163" ] }, { @@ -42832,7 +42850,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->35->2519" + "default.handlebars->35->2524" ] }, { @@ -42854,7 +42872,7 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->35->1111" + "default.handlebars->35->1114" ] }, { @@ -42898,7 +42916,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->35->2382", + "default.handlebars->35->2387", "ssh.handlebars->3->10" ] }, @@ -42928,7 +42946,7 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->35->1055", + "default.handlebars->35->1058", "sharing.handlebars->11->18" ] }, @@ -42944,10 +42962,10 @@ "sv": "Sessionen löpte", "zh-chs": "会话已过期", "xloc": [ - "default-mobile.handlebars->11->407", - "default-mobile.handlebars->11->419", - "default.handlebars->35->1128", - "default.handlebars->35->1149" + "default-mobile.handlebars->11->410", + "default-mobile.handlebars->11->422", + "default.handlebars->35->1131", + "default.handlebars->35->1152" ] }, { @@ -43002,10 +43020,10 @@ "sv": "Sessionen har gått ut", "zh-chs": "会话超时", "xloc": [ - "default-mobile.handlebars->11->408", - "default-mobile.handlebars->11->420", - "default.handlebars->35->1129", - "default.handlebars->35->1150" + "default-mobile.handlebars->11->411", + "default-mobile.handlebars->11->423", + "default.handlebars->35->1132", + "default.handlebars->35->1153" ] }, { @@ -43121,7 +43139,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->35->1942" + "default.handlebars->35->1945" ] }, { @@ -43212,7 +43230,7 @@ "zh-cht": "設定", "xloc": [ "agent-translations.json", - "default.handlebars->35->1686", + "default.handlebars->35->1689", "default.handlebars->35->367" ] }, @@ -43273,7 +43291,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->35->1617" + "default.handlebars->35->1620" ] }, { @@ -43324,7 +43342,7 @@ "zh-chs": "共享", "zh-cht": "共享", "xloc": [ - "default.handlebars->35->785" + "default.handlebars->35->786" ] }, { @@ -43347,7 +43365,7 @@ "zh-cht": "共享裝置", "xloc": [ "default.handlebars->35->251", - "default.handlebars->35->935" + "default.handlebars->35->936" ] }, { @@ -43391,7 +43409,7 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->35->1105" + "default.handlebars->35->1108" ] }, { @@ -43452,10 +43470,10 @@ "sv": "Flytta", "zh-chs": "转移", "xloc": [ - "default-mobile.handlebars->11->385", - "default-mobile.handlebars->11->389", - "default.handlebars->35->1079", - "default.handlebars->35->1083" + "default-mobile.handlebars->11->388", + "default-mobile.handlebars->11->392", + "default.handlebars->35->1082", + "default.handlebars->35->1086" ] }, { @@ -43688,8 +43706,8 @@ "zh-chs": "只显示自己的事件", "zh-cht": "只顯示自己的事件", "xloc": [ - "default-mobile.handlebars->11->601", - "default.handlebars->35->1781" + "default-mobile.handlebars->11->604", + "default.handlebars->35->1784" ] }, { @@ -43722,7 +43740,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->35->1742" + "default.handlebars->35->1745" ] }, { @@ -43766,7 +43784,7 @@ "zh-chs": "显示设备位置信息", "zh-cht": "顯示裝置位置訊息", "xloc": [ - "default.handlebars->35->793" + "default.handlebars->35->794" ] }, { @@ -43788,7 +43806,7 @@ "zh-chs": "显示设备网络接口信息", "zh-cht": "顯示裝置網絡介面訊息", "xloc": [ - "default.handlebars->35->791" + "default.handlebars->35->792" ] }, { @@ -43832,8 +43850,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->35->2109", - "default.handlebars->35->2132" + "default.handlebars->35->2114", + "default.handlebars->35->2137" ] }, { @@ -43855,8 +43873,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->35->2108", - "default.handlebars->35->2131" + "default.handlebars->35->2113", + "default.handlebars->35->2136" ] }, { @@ -43878,8 +43896,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->35->2110", - "default.handlebars->35->2133" + "default.handlebars->35->2115", + "default.handlebars->35->2138" ] }, { @@ -43901,8 +43919,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->35->2107", - "default.handlebars->35->2130" + "default.handlebars->35->2112", + "default.handlebars->35->2135" ] }, { @@ -44125,8 +44143,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->35->1677", - "default.handlebars->35->1699" + "default.handlebars->35->1680", + "default.handlebars->35->1702" ] }, { @@ -44148,8 +44166,8 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->35->1675", - "default.handlebars->35->1703" + "default.handlebars->35->1678", + "default.handlebars->35->1706" ] }, { @@ -44171,7 +44189,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->35->1480" + "default.handlebars->35->1483" ] }, { @@ -44193,7 +44211,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->35->1481" + "default.handlebars->35->1484" ] }, { @@ -44250,8 +44268,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->35->2385", - "default.handlebars->35->2406", + "default.handlebars->35->2390", + "default.handlebars->35->2411", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -44274,7 +44292,7 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->35->1191", + "default.handlebars->35->1194", "sharing.handlebars->11->85" ] }, @@ -44297,7 +44315,7 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->35->1192", + "default.handlebars->35->1195", "sharing.handlebars->11->86" ] }, @@ -44320,7 +44338,7 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->35->1193", + "default.handlebars->35->1196", "sharing.handlebars->11->87" ] }, @@ -44343,7 +44361,7 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->35->1194", + "default.handlebars->35->1197", "sharing.handlebars->11->88" ] }, @@ -44369,11 +44387,11 @@ "default-mobile.handlebars->11->215", "default-mobile.handlebars->11->216", "default-mobile.handlebars->11->217", - "default-mobile.handlebars->11->322", + "default-mobile.handlebars->11->323", "default.handlebars->35->2", "default.handlebars->35->3", "default.handlebars->35->4", - "default.handlebars->35->945" + "default.handlebars->35->946" ] }, { @@ -44442,7 +44460,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->35->1483" + "default.handlebars->35->1486" ] }, { @@ -44464,7 +44482,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->35->1484" + "default.handlebars->35->1487" ] }, { @@ -44533,7 +44551,7 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->35->1061" + "default.handlebars->35->1064" ] }, { @@ -44555,8 +44573,8 @@ "zh-chs": "软断开代理", "zh-cht": "軟斷開代理", "xloc": [ - "default-mobile.handlebars->11->560", - "default.handlebars->35->1300" + "default-mobile.handlebars->11->563", + "default.handlebars->35->1303" ] }, { @@ -44623,7 +44641,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->35->1485" + "default.handlebars->35->1488" ] }, { @@ -44645,7 +44663,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->35->1486" + "default.handlebars->35->1489" ] }, { @@ -44835,7 +44853,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->35->1487" + "default.handlebars->35->1490" ] }, { @@ -44857,7 +44875,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->35->1488" + "default.handlebars->35->1491" ] }, { @@ -44879,7 +44897,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->35->1489" + "default.handlebars->35->1492" ] }, { @@ -44901,7 +44919,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->35->1490" + "default.handlebars->35->1493" ] }, { @@ -44923,7 +44941,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->35->1491" + "default.handlebars->35->1494" ] }, { @@ -44945,7 +44963,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->35->1492" + "default.handlebars->35->1495" ] }, { @@ -44967,7 +44985,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->35->1493" + "default.handlebars->35->1496" ] }, { @@ -44989,7 +45007,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->35->1494" + "default.handlebars->35->1497" ] }, { @@ -45011,7 +45029,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->35->1495" + "default.handlebars->35->1498" ] }, { @@ -45033,7 +45051,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->35->1496" + "default.handlebars->35->1499" ] }, { @@ -45055,7 +45073,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->35->1497" + "default.handlebars->35->1500" ] }, { @@ -45077,7 +45095,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->35->1498" + "default.handlebars->35->1501" ] }, { @@ -45099,7 +45117,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->35->1499" + "default.handlebars->35->1502" ] }, { @@ -45121,7 +45139,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->35->1500" + "default.handlebars->35->1503" ] }, { @@ -45143,7 +45161,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->35->1501" + "default.handlebars->35->1504" ] }, { @@ -45165,7 +45183,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->35->1502" + "default.handlebars->35->1505" ] }, { @@ -45187,7 +45205,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->35->1503" + "default.handlebars->35->1506" ] }, { @@ -45209,7 +45227,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->35->1504" + "default.handlebars->35->1507" ] }, { @@ -45231,7 +45249,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->35->1505" + "default.handlebars->35->1508" ] }, { @@ -45253,7 +45271,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->35->1506" + "default.handlebars->35->1509" ] }, { @@ -45275,7 +45293,7 @@ "zh-chs": "特殊键", "zh-cht": "特殊鍵", "xloc": [ - "default-mobile.handlebars->11->395" + "default-mobile.handlebars->11->398" ] }, { @@ -45341,7 +45359,7 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->35->1108" + "default.handlebars->35->1111" ] }, { @@ -45382,10 +45400,10 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->35->1052", + "default.handlebars->35->1055", "default.handlebars->35->236", - "default.handlebars->35->2383", - "default.handlebars->35->2408", + "default.handlebars->35->2388", + "default.handlebars->35->2413", "default.handlebars->35->92", "sharing.handlebars->11->14" ] @@ -45425,7 +45443,7 @@ "sv": "Börja chatt?", "zh-chs": "开始聊天会话?", "xloc": [ - "default-mobile.handlebars->11->340" + "default-mobile.handlebars->11->341" ] }, { @@ -45447,7 +45465,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->35->1926" + "default.handlebars->35->1929" ] }, { @@ -45469,7 +45487,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->35->1935" + "default.handlebars->35->1938" ] }, { @@ -45491,7 +45509,13 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->35->1936" + "default.handlebars->35->1939" + ] + }, + { + "en": "Started local relay session \\\"{0}\\\", protocol {1} to {2}", + "xloc": [ + "default.handlebars->35->2043" ] }, { @@ -45513,7 +45537,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->35->1933" + "default.handlebars->35->1936" ] }, { @@ -45535,7 +45559,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->35->1955" + "default.handlebars->35->1958" ] }, { @@ -45557,7 +45581,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->35->1956" + "default.handlebars->35->1959" ] }, { @@ -45579,7 +45603,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->35->1962" + "default.handlebars->35->1965" ] }, { @@ -45601,7 +45625,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->35->1963" + "default.handlebars->35->1966" ] }, { @@ -45623,7 +45647,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->35->1934" + "default.handlebars->35->1937" ] }, { @@ -45645,7 +45669,7 @@ "zh-chs": "现在开始", "zh-cht": "現在開始", "xloc": [ - "default.handlebars->35->928" + "default.handlebars->35->929" ] }, { @@ -45667,7 +45691,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->35->1950" + "default.handlebars->35->1953" ] }, { @@ -45689,7 +45713,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->35->1960" + "default.handlebars->35->1963" ] }, { @@ -45722,7 +45746,7 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->35->1099", + "default.handlebars->35->1102", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -45778,8 +45802,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->35->2328", - "default.handlebars->35->2401", + "default.handlebars->35->2333", + "default.handlebars->35->2406", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -45802,7 +45826,7 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->35->1109" + "default.handlebars->35->1112" ] }, { @@ -45824,13 +45848,13 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->35->1094" + "default.handlebars->35->1097" ] }, { "en": "Stop process #{0} \\\"{1}\\\"?", "xloc": [ - "default.handlebars->35->1117" + "default.handlebars->35->1120" ] }, { @@ -45893,8 +45917,8 @@ "zh-chs": "储存", "zh-cht": "儲存", "xloc": [ - "default-mobile.handlebars->11->543", - "default.handlebars->35->1282" + "default-mobile.handlebars->11->546", + "default.handlebars->35->1285" ] }, { @@ -45938,7 +45962,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->35->1881" + "default.handlebars->35->1884" ] }, { @@ -45960,7 +45984,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->35->1600" + "default.handlebars->35->1603" ] }, { @@ -46009,7 +46033,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->35->2104" + "default.handlebars->35->2109" ] }, { @@ -46119,7 +46143,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->35->1507" + "default.handlebars->35->1510" ] }, { @@ -46141,7 +46165,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->35->1508" + "default.handlebars->35->1511" ] }, { @@ -46186,7 +46210,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->35->1509" + "default.handlebars->35->1512" ] }, { @@ -46208,7 +46232,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->35->1510" + "default.handlebars->35->1513" ] }, { @@ -46230,7 +46254,7 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->35->1511" + "default.handlebars->35->1514" ] }, { @@ -46252,7 +46276,7 @@ "zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。", "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "xloc": [ - "default.handlebars->35->1691" + "default.handlebars->35->1694" ] }, { @@ -46274,7 +46298,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->35->1750" + "default.handlebars->35->1753" ] }, { @@ -46505,8 +46529,8 @@ "zh-chs": "未设置TLS", "zh-cht": "未設置TLS", "xloc": [ - "default-mobile.handlebars->11->517", - "default.handlebars->35->1256" + "default-mobile.handlebars->11->520", + "default.handlebars->35->1259" ] }, { @@ -46528,9 +46552,9 @@ "zh-chs": "需要TLS加密", "zh-cht": "需要TLS加密", "xloc": [ - "default-mobile.handlebars->11->347", + "default-mobile.handlebars->11->348", "default.handlebars->35->392", - "default.handlebars->35->980" + "default.handlebars->35->981" ] }, { @@ -46552,9 +46576,9 @@ "zh-chs": "标签", "zh-cht": "標籤", "xloc": [ - "default-mobile.handlebars->11->370", + "default-mobile.handlebars->11->373", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->35->1064" + "default.handlebars->35->1067" ] }, { @@ -46576,7 +46600,7 @@ "zh-chs": "标签1,标签2,标签3", "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->35->1041", + "default.handlebars->35->1044", "default.handlebars->35->587" ] }, @@ -46623,8 +46647,8 @@ "xloc": [ "default-mobile.handlebars->11->295", "default-mobile.handlebars->11->296", - "default-mobile.handlebars->11->358", - "default.handlebars->35->1040", + "default-mobile.handlebars->11->361", + "default.handlebars->35->1043", "default.handlebars->35->586", "default.handlebars->35->769", "default.handlebars->35->770", @@ -46665,7 +46689,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->35->1512" + "default.handlebars->35->1515" ] }, { @@ -46687,7 +46711,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->35->1513" + "default.handlebars->35->1516" ] }, { @@ -46709,7 +46733,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->35->1514" + "default.handlebars->35->1517" ] }, { @@ -46732,14 +46756,14 @@ "zh-cht": "終端機", "xloc": [ "default-mobile.handlebars->11->200", - "default-mobile.handlebars->11->310", - "default.handlebars->35->1743", - "default.handlebars->35->2395", - "default.handlebars->35->2496", + "default-mobile.handlebars->11->311", + "default.handlebars->35->1746", + "default.handlebars->35->2400", + "default.handlebars->35->2501", "default.handlebars->35->341", "default.handlebars->35->656", - "default.handlebars->35->836", - "default.handlebars->35->905", + "default.handlebars->35->837", + "default.handlebars->35->906", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal", "sharing.handlebars->LeftSideToolBar" @@ -46757,8 +46781,8 @@ "sv": "Terminal + filer", "zh-chs": "终端 + 文件", "xloc": [ - "default.handlebars->35->840", - "default.handlebars->35->908" + "default.handlebars->35->841", + "default.handlebars->35->909" ] }, { @@ -46802,9 +46826,9 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->35->1660", - "default.handlebars->35->2203", - "default.handlebars->35->2290", + "default.handlebars->35->1663", + "default.handlebars->35->2208", + "default.handlebars->35->2295", "default.handlebars->35->750" ] }, @@ -46827,9 +46851,9 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->35->1659", - "default.handlebars->35->2202", - "default.handlebars->35->2289", + "default.handlebars->35->1662", + "default.handlebars->35->2207", + "default.handlebars->35->2294", "default.handlebars->35->749" ] }, @@ -46844,7 +46868,7 @@ "sv": "Terminal session", "zh-chs": "终端会话", "xloc": [ - "default.handlebars->35->2388" + "default.handlebars->35->2393" ] }, { @@ -46963,7 +46987,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->35->1515" + "default.handlebars->35->1518" ] }, { @@ -47116,8 +47140,8 @@ "zh-chs": "目前没有任何通知", "zh-cht": "目前沒有任何通知", "xloc": [ - "default-mobile.handlebars->11->634", - "default.handlebars->35->2416" + "default-mobile.handlebars->11->637", + "default.handlebars->35->2421" ] }, { @@ -47133,8 +47157,8 @@ "sv": "Det har gjorts {0} misslyckade inloggningsförsök på det här kontot sedan den senaste inloggningen.", "zh-chs": "自上次登录以来,此帐户已有 {0} 次登录尝试失败。", "xloc": [ - "default-mobile.handlebars->11->655", - "default.handlebars->35->2437" + "default-mobile.handlebars->11->658", + "default.handlebars->35->2442" ] }, { @@ -47212,7 +47236,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->35->1585" + "default.handlebars->35->1588" ] }, { @@ -47221,7 +47245,7 @@ "nl": "Deze agent heeft een verouderd certificaat validatiemechanisme, overweeg om te updaten.", "sv": "Den här agenten har en föråldrad mekanism för validering av certifikat. Överväg att uppdatera.", "xloc": [ - "default.handlebars->35->2038" + "default.handlebars->35->2041" ] }, { @@ -47230,7 +47254,7 @@ "nl": "Deze agent gebruikt onveilige tunnels, overweeg om te updaten.", "sv": "Den här agenten använder osäkra tunnlar, överväga att uppdatera.", "xloc": [ - "default.handlebars->35->2039" + "default.handlebars->35->2042" ] }, { @@ -47302,7 +47326,7 @@ "nl": "Dit is een oude agent versie, overweeg om te updaten.", "sv": "Detta är en gammal agentversion, överväga att uppdatera.", "xloc": [ - "default.handlebars->35->2037" + "default.handlebars->35->2040" ] }, { @@ -47343,7 +47367,7 @@ "zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。", "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "xloc": [ - "default.handlebars->35->1728" + "default.handlebars->35->1731" ] }, { @@ -47388,7 +47412,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->35->1725" + "default.handlebars->35->1728" ] }, { @@ -47490,7 +47514,7 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->35->890" + "default.handlebars->35->891" ] }, { @@ -47531,7 +47555,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->35->987" + "default.handlebars->35->988" ] }, { @@ -47553,7 +47577,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->35->988" + "default.handlebars->35->989" ] }, { @@ -47575,7 +47599,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->35->1516" + "default.handlebars->35->1519" ] }, { @@ -47597,8 +47621,8 @@ "zh-chs": "时间", "zh-cht": "時間", "xloc": [ - "default-mobile.handlebars->11->317", - "default.handlebars->35->939", + "default-mobile.handlebars->11->318", + "default.handlebars->35->940", "player.handlebars->3->1" ] }, @@ -47621,7 +47645,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->35->931" + "default.handlebars->35->932" ] }, { @@ -47643,7 +47667,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->35->2043" + "default.handlebars->35->2048" ] }, { @@ -47665,7 +47689,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->35->929" + "default.handlebars->35->930" ] }, { @@ -47687,8 +47711,8 @@ "zh-chs": "超时", "zh-cht": "超時", "xloc": [ - "default-mobile.handlebars->11->364", - "default.handlebars->35->1046", + "default-mobile.handlebars->11->367", + "default.handlebars->35->1049", "sharing.handlebars->11->31", "sharing.handlebars->11->9" ] @@ -47870,7 +47894,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->35->1572" + "default.handlebars->35->1575" ] }, { @@ -48361,7 +48385,7 @@ "sv": "Token Namn", "zh-chs": "代币名称", "xloc": [ - "default.handlebars->35->1558" + "default.handlebars->35->1561" ] }, { @@ -48447,7 +48471,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->35->982" + "default.handlebars->35->983" ] }, { @@ -48520,7 +48544,7 @@ "zh-chs": "用于通过此服务器连接到设备的流量路由器", "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "xloc": [ - "default.handlebars->35->795" + "default.handlebars->35->796" ] }, { @@ -48613,7 +48637,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->35->1517" + "default.handlebars->35->1520" ] }, { @@ -48635,7 +48659,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->35->1518" + "default.handlebars->35->1521" ] }, { @@ -48668,7 +48692,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->35->1519" + "default.handlebars->35->1522" ] }, { @@ -48690,7 +48714,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->35->1520" + "default.handlebars->35->1523" ] }, { @@ -48746,13 +48770,13 @@ "zh-cht": "類型", "xloc": [ "default-mobile.handlebars->11->122", - "default-mobile.handlebars->11->569", - "default.handlebars->35->1106", - "default.handlebars->35->1593", - "default.handlebars->35->1646", - "default.handlebars->35->1700", + "default-mobile.handlebars->11->572", + "default.handlebars->35->1109", + "default.handlebars->35->1596", + "default.handlebars->35->1649", + "default.handlebars->35->1703", "default.handlebars->35->378", - "default.handlebars->35->911", + "default.handlebars->35->912", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "sharing.handlebars->p11->deskarea0->deskarea4->3" ] @@ -48776,7 +48800,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->35->1329" + "default.handlebars->35->1332" ] }, { @@ -48798,7 +48822,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->35->1326" + "default.handlebars->35->1329" ] }, { @@ -48865,7 +48889,7 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->35->1130", + "default.handlebars->35->1133", "sharing.handlebars->11->33" ] }, @@ -48888,7 +48912,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->35->1521" + "default.handlebars->35->1524" ] }, { @@ -48994,7 +49018,7 @@ "zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。", "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->35->1587", + "default.handlebars->35->1590", "default.handlebars->35->672" ] }, @@ -49017,8 +49041,8 @@ "zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->35->1589", - "default.handlebars->35->2547", + "default.handlebars->35->1592", + "default.handlebars->35->2552", "default.handlebars->35->674" ] }, @@ -49035,8 +49059,8 @@ "sv": "Det går inte att lägga till användare i det här läget", "zh-chs": "无法在此模式下添加用户", "xloc": [ - "default-mobile.handlebars->11->651", - "default.handlebars->35->2433" + "default-mobile.handlebars->11->654", + "default.handlebars->35->2438" ] }, { @@ -49071,7 +49095,7 @@ "nl": "Kan weergave niet vastleggen", "sv": "Det gick inte att fånga skärmen", "xloc": [ - "default.handlebars->35->1048" + "default.handlebars->35->1051" ] }, { @@ -49235,10 +49259,10 @@ "zh-cht": "卸載", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->623", - "default.handlebars->35->1819", - "default.handlebars->35->863", - "default.handlebars->35->885" + "default-mobile.handlebars->11->626", + "default.handlebars->35->1822", + "default.handlebars->35->864", + "default.handlebars->35->886" ] }, { @@ -49260,9 +49284,9 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default-mobile.handlebars->11->603", + "default-mobile.handlebars->11->606", "default.handlebars->35->553", - "default.handlebars->35->953" + "default.handlebars->35->954" ] }, { @@ -49284,7 +49308,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->35->1783" + "default.handlebars->35->1786" ] }, { @@ -49306,7 +49330,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->35->990" + "default.handlebars->35->991" ] }, { @@ -49335,22 +49359,22 @@ "default-mobile.handlebars->11->43", "default-mobile.handlebars->11->44", "default-mobile.handlebars->11->45", - "default-mobile.handlebars->11->507", - "default-mobile.handlebars->11->514", + "default-mobile.handlebars->11->510", + "default-mobile.handlebars->11->517", "default-mobile.handlebars->11->6", - "default.handlebars->35->1246", - "default.handlebars->35->1253", + "default.handlebars->35->1249", + "default.handlebars->35->1256", "default.handlebars->35->13", "default.handlebars->35->152", "default.handlebars->35->153", "default.handlebars->35->154", "default.handlebars->35->156", "default.handlebars->35->158", - "default.handlebars->35->1632", - "default.handlebars->35->1633", - "default.handlebars->35->2372", - "default.handlebars->35->2387", - "default.handlebars->35->2394", + "default.handlebars->35->1635", + "default.handlebars->35->1636", + "default.handlebars->35->2377", + "default.handlebars->35->2392", + "default.handlebars->35->2399", "default.handlebars->35->44", "default.handlebars->35->48", "default.handlebars->35->49", @@ -49379,8 +49403,8 @@ "zh-chs": "未知#{0}", "zh-cht": "未知#{0}", "xloc": [ - "default-mobile.handlebars->11->563", - "default.handlebars->35->1639" + "default-mobile.handlebars->11->566", + "default.handlebars->35->1642" ] }, { @@ -49402,7 +49426,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->35->2465" + "default.handlebars->35->2470" ] }, { @@ -49424,8 +49448,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->35->2228", - "default.handlebars->35->2358" + "default.handlebars->35->2233", + "default.handlebars->35->2363" ] }, { @@ -49447,9 +49471,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->35->2222", - "default.handlebars->35->2346", - "default.handlebars->35->2469" + "default.handlebars->35->2227", + "default.handlebars->35->2351", + "default.handlebars->35->2474" ] }, { @@ -49471,7 +49495,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->35->2461" + "default.handlebars->35->2466" ] }, { @@ -49516,7 +49540,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->35->2352" + "default.handlebars->35->2357" ] }, { @@ -49561,7 +49585,7 @@ "zh-chs": "密码未知", "zh-cht": "密碼未知", "xloc": [ - "default.handlebars->35->1716" + "default.handlebars->35->1719" ] }, { @@ -49583,7 +49607,7 @@ "zh-chs": "无限制", "zh-cht": "無限", "xloc": [ - "default.handlebars->35->1542", + "default.handlebars->35->1545", "default.handlebars->35->229", "default.handlebars->35->431", "default.handlebars->35->445" @@ -49608,7 +49632,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->35->2097" + "default.handlebars->35->2102" ] }, { @@ -49623,7 +49647,7 @@ "sv": "Lås upp fjärranvändarens mus och tangentbord?", "zh-chs": "解锁远程用户的鼠标和键盘?", "xloc": [ - "default.handlebars->35->898" + "default.handlebars->35->899" ] }, { @@ -49667,10 +49691,10 @@ "zh-chs": "向上", "zh-cht": "向上", "xloc": [ - "default-mobile.handlebars->11->381", + "default-mobile.handlebars->11->384", "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->35->1075", + "default.handlebars->35->1078", "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", @@ -49696,7 +49720,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->35->2552" + "default.handlebars->35->2557" ] }, { @@ -49719,8 +49743,8 @@ "zh-cht": "更新資料", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->463", - "default-mobile.handlebars->11->465", + "default-mobile.handlebars->11->466", + "default-mobile.handlebars->11->468", "default.handlebars->35->732", "default.handlebars->35->734" ] @@ -49783,14 +49807,14 @@ "zh-cht": "上載檔案", "xloc": [ "default-mobile.handlebars->11->150", - "default-mobile.handlebars->11->433", - "default-mobile.handlebars->11->451", + "default-mobile.handlebars->11->436", "default-mobile.handlebars->11->454", - "default.handlebars->35->1171", - "default.handlebars->35->1195", + "default-mobile.handlebars->11->457", + "default.handlebars->35->1174", "default.handlebars->35->1198", - "default.handlebars->35->1910", - "default.handlebars->35->1918", + "default.handlebars->35->1201", + "default.handlebars->35->1913", + "default.handlebars->35->1921", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->89", @@ -49816,8 +49840,8 @@ "zh-chs": "上载网格代理核心", "zh-cht": "上載mesh agent核心", "xloc": [ - "default-mobile.handlebars->11->562", - "default.handlebars->35->1302" + "default-mobile.handlebars->11->565", + "default.handlebars->35->1305" ] }, { @@ -49839,8 +49863,8 @@ "zh-chs": "上载核心档案", "zh-cht": "上載核心檔案", "xloc": [ - "default-mobile.handlebars->11->559", - "default.handlebars->35->1299" + "default-mobile.handlebars->11->562", + "default.handlebars->35->1302" ] }, { @@ -49862,8 +49886,8 @@ "zh-chs": "上载默认服务器核心", "zh-cht": "上載默認伺服器核心", "xloc": [ - "default-mobile.handlebars->11->555", - "default.handlebars->35->1295", + "default-mobile.handlebars->11->558", + "default.handlebars->35->1298", "default.handlebars->35->565", "default.handlebars->35->605" ] @@ -49946,8 +49970,8 @@ "zh-chs": "上传恢复核心", "zh-cht": "上傳恢復核心", "xloc": [ - "default-mobile.handlebars->11->557", - "default.handlebars->35->1297" + "default-mobile.handlebars->11->560", + "default.handlebars->35->1300" ] }, { @@ -49983,8 +50007,8 @@ "sv": "Ladda upp liten kärna", "zh-chs": "上传小核", "xloc": [ - "default-mobile.handlebars->11->558", - "default.handlebars->35->1298" + "default-mobile.handlebars->11->561", + "default.handlebars->35->1301" ] }, { @@ -50006,9 +50030,9 @@ "zh-chs": "上传将覆盖1个档案。继续?", "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ - "default-mobile.handlebars->11->452", - "default.handlebars->35->1196", - "default.handlebars->35->1919", + "default-mobile.handlebars->11->455", + "default.handlebars->35->1199", + "default.handlebars->35->1922", "sharing.handlebars->11->90" ] }, @@ -50031,9 +50055,9 @@ "zh-chs": "上传将覆盖{0}个档案。继续?", "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ - "default-mobile.handlebars->11->453", - "default.handlebars->35->1197", - "default.handlebars->35->1920", + "default-mobile.handlebars->11->456", + "default.handlebars->35->1200", + "default.handlebars->35->1923", "sharing.handlebars->11->91" ] }, @@ -50075,7 +50099,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->35->1970" + "default.handlebars->35->1973" ] }, { @@ -50090,7 +50114,7 @@ "sv": "Ladda upp: \\\"{0}\\\", Storlek: {1}", "zh-chs": "上传:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->35->2025" + "default.handlebars->35->2028" ] }, { @@ -50112,7 +50136,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->35->1522" + "default.handlebars->35->1525" ] }, { @@ -50134,14 +50158,14 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->35->1523" + "default.handlebars->35->1526" ] }, { "en": "Usage", "sv": "Användande", "xloc": [ - "default.handlebars->35->2515" + "default.handlebars->35->2520" ] }, { @@ -50218,6 +50242,18 @@ "default.handlebars->35->402" ] }, + { + "en": "Use new credentals", + "xloc": [ + "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->1" + ] + }, + { + "en": "Use server credentals", + "xloc": [ + "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->0" + ] + }, { "cs": "Pro přidání zařízení použijte desktop verzi těchto stránek.", "de": "Verwenden Sie die Desktop-Version dieser Website, um Geräte hinzuzufügen.", @@ -50259,8 +50295,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->35->2455", - "default.handlebars->35->2457" + "default.handlebars->35->2460", + "default.handlebars->35->2462" ] }, { @@ -50282,13 +50318,13 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->35->1695", - "default.handlebars->35->2050", - "default.handlebars->35->2079", - "default.handlebars->35->2218", - "default.handlebars->35->2413", + "default.handlebars->35->1698", + "default.handlebars->35->2055", + "default.handlebars->35->2084", + "default.handlebars->35->2223", + "default.handlebars->35->2418", "default.handlebars->35->298", - "default.handlebars->35->831", + "default.handlebars->35->832", "default.handlebars->35->90" ] }, @@ -50311,7 +50347,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->35->2080" + "default.handlebars->35->2085" ] }, { @@ -50333,10 +50369,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->35->2113", - "default.handlebars->35->2114", - "default.handlebars->35->2116", - "default.handlebars->35->2118" + "default.handlebars->35->2118", + "default.handlebars->35->2119", + "default.handlebars->35->2121", + "default.handlebars->35->2123" ] }, { @@ -50358,7 +50394,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->35->2474" + "default.handlebars->35->2479" ] }, { @@ -50380,9 +50416,9 @@ "zh-chs": "用户授权", "zh-cht": "用戶授權", "xloc": [ - "default-mobile.handlebars->11->572", - "default.handlebars->35->1693", - "default.handlebars->35->827" + "default-mobile.handlebars->11->575", + "default.handlebars->35->1696", + "default.handlebars->35->828" ] }, { @@ -50404,12 +50440,12 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->35->1666", - "default.handlebars->35->2209", - "default.handlebars->35->2296", + "default.handlebars->35->1669", + "default.handlebars->35->2214", + "default.handlebars->35->2301", "default.handlebars->35->242", "default.handlebars->35->756", - "default.handlebars->35->932" + "default.handlebars->35->933" ] }, { @@ -50431,12 +50467,12 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->35->1758", - "default.handlebars->35->1759", - "default.handlebars->35->2182", - "default.handlebars->35->2354", - "default.handlebars->35->2375", - "default.handlebars->35->830" + "default.handlebars->35->1761", + "default.handlebars->35->1762", + "default.handlebars->35->2187", + "default.handlebars->35->2359", + "default.handlebars->35->2380", + "default.handlebars->35->831" ] }, { @@ -50480,7 +50516,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->35->2351" + "default.handlebars->35->2356" ] }, { @@ -50502,7 +50538,7 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default-mobile.handlebars->11->628" + "default-mobile.handlebars->11->631" ] }, { @@ -50524,9 +50560,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->35->1824", - "default.handlebars->35->2263", - "default.handlebars->35->2264" + "default.handlebars->35->1827", + "default.handlebars->35->2268", + "default.handlebars->35->2269" ] }, { @@ -50548,8 +50584,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->35->1756", - "default.handlebars->35->2247" + "default.handlebars->35->1759", + "default.handlebars->35->2252" ] }, { @@ -50585,7 +50621,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->35->2125" + "default.handlebars->35->2130" ] }, { @@ -50607,8 +50643,8 @@ "zh-chs": "用户名", "zh-cht": "用戶名", "xloc": [ - "default-mobile.handlebars->11->627", - "default.handlebars->35->1823" + "default-mobile.handlebars->11->630", + "default.handlebars->35->1826" ] }, { @@ -50699,7 +50735,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->35->2506" + "default.handlebars->35->2511" ] }, { @@ -50807,8 +50843,8 @@ "sv": "Användare finns redan", "zh-chs": "用户已存在", "xloc": [ - "default-mobile.handlebars->11->650", - "default.handlebars->35->2432" + "default-mobile.handlebars->11->653", + "default.handlebars->35->2437" ] }, { @@ -50830,8 +50866,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->35->1534", - "default.handlebars->35->1536" + "default.handlebars->35->1537", + "default.handlebars->35->1539" ] }, { @@ -50853,7 +50889,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->35->1999" + "default.handlebars->35->2002" ] }, { @@ -50875,7 +50911,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->35->1989" + "default.handlebars->35->1992" ] }, { @@ -50897,7 +50933,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->35->1987" + "default.handlebars->35->1990" ] }, { @@ -50939,7 +50975,7 @@ "sv": "Användarinloggningsförsök på låst konto från {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的锁定帐户的用户登录尝试", "xloc": [ - "default.handlebars->35->2029" + "default.handlebars->35->2032" ] }, { @@ -50953,7 +50989,7 @@ "sv": "Användarinloggningsförsök med fel andra faktor från {0}, {1}, {2}", "zh-chs": "来自 {0}、{1}、{2} 的第二个因素不正确的用户登录尝试", "xloc": [ - "default.handlebars->35->2028" + "default.handlebars->35->2031" ] }, { @@ -50969,8 +51005,8 @@ "sv": "Användaren {0} hittades inte.", "zh-chs": "未找到用户 {0}。", "xloc": [ - "default-mobile.handlebars->11->658", - "default.handlebars->35->2440" + "default-mobile.handlebars->11->661", + "default.handlebars->35->2445" ] }, { @@ -51014,21 +51050,21 @@ "zh-chs": "用户名", "zh-cht": "用戶名", "xloc": [ - "default-mobile.handlebars->11->343", - "default-mobile.handlebars->11->402", - "default-mobile.handlebars->11->413", - "default.handlebars->35->1122", - "default.handlebars->35->1143", - "default.handlebars->35->1610", - "default.handlebars->35->1615", - "default.handlebars->35->2137", + "default-mobile.handlebars->11->344", + "default-mobile.handlebars->11->405", + "default-mobile.handlebars->11->416", + "default.handlebars->35->1125", + "default.handlebars->35->1146", + "default.handlebars->35->1613", + "default.handlebars->35->1618", + "default.handlebars->35->2142", "default.handlebars->35->271", "default.handlebars->35->387", - "default.handlebars->35->976", + "default.handlebars->35->977", "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", - "mstsc.handlebars->main->1->3->1->4->3", + "mstsc.handlebars->main->1->3->1->rowusername->1->0", + "mstsc.handlebars->main->1->3->1->rowusername->3", "player.handlebars->3->4", "ssh.handlebars->3->5" ] @@ -51103,9 +51139,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->35->2170", - "default.handlebars->35->2210", - "default.handlebars->35->2505", + "default.handlebars->35->2175", + "default.handlebars->35->2215", + "default.handlebars->35->2510", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -51128,7 +51164,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->35->2478" + "default.handlebars->35->2483" ] }, { @@ -51144,8 +51180,8 @@ "sv": "Användare {0} hittades inte.", "zh-chs": "未找到用户 {0}。", "xloc": [ - "default-mobile.handlebars->11->659", - "default.handlebars->35->2441" + "default-mobile.handlebars->11->662", + "default.handlebars->35->2446" ] }, { @@ -51197,7 +51233,7 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->35->1135", + "default.handlebars->35->1138", "sharing.handlebars->11->38" ] }, @@ -51235,7 +51271,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->35->2092" + "default.handlebars->35->2097" ] }, { @@ -51250,8 +51286,8 @@ "sv": "Valideringsundantag", "zh-chs": "验证异常", "xloc": [ - "default-mobile.handlebars->11->652", - "default.handlebars->35->2434" + "default-mobile.handlebars->11->655", + "default.handlebars->35->2439" ] }, { @@ -51273,7 +51309,7 @@ "zh-chs": "有效期", "zh-cht": "有效期", "xloc": [ - "default.handlebars->35->927" + "default.handlebars->35->928" ] }, { @@ -51306,7 +51342,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->35->1524" + "default.handlebars->35->1527" ] }, { @@ -51328,10 +51364,10 @@ "zh-chs": "供应商", "zh-cht": "供應商", "xloc": [ - "default-mobile.handlebars->11->522", "default-mobile.handlebars->11->525", - "default.handlebars->35->1261", - "default.handlebars->35->1264" + "default-mobile.handlebars->11->528", + "default.handlebars->35->1264", + "default.handlebars->35->1267" ] }, { @@ -51376,7 +51412,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->35->2330" + "default.handlebars->35->2335" ] }, { @@ -51422,8 +51458,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->11->87", - "default.handlebars->35->1306", - "default.handlebars->35->2088" + "default.handlebars->35->1309", + "default.handlebars->35->2093" ] }, { @@ -51445,7 +51481,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->35->2016" + "default.handlebars->35->2019" ] }, { @@ -51512,14 +51548,14 @@ "zh-chs": "版本", "zh-cht": "版", "xloc": [ - "default-mobile.handlebars->11->457", - "default-mobile.handlebars->11->506", - "default-mobile.handlebars->11->523", - "default-mobile.handlebars->11->528", - "default.handlebars->35->1203", - "default.handlebars->35->1245", - "default.handlebars->35->1262", - "default.handlebars->35->1267", + "default-mobile.handlebars->11->460", + "default-mobile.handlebars->11->509", + "default-mobile.handlebars->11->526", + "default-mobile.handlebars->11->531", + "default.handlebars->35->1206", + "default.handlebars->35->1248", + "default.handlebars->35->1265", + "default.handlebars->35->1270", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -51542,7 +51578,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->35->2548" + "default.handlebars->35->2553" ] }, { @@ -51592,8 +51628,8 @@ "sv": "Vibrera", "zh-chs": "颤动", "xloc": [ - "default-mobile.handlebars->11->316", - "default.handlebars->35->938" + "default-mobile.handlebars->11->317", + "default.handlebars->35->939" ] }, { @@ -51615,7 +51651,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->35->1525" + "default.handlebars->35->1528" ] }, { @@ -51659,7 +51695,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->35->2162" + "default.handlebars->35->2167" ] }, { @@ -51692,8 +51728,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->35->2551", - "default.handlebars->35->2553" + "default.handlebars->35->2556", + "default.handlebars->35->2558" ] }, { @@ -51715,7 +51751,7 @@ "zh-chs": "查看有关此设备的注释", "zh-cht": "查看有關此裝置的註釋", "xloc": [ - "default.handlebars->35->778" + "default.handlebars->35->779" ] }, { @@ -51737,7 +51773,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->35->1682" + "default.handlebars->35->1685" ] }, { @@ -51759,7 +51795,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->35->2304" + "default.handlebars->35->2309" ] }, { @@ -51790,7 +51826,7 @@ "sv": "Visa tidigare inloggningar för den här användaren", "zh-chs": "查看此用户以前的登录", "xloc": [ - "default.handlebars->35->2317" + "default.handlebars->35->2322" ] }, { @@ -51819,7 +51855,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->35->1526" + "default.handlebars->35->1529" ] }, { @@ -51992,8 +52028,8 @@ "zh-chs": "正在等待用户授予访问权限...", "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ - "default-mobile.handlebars->11->361", - "default.handlebars->35->1043", + "default-mobile.handlebars->11->364", + "default.handlebars->35->1046", "sharing.handlebars->11->28", "sharing.handlebars->11->6" ] @@ -52017,8 +52053,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->35->859", - "default.handlebars->35->881" + "default.handlebars->35->860", + "default.handlebars->35->882" ] }, { @@ -52040,10 +52076,10 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default-mobile.handlebars->11->599", - "default-mobile.handlebars->11->614", - "default.handlebars->35->1779", - "default.handlebars->35->1809" + "default-mobile.handlebars->11->602", + "default-mobile.handlebars->11->617", + "default.handlebars->35->1782", + "default.handlebars->35->1812" ] }, { @@ -52065,8 +52101,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default-mobile.handlebars->11->321", - "default.handlebars->35->943" + "default-mobile.handlebars->11->322", + "default.handlebars->35->944" ] }, { @@ -52110,7 +52146,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->35->1527" + "default.handlebars->35->1530" ] }, { @@ -52132,7 +52168,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->35->1602" + "default.handlebars->35->1605" ] }, { @@ -52181,8 +52217,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->35->2531", - "default.handlebars->35->2532" + "default.handlebars->35->2536", + "default.handlebars->35->2537" ] }, { @@ -52197,7 +52233,7 @@ "sv": "Webbserver HTTP-rubriker", "zh-chs": "Web 服务器 HTTP 标头", "xloc": [ - "default.handlebars->35->2535" + "default.handlebars->35->2540" ] }, { @@ -52219,7 +52255,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->35->2533" + "default.handlebars->35->2538" ] }, { @@ -52241,7 +52277,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->35->2534" + "default.handlebars->35->2539" ] }, { @@ -52263,7 +52299,7 @@ "zh-chs": "网络RDP", "zh-cht": "網絡RDP", "xloc": [ - "default.handlebars->35->809" + "default.handlebars->35->810" ] }, { @@ -52278,7 +52314,7 @@ "sv": "Web-SSH", "zh-chs": "网络SSH", "xloc": [ - "default.handlebars->35->811" + "default.handlebars->35->812" ] }, { @@ -52293,7 +52329,7 @@ "sv": "Web-VNC", "zh-chs": "网络VNC", "xloc": [ - "default.handlebars->35->807" + "default.handlebars->35->808" ] }, { @@ -52308,7 +52344,7 @@ "sv": "WebRDP", "zh-chs": "网络RDP", "xloc": [ - "default.handlebars->35->2499" + "default.handlebars->35->2504" ] }, { @@ -52323,7 +52359,7 @@ "sv": "WebSSH", "zh-chs": "网络SSH", "xloc": [ - "default.handlebars->35->2500" + "default.handlebars->35->2505" ] }, { @@ -52338,7 +52374,7 @@ "sv": "WebVNC", "zh-chs": "网络VNC", "xloc": [ - "default.handlebars->35->2501" + "default.handlebars->35->2506" ] }, { @@ -52406,7 +52442,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->35->1528" + "default.handlebars->35->1531" ] }, { @@ -52428,7 +52464,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->35->1832" + "default.handlebars->35->1835" ] }, { @@ -52451,7 +52487,7 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->11->93", - "default.handlebars->35->1313" + "default.handlebars->35->1316" ] }, { @@ -52473,7 +52509,7 @@ "zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。", "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "xloc": [ - "default.handlebars->35->1726" + "default.handlebars->35->1729" ] }, { @@ -52514,7 +52550,7 @@ "zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。", "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "xloc": [ - "default.handlebars->35->1727" + "default.handlebars->35->1730" ] }, { @@ -52536,7 +52572,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->35->2276" + "default.handlebars->35->2281" ] }, { @@ -52558,11 +52594,11 @@ "zh-chs": "Win", "zh-cht": "Win", "xloc": [ - "default-mobile.handlebars->11->388", - "default-mobile.handlebars->11->392", + "default-mobile.handlebars->11->391", + "default-mobile.handlebars->11->395", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->35->1082", - "default.handlebars->35->1086", + "default.handlebars->35->1085", + "default.handlebars->35->1089", "sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3" ] }, @@ -52744,7 +52780,7 @@ "zh-chs": "Win32可执行档案", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->35->1004" + "default.handlebars->35->1005" ] }, { @@ -52850,7 +52886,7 @@ "zh-chs": "Windows(32位)", "zh-cht": "Windows(32位)", "xloc": [ - "default.handlebars->35->1010" + "default.handlebars->35->1011" ] }, { @@ -52872,7 +52908,7 @@ "zh-chs": "Windows(64位)", "zh-cht": "Windows(64位)", "xloc": [ - "default.handlebars->35->1009" + "default.handlebars->35->1010" ] }, { @@ -53068,7 +53104,7 @@ "zh-cht": "Windows命令提示", "xloc": [ "default.handlebars->35->574", - "default.handlebars->35->958" + "default.handlebars->35->959" ] }, { @@ -53159,7 +53195,7 @@ "zh-cht": "Windows PowerShell", "xloc": [ "default.handlebars->35->575", - "default.handlebars->35->959" + "default.handlebars->35->960" ] }, { @@ -53174,7 +53210,7 @@ "sv": "Windows-säkerhet", "zh-chs": "视窗安全", "xloc": [ - "default-mobile.handlebars->11->471", + "default-mobile.handlebars->11->474", "default.handlebars->35->740" ] }, @@ -53271,7 +53307,7 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->35->1190", + "default.handlebars->35->1193", "sharing.handlebars->11->84" ] }, @@ -53294,7 +53330,7 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->35->1189", + "default.handlebars->35->1192", "sharing.handlebars->11->83" ] }, @@ -53317,7 +53353,7 @@ "zh-chs": "为此设备写一个事件", "zh-cht": "為此裝置寫一個事件", "xloc": [ - "default.handlebars->35->780" + "default.handlebars->35->781" ] }, { @@ -53383,7 +53419,7 @@ "zh-chs": "XTerm", "zh-cht": "XTerm", "xloc": [ - "default.handlebars->35->798" + "default.handlebars->35->799" ] }, { @@ -53405,7 +53441,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->35->1529" + "default.handlebars->35->1532" ] }, { @@ -53427,7 +53463,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->35->1530" + "default.handlebars->35->1533" ] }, { @@ -53579,7 +53615,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->35->1332" + "default.handlebars->35->1335" ] }, { @@ -53624,7 +53660,7 @@ "zh-chs": "邮编档案名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->35->1174", + "default.handlebars->35->1177", "sharing.handlebars->11->68" ] }, @@ -53715,7 +53751,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->35->1531" + "default.handlebars->35->1534" ] }, { @@ -54009,7 +54045,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->35->2549" + "default.handlebars->35->2554" ] }, { @@ -54305,8 +54341,8 @@ "zh-chs": "console.txt", "zh-cht": "console.txt", "xloc": [ - "default-mobile.handlebars->11->552", - "default.handlebars->35->1292" + "default-mobile.handlebars->11->555", + "default.handlebars->35->1295" ] }, { @@ -54329,7 +54365,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->35->1915" + "default.handlebars->35->1918" ] }, { @@ -54469,8 +54505,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->35->2057", - "default.handlebars->35->2062" + "default.handlebars->35->2062", + "default.handlebars->35->2067" ] }, { @@ -54492,8 +54528,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->35->2059", - "default.handlebars->35->2063" + "default.handlebars->35->2064", + "default.handlebars->35->2068" ] }, { @@ -54537,8 +54573,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->35->2486", - "default.handlebars->35->2489" + "default.handlebars->35->2491", + "default.handlebars->35->2494" ] }, { @@ -54773,7 +54809,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->35->2126" + "default.handlebars->35->2131" ] }, { @@ -54917,7 +54953,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->35->2154" + "default.handlebars->35->2159" ] }, { @@ -55088,7 +55124,7 @@ "zh-chs": "macOS ARM (64位)", "zh-cht": "macOS ARM (64位)", "xloc": [ - "default.handlebars->35->1014" + "default.handlebars->35->1015" ] }, { @@ -55110,7 +55146,7 @@ "zh-chs": "macOS x86 (64位)", "zh-cht": "macOS x86 (64位)", "xloc": [ - "default.handlebars->35->1013" + "default.handlebars->35->1014" ] }, { @@ -55201,7 +55237,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->35->1916" + "default.handlebars->35->1919" ] }, { @@ -55320,7 +55356,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->35->1636" + "default.handlebars->35->1639" ] }, { @@ -55342,7 +55378,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->35->2543" + "default.handlebars->35->2548" ] }, { @@ -55425,7 +55461,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->35->2518" + "default.handlebars->35->2523" ] }, { @@ -55447,7 +55483,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->35->2542" + "default.handlebars->35->2547" ] }, { @@ -55488,8 +55524,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->35->2487", - "default.handlebars->35->2490" + "default.handlebars->35->2492", + "default.handlebars->35->2495" ] }, { @@ -55580,8 +55616,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->35->2122", - "default.handlebars->35->2127" + "default.handlebars->35->2127", + "default.handlebars->35->2132" ] }, { @@ -55603,8 +55639,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->35->2124", - "default.handlebars->35->2128" + "default.handlebars->35->2129", + "default.handlebars->35->2133" ] }, { @@ -55626,7 +55662,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->35->2061" + "default.handlebars->35->2066" ] }, { @@ -55673,8 +55709,8 @@ "zh-chs": "{0}", "zh-cht": "{0}", "xloc": [ - "default-mobile.handlebars->11->500", - "default-mobile.handlebars->11->504" + "default-mobile.handlebars->11->503", + "default-mobile.handlebars->11->507" ] }, { @@ -55762,8 +55798,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->35->1890", - "default.handlebars->35->1895" + "default.handlebars->35->1893", + "default.handlebars->35->1898" ] }, { @@ -55785,9 +55821,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->35->1888", - "default.handlebars->35->1893", - "default.handlebars->35->2386" + "default.handlebars->35->1891", + "default.handlebars->35->1896", + "default.handlebars->35->2391" ] }, { @@ -55809,12 +55845,12 @@ "zh-chs": "{0} Mb", "zh-cht": "{0} Mb", "xloc": [ - "default-mobile.handlebars->11->536", - "default-mobile.handlebars->11->541", - "default.handlebars->35->1275", - "default.handlebars->35->1280", - "default.handlebars->35->1889", - "default.handlebars->35->1894" + "default-mobile.handlebars->11->539", + "default-mobile.handlebars->11->544", + "default.handlebars->35->1278", + "default.handlebars->35->1283", + "default.handlebars->35->1892", + "default.handlebars->35->1897" ] }, { @@ -55836,8 +55872,8 @@ "zh-chs": "{0} Mb,{1} Mhz", "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ - "default-mobile.handlebars->11->534", - "default.handlebars->35->1273" + "default-mobile.handlebars->11->537", + "default.handlebars->35->1276" ] }, { @@ -55859,7 +55895,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->35->2320" + "default.handlebars->35->2325" ] }, { @@ -55881,8 +55917,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->35->1887", - "default.handlebars->35->1892" + "default.handlebars->35->1890", + "default.handlebars->35->1895" ] }, { @@ -55905,8 +55941,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->35->1903", - "default.handlebars->35->2407", + "default.handlebars->35->1906", + "default.handlebars->35->2412", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->97" @@ -55931,7 +55967,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->35->1882" + "default.handlebars->35->1885" ] }, { @@ -55953,7 +55989,7 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->35->1054", + "default.handlebars->35->1057", "sharing.handlebars->11->16" ] }, @@ -55969,7 +56005,7 @@ "sv": "{0} från {1} till {2}.", "zh-chs": "{0} 从 {1} 到 {2}。", "xloc": [ - "default.handlebars->35->972" + "default.handlebars->35->973" ] }, { @@ -55991,7 +56027,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->35->1885" + "default.handlebars->35->1888" ] }, { @@ -56013,7 +56049,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->35->2281" + "default.handlebars->35->2286" ] }, { @@ -56076,7 +56112,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->35->1883" + "default.handlebars->35->1886" ] }, { @@ -56122,7 +56158,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->35->1884" + "default.handlebars->35->1887" ] }, { @@ -56166,7 +56202,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->35->2071" + "default.handlebars->35->2076" ] }, { @@ -56377,7 +56413,7 @@ "default-mobile.handlebars->11->205", "default-mobile.handlebars->11->208", "default-mobile.handlebars->11->211", - "default.handlebars->35->2075", + "default.handlebars->35->2080", "default.handlebars->35->337", "default.handlebars->35->340", "default.handlebars->35->343", @@ -56488,8 +56524,8 @@ "sv": "{0}, Mask: {1}, Gateway: {2}", "zh-chs": "{0},掩码:{1},网关:{2}", "xloc": [ - "default-mobile.handlebars->11->498", - "default-mobile.handlebars->11->502" + "default-mobile.handlebars->11->501", + "default-mobile.handlebars->11->505" ] }, { @@ -56511,7 +56547,7 @@ "zh-chs": "{0},{1}至{2}", "zh-cht": "{0},{1}至{2}", "xloc": [ - "default.handlebars->35->843" + "default.handlebars->35->844" ] }, { @@ -56577,7 +56613,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->35->1897" + "default.handlebars->35->1900" ] }, { @@ -56599,7 +56635,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->35->1896" + "default.handlebars->35->1899" ] }, { diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index be1d21ea..75a2d938 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -1876,6 +1876,7 @@ node.gpsloc = message.event.node.gpsloc; node.tags = message.event.node.tags; node.ssh = message.event.node.ssh; + node.rdp = message.event.node.rdp; node.userloc = message.event.node.userloc; node.rdpport = message.event.node.rdpport; node.rfbport = message.event.node.rfbport; @@ -3430,13 +3431,17 @@ x += addDeviceAttribute("Tags", '' + groupingTags + ''); } - // SSH Credentials - if (node.ssh != null) { + // SSH & RDP Credentials + if ((node.ssh != null) || (node.rdp != null)) { + var y = []; if ((meshrights & 4) != 0) { - x += addDeviceAttribute("Credentials", '' + "SSH" + ' '); + if (node.ssh != null) { y.push('' + "SSH" + ' '); } + if (node.rdp != null) { y.push('' + "RDP" + ' '); } } else { - x += addDeviceAttribute("Credentials", "SSH"); + if (node.ssh != null) { y.push("SSH"); } + if (node.rdp != null) { y.push("RDP"); } } + x += addDeviceAttribute("Credentials", y.join(', ')); } x += '
'; @@ -3842,6 +3847,8 @@ function showClearSshDialog() { setDialogMode(2, "Edit Device", 3, showClearSshDialogEx, "Clear SSH credentials?"); } function showClearSshDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, ssh: 0 }); } + function showClearRdpDialog() { setDialogMode(2, "Edit Device", 3, showClearRdpDialogEx, "Clear RDP credentials?"); } + function showClearRdpDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, rdp: 0 }); } var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"]; var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags']; diff --git a/views/default.handlebars b/views/default.handlebars index 2b295ebd..a7742b53 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -3000,6 +3000,7 @@ node.gpsloc = message.event.node.gpsloc; node.tags = message.event.node.tags; node.ssh = message.event.node.ssh; + node.rdp = message.event.node.rdp; node.userloc = message.event.node.userloc; node.rdpport = message.event.node.rdpport; node.rfbport = message.event.node.rfbport; @@ -6506,13 +6507,17 @@ x += addDeviceAttribute("Tags", groupingTags); } - // SSH Credentials - if (node.ssh != null) { + // SSH & RDP Credentials + if ((node.ssh != null) || (node.rdp != null)) { + var y = []; if ((meshrights & 4) != 0) { - x += addDeviceAttribute("Credentials", '' + "SSH" + ' '); + if (node.ssh != null) { y.push('' + "SSH" + ' '); } + if (node.rdp != null) { y.push('' + "RDP" + ' '); } } else { - x += addDeviceAttribute("Credentials", "SSH"); + if (node.ssh != null) { y.push("SSH"); } + if (node.rdp != null) { y.push("RDP"); } } + x += addDeviceAttribute("Credentials", y.join(', ')); } x += '
'; @@ -7558,6 +7563,8 @@ function showClearSshDialog() { setDialogMode(2, "Edit Device", 3, showClearSshDialogEx, "Clear SSH credentials?"); } function showClearSshDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, ssh: 0 }); } + function showClearRdpDialog() { setDialogMode(2, "Edit Device", 3, showClearRdpDialogEx, "Clear RDP credentials?"); } + function showClearRdpDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, rdp: 0 }); } var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"]; var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags']; diff --git a/views/mstsc.handlebars b/views/mstsc.handlebars index b82c844a..bdabd385 100644 --- a/views/mstsc.handlebars +++ b/views/mstsc.handlebars @@ -44,6 +44,10 @@ margin: 0 auto; } + .formDropdown { + font-size: 17px; + } + .formLabel { } .formControl { @@ -76,6 +80,7 @@ var urlargs = parseUriArgs(); if (urlargs.key && (isAlphaNumeric(urlargs.key) == false)) { delete urlargs.key; } var cookie = '{{{cookie}}}'; + var serverCredentials = (decodeURIComponent('{{{serverCredentials}}}') == 'true'); var name = decodeURIComponent('{{{name}}}'); if (name != '') { document.title = name + ' - ' + document.title; } @@ -90,6 +95,15 @@ QE('inputPassword', false); QE('connectButton', false); } + + if (serverCredentials == true) { + QV('dropdowndomain', true); + Q('d3coreMode').value = 1; + } else { + QV('dropdowndomain', false); + Q('d3coreMode').value = 2; + } + dropDownChange(); } function connect(domain, username, password) { @@ -97,11 +111,13 @@ var domain = Q('inputDomain').value; var username = Q('inputUsername').value; var password = Q('inputPassword').value; + var savepass = Q('inputSaveCredentials').checked; + var options = { savepass: savepass, useServerCreds: (Q('d3coreMode').value == 1) }; QV('myCanvas', true); QV('main', false); canvas.width = window.innerWidth; canvas.height = window.innerHeight; - client.connect(cookie, domain, username, password, function (err) { QV('myCanvas', false); QV('main', true); }); + client.connect(cookie, domain, username, password, options, function (err) { QV('myCanvas', false); QV('main', true); }); return false; } @@ -137,6 +153,16 @@ } return r; } + + function dropDownChange() { + var newCreds = (Q('d3coreMode').value == 2); + QV('rowdomain', newCreds); + QV('rowusername', newCreds); + QV('rowpassword', newCreds); + QV('rowremember', newCreds); + if (newCreds) Q('inputUsername').focus(); + } + @@ -147,18 +173,27 @@
- + + + + + + - + - + + + + + diff --git a/webserver.js b/webserver.js index e9c4e23e..a49d0740 100644 --- a/webserver.js +++ b/webserver.js @@ -1870,7 +1870,19 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // This is a query with a websocket relay cookie, check that the cookie is valid and use it. var rcookie = parent.decodeCookie(req.query.ws, parent.loginCookieEncryptionKey, 60); // Cookie with 1 hour timeout if ((rcookie != null) && (rcookie.domainid == domain.id) && (rcookie.nodeid != null) && (rcookie.tcpport != null)) { - render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: req.query.ws, name: encodeURIComponent(req.query.name).replace(/'/g, '%27') }, req, domain)); return; + + // Fetch the node from the database + obj.db.Get(rcookie.nodeid, function (err, nodes) { + if ((err != null) || (nodes.length != 1)) { res.sendStatus(404); return; } + const node = nodes[0]; + + // Check if we have RDP credentials for this device + var serverCredentials = ((typeof node.rdp == 'object') && (typeof node.rdp.d == 'string') && (typeof node.rdp.u == 'string') && (typeof node.rdp.p == 'string')); + + // Render the page + render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: req.query.ws, name: encodeURIComponent(req.query.name).replace(/'/g, '%27'), serverCredentials: serverCredentials }, req, domain)); + }); + return; } } @@ -1912,6 +1924,9 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if ((err != null) || (nodes.length != 1)) { res.sendStatus(404); return; } const node = nodes[0]; + // Check if we have RDP credentials for this device + var serverCredentials = ((typeof node.rdp == 'object') && (typeof node.rdp.d == 'string') && (typeof node.rdp.u == 'string') && (typeof node.rdp.p == 'string')); + // Check access rights, must have remote control rights if ((obj.GetNodeRights(user, node.meshid, node._id) & MESHRIGHT_REMOTECONTROL) == 0) { res.sendStatus(401); return; } @@ -1930,7 +1945,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Generate a cookie and respond var cookie = parent.encodeCookie({ userid: user._id, domainid: user.domain, nodeid: node._id, tcpport: port }, parent.loginCookieEncryptionKey); - render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: cookie, name: encodeURIComponent(node.name).replace(/'/g, '%27') }, req, domain)); + render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: cookie, name: encodeURIComponent(node.name).replace(/'/g, '%27'), serverCredentials: serverCredentials }, req, domain)); }); } @@ -7030,6 +7045,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { r = Object.assign({}, r); // Shallow clone if (r.pmt != null) { r.pmt = 1; } if (r.ssh != null) { r.ssh = 1; } + if (r.rdp != null) { r.rdp = 1; } if ((r.intelamt != null) && ((r.intelamt.pass != null) || (r.intelamt.mpspass != null))) { r.intelamt = Object.assign({}, r.intelamt); // Shallow clone if (r.intelamt.pass != null) { r.intelamt.pass = 1; }; // Remove the Intel AMT administrator password from the node