From 8e19f3bdf577d9b48f7d74d5c8debb127a5c4dfa Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Tue, 16 Mar 2021 16:29:13 -0700 Subject: [PATCH] Completed work on host-based AMT ACM TLS activation. --- agents/modules_meshcore/amt-mei.js | 4 +- amtmanager.js | 155 ++++- translate/translate.json | 990 +++++++++++++++-------------- views/default.handlebars | 3 +- 4 files changed, 624 insertions(+), 528 deletions(-) diff --git a/agents/modules_meshcore/amt-mei.js b/agents/modules_meshcore/amt-mei.js index 8f558448..433fb1e5 100644 --- a/agents/modules_meshcore/amt-mei.js +++ b/agents/modules_meshcore/amt-mei.js @@ -430,7 +430,7 @@ function amt_heci() { // Send the command this.sendCommand(139, data, function (header, fn, opt) { - if (header.Status == 0) { + if ((header.Status == 0) && (header.Data != null)) { var amtHash = null; if (header.Data[0] == 2) { amtHash = header.Data.slice(1, 33); } // SHA256 if (header.Data[0] == 3) { amtHash = header.Data.slice(1, 49); } // SHA384 @@ -439,7 +439,7 @@ function amt_heci() { opt.unshift({ status: header.Status }); } fn.apply(this, opt); - }, func, optional); + }, func, optional); } } diff --git a/amtmanager.js b/amtmanager.js index 9bb4065c..4d02a3f1 100644 --- a/amtmanager.js +++ b/amtmanager.js @@ -258,8 +258,8 @@ module.exports.CreateAmtManager = function (parent) { break; case 'startTlsHostConfig': if (dev.acmTlsInfo == null) break; - if ((typeof jsondata.value != 'object') || (typeof jsondata.value.status != 'number') || (jsondata.value.status != 0)) { - removeAmtDevice(dev, 2); // Failed to start TLS configuration + if ((typeof jsondata.value != 'object') || (typeof jsondata.value.status != 'number')) { + removeAmtDevice(dev, 2); // Invalid startTlsHostConfig response } else { activateIntelAmtTlsAcmEx(dev, jsondata.value); // Start TLS activation. } @@ -421,7 +421,7 @@ module.exports.CreateAmtManager = function (parent) { return; } // Check if we have an ACM activation policy, but the device is in CCM - if (((dev.policy.amtPolicy == 3) || (dev.policy.amtPolicy == 4)) && ((dev.mpsConnection.tag.meiState.Flags & 2) != 0)) { + if (((dev.policy.amtPolicy == 3) || (dev.policy.amtPolicy == 4)) && (dev.mpsConnection.tag.meiState.ProvisioningState == 2) && ((dev.mpsConnection.tag.meiState.Flags & 2) != 0)) { // This device in is CCM, check if we can upgrade to ACM if (activateIntelAmt(dev) == false) return; // If this return true, the platform is in CCM and can't go to ACM, keep going with management. } @@ -480,7 +480,7 @@ module.exports.CreateAmtManager = function (parent) { // Handle the case where the Intel AMT relay or LMS is connected (connType 1 or 2) // Check to see if CIRA is connected on this server. var ciraconn = dev.mpsConnection; - if ((ciraconn == null) || (ciraconn.tag == null) || (ciraconn.tag.boundPorts == null)) { console.log('r2'); removeAmtDevice(dev, 11); return; } // Relay connection not valid + if ((ciraconn == null) || (ciraconn.tag == null) || (ciraconn.tag.boundPorts == null)) { removeAmtDevice(dev, 11); return; } // Relay connection not valid // See what user/pass to try. var user = null, pass = null; @@ -491,11 +491,11 @@ module.exports.CreateAmtManager = function (parent) { // Connect now var comm; if (dev.tlsfail !== true) { - parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "TLS", user, pass); + parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "TLS", user); comm = CreateWsmanComm(dev.nodeid, 16993, user, pass, 1, null, ciraconn); // Perform TLS comm.xtlsFingerprint = 0; // Perform no certificate checking } else { - parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "NoTLS", user, pass); + parent.debug('amt', dev.name, (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "NoTLS", user); comm = CreateWsmanComm(dev.nodeid, 16992, user, pass, 0, null, ciraconn); // No TLS } var wsstack = WsmanStackCreateService(comm); @@ -951,7 +951,11 @@ module.exports.CreateAmtManager = function (parent) { if (certInstanceId == null) { dev.consoleMsg("Failed to get TLS certificate identifier."); removeAmtDevice(dev, 25); return; } // Set the TLS certificate - dev.setTlsSecurityPendingCalls = 3; + if (dev.hbacmtls == 1) { + dev.setTlsSecurityPendingCalls = 2; // Set remote port only + } else { + dev.setTlsSecurityPendingCalls = 3; // Set local and remote port + } if (dev.policy.tlsCredentialContext.length > 0) { // Modify the current context var newTLSCredentialContext = Clone(dev.policy.tlsCredentialContext[0]); @@ -979,9 +983,18 @@ module.exports.CreateAmtManager = function (parent) { xxTlsSettings2[localNdx]['Enabled'] = true; delete xxTlsSettings2[localNdx]['TrustedCN']; - // Update TLS settings - dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[0], amtSwitchToTls, 0, 1, xxTlsSettings2[0]); - dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[1], amtSwitchToTls, 0, 1, xxTlsSettings2[1]); + if (dev.hbacmtls == 1) { + // If we are doing Host-based TLS ACM activation, you need to only enable the remote port with TLS. + // If you enable on local port, the commit() will succeed but be ignored. + dev.consoleMsg("Enabling TLS on remote port..."); + if (remoteNdx == 0) { dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[0], amtSwitchToTls, 0, 1, xxTlsSettings2[0]); } + else { dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[1], amtSwitchToTls, 0, 1, xxTlsSettings2[1]); } + delete dev.hbacmtls; // Remove this indication + } else { + // Update TLS settings + dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[0], amtSwitchToTls, 0, 1, xxTlsSettings2[0]); + dev.amtstack.Put('AMT_TLSSettingData', xxTlsSettings2[1], amtSwitchToTls, 0, 1, xxTlsSettings2[1]); + } }); }, responses.Body['KeyPair']['ReferenceParameters']['SelectorSet']['Selector']['Value']); @@ -1003,11 +1016,12 @@ module.exports.CreateAmtManager = function (parent) { // Check if all the calls are done & perform a commit if ((--dev.setTlsSecurityPendingCalls) == 0) { + dev.consoleMsg("Performing Commit()..."); dev.amtstack.AMT_SetupAndConfigurationService_CommitChanges(null, function (stack, name, responses, status) { const dev = stack.dev; if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request. if (status != 200) { dev.consoleMsg("Failed perform commit (" + status + ")."); removeAmtDevice(dev, 27); return; } - dev.consoleMsg("Enabled TLS, holding 5 seconds..."); + dev.consoleMsg("Enabled TLS, holding 10 seconds..."); // Update device in the database dev.intelamt.tls = dev.aquired.tls = 1; @@ -1022,7 +1036,7 @@ module.exports.CreateAmtManager = function (parent) { // Wait 5 seconds before attempting to manage this device some more var f = function doManage() { if (isAmtDeviceValid(dev)) { devTaskCompleted(doManage.dev); } } f.dev = dev; - setTimeout(f, 5000); + setTimeout(f, 10000); }); } } @@ -1816,7 +1830,7 @@ module.exports.CreateAmtManager = function (parent) { if ((cert.cn == '*') || (cert.cn == trustedFqdn)) { for (var j in deviceHashes) { var hashInfo = deviceHashes[j]; - if (hashInfo.isActive == 1) { + if ((hashInfo != null) && (hashInfo.isActive == 1)) { if ((hashInfo.hashAlgorithmStr == 'SHA256') && (hashInfo.certificateHash.toLowerCase() == cert.sha256)) { return { cert: cert, fqdn: trustedFqdn, hash: cert.sha256 }; } // Found a match else if ((hashInfo.hashAlgorithmStr == 'SHA1') && (hashInfo.certificateHash.toLowerCase() == cert.sha1)) { return { cert: cert, fqdn: trustedFqdn, hash: cert.sha1 }; } // Found a match } @@ -1858,17 +1872,17 @@ module.exports.CreateAmtManager = function (parent) { removeAmtDevice(dev); } else { // Setup the WSMAN stack, no TLS + dev.consoleMsg("Attempting TLS connection..."); var comm = CreateWsmanComm(dev.nodeid, 16993, 'admin', '', 1, { cert: dev.acmTlsInfo.certs.join(''), key: dev.acmTlsInfo.signkey }, dev.mpsConnection); // TLS with client certificate chain and key. comm.xtlsFingerprint = startConfigData.hash.toLowerCase(); // Intel AMT leaf TLS cert need to match this hash (SHA256 or SHA384) var wsstack = WsmanStackCreateService(comm); dev.amtstack = AmtStackCreateService(wsstack); dev.amtstack.dev = dev; - dev.amtstack.BatchEnum(null, ['*AMT_GeneralSettings', '*IPS_HostBasedSetupService'], activateIntelAmtTlsAcmEx1); + dev.amtstack.BatchEnum(null, ['*AMT_GeneralSettings', 'CIM_SoftwareIdentity', '*AMT_SetupAndConfigurationService'], activateIntelAmtTlsAcmEx1); } } function activateIntelAmtTlsAcmEx1(stack, name, responses, status) { - console.log('activateIntelAmtTlsAcmEx1', status, responses); const dev = stack.dev; if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request. @@ -1877,31 +1891,105 @@ module.exports.CreateAmtManager = function (parent) { dev.consoleMsg("Failed to perform ACM TLS connection."); //activateIntelAmtAcm(dev); // It's possible to fallback to legacy WSMAN ACM activation here if we needed to.. removeAmtDevice(dev); + return; + } + + // Fetch the Intel AMT version from WSMAN + if ((responses != null) && (responses['CIM_SoftwareIdentity'] != null) && (responses['CIM_SoftwareIdentity'].responses != null)) { + var amtlogicalelements = []; + amtlogicalelements = responses['CIM_SoftwareIdentity'].responses; + if (responses['AMT_SetupAndConfigurationService'] != null && responses['AMT_SetupAndConfigurationService'].response != null) { + amtlogicalelements.push(responses['AMT_SetupAndConfigurationService'].response); + } + if (amtlogicalelements.length > 0) { + var vs = getInstance(amtlogicalelements, 'AMT')['VersionString']; + if (vs != null) { + dev.aquired.version = vs; + dev.aquired.versionmajor = parseInt(dev.aquired.version.split('.')[0]); + dev.aquired.versionminor = parseInt(dev.aquired.version.split('.')[1]); + } + } + } + + // Fetch the Intel AMT version from HTTP stack + if ((dev.amtversionstr == null) && (stack.wsman.comm.amtVersion != null)) { + var s = stack.wsman.comm.amtVersion.split('.'); + if (s.length >= 3) { + dev.aquired.version = s[0] + '.' + s[1] + '.' + s[2]; + dev.aquired.versionmajor = parseInt(s[0]); + dev.aquired.versionminor = parseInt(s[1]); + } + } + + // If we can't get the Intel AMT version, stop here. + if (dev.aquired.version == null) { dev.consoleMsg('Could not get Intel AMT version.'); removeAmtDevice(dev); return; } // Could not get Intel AMT version, disconnect(); + + // Get the digest realm + if (responses['AMT_GeneralSettings'] && responses['AMT_GeneralSettings'].response && (typeof responses['AMT_GeneralSettings'].response['DigestRealm'] == 'string')) { + // Set the realm in the stack since we are not doing HTTP digest and this will be checked later by different code. + dev.aquired.realm = dev.amtstack.wsman.comm.digestRealm = responses['AMT_GeneralSettings'].response['DigestRealm']; } else { - // TODO!!! - console.log('TODO!!!!!'); + dev.consoleMsg('Could not get Intel AMT digest realm.'); removeAmtDevice(dev); return; + } + + // Looks like we are doing well. + dev.consoleMsg('Succesful TLS connection, Intel AMT v' + dev.aquired.version); + + // Log this activation event + var event = { etype: 'node', action: 'amtactivate', nodeid: dev.nodeid, domain: dev.domainid, msgid: 111, msgArgs: [dev.temp.acminfo.fqdn], msg: 'Device requested Intel(R) AMT ACM TLS activation, FQDN: ' + dev.temp.acminfo.fqdn }; + if (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.DispatchEvent(parent.webserver.CreateMeshDispatchTargets(dev.meshid, [dev.nodeid]), obj, event); + + // Log the activation request, logging is a required step for activation. + var domain = parent.config.domains[dev.domainid]; + if (domain == null) { dev.consoleMsg("Invalid domain."); removeAmtDevice(dev, 41); return; } + if (parent.certificateOperations.logAmtActivation(domain, { time: new Date(), action: 'acmactivate-tls', domain: dev.domainid, amtUuid: dev.mpsConnection.tag.meiState.UUID, amtRealm: dev.aquired.realm, user: 'admin', password: dev.temp.pass, ipport: dev.mpsConnection.remoteAddr + ':' + dev.mpsConnection.remotePort, nodeid: dev.nodeid, meshid: dev.meshid, computerName: dev.name }) == false) { + dev.consoleMsg("Unable to log operation."); removeAmtDevice(dev, 42); return; + } + + // See what admin password to use + dev.aquired.user = 'admin'; + dev.aquired.pass = dev.temp.password; + + // Set the account password + if (typeof dev.temp.mebxpass == 'string') { + // Set the new MEBx password + dev.consoleMsg('Setting MEBx password...'); + dev.amtstack.AMT_SetupAndConfigurationService_SetMEBxPassword(dev.temp.mebxpass, activateIntelAmtTlsAcmEx2); + } else { + // Set the admin password + dev.consoleMsg('Setting admin password...'); + dev.amtstack.AMT_AuthorizationService_SetAdminAclEntryEx(dev.aquired.user, hex_md5(dev.aquired.user + ':' + dev.aquired.realm + ':' + dev.aquired.pass), activateIntelAmtTlsAcmEx3); } } + // Response from setting MEBx password + function activateIntelAmtTlsAcmEx2(stack, name, responses, status) { + const dev = stack.dev; + if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request. + if (status != 200) { dev.consoleMsg('Failed to set MEBx password, status=' + status + '.'); destroyDevice(dev); return; } + dev.consoleMsg('MEBx password set. Setting admin password...'); + // Set the admin password + dev.amtstack.AMT_AuthorizationService_SetAdminAclEntryEx(dev.aquired.user, hex_md5(dev.aquired.user + ':' + dev.aquired.realm + ':' + dev.aquired.pass), activateIntelAmtTlsAcmEx3); + } + // Response from setting admin password + function activateIntelAmtTlsAcmEx3(stack, name, responses, status) { + const dev = stack.dev; + if (isAmtDeviceValid(dev) == false) return; // Device no longer exists, ignore this request. + if (status != 200) { dev.consoleMsg('Failed to set admin password, status=' + status + '.'); removeAmtDevice(dev); return; } + dev.consoleMsg('Admin password set.'); + // Switch the state of Intel AMT. + if ((dev.mpsConnection != null) && (dev.mpsConnection.tag != null) && (dev.mpsConnection.tag.meiState != null)) { dev.mpsConnection.tag.meiState.ProvisioningState = 2; } + dev.aquired.controlMode = 2; // 1 = CCM, 2 = ACM + dev.aquired.state = 2; // Activated + dev.hbacmtls = 1; // Indicate that we are doing a Host - - - - - - - - - - - - - - - + // Proceed to going the normal Intel AMT sync. This will trigger a commit when the TLS cert is setup. + dev.amtstack.BatchEnum(null, ['*AMT_GeneralSettings', '*IPS_HostBasedSetupService'], attemptLocalConnectResponse); + } // Attempt Intel AMT ACM activation function activateIntelAmtAcm(dev, password, acminfo) { @@ -2008,7 +2096,7 @@ module.exports.CreateAmtManager = function (parent) { delete dev.temp; UpdateDevice(dev); - // Wait 10 seconds before attempting to manage this device in CCM + // Wait 10 seconds before attempting to manage this device in ACM var f = function doManage() { if (isAmtDeviceValid(dev)) { attemptInitialContact(doManage.dev); } } f.dev = dev; setTimeout(f, 10000); @@ -2096,6 +2184,7 @@ module.exports.CreateAmtManager = function (parent) { function getRandomAmtPassword() { var p; do { p = Buffer.from(parent.crypto.randomBytes(9), 'binary').toString('base64').split('/').join('@'); } while (checkAmtPassword(p) == false); return p; } function getRandomPassword() { return Buffer.from(parent.crypto.randomBytes(9), 'binary').toString('base64').split('/').join('@'); } function getRandomLowerCase(len) { var r = '', random = parent.crypto.randomBytes(len); for (var i = 0; i < len; i++) { r += String.fromCharCode(97 + (random[i] % 26)); } return r; } + function getInstance(x, y) { for (var i in x) { if (x[i]['InstanceID'] == y) return x[i]; } return null; } function hex_md5(str) { return parent.crypto.createHash('md5').update(str).digest('hex'); } function Clone(v) { return JSON.parse(JSON.stringify(v)); } diff --git a/translate/translate.json b/translate/translate.json index 53df480e..a32073ab 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -225,7 +225,7 @@ "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ "default.handlebars->31->1560", - "default.handlebars->31->2042" + "default.handlebars->31->2043" ] }, { @@ -829,7 +829,7 @@ "default-mobile.handlebars->11->370", "default.handlebars->31->1003", "default.handlebars->31->1683", - "default.handlebars->31->2205" + "default.handlebars->31->2206" ] }, { @@ -886,7 +886,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->31->2115" + "default.handlebars->31->2116" ] }, { @@ -973,7 +973,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->31->2076" + "default.handlebars->31->2077" ] }, { @@ -1077,7 +1077,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->31->1866" + "default.handlebars->31->1867" ] }, { @@ -1143,7 +1143,7 @@ "default-mobile.handlebars->11->202", "default-mobile.handlebars->11->205", "default-mobile.handlebars->11->208", - "default.handlebars->31->1870", + "default.handlebars->31->1871", "default.handlebars->31->277", "default.handlebars->31->280", "default.handlebars->31->283", @@ -1646,8 +1646,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->31->1883", - "default.handlebars->31->2098" + "default.handlebars->31->1884", + "default.handlebars->31->2099" ] }, { @@ -2750,7 +2750,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->31->2048" + "default.handlebars->31->2049" ] }, { @@ -2841,7 +2841,7 @@ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", "default.handlebars->31->1405", "default.handlebars->31->1407", - "default.handlebars->31->2321", + "default.handlebars->31->2322", "default.handlebars->31->584", "default.handlebars->31->586" ] @@ -2852,7 +2852,7 @@ "fr": "Paramètres du compte", "xloc": [ "default-mobile.handlebars->11->588", - "default.handlebars->31->2213" + "default.handlebars->31->2214" ] }, { @@ -2973,8 +2973,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->31->1885", - "default.handlebars->31->2045" + "default.handlebars->31->1886", + "default.handlebars->31->2046" ] }, { @@ -2995,7 +2995,7 @@ "zh-cht": "達到帳戶限制。", "xloc": [ "default-mobile.handlebars->11->600", - "default.handlebars->31->2225", + "default.handlebars->31->2226", "login-mobile.handlebars->5->6", "login.handlebars->5->6", "login2.handlebars->7->7" @@ -3448,8 +3448,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->31->2022", - "default.handlebars->31->2152" + "default.handlebars->31->2023", + "default.handlebars->31->2153" ] }, { @@ -3490,8 +3490,8 @@ "zh-cht": "新增裝置群", "xloc": [ "default.handlebars->31->1595", - "default.handlebars->31->2016", - "default.handlebars->31->2140", + "default.handlebars->31->2017", + "default.handlebars->31->2141", "default.handlebars->31->247" ] }, @@ -3630,7 +3630,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->31->2172" + "default.handlebars->31->2173" ] }, { @@ -3738,7 +3738,7 @@ "xloc": [ "default.handlebars->31->1491", "default.handlebars->31->1594", - "default.handlebars->31->2146", + "default.handlebars->31->2147", "default.handlebars->31->726" ] }, @@ -3817,7 +3817,7 @@ "zh-cht": "新增用戶", "xloc": [ "default.handlebars->31->1490", - "default.handlebars->31->2011" + "default.handlebars->31->2012" ] }, { @@ -3857,7 +3857,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->31->2044" + "default.handlebars->31->2045" ] }, { @@ -4260,7 +4260,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->31->2080" + "default.handlebars->31->2081" ] }, { @@ -4301,7 +4301,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->31->1948" + "default.handlebars->31->1949" ] }, { @@ -4321,7 +4321,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->31->1877" + "default.handlebars->31->1878" ] }, { @@ -4453,7 +4453,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->31->2250" + "default.handlebars->31->2251" ] }, { @@ -4556,7 +4556,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->31->2266" + "default.handlebars->31->2267" ] }, { @@ -4743,7 +4743,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->31->2282" + "default.handlebars->31->2283" ] }, { @@ -4806,7 +4806,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->31->1840" + "default.handlebars->31->1841" ] }, { @@ -4846,7 +4846,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->31->1838" + "default.handlebars->31->1839" ] }, { @@ -4889,7 +4889,7 @@ "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ "default.handlebars->31->1558", - "default.handlebars->31->2041" + "default.handlebars->31->2042" ] }, { @@ -5054,8 +5054,8 @@ "zh-cht": "一直通知", "xloc": [ "default.handlebars->31->1470", - "default.handlebars->31->2002", - "default.handlebars->31->2089", + "default.handlebars->31->2003", + "default.handlebars->31->2090", "default.handlebars->31->659" ] }, @@ -5077,8 +5077,8 @@ "zh-cht": "一直提示", "xloc": [ "default.handlebars->31->1471", - "default.handlebars->31->2003", - "default.handlebars->31->2090", + "default.handlebars->31->2004", + "default.handlebars->31->2091", "default.handlebars->31->660" ] }, @@ -5850,7 +5850,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->31->2330" + "default.handlebars->31->2331" ] }, { @@ -5990,7 +5990,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->31->2093" + "default.handlebars->31->2094" ] }, { @@ -6181,7 +6181,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->31->2275" + "default.handlebars->31->2276" ] }, { @@ -6427,7 +6427,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->31->2095" + "default.handlebars->31->2096" ] }, { @@ -6447,7 +6447,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->31->2257" + "default.handlebars->31->2258" ] }, { @@ -6467,7 +6467,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->31->2256" + "default.handlebars->31->2257" ] }, { @@ -6679,7 +6679,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->31->2009", + "default.handlebars->31->2010", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6700,7 +6700,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->31->1930" + "default.handlebars->31->1931" ] }, { @@ -6720,7 +6720,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->31->1925" + "default.handlebars->31->1926" ] }, { @@ -6852,7 +6852,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->31->2314" + "default.handlebars->31->2315" ] }, { @@ -6872,7 +6872,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->31->2315" + "default.handlebars->31->2316" ] }, { @@ -6933,7 +6933,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->31->2271" + "default.handlebars->31->2272" ] }, { @@ -6953,7 +6953,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2274" + "default.handlebars->31->2275" ] }, { @@ -6973,7 +6973,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2273" + "default.handlebars->31->2274" ] }, { @@ -6993,7 +6993,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2272" + "default.handlebars->31->2273" ] }, { @@ -7038,7 +7038,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->31->1848" + "default.handlebars->31->1849" ] }, { @@ -7058,8 +7058,8 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->31->1852", - "default.handlebars->31->1917", + "default.handlebars->31->1853", + "default.handlebars->31->1918", "default.handlebars->31->523" ] }, @@ -7097,7 +7097,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->31->2331" + "default.handlebars->31->2332" ] }, { @@ -7121,7 +7121,7 @@ "default-mobile.handlebars->11->104", "default-mobile.handlebars->dialog->idx_dlgButtonBar", "default.handlebars->31->1435", - "default.handlebars->31->2320", + "default.handlebars->31->2321", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -7277,7 +7277,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->31->2127" + "default.handlebars->31->2128" ] }, { @@ -7321,7 +7321,7 @@ "xloc": [ "default-mobile.handlebars->11->112", "default.handlebars->31->1402", - "default.handlebars->31->2112" + "default.handlebars->31->2113" ] }, { @@ -7341,7 +7341,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->31->2136" + "default.handlebars->31->2137" ] }, { @@ -7361,7 +7361,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->31->2122" + "default.handlebars->31->2123" ] }, { @@ -7443,7 +7443,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->31->2111" + "default.handlebars->31->2112" ] }, { @@ -7624,9 +7624,9 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->31->1869", - "default.handlebars->31->2107", + "default.handlebars->31->1870", "default.handlebars->31->2108", + "default.handlebars->31->2109", "default.handlebars->31->685", "default.handlebars->31->757", "default.handlebars->31->779" @@ -7661,7 +7661,7 @@ "fr": "Demande de discussion, cliquez ici pour accepter.", "xloc": [ "default-mobile.handlebars->11->601", - "default.handlebars->31->2226" + "default.handlebars->31->2227" ] }, { @@ -7802,7 +7802,7 @@ "zh-cht": "檢查...", "xloc": [ "default.handlebars->31->1174", - "default.handlebars->31->2325" + "default.handlebars->31->2326" ] }, { @@ -8090,7 +8090,7 @@ "zh-cht": "全部清除", "xloc": [ "default-mobile.handlebars->11->584", - "default.handlebars->31->2209" + "default.handlebars->31->2210" ] }, { @@ -8173,7 +8173,7 @@ "zh-cht": "清除此通知", "xloc": [ "default-mobile.handlebars->11->583", - "default.handlebars->31->2208" + "default.handlebars->31->2209" ] }, { @@ -8274,7 +8274,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->31->1986" + "default.handlebars->31->1987" ] }, { @@ -8512,7 +8512,7 @@ "default.handlebars->31->1005", "default.handlebars->31->152", "default.handlebars->31->160", - "default.handlebars->31->2319", + "default.handlebars->31->2320", "default.handlebars->31->972" ] }, @@ -8678,8 +8678,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->31->2017", - "default.handlebars->31->2141" + "default.handlebars->31->2018", + "default.handlebars->31->2142" ] }, { @@ -8699,8 +8699,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->31->2023", - "default.handlebars->31->2153" + "default.handlebars->31->2024", + "default.handlebars->31->2154" ] }, { @@ -8752,10 +8752,10 @@ "default-mobile.handlebars->11->321", "default-mobile.handlebars->11->525", "default.handlebars->31->1535", - "default.handlebars->31->1897", - "default.handlebars->31->1976", - "default.handlebars->31->2037", - "default.handlebars->31->2139", + "default.handlebars->31->1898", + "default.handlebars->31->1977", + "default.handlebars->31->2038", + "default.handlebars->31->2140", "default.handlebars->31->487", "default.handlebars->31->858", "default.handlebars->31->867" @@ -8839,7 +8839,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->31->1896" + "default.handlebars->31->1897" ] }, { @@ -8879,7 +8879,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->31->1975" + "default.handlebars->31->1976" ] }, { @@ -8899,7 +8899,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->31->2138" + "default.handlebars->31->2139" ] }, { @@ -8919,7 +8919,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->31->2040" + "default.handlebars->31->2041" ] }, { @@ -8939,7 +8939,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->31->2170" + "default.handlebars->31->2171" ] }, { @@ -9040,8 +9040,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2030", - "default.handlebars->31->2161" + "default.handlebars->31->2031", + "default.handlebars->31->2162" ] }, { @@ -9061,8 +9061,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2032", - "default.handlebars->31->2174" + "default.handlebars->31->2033", + "default.handlebars->31->2175" ] }, { @@ -9082,7 +9082,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2163" + "default.handlebars->31->2164" ] }, { @@ -9102,7 +9102,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2166" + "default.handlebars->31->2167" ] }, { @@ -9122,8 +9122,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->31->2164", - "default.handlebars->31->2167" + "default.handlebars->31->2165", + "default.handlebars->31->2168" ] }, { @@ -9181,7 +9181,7 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->31->2159" + "default.handlebars->31->2160" ] }, { @@ -9508,7 +9508,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->31->2262" + "default.handlebars->31->2263" ] }, { @@ -9528,7 +9528,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->31->2267" + "default.handlebars->31->2268" ] }, { @@ -9619,7 +9619,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->31->2281" + "default.handlebars->31->2282" ] }, { @@ -9639,7 +9639,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->31->2313" + "default.handlebars->31->2314" ] }, { @@ -9790,7 +9790,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->31->2297" + "default.handlebars->31->2298" ] }, { @@ -10199,7 +10199,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->31->2296" + "default.handlebars->31->2297" ] }, { @@ -10239,7 +10239,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->31->1944", + "default.handlebars->31->1945", "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" @@ -10282,7 +10282,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->31->1983" + "default.handlebars->31->1984" ] }, { @@ -10402,7 +10402,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->31->1908" + "default.handlebars->31->1909" ] }, { @@ -10518,7 +10518,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->31->2069" + "default.handlebars->31->2070" ] }, { @@ -10816,7 +10816,7 @@ "fr": "Le mot de passe actuel n'est pas correct.", "xloc": [ "default-mobile.handlebars->11->611", - "default.handlebars->31->2236" + "default.handlebars->31->2237" ] }, { @@ -11084,10 +11084,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->31->1931", - "default.handlebars->31->1979", - "default.handlebars->31->1990", - "default.handlebars->31->2058" + "default.handlebars->31->1932", + "default.handlebars->31->1980", + "default.handlebars->31->1991", + "default.handlebars->31->2059" ] }, { @@ -11171,7 +11171,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->31->1898" + "default.handlebars->31->1899" ] }, { @@ -11276,7 +11276,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->31->2110" + "default.handlebars->31->2111" ] }, { @@ -11296,8 +11296,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->31->2028", - "default.handlebars->31->2038" + "default.handlebars->31->2029", + "default.handlebars->31->2039" ] }, { @@ -11317,7 +11317,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->31->1977" + "default.handlebars->31->1978" ] }, { @@ -11337,7 +11337,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->31->2137" + "default.handlebars->31->2138" ] }, { @@ -11358,7 +11358,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->31->1894", + "default.handlebars->31->1895", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -11399,7 +11399,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->31->1973" + "default.handlebars->31->1974" ] }, { @@ -11482,7 +11482,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->31->2036" + "default.handlebars->31->2037" ] }, { @@ -11689,10 +11689,10 @@ "default.handlebars->31->1414", "default.handlebars->31->1451", "default.handlebars->31->1538", - "default.handlebars->31->1982", - "default.handlebars->31->1992", + "default.handlebars->31->1983", "default.handlebars->31->1993", - "default.handlebars->31->2034", + "default.handlebars->31->1994", + "default.handlebars->31->2035", "default.handlebars->31->603", "default.handlebars->31->604", "default.handlebars->31->906", @@ -11736,7 +11736,7 @@ "xloc": [ "default-mobile.handlebars->11->297", "default.handlebars->31->1544", - "default.handlebars->31->2186", + "default.handlebars->31->2187", "default.handlebars->31->568", "default.handlebars->31->738", "default.handlebars->31->794", @@ -11784,8 +11784,8 @@ "zh-cht": "桌面通知", "xloc": [ "default.handlebars->31->1465", - "default.handlebars->31->1997", - "default.handlebars->31->2084", + "default.handlebars->31->1998", + "default.handlebars->31->2085", "default.handlebars->31->654" ] }, @@ -11807,8 +11807,8 @@ "zh-cht": "桌面提示", "xloc": [ "default.handlebars->31->1464", - "default.handlebars->31->1996", - "default.handlebars->31->2083", + "default.handlebars->31->1997", + "default.handlebars->31->2084", "default.handlebars->31->653" ] }, @@ -11830,8 +11830,8 @@ "zh-cht": "桌面提示+工具欄", "xloc": [ "default.handlebars->31->1462", - "default.handlebars->31->1994", - "default.handlebars->31->2081", + "default.handlebars->31->1995", + "default.handlebars->31->2082", "default.handlebars->31->651" ] }, @@ -11895,8 +11895,8 @@ "zh-cht": "桌面工具欄", "xloc": [ "default.handlebars->31->1463", - "default.handlebars->31->1995", - "default.handlebars->31->2082", + "default.handlebars->31->1996", + "default.handlebars->31->2083", "default.handlebars->31->652" ] }, @@ -12012,7 +12012,7 @@ "default.handlebars->31->1063", "default.handlebars->31->1567", "default.handlebars->31->201", - "default.handlebars->31->2156", + "default.handlebars->31->2157", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -12080,12 +12080,12 @@ "default.handlebars->31->1562", "default.handlebars->31->1565", "default.handlebars->31->1566", - "default.handlebars->31->1845", - "default.handlebars->31->2020", - "default.handlebars->31->2026", - "default.handlebars->31->2144", - "default.handlebars->31->2195", - "default.handlebars->31->2214" + "default.handlebars->31->1846", + "default.handlebars->31->2021", + "default.handlebars->31->2027", + "default.handlebars->31->2145", + "default.handlebars->31->2196", + "default.handlebars->31->2215" ] }, { @@ -12127,11 +12127,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->31->1861", - "default.handlebars->31->1967", - "default.handlebars->31->2007", - "default.handlebars->31->2078", - "default.handlebars->31->2265", + "default.handlebars->31->1862", + "default.handlebars->31->1968", + "default.handlebars->31->2008", + "default.handlebars->31->2079", + "default.handlebars->31->2266", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -12213,7 +12213,7 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->31->2194", + "default.handlebars->31->2195", "default.handlebars->31->314", "default.handlebars->31->904", "player.handlebars->3->9" @@ -12840,6 +12840,12 @@ "default.handlebars->31->475" ] }, + { + "en": "Device requested Intel(R) AMT ACM TLS activation, FQDN: {0}", + "xloc": [ + "default.handlebars->31->1836" + ] + }, { "cs": "Zařízení požadovalo aktivaci Intel (R) AMT ACM, FQDN: {0}", "de": "Gerät hat Intel (R) AMT ACM-Aktivierung angefordert, FQDN: {0}", @@ -12894,8 +12900,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->31->1968", - "default.handlebars->31->2008" + "default.handlebars->31->1969", + "default.handlebars->31->2009" ] }, { @@ -13249,10 +13255,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->31->1932", - "default.handlebars->31->1980", - "default.handlebars->31->1989", - "default.handlebars->31->2057", + "default.handlebars->31->1933", + "default.handlebars->31->1981", + "default.handlebars->31->1990", + "default.handlebars->31->2058", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -13540,7 +13546,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->31->1850", + "default.handlebars->31->1851", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -13749,7 +13755,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->31->1851" + "default.handlebars->31->1852" ] }, { @@ -13769,7 +13775,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->31->1916" + "default.handlebars->31->1917" ] }, { @@ -13898,7 +13904,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->31->2261" + "default.handlebars->31->2262" ] }, { @@ -13938,7 +13944,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->31->1984" + "default.handlebars->31->1985" ] }, { @@ -13975,8 +13981,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->31->2180", - "default.handlebars->31->2200", + "default.handlebars->31->2181", + "default.handlebars->31->2201", "player.handlebars->3->2" ] }, @@ -14640,7 +14646,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->31->2035" + "default.handlebars->31->2036" ] }, { @@ -14762,11 +14768,11 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->11->100", - "default.handlebars->31->1934", - "default.handlebars->31->2061", - "default.handlebars->31->2063", - "default.handlebars->31->2103", - "default.handlebars->31->2123", + "default.handlebars->31->1935", + "default.handlebars->31->2062", + "default.handlebars->31->2064", + "default.handlebars->31->2104", + "default.handlebars->31->2124", "default.handlebars->31->347", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -14920,7 +14926,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->31->1880" + "default.handlebars->31->1881" ] }, { @@ -14940,8 +14946,8 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->31->1881", - "default.handlebars->31->2055" + "default.handlebars->31->1882", + "default.handlebars->31->2056" ] }, { @@ -14961,7 +14967,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->31->1940" + "default.handlebars->31->1941" ] }, { @@ -14981,7 +14987,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->31->2056" + "default.handlebars->31->2057" ] }, { @@ -15002,7 +15008,7 @@ "zh-cht": "電郵已發送。", "xloc": [ "default-mobile.handlebars->11->604", - "default.handlebars->31->2229", + "default.handlebars->31->2230", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->3" @@ -15047,7 +15053,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->31->1941" + "default.handlebars->31->1942" ] }, { @@ -15071,7 +15077,7 @@ "en": "Email/SMS/Push Traffic", "nl": "Email/SMS/Push verkeer", "xloc": [ - "default.handlebars->31->2305" + "default.handlebars->31->2306" ] }, { @@ -15198,7 +15204,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->31->2202" + "default.handlebars->31->2203" ] }, { @@ -15267,7 +15273,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->31->2199" + "default.handlebars->31->2200" ] }, { @@ -15651,7 +15657,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->31->1945" + "default.handlebars->31->1946" ] }, { @@ -15802,7 +15808,7 @@ "fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.", "xloc": [ "default-mobile.handlebars->11->612", - "default.handlebars->31->2237" + "default.handlebars->31->2238" ] }, { @@ -15811,7 +15817,7 @@ "fr": "Erreur, mot de passe non modifié.", "xloc": [ "default-mobile.handlebars->11->609", - "default.handlebars->31->2234" + "default.handlebars->31->2235" ] }, { @@ -15820,7 +15826,7 @@ "fr": "Erreur, impossible de changer le mot de passe couramment utilisé.", "xloc": [ "default-mobile.handlebars->11->608", - "default.handlebars->31->2233" + "default.handlebars->31->2234" ] }, { @@ -15829,7 +15835,7 @@ "fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.", "xloc": [ "default-mobile.handlebars->11->607", - "default.handlebars->31->2232" + "default.handlebars->31->2233" ] }, { @@ -15938,7 +15944,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->31->1856" + "default.handlebars->31->1857" ] }, { @@ -16168,7 +16174,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->31->2288" + "default.handlebars->31->2289" ] }, { @@ -16257,7 +16263,7 @@ "fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.", "xloc": [ "default-mobile.handlebars->11->603", - "default.handlebars->31->2228" + "default.handlebars->31->2229" ] }, { @@ -16544,7 +16550,7 @@ "default-mobile.handlebars->11->201", "default-mobile.handlebars->11->298", "default.handlebars->31->1551", - "default.handlebars->31->2187", + "default.handlebars->31->2188", "default.handlebars->31->285", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -16588,8 +16594,8 @@ "zh-cht": "檔案通知", "xloc": [ "default.handlebars->31->1469", - "default.handlebars->31->2001", - "default.handlebars->31->2088", + "default.handlebars->31->2002", + "default.handlebars->31->2089", "default.handlebars->31->658" ] }, @@ -16611,8 +16617,8 @@ "zh-cht": "檔案提示", "xloc": [ "default.handlebars->31->1468", - "default.handlebars->31->2000", - "default.handlebars->31->2087", + "default.handlebars->31->2001", + "default.handlebars->31->2088", "default.handlebars->31->657" ] }, @@ -16927,8 +16933,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->31->1939", - "default.handlebars->31->2134" + "default.handlebars->31->1940", + "default.handlebars->31->2135" ] }, { @@ -17011,7 +17017,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->31->1847" + "default.handlebars->31->1848" ] }, { @@ -17052,8 +17058,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->31->2246", - "default.handlebars->31->2248" + "default.handlebars->31->2247", + "default.handlebars->31->2249" ] }, { @@ -17280,7 +17286,7 @@ "default-mobile.handlebars->11->554", "default.handlebars->31->1423", "default.handlebars->31->1570", - "default.handlebars->31->1951" + "default.handlebars->31->1952" ] }, { @@ -17419,7 +17425,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->31->2049" + "default.handlebars->31->2050" ] }, { @@ -18067,8 +18073,8 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->31->1895", - "default.handlebars->31->1974", + "default.handlebars->31->1896", + "default.handlebars->31->1975", "default.handlebars->31->485", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -18092,7 +18098,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->31->1843" + "default.handlebars->31->1844" ] }, { @@ -18112,7 +18118,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->31->1991" + "default.handlebars->31->1992" ] }, { @@ -18132,7 +18138,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->31->2012" + "default.handlebars->31->2013" ] }, { @@ -18392,7 +18398,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->31->2290" + "default.handlebars->31->2291" ] }, { @@ -18412,7 +18418,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->31->2289" + "default.handlebars->31->2290" ] }, { @@ -19616,7 +19622,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->31->2286" + "default.handlebars->31->2287" ] }, { @@ -19624,7 +19630,7 @@ "fr": "Gestionnaire Intel AMT", "nl": "Intel AMT beheerder", "xloc": [ - "default.handlebars->31->2312" + "default.handlebars->31->2313" ] }, { @@ -19672,7 +19678,7 @@ "default.handlebars->31->1487", "default.handlebars->31->1659", "default.handlebars->31->1672", - "default.handlebars->31->2311", + "default.handlebars->31->2312", "default.handlebars->31->570", "default.handlebars->31->628", "default.handlebars->31->668" @@ -19862,7 +19868,7 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->31->2189", + "default.handlebars->31->2190", "player.handlebars->3->14" ] }, @@ -19903,7 +19909,7 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->31->2188", + "default.handlebars->31->2189", "player.handlebars->3->13" ] }, @@ -20549,7 +20555,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->31->2260" + "default.handlebars->31->2261" ] }, { @@ -20569,7 +20575,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->31->2254" + "default.handlebars->31->2255" ] }, { @@ -20589,8 +20595,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->31->1913", - "default.handlebars->31->1915" + "default.handlebars->31->1914", + "default.handlebars->31->1916" ] }, { @@ -20610,7 +20616,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->31->1911" + "default.handlebars->31->1912" ] }, { @@ -20630,7 +20636,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->31->2252" + "default.handlebars->31->2253" ] }, { @@ -20650,7 +20656,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->31->2253" + "default.handlebars->31->2254" ] }, { @@ -20659,7 +20665,7 @@ "fr": "Message SMS non valide", "xloc": [ "default-mobile.handlebars->11->615", - "default.handlebars->31->2240" + "default.handlebars->31->2241" ] }, { @@ -20690,7 +20696,7 @@ "fr": "Domaine non valide", "xloc": [ "default-mobile.handlebars->11->595", - "default.handlebars->31->2220" + "default.handlebars->31->2221" ] }, { @@ -20699,7 +20705,7 @@ "fr": "Email invalide", "xloc": [ "default-mobile.handlebars->11->594", - "default.handlebars->31->2219" + "default.handlebars->31->2220" ] }, { @@ -20772,7 +20778,7 @@ "xloc": [ "default-mobile.handlebars->11->593", "default-mobile.handlebars->11->77", - "default.handlebars->31->2218", + "default.handlebars->31->2219", "default.handlebars->31->229" ] }, @@ -20782,7 +20788,7 @@ "fr": "Autorisations de site non valides", "xloc": [ "default-mobile.handlebars->11->596", - "default.handlebars->31->2221" + "default.handlebars->31->2222" ] }, { @@ -20821,7 +20827,7 @@ "fr": "Nom d'utilisateur invalide", "xloc": [ "default-mobile.handlebars->11->592", - "default.handlebars->31->2217" + "default.handlebars->31->2218" ] }, { @@ -20841,7 +20847,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->31->1889" + "default.handlebars->31->1890" ] }, { @@ -20986,7 +20992,7 @@ "default.handlebars->31->1644", "default.handlebars->31->1646", "default.handlebars->31->1651", - "default.handlebars->31->2215" + "default.handlebars->31->2216" ] }, { @@ -21127,7 +21133,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->31->1849" + "default.handlebars->31->1850" ] }, { @@ -21147,8 +21153,8 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->31->1854", - "default.handlebars->31->1919", + "default.handlebars->31->1855", + "default.handlebars->31->1920", "default.handlebars->31->525" ] }, @@ -21810,7 +21816,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->31->1862" + "default.handlebars->31->1863" ] }, { @@ -21830,7 +21836,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->31->2070" + "default.handlebars->31->2071" ] }, { @@ -21902,7 +21908,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->31->2074" + "default.handlebars->31->2075" ] }, { @@ -21962,7 +21968,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->31->1872" + "default.handlebars->31->1873" ] }, { @@ -22163,7 +22169,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->31->2118" + "default.handlebars->31->2119" ] }, { @@ -22237,7 +22243,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->31->2333" + "default.handlebars->31->2334" ] }, { @@ -22888,8 +22894,8 @@ "default.handlebars->31->1162", "default.handlebars->31->1439", "default.handlebars->31->1443", - "default.handlebars->31->2129", - "default.handlebars->31->2176", + "default.handlebars->31->2130", + "default.handlebars->31->2177", "default.handlebars->31->871" ] }, @@ -23073,7 +23079,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->31->1959" + "default.handlebars->31->1960" ] }, { @@ -23093,7 +23099,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->31->1962" + "default.handlebars->31->1963" ] }, { @@ -23113,7 +23119,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->31->1892" + "default.handlebars->31->1893" ] }, { @@ -23141,7 +23147,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->31->1873" + "default.handlebars->31->1874" ] }, { @@ -23162,7 +23168,7 @@ "zh-cht": "被鎖定賬戶", "xloc": [ "default-mobile.handlebars->11->76", - "default.handlebars->31->2046", + "default.handlebars->31->2047", "default.handlebars->31->228" ] }, @@ -23817,7 +23823,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->31->2299" + "default.handlebars->31->2300" ] }, { @@ -23984,7 +23990,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->31->1957" + "default.handlebars->31->1958" ] }, { @@ -24024,7 +24030,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->31->1956" + "default.handlebars->31->1957" ] }, { @@ -24044,7 +24050,7 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->31->1955", + "default.handlebars->31->1956", "default.handlebars->31->764" ] }, @@ -24212,7 +24218,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->31->1878" + "default.handlebars->31->1879" ] }, { @@ -24327,7 +24333,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->31->2258" + "default.handlebars->31->2259" ] }, { @@ -24392,7 +24398,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->31->2287" + "default.handlebars->31->2288" ] }, { @@ -24414,7 +24420,7 @@ "xloc": [ "default-mobile.handlebars->11->485", "default.handlebars->31->1124", - "default.handlebars->31->2278", + "default.handlebars->31->2279", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -24613,7 +24619,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->31->2301" + "default.handlebars->31->2302" ] }, { @@ -24633,7 +24639,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->31->2302" + "default.handlebars->31->2303" ] }, { @@ -24762,7 +24768,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->31->2300" + "default.handlebars->31->2301" ] }, { @@ -25139,7 +25145,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->31->2298" + "default.handlebars->31->2299" ] }, { @@ -25341,7 +25347,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->31->2332" + "default.handlebars->31->2333" ] }, { @@ -25490,7 +25496,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->31->2201" + "default.handlebars->31->2202" ] }, { @@ -25899,12 +25905,12 @@ "default.handlebars->31->1410", "default.handlebars->31->1450", "default.handlebars->31->1537", - "default.handlebars->31->1860", - "default.handlebars->31->1965", - "default.handlebars->31->1981", - "default.handlebars->31->1988", - "default.handlebars->31->2033", - "default.handlebars->31->2052", + "default.handlebars->31->1861", + "default.handlebars->31->1966", + "default.handlebars->31->1982", + "default.handlebars->31->1989", + "default.handlebars->31->2034", + "default.handlebars->31->2053", "default.handlebars->31->593", "default.handlebars->31->91", "default.handlebars->31->962", @@ -25950,7 +25956,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->31->1947" + "default.handlebars->31->1948" ] }, { @@ -26119,7 +26125,7 @@ "fr": "Nouveau compte", "xloc": [ "default-mobile.handlebars->11->585", - "default.handlebars->31->2210" + "default.handlebars->31->2211" ] }, { @@ -26466,8 +26472,8 @@ "zh-cht": "找不到事件", "xloc": [ "default.handlebars->31->1047", - "default.handlebars->31->1836", - "default.handlebars->31->2175" + "default.handlebars->31->1837", + "default.handlebars->31->2176" ] }, { @@ -26635,7 +26641,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->31->2015" + "default.handlebars->31->2016" ] }, { @@ -26655,7 +26661,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->31->1960" + "default.handlebars->31->1961" ] }, { @@ -26788,7 +26794,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->31->1961" + "default.handlebars->31->1962" ] }, { @@ -26838,8 +26844,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->31->2021", - "default.handlebars->31->2145" + "default.handlebars->31->2022", + "default.handlebars->31->2146" ] }, { @@ -26959,8 +26965,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->31->2027", - "default.handlebars->31->2157" + "default.handlebars->31->2028", + "default.handlebars->31->2158" ] }, { @@ -27083,7 +27089,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->31->1964" + "default.handlebars->31->1965" ] }, { @@ -27182,7 +27188,7 @@ "fr": "Aucun numéro de téléphone pour cet utilisateur", "xloc": [ "default-mobile.handlebars->11->616", - "default.handlebars->31->2241" + "default.handlebars->31->2242" ] }, { @@ -27222,7 +27228,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->31->2177" + "default.handlebars->31->2178" ] }, { @@ -27242,7 +27248,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->31->2047" + "default.handlebars->31->2048" ] }, { @@ -27262,7 +27268,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->31->2151" + "default.handlebars->31->2152" ] }, { @@ -27271,7 +27277,7 @@ "fr": "Aucun droit de gestion des utilisateurs", "xloc": [ "default-mobile.handlebars->11->614", - "default.handlebars->31->2239" + "default.handlebars->31->2240" ] }, { @@ -27291,7 +27297,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->31->1868" + "default.handlebars->31->1869" ] }, { @@ -27391,15 +27397,15 @@ "default.handlebars->31->1666", "default.handlebars->31->1691", "default.handlebars->31->1696", - "default.handlebars->31->1844", + "default.handlebars->31->1845", "default.handlebars->31->192", - "default.handlebars->31->1985", - "default.handlebars->31->1987", - "default.handlebars->31->2004", - "default.handlebars->31->2066", - "default.handlebars->31->2075", - "default.handlebars->31->2079", - "default.handlebars->31->2091", + "default.handlebars->31->1986", + "default.handlebars->31->1988", + "default.handlebars->31->2005", + "default.handlebars->31->2067", + "default.handlebars->31->2076", + "default.handlebars->31->2080", + "default.handlebars->31->2092", "default.handlebars->31->211", "default.handlebars->31->258", "default.handlebars->31->259", @@ -27624,7 +27630,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->31->2193" + "default.handlebars->31->2194" ] }, { @@ -27644,8 +27650,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->31->2053", - "default.handlebars->31->2054" + "default.handlebars->31->2054", + "default.handlebars->31->2055" ] }, { @@ -27665,7 +27671,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->31->2125" + "default.handlebars->31->2126" ] }, { @@ -27686,7 +27692,7 @@ "zh-cht": "筆記", "xloc": [ "default.handlebars->31->1488", - "default.handlebars->31->2099", + "default.handlebars->31->2100", "default.handlebars->31->679", "default.handlebars->31->755", "default.handlebars->31->777", @@ -27813,7 +27819,7 @@ "zh-cht": "通知", "xloc": [ "default.handlebars->31->208", - "default.handlebars->31->2105" + "default.handlebars->31->2106" ] }, { @@ -27875,7 +27881,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->31->1907" + "default.handlebars->31->1908" ] }, { @@ -27883,7 +27889,7 @@ "fr": "Null", "nl": "Null", "xloc": [ - "default.handlebars->31->2292" + "default.handlebars->31->2293" ] }, { @@ -27987,7 +27993,7 @@ "zh-cht": "發生在{0}", "xloc": [ "default-mobile.handlebars->11->582", - "default.handlebars->31->2207" + "default.handlebars->31->2208" ] }, { @@ -28027,7 +28033,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->31->1865" + "default.handlebars->31->1866" ] }, { @@ -28088,7 +28094,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->31->1841" + "default.handlebars->31->1842" ] }, { @@ -28151,7 +28157,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->31->1864" + "default.handlebars->31->1865" ] }, { @@ -28382,8 +28388,8 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->31->1891", - "default.handlebars->31->1972", + "default.handlebars->31->1892", + "default.handlebars->31->1973", "default.handlebars->31->483", "default.handlebars->31->498", "default.handlebars->31->830" @@ -28632,7 +28638,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->31->1879" + "default.handlebars->31->1880" ] }, { @@ -28708,7 +28714,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->31->2050" + "default.handlebars->31->2051" ] }, { @@ -28750,12 +28756,12 @@ "xloc": [ "default-mobile.handlebars->11->314", "default.handlebars->31->1512", - "default.handlebars->31->1935", "default.handlebars->31->1936", - "default.handlebars->31->2071", - "default.handlebars->31->2073", - "default.handlebars->31->2130", + "default.handlebars->31->1937", + "default.handlebars->31->2072", + "default.handlebars->31->2074", "default.handlebars->31->2131", + "default.handlebars->31->2132", "default.handlebars->31->319", "default.handlebars->31->846", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", @@ -28866,7 +28872,7 @@ "fr": "Mot de passe changé.", "xloc": [ "default-mobile.handlebars->11->610", - "default.handlebars->31->2235" + "default.handlebars->31->2236" ] }, { @@ -28907,7 +28913,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->31->2132" + "default.handlebars->31->2133" ] }, { @@ -29330,7 +29336,7 @@ "fr": "Permission refusée", "xloc": [ "default-mobile.handlebars->11->591", - "default.handlebars->31->2216" + "default.handlebars->31->2217" ] }, { @@ -29352,7 +29358,7 @@ "xloc": [ "default-mobile.handlebars->11->576", "default.handlebars->31->1630", - "default.handlebars->31->1863" + "default.handlebars->31->1864" ] }, { @@ -29398,7 +29404,7 @@ "default.handlebars->31->1154", "default.handlebars->31->1157", "default.handlebars->31->174", - "default.handlebars->31->2120" + "default.handlebars->31->2121" ] }, { @@ -29418,7 +29424,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->31->2065" + "default.handlebars->31->2066" ] }, { @@ -29440,7 +29446,7 @@ "xloc": [ "default-mobile.handlebars->11->88", "default.handlebars->31->1156", - "default.handlebars->31->2119" + "default.handlebars->31->2120" ] }, { @@ -29620,7 +29626,7 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->31->219", - "default.handlebars->31->2329" + "default.handlebars->31->2330" ] }, { @@ -30035,7 +30041,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->31->2192" + "default.handlebars->31->2193" ] }, { @@ -30129,8 +30135,8 @@ "default-mobile.handlebars->11->78", "default-mobile.handlebars->11->79", "default.handlebars->31->1150", - "default.handlebars->31->2114", - "default.handlebars->31->2128", + "default.handlebars->31->2115", + "default.handlebars->31->2129", "default.handlebars->31->230" ] }, @@ -30322,7 +30328,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->31->2190", + "default.handlebars->31->2191", "player.handlebars->3->16" ] }, @@ -30703,7 +30709,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->31->2291" + "default.handlebars->31->2292" ] }, { @@ -30763,7 +30769,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->31->1937" + "default.handlebars->31->1938" ] }, { @@ -30820,9 +30826,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->31->2062", - "default.handlebars->31->2064", - "default.handlebars->31->2121" + "default.handlebars->31->2063", + "default.handlebars->31->2065", + "default.handlebars->31->2122" ] }, { @@ -30842,7 +30848,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->31->1946" + "default.handlebars->31->1947" ] }, { @@ -30945,7 +30951,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->31->2204" + "default.handlebars->31->2205" ] }, { @@ -31119,7 +31125,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->31->2270" + "default.handlebars->31->2271" ] }, { @@ -31139,7 +31145,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->31->2263" + "default.handlebars->31->2264" ] }, { @@ -31159,8 +31165,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->31->2269", - "default.handlebars->31->2285" + "default.handlebars->31->2270", + "default.handlebars->31->2286" ] }, { @@ -31727,8 +31733,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->31->2031", - "default.handlebars->31->2173" + "default.handlebars->31->2032", + "default.handlebars->31->2174" ] }, { @@ -31748,8 +31754,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->31->2029", - "default.handlebars->31->2160" + "default.handlebars->31->2030", + "default.handlebars->31->2161" ] }, { @@ -31769,7 +31775,7 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->31->2158" + "default.handlebars->31->2159" ] }, { @@ -31806,7 +31812,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->31->2169" + "default.handlebars->31->2170" ] }, { @@ -31827,7 +31833,7 @@ "zh-cht": "刪除用戶群權限", "xloc": [ "default.handlebars->31->1635", - "default.handlebars->31->2165" + "default.handlebars->31->2166" ] }, { @@ -31847,7 +31853,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->31->2039" + "default.handlebars->31->2040" ] }, { @@ -31868,7 +31874,7 @@ "zh-cht": "刪除用戶權限", "xloc": [ "default.handlebars->31->1633", - "default.handlebars->31->2162" + "default.handlebars->31->2163" ] }, { @@ -31888,7 +31894,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->31->2135" + "default.handlebars->31->2136" ] }, { @@ -31908,7 +31914,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->31->1938" + "default.handlebars->31->1939" ] }, { @@ -32049,7 +32055,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->31->2109" + "default.handlebars->31->2110" ] }, { @@ -32069,7 +32075,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->31->2149" + "default.handlebars->31->2150" ] }, { @@ -32089,7 +32095,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->31->2025" + "default.handlebars->31->2026" ] }, { @@ -32109,7 +32115,7 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->31->2019", + "default.handlebars->31->2020", "default.handlebars->31->728" ] }, @@ -32131,9 +32137,9 @@ "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ "default.handlebars->31->1501", - "default.handlebars->31->2013", - "default.handlebars->31->2143", - "default.handlebars->31->2155", + "default.handlebars->31->2014", + "default.handlebars->31->2144", + "default.handlebars->31->2156", "default.handlebars->31->729" ] }, @@ -32386,7 +32392,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->31->1842" + "default.handlebars->31->1843" ] }, { @@ -32406,7 +32412,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->31->1837" + "default.handlebars->31->1838" ] }, { @@ -32447,8 +32453,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->11->111", - "default.handlebars->31->1943", - "default.handlebars->31->2133" + "default.handlebars->31->1944", + "default.handlebars->31->2134" ] }, { @@ -32807,7 +32813,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->31->2051" + "default.handlebars->31->2052" ] }, { @@ -33296,8 +33302,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->31->2096", - "default.handlebars->31->2101", + "default.handlebars->31->2097", + "default.handlebars->31->2102", "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", @@ -33322,7 +33328,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->31->2117" + "default.handlebars->31->2118" ] }, { @@ -33331,7 +33337,7 @@ "fr": "Erreur SMS", "xloc": [ "default-mobile.handlebars->11->618", - "default.handlebars->31->2243" + "default.handlebars->31->2244" ] }, { @@ -33340,7 +33346,7 @@ "fr": "Erreur SMS: {0}", "xloc": [ "default-mobile.handlebars->11->619", - "default.handlebars->31->2244" + "default.handlebars->31->2245" ] }, { @@ -33349,7 +33355,7 @@ "fr": "Passerelle SMS non activée", "xloc": [ "default-mobile.handlebars->11->613", - "default.handlebars->31->2238" + "default.handlebars->31->2239" ] }, { @@ -33380,7 +33386,7 @@ "fr": "SMS envoyé avec succès.", "xloc": [ "default-mobile.handlebars->11->617", - "default.handlebars->31->2242" + "default.handlebars->31->2243" ] }, { @@ -33929,7 +33935,7 @@ "default-mobile.handlebars->11->462", "default.handlebars->31->1101", "default.handlebars->31->1680", - "default.handlebars->31->2097", + "default.handlebars->31->2098", "default.handlebars->31->320", "default.handlebars->31->847", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" @@ -33952,7 +33958,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->31->2094" + "default.handlebars->31->2095" ] }, { @@ -33961,7 +33967,7 @@ "fr": "Avertissement de sécurité", "xloc": [ "default-mobile.handlebars->11->587", - "default.handlebars->31->2212" + "default.handlebars->31->2213" ] }, { @@ -34004,8 +34010,8 @@ "default.handlebars->31->1009", "default.handlebars->31->1011", "default.handlebars->31->1706", - "default.handlebars->31->1887", - "default.handlebars->31->1970", + "default.handlebars->31->1888", + "default.handlebars->31->1971", "default.handlebars->31->466", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -34034,8 +34040,8 @@ "xloc": [ "default.handlebars->31->1010", "default.handlebars->31->1705", - "default.handlebars->31->1886", - "default.handlebars->31->1969", + "default.handlebars->31->1887", + "default.handlebars->31->1970", "default.handlebars->31->465", "default.handlebars->meshContextMenu->cxselectnone" ] @@ -34137,8 +34143,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->31->1890", - "default.handlebars->31->1971" + "default.handlebars->31->1891", + "default.handlebars->31->1972" ] }, { @@ -34265,7 +34271,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->31->1901" + "default.handlebars->31->1902" ] }, { @@ -34326,7 +34332,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->31->1899" + "default.handlebars->31->1900" ] }, { @@ -34346,7 +34352,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->31->2102" + "default.handlebars->31->2103" ] }, { @@ -34366,7 +34372,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->31->2104" + "default.handlebars->31->2105" ] }, { @@ -34386,7 +34392,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->31->2010" + "default.handlebars->31->2011" ] }, { @@ -34406,7 +34412,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->31->1902" + "default.handlebars->31->1903" ] }, { @@ -34426,7 +34432,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->31->1882" + "default.handlebars->31->1883" ] }, { @@ -34466,7 +34472,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->31->1942" + "default.handlebars->31->1943" ] }, { @@ -34589,7 +34595,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->31->2106" + "default.handlebars->31->2107" ] }, { @@ -34658,7 +34664,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->31->1952" + "default.handlebars->31->1953" ] }, { @@ -34678,7 +34684,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->31->2303" + "default.handlebars->31->2304" ] }, { @@ -34698,7 +34704,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->31->2304" + "default.handlebars->31->2305" ] }, { @@ -34722,7 +34728,7 @@ "default-mobile.handlebars->11->560", "default.handlebars->31->1583", "default.handlebars->31->1613", - "default.handlebars->31->1949", + "default.handlebars->31->1950", "default.handlebars->31->753", "default.handlebars->31->775" ] @@ -34753,7 +34759,7 @@ "fr": "Limite du serveur", "xloc": [ "default-mobile.handlebars->11->586", - "default.handlebars->31->2211" + "default.handlebars->31->2212" ] }, { @@ -34781,8 +34787,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->31->1874", - "default.handlebars->31->1963" + "default.handlebars->31->1875", + "default.handlebars->31->1964" ] }, { @@ -34802,7 +34808,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->31->2068" + "default.handlebars->31->2069" ] }, { @@ -34822,7 +34828,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->31->1953" + "default.handlebars->31->1954" ] }, { @@ -34842,7 +34848,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->31->2067" + "default.handlebars->31->2068" ] }, { @@ -34862,7 +34868,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->31->2249" + "default.handlebars->31->2250" ] }, { @@ -34902,7 +34908,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->31->2316" + "default.handlebars->31->2317" ] }, { @@ -34910,7 +34916,7 @@ "nl": "Server Tracing Event", "fr": "Évènement du serveur", "xloc": [ - "default.handlebars->31->2295" + "default.handlebars->31->2296" ] }, { @@ -34971,7 +34977,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->31->1954" + "default.handlebars->31->1955" ] }, { @@ -35136,7 +35142,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->31->2294" + "default.handlebars->31->2295" ] }, { @@ -35196,7 +35202,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->31->2178" + "default.handlebars->31->2179" ] }, { @@ -35932,8 +35938,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->31->1905", - "default.handlebars->31->1928" + "default.handlebars->31->1906", + "default.handlebars->31->1929" ] }, { @@ -35953,8 +35959,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->31->1904", - "default.handlebars->31->1927" + "default.handlebars->31->1905", + "default.handlebars->31->1928" ] }, { @@ -35974,8 +35980,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->31->1906", - "default.handlebars->31->1929" + "default.handlebars->31->1907", + "default.handlebars->31->1930" ] }, { @@ -35995,8 +36001,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->31->1903", - "default.handlebars->31->1926" + "default.handlebars->31->1904", + "default.handlebars->31->1927" ] }, { @@ -36294,8 +36300,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->31->2181", - "default.handlebars->31->2196", + "default.handlebars->31->2182", + "default.handlebars->31->2197", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -37300,8 +37306,8 @@ "zh-cht": "開始時間", "xloc": [ "default.handlebars->31->206", - "default.handlebars->31->2179", - "default.handlebars->31->2198", + "default.handlebars->31->2180", + "default.handlebars->31->2199", "default.handlebars->31->918", "desktop.handlebars->3->14" ] @@ -37632,8 +37638,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->31->2124", - "default.handlebars->31->2191", + "default.handlebars->31->2125", + "default.handlebars->31->2192", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -37838,7 +37844,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->31->1900" + "default.handlebars->31->1901" ] }, { @@ -38439,7 +38445,7 @@ "xloc": [ "default-mobile.handlebars->11->198", "default.handlebars->31->1548", - "default.handlebars->31->2185", + "default.handlebars->31->2186", "default.handlebars->31->282", "default.handlebars->31->569", "default.handlebars->31->737", @@ -38486,8 +38492,8 @@ "zh-cht": "終端機通知", "xloc": [ "default.handlebars->31->1467", - "default.handlebars->31->1999", - "default.handlebars->31->2086", + "default.handlebars->31->2000", + "default.handlebars->31->2087", "default.handlebars->31->656" ] }, @@ -38509,8 +38515,8 @@ "zh-cht": "終端機提示", "xloc": [ "default.handlebars->31->1466", - "default.handlebars->31->1998", - "default.handlebars->31->2085", + "default.handlebars->31->1999", + "default.handlebars->31->2086", "default.handlebars->31->655" ] }, @@ -38760,7 +38766,7 @@ "zh-cht": "目前沒有任何通知", "xloc": [ "default-mobile.handlebars->11->581", - "default.handlebars->31->2206" + "default.handlebars->31->2207" ] }, { @@ -38769,7 +38775,7 @@ "fr": "Il y a eu {0} tentatives de connexion infructueuses sur ce compte depuis la dernière connexion.", "xloc": [ "default-mobile.handlebars->11->602", - "default.handlebars->31->2227" + "default.handlebars->31->2228" ] }, { @@ -39185,7 +39191,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->31->1839" + "default.handlebars->31->1840" ] }, { @@ -40322,7 +40328,7 @@ "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ "default.handlebars->31->1408", - "default.handlebars->31->2322", + "default.handlebars->31->2323", "default.handlebars->31->587" ] }, @@ -40332,7 +40338,7 @@ "fr": "Impossible d'ajouter un utilisateur dans ce mode", "xloc": [ "default-mobile.handlebars->11->598", - "default.handlebars->31->2223" + "default.handlebars->31->2224" ] }, { @@ -40565,9 +40571,9 @@ "default.handlebars->31->13", "default.handlebars->31->1440", "default.handlebars->31->1441", - "default.handlebars->31->2168", - "default.handlebars->31->2183", + "default.handlebars->31->2169", "default.handlebars->31->2184", + "default.handlebars->31->2185", "default.handlebars->31->44", "default.handlebars->31->464", "default.handlebars->31->47", @@ -40616,7 +40622,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->31->2255" + "default.handlebars->31->2256" ] }, { @@ -40636,8 +40642,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->31->2024", - "default.handlebars->31->2154" + "default.handlebars->31->2025", + "default.handlebars->31->2155" ] }, { @@ -40657,9 +40663,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->31->2018", - "default.handlebars->31->2142", - "default.handlebars->31->2259" + "default.handlebars->31->2019", + "default.handlebars->31->2143", + "default.handlebars->31->2260" ] }, { @@ -40679,7 +40685,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->31->2251" + "default.handlebars->31->2252" ] }, { @@ -40720,7 +40726,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->31->2148" + "default.handlebars->31->2149" ] }, { @@ -40803,7 +40809,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->31->1893" + "default.handlebars->31->1894" ] }, { @@ -40869,7 +40875,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->31->2327" + "default.handlebars->31->2328" ] }, { @@ -41327,8 +41333,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->31->2245", - "default.handlebars->31->2247" + "default.handlebars->31->2246", + "default.handlebars->31->2248" ] }, { @@ -41349,10 +41355,10 @@ "zh-cht": "用戶", "xloc": [ "default.handlebars->31->1502", - "default.handlebars->31->1846", - "default.handlebars->31->1875", - "default.handlebars->31->2014", - "default.handlebars->31->2203", + "default.handlebars->31->1847", + "default.handlebars->31->1876", + "default.handlebars->31->2015", + "default.handlebars->31->2204", "default.handlebars->31->242", "default.handlebars->31->731" ] @@ -41374,7 +41380,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->31->1876" + "default.handlebars->31->1877" ] }, { @@ -41394,10 +41400,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->31->1909", "default.handlebars->31->1910", - "default.handlebars->31->1912", - "default.handlebars->31->1914" + "default.handlebars->31->1911", + "default.handlebars->31->1913", + "default.handlebars->31->1915" ] }, { @@ -41417,7 +41423,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->31->2264" + "default.handlebars->31->2265" ] }, { @@ -41460,8 +41466,8 @@ "zh-cht": "用戶同意", "xloc": [ "default.handlebars->31->1473", - "default.handlebars->31->2005", - "default.handlebars->31->2092", + "default.handlebars->31->2006", + "default.handlebars->31->2093", "default.handlebars->31->212", "default.handlebars->31->662", "default.handlebars->31->818" @@ -41486,9 +41492,9 @@ "xloc": [ "default.handlebars->31->1563", "default.handlebars->31->1564", - "default.handlebars->31->1978", - "default.handlebars->31->2150", - "default.handlebars->31->2171", + "default.handlebars->31->1979", + "default.handlebars->31->2151", + "default.handlebars->31->2172", "default.handlebars->31->730" ] }, @@ -41529,7 +41535,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->31->2147" + "default.handlebars->31->2148" ] }, { @@ -41570,8 +41576,8 @@ "zh-cht": "用戶識別碼", "xloc": [ "default.handlebars->31->1629", - "default.handlebars->31->2059", - "default.handlebars->31->2060" + "default.handlebars->31->2060", + "default.handlebars->31->2061" ] }, { @@ -41592,7 +41598,7 @@ "zh-cht": "用戶標識符", "xloc": [ "default.handlebars->31->1561", - "default.handlebars->31->2043" + "default.handlebars->31->2044" ] }, { @@ -41620,7 +41626,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->31->1921" + "default.handlebars->31->1922" ] }, { @@ -41716,7 +41722,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->31->2284" + "default.handlebars->31->2285" ] }, { @@ -41809,7 +41815,7 @@ "fr": "L'utilisateur existe déjà", "xloc": [ "default-mobile.handlebars->11->597", - "default.handlebars->31->2222" + "default.handlebars->31->2223" ] }, { @@ -41940,7 +41946,7 @@ "fr": "Utilisateur {0} introuvable.", "xloc": [ "default-mobile.handlebars->11->605", - "default.handlebars->31->2230" + "default.handlebars->31->2231" ] }, { @@ -41981,7 +41987,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->313", - "default.handlebars->31->1933", + "default.handlebars->31->1934", "default.handlebars->31->317", "default.handlebars->31->845", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", @@ -42055,9 +42061,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->31->1966", - "default.handlebars->31->2006", - "default.handlebars->31->2283", + "default.handlebars->31->1967", + "default.handlebars->31->2007", + "default.handlebars->31->2284", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -42078,7 +42084,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->31->2268" + "default.handlebars->31->2269" ] }, { @@ -42087,7 +42093,7 @@ "fr": "Utilisateurs {0} introuvables.", "xloc": [ "default-mobile.handlebars->11->606", - "default.handlebars->31->2231" + "default.handlebars->31->2232" ] }, { @@ -42137,7 +42143,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->31->1888" + "default.handlebars->31->1889" ] }, { @@ -42146,7 +42152,7 @@ "fr": "Exception de validation", "xloc": [ "default-mobile.handlebars->11->599", - "default.handlebars->31->2224" + "default.handlebars->31->2225" ] }, { @@ -42250,7 +42256,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->31->2126" + "default.handlebars->31->2127" ] }, { @@ -42293,7 +42299,7 @@ "xloc": [ "default-mobile.handlebars->11->85", "default.handlebars->31->1152", - "default.handlebars->31->1884" + "default.handlebars->31->1885" ] }, { @@ -42402,7 +42408,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->31->2323" + "default.handlebars->31->2324" ] }, { @@ -42484,7 +42490,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->31->1958" + "default.handlebars->31->1959" ] }, { @@ -42504,8 +42510,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->31->2326", - "default.handlebars->31->2328" + "default.handlebars->31->2327", + "default.handlebars->31->2329" ] }, { @@ -42565,7 +42571,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->31->2100" + "default.handlebars->31->2101" ] }, { @@ -42582,7 +42588,7 @@ "nl": "Bekijk eerdere aanmeldingen voor deze gebruiker", "fr": "Historique des connexions de cet utilisateur", "xloc": [ - "default.handlebars->31->2113" + "default.handlebars->31->2114" ] }, { @@ -42920,8 +42926,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->31->2306", - "default.handlebars->31->2307" + "default.handlebars->31->2307", + "default.handlebars->31->2308" ] }, { @@ -42929,7 +42935,7 @@ "nl": "Webserver HTTP Headers", "fr": "Entêtes du serveur web HTTP", "xloc": [ - "default.handlebars->31->2310" + "default.handlebars->31->2311" ] }, { @@ -42949,7 +42955,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->31->2308" + "default.handlebars->31->2309" ] }, { @@ -42969,7 +42975,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->31->2309" + "default.handlebars->31->2310" ] }, { @@ -43169,7 +43175,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->31->2072" + "default.handlebars->31->2073" ] }, { @@ -44464,7 +44470,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->31->2324" + "default.handlebars->31->2325" ] }, { @@ -44858,8 +44864,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->31->1853", - "default.handlebars->31->1858" + "default.handlebars->31->1854", + "default.handlebars->31->1859" ] }, { @@ -44879,8 +44885,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->31->1855", - "default.handlebars->31->1859" + "default.handlebars->31->1856", + "default.handlebars->31->1860" ] }, { @@ -44920,8 +44926,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->31->2276", - "default.handlebars->31->2279" + "default.handlebars->31->2277", + "default.handlebars->31->2280" ] }, { @@ -45136,7 +45142,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->31->1922" + "default.handlebars->31->1923" ] }, { @@ -45259,7 +45265,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->31->1950" + "default.handlebars->31->1951" ] }, { @@ -45607,7 +45613,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->31->2318" + "default.handlebars->31->2319" ] }, { @@ -45673,7 +45679,7 @@ "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->31->2293" + "default.handlebars->31->2294" ] }, { @@ -45693,7 +45699,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->31->2317" + "default.handlebars->31->2318" ] }, { @@ -45730,8 +45736,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->31->2277", - "default.handlebars->31->2280" + "default.handlebars->31->2278", + "default.handlebars->31->2281" ] }, { @@ -45814,8 +45820,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->31->1918", - "default.handlebars->31->1923" + "default.handlebars->31->1919", + "default.handlebars->31->1924" ] }, { @@ -45835,8 +45841,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->31->1920", - "default.handlebars->31->1924" + "default.handlebars->31->1921", + "default.handlebars->31->1925" ] }, { @@ -45856,7 +45862,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->31->1857" + "default.handlebars->31->1858" ] }, { @@ -45940,7 +45946,7 @@ "xloc": [ "default.handlebars->31->1693", "default.handlebars->31->1698", - "default.handlebars->31->2182" + "default.handlebars->31->2183" ] }, { @@ -46006,7 +46012,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->31->2116" + "default.handlebars->31->2117" ] }, { @@ -46049,7 +46055,7 @@ "xloc": [ "default-mobile.handlebars->11->141", "default.handlebars->31->1708", - "default.handlebars->31->2197", + "default.handlebars->31->2198", "download.handlebars->3->2", "download2.handlebars->5->2" ] @@ -46139,7 +46145,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->31->2077" + "default.handlebars->31->2078" ] }, { @@ -46278,7 +46284,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->31->1867" + "default.handlebars->31->1868" ] }, { @@ -46442,7 +46448,7 @@ "default-mobile.handlebars->11->203", "default-mobile.handlebars->11->206", "default-mobile.handlebars->11->209", - "default.handlebars->31->1871", + "default.handlebars->31->1872", "default.handlebars->31->278", "default.handlebars->31->281", "default.handlebars->31->284", diff --git a/views/default.handlebars b/views/default.handlebars index b8f94848..6b7ea88a 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -11641,7 +11641,8 @@ 107: "Account login from {0}, {1}, {2}", 108: "User login attempt with incorrect 2nd factor from {0}, {1}, {2}", 109: "User login attempt on locked account from {0}, {1}, {2}", - 110: "Invalid user login attempt from {0}, {1}, {2}" + 110: "Invalid user login attempt from {0}, {1}, {2}", + 111: "Device requested Intel(R) AMT ACM TLS activation, FQDN: {0}" }; // Highlights the device being hovered