diff --git a/amtmanager.js b/amtmanager.js index e0d912cc..39811ad1 100644 --- a/amtmanager.js +++ b/amtmanager.js @@ -145,7 +145,7 @@ module.exports.CreateAmtManager = function(parent) { if (stack.wsman.comm.xtls == 1) { dev.aquired.tlshash = stack.wsman.comm.xtlsCertificate.fingerprint.split(':').join('').toLowerCase(); } else { delete dev.aquired.tlshash; } //console.log(dev.nodeid, dev.name, dev.host, dev.aquired); UpdateDevice(dev); - //attemptFetchHardwareInventory(dev); // See if we need to get hardware inventory + attemptFetchHardwareInventory(dev); // See if we need to get hardware inventory } else { // We got a bad response if ((dev.tlsfail !== true) && (status == 408)) { @@ -214,13 +214,68 @@ module.exports.CreateAmtManager = function(parent) { if (obj.amtDevices[dev.nodeid] == null) return false; // Device no longer exists, ignore this request. const mesh = parent.webserver.meshes[dev.meshid]; if (mesh == null) { removeDevice(dev.nodeid); return false; } - if (mesh.mtype == 1) { // If this is a Intel AMT only device group, pull the hardware inventory for this device + if (mesh.mtype == 1) { // If this is a Intel AMT only device group, pull the hardware inventory and network information for this device dev.amtstack.BatchEnum('', ['*CIM_ComputerSystemPackage', 'CIM_SystemPackaging', '*CIM_Chassis', 'CIM_Chip', '*CIM_Card', '*CIM_BIOSElement', 'CIM_Processor', 'CIM_PhysicalMemory', 'CIM_MediaAccessDevice', 'CIM_PhysicalPackage'], attemptFetchHardwareInventoryResponse); + dev.amtstack.BatchEnum('', ['AMT_EthernetPortSettings'], attemptFetchNetworkResponse); return true; } return false; } + function attemptFetchNetworkResponse(stack, name, responses, status) { + const dev = stack.dev; + if (obj.amtDevices[dev.nodeid] == null) return; // Device no longer exists, ignore this response. + if (status != 200) return; + + //console.log(JSON.stringify(responses, null, 2)); + if ((responses['AMT_EthernetPortSettings'] == null) || (responses['AMT_EthernetPortSettings'].responses == null)) return; + + // Find the wired and wireless interfaces + var wired = null, wireless = null; + for (var i in responses['AMT_EthernetPortSettings'].responses) { + var netif = responses['AMT_EthernetPortSettings'].responses[i]; + if ((netif.MACAddress != null) && (netif.MACAddress != "00-00-00-00-00-00")) { + if (netif.WLANLinkProtectionLevel != null) { wireless = netif; } else { wired = netif; } + } + } + if ((wired == null) && (wireless == null)) return; + + // Sent by the agent to update agent network interface information + var net = { netif2: {} }; + + if (wired != null) { + var x = {}; + x.family = 'IPv4'; + x.type = "ethernet"; + x.address = wired.IPAddress; + x.netmask = wired.SubnetMask; + x.mac = wired.MACAddress.split('-').join(':').toUpperCase(); + x.gateway = wired.DefaultGateway; + net.netif2['Ethernet'] = [ x ]; + } + + if (wireless != null) { + var x = {}; + x.family = 'IPv4'; + x.type = "wireless"; + x.address = wireless.IPAddress; + x.netmask = wireless.SubnetMask; + x.mac = wireless.MACAddress.split('-').join(':').toUpperCase(); + x.gateway = wireless.DefaultGateway; + net.netif2['Wireless'] = [ x ]; + } + + net.updateTime = Date.now(); + net._id = 'if' + dev.nodeid; + net.type = 'ifinfo'; + parent.db.Set(net); + + // Event the node interface information change + parent.DispatchEvent(parent.webserver.CreateMeshDispatchTargets(dev.meshid, [dev.nodeid]), obj, { action: 'ifchange', nodeid: dev.nodeid, domain: dev.nodeid.split('/')[1], nolog: 1 }); + } + + + /* // http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf const DMTFCPUStatus = ["Unknown", "Enabled", "Disabled by User", "Disabled By BIOS (POST Error)", "Idle", "Other"]; const DMTFMemType = ["Unknown", "Other", "DRAM", "Synchronous DRAM", "Cache DRAM", "EDO", "EDRAM", "VRAM", "SRAM", "RAM", "ROM", "Flash", "EEPROM", "FEPROM", "EPROM", "CDRAM", "3DRAM", "SDRAM", "SGRAM", "RDRAM", "DDR", "DDR-2", "BRAM", "FB-DIMM", "DDR3", "FBD2", "DDR4", "LPDDR", "LPDDR2", "LPDDR3", "LPDDR4"]; @@ -236,13 +291,14 @@ module.exports.CreateAmtManager = function(parent) { 198: "Intel® Core™ i7 processor", 199: "Dual-Core Intel® Celeron® processor" }; + */ function attemptFetchHardwareInventoryResponse(stack, name, responses, status) { const dev = stack.dev; if (obj.amtDevices[dev.nodeid] == null) return; // Device no longer exists, ignore this response. + if (status != 200) return; - //console.log(JSON.stringify(responses, null, 2)); - + // Extract basic data var hw = {} hw.PlatformGUID = responses['CIM_ComputerSystemPackage'].response.PlatformGUID; hw.Chassis = responses['CIM_Chassis'].response; @@ -253,8 +309,75 @@ module.exports.CreateAmtManager = function(parent) { hw.PhysicalMemory = responses['CIM_PhysicalMemory'].responses; hw.MediaAccessDevice = responses['CIM_MediaAccessDevice'].responses; hw.PhysicalPackage = responses['CIM_PhysicalPackage'].responses; - console.log(JSON.stringify(hw, null, 2)); + + // Convert the hardware data into the same structure as we get from Windows + var hw2 = { hardware: { windows: {}, identifiers: {} } }; + hw2.hardware.identifiers.product_uuid = guidToStr(hw.PlatformGUID); + if ((hw.PhysicalMemory != null) && (hw.PhysicalMemory.length > 0)) { + var memory = []; + for (var i in hw.PhysicalMemory) { + var m2 = {}, m = hw.PhysicalMemory[i]; + m2.BankLabel = m.BankLabel; + m2.Capacity = m.Capacity; + m2.PartNumber = m.PartNumber.trim(); + m2.SerialNumber = m.SerialNumber.trim(); + m2.Manufacturer = m.Manufacturer.trim(); + memory.push(m2); + } + hw2.hardware.windows.memory = memory; + } + if ((hw.MediaAccessDevice != null) && (hw.MediaAccessDevice.length > 0)) { + var drives = []; + for (var i in hw.MediaAccessDevice) { + var m2 = {}, m = hw.MediaAccessDevice[i]; + m2.Caption = m.DeviceID; + m2.Size = (m.MaxMediaSize * 1000); + drives.push(m2); + } + hw2.hardware.identifiers.storage_devices = drives; + } + if (hw.Bios != null) { + hw2.hardware.identifiers.bios_vendor = hw.Bios.Manufacturer.trim(); + hw2.hardware.identifiers.bios_version = hw.Bios.Version; + if (hw.Bios.ReleaseDate && hw.Bios.ReleaseDate.Datetime) { hw2.hardware.identifiers.bios_date = hw.Bios.ReleaseDate.Datetime; } + } + if (hw.PhysicalPackage != null) { + hw2.hardware.identifiers.board_name = hw.Card.Model.trim(); + hw2.hardware.identifiers.board_vendor = hw.Card.Manufacturer.trim(); + hw2.hardware.identifiers.board_version = hw.Card.Version.trim(); + hw2.hardware.identifiers.board_serial = hw.Card.SerialNumber.trim(); + } + if ((hw.Chips != null) && (hw.Chips.length > 0)) { + for (var i in hw.Chips) { + if ((hw.Chips[i].ElementName == 'Managed System Processor Chip') && (hw.Chips[i].Version)) { + hw2.hardware.identifiers.cpu_name = hw.Chips[i].Version; + } + } + } + + // Compute the hash of the document + hw2.hash = parent.crypto.createHash('sha384').update(JSON.stringify(hw2)).digest().toString('hex'); + + // Fetch system information + parent.db.GetHash('si' + dev.nodeid, function (err, results) { + var sysinfohash = null; + if ((results != null) && (results.length == 1)) { sysinfohash = results[0].hash; } + if (sysinfohash != hw2.hash) { + // Hardware information has changed, update the database + hw2._id = 'si' + dev.nodeid; + hw2.domain = dev.nodeid.split('/')[1]; + hw2.time = Date.now(); + hw2.type = 'sysinfo'; + parent.db.Set(hw2); + + // Event the new sysinfo hash, this will notify everyone that the sysinfo document was changed + var event = { etype: 'node', action: 'sysinfohash', nodeid: dev.nodeid, domain: hw2.domain, hash: hw2.hash, nolog: 1 }; + parent.DispatchEvent(parent.webserver.CreateMeshDispatchTargets(dev.meshid, [dev.nodeid]), obj, event); + } + }); } + function guidToStr(g) { return g.substring(6, 8) + g.substring(4, 6) + g.substring(2, 4) + g.substring(0, 2) + '-' + g.substring(10, 12) + g.substring(8, 10) + '-' + g.substring(14, 16) + g.substring(12, 14) + '-' + g.substring(16, 20) + '-' + g.substring(20); } + return obj; }; diff --git a/public/scripts/amt-wsman-0.2.0-min.js b/public/scripts/amt-wsman-0.2.0-min.js index a8eb3bca..86d1ae50 100644 --- a/public/scripts/amt-wsman-0.2.0-min.js +++ b/public/scripts/amt-wsman-0.2.0-min.js @@ -1 +1 @@ -var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return''+e.InstanceID+"";var s="";for(var r in e)if(e.hasOwnProperty(r)){if(s+='',e[r].ReferenceParameters){s+="",s+=""+e[r].Address+""+e[r].ReferenceParameters.ResourceURI+"";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o"+a[o].Value+"";else s+=""+a.Value+"";s+=""}else s+=e[r];s+=""}return s+=""}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('
"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,d,c){var m="",i="";null!=d&&null!=c&&(m="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken"+d+''+c+"",i=''),l=null!=l&&null!=l?""+l+"":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(n)+m+'
'+r+""+i+"PT0.000000S";p.PerformAjax(u+"
",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(o)+"";p.PerformAjax(t+"",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S"+w(t)+""+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+=""+s[o].Address+""+s[o].ReferenceParameters.ResourceURI+"";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n"+t[n].Value+"";else a+=""+t.Value+"";a+=""}else if(Array.isArray(s[o]))for(n=0;n"+s[o][n].toString()+"";else a+=""+s[o].toString()+"";return a+=""}(e,s);p.PerformAjax(n+"",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(t)+"';for(var d in s)l+=""+s[d]+"";p.PerformAjax(l+"",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S'+s+"",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(s)+"";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var d in r)if(null!=r[d])if(Array.isArray(r[d]))for(var c in r[d])l+=""+r[d][c]+"";else l+=""+r[d]+"";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+""+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(n)+"'+r+"",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+s+"99999999",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o'+e.InstanceID+"";var s="";for(var r in e)if(e.hasOwnProperty(r)){if(s+='',e[r].ReferenceParameters){s+="",s+=""+e[r].Address+""+e[r].ReferenceParameters.ResourceURI+"";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o"+a[o].Value+"";else s+=""+a.Value+"";s+=""}else s+=e[r];s+=""}return s+=""}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('
"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,c,d){var m="",i="";null!=c&&null!=d&&(m="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken"+c+''+d+"",i=''),l=null!=l&&null!=l?""+l+"":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(n)+m+'
'+r+""+i+"PT0.000000S";p.PerformAjax(u+"
",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(o)+"";p.PerformAjax(t+"",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S"+w(t)+""+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+=""+s[o].Address+""+s[o].ReferenceParameters.ResourceURI+"";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n"+t[n].Value+"";else a+=""+t.Value+"";a+=""}else if(Array.isArray(s[o]))for(n=0;n"+s[o][n].toString()+"";else a+=""+s[o].toString()+"";return a+=""}(e,s);p.PerformAjax(n+"",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(t)+"';for(var c in s)l+=""+s[c]+"";p.PerformAjax(l+"",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S'+s+"",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(s)+"";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var c in r)if(null!=r[c])if(Array.isArray(r[c]))for(var d in r[c])l+=""+r[c][d]+"";else l+=""+r[c]+"";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+""+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(n)+"'+r+"",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+s+"99999999",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o27->1352", - "default.handlebars->27->1354" + "default.handlebars->27->1354", + "default.handlebars->27->1356" ] }, { @@ -204,7 +204,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->27->1265" + "default.handlebars->27->1267" ] }, { @@ -224,8 +224,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->27->1429", - "default.handlebars->27->1887" + "default.handlebars->27->1431", + "default.handlebars->27->1889" ] }, { @@ -458,7 +458,7 @@ "zh-chs": "*保留空白可为每个设备分配一个随机密码。", "zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。", "xloc": [ - "default.handlebars->27->1399" + "default.handlebars->27->1401" ] }, { @@ -495,8 +495,8 @@ "zh-chs": ",", "zh-cht": ",", "xloc": [ - "default-mobile.handlebars->9->458", - "default.handlebars->27->1499" + "default-mobile.handlebars->9->460", + "default.handlebars->27->1501" ] }, { @@ -537,7 +537,7 @@ "zh-chs": ",MQTT在线", "zh-cht": ",MQTT在線", "xloc": [ - "default.handlebars->27->1007" + "default.handlebars->27->1009" ] }, { @@ -768,8 +768,8 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->300", - "default.handlebars->27->1540", - "default.handlebars->27->2042", + "default.handlebars->27->1542", + "default.handlebars->27->2044", "default.handlebars->27->890" ] }, @@ -826,7 +826,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->27->1956" + "default.handlebars->27->1958" ] }, { @@ -847,8 +847,8 @@ "zh-cht": "1個位元組", "xloc": [ "default-mobile.handlebars->9->118", - "default-mobile.handlebars->9->462", - "default.handlebars->27->1564", + "default-mobile.handlebars->9->464", + "default.handlebars->27->1566", "download.handlebars->3->1", "download2.handlebars->5->1" ] @@ -913,7 +913,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->27->1921" + "default.handlebars->27->1923" ] }, { @@ -1017,7 +1017,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->27->1711" + "default.handlebars->27->1713" ] }, { @@ -1083,7 +1083,7 @@ "default-mobile.handlebars->9->172", "default-mobile.handlebars->9->175", "default-mobile.handlebars->9->178", - "default.handlebars->27->1715", + "default.handlebars->27->1717", "default.handlebars->27->248", "default.handlebars->27->251", "default.handlebars->27->254", @@ -1500,7 +1500,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->27->1675" + "default.handlebars->27->1677" ] }, { @@ -1520,8 +1520,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1728", - "default.handlebars->27->1943" + "default.handlebars->27->1730", + "default.handlebars->27->1945" ] }, { @@ -2461,7 +2461,7 @@ "zh-chs": "拒绝访问", "zh-cht": "拒絕存取", "xloc": [ - "default.handlebars->27->1008" + "default.handlebars->27->1010" ] }, { @@ -2503,7 +2503,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->27->1893" + "default.handlebars->27->1895" ] }, { @@ -2592,8 +2592,8 @@ "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->27->1274", "default.handlebars->27->1276", + "default.handlebars->27->1278", "default.handlebars->27->549", "default.handlebars->27->551" ] @@ -2656,7 +2656,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->27->1648" + "default.handlebars->27->1650" ] }, { @@ -2676,7 +2676,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->27->1647" + "default.handlebars->27->1649" ] }, { @@ -2696,7 +2696,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->27->1646" + "default.handlebars->27->1648" ] }, { @@ -2716,8 +2716,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->27->1730", - "default.handlebars->27->1890" + "default.handlebars->27->1732", + "default.handlebars->27->1892" ] }, { @@ -2781,7 +2781,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->27->1583" + "default.handlebars->27->1585" ] }, { @@ -2801,7 +2801,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1586" ] }, { @@ -2843,7 +2843,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->27->1656" + "default.handlebars->27->1658" ] }, { @@ -2863,7 +2863,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->27->1645" + "default.handlebars->27->1647" ] }, { @@ -2903,7 +2903,7 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default.handlebars->27->1013", + "default.handlebars->27->1015", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -3036,8 +3036,8 @@ "zh-chs": "激活", "zh-cht": "啟動", "xloc": [ - "default.handlebars->27->1365", "default.handlebars->27->1367", + "default.handlebars->27->1369", "default.handlebars->27->200", "default.handlebars->27->281", "default.handlebars->27->283" @@ -3080,7 +3080,7 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->27->1369", + "default.handlebars->27->1371", "default.handlebars->27->285" ] }, @@ -3121,8 +3121,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->27->1867", - "default.handlebars->27->1991" + "default.handlebars->27->1869", + "default.handlebars->27->1993" ] }, { @@ -3162,9 +3162,9 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->27->1463", - "default.handlebars->27->1861", - "default.handlebars->27->1979", + "default.handlebars->27->1465", + "default.handlebars->27->1863", + "default.handlebars->27->1981", "default.handlebars->27->235" ] }, @@ -3185,7 +3185,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->27->1460" + "default.handlebars->27->1462" ] }, { @@ -3205,8 +3205,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->27->1465", - "default.handlebars->27->1467" + "default.handlebars->27->1467", + "default.handlebars->27->1469" ] }, { @@ -3306,7 +3306,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->27->2009" + "default.handlebars->27->2011" ] }, { @@ -3346,8 +3346,8 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->27->1041", - "default.handlebars->27->1042", + "default.handlebars->27->1043", + "default.handlebars->27->1044", "default.handlebars->27->149", "default.handlebars->27->151", "default.handlebars->27->154", @@ -3371,7 +3371,7 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default-mobile.handlebars->9->403", + "default-mobile.handlebars->9->405", "default.handlebars->27->668" ] }, @@ -3392,7 +3392,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->27->1470" + "default.handlebars->27->1472" ] }, { @@ -3412,9 +3412,9 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->27->1359", - "default.handlebars->27->1462", - "default.handlebars->27->1985", + "default.handlebars->27->1361", + "default.handlebars->27->1464", + "default.handlebars->27->1987", "default.handlebars->27->669" ] }, @@ -3435,7 +3435,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->27->1472" + "default.handlebars->27->1474" ] }, { @@ -3455,7 +3455,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default-mobile.handlebars->9->434" + "default-mobile.handlebars->9->436" ] }, { @@ -3492,8 +3492,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->27->1358", - "default.handlebars->27->1856" + "default.handlebars->27->1360", + "default.handlebars->27->1858" ] }, { @@ -3513,7 +3513,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->27->1459" + "default.handlebars->27->1461" ] }, { @@ -3533,7 +3533,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->27->1889" + "default.handlebars->27->1891" ] }, { @@ -3593,7 +3593,7 @@ "zh-chs": "添加位于互联网上的新英特尔®AMT计算机。", "zh-cht": "新增位於互聯網上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->27->1360", + "default.handlebars->27->1362", "default.handlebars->27->274" ] }, @@ -3614,7 +3614,7 @@ "zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。", "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->27->1362", + "default.handlebars->27->1364", "default.handlebars->27->276" ] }, @@ -3655,7 +3655,7 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->27->1368", + "default.handlebars->27->1370", "default.handlebars->27->284" ] }, @@ -3696,7 +3696,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->27->1672" + "default.handlebars->27->1674" ] }, { @@ -3716,8 +3716,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->27->1639", - "default.handlebars->27->1666" + "default.handlebars->27->1641", + "default.handlebars->27->1668" ] }, { @@ -3737,7 +3737,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->27->1677" + "default.handlebars->27->1679" ] }, { @@ -3757,7 +3757,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->27->1650" + "default.handlebars->27->1652" ] }, { @@ -3777,8 +3777,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->27->1653", - "default.handlebars->27->1662" + "default.handlebars->27->1655", + "default.handlebars->27->1664" ] }, { @@ -3901,7 +3901,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->27->1925" + "default.handlebars->27->1927" ] }, { @@ -3942,7 +3942,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->27->1793" + "default.handlebars->27->1795" ] }, { @@ -3962,7 +3962,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->27->1722" + "default.handlebars->27->1724" ] }, { @@ -3982,7 +3982,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1046" ] }, { @@ -4005,8 +4005,8 @@ "default-mobile.handlebars->9->203", "default-mobile.handlebars->9->227", "default-mobile.handlebars->9->243", - "default.handlebars->27->1526", - "default.handlebars->27->1534", + "default.handlebars->27->1528", + "default.handlebars->27->1536", "default.handlebars->27->211", "default.handlebars->27->442", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -4029,8 +4029,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->27->1528", - "default.handlebars->27->1536" + "default.handlebars->27->1530", + "default.handlebars->27->1538" ] }, { @@ -4070,8 +4070,8 @@ "zh-chs": "代理控制台", "zh-cht": "代理控制台", "xloc": [ - "default-mobile.handlebars->9->440", - "default.handlebars->27->1480" + "default-mobile.handlebars->9->442", + "default.handlebars->27->1482" ] }, { @@ -4091,7 +4091,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->27->2052" + "default.handlebars->27->2054" ] }, { @@ -4194,7 +4194,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->27->2068" + "default.handlebars->27->2070" ] }, { @@ -4235,7 +4235,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->27->1532", + "default.handlebars->27->1534", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -4256,7 +4256,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->27->1636" + "default.handlebars->27->1638" ] }, { @@ -4318,7 +4318,7 @@ "zh-chs": "代理离线", "zh-cht": "代理離線", "xloc": [ - "default.handlebars->27->1006" + "default.handlebars->27->1008" ] }, { @@ -4338,7 +4338,7 @@ "zh-chs": "代理在线", "zh-cht": "代理在線", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1007" ] }, { @@ -4358,7 +4358,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->27->2084" + "default.handlebars->27->2086" ] }, { @@ -4378,7 +4378,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->27->1045" + "default.handlebars->27->1047" ] }, { @@ -4421,7 +4421,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->27->1685" + "default.handlebars->27->1687" ] }, { @@ -4458,7 +4458,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->27->1683" + "default.handlebars->27->1685" ] }, { @@ -4500,8 +4500,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->27->1427", - "default.handlebars->27->1886" + "default.handlebars->27->1429", + "default.handlebars->27->1888" ] }, { @@ -4521,7 +4521,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->27->1428" + "default.handlebars->27->1430" ] }, { @@ -4626,9 +4626,9 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->27->1339", - "default.handlebars->27->1847", - "default.handlebars->27->1934", + "default.handlebars->27->1341", + "default.handlebars->27->1849", + "default.handlebars->27->1936", "default.handlebars->27->609" ] }, @@ -4649,9 +4649,9 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->27->1340", - "default.handlebars->27->1848", - "default.handlebars->27->1935", + "default.handlebars->27->1342", + "default.handlebars->27->1850", + "default.handlebars->27->1937", "default.handlebars->27->610" ] }, @@ -4875,7 +4875,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->27->1047" + "default.handlebars->27->1049" ] }, { @@ -4895,7 +4895,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->27->1048" + "default.handlebars->27->1050" ] }, { @@ -4915,7 +4915,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1051" ] }, { @@ -4935,7 +4935,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->27->1050" + "default.handlebars->27->1052" ] }, { @@ -4955,7 +4955,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->27->1051" + "default.handlebars->27->1053" ] }, { @@ -4975,7 +4975,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1054" ] }, { @@ -4995,7 +4995,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->27->1053" + "default.handlebars->27->1055" ] }, { @@ -5015,7 +5015,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->27->1054" + "default.handlebars->27->1056" ] }, { @@ -5035,7 +5035,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->27->1055" + "default.handlebars->27->1057" ] }, { @@ -5055,7 +5055,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->27->1056" + "default.handlebars->27->1058" ] }, { @@ -5075,7 +5075,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1059" ] }, { @@ -5095,7 +5095,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->27->1058" + "default.handlebars->27->1060" ] }, { @@ -5115,7 +5115,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->27->1046" + "default.handlebars->27->1048" ] }, { @@ -5135,7 +5135,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->27->1059" + "default.handlebars->27->1061" ] }, { @@ -5155,7 +5155,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->27->1060" + "default.handlebars->27->1062" ] }, { @@ -5175,7 +5175,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->27->1061" + "default.handlebars->27->1063" ] }, { @@ -5195,7 +5195,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->27->1062" + "default.handlebars->27->1064" ] }, { @@ -5215,7 +5215,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->27->1063" + "default.handlebars->27->1065" ] }, { @@ -5276,8 +5276,8 @@ "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。", "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ - "default-mobile.handlebars->9->409", - "default.handlebars->27->1403" + "default-mobile.handlebars->9->411", + "default.handlebars->27->1405" ] }, { @@ -5357,7 +5357,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->27->2124" + "default.handlebars->27->2126" ] }, { @@ -5377,7 +5377,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->27->1064" + "default.handlebars->27->1066" ] }, { @@ -5437,7 +5437,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1067" ] }, { @@ -5457,7 +5457,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->27->1066" + "default.handlebars->27->1068" ] }, { @@ -5477,7 +5477,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->27->1605" + "default.handlebars->27->1607" ] }, { @@ -5497,7 +5497,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->27->1938" + "default.handlebars->27->1940" ] }, { @@ -5521,8 +5521,8 @@ "default-mobile.handlebars->9->52", "default-mobile.handlebars->9->71", "default-mobile.handlebars->9->73", - "default.handlebars->27->1030", "default.handlebars->27->1032", + "default.handlebars->27->1034", "default.handlebars->27->125", "default.handlebars->27->130" ] @@ -5604,7 +5604,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->27->1326" + "default.handlebars->27->1328" ] }, { @@ -5668,7 +5668,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->27->2077" + "default.handlebars->27->2079" ] }, { @@ -5688,7 +5688,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->27->1067" + "default.handlebars->27->1069" ] }, { @@ -5824,8 +5824,8 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->27->1509", - "default.handlebars->27->1516", + "default.handlebars->27->1511", + "default.handlebars->27->1518", "default.handlebars->27->355", "default.handlebars->27->369" ] @@ -5847,8 +5847,8 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->27->1510", - "default.handlebars->27->1517", + "default.handlebars->27->1512", + "default.handlebars->27->1519", "default.handlebars->27->356", "default.handlebars->27->370", "default.handlebars->27->384" @@ -5891,7 +5891,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->27->1940" + "default.handlebars->27->1942" ] }, { @@ -5911,7 +5911,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->27->2059" + "default.handlebars->27->2061" ] }, { @@ -5931,7 +5931,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->27->2058" + "default.handlebars->27->2060" ] }, { @@ -5951,7 +5951,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->27->1068" + "default.handlebars->27->1070" ] }, { @@ -5991,7 +5991,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->27->1070" + "default.handlebars->27->1072" ] }, { @@ -6011,7 +6011,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1073" ] }, { @@ -6054,7 +6054,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->27->1072" + "default.handlebars->27->1074" ] }, { @@ -6074,7 +6074,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->27->1073" + "default.handlebars->27->1075" ] }, { @@ -6094,7 +6094,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->27->1854", + "default.handlebars->27->1856", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6115,7 +6115,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->27->1775" + "default.handlebars->27->1777" ] }, { @@ -6135,7 +6135,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1770" + "default.handlebars->27->1772" ] }, { @@ -6155,7 +6155,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1071" ] }, { @@ -6175,7 +6175,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->27->1074" + "default.handlebars->27->1076" ] }, { @@ -6217,8 +6217,8 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->9->204", - "default.handlebars->27->1391", - "default.handlebars->27->1396", + "default.handlebars->27->1393", + "default.handlebars->27->1398", "default.handlebars->27->213", "default.handlebars->27->444" ] @@ -6240,7 +6240,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->27->2112" + "default.handlebars->27->2114" ] }, { @@ -6260,7 +6260,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->27->2113" + "default.handlebars->27->2115" ] }, { @@ -6301,7 +6301,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->27->2073" + "default.handlebars->27->2075" ] }, { @@ -6321,7 +6321,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2076" + "default.handlebars->27->2078" ] }, { @@ -6341,7 +6341,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2075" + "default.handlebars->27->2077" ] }, { @@ -6361,7 +6361,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->2074" + "default.handlebars->27->2076" ] }, { @@ -6403,7 +6403,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->27->1693" + "default.handlebars->27->1695" ] }, { @@ -6423,8 +6423,8 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->27->1697", - "default.handlebars->27->1762", + "default.handlebars->27->1699", + "default.handlebars->27->1764", "default.handlebars->27->494" ] }, @@ -6445,7 +6445,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->27->2125" + "default.handlebars->27->2127" ] }, { @@ -6467,7 +6467,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1304", + "default.handlebars->27->1306", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -6494,10 +6494,12 @@ "zh-chs": "容量", "zh-cht": "容量", "xloc": [ - "default-mobile.handlebars->9->391", + "default-mobile.handlebars->9->388", "default-mobile.handlebars->9->393", + "default-mobile.handlebars->9->395", "default.handlebars->27->1001", - "default.handlebars->27->999" + "default.handlebars->27->1003", + "default.handlebars->27->996" ] }, { @@ -6538,7 +6540,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->27->1075" + "default.handlebars->27->1077" ] }, { @@ -6578,7 +6580,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->27->1076" + "default.handlebars->27->1078" ] }, { @@ -6620,7 +6622,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->27->1968" + "default.handlebars->27->1970" ] }, { @@ -6663,8 +6665,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->27->1271", - "default.handlebars->27->1955" + "default.handlebars->27->1273", + "default.handlebars->27->1957" ] }, { @@ -6684,7 +6686,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1975" + "default.handlebars->27->1977" ] }, { @@ -6704,7 +6706,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->27->1963" + "default.handlebars->27->1965" ] }, { @@ -6786,7 +6788,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1954" + "default.handlebars->27->1956" ] }, { @@ -6826,7 +6828,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->27->1258" + "default.handlebars->27->1260" ] }, { @@ -6846,7 +6848,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->27->1264" + "default.handlebars->27->1266" ] }, { @@ -6866,7 +6868,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->27->1657" + "default.handlebars->27->1659" ] }, { @@ -6886,7 +6888,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->27->1641" + "default.handlebars->27->1643" ] }, { @@ -6906,7 +6908,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->27->1585" + "default.handlebars->27->1587" ] }, { @@ -6926,8 +6928,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->27->1643", - "default.handlebars->27->1664" + "default.handlebars->27->1645", + "default.handlebars->27->1666" ] }, { @@ -6947,7 +6949,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->27->1243" + "default.handlebars->27->1245" ] }, { @@ -6967,7 +6969,7 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->27->1714", + "default.handlebars->27->1716", "default.handlebars->27->689", "default.handlebars->27->710" ] @@ -6989,10 +6991,10 @@ "zh-chs": "聊天并通知", "zh-cht": "聊天並通知", "xloc": [ - "default-mobile.handlebars->9->430", - "default-mobile.handlebars->9->450", - "default.handlebars->27->1455", - "default.handlebars->27->1491" + "default-mobile.handlebars->9->432", + "default-mobile.handlebars->9->452", + "default.handlebars->27->1457", + "default.handlebars->27->1493" ] }, { @@ -7032,7 +7034,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1079" ] }, { @@ -7132,8 +7134,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->27->1043", - "default.handlebars->27->2119" + "default.handlebars->27->1045", + "default.handlebars->27->2121" ] }, { @@ -7153,7 +7155,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->27->1078" + "default.handlebars->27->1080" ] }, { @@ -7173,7 +7175,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->27->1079" + "default.handlebars->27->1081" ] }, { @@ -7193,7 +7195,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->27->1080" + "default.handlebars->27->1082" ] }, { @@ -7213,7 +7215,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->27->1240" + "default.handlebars->27->1242" ] }, { @@ -7233,7 +7235,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->27->1081" + "default.handlebars->27->1083" ] }, { @@ -7253,7 +7255,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->27->1082" + "default.handlebars->27->1084" ] }, { @@ -7273,7 +7275,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->27->1241" + "default.handlebars->27->1243" ] }, { @@ -7314,7 +7316,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->27->1083" + "default.handlebars->27->1085" ] }, { @@ -7360,7 +7362,7 @@ "default-mobile.handlebars->9->323", "default-mobile.handlebars->9->325", "default-mobile.handlebars->9->59", - "default.handlebars->27->1579", + "default.handlebars->27->1581", "default.handlebars->27->910", "default.handlebars->27->912", "default.handlebars->27->914", @@ -7407,7 +7409,7 @@ "zh-chs": "全部清除", "zh-cht": "全部清除", "xloc": [ - "default.handlebars->27->2046" + "default.handlebars->27->2048" ] }, { @@ -7435,7 +7437,7 @@ "zh-chs": "清除核心", "zh-cht": "清除核心", "xloc": [ - "default.handlebars->27->1015" + "default.handlebars->27->1017" ] }, { @@ -7475,7 +7477,7 @@ "zh-chs": "清除此通知", "zh-cht": "清除此通知", "xloc": [ - "default.handlebars->27->2045" + "default.handlebars->27->2047" ] }, { @@ -7535,8 +7537,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->27->1315", - "default.handlebars->27->1530" + "default.handlebars->27->1317", + "default.handlebars->27->1532" ] }, { @@ -7576,7 +7578,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->27->1831" + "default.handlebars->27->1833" ] }, { @@ -7637,7 +7639,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->27->1255" + "default.handlebars->27->1257" ] }, { @@ -7698,7 +7700,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->27->1297" + "default.handlebars->27->1299" ] }, { @@ -7718,8 +7720,8 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->27->1390", - "default.handlebars->27->1395" + "default.handlebars->27->1392", + "default.handlebars->27->1397" ] }, { @@ -7739,7 +7741,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->27->1298" + "default.handlebars->27->1300" ] }, { @@ -7803,7 +7805,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->27->1590" + "default.handlebars->27->1592" ] }, { @@ -7879,8 +7881,8 @@ "en": "Commands", "nl": "Opdrachten", "xloc": [ - "default-mobile.handlebars->9->452", - "default.handlebars->27->1493", + "default-mobile.handlebars->9->454", + "default.handlebars->27->1495", "default.handlebars->27->691", "default.handlebars->27->712" ] @@ -7902,8 +7904,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->27->1862", - "default.handlebars->27->1980" + "default.handlebars->27->1864", + "default.handlebars->27->1982" ] }, { @@ -7923,8 +7925,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->27->1868", - "default.handlebars->27->1992" + "default.handlebars->27->1870", + "default.handlebars->27->1994" ] }, { @@ -7965,7 +7967,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->1574" + "default.handlebars->27->1576" ] }, { @@ -7986,12 +7988,12 @@ "zh-cht": "確認", "xloc": [ "default-mobile.handlebars->9->281", - "default-mobile.handlebars->9->410", - "default.handlebars->27->1404", - "default.handlebars->27->1742", - "default.handlebars->27->1821", - "default.handlebars->27->1882", - "default.handlebars->27->1978", + "default-mobile.handlebars->9->412", + "default.handlebars->27->1406", + "default.handlebars->27->1744", + "default.handlebars->27->1823", + "default.handlebars->27->1884", + "default.handlebars->27->1980", "default.handlebars->27->470", "default.handlebars->27->780", "default.handlebars->27->789" @@ -8075,7 +8077,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->27->1741" + "default.handlebars->27->1743" ] }, { @@ -8115,7 +8117,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->27->1820" + "default.handlebars->27->1822" ] }, { @@ -8135,7 +8137,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1977" + "default.handlebars->27->1979" ] }, { @@ -8155,7 +8157,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->27->1885" + "default.handlebars->27->1887" ] }, { @@ -8175,7 +8177,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->27->2007" + "default.handlebars->27->2009" ] }, { @@ -8256,7 +8258,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1573" + "default.handlebars->27->1575" ] }, { @@ -8276,8 +8278,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1875", - "default.handlebars->27->1998" + "default.handlebars->27->1877", + "default.handlebars->27->2000" ] }, { @@ -8297,8 +8299,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->1877", - "default.handlebars->27->2011" + "default.handlebars->27->1879", + "default.handlebars->27->2013" ] }, { @@ -8318,7 +8320,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->2000" + "default.handlebars->27->2002" ] }, { @@ -8338,7 +8340,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->27->2003" + "default.handlebars->27->2005" ] }, { @@ -8358,8 +8360,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->27->2001", - "default.handlebars->27->2004" + "default.handlebars->27->2003", + "default.handlebars->27->2006" ] }, { @@ -8380,7 +8382,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->27->1033" + "default.handlebars->27->1035" ] }, { @@ -8451,7 +8453,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->27->1502" + "default.handlebars->27->1504" ] }, { @@ -8471,7 +8473,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->27->1504" + "default.handlebars->27->1506" ] }, { @@ -8508,7 +8510,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default-mobile.handlebars->9->461" + "default-mobile.handlebars->9->463" ] }, { @@ -8531,7 +8533,7 @@ "default-mobile.handlebars->9->296", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->27->1343", + "default.handlebars->27->1345", "default.handlebars->27->883", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", @@ -8579,8 +8581,8 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->27->1394", - "default.handlebars->27->1398" + "default.handlebars->27->1396", + "default.handlebars->27->1400" ] }, { @@ -8701,7 +8703,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->27->2064" + "default.handlebars->27->2066" ] }, { @@ -8721,7 +8723,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->27->2069" + "default.handlebars->27->2071" ] }, { @@ -8811,7 +8813,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->27->2083" + "default.handlebars->27->2085" ] }, { @@ -8831,7 +8833,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->27->2111" + "default.handlebars->27->2113" ] }, { @@ -8892,7 +8894,7 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->9->248", - "default.handlebars->27->1537", + "default.handlebars->27->1539", "default.handlebars->27->232", "default.handlebars->27->623", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -8981,7 +8983,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->27->2097" + "default.handlebars->27->2099" ] }, { @@ -9138,8 +9140,8 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->27->1542", - "default.handlebars->27->1561", + "default.handlebars->27->1544", + "default.handlebars->27->1563", "default.handlebars->27->193", "default.handlebars->27->372" ] @@ -9242,7 +9244,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->27->1633" + "default.handlebars->27->1635" ] }, { @@ -9388,7 +9390,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->27->2096" + "default.handlebars->27->2098" ] }, { @@ -9408,7 +9410,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->27->1084" + "default.handlebars->27->1086" ] }, { @@ -9428,7 +9430,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->27->1789", + "default.handlebars->27->1791", "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" @@ -9471,7 +9473,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->27->1828" + "default.handlebars->27->1830" ] }, { @@ -9511,7 +9513,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->27->1278" + "default.handlebars->27->1280" ] }, { @@ -9551,7 +9553,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->27->1626" + "default.handlebars->27->1628" ] }, { @@ -9571,7 +9573,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1753" + "default.handlebars->27->1755" ] }, { @@ -9613,7 +9615,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->27->1637" + "default.handlebars->27->1639" ] }, { @@ -9653,7 +9655,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->27->1914" + "default.handlebars->27->1916" ] }, { @@ -9673,7 +9675,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->27->1325" + "default.handlebars->27->1327" ] }, { @@ -9715,8 +9717,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->27->1323", - "default.handlebars->27->1324" + "default.handlebars->27->1325", + "default.handlebars->27->1326" ] }, { @@ -9736,7 +9738,7 @@ "zh-chs": "证书", "zh-cht": "證書", "xloc": [ - "default.handlebars->27->1295" + "default.handlebars->27->1297" ] }, { @@ -9756,7 +9758,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->27->1085" + "default.handlebars->27->1087" ] }, { @@ -9776,7 +9778,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->27->1086" + "default.handlebars->27->1088" ] }, { @@ -9943,7 +9945,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->27->1087" + "default.handlebars->27->1089" ] }, { @@ -9983,7 +9985,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->27->1088" + "default.handlebars->27->1090" ] }, { @@ -10024,7 +10026,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->27->1246" + "default.handlebars->27->1248" ] }, { @@ -10065,7 +10067,7 @@ "zh-chs": "停用客户端控制模式(CCM)", "zh-cht": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1382" + "default.handlebars->27->1384" ] }, { @@ -10106,10 +10108,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->27->1776", - "default.handlebars->27->1824", - "default.handlebars->27->1835", - "default.handlebars->27->1903" + "default.handlebars->27->1778", + "default.handlebars->27->1826", + "default.handlebars->27->1837", + "default.handlebars->27->1905" ] }, { @@ -10133,7 +10135,7 @@ "default-mobile.handlebars->9->306", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->27->1568", + "default.handlebars->27->1570", "default.handlebars->27->527", "default.handlebars->27->896", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -10163,7 +10165,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->27->1263" + "default.handlebars->27->1265" ] }, { @@ -10183,7 +10185,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->27->1743" + "default.handlebars->27->1745" ] }, { @@ -10224,10 +10226,10 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default-mobile.handlebars->9->408", - "default-mobile.handlebars->9->411", - "default.handlebars->27->1375", - "default.handlebars->27->1405" + "default-mobile.handlebars->9->410", + "default-mobile.handlebars->9->413", + "default.handlebars->27->1377", + "default.handlebars->27->1407" ] }, { @@ -10288,7 +10290,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->27->1953" + "default.handlebars->27->1955" ] }, { @@ -10308,8 +10310,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->27->1873", - "default.handlebars->27->1883" + "default.handlebars->27->1875", + "default.handlebars->27->1885" ] }, { @@ -10329,7 +10331,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->27->1822" + "default.handlebars->27->1824" ] }, { @@ -10349,7 +10351,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1976" + "default.handlebars->27->1978" ] }, { @@ -10370,7 +10372,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->27->1739", + "default.handlebars->27->1741", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -10411,7 +10413,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->27->1818" + "default.handlebars->27->1820" ] }, { @@ -10451,7 +10453,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->27->1628" + "default.handlebars->27->1630" ] }, { @@ -10473,7 +10475,7 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->308", - "default.handlebars->27->1570", + "default.handlebars->27->1572", "default.handlebars->27->898" ] }, @@ -10494,7 +10496,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->27->1881" + "default.handlebars->27->1883" ] }, { @@ -10516,7 +10518,7 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->307", - "default.handlebars->27->1569", + "default.handlebars->27->1571", "default.handlebars->27->897" ] }, @@ -10557,7 +10559,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->27->1627" + "default.handlebars->27->1629" ] }, { @@ -10577,7 +10579,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->27->1629" + "default.handlebars->27->1631" ] }, { @@ -10692,15 +10694,15 @@ "default-mobile.handlebars->9->226", "default-mobile.handlebars->9->285", "default-mobile.handlebars->9->345", - "default-mobile.handlebars->9->400", - "default-mobile.handlebars->9->413", - "default.handlebars->27->1283", - "default.handlebars->27->1320", - "default.handlebars->27->1407", - "default.handlebars->27->1827", - "default.handlebars->27->1837", - "default.handlebars->27->1838", - "default.handlebars->27->1879", + "default-mobile.handlebars->9->402", + "default-mobile.handlebars->9->415", + "default.handlebars->27->1285", + "default.handlebars->27->1322", + "default.handlebars->27->1409", + "default.handlebars->27->1829", + "default.handlebars->27->1839", + "default.handlebars->27->1840", + "default.handlebars->27->1881", "default.handlebars->27->568", "default.handlebars->27->569", "default.handlebars->27->77", @@ -10745,8 +10747,8 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->9->260", - "default.handlebars->27->1413", - "default.handlebars->27->2023", + "default.handlebars->27->1415", + "default.handlebars->27->2025", "default.handlebars->27->533", "default.handlebars->27->868", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", @@ -10791,9 +10793,9 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->27->1334", - "default.handlebars->27->1842", - "default.handlebars->27->1929", + "default.handlebars->27->1336", + "default.handlebars->27->1844", + "default.handlebars->27->1931", "default.handlebars->27->604" ] }, @@ -10814,9 +10816,9 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->27->1333", - "default.handlebars->27->1841", - "default.handlebars->27->1928", + "default.handlebars->27->1335", + "default.handlebars->27->1843", + "default.handlebars->27->1930", "default.handlebars->27->603" ] }, @@ -10837,9 +10839,9 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->27->1331", - "default.handlebars->27->1839", - "default.handlebars->27->1926", + "default.handlebars->27->1333", + "default.handlebars->27->1841", + "default.handlebars->27->1928", "default.handlebars->27->601" ] }, @@ -10881,9 +10883,9 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->27->1332", - "default.handlebars->27->1840", - "default.handlebars->27->1927", + "default.handlebars->27->1334", + "default.handlebars->27->1842", + "default.handlebars->27->1929", "default.handlebars->27->602" ] }, @@ -10987,9 +10989,9 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->27->1436", + "default.handlebars->27->1438", "default.handlebars->27->184", - "default.handlebars->27->1995", + "default.handlebars->27->1997", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -11038,14 +11040,14 @@ "zh-chs": "设备组", "zh-cht": "裝置群", "xloc": [ - "default.handlebars->27->1431", - "default.handlebars->27->1434", - "default.handlebars->27->1435", - "default.handlebars->27->1690", - "default.handlebars->27->1865", - "default.handlebars->27->1871", - "default.handlebars->27->1983", - "default.handlebars->27->2032" + "default.handlebars->27->1433", + "default.handlebars->27->1436", + "default.handlebars->27->1437", + "default.handlebars->27->1692", + "default.handlebars->27->1867", + "default.handlebars->27->1873", + "default.handlebars->27->1985", + "default.handlebars->27->2034" ] }, { @@ -11065,8 +11067,8 @@ "zh-chs": "设备组用户", "zh-cht": "裝置群用戶", "xloc": [ - "default-mobile.handlebars->9->459", - "default.handlebars->27->1500" + "default-mobile.handlebars->9->461", + "default.handlebars->27->1502" ] }, { @@ -11087,11 +11089,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1706", - "default.handlebars->27->1812", - "default.handlebars->27->1852", - "default.handlebars->27->1923", - "default.handlebars->27->2067", + "default.handlebars->27->1708", + "default.handlebars->27->1814", + "default.handlebars->27->1854", + "default.handlebars->27->1925", + "default.handlebars->27->2069", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -11173,7 +11175,7 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->9->283", - "default.handlebars->27->2031", + "default.handlebars->27->2033", "default.handlebars->27->289", "default.handlebars->27->821", "player.handlebars->3->9" @@ -11237,8 +11239,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->27->1251", - "default.handlebars->27->1521" + "default.handlebars->27->1253", + "default.handlebars->27->1523" ] }, { @@ -11258,8 +11260,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->27->1252", - "default.handlebars->27->1522" + "default.handlebars->27->1254", + "default.handlebars->27->1524" ] }, { @@ -11279,7 +11281,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->27->1658" + "default.handlebars->27->1660" ] }, { @@ -11299,7 +11301,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->27->1659" + "default.handlebars->27->1661" ] }, { @@ -11319,7 +11321,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->27->1660" + "default.handlebars->27->1662" ] }, { @@ -11359,7 +11361,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->27->1655" + "default.handlebars->27->1657" ] }, { @@ -11379,7 +11381,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->27->1638" + "default.handlebars->27->1640" ] }, { @@ -11772,7 +11774,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->27->1640" + "default.handlebars->27->1642" ] }, { @@ -11809,8 +11811,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->27->1813", - "default.handlebars->27->1853" + "default.handlebars->27->1815", + "default.handlebars->27->1855" ] }, { @@ -11850,7 +11852,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->27->1671" + "default.handlebars->27->1673" ] }, { @@ -11872,7 +11874,7 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1344", + "default.handlebars->27->1346", "default.handlebars->27->884", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", @@ -12010,7 +12012,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->27->1250" + "default.handlebars->27->1252" ] }, { @@ -12050,7 +12052,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->27->1541" + "default.handlebars->27->1543" ] }, { @@ -12070,7 +12072,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->27->1600" + "default.handlebars->27->1602" ] }, { @@ -12090,7 +12092,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->27->1608" + "default.handlebars->27->1610" ] }, { @@ -12110,7 +12112,7 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->27->1388" + "default.handlebars->27->1390" ] }, { @@ -12130,10 +12132,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->27->1777", - "default.handlebars->27->1825", - "default.handlebars->27->1834", - "default.handlebars->27->1902", + "default.handlebars->27->1779", + "default.handlebars->27->1827", + "default.handlebars->27->1836", + "default.handlebars->27->1904", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -12155,8 +12157,8 @@ "zh-chs": "不要配置", "zh-cht": "不要配置", "xloc": [ - "default.handlebars->27->1392", - "default.handlebars->27->1397" + "default.handlebars->27->1394", + "default.handlebars->27->1399" ] }, { @@ -12176,7 +12178,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->27->1393" + "default.handlebars->27->1395" ] }, { @@ -12396,7 +12398,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->27->1695", + "default.handlebars->27->1697", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -12597,7 +12599,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->27->1696" + "default.handlebars->27->1698" ] }, { @@ -12617,7 +12619,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1761" + "default.handlebars->27->1763" ] }, { @@ -12698,7 +12700,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->27->1631" + "default.handlebars->27->1633" ] }, { @@ -12738,7 +12740,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->27->2063" + "default.handlebars->27->2065" ] }, { @@ -12778,7 +12780,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->27->1829" + "default.handlebars->27->1831" ] }, { @@ -12815,8 +12817,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->27->2017", - "default.handlebars->27->2037", + "default.handlebars->27->2019", + "default.handlebars->27->2039", "player.handlebars->3->2" ] }, @@ -12837,7 +12839,7 @@ "zh-chs": "在激活期间,代理将有权取得管理员密码信息。", "zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。", "xloc": [ - "default.handlebars->27->1402" + "default.handlebars->27->1404" ] }, { @@ -12857,7 +12859,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->27->1090" + "default.handlebars->27->1092" ] }, { @@ -12877,7 +12879,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->27->1089" + "default.handlebars->27->1091" ] }, { @@ -13167,13 +13169,13 @@ "zh-chs": "编辑设备组", "zh-cht": "編輯裝置群", "xloc": [ - "default-mobile.handlebars->9->414", "default-mobile.handlebars->9->416", - "default-mobile.handlebars->9->436", - "default.handlebars->27->1408", - "default.handlebars->27->1440", - "default.handlebars->27->1464", - "default.handlebars->27->1476" + "default-mobile.handlebars->9->418", + "default-mobile.handlebars->9->438", + "default.handlebars->27->1410", + "default.handlebars->27->1442", + "default.handlebars->27->1466", + "default.handlebars->27->1478" ] }, { @@ -13193,7 +13195,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->27->1426" + "default.handlebars->27->1428" ] }, { @@ -13213,8 +13215,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->27->1461", - "default.handlebars->27->1473" + "default.handlebars->27->1463", + "default.handlebars->27->1475" ] }, { @@ -13234,7 +13236,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->27->1409" + "default.handlebars->27->1411" ] }, { @@ -13254,8 +13256,8 @@ "zh-chs": "编辑设备笔记", "zh-cht": "編輯裝置筆記", "xloc": [ - "default-mobile.handlebars->9->428", - "default.handlebars->27->1453" + "default-mobile.handlebars->9->430", + "default.handlebars->27->1455" ] }, { @@ -13275,8 +13277,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->27->1466", - "default.handlebars->27->1468" + "default.handlebars->27->1468", + "default.handlebars->27->1470" ] }, { @@ -13316,7 +13318,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1413" ] }, { @@ -13379,8 +13381,8 @@ "zh-chs": "编辑笔记", "zh-cht": "編輯筆記", "xloc": [ - "default-mobile.handlebars->9->443", - "default.handlebars->27->1483" + "default-mobile.handlebars->9->445", + "default.handlebars->27->1485" ] }, { @@ -13400,7 +13402,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->27->1410" + "default.handlebars->27->1412" ] }, { @@ -13420,7 +13422,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->27->1474" + "default.handlebars->27->1476" ] }, { @@ -13440,7 +13442,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->27->1469" + "default.handlebars->27->1471" ] }, { @@ -13460,7 +13462,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->27->1880" + "default.handlebars->27->1882" ] }, { @@ -13480,14 +13482,14 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->27->1471" + "default.handlebars->27->1473" ] }, { "en": "Edit User Group User Consent", "nl": "Bewerk groepsgebruikerstoestemming", "xloc": [ - "default.handlebars->27->1412" + "default.handlebars->27->1414" ] }, { @@ -13549,11 +13551,11 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1779", - "default.handlebars->27->1906", + "default.handlebars->27->1781", "default.handlebars->27->1908", - "default.handlebars->27->1948", - "default.handlebars->27->1964", + "default.handlebars->27->1910", + "default.handlebars->27->1950", + "default.handlebars->27->1966", "default.handlebars->27->339", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -13586,7 +13588,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->27->1259" + "default.handlebars->27->1261" ] }, { @@ -13607,7 +13609,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->27->1027" + "default.handlebars->27->1029" ] }, { @@ -13667,7 +13669,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1257" + "default.handlebars->27->1259" ] }, { @@ -13707,7 +13709,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->27->1725" + "default.handlebars->27->1727" ] }, { @@ -13727,8 +13729,8 @@ "zh-chs": "电邮已验证", "zh-cht": "電郵已驗證", "xloc": [ - "default.handlebars->27->1726", - "default.handlebars->27->1900" + "default.handlebars->27->1728", + "default.handlebars->27->1902" ] }, { @@ -13748,7 +13750,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->27->1785" + "default.handlebars->27->1787" ] }, { @@ -13768,7 +13770,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->27->1901" + "default.handlebars->27->1903" ] }, { @@ -13832,7 +13834,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->27->1786" + "default.handlebars->27->1788" ] }, { @@ -13852,7 +13854,7 @@ "zh-chs": "电邮/短信流量", "zh-cht": "電郵/短信流量", "xloc": [ - "default.handlebars->27->2105" + "default.handlebars->27->2107" ] }, { @@ -13898,7 +13900,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1506" + "default.handlebars->27->1508" ] }, { @@ -13939,7 +13941,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->27->1029" + "default.handlebars->27->1031" ] }, { @@ -13979,7 +13981,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->27->2039" + "default.handlebars->27->2041" ] }, { @@ -13999,7 +14001,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->27->1670" + "default.handlebars->27->1672" ] }, { @@ -14039,7 +14041,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->27->2036" + "default.handlebars->27->2038" ] }, { @@ -14059,7 +14061,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->27->1593" + "default.handlebars->27->1595" ] }, { @@ -14079,7 +14081,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->27->1594" + "default.handlebars->27->1596" ] }, { @@ -14099,7 +14101,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->27->1591" + "default.handlebars->27->1593" ] }, { @@ -14119,7 +14121,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->27->1592" + "default.handlebars->27->1594" ] }, { @@ -14139,7 +14141,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->27->1091" + "default.handlebars->27->1093" ] }, { @@ -14159,7 +14161,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->27->1092" + "default.handlebars->27->1094" ] }, { @@ -14179,7 +14181,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->27->1093" + "default.handlebars->27->1095" ] }, { @@ -14199,7 +14201,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->27->1094" + "default.handlebars->27->1096" ] }, { @@ -14219,7 +14221,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1097" ] }, { @@ -14239,7 +14241,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->27->1096" + "default.handlebars->27->1098" ] }, { @@ -14259,7 +14261,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->27->1097" + "default.handlebars->27->1099" ] }, { @@ -14279,7 +14281,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->27->1098" + "default.handlebars->27->1100" ] }, { @@ -14299,7 +14301,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1101" ] }, { @@ -14319,7 +14321,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->27->1100" + "default.handlebars->27->1102" ] }, { @@ -14339,7 +14341,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->27->1101" + "default.handlebars->27->1103" ] }, { @@ -14359,7 +14361,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->27->1102" + "default.handlebars->27->1104" ] }, { @@ -14379,7 +14381,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->27->1103" + "default.handlebars->27->1105" ] }, { @@ -14399,8 +14401,8 @@ "zh-chs": "输入", "zh-cht": "輸入", "xloc": [ - "default.handlebars->27->1285", - "default.handlebars->27->1286" + "default.handlebars->27->1287", + "default.handlebars->27->1288" ] }, { @@ -14420,7 +14422,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1790" + "default.handlebars->27->1792" ] }, { @@ -14523,7 +14525,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->27->1024" + "default.handlebars->27->1026" ] }, { @@ -14583,7 +14585,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->27->1104" + "default.handlebars->27->1106" ] }, { @@ -14603,7 +14605,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->27->1105" + "default.handlebars->27->1107" ] }, { @@ -14643,7 +14645,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->27->1701" + "default.handlebars->27->1703" ] }, { @@ -14829,7 +14831,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->27->2090" + "default.handlebars->27->2092" ] }, { @@ -14869,7 +14871,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->27->1155" + "default.handlebars->27->1157" ] }, { @@ -14889,7 +14891,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->27->1106" + "default.handlebars->27->1108" ] }, { @@ -14929,7 +14931,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->27->1616" + "default.handlebars->27->1618" ] }, { @@ -14949,7 +14951,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->27->1623" + "default.handlebars->27->1625" ] }, { @@ -14990,7 +14992,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->27->1107" + "default.handlebars->27->1109" ] }, { @@ -15032,7 +15034,7 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->27->1330" + "default.handlebars->27->1332" ] }, { @@ -15052,7 +15054,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->27->1108" + "default.handlebars->27->1110" ] }, { @@ -15177,8 +15179,8 @@ "xloc": [ "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->261", - "default.handlebars->27->1420", - "default.handlebars->27->2024", + "default.handlebars->27->1422", + "default.handlebars->27->2026", "default.handlebars->27->256", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -15221,9 +15223,9 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->27->1338", - "default.handlebars->27->1846", - "default.handlebars->27->1933", + "default.handlebars->27->1340", + "default.handlebars->27->1848", + "default.handlebars->27->1935", "default.handlebars->27->608" ] }, @@ -15244,9 +15246,9 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->27->1337", - "default.handlebars->27->1845", - "default.handlebars->27->1932", + "default.handlebars->27->1339", + "default.handlebars->27->1847", + "default.handlebars->27->1934", "default.handlebars->27->607" ] }, @@ -15290,7 +15292,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->27->1589" + "default.handlebars->27->1591" ] }, { @@ -15310,7 +15312,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->27->1109" + "default.handlebars->27->1111" ] }, { @@ -15457,8 +15459,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->27->1784", - "default.handlebars->27->1973" + "default.handlebars->27->1786", + "default.handlebars->27->1975" ] }, { @@ -15541,7 +15543,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->27->1692" + "default.handlebars->27->1694" ] }, { @@ -15582,8 +15584,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->27->2048", - "default.handlebars->27->2050" + "default.handlebars->27->2050", + "default.handlebars->27->2052" ] }, { @@ -15624,7 +15626,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->27->1111" + "default.handlebars->27->1113" ] }, { @@ -15644,7 +15646,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->27->1112" + "default.handlebars->27->1114" ] }, { @@ -15664,7 +15666,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->27->1113" + "default.handlebars->27->1115" ] }, { @@ -15684,7 +15686,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->27->1114" + "default.handlebars->27->1116" ] }, { @@ -15704,7 +15706,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->27->1115" + "default.handlebars->27->1117" ] }, { @@ -15724,7 +15726,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->27->1110" + "default.handlebars->27->1112" ] }, { @@ -15744,7 +15746,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->27->1116" + "default.handlebars->27->1118" ] }, { @@ -15764,7 +15766,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->27->1117" + "default.handlebars->27->1119" ] }, { @@ -15784,7 +15786,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->27->1118" + "default.handlebars->27->1120" ] }, { @@ -15805,12 +15807,12 @@ "zh-cht": "完整管理員", "xloc": [ "default-mobile.handlebars->9->105", - "default-mobile.handlebars->9->406", - "default-mobile.handlebars->9->415", - "default-mobile.handlebars->9->435", - "default.handlebars->27->1292", - "default.handlebars->27->1439", - "default.handlebars->27->1796" + "default-mobile.handlebars->9->408", + "default-mobile.handlebars->9->417", + "default-mobile.handlebars->9->437", + "default.handlebars->27->1294", + "default.handlebars->27->1441", + "default.handlebars->27->1798" ] }, { @@ -15830,7 +15832,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1475" + "default.handlebars->27->1477" ] }, { @@ -15929,7 +15931,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->27->1894" + "default.handlebars->27->1896" ] }, { @@ -15970,7 +15972,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->27->1120" + "default.handlebars->27->1122" ] }, { @@ -15990,7 +15992,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->27->1119" + "default.handlebars->27->1121" ] }, { @@ -16010,7 +16012,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->27->1121" + "default.handlebars->27->1123" ] }, { @@ -16136,7 +16138,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->27->1122" + "default.handlebars->27->1124" ] }, { @@ -16156,7 +16158,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->27->1124" + "default.handlebars->27->1126" ] }, { @@ -16176,7 +16178,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->27->1125" + "default.handlebars->27->1127" ] }, { @@ -16196,7 +16198,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->27->1126" + "default.handlebars->27->1128" ] }, { @@ -16216,7 +16218,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->27->1127" + "default.handlebars->27->1129" ] }, { @@ -16236,7 +16238,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1125" ] }, { @@ -16256,7 +16258,7 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->27->1128" + "default.handlebars->27->1130" ] }, { @@ -16317,7 +16319,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->27->1603" + "default.handlebars->27->1605" ] }, { @@ -16379,7 +16381,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->27->1288" + "default.handlebars->27->1290" ] }, { @@ -16424,8 +16426,8 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->27->1299", - "default.handlebars->27->1302", + "default.handlebars->27->1301", + "default.handlebars->27->1304", "default.handlebars->27->202" ] }, @@ -16446,7 +16448,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->27->1296" + "default.handlebars->27->1298" ] }, { @@ -16486,7 +16488,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->27->1300" + "default.handlebars->27->1302" ] }, { @@ -16506,7 +16508,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->27->1129" + "default.handlebars->27->1131" ] }, { @@ -16548,8 +16550,8 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->27->1740", - "default.handlebars->27->1819", + "default.handlebars->27->1742", + "default.handlebars->27->1821", "default.handlebars->27->468", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -16573,7 +16575,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->27->1688" + "default.handlebars->27->1690" ] }, { @@ -16593,7 +16595,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->27->1836" + "default.handlebars->27->1838" ] }, { @@ -16613,7 +16615,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->27->1857" + "default.handlebars->27->1859" ] }, { @@ -16633,7 +16635,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->27->1438" + "default.handlebars->27->1440" ] }, { @@ -16653,7 +16655,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->27->1437" + "default.handlebars->27->1439" ] }, { @@ -16741,7 +16743,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1132" ] }, { @@ -16784,7 +16786,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->27->1131" + "default.handlebars->27->1133" ] }, { @@ -16824,7 +16826,7 @@ "zh-chs": "强行断开代理", "zh-cht": "強行斷開代理", "xloc": [ - "default.handlebars->27->1019" + "default.handlebars->27->1021" ] }, { @@ -16844,7 +16846,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->27->2092" + "default.handlebars->27->2094" ] }, { @@ -16864,7 +16866,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->27->2091" + "default.handlebars->27->2093" ] }, { @@ -16884,7 +16886,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->27->1132" + "default.handlebars->27->1134" ] }, { @@ -16919,7 +16921,7 @@ "en": "Help Requested, user: {0}, details: {1}", "nl": "Hulp verzoek van, user: {0}, details: {1}", "xloc": [ - "default.handlebars->27->1680" + "default.handlebars->27->1682" ] }, { @@ -16954,7 +16956,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->27->1247" + "default.handlebars->27->1249" ] }, { @@ -17058,7 +17060,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->27->1133" + "default.handlebars->27->1135" ] }, { @@ -17180,7 +17182,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->27->1576" + "default.handlebars->27->1578" ] }, { @@ -17226,7 +17228,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->27->1327" + "default.handlebars->27->1329" ] }, { @@ -17246,7 +17248,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->27->1134" + "default.handlebars->27->1136" ] }, { @@ -17528,7 +17530,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->27->1135" + "default.handlebars->27->1137" ] }, { @@ -17718,7 +17720,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->27->1136" + "default.handlebars->27->1138" ] }, { @@ -17857,7 +17859,7 @@ "zh-chs": "安装CIRA", "zh-cht": "安裝CIRA", "xloc": [ - "default.handlebars->27->1361" + "default.handlebars->27->1363" ] }, { @@ -17877,7 +17879,7 @@ "zh-chs": "安装本地", "zh-cht": "安裝本地", "xloc": [ - "default.handlebars->27->1363" + "default.handlebars->27->1365" ] }, { @@ -17897,8 +17899,8 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->27->1508", - "default.handlebars->27->1515", + "default.handlebars->27->1510", + "default.handlebars->27->1517", "default.handlebars->27->354", "default.handlebars->27->368", "default.handlebars->27->382" @@ -17942,7 +17944,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->27->2088" + "default.handlebars->27->2090" ] }, { @@ -17985,11 +17987,11 @@ "default-mobile.handlebars->9->205", "default-mobile.handlebars->9->240", "default-mobile.handlebars->9->245", - "default.handlebars->27->1345", - "default.handlebars->27->1355", - "default.handlebars->27->1527", - "default.handlebars->27->1535", - "default.handlebars->27->2110", + "default.handlebars->27->1347", + "default.handlebars->27->1357", + "default.handlebars->27->1529", + "default.handlebars->27->1537", + "default.handlebars->27->2112", "default.handlebars->27->535", "default.handlebars->27->590", "default.handlebars->27->618" @@ -18138,7 +18140,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->27->1384" + "default.handlebars->27->1386" ] }, { @@ -18158,7 +18160,7 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->27->2026", + "default.handlebars->27->2028", "player.handlebars->3->14" ] }, @@ -18199,7 +18201,7 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->27->2025", + "default.handlebars->27->2027", "player.handlebars->3->13" ] }, @@ -18263,8 +18265,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1253", - "default.handlebars->27->1523" + "default.handlebars->27->1255", + "default.handlebars->27->1525" ] }, { @@ -18448,9 +18450,9 @@ "zh-chs": "仅限英特尔®AMT,无代理", "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ - "default-mobile.handlebars->9->397", - "default.handlebars->27->1282", - "default.handlebars->27->1317" + "default-mobile.handlebars->9->399", + "default.handlebars->27->1284", + "default.handlebars->27->1319" ] }, { @@ -18736,8 +18738,8 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->27->1511", - "default.handlebars->27->1518", + "default.handlebars->27->1513", + "default.handlebars->27->1520", "default.handlebars->27->357", "default.handlebars->27->371", "default.handlebars->27->385" @@ -18780,7 +18782,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->27->1137" + "default.handlebars->27->1139" ] }, { @@ -18800,7 +18802,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->27->2062" + "default.handlebars->27->2064" ] }, { @@ -18820,7 +18822,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->27->2056" + "default.handlebars->27->2058" ] }, { @@ -18840,8 +18842,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->27->1758", - "default.handlebars->27->1760" + "default.handlebars->27->1760", + "default.handlebars->27->1762" ] }, { @@ -18861,7 +18863,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->27->1756" + "default.handlebars->27->1758" ] }, { @@ -18881,7 +18883,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->2054" + "default.handlebars->27->2056" ] }, { @@ -18901,7 +18903,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->2055" + "default.handlebars->27->2057" ] }, { @@ -19028,7 +19030,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->27->1734" + "default.handlebars->27->1736" ] }, { @@ -19105,7 +19107,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->27->1513" + "default.handlebars->27->1515" ] }, { @@ -19145,7 +19147,7 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->27->1371", + "default.handlebars->27->1373", "default.handlebars->27->287", "default.handlebars->27->373" ] @@ -19167,11 +19169,11 @@ "zh-chs": "邀请码", "zh-cht": "邀請碼", "xloc": [ - "default.handlebars->27->1349", - "default.handlebars->27->1507", - "default.handlebars->27->1512", + "default.handlebars->27->1351", + "default.handlebars->27->1509", "default.handlebars->27->1514", - "default.handlebars->27->1519" + "default.handlebars->27->1516", + "default.handlebars->27->1521" ] }, { @@ -19211,7 +19213,7 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->27->1370", + "default.handlebars->27->1372", "default.handlebars->27->286" ] }, @@ -19252,7 +19254,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->27->1138" + "default.handlebars->27->1140" ] }, { @@ -19272,7 +19274,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->27->1139" + "default.handlebars->27->1141" ] }, { @@ -19292,7 +19294,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->27->1140" + "default.handlebars->27->1142" ] }, { @@ -19312,7 +19314,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->27->1694" + "default.handlebars->27->1696" ] }, { @@ -19332,8 +19334,8 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->27->1699", - "default.handlebars->27->1764", + "default.handlebars->27->1701", + "default.handlebars->27->1766", "default.handlebars->27->496" ] }, @@ -19354,7 +19356,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1143" ] }, { @@ -19374,7 +19376,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->27->1586" + "default.handlebars->27->1588" ] }, { @@ -19394,7 +19396,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->27->1142" + "default.handlebars->27->1144" ] }, { @@ -19414,7 +19416,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->27->1143" + "default.handlebars->27->1145" ] }, { @@ -19434,7 +19436,7 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->27->1144" + "default.handlebars->27->1146" ] }, { @@ -19474,8 +19476,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->27->1035", - "default.handlebars->27->1038" + "default.handlebars->27->1037", + "default.handlebars->27->1040" ] }, { @@ -19535,7 +19537,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->27->1145" + "default.handlebars->27->1147" ] }, { @@ -19555,7 +19557,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->27->1601" + "default.handlebars->27->1603" ] }, { @@ -19575,7 +19577,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->27->1146" + "default.handlebars->27->1148" ] }, { @@ -19595,7 +19597,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->27->1147" + "default.handlebars->27->1149" ] }, { @@ -19636,7 +19638,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->27->1148" + "default.handlebars->27->1150" ] }, { @@ -19656,7 +19658,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->27->1149" + "default.handlebars->27->1151" ] }, { @@ -19676,7 +19678,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->27->1150" + "default.handlebars->27->1152" ] }, { @@ -19717,7 +19719,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->27->1245" + "default.handlebars->27->1247" ] }, { @@ -19970,7 +19972,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->27->1707" + "default.handlebars->27->1709" ] }, { @@ -19990,7 +19992,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->27->1915" + "default.handlebars->27->1917" ] }, { @@ -20062,7 +20064,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1919" + "default.handlebars->27->1921" ] }, { @@ -20122,7 +20124,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->27->1717" + "default.handlebars->27->1719" ] }, { @@ -20223,7 +20225,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->27->1151" + "default.handlebars->27->1153" ] }, { @@ -20243,7 +20245,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->27->1152" + "default.handlebars->27->1154" ] }, { @@ -20323,7 +20325,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->27->1959" + "default.handlebars->27->1961" ] }, { @@ -20368,7 +20370,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1589" ] }, { @@ -20388,7 +20390,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->27->2127" + "default.handlebars->27->2129" ] }, { @@ -20450,8 +20452,8 @@ "zh-chs": "有限输入", "zh-cht": "有限輸入", "xloc": [ - "default-mobile.handlebars->9->448", - "default.handlebars->27->1489", + "default-mobile.handlebars->9->450", + "default.handlebars->27->1491", "default.handlebars->27->681", "default.handlebars->27->702" ] @@ -20473,8 +20475,8 @@ "zh-chs": "仅有限输入", "zh-cht": "僅有限輸入", "xloc": [ - "default-mobile.handlebars->9->421", - "default.handlebars->27->1445" + "default-mobile.handlebars->9->423", + "default.handlebars->27->1447" ] }, { @@ -20923,7 +20925,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->27->1153" + "default.handlebars->27->1155" ] }, { @@ -20944,10 +20946,10 @@ "zh-cht": "載入中...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->27->1031", - "default.handlebars->27->1308", - "default.handlebars->27->1312", - "default.handlebars->27->2013", + "default.handlebars->27->1033", + "default.handlebars->27->1310", + "default.handlebars->27->1314", + "default.handlebars->27->2015", "default.handlebars->27->793" ] }, @@ -21030,7 +21032,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->27->1609" + "default.handlebars->27->1611" ] }, { @@ -21050,7 +21052,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->27->1610" + "default.handlebars->27->1612" ] }, { @@ -21070,7 +21072,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->27->1248", + "default.handlebars->27->1250", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -21131,7 +21133,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1804" + "default.handlebars->27->1806" ] }, { @@ -21151,7 +21153,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->27->1807" + "default.handlebars->27->1809" ] }, { @@ -21171,7 +21173,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1737" + "default.handlebars->27->1739" ] }, { @@ -21191,7 +21193,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->27->1718" + "default.handlebars->27->1720" ] }, { @@ -21211,7 +21213,7 @@ "zh-chs": "被锁定账户", "zh-cht": "被鎖定賬戶", "xloc": [ - "default.handlebars->27->1891" + "default.handlebars->27->1893" ] }, { @@ -21231,7 +21233,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->27->1635" + "default.handlebars->27->1637" ] }, { @@ -21471,7 +21473,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->27->1154" + "default.handlebars->27->1156" ] }, { @@ -21646,8 +21648,8 @@ "xloc": [ "default-mobile.handlebars->9->207", "default-mobile.handlebars->9->247", - "default.handlebars->27->1009", - "default.handlebars->27->1010", + "default.handlebars->27->1011", + "default.handlebars->27->1012", "default.handlebars->27->219", "default.handlebars->27->450", "default.handlebars->27->622", @@ -21855,7 +21857,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->27->2099" + "default.handlebars->27->2101" ] }, { @@ -21875,7 +21877,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->27->1156" + "default.handlebars->27->1158" ] }, { @@ -21895,7 +21897,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->27->1157" + "default.handlebars->27->1159" ] }, { @@ -21915,7 +21917,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->27->1158" + "default.handlebars->27->1160" ] }, { @@ -21956,10 +21958,10 @@ "zh-chs": "管理设备组计算机", "zh-cht": "管理裝置群電腦", "xloc": [ - "default-mobile.handlebars->9->418", - "default-mobile.handlebars->9->438", - "default.handlebars->27->1442", - "default.handlebars->27->1478" + "default-mobile.handlebars->9->420", + "default-mobile.handlebars->9->440", + "default.handlebars->27->1444", + "default.handlebars->27->1480" ] }, { @@ -21979,10 +21981,10 @@ "zh-chs": "管理设备组用户", "zh-cht": "管理裝置群用戶", "xloc": [ - "default-mobile.handlebars->9->417", - "default-mobile.handlebars->9->437", - "default.handlebars->27->1441", - "default.handlebars->27->1477" + "default-mobile.handlebars->9->419", + "default-mobile.handlebars->9->439", + "default.handlebars->27->1443", + "default.handlebars->27->1479" ] }, { @@ -22022,7 +22024,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->27->1802" + "default.handlebars->27->1804" ] }, { @@ -22062,7 +22064,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->27->1801" + "default.handlebars->27->1803" ] }, { @@ -22082,7 +22084,7 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->27->1800", + "default.handlebars->27->1802", "default.handlebars->27->696" ] }, @@ -22209,7 +22211,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->27->1281" + "default.handlebars->27->1283" ] }, { @@ -22229,8 +22231,8 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default-mobile.handlebars->9->398", - "default.handlebars->27->1318" + "default-mobile.handlebars->9->400", + "default.handlebars->27->1320" ] }, { @@ -22250,7 +22252,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->27->1723" + "default.handlebars->27->1725" ] }, { @@ -22310,7 +22312,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->27->1159" + "default.handlebars->27->1161" ] }, { @@ -22351,7 +22353,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->27->1160" + "default.handlebars->27->1162" ] }, { @@ -22371,7 +22373,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->27->2060" + "default.handlebars->27->2062" ] }, { @@ -22436,7 +22438,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->27->2089" + "default.handlebars->27->2091" ] }, { @@ -22456,9 +22458,9 @@ "zh-chs": "记忆体", "zh-cht": "記憶體", "xloc": [ - "default-mobile.handlebars->9->389", - "default.handlebars->27->2080", - "default.handlebars->27->997", + "default-mobile.handlebars->9->391", + "default.handlebars->27->2082", + "default.handlebars->27->999", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -22511,8 +22513,8 @@ "zh-chs": "网格代理控制台", "zh-cht": "網格代理控制台", "xloc": [ - "default-mobile.handlebars->9->425", - "default.handlebars->27->1450" + "default-mobile.handlebars->9->427", + "default.handlebars->27->1452" ] }, { @@ -22617,7 +22619,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->27->2101" + "default.handlebars->27->2103" ] }, { @@ -22637,7 +22639,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->27->2102" + "default.handlebars->27->2104" ] }, { @@ -22677,7 +22679,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->27->1311" + "default.handlebars->27->1313" ] }, { @@ -22758,7 +22760,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->27->2100" + "default.handlebars->27->2102" ] }, { @@ -22800,7 +22802,7 @@ "xloc": [ "default.handlebars->27->115", "default.handlebars->27->117", - "default.handlebars->27->1307" + "default.handlebars->27->1309" ] }, { @@ -23087,7 +23089,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->27->2098" + "default.handlebars->27->2100" ] }, { @@ -23209,8 +23211,8 @@ "zh-chs": "模型", "zh-cht": "模型", "xloc": [ - "default-mobile.handlebars->9->390", - "default.handlebars->27->998" + "default-mobile.handlebars->9->392", + "default.handlebars->27->1000" ] }, { @@ -23250,7 +23252,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->27->1161" + "default.handlebars->27->1163" ] }, { @@ -23270,7 +23272,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->27->2126" + "default.handlebars->27->2128" ] }, { @@ -23351,7 +23353,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->27->1634" + "default.handlebars->27->1636" ] }, { @@ -23371,7 +23373,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->27->1667" + "default.handlebars->27->1669" ] }, { @@ -23411,7 +23413,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->27->2038" + "default.handlebars->27->2040" ] }, { @@ -23552,7 +23554,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->27->1004" + "default.handlebars->27->1006" ] }, { @@ -23714,8 +23716,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->27->1036", - "default.handlebars->27->1039" + "default.handlebars->27->1038", + "default.handlebars->27->1041" ] }, { @@ -23758,19 +23760,19 @@ "default-mobile.handlebars->9->219", "default-mobile.handlebars->9->333", "default-mobile.handlebars->9->379", - "default-mobile.handlebars->9->399", - "default-mobile.handlebars->9->412", + "default-mobile.handlebars->9->401", + "default-mobile.handlebars->9->414", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1279", - "default.handlebars->27->1319", - "default.handlebars->27->1406", - "default.handlebars->27->1705", - "default.handlebars->27->1810", - "default.handlebars->27->1826", - "default.handlebars->27->1833", - "default.handlebars->27->1878", - "default.handlebars->27->1897", + "default.handlebars->27->1281", + "default.handlebars->27->1321", + "default.handlebars->27->1408", + "default.handlebars->27->1707", + "default.handlebars->27->1812", + "default.handlebars->27->1828", + "default.handlebars->27->1835", + "default.handlebars->27->1880", + "default.handlebars->27->1899", "default.handlebars->27->558", "default.handlebars->27->76", "default.handlebars->27->852", @@ -23819,7 +23821,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1792" + "default.handlebars->27->1794" ] }, { @@ -23839,7 +23841,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->27->1162" + "default.handlebars->27->1164" ] }, { @@ -23859,7 +23861,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->27->1163" + "default.handlebars->27->1165" ] }, { @@ -23879,7 +23881,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->27->1164" + "default.handlebars->27->1166" ] }, { @@ -23979,7 +23981,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->27->1674" + "default.handlebars->27->1676" ] }, { @@ -24020,8 +24022,8 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1272", - "default.handlebars->27->1284", + "default.handlebars->27->1274", + "default.handlebars->27->1286", "default.handlebars->27->784" ] }, @@ -24044,7 +24046,7 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->304", - "default.handlebars->27->1566", + "default.handlebars->27->1568", "default.handlebars->27->894", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -24109,8 +24111,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->27->1267", - "default.handlebars->27->1268" + "default.handlebars->27->1269", + "default.handlebars->27->1270" ] }, { @@ -24212,7 +24214,7 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->27->1485", + "default.handlebars->27->1487", "default.handlebars->27->682", "default.handlebars->27->703" ] @@ -24234,7 +24236,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->27->1446" + "default.handlebars->27->1448" ] }, { @@ -24254,8 +24256,8 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->27->1681", - "default.handlebars->27->2012", + "default.handlebars->27->1683", + "default.handlebars->27->2014", "default.handlebars->27->929" ] }, @@ -24276,8 +24278,8 @@ "zh-chs": "不能存取档案", "zh-cht": "不能存取檔案", "xloc": [ - "default-mobile.handlebars->9->423", - "default.handlebars->27->1448" + "default-mobile.handlebars->9->425", + "default.handlebars->27->1450" ] }, { @@ -24297,8 +24299,8 @@ "zh-chs": "没有档案", "zh-cht": "沒有檔案", "xloc": [ - "default-mobile.handlebars->9->446", - "default.handlebars->27->1487", + "default-mobile.handlebars->9->448", + "default.handlebars->27->1489", "default.handlebars->27->679", "default.handlebars->27->700" ] @@ -24341,10 +24343,10 @@ "zh-chs": "没有英特尔®AMT", "zh-cht": "沒有Intel® AMT", "xloc": [ - "default-mobile.handlebars->9->424", - "default-mobile.handlebars->9->447", - "default.handlebars->27->1449", - "default.handlebars->27->1488" + "default-mobile.handlebars->9->426", + "default-mobile.handlebars->9->449", + "default.handlebars->27->1451", + "default.handlebars->27->1490" ] }, { @@ -24424,7 +24426,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->27->1860" + "default.handlebars->27->1862" ] }, { @@ -24444,7 +24446,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->27->1805" + "default.handlebars->27->1807" ] }, { @@ -24464,9 +24466,9 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->27->1350", - "default.handlebars->27->1378", - "default.handlebars->27->1381" + "default.handlebars->27->1352", + "default.handlebars->27->1380", + "default.handlebars->27->1383" ] }, { @@ -24487,10 +24489,10 @@ "zh-cht": "沒有權利", "xloc": [ "default-mobile.handlebars->9->106", - "default-mobile.handlebars->9->407", - "default-mobile.handlebars->9->454", - "default.handlebars->27->1293", - "default.handlebars->27->1495", + "default-mobile.handlebars->9->409", + "default-mobile.handlebars->9->456", + "default.handlebars->27->1295", + "default.handlebars->27->1497", "default.handlebars->27->693", "default.handlebars->27->714" ] @@ -24534,8 +24536,8 @@ "zh-chs": "没有终端", "zh-cht": "沒有終端", "xloc": [ - "default-mobile.handlebars->9->445", - "default.handlebars->27->1486", + "default-mobile.handlebars->9->447", + "default.handlebars->27->1488", "default.handlebars->27->678", "default.handlebars->27->699" ] @@ -24557,8 +24559,8 @@ "zh-chs": "不能访问终端", "zh-cht": "不能訪問終端", "xloc": [ - "default-mobile.handlebars->9->422", - "default.handlebars->27->1447" + "default-mobile.handlebars->9->424", + "default.handlebars->27->1449" ] }, { @@ -24578,7 +24580,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1806" + "default.handlebars->27->1808" ] }, { @@ -24606,8 +24608,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->27->1866", - "default.handlebars->27->1984" + "default.handlebars->27->1868", + "default.handlebars->27->1986" ] }, { @@ -24727,8 +24729,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->27->1872", - "default.handlebars->27->1996" + "default.handlebars->27->1874", + "default.handlebars->27->1998" ] }, { @@ -24748,7 +24750,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->27->1538" + "default.handlebars->27->1540" ] }, { @@ -24831,7 +24833,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->27->1809" + "default.handlebars->27->1811" ] }, { @@ -24851,8 +24853,8 @@ "zh-chs": "没有此设备的讯息。", "zh-cht": "沒有此裝置的訊息。", "xloc": [ - "default-mobile.handlebars->9->395", - "default.handlebars->27->1003" + "default-mobile.handlebars->9->397", + "default.handlebars->27->1005" ] }, { @@ -24952,7 +24954,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->27->2014" + "default.handlebars->27->2016" ] }, { @@ -24972,7 +24974,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->27->1892" + "default.handlebars->27->1894" ] }, { @@ -24992,7 +24994,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->27->1990" + "default.handlebars->27->1992" ] }, { @@ -25012,7 +25014,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1713" + "default.handlebars->27->1715" ] }, { @@ -25101,26 +25103,26 @@ "default-mobile.handlebars->9->224", "default-mobile.handlebars->9->249", "default-mobile.handlebars->9->302", - "default-mobile.handlebars->9->401", - "default.handlebars->27->1314", - "default.handlebars->27->1321", - "default.handlebars->27->1329", - "default.handlebars->27->1341", - "default.handlebars->27->1346", + "default-mobile.handlebars->9->403", + "default.handlebars->27->1316", + "default.handlebars->27->1323", + "default.handlebars->27->1331", + "default.handlebars->27->1343", "default.handlebars->27->1348", - "default.handlebars->27->1529", - "default.handlebars->27->1548", - "default.handlebars->27->1553", - "default.handlebars->27->1689", + "default.handlebars->27->1350", + "default.handlebars->27->1531", + "default.handlebars->27->1550", + "default.handlebars->27->1555", + "default.handlebars->27->1691", "default.handlebars->27->175", - "default.handlebars->27->1830", "default.handlebars->27->1832", - "default.handlebars->27->1849", + "default.handlebars->27->1834", + "default.handlebars->27->1851", "default.handlebars->27->190", - "default.handlebars->27->1911", - "default.handlebars->27->1920", - "default.handlebars->27->1924", - "default.handlebars->27->1936", + "default.handlebars->27->1913", + "default.handlebars->27->1922", + "default.handlebars->27->1926", + "default.handlebars->27->1938", "default.handlebars->27->206", "default.handlebars->27->207", "default.handlebars->27->555", @@ -25169,7 +25171,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->27->1165" + "default.handlebars->27->1167" ] }, { @@ -25189,7 +25191,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->27->1166" + "default.handlebars->27->1168" ] }, { @@ -25209,7 +25211,7 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->27->1167" + "default.handlebars->27->1169" ] }, { @@ -25275,8 +25277,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->27->1525", - "default.handlebars->27->1533" + "default.handlebars->27->1527", + "default.handlebars->27->1535" ] }, { @@ -25317,7 +25319,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->27->2030" + "default.handlebars->27->2032" ] }, { @@ -25337,8 +25339,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->27->1898", - "default.handlebars->27->1899" + "default.handlebars->27->1900", + "default.handlebars->27->1901" ] }, { @@ -25358,7 +25360,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->27->1966" + "default.handlebars->27->1968" ] }, { @@ -25378,8 +25380,8 @@ "zh-chs": "笔记", "zh-cht": "筆記", "xloc": [ - "default.handlebars->27->1356", - "default.handlebars->27->1944", + "default.handlebars->27->1358", + "default.handlebars->27->1946", "default.handlebars->27->627", "default.handlebars->27->687", "default.handlebars->27->708", @@ -25423,8 +25425,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->27->1254", - "default.handlebars->27->1524", + "default.handlebars->27->1256", + "default.handlebars->27->1526", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -25445,7 +25447,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->27->1520" + "default.handlebars->27->1522" ] }, { @@ -25465,7 +25467,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->27->1249" + "default.handlebars->27->1251" ] }, { @@ -25485,7 +25487,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->27->1347" + "default.handlebars->27->1349" ] }, { @@ -25506,7 +25508,7 @@ "zh-cht": "通知", "xloc": [ "default.handlebars->27->187", - "default.handlebars->27->1950" + "default.handlebars->27->1952" ] }, { @@ -25546,9 +25548,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->27->1414", - "default.handlebars->27->1418", - "default.handlebars->27->1421" + "default.handlebars->27->1416", + "default.handlebars->27->1420", + "default.handlebars->27->1423" ] }, { @@ -25568,7 +25570,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->27->1752" + "default.handlebars->27->1754" ] }, { @@ -25590,7 +25592,7 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1305", + "default.handlebars->27->1307", "default.handlebars->27->598", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", @@ -25640,7 +25642,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->27->1168" + "default.handlebars->27->1170" ] }, { @@ -25660,7 +25662,7 @@ "zh-chs": "发生在{0}", "zh-cht": "發生在{0}", "xloc": [ - "default.handlebars->27->2044" + "default.handlebars->27->2046" ] }, { @@ -25687,7 +25689,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->27->1710" + "default.handlebars->27->1712" ] }, { @@ -25708,7 +25710,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->27->1266" + "default.handlebars->27->1268" ] }, { @@ -25728,7 +25730,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->27->1686" + "default.handlebars->27->1688" ] }, { @@ -25791,7 +25793,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->27->1709" + "default.handlebars->27->1711" ] }, { @@ -25975,7 +25977,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->27->1602" + "default.handlebars->27->1604" ] }, { @@ -26021,8 +26023,8 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->27->1736", - "default.handlebars->27->1817", + "default.handlebars->27->1738", + "default.handlebars->27->1819", "default.handlebars->27->466", "default.handlebars->27->481", "default.handlebars->27->753" @@ -26065,7 +26067,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->27->1169" + "default.handlebars->27->1171" ] }, { @@ -26085,7 +26087,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->27->1170" + "default.handlebars->27->1172" ] }, { @@ -26209,8 +26211,8 @@ "zh-chs": "零件号", "zh-cht": "零件號", "xloc": [ - "default-mobile.handlebars->9->388", - "default.handlebars->27->996" + "default-mobile.handlebars->9->390", + "default.handlebars->27->998" ] }, { @@ -26230,7 +26232,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->27->1724" + "default.handlebars->27->1726" ] }, { @@ -26285,8 +26287,8 @@ "zh-cht": "部分權限", "xloc": [ "default-mobile.handlebars->9->104", - "default-mobile.handlebars->9->405", - "default.handlebars->27->1291" + "default-mobile.handlebars->9->407", + "default.handlebars->27->1293" ] }, { @@ -26306,7 +26308,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->27->1895" + "default.handlebars->27->1897" ] }, { @@ -26347,12 +26349,12 @@ "zh-cht": "密碼", "xloc": [ "default-mobile.handlebars->9->274", - "default.handlebars->27->1780", - "default.handlebars->27->1781", - "default.handlebars->27->1916", + "default.handlebars->27->1782", + "default.handlebars->27->1783", "default.handlebars->27->1918", - "default.handlebars->27->1969", - "default.handlebars->27->1970", + "default.handlebars->27->1920", + "default.handlebars->27->1971", + "default.handlebars->27->1972", "default.handlebars->27->294", "default.handlebars->27->325", "default.handlebars->27->768", @@ -26496,7 +26498,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->27->1971" + "default.handlebars->27->1973" ] }, { @@ -26517,7 +26519,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->27->1269" + "default.handlebars->27->1271" ] }, { @@ -26537,7 +26539,7 @@ "zh-chs": "密码不符", "zh-cht": "密碼不符", "xloc": [ - "default.handlebars->27->1387" + "default.handlebars->27->1389" ] }, { @@ -26579,8 +26581,8 @@ "zh-chs": "密码*", "zh-cht": "密碼*", "xloc": [ - "default.handlebars->27->1385", - "default.handlebars->27->1386" + "default.handlebars->27->1387", + "default.handlebars->27->1388" ] }, { @@ -26603,8 +26605,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->27->1261", - "default.handlebars->27->1262", + "default.handlebars->27->1263", + "default.handlebars->27->1264", "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", @@ -26642,7 +26644,7 @@ "default-mobile.handlebars->9->317", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->27->1575", + "default.handlebars->27->1577", "default.handlebars->27->882", "default.handlebars->27->908", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", @@ -26707,7 +26709,7 @@ "zh-chs": "执行代理指令", "zh-cht": "執行代理指令", "xloc": [ - "default.handlebars->27->1012" + "default.handlebars->27->1014" ] }, { @@ -26781,7 +26783,7 @@ "zh-chs": "执行英特尔®AMT管理员控制模式(ACM)激活。", "zh-cht": "執行英特爾®AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->27->1366", + "default.handlebars->27->1368", "default.handlebars->27->282" ] }, @@ -26822,7 +26824,7 @@ "zh-chs": "执行英特尔AMT客户端控制模式(CCM)激活。", "zh-cht": "執行Intel® AMT客戶端控制模式(CCM)啟動。", "xloc": [ - "default.handlebars->27->1364", + "default.handlebars->27->1366", "default.handlebars->27->280" ] }, @@ -26906,7 +26908,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->27->1607" + "default.handlebars->27->1609" ] }, { @@ -26926,9 +26928,9 @@ "zh-chs": "权限", "zh-cht": "權限", "xloc": [ - "default-mobile.handlebars->9->457", - "default.handlebars->27->1498", - "default.handlebars->27->1708" + "default-mobile.handlebars->9->459", + "default.handlebars->27->1500", + "default.handlebars->27->1710" ] }, { @@ -26948,7 +26950,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->27->1171" + "default.handlebars->27->1173" ] }, { @@ -26971,10 +26973,10 @@ "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", - "default.handlebars->27->1023", - "default.handlebars->27->1026", + "default.handlebars->27->1025", + "default.handlebars->27->1028", "default.handlebars->27->159", - "default.handlebars->27->1961" + "default.handlebars->27->1963" ] }, { @@ -26994,7 +26996,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->27->1910" + "default.handlebars->27->1912" ] }, { @@ -27015,8 +27017,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->27->1025", - "default.handlebars->27->1960" + "default.handlebars->27->1027", + "default.handlebars->27->1962" ] }, { @@ -27155,7 +27157,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->27->1256" + "default.handlebars->27->1258" ] }, { @@ -27176,7 +27178,7 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->27->197", - "default.handlebars->27->2123" + "default.handlebars->27->2125" ] }, { @@ -27320,7 +27322,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->27->1290" + "default.handlebars->27->1292" ] }, { @@ -27340,7 +27342,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->27->1172" + "default.handlebars->27->1174" ] }, { @@ -27360,7 +27362,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->27->1173" + "default.handlebars->27->1175" ] }, { @@ -27380,7 +27382,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->27->1174" + "default.handlebars->27->1176" ] }, { @@ -27461,7 +27463,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->27->1531", + "default.handlebars->27->1533", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -27571,7 +27573,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->27->2029" + "default.handlebars->27->2031" ] }, { @@ -27717,7 +27719,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->27->1599" + "default.handlebars->27->1601" ] }, { @@ -27777,9 +27779,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->27->1415", - "default.handlebars->27->1419", - "default.handlebars->27->1422" + "default.handlebars->27->1417", + "default.handlebars->27->1421", + "default.handlebars->27->1424" ] }, { @@ -27799,7 +27801,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->27->2027", + "default.handlebars->27->2029", "player.handlebars->3->16" ] }, @@ -27859,7 +27861,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->1560" + "default.handlebars->27->1562" ] }, { @@ -27879,7 +27881,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->27->1175" + "default.handlebars->27->1177" ] }, { @@ -27899,7 +27901,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->27->1176" + "default.handlebars->27->1178" ] }, { @@ -27919,7 +27921,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->27->1177" + "default.handlebars->27->1179" ] }, { @@ -27981,7 +27983,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->27->1178" + "default.handlebars->27->1180" ] }, { @@ -28166,7 +28168,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->27->2093" + "default.handlebars->27->2095" ] }, { @@ -28186,7 +28188,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->27->1782" + "default.handlebars->27->1784" ] }, { @@ -28226,7 +28228,7 @@ "zh-chs": "重新激活英特尔®AMT", "zh-cht": "重新啟動Intel® AMT", "xloc": [ - "default.handlebars->27->1389" + "default.handlebars->27->1391" ] }, { @@ -28246,9 +28248,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->27->1907", "default.handlebars->27->1909", - "default.handlebars->27->1962" + "default.handlebars->27->1911", + "default.handlebars->27->1964" ] }, { @@ -28268,7 +28270,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->27->1791" + "default.handlebars->27->1793" ] }, { @@ -28296,7 +28298,7 @@ "en": "Record Sessions", "nl": "Sessies opnemen", "xloc": [ - "default.handlebars->27->1328" + "default.handlebars->27->1330" ] }, { @@ -28323,7 +28325,7 @@ "en": "Record sessions", "nl": "Sessies opnemen", "xloc": [ - "default.handlebars->27->1425" + "default.handlebars->27->1427" ] }, { @@ -28343,7 +28345,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->27->2041" + "default.handlebars->27->2043" ] }, { @@ -28385,7 +28387,7 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->305", - "default.handlebars->27->1567", + "default.handlebars->27->1569", "default.handlebars->27->895" ] }, @@ -28498,7 +28500,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->27->2072" + "default.handlebars->27->2074" ] }, { @@ -28518,7 +28520,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->27->2065" + "default.handlebars->27->2067" ] }, { @@ -28538,8 +28540,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->27->2071", - "default.handlebars->27->2087" + "default.handlebars->27->2073", + "default.handlebars->27->2089" ] }, { @@ -28683,8 +28685,8 @@ "en": "Remote Commands", "nl": "Externe opdrachten", "xloc": [ - "default-mobile.handlebars->9->432", - "default.handlebars->27->1457" + "default-mobile.handlebars->9->434", + "default.handlebars->27->1459" ] }, { @@ -28704,10 +28706,10 @@ "zh-chs": "遥控", "zh-cht": "遙控", "xloc": [ - "default-mobile.handlebars->9->419", - "default-mobile.handlebars->9->439", - "default.handlebars->27->1443", - "default.handlebars->27->1479" + "default-mobile.handlebars->9->421", + "default-mobile.handlebars->9->441", + "default.handlebars->27->1445", + "default.handlebars->27->1481" ] }, { @@ -28750,8 +28752,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->27->1613", - "default.handlebars->27->1619" + "default.handlebars->27->1615", + "default.handlebars->27->1621" ] }, { @@ -28771,7 +28773,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->27->1614" + "default.handlebars->27->1616" ] }, { @@ -28791,7 +28793,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->27->1620" + "default.handlebars->27->1622" ] }, { @@ -28811,9 +28813,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->27->1611", - "default.handlebars->27->1615", - "default.handlebars->27->1621" + "default.handlebars->27->1613", + "default.handlebars->27->1617", + "default.handlebars->27->1623" ] }, { @@ -28897,7 +28899,7 @@ "zh-chs": "远程网格用户", "zh-cht": "遠程網格用戶", "xloc": [ - "default-mobile.handlebars->9->460" + "default-mobile.handlebars->9->462" ] }, { @@ -28934,10 +28936,10 @@ "zh-chs": "仅远程查看", "zh-cht": "僅遠程查看", "xloc": [ - "default-mobile.handlebars->9->420", - "default-mobile.handlebars->9->444", - "default.handlebars->27->1444", - "default.handlebars->27->1484" + "default-mobile.handlebars->9->422", + "default-mobile.handlebars->9->446", + "default.handlebars->27->1446", + "default.handlebars->27->1486" ] }, { @@ -29018,7 +29020,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->27->1301" + "default.handlebars->27->1303" ] }, { @@ -29072,8 +29074,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->27->1876", - "default.handlebars->27->2010" + "default.handlebars->27->1878", + "default.handlebars->27->2012" ] }, { @@ -29093,8 +29095,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->27->1874", - "default.handlebars->27->1997" + "default.handlebars->27->1876", + "default.handlebars->27->1999" ] }, { @@ -29131,7 +29133,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->27->2006" + "default.handlebars->27->2008" ] }, { @@ -29151,8 +29153,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->27->1503", - "default.handlebars->27->2002" + "default.handlebars->27->1505", + "default.handlebars->27->2004" ] }, { @@ -29172,7 +29174,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->27->1884" + "default.handlebars->27->1886" ] }, { @@ -29192,8 +29194,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->27->1501", - "default.handlebars->27->1999" + "default.handlebars->27->1503", + "default.handlebars->27->2001" ] }, { @@ -29213,7 +29215,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->27->1974" + "default.handlebars->27->1976" ] }, { @@ -29233,7 +29235,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1783" + "default.handlebars->27->1785" ] }, { @@ -29253,7 +29255,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->27->1423" + "default.handlebars->27->1425" ] }, { @@ -29294,7 +29296,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->27->1022" + "default.handlebars->27->1024" ] }, { @@ -29354,7 +29356,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->27->1952" + "default.handlebars->27->1954" ] }, { @@ -29374,7 +29376,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->27->1988" + "default.handlebars->27->1990" ] }, { @@ -29394,7 +29396,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->27->1870" + "default.handlebars->27->1872" ] }, { @@ -29414,7 +29416,7 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->27->1864", + "default.handlebars->27->1866", "default.handlebars->27->671" ] }, @@ -29435,10 +29437,10 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->27->1373", - "default.handlebars->27->1858", - "default.handlebars->27->1982", - "default.handlebars->27->1994", + "default.handlebars->27->1375", + "default.handlebars->27->1860", + "default.handlebars->27->1984", + "default.handlebars->27->1996", "default.handlebars->27->672" ] }, @@ -29459,7 +29461,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->27->1673" + "default.handlebars->27->1675" ] }, { @@ -29479,7 +29481,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->27->1669" + "default.handlebars->27->1671" ] }, { @@ -29499,7 +29501,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->27->1679" + "default.handlebars->27->1681" ] }, { @@ -29519,7 +29521,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->27->1676" + "default.handlebars->27->1678" ] }, { @@ -29539,9 +29541,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->27->1642", - "default.handlebars->27->1663", - "default.handlebars->27->1668" + "default.handlebars->27->1644", + "default.handlebars->27->1665", + "default.handlebars->27->1670" ] }, { @@ -29561,7 +29563,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->27->1652" + "default.handlebars->27->1654" ] }, { @@ -29581,7 +29583,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->27->1665" + "default.handlebars->27->1667" ] }, { @@ -29601,8 +29603,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->27->1644", - "default.handlebars->27->1654" + "default.handlebars->27->1646", + "default.handlebars->27->1656" ] }, { @@ -29626,7 +29628,7 @@ "default-mobile.handlebars->9->309", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", - "default.handlebars->27->1571", + "default.handlebars->27->1573", "default.handlebars->27->524", "default.handlebars->27->899", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -29651,7 +29653,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->27->1630" + "default.handlebars->27->1632" ] }, { @@ -29671,7 +29673,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->27->1687" + "default.handlebars->27->1689" ] }, { @@ -29691,7 +29693,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->27->1682" + "default.handlebars->27->1684" ] }, { @@ -29711,7 +29713,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->27->1270" + "default.handlebars->27->1272" ] }, { @@ -29732,8 +29734,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1788", - "default.handlebars->27->1972" + "default.handlebars->27->1790", + "default.handlebars->27->1974" ] }, { @@ -29825,8 +29827,8 @@ "en": "Reset / Power Off", "nl": "Reset / uitschakelen", "xloc": [ - "default-mobile.handlebars->9->433", - "default.handlebars->27->1458" + "default-mobile.handlebars->9->435", + "default.handlebars->27->1460" ] }, { @@ -29939,8 +29941,8 @@ "en": "Reset/Off", "nl": "Reset/Uit", "xloc": [ - "default-mobile.handlebars->9->453", - "default.handlebars->27->1494", + "default-mobile.handlebars->9->455", + "default.handlebars->27->1496", "default.handlebars->27->692", "default.handlebars->27->713" ] @@ -29983,7 +29985,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->27->1306" + "default.handlebars->27->1308" ] }, { @@ -30023,7 +30025,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->27->1303" + "default.handlebars->27->1305" ] }, { @@ -30043,7 +30045,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->27->1896" + "default.handlebars->27->1898" ] }, { @@ -30063,7 +30065,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->27->1179" + "default.handlebars->27->1181" ] }, { @@ -30083,7 +30085,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->27->1180" + "default.handlebars->27->1182" ] }, { @@ -30103,7 +30105,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1181" + "default.handlebars->27->1183" ] }, { @@ -30125,7 +30127,7 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->299", - "default.handlebars->27->1539", + "default.handlebars->27->1541", "default.handlebars->27->889" ] }, @@ -30387,7 +30389,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->27->1606" + "default.handlebars->27->1608" ] }, { @@ -30407,7 +30409,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->27->1182" + "default.handlebars->27->1184" ] }, { @@ -30427,7 +30429,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1183" + "default.handlebars->27->1185" ] }, { @@ -30447,8 +30449,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->27->1941", - "default.handlebars->27->1946", + "default.handlebars->27->1943", + "default.handlebars->27->1948", "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", @@ -30473,7 +30475,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->27->1958" + "default.handlebars->27->1960" ] }, { @@ -30535,7 +30537,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->27->1184" + "default.handlebars->27->1186" ] }, { @@ -30593,7 +30595,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->27->1185" + "default.handlebars->27->1187" ] }, { @@ -30613,7 +30615,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->27->1186" + "default.handlebars->27->1188" ] }, { @@ -30633,7 +30635,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->27->1187" + "default.handlebars->27->1189" ] }, { @@ -31023,7 +31025,7 @@ "xloc": [ "default-mobile.handlebars->9->275", "default-mobile.handlebars->9->368", - "default.handlebars->27->1942", + "default.handlebars->27->1944", "default.handlebars->27->295", "default.handlebars->27->769", "default.handlebars->27->976" @@ -31046,7 +31048,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->27->1939" + "default.handlebars->27->1941" ] }, { @@ -31086,9 +31088,9 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->27->1563", - "default.handlebars->27->1732", - "default.handlebars->27->1815", + "default.handlebars->27->1565", + "default.handlebars->27->1734", + "default.handlebars->27->1817", "default.handlebars->27->453", "default.handlebars->27->891", "default.handlebars->27->893", @@ -31117,9 +31119,9 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->27->1562", - "default.handlebars->27->1731", - "default.handlebars->27->1814", + "default.handlebars->27->1564", + "default.handlebars->27->1733", + "default.handlebars->27->1816", "default.handlebars->27->452", "default.handlebars->27->892", "default.handlebars->meshContextMenu->cxselectnone" @@ -31222,8 +31224,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->27->1735", - "default.handlebars->27->1816" + "default.handlebars->27->1737", + "default.handlebars->27->1818" ] }, { @@ -31285,8 +31287,8 @@ "zh-chs": "仅自我事件", "zh-cht": "僅自我事件", "xloc": [ - "default-mobile.handlebars->9->449", - "default.handlebars->27->1490" + "default-mobile.handlebars->9->451", + "default.handlebars->27->1492" ] }, { @@ -31329,7 +31331,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->27->1746" + "default.handlebars->27->1748" ] }, { @@ -31390,7 +31392,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->27->1744" + "default.handlebars->27->1746" ] }, { @@ -31410,7 +31412,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->27->1947" + "default.handlebars->27->1949" ] }, { @@ -31430,7 +31432,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->27->1949" + "default.handlebars->27->1951" ] }, { @@ -31450,7 +31452,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1855" + "default.handlebars->27->1857" ] }, { @@ -31470,7 +31472,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1747" + "default.handlebars->27->1749" ] }, { @@ -31490,7 +31492,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->27->1727" + "default.handlebars->27->1729" ] }, { @@ -31530,7 +31532,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->27->1787" + "default.handlebars->27->1789" ] }, { @@ -31652,7 +31654,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->27->1951" + "default.handlebars->27->1953" ] }, { @@ -31672,7 +31674,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->27->1190" + "default.handlebars->27->1192" ] }, { @@ -31713,7 +31715,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->27->1797" + "default.handlebars->27->1799" ] }, { @@ -31733,7 +31735,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->27->2103" + "default.handlebars->27->2105" ] }, { @@ -31753,7 +31755,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->27->2104" + "default.handlebars->27->2106" ] }, { @@ -31773,11 +31775,11 @@ "zh-chs": "服务器档案", "zh-cht": "伺服器檔案", "xloc": [ - "default-mobile.handlebars->9->426", - "default-mobile.handlebars->9->441", - "default.handlebars->27->1451", - "default.handlebars->27->1481", - "default.handlebars->27->1794", + "default-mobile.handlebars->9->428", + "default-mobile.handlebars->9->443", + "default.handlebars->27->1453", + "default.handlebars->27->1483", + "default.handlebars->27->1796", "default.handlebars->27->685", "default.handlebars->27->706" ] @@ -31799,8 +31801,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->27->1719", - "default.handlebars->27->1808" + "default.handlebars->27->1721", + "default.handlebars->27->1810" ] }, { @@ -31820,7 +31822,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->27->1913" + "default.handlebars->27->1915" ] }, { @@ -31840,7 +31842,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->27->1798" + "default.handlebars->27->1800" ] }, { @@ -31860,7 +31862,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->27->1912" + "default.handlebars->27->1914" ] }, { @@ -31880,7 +31882,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->27->2051" + "default.handlebars->27->2053" ] }, { @@ -31920,7 +31922,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->27->2114" + "default.handlebars->27->2116" ] }, { @@ -31940,7 +31942,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->27->1799" + "default.handlebars->27->1801" ] }, { @@ -32083,7 +32085,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->27->2095" + "default.handlebars->27->2097" ] }, { @@ -32143,7 +32145,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->27->2015" + "default.handlebars->27->2017" ] }, { @@ -32268,7 +32270,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->27->1604" + "default.handlebars->27->1606" ] }, { @@ -32390,7 +32392,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->27->1294" + "default.handlebars->27->1296" ] }, { @@ -32648,8 +32650,8 @@ "zh-chs": "只显示自己的事件", "zh-cht": "只顯示自己的事件", "xloc": [ - "default-mobile.handlebars->9->429", - "default.handlebars->27->1454" + "default-mobile.handlebars->9->431", + "default.handlebars->27->1456" ] }, { @@ -32669,7 +32671,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1416" + "default.handlebars->27->1418" ] }, { @@ -32749,8 +32751,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->27->1750", - "default.handlebars->27->1773" + "default.handlebars->27->1752", + "default.handlebars->27->1775" ] }, { @@ -32770,8 +32772,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->27->1749", - "default.handlebars->27->1772" + "default.handlebars->27->1751", + "default.handlebars->27->1774" ] }, { @@ -32791,8 +32793,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->27->1751", - "default.handlebars->27->1774" + "default.handlebars->27->1753", + "default.handlebars->27->1776" ] }, { @@ -32812,8 +32814,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->27->1748", - "default.handlebars->27->1771" + "default.handlebars->27->1750", + "default.handlebars->27->1773" ] }, { @@ -33007,8 +33009,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->1353", - "default.handlebars->27->1376" + "default.handlebars->27->1355", + "default.handlebars->27->1378" ] }, { @@ -33028,9 +33030,9 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1351", - "default.handlebars->27->1379", - "default.handlebars->27->1383" + "default.handlebars->27->1353", + "default.handlebars->27->1381", + "default.handlebars->27->1385" ] }, { @@ -33050,7 +33052,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->27->1188" + "default.handlebars->27->1190" ] }, { @@ -33070,7 +33072,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->27->1189" + "default.handlebars->27->1191" ] }, { @@ -33112,8 +33114,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->27->2018", - "default.handlebars->27->2033", + "default.handlebars->27->2020", + "default.handlebars->27->2035", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -33284,7 +33286,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->27->1191" + "default.handlebars->27->1193" ] }, { @@ -33304,7 +33306,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->27->1192" + "default.handlebars->27->1194" ] }, { @@ -33387,7 +33389,7 @@ "zh-chs": "软断开代理", "zh-cht": "軟斷開代理", "xloc": [ - "default.handlebars->27->1018" + "default.handlebars->27->1020" ] }, { @@ -33448,7 +33450,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->27->1193" + "default.handlebars->27->1195" ] }, { @@ -33468,7 +33470,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->27->1194" + "default.handlebars->27->1196" ] }, { @@ -33619,7 +33621,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->27->1195" + "default.handlebars->27->1197" ] }, { @@ -33639,7 +33641,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->27->1196" + "default.handlebars->27->1198" ] }, { @@ -33659,7 +33661,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->27->1197" + "default.handlebars->27->1199" ] }, { @@ -33679,7 +33681,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->27->1198" + "default.handlebars->27->1200" ] }, { @@ -33699,7 +33701,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->27->1199" + "default.handlebars->27->1201" ] }, { @@ -33719,7 +33721,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->27->1200" + "default.handlebars->27->1202" ] }, { @@ -33739,7 +33741,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->27->1201" + "default.handlebars->27->1203" ] }, { @@ -33759,7 +33761,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->27->1202" + "default.handlebars->27->1204" ] }, { @@ -33779,7 +33781,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->27->1203" + "default.handlebars->27->1205" ] }, { @@ -33799,7 +33801,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->27->1204" + "default.handlebars->27->1206" ] }, { @@ -33819,7 +33821,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->27->1205" + "default.handlebars->27->1207" ] }, { @@ -33839,7 +33841,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->27->1206" + "default.handlebars->27->1208" ] }, { @@ -33859,7 +33861,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->27->1207" + "default.handlebars->27->1209" ] }, { @@ -33879,7 +33881,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->27->1208" + "default.handlebars->27->1210" ] }, { @@ -33899,7 +33901,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->27->1209" + "default.handlebars->27->1211" ] }, { @@ -33919,7 +33921,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->27->1210" + "default.handlebars->27->1212" ] }, { @@ -33939,7 +33941,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->27->1211" + "default.handlebars->27->1213" ] }, { @@ -33959,7 +33961,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->27->1212" + "default.handlebars->27->1214" ] }, { @@ -33979,7 +33981,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->27->1213" + "default.handlebars->27->1215" ] }, { @@ -33999,7 +34001,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->27->1214" + "default.handlebars->27->1216" ] }, { @@ -34103,8 +34105,8 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->27->2016", - "default.handlebars->27->2035", + "default.handlebars->27->2018", + "default.handlebars->27->2037", "default.handlebars->27->835", "desktop.handlebars->3->15" ] @@ -34126,7 +34128,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->27->1588" + "default.handlebars->27->1590" ] }, { @@ -34146,7 +34148,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->27->1597" + "default.handlebars->27->1599" ] }, { @@ -34166,7 +34168,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->27->1598" + "default.handlebars->27->1600" ] }, { @@ -34186,7 +34188,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->27->1595" + "default.handlebars->27->1597" ] }, { @@ -34206,7 +34208,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->27->1617" + "default.handlebars->27->1619" ] }, { @@ -34226,7 +34228,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->27->1618" + "default.handlebars->27->1620" ] }, { @@ -34246,7 +34248,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->27->1624" + "default.handlebars->27->1626" ] }, { @@ -34266,7 +34268,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->27->1625" + "default.handlebars->27->1627" ] }, { @@ -34286,7 +34288,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->27->1596" + "default.handlebars->27->1598" ] }, { @@ -34306,7 +34308,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->27->1612" + "default.handlebars->27->1614" ] }, { @@ -34326,7 +34328,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->27->1622" + "default.handlebars->27->1624" ] }, { @@ -34387,8 +34389,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->27->1965", - "default.handlebars->27->2028", + "default.handlebars->27->1967", + "default.handlebars->27->2030", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -34475,8 +34477,8 @@ "zh-chs": "储存", "zh-cht": "儲存", "xloc": [ - "default-mobile.handlebars->9->394", - "default.handlebars->27->1002" + "default-mobile.handlebars->9->396", + "default.handlebars->27->1004" ] }, { @@ -34516,7 +34518,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->27->1543" + "default.handlebars->27->1545" ] }, { @@ -34536,7 +34538,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->27->1287" + "default.handlebars->27->1289" ] }, { @@ -34581,7 +34583,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->27->1745" + "default.handlebars->27->1747" ] }, { @@ -34681,7 +34683,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->27->1215" + "default.handlebars->27->1217" ] }, { @@ -34701,7 +34703,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->27->1216" + "default.handlebars->27->1218" ] }, { @@ -34728,7 +34730,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->27->1217" + "default.handlebars->27->1219" ] }, { @@ -34748,7 +34750,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->27->1218" + "default.handlebars->27->1220" ] }, { @@ -34768,7 +34770,7 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->27->1219" + "default.handlebars->27->1221" ] }, { @@ -34788,7 +34790,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->27->1424" + "default.handlebars->27->1426" ] }, { @@ -35046,7 +35048,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->27->1220" + "default.handlebars->27->1222" ] }, { @@ -35066,7 +35068,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->27->1221" + "default.handlebars->27->1223" ] }, { @@ -35086,7 +35088,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->27->1222" + "default.handlebars->27->1224" ] }, { @@ -35107,8 +35109,8 @@ "zh-cht": "終端機", "xloc": [ "default-mobile.handlebars->9->168", - "default.handlebars->27->1417", - "default.handlebars->27->2022", + "default.handlebars->27->1419", + "default.handlebars->27->2024", "default.handlebars->27->253", "default.handlebars->27->534", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -35152,9 +35154,9 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->27->1336", - "default.handlebars->27->1844", - "default.handlebars->27->1931", + "default.handlebars->27->1338", + "default.handlebars->27->1846", + "default.handlebars->27->1933", "default.handlebars->27->606" ] }, @@ -35175,9 +35177,9 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->27->1335", - "default.handlebars->27->1843", - "default.handlebars->27->1930", + "default.handlebars->27->1337", + "default.handlebars->27->1845", + "default.handlebars->27->1932", "default.handlebars->27->605" ] }, @@ -35246,7 +35248,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->27->1223" + "default.handlebars->27->1225" ] }, { @@ -35348,7 +35350,7 @@ "zh-chs": "目前没有任何通知", "zh-cht": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->2043" + "default.handlebars->27->2045" ] }, { @@ -35409,7 +35411,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1273" + "default.handlebars->27->1275" ] }, { @@ -35486,7 +35488,7 @@ "zh-chs": "这是不安全政策,因为将用代理执行激活。", "zh-cht": "這是不安全政策,因為將用代理執行啟動。", "xloc": [ - "default.handlebars->27->1401" + "default.handlebars->27->1403" ] }, { @@ -35527,7 +35529,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->27->1400" + "default.handlebars->27->1402" ] }, { @@ -35687,7 +35689,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->27->1224" + "default.handlebars->27->1226" ] }, { @@ -35727,7 +35729,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->27->1684" + "default.handlebars->27->1686" ] }, { @@ -35908,7 +35910,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->27->1260" + "default.handlebars->27->1262" ] }, { @@ -36484,7 +36486,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->27->1225" + "default.handlebars->27->1227" ] }, { @@ -36504,7 +36506,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->27->1226" + "default.handlebars->27->1228" ] }, { @@ -36524,7 +36526,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->27->1227" + "default.handlebars->27->1229" ] }, { @@ -36544,7 +36546,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->27->1228" + "default.handlebars->27->1230" ] }, { @@ -36584,12 +36586,12 @@ "zh-chs": "类型", "zh-cht": "類型", "xloc": [ - "default-mobile.handlebars->9->402", + "default-mobile.handlebars->9->404", "default-mobile.handlebars->9->98", - "default.handlebars->27->1280", - "default.handlebars->27->1322", - "default.handlebars->27->1377", - "default.handlebars->27->1380", + "default.handlebars->27->1282", + "default.handlebars->27->1324", + "default.handlebars->27->1379", + "default.handlebars->27->1382", "default.handlebars->27->861", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "desktop.handlebars->p11->deskarea0->deskarea4->3" @@ -36612,7 +36614,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->27->1037" + "default.handlebars->27->1039" ] }, { @@ -36632,7 +36634,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->27->1034" + "default.handlebars->27->1036" ] }, { @@ -36693,7 +36695,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->27->1229" + "default.handlebars->27->1231" ] }, { @@ -36713,7 +36715,7 @@ "zh-chs": "在验证电邮地址之前,无法访问设备。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电邮地址。", "zh-cht": "在驗證電郵地址之前,無法訪問裝置。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電郵地址。", "xloc": [ - "default.handlebars->27->1275", + "default.handlebars->27->1277", "default.handlebars->27->550" ] }, @@ -36776,7 +36778,7 @@ "zh-chs": "在启用两因素身份验证之前,无法访问设备。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用二因子身份驗證之前,無法訪問裝置。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->27->1277", + "default.handlebars->27->1279", "default.handlebars->27->552" ] }, @@ -36903,8 +36905,8 @@ "zh-chs": "卸载", "zh-cht": "卸載", "xloc": [ - "default-mobile.handlebars->9->451", - "default.handlebars->27->1492", + "default-mobile.handlebars->9->453", + "default.handlebars->27->1494", "default.handlebars->27->690", "default.handlebars->27->711" ] @@ -36926,7 +36928,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default-mobile.handlebars->9->431", + "default-mobile.handlebars->9->433", "default.handlebars->27->456", "default.handlebars->27->752" ] @@ -36948,7 +36950,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->27->1456" + "default.handlebars->27->1458" ] }, { @@ -36999,11 +37001,11 @@ "default.handlebars->27->111", "default.handlebars->27->113", "default.handlebars->27->13", - "default.handlebars->27->1309", - "default.handlebars->27->1310", - "default.handlebars->27->2005", - "default.handlebars->27->2020", - "default.handlebars->27->2021", + "default.handlebars->27->1311", + "default.handlebars->27->1312", + "default.handlebars->27->2007", + "default.handlebars->27->2022", + "default.handlebars->27->2023", "default.handlebars->27->42", "default.handlebars->27->451", "default.handlebars->27->968", @@ -37027,8 +37029,8 @@ "zh-chs": "未知#{0}", "zh-cht": "未知#{0}", "xloc": [ - "default-mobile.handlebars->9->396", - "default.handlebars->27->1316" + "default-mobile.handlebars->9->398", + "default.handlebars->27->1318" ] }, { @@ -37048,7 +37050,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->27->2057" + "default.handlebars->27->2059" ] }, { @@ -37068,8 +37070,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->27->1869", - "default.handlebars->27->1993" + "default.handlebars->27->1871", + "default.handlebars->27->1995" ] }, { @@ -37089,9 +37091,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->27->1863", - "default.handlebars->27->1981", - "default.handlebars->27->2061" + "default.handlebars->27->1865", + "default.handlebars->27->1983", + "default.handlebars->27->2063" ] }, { @@ -37111,7 +37113,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->27->2053" + "default.handlebars->27->2055" ] }, { @@ -37152,7 +37154,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->27->1987" + "default.handlebars->27->1989" ] }, { @@ -37215,7 +37217,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->27->1738" + "default.handlebars->27->1740" ] }, { @@ -37259,7 +37261,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->27->2121" + "default.handlebars->27->2123" ] }, { @@ -37307,8 +37309,8 @@ "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->328", "default-mobile.handlebars->9->331", - "default.handlebars->27->1572", - "default.handlebars->27->1580", + "default.handlebars->27->1574", + "default.handlebars->27->1582", "default.handlebars->27->900", "default.handlebars->27->924", "default.handlebars->27->927", @@ -37332,7 +37334,7 @@ "zh-chs": "上载网格代理核心", "zh-cht": "上載mesh agent核心", "xloc": [ - "default.handlebars->27->1020" + "default.handlebars->27->1022" ] }, { @@ -37352,7 +37354,7 @@ "zh-chs": "上载核心档案", "zh-cht": "上載核心檔案", "xloc": [ - "default.handlebars->27->1017" + "default.handlebars->27->1019" ] }, { @@ -37372,7 +37374,7 @@ "zh-chs": "上载默认服务器核心", "zh-cht": "上載默認伺服器核心", "xloc": [ - "default.handlebars->27->1014" + "default.handlebars->27->1016" ] }, { @@ -37412,7 +37414,7 @@ "zh-chs": "上传恢复核心", "zh-cht": "上傳恢復核心", "xloc": [ - "default.handlebars->27->1016" + "default.handlebars->27->1018" ] }, { @@ -37433,7 +37435,7 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->27->1581", + "default.handlebars->27->1583", "default.handlebars->27->925" ] }, @@ -37455,7 +37457,7 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->27->1582", + "default.handlebars->27->1584", "default.handlebars->27->926" ] }, @@ -37493,7 +37495,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->27->1632" + "default.handlebars->27->1634" ] }, { @@ -37513,7 +37515,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->27->1230" + "default.handlebars->27->1232" ] }, { @@ -37533,7 +37535,7 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->27->1231" + "default.handlebars->27->1233" ] }, { @@ -37597,8 +37599,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->27->2047", - "default.handlebars->27->2049" + "default.handlebars->27->2049", + "default.handlebars->27->2051" ] }, { @@ -37618,11 +37620,11 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->27->1374", - "default.handlebars->27->1691", - "default.handlebars->27->1720", - "default.handlebars->27->1859", - "default.handlebars->27->2040", + "default.handlebars->27->1376", + "default.handlebars->27->1693", + "default.handlebars->27->1722", + "default.handlebars->27->1861", + "default.handlebars->27->2042", "default.handlebars->27->230", "default.handlebars->27->674" ] @@ -37644,7 +37646,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->27->1721" + "default.handlebars->27->1723" ] }, { @@ -37664,10 +37666,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1754", - "default.handlebars->27->1755", + "default.handlebars->27->1756", "default.handlebars->27->1757", - "default.handlebars->27->1759" + "default.handlebars->27->1759", + "default.handlebars->27->1761" ] }, { @@ -37687,7 +37689,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->27->2066" + "default.handlebars->27->2068" ] }, { @@ -37707,8 +37709,8 @@ "zh-chs": "用户授权", "zh-cht": "用戶授權", "xloc": [ - "default-mobile.handlebars->9->404", - "default.handlebars->27->1372", + "default-mobile.handlebars->9->406", + "default.handlebars->27->1374", "default.handlebars->27->670" ] }, @@ -37729,10 +37731,10 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->27->1342", - "default.handlebars->27->1850", + "default.handlebars->27->1344", + "default.handlebars->27->1852", "default.handlebars->27->191", - "default.handlebars->27->1937", + "default.handlebars->27->1939", "default.handlebars->27->612", "default.handlebars->27->741" ] @@ -37754,11 +37756,11 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->27->1432", - "default.handlebars->27->1433", - "default.handlebars->27->1823", - "default.handlebars->27->1989", - "default.handlebars->27->2008", + "default.handlebars->27->1434", + "default.handlebars->27->1435", + "default.handlebars->27->1825", + "default.handlebars->27->1991", + "default.handlebars->27->2010", "default.handlebars->27->673" ] }, @@ -37799,7 +37801,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->27->1986" + "default.handlebars->27->1988" ] }, { @@ -37819,7 +37821,7 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default-mobile.handlebars->9->456" + "default-mobile.handlebars->9->458" ] }, { @@ -37839,9 +37841,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->27->1497", - "default.handlebars->27->1904", - "default.handlebars->27->1905" + "default.handlebars->27->1499", + "default.handlebars->27->1906", + "default.handlebars->27->1907" ] }, { @@ -37861,8 +37863,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->27->1430", - "default.handlebars->27->1888" + "default.handlebars->27->1432", + "default.handlebars->27->1890" ] }, { @@ -37882,7 +37884,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->27->1766" + "default.handlebars->27->1768" ] }, { @@ -37902,8 +37904,8 @@ "zh-chs": "用户名", "zh-cht": "用戶名", "xloc": [ - "default-mobile.handlebars->9->455", - "default.handlebars->27->1496" + "default-mobile.handlebars->9->457", + "default.handlebars->27->1498" ] }, { @@ -37978,7 +37980,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->27->2086" + "default.handlebars->27->2088" ] }, { @@ -38082,8 +38084,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->27->1242", - "default.handlebars->27->1244" + "default.handlebars->27->1244", + "default.handlebars->27->1246" ] }, { @@ -38103,7 +38105,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->27->1661" + "default.handlebars->27->1663" ] }, { @@ -38123,7 +38125,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->27->1651" + "default.handlebars->27->1653" ] }, { @@ -38143,7 +38145,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->27->1649" + "default.handlebars->27->1651" ] }, { @@ -38209,7 +38211,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->27->1778", + "default.handlebars->27->1780", "default.handlebars->27->292", "default.handlebars->27->324", "default.handlebars->27->767", @@ -38284,9 +38286,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->27->1811", - "default.handlebars->27->1851", - "default.handlebars->27->2085", + "default.handlebars->27->1813", + "default.handlebars->27->1853", + "default.handlebars->27->2087", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -38307,7 +38309,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->27->2070" + "default.handlebars->27->2072" ] }, { @@ -38347,7 +38349,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->27->1733" + "default.handlebars->27->1735" ] }, { @@ -38367,7 +38369,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->27->1232" + "default.handlebars->27->1234" ] }, { @@ -38431,7 +38433,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->27->1967" + "default.handlebars->27->1969" ] }, { @@ -38473,8 +38475,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->27->1021", - "default.handlebars->27->1729" + "default.handlebars->27->1023", + "default.handlebars->27->1731" ] }, { @@ -38494,7 +38496,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->27->1678" + "default.handlebars->27->1680" ] }, { @@ -38583,7 +38585,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->27->2117" + "default.handlebars->27->2119" ] }, { @@ -38625,7 +38627,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->27->1233" + "default.handlebars->27->1235" ] }, { @@ -38665,7 +38667,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->27->1803" + "default.handlebars->27->1805" ] }, { @@ -38685,8 +38687,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->27->2120", - "default.handlebars->27->2122" + "default.handlebars->27->2122", + "default.handlebars->27->2124" ] }, { @@ -38726,7 +38728,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->27->1357" + "default.handlebars->27->1359" ] }, { @@ -38746,7 +38748,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1945" + "default.handlebars->27->1947" ] }, { @@ -38766,7 +38768,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->27->1234" + "default.handlebars->27->1236" ] }, { @@ -38868,10 +38870,10 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default-mobile.handlebars->9->427", - "default-mobile.handlebars->9->442", - "default.handlebars->27->1452", - "default.handlebars->27->1482" + "default-mobile.handlebars->9->429", + "default-mobile.handlebars->9->444", + "default.handlebars->27->1454", + "default.handlebars->27->1484" ] }, { @@ -38932,7 +38934,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->27->1235" + "default.handlebars->27->1237" ] }, { @@ -38952,7 +38954,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->27->1289" + "default.handlebars->27->1291" ] }, { @@ -38997,8 +38999,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->27->2106", - "default.handlebars->27->2107" + "default.handlebars->27->2108", + "default.handlebars->27->2109" ] }, { @@ -39018,7 +39020,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->27->2108" + "default.handlebars->27->2110" ] }, { @@ -39038,7 +39040,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->27->2109" + "default.handlebars->27->2111" ] }, { @@ -39120,7 +39122,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->27->1236" + "default.handlebars->27->1238" ] }, { @@ -39140,7 +39142,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->27->1505" + "default.handlebars->27->1507" ] }, { @@ -39161,7 +39163,7 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->27->1028" + "default.handlebars->27->1030" ] }, { @@ -39181,7 +39183,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->27->1917" + "default.handlebars->27->1919" ] }, { @@ -39906,7 +39908,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->27->1237" + "default.handlebars->27->1239" ] }, { @@ -39926,7 +39928,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->27->1238" + "default.handlebars->27->1240" ] }, { @@ -40044,7 +40046,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->27->1040" + "default.handlebars->27->1042" ] }, { @@ -40166,7 +40168,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->27->1239" + "default.handlebars->27->1241" ] }, { @@ -40434,7 +40436,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->27->2118" + "default.handlebars->27->2120" ] }, { @@ -40660,7 +40662,7 @@ "zh-chs": "console.txt", "zh-cht": "console.txt", "xloc": [ - "default.handlebars->27->1011" + "default.handlebars->27->1013" ] }, { @@ -40681,7 +40683,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->27->1577" + "default.handlebars->27->1579" ] }, { @@ -40780,8 +40782,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->27->1698", - "default.handlebars->27->1703" + "default.handlebars->27->1700", + "default.handlebars->27->1705" ] }, { @@ -40801,8 +40803,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->27->1700", - "default.handlebars->27->1704" + "default.handlebars->27->1702", + "default.handlebars->27->1706" ] }, { @@ -40842,8 +40844,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->27->2078", - "default.handlebars->27->2081" + "default.handlebars->27->2080", + "default.handlebars->27->2083" ] }, { @@ -41058,7 +41060,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->27->1767" + "default.handlebars->27->1769" ] }, { @@ -41181,7 +41183,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->27->1795" + "default.handlebars->27->1797" ] }, { @@ -41323,7 +41325,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->27->1578" + "default.handlebars->27->1580" ] }, { @@ -41420,7 +41422,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->27->1313" + "default.handlebars->27->1315" ] }, { @@ -41440,7 +41442,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->27->2116" + "default.handlebars->27->2118" ] }, { @@ -41506,7 +41508,7 @@ "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->27->2094" + "default.handlebars->27->2096" ] }, { @@ -41526,7 +41528,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->2115" + "default.handlebars->27->2117" ] }, { @@ -41563,8 +41565,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->27->2079", - "default.handlebars->27->2082" + "default.handlebars->27->2081", + "default.handlebars->27->2084" ] }, { @@ -41647,8 +41649,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->27->1763", - "default.handlebars->27->1768" + "default.handlebars->27->1765", + "default.handlebars->27->1770" ] }, { @@ -41668,8 +41670,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->27->1765", - "default.handlebars->27->1769" + "default.handlebars->27->1767", + "default.handlebars->27->1771" ] }, { @@ -41689,7 +41691,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->27->1702" + "default.handlebars->27->1704" ] }, { @@ -41729,8 +41731,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->27->1552", - "default.handlebars->27->1557" + "default.handlebars->27->1554", + "default.handlebars->27->1559" ] }, { @@ -41750,9 +41752,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->27->1550", - "default.handlebars->27->1555", - "default.handlebars->27->2019" + "default.handlebars->27->1552", + "default.handlebars->27->1557", + "default.handlebars->27->2021" ] }, { @@ -41772,10 +41774,12 @@ "zh-chs": "{0} Mb", "zh-cht": "{0} Mb", "xloc": [ - "default-mobile.handlebars->9->392", - "default.handlebars->27->1000", - "default.handlebars->27->1551", - "default.handlebars->27->1556" + "default-mobile.handlebars->9->389", + "default-mobile.handlebars->9->394", + "default.handlebars->27->1002", + "default.handlebars->27->1553", + "default.handlebars->27->1558", + "default.handlebars->27->997" ] }, { @@ -41816,7 +41820,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->27->1957" + "default.handlebars->27->1959" ] }, { @@ -41836,8 +41840,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->27->1549", - "default.handlebars->27->1554" + "default.handlebars->27->1551", + "default.handlebars->27->1556" ] }, { @@ -41858,8 +41862,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->1565", - "default.handlebars->27->2034", + "default.handlebars->27->1567", + "default.handlebars->27->2036", "download.handlebars->3->2", "download2.handlebars->5->2" ] @@ -41881,7 +41885,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1546" ] }, { @@ -41922,7 +41926,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1547" + "default.handlebars->27->1549" ] }, { @@ -41942,7 +41946,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->27->1922" + "default.handlebars->27->1924" ] }, { @@ -41999,7 +42003,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1545" + "default.handlebars->27->1547" ] }, { @@ -42041,7 +42045,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1546" + "default.handlebars->27->1548" ] }, { @@ -42081,7 +42085,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1712" + "default.handlebars->27->1714" ] }, { @@ -42245,7 +42249,7 @@ "default-mobile.handlebars->9->173", "default-mobile.handlebars->9->176", "default-mobile.handlebars->9->179", - "default.handlebars->27->1716", + "default.handlebars->27->1718", "default.handlebars->27->249", "default.handlebars->27->252", "default.handlebars->27->255", @@ -42393,7 +42397,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->27->1559" + "default.handlebars->27->1561" ] }, { @@ -42413,7 +42417,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->27->1558" + "default.handlebars->27->1560" ] }, { diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 220f8b2d..fa47a02a 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -1467,9 +1467,12 @@ } case 'sysinfohash': { // If the sysinfo document has changed and we are looking at it, request an update. - if ((currentNode != null) && (message.event.nodeid == powerTimelineReq)) { - meshserver.send({ action: 'getsysinfo', nodeid: message.event.nodeid }); - } + if ((currentNode != null) && (message.event.nodeid == powerTimelineReq)) { meshserver.send({ action: 'getsysinfo', nodeid: message.event.nodeid }); } + break; + } + case 'ifchange': { + // Network interface changed for a device, if we are currently viewing this device, ask for an update. + if (currentNode._id == message.event.nodeid) { meshserver.send({ action: 'getnetworkinfo', nodeid: currentNode._id }); } break; } case 'devicesessions': { @@ -3970,7 +3973,8 @@ var m = hardware.windows.memory[i]; x += '
'; x += '
' + EscapeHtml(m.BankLabel) + '
'; - if (m.Capacity) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); } + if (m.Capacity && m.Speed) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); } + else if (m.Capacity) { x += addDetailItem("Capacity", format("{0} Mb", (m.Capacity / 1024 / 1024)), s); } if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != 'Undefined') ? (m.Manufacturer + ', ') : '') + EscapeHtml(m.PartNumber), s); } x += '
'; } diff --git a/views/default.handlebars b/views/default.handlebars index 08750d37..7cbcca02 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -2953,6 +2953,11 @@ } break; } + case 'ifchange': { + // Network interface changed for a device, if we are currently viewing this device, ask for an update. + if (currentNode._id == message.event.nodeid) { meshserver.send({ action: 'getnetworkinfo', nodeid: currentNode._id }); } + break; + } case 'devicesessions': { // List of sessions for a given device var node = getNodeFromId(message.event.nodeid); @@ -8604,7 +8609,8 @@ var m = hardware.windows.memory[i]; x += '
'; x += '
' + EscapeHtml(m.BankLabel) + '
'; - if (m.Capacity) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); } + if (m.Capacity && m.Speed) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); } + else if (m.Capacity) { x += addDetailItem("Capacity", format("{0} Mb", (m.Capacity / 1024 / 1024)), s); } if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != 'Undefined')?(m.Manufacturer + ', '):'') + EscapeHtml(m.PartNumber), s); } x += '
'; }