Intel AMT manager can now pull hardware and network information from Intel AMT when on LAN.

Ylian Saint-Hilaire committed Oct 7, 2020 at 12:03 UTC 1d81b15d97225e00087b30d127effe3ea2d13bd4
5 files changed +1342 -1205
amtmanager.js
+128 -5
@@ -145,7 +145,7 @@ module.exports.CreateAmtManager = function(parent) {
145 if (stack.wsman.comm.xtls == 1) { dev.aquired.tlshash = stack.wsman.comm.xtlsCertificate.fingerprint.split(':').join('').toLowerCase(); } else { delete dev.aquired.tlshash; }
146 //console.log(dev.nodeid, dev.name, dev.host, dev.aquired);
147 UpdateDevice(dev);
148 - //attemptFetchHardwareInventory(dev); // See if we need to get hardware inventory
148 + attemptFetchHardwareInventory(dev); // See if we need to get hardware inventory
149 } else {
150 // We got a bad response
151 if ((dev.tlsfail !== true) && (status == 408)) {
@@ -214,13 +214,68 @@ module.exports.CreateAmtManager = function(parent) {
214 if (obj.amtDevices[dev.nodeid] == null) return false; // Device no longer exists, ignore this request.
215 const mesh = parent.webserver.meshes[dev.meshid];
216 if (mesh == null) { removeDevice(dev.nodeid); return false; }
217 - if (mesh.mtype == 1) { // If this is a Intel AMT only device group, pull the hardware inventory for this device
217 + if (mesh.mtype == 1) { // If this is a Intel AMT only device group, pull the hardware inventory and network information for this device
218 dev.amtstack.BatchEnum('', ['*CIM_ComputerSystemPackage', 'CIM_SystemPackaging', '*CIM_Chassis', 'CIM_Chip', '*CIM_Card', '*CIM_BIOSElement', 'CIM_Processor', 'CIM_PhysicalMemory', 'CIM_MediaAccessDevice', 'CIM_PhysicalPackage'], attemptFetchHardwareInventoryResponse);
219 + dev.amtstack.BatchEnum('', ['AMT_EthernetPortSettings'], attemptFetchNetworkResponse);
220 return true;
221 }
222 return false;
223 }
224
225 + function attemptFetchNetworkResponse(stack, name, responses, status) {
226 + const dev = stack.dev;
227 + if (obj.amtDevices[dev.nodeid] == null) return; // Device no longer exists, ignore this response.
228 + if (status != 200) return;
229 +
230 + //console.log(JSON.stringify(responses, null, 2));
231 + if ((responses['AMT_EthernetPortSettings'] == null) || (responses['AMT_EthernetPortSettings'].responses == null)) return;
232 +
233 + // Find the wired and wireless interfaces
234 + var wired = null, wireless = null;
235 + for (var i in responses['AMT_EthernetPortSettings'].responses) {
236 + var netif = responses['AMT_EthernetPortSettings'].responses[i];
237 + if ((netif.MACAddress != null) && (netif.MACAddress != "00-00-00-00-00-00")) {
238 + if (netif.WLANLinkProtectionLevel != null) { wireless = netif; } else { wired = netif; }
239 + }
240 + }
241 + if ((wired == null) && (wireless == null)) return;
242 +
243 + // Sent by the agent to update agent network interface information
244 + var net = { netif2: {} };
245 +
246 + if (wired != null) {
247 + var x = {};
248 + x.family = 'IPv4';
249 + x.type = "ethernet";
250 + x.address = wired.IPAddress;
251 + x.netmask = wired.SubnetMask;
252 + x.mac = wired.MACAddress.split('-').join(':').toUpperCase();
253 + x.gateway = wired.DefaultGateway;
254 + net.netif2['Ethernet'] = [ x ];
255 + }
256 +
257 + if (wireless != null) {
258 + var x = {};
259 + x.family = 'IPv4';
260 + x.type = "wireless";
261 + x.address = wireless.IPAddress;
262 + x.netmask = wireless.SubnetMask;
263 + x.mac = wireless.MACAddress.split('-').join(':').toUpperCase();
264 + x.gateway = wireless.DefaultGateway;
265 + net.netif2['Wireless'] = [ x ];
266 + }
267 +
268 + net.updateTime = Date.now();
269 + net._id = 'if' + dev.nodeid;
270 + net.type = 'ifinfo';
271 + parent.db.Set(net);
272 +
273 + // Event the node interface information change
274 + parent.DispatchEvent(parent.webserver.CreateMeshDispatchTargets(dev.meshid, [dev.nodeid]), obj, { action: 'ifchange', nodeid: dev.nodeid, domain: dev.nodeid.split('/')[1], nolog: 1 });
275 + }
276 +
277 +
278 + /*
279 // http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf
280 const DMTFCPUStatus = ["Unknown", "Enabled", "Disabled by User", "Disabled By BIOS (POST Error)", "Idle", "Other"];
281 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) {
291 198: "Intel® Core™ i7 processor",
292 199: "Dual-Core Intel® Celeron® processor"
293 };
294 + */
295
296 function attemptFetchHardwareInventoryResponse(stack, name, responses, status) {
297 const dev = stack.dev;
298 if (obj.amtDevices[dev.nodeid] == null) return; // Device no longer exists, ignore this response.
299 + if (status != 200) return;
300
244 - //console.log(JSON.stringify(responses, null, 2));
245 -
301 + // Extract basic data
302 var hw = {}
303 hw.PlatformGUID = responses['CIM_ComputerSystemPackage'].response.PlatformGUID;
304 hw.Chassis = responses['CIM_Chassis'].response;
@@ -253,8 +309,75 @@ module.exports.CreateAmtManager = function(parent) {
309 hw.PhysicalMemory = responses['CIM_PhysicalMemory'].responses;
310 hw.MediaAccessDevice = responses['CIM_MediaAccessDevice'].responses;
311 hw.PhysicalPackage = responses['CIM_PhysicalPackage'].responses;
256 - console.log(JSON.stringify(hw, null, 2));
312 +
313 + // Convert the hardware data into the same structure as we get from Windows
314 + var hw2 = { hardware: { windows: {}, identifiers: {} } };
315 + hw2.hardware.identifiers.product_uuid = guidToStr(hw.PlatformGUID);
316 + if ((hw.PhysicalMemory != null) && (hw.PhysicalMemory.length > 0)) {
317 + var memory = [];
318 + for (var i in hw.PhysicalMemory) {
319 + var m2 = {}, m = hw.PhysicalMemory[i];
320 + m2.BankLabel = m.BankLabel;
321 + m2.Capacity = m.Capacity;
322 + m2.PartNumber = m.PartNumber.trim();
323 + m2.SerialNumber = m.SerialNumber.trim();
324 + m2.Manufacturer = m.Manufacturer.trim();
325 + memory.push(m2);
326 + }
327 + hw2.hardware.windows.memory = memory;
328 + }
329 + if ((hw.MediaAccessDevice != null) && (hw.MediaAccessDevice.length > 0)) {
330 + var drives = [];
331 + for (var i in hw.MediaAccessDevice) {
332 + var m2 = {}, m = hw.MediaAccessDevice[i];
333 + m2.Caption = m.DeviceID;
334 + m2.Size = (m.MaxMediaSize * 1000);
335 + drives.push(m2);
336 + }
337 + hw2.hardware.identifiers.storage_devices = drives;
338 + }
339 + if (hw.Bios != null) {
340 + hw2.hardware.identifiers.bios_vendor = hw.Bios.Manufacturer.trim();
341 + hw2.hardware.identifiers.bios_version = hw.Bios.Version;
342 + if (hw.Bios.ReleaseDate && hw.Bios.ReleaseDate.Datetime) { hw2.hardware.identifiers.bios_date = hw.Bios.ReleaseDate.Datetime; }
343 + }
344 + if (hw.PhysicalPackage != null) {
345 + hw2.hardware.identifiers.board_name = hw.Card.Model.trim();
346 + hw2.hardware.identifiers.board_vendor = hw.Card.Manufacturer.trim();
347 + hw2.hardware.identifiers.board_version = hw.Card.Version.trim();
348 + hw2.hardware.identifiers.board_serial = hw.Card.SerialNumber.trim();
349 + }
350 + if ((hw.Chips != null) && (hw.Chips.length > 0)) {
351 + for (var i in hw.Chips) {
352 + if ((hw.Chips[i].ElementName == 'Managed System Processor Chip') && (hw.Chips[i].Version)) {
353 + hw2.hardware.identifiers.cpu_name = hw.Chips[i].Version;
354 + }
355 + }
356 + }
357 +
358 + // Compute the hash of the document
359 + hw2.hash = parent.crypto.createHash('sha384').update(JSON.stringify(hw2)).digest().toString('hex');
360 +
361 + // Fetch system information
362 + parent.db.GetHash('si' + dev.nodeid, function (err, results) {
363 + var sysinfohash = null;
364 + if ((results != null) && (results.length == 1)) { sysinfohash = results[0].hash; }
365 + if (sysinfohash != hw2.hash) {
366 + // Hardware information has changed, update the database
367 + hw2._id = 'si' + dev.nodeid;
368 + hw2.domain = dev.nodeid.split('/')[1];
369 + hw2.time = Date.now();
370 + hw2.type = 'sysinfo';
371 + parent.db.Set(hw2);
372 +
373 + // Event the new sysinfo hash, this will notify everyone that the sysinfo document was changed
374 + var event = { etype: 'node', action: 'sysinfohash', nodeid: dev.nodeid, domain: hw2.domain, hash: hw2.hash, nolog: 1 };
375 + parent.DispatchEvent(parent.webserver.CreateMeshDispatchTargets(dev.meshid, [dev.nodeid]), obj, event);
376 + }
377 + });
378 }
379
380 + 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); }
381 +
382 return obj;
383 };
public/scripts/amt-wsman-0.2.0-min.js
+1 -1
@@ -1 +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'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}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('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+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="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+d+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+c+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';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+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var d in s)l+="<g:"+d+">"+s[d]+"</g:"+d+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",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+">"+r[d][c]+"</r:"+d+">";else l+="<r:"+d+">"+r[d]+"</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+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",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<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];if(!(n=n||s.getElementsByTagName("a:Body")[0]))return null;if(0<n.childNodes.length){var l=(e=n.childNodes[0].localName).indexOf("_OUTPUT");-1!=l&&l==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])}return r}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
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'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}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('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+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="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+c+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+d+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';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+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var c in s)l+="<g:"+c+">"+s[c]+"</g:"+c+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",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+">"+r[c][d]+"</r:"+c+">";else l+="<r:"+c+">"+r[c]+"</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+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",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<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];if(!(n=n||s.getElementsByTagName("a:Body")[0]))return null;if(0<n.childNodes.length){var l=(e=n.childNodes[0].localName).indexOf("_OUTPUT");-1!=l&&l==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])}return r}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
translate/translate.json
+1198 -1194
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->27->1352",
21 - "default.handlebars->27->1354"
20 + "default.handlebars->27->1354",
21 + "default.handlebars->27->1356"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->27->1265"
207 + "default.handlebars->27->1267"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->27->1429",
228 - "default.handlebars->27->1887"
227 + "default.handlebars->27->1431",
228 + "default.handlebars->27->1889"
229 ]
230 },
231 {
@@ -458,7 +458,7 @@
458 "zh-chs": "*保留空白可为每个设备分配一个随机密码。",
459 "zh-cht": "*保留空白可為每個裝置分配一個隨機密碼。",
460 "xloc": [
461 - "default.handlebars->27->1399"
461 + "default.handlebars->27->1401"
462 ]
463 },
464 {
@@ -495,8 +495,8 @@
495 "zh-chs": ",",
496 "zh-cht": ",",
497 "xloc": [
498 - "default-mobile.handlebars->9->458",
499 - "default.handlebars->27->1499"
498 + "default-mobile.handlebars->9->460",
499 + "default.handlebars->27->1501"
500 ]
501 },
502 {
@@ -537,7 +537,7 @@
537 "zh-chs": ",MQTT在线",
538 "zh-cht": ",MQTT在線",
539 "xloc": [
540 - "default.handlebars->27->1007"
540 + "default.handlebars->27->1009"
541 ]
542 },
543 {
@@ -768,8 +768,8 @@
768 "xloc": [
769 "default-mobile.handlebars->9->108",
770 "default-mobile.handlebars->9->300",
771 - "default.handlebars->27->1540",
772 - "default.handlebars->27->2042",
771 + "default.handlebars->27->1542",
772 + "default.handlebars->27->2044",
773 "default.handlebars->27->890"
774 ]
775 },
@@ -826,7 +826,7 @@
826 "zh-chs": "1个活跃时段",
827 "zh-cht": "1個活躍時段",
828 "xloc": [
829 - "default.handlebars->27->1956"
829 + "default.handlebars->27->1958"
830 ]
831 },
832 {
@@ -847,8 +847,8 @@
847 "zh-cht": "1個位元組",
848 "xloc": [
849 "default-mobile.handlebars->9->118",
850 - "default-mobile.handlebars->9->462",
851 - "default.handlebars->27->1564",
850 + "default-mobile.handlebars->9->464",
851 + "default.handlebars->27->1566",
852 "download.handlebars->3->1",
853 "download2.handlebars->5->1"
854 ]
@@ -913,7 +913,7 @@
913 "zh-chs": "1组",
914 "zh-cht": "1群",
915 "xloc": [
916 - "default.handlebars->27->1921"
916 + "default.handlebars->27->1923"
917 ]
918 },
919 {
@@ -1017,7 +1017,7 @@
1017 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1018 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1019 "xloc": [
1020 - "default.handlebars->27->1711"
1020 + "default.handlebars->27->1713"
1021 ]
1022 },
1023 {
@@ -1083,7 +1083,7 @@
1083 "default-mobile.handlebars->9->172",
1084 "default-mobile.handlebars->9->175",
1085 "default-mobile.handlebars->9->178",
1086 - "default.handlebars->27->1715",
1086 + "default.handlebars->27->1717",
1087 "default.handlebars->27->248",
1088 "default.handlebars->27->251",
1089 "default.handlebars->27->254",
@@ -1500,7 +1500,7 @@
1500 "zh-chs": "2FA备份代码已清除",
1501 "zh-cht": "2FA備份代碼已清除",
1502 "xloc": [
1503 - "default.handlebars->27->1675"
1503 + "default.handlebars->27->1677"
1504 ]
1505 },
1506 {
@@ -1520,8 +1520,8 @@
1520 "zh-chs": "启用第二因素身份验证",
1521 "zh-cht": "啟用第二因素身份驗證",
1522 "xloc": [
1523 - "default.handlebars->27->1728",
1524 - "default.handlebars->27->1943"
1523 + "default.handlebars->27->1730",
1524 + "default.handlebars->27->1945"
1525 ]
1526 },
1527 {
@@ -2461,7 +2461,7 @@
2461 "zh-chs": "拒绝访问",
2462 "zh-cht": "拒絕存取",
2463 "xloc": [
2464 - "default.handlebars->27->1008"
2464 + "default.handlebars->27->1010"
2465 ]
2466 },
2467 {
@@ -2503,7 +2503,7 @@
2503 "zh-chs": "访问服务器档案",
2504 "zh-cht": "存取伺服器檔案",
2505 "xloc": [
2506 - "default.handlebars->27->1893"
2506 + "default.handlebars->27->1895"
2507 ]
2508 },
2509 {
@@ -2592,8 +2592,8 @@
2592 "default-mobile.handlebars->9->93",
2593 "default-mobile.handlebars->9->95",
2594 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2595 - "default.handlebars->27->1274",
2595 "default.handlebars->27->1276",
2596 + "default.handlebars->27->1278",
2597 "default.handlebars->27->549",
2598 "default.handlebars->27->551"
2599 ]
@@ -2656,7 +2656,7 @@
2656 "zh-chs": "帐户已更改:{0}",
2657 "zh-cht": "帳戶已更改:{0}",
2658 "xloc": [
2659 - "default.handlebars->27->1648"
2659 + "default.handlebars->27->1650"
2660 ]
2661 },
2662 {
@@ -2676,7 +2676,7 @@
2676 "zh-chs": "创建帐户,电子邮件为{0}",
2677 "zh-cht": "創建帳戶,電子郵件為{0}",
2678 "xloc": [
2679 - "default.handlebars->27->1647"
2679 + "default.handlebars->27->1649"
2680 ]
2681 },
2682 {
@@ -2696,7 +2696,7 @@
2696 "zh-chs": "创建帐户,用户名是{0}",
2697 "zh-cht": "帳戶已創建,用戶名是{0}",
2698 "xloc": [
2699 - "default.handlebars->27->1646"
2699 + "default.handlebars->27->1648"
2700 ]
2701 },
2702 {
@@ -2716,8 +2716,8 @@
2716 "zh-chs": "帐户已被锁定",
2717 "zh-cht": "帳戶已被鎖定",
2718 "xloc": [
2719 - "default.handlebars->27->1730",
2720 - "default.handlebars->27->1890"
2719 + "default.handlebars->27->1732",
2720 + "default.handlebars->27->1892"
2721 ]
2722 },
2723 {
@@ -2781,7 +2781,7 @@
2781 "zh-chs": "帐号登录",
2782 "zh-cht": "帳號登錄",
2783 "xloc": [
2784 - "default.handlebars->27->1583"
2784 + "default.handlebars->27->1585"
2785 ]
2786 },
2787 {
@@ -2801,7 +2801,7 @@
2801 "zh-chs": "帐户登出",
2802 "zh-cht": "帳戶登出",
2803 "xloc": [
2804 - "default.handlebars->27->1584"
2804 + "default.handlebars->27->1586"
2805 ]
2806 },
2807 {
@@ -2843,7 +2843,7 @@
2843 "zh-chs": "帐户密码已更改:{0}",
2844 "zh-cht": "帳戶密碼已更改:{0}",
2845 "xloc": [
2846 - "default.handlebars->27->1656"
2846 + "default.handlebars->27->1658"
2847 ]
2848 },
2849 {
@@ -2863,7 +2863,7 @@
2863 "zh-chs": "帐户已删除",
2864 "zh-cht": "帳戶已刪除",
2865 "xloc": [
2866 - "default.handlebars->27->1645"
2866 + "default.handlebars->27->1647"
2867 ]
2868 },
2869 {
@@ -2903,7 +2903,7 @@
2903 "zh-chs": "指令",
2904 "zh-cht": "指令",
2905 "xloc": [
2906 - "default.handlebars->27->1013",
2906 + "default.handlebars->27->1015",
2907 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2908 ]
2909 },
@@ -3036,8 +3036,8 @@
3036 "zh-chs": "激活",
3037 "zh-cht": "啟動",
3038 "xloc": [
3039 - "default.handlebars->27->1365",
3039 "default.handlebars->27->1367",
3040 + "default.handlebars->27->1369",
3041 "default.handlebars->27->200",
3042 "default.handlebars->27->281",
3043 "default.handlebars->27->283"
@@ -3080,7 +3080,7 @@
3080 "zh-chs": "添加代理",
3081 "zh-cht": "新增代理",
3082 "xloc": [
3083 - "default.handlebars->27->1369",
3083 + "default.handlebars->27->1371",
3084 "default.handlebars->27->285"
3085 ]
3086 },
@@ -3121,8 +3121,8 @@
3121 "zh-chs": "添加设备",
3122 "zh-cht": "新增裝置",
3123 "xloc": [
3124 - "default.handlebars->27->1867",
3125 - "default.handlebars->27->1991"
3124 + "default.handlebars->27->1869",
3125 + "default.handlebars->27->1993"
3126 ]
3127 },
3128 {
@@ -3162,9 +3162,9 @@
3162 "zh-chs": "添加设备组",
3163 "zh-cht": "新增裝置群",
3164 "xloc": [
3165 - "default.handlebars->27->1463",
3166 - "default.handlebars->27->1861",
3167 - "default.handlebars->27->1979",
3165 + "default.handlebars->27->1465",
3166 + "default.handlebars->27->1863",
3167 + "default.handlebars->27->1981",
3168 "default.handlebars->27->235"
3169 ]
3170 },
@@ -3185,7 +3185,7 @@
3185 "zh-chs": "添加设备组权限",
3186 "zh-cht": "新增裝置群權限",
3187 "xloc": [
3188 - "default.handlebars->27->1460"
3188 + "default.handlebars->27->1462"
3189 ]
3190 },
3191 {
@@ -3205,8 +3205,8 @@
3205 "zh-chs": "添加设备权限",
3206 "zh-cht": "新增裝置權限",
3207 "xloc": [
3208 - "default.handlebars->27->1465",
3209 - "default.handlebars->27->1467"
3208 + "default.handlebars->27->1467",
3209 + "default.handlebars->27->1469"
3210 ]
3211 },
3212 {
@@ -3306,7 +3306,7 @@
3306 "zh-chs": "添加成员身份",
3307 "zh-cht": "新增成員身份",
3308 "xloc": [
3309 - "default.handlebars->27->2009"
3309 + "default.handlebars->27->2011"
3310 ]
3311 },
3312 {
@@ -3346,8 +3346,8 @@
3346 "zh-chs": "添加安全密钥",
3347 "zh-cht": "新增安全密鑰",
3348 "xloc": [
3349 - "default.handlebars->27->1041",
3350 - "default.handlebars->27->1042",
3349 + "default.handlebars->27->1043",
3350 + "default.handlebars->27->1044",
3351 "default.handlebars->27->149",
3352 "default.handlebars->27->151",
3353 "default.handlebars->27->154",
@@ -3371,7 +3371,7 @@
3371 "zh-chs": "添加用户",
3372 "zh-cht": "新增用戶",
3373 "xloc": [
3374 - "default-mobile.handlebars->9->403",
3374 + "default-mobile.handlebars->9->405",
3375 "default.handlebars->27->668"
3376 ]
3377 },
@@ -3392,7 +3392,7 @@
3392 "zh-chs": "添加用户设备权限",
3393 "zh-cht": "新增用戶裝置權限",
3394 "xloc": [
3395 - "default.handlebars->27->1470"
3395 + "default.handlebars->27->1472"
3396 ]
3397 },
3398 {
@@ -3412,9 +3412,9 @@
3412 "zh-chs": "添加用户组",
3413 "zh-cht": "新增用戶群",
3414 "xloc": [
3415 - "default.handlebars->27->1359",
3416 - "default.handlebars->27->1462",
3417 - "default.handlebars->27->1985",
3415 + "default.handlebars->27->1361",
3416 + "default.handlebars->27->1464",
3417 + "default.handlebars->27->1987",
3418 "default.handlebars->27->669"
3419 ]
3420 },
@@ -3435,7 +3435,7 @@
3435 "zh-chs": "添加用户组设备权限",
3436 "zh-cht": "新增用戶群裝置權限",
3437 "xloc": [
3438 - "default.handlebars->27->1472"
3438 + "default.handlebars->27->1474"
3439 ]
3440 },
3441 {
@@ -3455,7 +3455,7 @@
3455 "zh-chs": "将用户添加到设备组",
3456 "zh-cht": "將用戶新增到裝置群",
3457 "xloc": [
3458 - "default-mobile.handlebars->9->434"
3458 + "default-mobile.handlebars->9->436"
3459 ]
3460 },
3461 {
@@ -3492,8 +3492,8 @@
3492 "zh-chs": "添加用户",
3493 "zh-cht": "新增用戶",
3494 "xloc": [
3495 - "default.handlebars->27->1358",
3496 - "default.handlebars->27->1856"
3495 + "default.handlebars->27->1360",
3496 + "default.handlebars->27->1858"
3497 ]
3498 },
3499 {
@@ -3513,7 +3513,7 @@
3513 "zh-chs": "将用户添加到设备组",
3514 "zh-cht": "將用戶新增到裝置群",
3515 "xloc": [
3516 - "default.handlebars->27->1459"
3516 + "default.handlebars->27->1461"
3517 ]
3518 },
3519 {
@@ -3533,7 +3533,7 @@
3533 "zh-chs": "将用户添加到用户组",
3534 "zh-cht": "將用戶新增到用戶群",
3535 "xloc": [
3536 - "default.handlebars->27->1889"
3536 + "default.handlebars->27->1891"
3537 ]
3538 },
3539 {
@@ -3593,7 +3593,7 @@
3593 "zh-chs": "添加位于互联网上的新英特尔&reg;AMT计算机。",
3594 "zh-cht": "新增位於互聯網上的新Intel&reg; AMT電腦。",
3595 "xloc": [
3596 - "default.handlebars->27->1360",
3596 + "default.handlebars->27->1362",
3597 "default.handlebars->27->274"
3598 ]
3599 },
@@ -3614,7 +3614,7 @@
3614 "zh-chs": "添加位于本地网络上的新英特尔&reg;AMT计算机。",
3615 "zh-cht": "新增位於本地網絡上的新Intel&reg; AMT電腦。",
3616 "xloc": [
3617 - "default.handlebars->27->1362",
3617 + "default.handlebars->27->1364",
3618 "default.handlebars->27->276"
3619 ]
3620 },
@@ -3655,7 +3655,7 @@
3655 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3656 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3657 "xloc": [
3658 - "default.handlebars->27->1368",
3658 + "default.handlebars->27->1370",
3659 "default.handlebars->27->284"
3660 ]
3661 },
@@ -3696,7 +3696,7 @@
3696 "zh-chs": "添加了身份验证应用程序",
3697 "zh-cht": "添加了身份驗證應用程序",
3698 "xloc": [
3699 - "default.handlebars->27->1672"
3699 + "default.handlebars->27->1674"
3700 ]
3701 },
3702 {
@@ -3716,8 +3716,8 @@
3716 "zh-chs": "已将设备{0}添加到设备组{1}",
3717 "zh-cht": "已將設備{0}添加到設備組{1}",
3718 "xloc": [
3719 - "default.handlebars->27->1639",
3720 - "default.handlebars->27->1666"
3719 + "default.handlebars->27->1641",
3720 + "default.handlebars->27->1668"
3721 ]
3722 },
3723 {
@@ -3737,7 +3737,7 @@
3737 "zh-chs": "添加了安全密钥",
3738 "zh-cht": "添加了安全密鑰",
3739 "xloc": [
3740 - "default.handlebars->27->1677"
3740 + "default.handlebars->27->1679"
3741 ]
3742 },
3743 {
@@ -3757,7 +3757,7 @@
3757 "zh-chs": "已将用户组{0}添加到设备组{1}",
3758 "zh-cht": "已將用戶組{0}添加到設備組{1}",
3759 "xloc": [
3760 - "default.handlebars->27->1650"
3760 + "default.handlebars->27->1652"
3761 ]
3762 },
3763 {
@@ -3777,8 +3777,8 @@
3777 "zh-chs": "已将用户{0}添加到用户组{1}",
3778 "zh-cht": "已將用戶{0}添加到用戶組{1}",
3779 "xloc": [
3780 - "default.handlebars->27->1653",
3781 - "default.handlebars->27->1662"
3780 + "default.handlebars->27->1655",
3781 + "default.handlebars->27->1664"
3782 ]
3783 },
3784 {
@@ -3901,7 +3901,7 @@
3901 "zh-chs": "管理领域",
3902 "zh-cht": "管理領域",
3903 "xloc": [
3904 - "default.handlebars->27->1925"
3904 + "default.handlebars->27->1927"
3905 ]
3906 },
3907 {
@@ -3942,7 +3942,7 @@
3942 "zh-chs": "管理领域",
3943 "zh-cht": "管理領域",
3944 "xloc": [
3945 - "default.handlebars->27->1793"
3945 + "default.handlebars->27->1795"
3946 ]
3947 },
3948 {
@@ -3962,7 +3962,7 @@
3962 "zh-chs": "管理员",
3963 "zh-cht": "管理員",
3964 "xloc": [
3965 - "default.handlebars->27->1722"
3965 + "default.handlebars->27->1724"
3966 ]
3967 },
3968 {
@@ -3982,7 +3982,7 @@
3982 "zh-chs": "南非文",
3983 "zh-cht": "南非文",
3984 "xloc": [
3985 - "default.handlebars->27->1044"
3985 + "default.handlebars->27->1046"
3986 ]
3987 },
3988 {
@@ -4005,8 +4005,8 @@
4005 "default-mobile.handlebars->9->203",
4006 "default-mobile.handlebars->9->227",
4007 "default-mobile.handlebars->9->243",
4008 - "default.handlebars->27->1526",
4009 - "default.handlebars->27->1534",
4008 + "default.handlebars->27->1528",
4009 + "default.handlebars->27->1536",
4010 "default.handlebars->27->211",
4011 "default.handlebars->27->442",
4012 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4029,8 +4029,8 @@
4029 "zh-chs": "代理+英特尔AMT",
4030 "zh-cht": "代理+Intel&reg; AMT",
4031 "xloc": [
4032 - "default.handlebars->27->1528",
4033 - "default.handlebars->27->1536"
4032 + "default.handlebars->27->1530",
4033 + "default.handlebars->27->1538"
4034 ]
4035 },
4036 {
@@ -4070,8 +4070,8 @@
4070 "zh-chs": "代理控制台",
4071 "zh-cht": "代理控制台",
4072 "xloc": [
4073 - "default-mobile.handlebars->9->440",
4074 - "default.handlebars->27->1480"
4073 + "default-mobile.handlebars->9->442",
4074 + "default.handlebars->27->1482"
4075 ]
4076 },
4077 {
@@ -4091,7 +4091,7 @@
4091 "zh-chs": "代理错误计数器",
4092 "zh-cht": "代理錯誤計數器",
4093 "xloc": [
4094 - "default.handlebars->27->2052"
4094 + "default.handlebars->27->2054"
4095 ]
4096 },
4097 {
@@ -4194,7 +4194,7 @@
4194 "zh-chs": "代理时段",
4195 "zh-cht": "代理時段",
4196 "xloc": [
4197 - "default.handlebars->27->2068"
4197 + "default.handlebars->27->2070"
4198 ]
4199 },
4200 {
@@ -4235,7 +4235,7 @@
4235 "zh-chs": "代理类型",
4236 "zh-cht": "代理類型",
4237 "xloc": [
4238 - "default.handlebars->27->1532",
4238 + "default.handlebars->27->1534",
4239 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4240 ]
4241 },
@@ -4256,7 +4256,7 @@
4256 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4257 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4258 "xloc": [
4259 - "default.handlebars->27->1636"
4259 + "default.handlebars->27->1638"
4260 ]
4261 },
4262 {
@@ -4318,7 +4318,7 @@
4318 "zh-chs": "代理离线",
4319 "zh-cht": "代理離線",
4320 "xloc": [
4321 - "default.handlebars->27->1006"
4321 + "default.handlebars->27->1008"
4322 ]
4323 },
4324 {
@@ -4338,7 +4338,7 @@
4338 "zh-chs": "代理在线",
4339 "zh-cht": "代理在線",
4340 "xloc": [
4341 - "default.handlebars->27->1005"
4341 + "default.handlebars->27->1007"
4342 ]
4343 },
4344 {
@@ -4358,7 +4358,7 @@
4358 "zh-chs": "代理",
4359 "zh-cht": "代理",
4360 "xloc": [
4361 - "default.handlebars->27->2084"
4361 + "default.handlebars->27->2086"
4362 ]
4363 },
4364 {
@@ -4378,7 +4378,7 @@
4378 "zh-chs": "阿尔巴尼亚文",
4379 "zh-cht": "阿爾巴尼亞文",
4380 "xloc": [
4381 - "default.handlebars->27->1045"
4381 + "default.handlebars->27->1047"
4382 ]
4383 },
4384 {
@@ -4421,7 +4421,7 @@
4421 "zh-chs": "全部可用",
4422 "zh-cht": "全部可用",
4423 "xloc": [
4424 - "default.handlebars->27->1685"
4424 + "default.handlebars->27->1687"
4425 ]
4426 },
4427 {
@@ -4458,7 +4458,7 @@
4458 "zh-chs": "所有事件",
4459 "zh-cht": "所有事件",
4460 "xloc": [
4461 - "default.handlebars->27->1683"
4461 + "default.handlebars->27->1685"
4462 ]
4463 },
4464 {
@@ -4500,8 +4500,8 @@
4500 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4501 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4502 "xloc": [
4503 - "default.handlebars->27->1427",
4504 - "default.handlebars->27->1886"
4503 + "default.handlebars->27->1429",
4504 + "default.handlebars->27->1888"
4505 ]
4506 },
4507 {
@@ -4521,7 +4521,7 @@
4521 "zh-chs": "允许用户管理此设备。",
4522 "zh-cht": "允許用戶管理此裝置。",
4523 "xloc": [
4524 - "default.handlebars->27->1428"
4524 + "default.handlebars->27->1430"
4525 ]
4526 },
4527 {
@@ -4626,9 +4626,9 @@
4626 "zh-chs": "一直通知",
4627 "zh-cht": "一直通知",
4628 "xloc": [
4629 - "default.handlebars->27->1339",
4630 - "default.handlebars->27->1847",
4631 - "default.handlebars->27->1934",
4629 + "default.handlebars->27->1341",
4630 + "default.handlebars->27->1849",
4631 + "default.handlebars->27->1936",
4632 "default.handlebars->27->609"
4633 ]
4634 },
@@ -4649,9 +4649,9 @@
4649 "zh-chs": "一直提示",
4650 "zh-cht": "一直提示",
4651 "xloc": [
4652 - "default.handlebars->27->1340",
4653 - "default.handlebars->27->1848",
4654 - "default.handlebars->27->1935",
4652 + "default.handlebars->27->1342",
4653 + "default.handlebars->27->1850",
4654 + "default.handlebars->27->1937",
4655 "default.handlebars->27->610"
4656 ]
4657 },
@@ -4875,7 +4875,7 @@
4875 "zh-chs": "阿拉伯文(阿尔及利亚)",
4876 "zh-cht": "阿拉伯文(阿爾及利亞)",
4877 "xloc": [
4878 - "default.handlebars->27->1047"
4878 + "default.handlebars->27->1049"
4879 ]
4880 },
4881 {
@@ -4895,7 +4895,7 @@
4895 "zh-chs": "阿拉伯文(巴林)",
4896 "zh-cht": "阿拉伯文(巴林)",
4897 "xloc": [
4898 - "default.handlebars->27->1048"
4898 + "default.handlebars->27->1050"
4899 ]
4900 },
4901 {
@@ -4915,7 +4915,7 @@
4915 "zh-chs": "阿拉伯文(埃及)",
4916 "zh-cht": "阿拉伯文(埃及)",
4917 "xloc": [
4918 - "default.handlebars->27->1049"
4918 + "default.handlebars->27->1051"
4919 ]
4920 },
4921 {
@@ -4935,7 +4935,7 @@
4935 "zh-chs": "阿拉伯文(伊拉克)",
4936 "zh-cht": "阿拉伯文(伊拉克)",
4937 "xloc": [
4938 - "default.handlebars->27->1050"
4938 + "default.handlebars->27->1052"
4939 ]
4940 },
4941 {
@@ -4955,7 +4955,7 @@
4955 "zh-chs": "阿拉伯文(约旦)",
4956 "zh-cht": "阿拉伯文(約旦)",
4957 "xloc": [
4958 - "default.handlebars->27->1051"
4958 + "default.handlebars->27->1053"
4959 ]
4960 },
4961 {
@@ -4975,7 +4975,7 @@
4975 "zh-chs": "阿拉伯文(科威特)",
4976 "zh-cht": "阿拉伯文(科威特)",
4977 "xloc": [
4978 - "default.handlebars->27->1052"
4978 + "default.handlebars->27->1054"
4979 ]
4980 },
4981 {
@@ -4995,7 +4995,7 @@
4995 "zh-chs": "阿拉伯文(黎巴嫩)",
4996 "zh-cht": "阿拉伯文(黎巴嫩)",
4997 "xloc": [
4998 - "default.handlebars->27->1053"
4998 + "default.handlebars->27->1055"
4999 ]
5000 },
5001 {
@@ -5015,7 +5015,7 @@
5015 "zh-chs": "阿拉伯文(利比亚)",
5016 "zh-cht": "阿拉伯文(利比亞)",
5017 "xloc": [
5018 - "default.handlebars->27->1054"
5018 + "default.handlebars->27->1056"
5019 ]
5020 },
5021 {
@@ -5035,7 +5035,7 @@
5035 "zh-chs": "阿拉伯文(摩洛哥)",
5036 "zh-cht": "阿拉伯文(摩洛哥)",
5037 "xloc": [
5038 - "default.handlebars->27->1055"
5038 + "default.handlebars->27->1057"
5039 ]
5040 },
5041 {
@@ -5055,7 +5055,7 @@
5055 "zh-chs": "阿拉伯文(阿曼)",
5056 "zh-cht": "阿拉伯文(阿曼)",
5057 "xloc": [
5058 - "default.handlebars->27->1056"
5058 + "default.handlebars->27->1058"
5059 ]
5060 },
5061 {
@@ -5075,7 +5075,7 @@
5075 "zh-chs": "阿拉伯文(卡塔尔)",
5076 "zh-cht": "阿拉伯文(卡塔爾)",
5077 "xloc": [
5078 - "default.handlebars->27->1057"
5078 + "default.handlebars->27->1059"
5079 ]
5080 },
5081 {
@@ -5095,7 +5095,7 @@
5095 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5096 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5097 "xloc": [
5098 - "default.handlebars->27->1058"
5098 + "default.handlebars->27->1060"
5099 ]
5100 },
5101 {
@@ -5115,7 +5115,7 @@
5115 "zh-chs": "阿拉伯文(标准)",
5116 "zh-cht": "阿拉伯文(標準)",
5117 "xloc": [
5118 - "default.handlebars->27->1046"
5118 + "default.handlebars->27->1048"
5119 ]
5120 },
5121 {
@@ -5135,7 +5135,7 @@
5135 "zh-chs": "阿拉伯文(叙利亚)",
5136 "zh-cht": "阿拉伯文(敘利亞)",
5137 "xloc": [
5138 - "default.handlebars->27->1059"
5138 + "default.handlebars->27->1061"
5139 ]
5140 },
5141 {
@@ -5155,7 +5155,7 @@
5155 "zh-chs": "阿拉伯文(突尼斯)",
5156 "zh-cht": "阿拉伯文(突尼斯)",
5157 "xloc": [
5158 - "default.handlebars->27->1060"
5158 + "default.handlebars->27->1062"
5159 ]
5160 },
5161 {
@@ -5175,7 +5175,7 @@
5175 "zh-chs": "阿拉伯文(阿联酋)",
5176 "zh-cht": "阿拉伯文(阿聯酋)",
5177 "xloc": [
5178 - "default.handlebars->27->1061"
5178 + "default.handlebars->27->1063"
5179 ]
5180 },
5181 {
@@ -5195,7 +5195,7 @@
5195 "zh-chs": "阿拉伯文(也门)",
5196 "zh-cht": "阿拉伯文(也門)",
5197 "xloc": [
5198 - "default.handlebars->27->1062"
5198 + "default.handlebars->27->1064"
5199 ]
5200 },
5201 {
@@ -5215,7 +5215,7 @@
5215 "zh-chs": "阿拉贡文",
5216 "zh-cht": "阿拉貢文",
5217 "xloc": [
5218 - "default.handlebars->27->1063"
5218 + "default.handlebars->27->1065"
5219 ]
5220 },
5221 {
@@ -5276,8 +5276,8 @@
5276 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5277 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5278 "xloc": [
5279 - "default-mobile.handlebars->9->409",
5280 - "default.handlebars->27->1403"
5279 + "default-mobile.handlebars->9->411",
5280 + "default.handlebars->27->1405"
5281 ]
5282 },
5283 {
@@ -5357,7 +5357,7 @@
5357 "zh-chs": "您确定要{0}插件吗:{1}",
5358 "zh-cht": "你確定要{0}外掛嗎:{1}",
5359 "xloc": [
5360 - "default.handlebars->27->2124"
5360 + "default.handlebars->27->2126"
5361 ]
5362 },
5363 {
@@ -5377,7 +5377,7 @@
5377 "zh-chs": "亚美尼亚文",
5378 "zh-cht": "亞美尼亞文",
5379 "xloc": [
5380 - "default.handlebars->27->1064"
5380 + "default.handlebars->27->1066"
5381 ]
5382 },
5383 {
@@ -5437,7 +5437,7 @@
5437 "zh-chs": "阿萨姆文",
5438 "zh-cht": "阿薩姆文",
5439 "xloc": [
5440 - "default.handlebars->27->1065"
5440 + "default.handlebars->27->1067"
5441 ]
5442 },
5443 {
@@ -5457,7 +5457,7 @@
5457 "zh-chs": "阿斯图里亚斯文",
5458 "zh-cht": "阿斯圖里亞斯文",
5459 "xloc": [
5460 - "default.handlebars->27->1066"
5460 + "default.handlebars->27->1068"
5461 ]
5462 },
5463 {
@@ -5477,7 +5477,7 @@
5477 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5478 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5479 "xloc": [
5480 - "default.handlebars->27->1605"
5480 + "default.handlebars->27->1607"
5481 ]
5482 },
5483 {
@@ -5497,7 +5497,7 @@
5497 "zh-chs": "认证软件",
5498 "zh-cht": "認證軟體",
5499 "xloc": [
5500 - "default.handlebars->27->1938"
5500 + "default.handlebars->27->1940"
5501 ]
5502 },
5503 {
@@ -5521,8 +5521,8 @@
5521 "default-mobile.handlebars->9->52",
5522 "default-mobile.handlebars->9->71",
5523 "default-mobile.handlebars->9->73",
5524 - "default.handlebars->27->1030",
5524 "default.handlebars->27->1032",
5525 + "default.handlebars->27->1034",
5526 "default.handlebars->27->125",
5527 "default.handlebars->27->130"
5528 ]
@@ -5604,7 +5604,7 @@
5604 "zh-chs": "自动删除",
5605 "zh-cht": "自動刪除",
5606 "xloc": [
5607 - "default.handlebars->27->1326"
5607 + "default.handlebars->27->1328"
5608 ]
5609 },
5610 {
@@ -5668,7 +5668,7 @@
5668 "zh-chs": "可用內存",
5669 "zh-cht": "可用內存",
5670 "xloc": [
5671 - "default.handlebars->27->2077"
5671 + "default.handlebars->27->2079"
5672 ]
5673 },
5674 {
@@ -5688,7 +5688,7 @@
5688 "zh-chs": "阿塞拜疆文",
5689 "zh-cht": "阿塞拜疆文",
5690 "xloc": [
5691 - "default.handlebars->27->1067"
5691 + "default.handlebars->27->1069"
5692 ]
5693 },
5694 {
@@ -5824,8 +5824,8 @@
5824 "zh-chs": "背景与互动",
5825 "zh-cht": "背景與互動",
5826 "xloc": [
5827 - "default.handlebars->27->1509",
5828 - "default.handlebars->27->1516",
5827 + "default.handlebars->27->1511",
5828 + "default.handlebars->27->1518",
5829 "default.handlebars->27->355",
5830 "default.handlebars->27->369"
5831 ]
@@ -5847,8 +5847,8 @@
5847 "zh-chs": "仅背景",
5848 "zh-cht": "僅背景",
5849 "xloc": [
5850 - "default.handlebars->27->1510",
5851 - "default.handlebars->27->1517",
5850 + "default.handlebars->27->1512",
5851 + "default.handlebars->27->1519",
5852 "default.handlebars->27->356",
5853 "default.handlebars->27->370",
5854 "default.handlebars->27->384"
@@ -5891,7 +5891,7 @@
5891 "zh-chs": "备用码",
5892 "zh-cht": "備用碼",
5893 "xloc": [
5894 - "default.handlebars->27->1940"
5894 + "default.handlebars->27->1942"
5895 ]
5896 },
5897 {
@@ -5911,7 +5911,7 @@
5911 "zh-chs": "错误的签名",
5912 "zh-cht": "錯誤的簽名",
5913 "xloc": [
5914 - "default.handlebars->27->2059"
5914 + "default.handlebars->27->2061"
5915 ]
5916 },
5917 {
@@ -5931,7 +5931,7 @@
5931 "zh-chs": "错误的网络证书",
5932 "zh-cht": "錯誤的網絡憑證",
5933 "xloc": [
5934 - "default.handlebars->27->2058"
5934 + "default.handlebars->27->2060"
5935 ]
5936 },
5937 {
@@ -5951,7 +5951,7 @@
5951 "zh-chs": "巴斯克",
5952 "zh-cht": "巴斯克",
5953 "xloc": [
5954 - "default.handlebars->27->1068"
5954 + "default.handlebars->27->1070"
5955 ]
5956 },
5957 {
@@ -5991,7 +5991,7 @@
5991 "zh-chs": "白俄罗斯文",
5992 "zh-cht": "白俄羅斯文",
5993 "xloc": [
5994 - "default.handlebars->27->1070"
5994 + "default.handlebars->27->1072"
5995 ]
5996 },
5997 {
@@ -6011,7 +6011,7 @@
6011 "zh-chs": "孟加拉",
6012 "zh-cht": "孟加拉",
6013 "xloc": [
6014 - "default.handlebars->27->1071"
6014 + "default.handlebars->27->1073"
6015 ]
6016 },
6017 {
@@ -6054,7 +6054,7 @@
6054 "zh-chs": "波斯尼亚文",
6055 "zh-cht": "波斯尼亞文",
6056 "xloc": [
6057 - "default.handlebars->27->1072"
6057 + "default.handlebars->27->1074"
6058 ]
6059 },
6060 {
@@ -6074,7 +6074,7 @@
6074 "zh-chs": "布列塔尼",
6075 "zh-cht": "布列塔尼",
6076 "xloc": [
6077 - "default.handlebars->27->1073"
6077 + "default.handlebars->27->1075"
6078 ]
6079 },
6080 {
@@ -6094,7 +6094,7 @@
6094 "zh-chs": "广播",
6095 "zh-cht": "廣播",
6096 "xloc": [
6097 - "default.handlebars->27->1854",
6097 + "default.handlebars->27->1856",
6098 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6099 ]
6100 },
@@ -6115,7 +6115,7 @@
6115 "zh-chs": "广播消息",
6116 "zh-cht": "廣播消息",
6117 "xloc": [
6118 - "default.handlebars->27->1775"
6118 + "default.handlebars->27->1777"
6119 ]
6120 },
6121 {
@@ -6135,7 +6135,7 @@
6135 "zh-chs": "向所有连接的用户广播消息。",
6136 "zh-cht": "向所有連接的用戶廣播消息。",
6137 "xloc": [
6138 - "default.handlebars->27->1770"
6138 + "default.handlebars->27->1772"
6139 ]
6140 },
6141 {
@@ -6155,7 +6155,7 @@
6155 "zh-chs": "保加利亚文",
6156 "zh-cht": "保加利亞文",
6157 "xloc": [
6158 - "default.handlebars->27->1069"
6158 + "default.handlebars->27->1071"
6159 ]
6160 },
6161 {
@@ -6175,7 +6175,7 @@
6175 "zh-chs": "缅甸文",
6176 "zh-cht": "緬甸文",
6177 "xloc": [
6178 - "default.handlebars->27->1074"
6178 + "default.handlebars->27->1076"
6179 ]
6180 },
6181 {
@@ -6217,8 +6217,8 @@
6217 "zh-cht": "CIRA",
6218 "xloc": [
6219 "default-mobile.handlebars->9->204",
6220 - "default.handlebars->27->1391",
6221 - "default.handlebars->27->1396",
6220 + "default.handlebars->27->1393",
6221 + "default.handlebars->27->1398",
6222 "default.handlebars->27->213",
6223 "default.handlebars->27->444"
6224 ]
@@ -6240,7 +6240,7 @@
6240 "zh-chs": "CIRA服务器",
6241 "zh-cht": "CIRA伺服器",
6242 "xloc": [
6243 - "default.handlebars->27->2112"
6243 + "default.handlebars->27->2114"
6244 ]
6245 },
6246 {
@@ -6260,7 +6260,7 @@
6260 "zh-chs": "CIRA服务器命令",
6261 "zh-cht": "CIRA伺服器指令",
6262 "xloc": [
6263 - "default.handlebars->27->2113"
6263 + "default.handlebars->27->2115"
6264 ]
6265 },
6266 {
@@ -6301,7 +6301,7 @@
6301 "zh-chs": "CPU负载",
6302 "zh-cht": "CPU負載",
6303 "xloc": [
6304 - "default.handlebars->27->2073"
6304 + "default.handlebars->27->2075"
6305 ]
6306 },
6307 {
@@ -6321,7 +6321,7 @@
6321 "zh-chs": "最近15分钟的CPU负载",
6322 "zh-cht": "最近15分鐘的CPU負載",
6323 "xloc": [
6324 - "default.handlebars->27->2076"
6324 + "default.handlebars->27->2078"
6325 ]
6326 },
6327 {
@@ -6341,7 +6341,7 @@
6341 "zh-chs": "最近5分钟的CPU负载",
6342 "zh-cht": "最近5分鐘的CPU負載",
6343 "xloc": [
6344 - "default.handlebars->27->2075"
6344 + "default.handlebars->27->2077"
6345 ]
6346 },
6347 {
@@ -6361,7 +6361,7 @@
6361 "zh-chs": "最近一分钟的CPU负载",
6362 "zh-cht": "最近一分鐘的CPU負載",
6363 "xloc": [
6364 - "default.handlebars->27->2074"
6364 + "default.handlebars->27->2076"
6365 ]
6366 },
6367 {
@@ -6403,7 +6403,7 @@
6403 "zh-chs": "CSV",
6404 "zh-cht": "CSV",
6405 "xloc": [
6406 - "default.handlebars->27->1693"
6406 + "default.handlebars->27->1695"
6407 ]
6408 },
6409 {
@@ -6423,8 +6423,8 @@
6423 "zh-chs": "CSV格式",
6424 "zh-cht": "CSV格式",
6425 "xloc": [
6426 - "default.handlebars->27->1697",
6427 - "default.handlebars->27->1762",
6426 + "default.handlebars->27->1699",
6427 + "default.handlebars->27->1764",
6428 "default.handlebars->27->494"
6429 ]
6430 },
@@ -6445,7 +6445,7 @@
6445 "zh-chs": "呼叫错误",
6446 "zh-cht": "呼叫錯誤",
6447 "xloc": [
6448 - "default.handlebars->27->2125"
6448 + "default.handlebars->27->2127"
6449 ]
6450 },
6451 {
@@ -6467,7 +6467,7 @@
6467 "xloc": [
6468 "default-mobile.handlebars->9->82",
6469 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
6470 - "default.handlebars->27->1304",
6470 + "default.handlebars->27->1306",
6471 "default.handlebars->container->dialog->idx_dlgButtonBar",
6472 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6473 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6494,10 +6494,12 @@
6494 "zh-chs": "容量",
6495 "zh-cht": "容量",
6496 "xloc": [
6497 - "default-mobile.handlebars->9->391",
6497 + "default-mobile.handlebars->9->388",
6498 "default-mobile.handlebars->9->393",
6499 + "default-mobile.handlebars->9->395",
6500 "default.handlebars->27->1001",
6500 - "default.handlebars->27->999"
6501 + "default.handlebars->27->1003",
6502 + "default.handlebars->27->996"
6503 ]
6504 },
6505 {
@@ -6538,7 +6540,7 @@
6540 "zh-chs": "加泰罗尼亚文",
6541 "zh-cht": "加泰羅尼亞文",
6542 "xloc": [
6541 - "default.handlebars->27->1075"
6543 + "default.handlebars->27->1077"
6544 ]
6545 },
6546 {
@@ -6578,7 +6580,7 @@
6580 "zh-chs": "查莫罗",
6581 "zh-cht": "查莫羅",
6582 "xloc": [
6581 - "default.handlebars->27->1076"
6583 + "default.handlebars->27->1078"
6584 ]
6585 },
6586 {
@@ -6620,7 +6622,7 @@
6622 "zh-chs": "更改{0}的电邮",
6623 "zh-cht": "更改{0}的電郵",
6624 "xloc": [
6623 - "default.handlebars->27->1968"
6625 + "default.handlebars->27->1970"
6626 ]
6627 },
6628 {
@@ -6663,8 +6665,8 @@
6665 "zh-cht": "更改密碼",
6666 "xloc": [
6667 "default-mobile.handlebars->9->90",
6666 - "default.handlebars->27->1271",
6667 - "default.handlebars->27->1955"
6668 + "default.handlebars->27->1273",
6669 + "default.handlebars->27->1957"
6670 ]
6671 },
6672 {
@@ -6684,7 +6686,7 @@
6686 "zh-chs": "更改{0}的密码",
6687 "zh-cht": "更改{0}的密碼",
6688 "xloc": [
6687 - "default.handlebars->27->1975"
6689 + "default.handlebars->27->1977"
6690 ]
6691 },
6692 {
@@ -6704,7 +6706,7 @@
6706 "zh-chs": "更改{0}的真实名称",
6707 "zh-cht": "更改{0}的真實名稱",
6708 "xloc": [
6707 - "default.handlebars->27->1963"
6709 + "default.handlebars->27->1965"
6710 ]
6711 },
6712 {
@@ -6786,7 +6788,7 @@
6788 "zh-chs": "更改该用户的密码",
6789 "zh-cht": "更改該用戶的密碼",
6790 "xloc": [
6789 - "default.handlebars->27->1954"
6791 + "default.handlebars->27->1956"
6792 ]
6793 },
6794 {
@@ -6826,7 +6828,7 @@
6828 "zh-chs": "在此处更改您的帐户电邮地址。",
6829 "zh-cht": "在此處更改你的帳戶電郵地址。",
6830 "xloc": [
6829 - "default.handlebars->27->1258"
6831 + "default.handlebars->27->1260"
6832 ]
6833 },
6834 {
@@ -6846,7 +6848,7 @@
6848 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6849 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6850 "xloc": [
6849 - "default.handlebars->27->1264"
6851 + "default.handlebars->27->1266"
6852 ]
6853 },
6854 {
@@ -6866,7 +6868,7 @@
6868 "zh-chs": "更改帐户凭据",
6869 "zh-cht": "帳戶憑證已更改",
6870 "xloc": [
6869 - "default.handlebars->27->1657"
6871 + "default.handlebars->27->1659"
6872 ]
6873 },
6874 {
@@ -6886,7 +6888,7 @@
6888 "zh-chs": "{1}组中的设备{0}已更改:{2}",
6889 "zh-cht": "{1}組中的設備{0}已更改:{2}",
6890 "xloc": [
6889 - "default.handlebars->27->1641"
6891 + "default.handlebars->27->1643"
6892 ]
6893 },
6894 {
@@ -6906,7 +6908,7 @@
6908 "zh-chs": "语言从{1}更改为{2}",
6909 "zh-cht": "語言從{1}更改為{2}",
6910 "xloc": [
6909 - "default.handlebars->27->1585"
6911 + "default.handlebars->27->1587"
6912 ]
6913 },
6914 {
@@ -6926,8 +6928,8 @@
6928 "zh-chs": "已更改{0}的用户设备权限",
6929 "zh-cht": "已更改{0}的用戶設備權限",
6930 "xloc": [
6929 - "default.handlebars->27->1643",
6930 - "default.handlebars->27->1664"
6931 + "default.handlebars->27->1645",
6932 + "default.handlebars->27->1666"
6933 ]
6934 },
6935 {
@@ -6947,7 +6949,7 @@
6949 "zh-chs": "更改语言将需要刷新页面。",
6950 "zh-cht": "更改語言將需要刷新頁面。",
6951 "xloc": [
6950 - "default.handlebars->27->1243"
6952 + "default.handlebars->27->1245"
6953 ]
6954 },
6955 {
@@ -6967,7 +6969,7 @@
6969 "zh-chs": "聊天",
6970 "zh-cht": "聊天",
6971 "xloc": [
6970 - "default.handlebars->27->1714",
6972 + "default.handlebars->27->1716",
6973 "default.handlebars->27->689",
6974 "default.handlebars->27->710"
6975 ]
@@ -6989,10 +6991,10 @@
6991 "zh-chs": "聊天并通知",
6992 "zh-cht": "聊天並通知",
6993 "xloc": [
6992 - "default-mobile.handlebars->9->430",
6993 - "default-mobile.handlebars->9->450",
6994 - "default.handlebars->27->1455",
6995 - "default.handlebars->27->1491"
6994 + "default-mobile.handlebars->9->432",
6995 + "default-mobile.handlebars->9->452",
6996 + "default.handlebars->27->1457",
6997 + "default.handlebars->27->1493"
6998 ]
6999 },
7000 {
@@ -7032,7 +7034,7 @@
7034 "zh-chs": "车臣",
7035 "zh-cht": "車臣",
7036 "xloc": [
7035 - "default.handlebars->27->1077"
7037 + "default.handlebars->27->1079"
7038 ]
7039 },
7040 {
@@ -7132,8 +7134,8 @@
7134 "zh-chs": "检查...",
7135 "zh-cht": "檢查...",
7136 "xloc": [
7135 - "default.handlebars->27->1043",
7136 - "default.handlebars->27->2119"
7137 + "default.handlebars->27->1045",
7138 + "default.handlebars->27->2121"
7139 ]
7140 },
7141 {
@@ -7153,7 +7155,7 @@
7155 "zh-chs": "中文",
7156 "zh-cht": "中文",
7157 "xloc": [
7156 - "default.handlebars->27->1078"
7158 + "default.handlebars->27->1080"
7159 ]
7160 },
7161 {
@@ -7173,7 +7175,7 @@
7175 "zh-chs": "中文(香港)",
7176 "zh-cht": "中文(香港)",
7177 "xloc": [
7176 - "default.handlebars->27->1079"
7178 + "default.handlebars->27->1081"
7179 ]
7180 },
7181 {
@@ -7193,7 +7195,7 @@
7195 "zh-chs": "中文(中国)",
7196 "zh-cht": "中文(中國)",
7197 "xloc": [
7196 - "default.handlebars->27->1080"
7198 + "default.handlebars->27->1082"
7199 ]
7200 },
7201 {
@@ -7213,7 +7215,7 @@
7215 "zh-chs": "简体中文",
7216 "zh-cht": "簡體中文",
7217 "xloc": [
7216 - "default.handlebars->27->1240"
7218 + "default.handlebars->27->1242"
7219 ]
7220 },
7221 {
@@ -7233,7 +7235,7 @@
7235 "zh-chs": "中文(新加坡)",
7236 "zh-cht": "中文(新加坡)",
7237 "xloc": [
7236 - "default.handlebars->27->1081"
7238 + "default.handlebars->27->1083"
7239 ]
7240 },
7241 {
@@ -7253,7 +7255,7 @@
7255 "zh-chs": "中文(台湾)",
7256 "zh-cht": "中文(台灣)",
7257 "xloc": [
7256 - "default.handlebars->27->1082"
7258 + "default.handlebars->27->1084"
7259 ]
7260 },
7261 {
@@ -7273,7 +7275,7 @@
7275 "zh-chs": "繁体中文",
7276 "zh-cht": "繁體中文",
7277 "xloc": [
7276 - "default.handlebars->27->1241"
7278 + "default.handlebars->27->1243"
7279 ]
7280 },
7281 {
@@ -7314,7 +7316,7 @@
7316 "zh-chs": "楚瓦什",
7317 "zh-cht": "楚瓦什",
7318 "xloc": [
7317 - "default.handlebars->27->1083"
7319 + "default.handlebars->27->1085"
7320 ]
7321 },
7322 {
@@ -7360,7 +7362,7 @@
7362 "default-mobile.handlebars->9->323",
7363 "default-mobile.handlebars->9->325",
7364 "default-mobile.handlebars->9->59",
7363 - "default.handlebars->27->1579",
7365 + "default.handlebars->27->1581",
7366 "default.handlebars->27->910",
7367 "default.handlebars->27->912",
7368 "default.handlebars->27->914",
@@ -7407,7 +7409,7 @@
7409 "zh-chs": "全部清除",
7410 "zh-cht": "全部清除",
7411 "xloc": [
7410 - "default.handlebars->27->2046"
7412 + "default.handlebars->27->2048"
7413 ]
7414 },
7415 {
@@ -7435,7 +7437,7 @@
7437 "zh-chs": "清除核心",
7438 "zh-cht": "清除核心",
7439 "xloc": [
7438 - "default.handlebars->27->1015"
7440 + "default.handlebars->27->1017"
7441 ]
7442 },
7443 {
@@ -7475,7 +7477,7 @@
7477 "zh-chs": "清除此通知",
7478 "zh-cht": "清除此通知",
7479 "xloc": [
7478 - "default.handlebars->27->2045"
7480 + "default.handlebars->27->2047"
7481 ]
7482 },
7483 {
@@ -7535,8 +7537,8 @@
7537 "zh-chs": "单击此处编辑设备组名称",
7538 "zh-cht": "單擊此處編輯裝置群名稱",
7539 "xloc": [
7538 - "default.handlebars->27->1315",
7539 - "default.handlebars->27->1530"
7540 + "default.handlebars->27->1317",
7541 + "default.handlebars->27->1532"
7542 ]
7543 },
7544 {
@@ -7576,7 +7578,7 @@
7578 "zh-chs": "单击此处编辑用户组名称",
7579 "zh-cht": "單擊此處編輯用戶群名稱",
7580 "xloc": [
7579 - "default.handlebars->27->1831"
7581 + "default.handlebars->27->1833"
7582 ]
7583 },
7584 {
@@ -7637,7 +7639,7 @@
7639 "zh-cht": "單擊確定將驗證電郵發送到:",
7640 "xloc": [
7641 "default-mobile.handlebars->9->75",
7640 - "default.handlebars->27->1255"
7642 + "default.handlebars->27->1257"
7643 ]
7644 },
7645 {
@@ -7698,7 +7700,7 @@
7700 "zh-chs": "客户编号",
7701 "zh-cht": "客戶編號",
7702 "xloc": [
7701 - "default.handlebars->27->1297"
7703 + "default.handlebars->27->1299"
7704 ]
7705 },
7706 {
@@ -7718,8 +7720,8 @@
7720 "zh-chs": "客户端启动的远程访问",
7721 "zh-cht": "客戶端啟動的遠程訪問",
7722 "xloc": [
7721 - "default.handlebars->27->1390",
7722 - "default.handlebars->27->1395"
7723 + "default.handlebars->27->1392",
7724 + "default.handlebars->27->1397"
7725 ]
7726 },
7727 {
@@ -7739,7 +7741,7 @@
7741 "zh-chs": "客户机密",
7742 "zh-cht": "客戶機密",
7743 "xloc": [
7742 - "default.handlebars->27->1298"
7744 + "default.handlebars->27->1300"
7745 ]
7746 },
7747 {
@@ -7803,7 +7805,7 @@
7805 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
7806 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
7807 "xloc": [
7806 - "default.handlebars->27->1590"
7808 + "default.handlebars->27->1592"
7809 ]
7810 },
7811 {
@@ -7879,8 +7881,8 @@
7881 "en": "Commands",
7882 "nl": "Opdrachten",
7883 "xloc": [
7882 - "default-mobile.handlebars->9->452",
7883 - "default.handlebars->27->1493",
7884 + "default-mobile.handlebars->9->454",
7885 + "default.handlebars->27->1495",
7886 "default.handlebars->27->691",
7887 "default.handlebars->27->712"
7888 ]
@@ -7902,8 +7904,8 @@
7904 "zh-chs": "通用设备组",
7905 "zh-cht": "通用裝置群",
7906 "xloc": [
7905 - "default.handlebars->27->1862",
7906 - "default.handlebars->27->1980"
7907 + "default.handlebars->27->1864",
7908 + "default.handlebars->27->1982"
7909 ]
7910 },
7911 {
@@ -7923,8 +7925,8 @@
7925 "zh-chs": "通用设备",
7926 "zh-cht": "通用裝置",
7927 "xloc": [
7926 - "default.handlebars->27->1868",
7927 - "default.handlebars->27->1992"
7928 + "default.handlebars->27->1870",
7929 + "default.handlebars->27->1994"
7930 ]
7931 },
7932 {
@@ -7965,7 +7967,7 @@
7967 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
7968 "xloc": [
7969 "default-mobile.handlebars->9->127",
7968 - "default.handlebars->27->1574"
7970 + "default.handlebars->27->1576"
7971 ]
7972 },
7973 {
@@ -7986,12 +7988,12 @@
7988 "zh-cht": "確認",
7989 "xloc": [
7990 "default-mobile.handlebars->9->281",
7989 - "default-mobile.handlebars->9->410",
7990 - "default.handlebars->27->1404",
7991 - "default.handlebars->27->1742",
7992 - "default.handlebars->27->1821",
7993 - "default.handlebars->27->1882",
7994 - "default.handlebars->27->1978",
7991 + "default-mobile.handlebars->9->412",
7992 + "default.handlebars->27->1406",
7993 + "default.handlebars->27->1744",
7994 + "default.handlebars->27->1823",
7995 + "default.handlebars->27->1884",
7996 + "default.handlebars->27->1980",
7997 "default.handlebars->27->470",
7998 "default.handlebars->27->780",
7999 "default.handlebars->27->789"
@@ -8075,7 +8077,7 @@
8077 "zh-chs": "确认删除选定的帐户?",
8078 "zh-cht": "確認刪除所選帳戶?",
8079 "xloc": [
8078 - "default.handlebars->27->1741"
8080 + "default.handlebars->27->1743"
8081 ]
8082 },
8083 {
@@ -8115,7 +8117,7 @@
8117 "zh-chs": "确认删除选定的用户组?",
8118 "zh-cht": "確認刪除所選用戶群?",
8119 "xloc": [
8118 - "default.handlebars->27->1820"
8120 + "default.handlebars->27->1822"
8121 ]
8122 },
8123 {
@@ -8135,7 +8137,7 @@
8137 "zh-chs": "确认删除用户{0}?",
8138 "zh-cht": "確認刪除用戶{0}?",
8139 "xloc": [
8138 - "default.handlebars->27->1977"
8140 + "default.handlebars->27->1979"
8141 ]
8142 },
8143 {
@@ -8155,7 +8157,7 @@
8157 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8158 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8159 "xloc": [
8158 - "default.handlebars->27->1885"
8160 + "default.handlebars->27->1887"
8161 ]
8162 },
8163 {
@@ -8175,7 +8177,7 @@
8177 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8178 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8179 "xloc": [
8178 - "default.handlebars->27->2007"
8180 + "default.handlebars->27->2009"
8181 ]
8182 },
8183 {
@@ -8256,7 +8258,7 @@
8258 "zh-chs": "确认覆盖?",
8259 "zh-cht": "確認覆蓋?",
8260 "xloc": [
8259 - "default.handlebars->27->1573"
8261 + "default.handlebars->27->1575"
8262 ]
8263 },
8264 {
@@ -8276,8 +8278,8 @@
8278 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
8279 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8280 "xloc": [
8279 - "default.handlebars->27->1875",
8280 - "default.handlebars->27->1998"
8281 + "default.handlebars->27->1877",
8282 + "default.handlebars->27->2000"
8283 ]
8284 },
8285 {
@@ -8297,8 +8299,8 @@
8299 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8300 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8301 "xloc": [
8300 - "default.handlebars->27->1877",
8301 - "default.handlebars->27->2011"
8302 + "default.handlebars->27->1879",
8303 + "default.handlebars->27->2013"
8304 ]
8305 },
8306 {
@@ -8318,7 +8320,7 @@
8320 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
8321 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8322 "xloc": [
8321 - "default.handlebars->27->2000"
8323 + "default.handlebars->27->2002"
8324 ]
8325 },
8326 {
@@ -8338,7 +8340,7 @@
8340 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8341 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8342 "xloc": [
8341 - "default.handlebars->27->2003"
8343 + "default.handlebars->27->2005"
8344 ]
8345 },
8346 {
@@ -8358,8 +8360,8 @@
8360 "zh-chs": "确认删除访问权限?",
8361 "zh-cht": "確認刪除訪問權限?",
8362 "xloc": [
8361 - "default.handlebars->27->2001",
8362 - "default.handlebars->27->2004"
8363 + "default.handlebars->27->2003",
8364 + "default.handlebars->27->2006"
8365 ]
8366 },
8367 {
@@ -8380,7 +8382,7 @@
8382 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
8383 "xloc": [
8384 "default-mobile.handlebars->9->74",
8383 - "default.handlebars->27->1033"
8385 + "default.handlebars->27->1035"
8386 ]
8387 },
8388 {
@@ -8451,7 +8453,7 @@
8453 "zh-chs": "确认删除用户“ {0} ”的权限?",
8454 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
8455 "xloc": [
8454 - "default.handlebars->27->1502"
8456 + "default.handlebars->27->1504"
8457 ]
8458 },
8459 {
@@ -8471,7 +8473,7 @@
8473 "zh-chs": "确认删除用户组“ {0} ”的权限?",
8474 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8475 "xloc": [
8474 - "default.handlebars->27->1504"
8476 + "default.handlebars->27->1506"
8477 ]
8478 },
8479 {
@@ -8508,7 +8510,7 @@
8510 "zh-chs": "确认删除用户{0}?",
8511 "zh-cht": "確認刪除用戶{0}?",
8512 "xloc": [
8511 - "default-mobile.handlebars->9->461"
8513 + "default-mobile.handlebars->9->463"
8514 ]
8515 },
8516 {
@@ -8531,7 +8533,7 @@
8533 "default-mobile.handlebars->9->296",
8534 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8535 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8534 - "default.handlebars->27->1343",
8536 + "default.handlebars->27->1345",
8537 "default.handlebars->27->883",
8538 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8539 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -8579,8 +8581,8 @@
8581 "zh-chs": "连接到服务器",
8582 "zh-cht": "連接到伺服器",
8583 "xloc": [
8582 - "default.handlebars->27->1394",
8583 - "default.handlebars->27->1398"
8584 + "default.handlebars->27->1396",
8585 + "default.handlebars->27->1400"
8586 ]
8587 },
8588 {
@@ -8701,7 +8703,7 @@
8703 "zh-chs": "已连接的英特尔&reg;AMT",
8704 "zh-cht": "已連接的Intel&reg; AMT",
8705 "xloc": [
8704 - "default.handlebars->27->2064"
8706 + "default.handlebars->27->2066"
8707 ]
8708 },
8709 {
@@ -8721,7 +8723,7 @@
8723 "zh-chs": "已连接的用户",
8724 "zh-cht": "已连接的用户",
8725 "xloc": [
8724 - "default.handlebars->27->2069"
8726 + "default.handlebars->27->2071"
8727 ]
8728 },
8729 {
@@ -8811,7 +8813,7 @@
8813 "zh-chs": "连接数量",
8814 "zh-cht": "連接數量",
8815 "xloc": [
8814 - "default.handlebars->27->2083"
8816 + "default.handlebars->27->2085"
8817 ]
8818 },
8819 {
@@ -8831,7 +8833,7 @@
8833 "zh-chs": "连接转发器",
8834 "zh-cht": "連接轉發器",
8835 "xloc": [
8834 - "default.handlebars->27->2111"
8836 + "default.handlebars->27->2113"
8837 ]
8838 },
8839 {
@@ -8892,7 +8894,7 @@
8894 "zh-cht": "連接性",
8895 "xloc": [
8896 "default-mobile.handlebars->9->248",
8895 - "default.handlebars->27->1537",
8897 + "default.handlebars->27->1539",
8898 "default.handlebars->27->232",
8899 "default.handlebars->27->623",
8900 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -8981,7 +8983,7 @@
8983 "zh-chs": "Cookie编码器",
8984 "zh-cht": "Cookie編碼器",
8985 "xloc": [
8984 - "default.handlebars->27->2097"
8986 + "default.handlebars->27->2099"
8987 ]
8988 },
8989 {
@@ -9138,8 +9140,8 @@
9140 "zh-chs": "复制连结到剪贴板",
9141 "zh-cht": "複製連結到剪貼板",
9142 "xloc": [
9141 - "default.handlebars->27->1542",
9142 - "default.handlebars->27->1561",
9143 + "default.handlebars->27->1544",
9144 + "default.handlebars->27->1563",
9145 "default.handlebars->27->193",
9146 "default.handlebars->27->372"
9147 ]
@@ -9242,7 +9244,7 @@
9244 "zh-chs": "复制:“{0}”到“{1}”",
9245 "zh-cht": "複製:“{0}”到“{1}”",
9246 "xloc": [
9245 - "default.handlebars->27->1633"
9247 + "default.handlebars->27->1635"
9248 ]
9249 },
9250 {
@@ -9388,7 +9390,7 @@
9390 "zh-chs": "核心服务器",
9391 "zh-cht": "核心伺服器",
9392 "xloc": [
9391 - "default.handlebars->27->2096"
9393 + "default.handlebars->27->2098"
9394 ]
9395 },
9396 {
@@ -9408,7 +9410,7 @@
9410 "zh-chs": "科西嘉文",
9411 "zh-cht": "科西嘉文",
9412 "xloc": [
9411 - "default.handlebars->27->1084"
9413 + "default.handlebars->27->1086"
9414 ]
9415 },
9416 {
@@ -9428,7 +9430,7 @@
9430 "zh-chs": "创建帐号",
9431 "zh-cht": "創建帳號",
9432 "xloc": [
9431 - "default.handlebars->27->1789",
9433 + "default.handlebars->27->1791",
9434 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9435 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9436 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9471,7 +9473,7 @@
9473 "zh-chs": "创建用户组",
9474 "zh-cht": "創建用戶群",
9475 "xloc": [
9474 - "default.handlebars->27->1828"
9476 + "default.handlebars->27->1830"
9477 ]
9478 },
9479 {
@@ -9511,7 +9513,7 @@
9513 "zh-chs": "使用以下选项创建一个新的设备组。",
9514 "zh-cht": "使用以下選項創建一個新的裝置群。",
9515 "xloc": [
9514 - "default.handlebars->27->1278"
9516 + "default.handlebars->27->1280"
9517 ]
9518 },
9519 {
@@ -9551,7 +9553,7 @@
9553 "zh-chs": "创建文件夹:“{0}”",
9554 "zh-cht": "創建文件夾:“{0}”",
9555 "xloc": [
9554 - "default.handlebars->27->1626"
9556 + "default.handlebars->27->1628"
9557 ]
9558 },
9559 {
@@ -9571,7 +9573,7 @@
9573 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9574 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9575 "xloc": [
9574 - "default.handlebars->27->1753"
9576 + "default.handlebars->27->1755"
9577 ]
9578 },
9579 {
@@ -9613,7 +9615,7 @@
9615 "zh-chs": "创建的设备组:{0}",
9616 "zh-cht": "創建的設備組:{0}",
9617 "xloc": [
9616 - "default.handlebars->27->1637"
9618 + "default.handlebars->27->1639"
9619 ]
9620 },
9621 {
@@ -9653,7 +9655,7 @@
9655 "zh-chs": "创建",
9656 "zh-cht": "創建",
9657 "xloc": [
9656 - "default.handlebars->27->1914"
9658 + "default.handlebars->27->1916"
9659 ]
9660 },
9661 {
@@ -9673,7 +9675,7 @@
9675 "zh-chs": "创建时间",
9676 "zh-cht": "創作時間",
9677 "xloc": [
9676 - "default.handlebars->27->1325"
9678 + "default.handlebars->27->1327"
9679 ]
9680 },
9681 {
@@ -9715,8 +9717,8 @@
9717 "zh-chs": "创建者",
9718 "zh-cht": "創作者",
9719 "xloc": [
9718 - "default.handlebars->27->1323",
9719 - "default.handlebars->27->1324"
9720 + "default.handlebars->27->1325",
9721 + "default.handlebars->27->1326"
9722 ]
9723 },
9724 {
@@ -9736,7 +9738,7 @@
9738 "zh-chs": "证书",
9739 "zh-cht": "證書",
9740 "xloc": [
9739 - "default.handlebars->27->1295"
9741 + "default.handlebars->27->1297"
9742 ]
9743 },
9744 {
@@ -9756,7 +9758,7 @@
9758 "zh-chs": "克里语",
9759 "zh-cht": "克里語",
9760 "xloc": [
9759 - "default.handlebars->27->1085"
9761 + "default.handlebars->27->1087"
9762 ]
9763 },
9764 {
@@ -9776,7 +9778,7 @@
9778 "zh-chs": "克罗地亚文",
9779 "zh-cht": "克羅地亞文",
9780 "xloc": [
9779 - "default.handlebars->27->1086"
9781 + "default.handlebars->27->1088"
9782 ]
9783 },
9784 {
@@ -9943,7 +9945,7 @@
9945 "zh-chs": "捷克文",
9946 "zh-cht": "捷克文",
9947 "xloc": [
9946 - "default.handlebars->27->1087"
9948 + "default.handlebars->27->1089"
9949 ]
9950 },
9951 {
@@ -9983,7 +9985,7 @@
9985 "zh-chs": "丹麦文",
9986 "zh-cht": "丹麥文",
9987 "xloc": [
9986 - "default.handlebars->27->1088"
9988 + "default.handlebars->27->1090"
9989 ]
9990 },
9991 {
@@ -10024,7 +10026,7 @@
10026 "zh-chs": "日期和时间",
10027 "zh-cht": "日期和時間",
10028 "xloc": [
10027 - "default.handlebars->27->1246"
10029 + "default.handlebars->27->1248"
10030 ]
10031 },
10032 {
@@ -10065,7 +10067,7 @@
10067 "zh-chs": "停用客户端控制模式(CCM)",
10068 "zh-cht": "停用客戶端控制模式(CCM)",
10069 "xloc": [
10068 - "default.handlebars->27->1382"
10070 + "default.handlebars->27->1384"
10071 ]
10072 },
10073 {
@@ -10106,10 +10108,10 @@
10108 "zh-chs": "默认",
10109 "zh-cht": "默認",
10110 "xloc": [
10109 - "default.handlebars->27->1776",
10110 - "default.handlebars->27->1824",
10111 - "default.handlebars->27->1835",
10112 - "default.handlebars->27->1903"
10111 + "default.handlebars->27->1778",
10112 + "default.handlebars->27->1826",
10113 + "default.handlebars->27->1837",
10114 + "default.handlebars->27->1905"
10115 ]
10116 },
10117 {
@@ -10133,7 +10135,7 @@
10135 "default-mobile.handlebars->9->306",
10136 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10137 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10136 - "default.handlebars->27->1568",
10138 + "default.handlebars->27->1570",
10139 "default.handlebars->27->527",
10140 "default.handlebars->27->896",
10141 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -10163,7 +10165,7 @@
10165 "zh-cht": "刪除帳戶",
10166 "xloc": [
10167 "default-mobile.handlebars->9->84",
10166 - "default.handlebars->27->1263"
10168 + "default.handlebars->27->1265"
10169 ]
10170 },
10171 {
@@ -10183,7 +10185,7 @@
10185 "zh-chs": "删除帐户",
10186 "zh-cht": "刪除帳戶",
10187 "xloc": [
10186 - "default.handlebars->27->1743"
10188 + "default.handlebars->27->1745"
10189 ]
10190 },
10191 {
@@ -10224,10 +10226,10 @@
10226 "zh-chs": "删除群组",
10227 "zh-cht": "刪除群組",
10228 "xloc": [
10227 - "default-mobile.handlebars->9->408",
10228 - "default-mobile.handlebars->9->411",
10229 - "default.handlebars->27->1375",
10230 - "default.handlebars->27->1405"
10229 + "default-mobile.handlebars->9->410",
10230 + "default-mobile.handlebars->9->413",
10231 + "default.handlebars->27->1377",
10232 + "default.handlebars->27->1407"
10233 ]
10234 },
10235 {
@@ -10288,7 +10290,7 @@
10290 "zh-chs": "删除用户",
10291 "zh-cht": "刪除用戶",
10292 "xloc": [
10291 - "default.handlebars->27->1953"
10293 + "default.handlebars->27->1955"
10294 ]
10295 },
10296 {
@@ -10308,8 +10310,8 @@
10310 "zh-chs": "删除用户群组",
10311 "zh-cht": "刪除用戶群組",
10312 "xloc": [
10311 - "default.handlebars->27->1873",
10312 - "default.handlebars->27->1883"
10313 + "default.handlebars->27->1875",
10314 + "default.handlebars->27->1885"
10315 ]
10316 },
10317 {
@@ -10329,7 +10331,7 @@
10331 "zh-chs": "删除用户群组",
10332 "zh-cht": "刪除用戶群組",
10333 "xloc": [
10332 - "default.handlebars->27->1822"
10334 + "default.handlebars->27->1824"
10335 ]
10336 },
10337 {
@@ -10349,7 +10351,7 @@
10351 "zh-chs": "删除用户{0}",
10352 "zh-cht": "刪除用戶{0}",
10353 "xloc": [
10352 - "default.handlebars->27->1976"
10354 + "default.handlebars->27->1978"
10355 ]
10356 },
10357 {
@@ -10370,7 +10372,7 @@
10372 "zh-cht": "刪除帳戶",
10373 "xloc": [
10374 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10373 - "default.handlebars->27->1739",
10375 + "default.handlebars->27->1741",
10376 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10377 ]
10378 },
@@ -10411,7 +10413,7 @@
10413 "zh-chs": "删除群组",
10414 "zh-cht": "刪除群組",
10415 "xloc": [
10414 - "default.handlebars->27->1818"
10416 + "default.handlebars->27->1820"
10417 ]
10418 },
10419 {
@@ -10451,7 +10453,7 @@
10453 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10454 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10455 "xloc": [
10454 - "default.handlebars->27->1628"
10456 + "default.handlebars->27->1630"
10457 ]
10458 },
10459 {
@@ -10473,7 +10475,7 @@
10475 "xloc": [
10476 "default-mobile.handlebars->9->124",
10477 "default-mobile.handlebars->9->308",
10476 - "default.handlebars->27->1570",
10478 + "default.handlebars->27->1572",
10479 "default.handlebars->27->898"
10480 ]
10481 },
@@ -10494,7 +10496,7 @@
10496 "zh-chs": "删除用户群组{0}?",
10497 "zh-cht": "刪除用戶群組{0}?",
10498 "xloc": [
10497 - "default.handlebars->27->1881"
10499 + "default.handlebars->27->1883"
10500 ]
10501 },
10502 {
@@ -10516,7 +10518,7 @@
10518 "xloc": [
10519 "default-mobile.handlebars->9->123",
10520 "default-mobile.handlebars->9->307",
10519 - "default.handlebars->27->1569",
10521 + "default.handlebars->27->1571",
10522 "default.handlebars->27->897"
10523 ]
10524 },
@@ -10557,7 +10559,7 @@
10559 "zh-chs": "删除:“{0}”",
10560 "zh-cht": "刪除:“{0}”",
10561 "xloc": [
10560 - "default.handlebars->27->1627"
10562 + "default.handlebars->27->1629"
10563 ]
10564 },
10565 {
@@ -10577,7 +10579,7 @@
10579 "zh-chs": "删除:“{0}”,{1}个元素已删除",
10580 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10581 "xloc": [
10580 - "default.handlebars->27->1629"
10582 + "default.handlebars->27->1631"
10583 ]
10584 },
10585 {
@@ -10692,15 +10694,15 @@
10694 "default-mobile.handlebars->9->226",
10695 "default-mobile.handlebars->9->285",
10696 "default-mobile.handlebars->9->345",
10695 - "default-mobile.handlebars->9->400",
10696 - "default-mobile.handlebars->9->413",
10697 - "default.handlebars->27->1283",
10698 - "default.handlebars->27->1320",
10699 - "default.handlebars->27->1407",
10700 - "default.handlebars->27->1827",
10701 - "default.handlebars->27->1837",
10702 - "default.handlebars->27->1838",
10703 - "default.handlebars->27->1879",
10697 + "default-mobile.handlebars->9->402",
10698 + "default-mobile.handlebars->9->415",
10699 + "default.handlebars->27->1285",
10700 + "default.handlebars->27->1322",
10701 + "default.handlebars->27->1409",
10702 + "default.handlebars->27->1829",
10703 + "default.handlebars->27->1839",
10704 + "default.handlebars->27->1840",
10705 + "default.handlebars->27->1881",
10706 "default.handlebars->27->568",
10707 "default.handlebars->27->569",
10708 "default.handlebars->27->77",
@@ -10745,8 +10747,8 @@
10747 "zh-cht": "桌面",
10748 "xloc": [
10749 "default-mobile.handlebars->9->260",
10748 - "default.handlebars->27->1413",
10749 - "default.handlebars->27->2023",
10750 + "default.handlebars->27->1415",
10751 + "default.handlebars->27->2025",
10752 "default.handlebars->27->533",
10753 "default.handlebars->27->868",
10754 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -10791,9 +10793,9 @@
10793 "zh-chs": "桌面通知",
10794 "zh-cht": "桌面通知",
10795 "xloc": [
10794 - "default.handlebars->27->1334",
10795 - "default.handlebars->27->1842",
10796 - "default.handlebars->27->1929",
10796 + "default.handlebars->27->1336",
10797 + "default.handlebars->27->1844",
10798 + "default.handlebars->27->1931",
10799 "default.handlebars->27->604"
10800 ]
10801 },
@@ -10814,9 +10816,9 @@
10816 "zh-chs": "桌面提示",
10817 "zh-cht": "桌面提示",
10818 "xloc": [
10817 - "default.handlebars->27->1333",
10818 - "default.handlebars->27->1841",
10819 - "default.handlebars->27->1928",
10819 + "default.handlebars->27->1335",
10820 + "default.handlebars->27->1843",
10821 + "default.handlebars->27->1930",
10822 "default.handlebars->27->603"
10823 ]
10824 },
@@ -10837,9 +10839,9 @@
10839 "zh-chs": "桌面提示+工具栏",
10840 "zh-cht": "桌面提示+工具欄",
10841 "xloc": [
10840 - "default.handlebars->27->1331",
10841 - "default.handlebars->27->1839",
10842 - "default.handlebars->27->1926",
10842 + "default.handlebars->27->1333",
10843 + "default.handlebars->27->1841",
10844 + "default.handlebars->27->1928",
10845 "default.handlebars->27->601"
10846 ]
10847 },
@@ -10881,9 +10883,9 @@
10883 "zh-chs": "桌面工具栏",
10884 "zh-cht": "桌面工具欄",
10885 "xloc": [
10884 - "default.handlebars->27->1332",
10885 - "default.handlebars->27->1840",
10886 - "default.handlebars->27->1927",
10886 + "default.handlebars->27->1334",
10887 + "default.handlebars->27->1842",
10888 + "default.handlebars->27->1929",
10889 "default.handlebars->27->602"
10890 ]
10891 },
@@ -10987,9 +10989,9 @@
10989 "zh-chs": "设备",
10990 "zh-cht": "裝置",
10991 "xloc": [
10990 - "default.handlebars->27->1436",
10992 + "default.handlebars->27->1438",
10993 "default.handlebars->27->184",
10992 - "default.handlebars->27->1995",
10994 + "default.handlebars->27->1997",
10995 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
10996 ]
10997 },
@@ -11038,14 +11040,14 @@
11040 "zh-chs": "设备组",
11041 "zh-cht": "裝置群",
11042 "xloc": [
11041 - "default.handlebars->27->1431",
11042 - "default.handlebars->27->1434",
11043 - "default.handlebars->27->1435",
11044 - "default.handlebars->27->1690",
11045 - "default.handlebars->27->1865",
11046 - "default.handlebars->27->1871",
11047 - "default.handlebars->27->1983",
11048 - "default.handlebars->27->2032"
11043 + "default.handlebars->27->1433",
11044 + "default.handlebars->27->1436",
11045 + "default.handlebars->27->1437",
11046 + "default.handlebars->27->1692",
11047 + "default.handlebars->27->1867",
11048 + "default.handlebars->27->1873",
11049 + "default.handlebars->27->1985",
11050 + "default.handlebars->27->2034"
11051 ]
11052 },
11053 {
@@ -11065,8 +11067,8 @@
11067 "zh-chs": "设备组用户",
11068 "zh-cht": "裝置群用戶",
11069 "xloc": [
11068 - "default-mobile.handlebars->9->459",
11069 - "default.handlebars->27->1500"
11070 + "default-mobile.handlebars->9->461",
11071 + "default.handlebars->27->1502"
11072 ]
11073 },
11074 {
@@ -11087,11 +11089,11 @@
11089 "zh-cht": "裝置群",
11090 "xloc": [
11091 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11090 - "default.handlebars->27->1706",
11091 - "default.handlebars->27->1812",
11092 - "default.handlebars->27->1852",
11093 - "default.handlebars->27->1923",
11094 - "default.handlebars->27->2067",
11092 + "default.handlebars->27->1708",
11093 + "default.handlebars->27->1814",
11094 + "default.handlebars->27->1854",
11095 + "default.handlebars->27->1925",
11096 + "default.handlebars->27->2069",
11097 "default.handlebars->container->column_l->p2->p2info->7"
11098 ]
11099 },
@@ -11173,7 +11175,7 @@
11175 "zh-cht": "裝置名稱",
11176 "xloc": [
11177 "default-mobile.handlebars->9->283",
11176 - "default.handlebars->27->2031",
11178 + "default.handlebars->27->2033",
11179 "default.handlebars->27->289",
11180 "default.handlebars->27->821",
11181 "player.handlebars->3->9"
@@ -11237,8 +11239,8 @@
11239 "zh-chs": "设备连接。",
11240 "zh-cht": "裝置連接。",
11241 "xloc": [
11240 - "default.handlebars->27->1251",
11241 - "default.handlebars->27->1521"
11242 + "default.handlebars->27->1253",
11243 + "default.handlebars->27->1523"
11244 ]
11245 },
11246 {
@@ -11258,8 +11260,8 @@
11260 "zh-chs": "设备断开连接。",
11261 "zh-cht": "裝置斷開連接。",
11262 "xloc": [
11261 - "default.handlebars->27->1252",
11262 - "default.handlebars->27->1522"
11263 + "default.handlebars->27->1254",
11264 + "default.handlebars->27->1524"
11265 ]
11266 },
11267 {
@@ -11279,7 +11281,7 @@
11281 "zh-chs": "创建的设备组:{0}",
11282 "zh-cht": "設備組已創建:{0}",
11283 "xloc": [
11282 - "default.handlebars->27->1658"
11284 + "default.handlebars->27->1660"
11285 ]
11286 },
11287 {
@@ -11299,7 +11301,7 @@
11301 "zh-chs": "设备组已删除:{0}",
11302 "zh-cht": "設備組已刪除:{0}",
11303 "xloc": [
11302 - "default.handlebars->27->1659"
11304 + "default.handlebars->27->1661"
11305 ]
11306 },
11307 {
@@ -11319,7 +11321,7 @@
11321 "zh-chs": "设备组成员身份已更改:{0}",
11322 "zh-cht": "設備組成員身份已更改:{0}",
11323 "xloc": [
11322 - "default.handlebars->27->1660"
11324 + "default.handlebars->27->1662"
11325 ]
11326 },
11327 {
@@ -11359,7 +11361,7 @@
11361 "zh-chs": "设备组通知已更改",
11362 "zh-cht": "設備組通知已更改",
11363 "xloc": [
11362 - "default.handlebars->27->1655"
11364 + "default.handlebars->27->1657"
11365 ]
11366 },
11367 {
@@ -11379,7 +11381,7 @@
11381 "zh-chs": "未删除的设备组:{0}",
11382 "zh-cht": "未刪除的設備組:{0}",
11383 "xloc": [
11382 - "default.handlebars->27->1638"
11384 + "default.handlebars->27->1640"
11385 ]
11386 },
11387 {
@@ -11772,7 +11774,7 @@
11774 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11775 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11776 "xloc": [
11775 - "default.handlebars->27->1640"
11777 + "default.handlebars->27->1642"
11778 ]
11779 },
11780 {
@@ -11809,8 +11811,8 @@
11811 "zh-chs": "设备",
11812 "zh-cht": "裝置",
11813 "xloc": [
11812 - "default.handlebars->27->1813",
11813 - "default.handlebars->27->1853"
11814 + "default.handlebars->27->1815",
11815 + "default.handlebars->27->1855"
11816 ]
11817 },
11818 {
@@ -11850,7 +11852,7 @@
11852 "zh-chs": "禁用的电子邮件两因素身份验证",
11853 "zh-cht": "禁用的電子郵件兩因素身份驗證",
11854 "xloc": [
11853 - "default.handlebars->27->1671"
11855 + "default.handlebars->27->1673"
11856 ]
11857 },
11858 {
@@ -11872,7 +11874,7 @@
11874 "xloc": [
11875 "default-mobile.handlebars->9->297",
11876 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11875 - "default.handlebars->27->1344",
11877 + "default.handlebars->27->1346",
11878 "default.handlebars->27->884",
11879 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11880 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -12010,7 +12012,7 @@
12012 "zh-chs": "显示设备组名称",
12013 "zh-cht": "顯示裝置群名稱",
12014 "xloc": [
12013 - "default.handlebars->27->1250"
12015 + "default.handlebars->27->1252"
12016 ]
12017 },
12018 {
@@ -12050,7 +12052,7 @@
12052 "zh-chs": "显示公共连结",
12053 "zh-cht": "顯示公共鏈結",
12054 "xloc": [
12053 - "default.handlebars->27->1541"
12055 + "default.handlebars->27->1543"
12056 ]
12057 },
12058 {
@@ -12070,7 +12072,7 @@
12072 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12073 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12074 "xloc": [
12073 - "default.handlebars->27->1600"
12075 + "default.handlebars->27->1602"
12076 ]
12077 },
12078 {
@@ -12090,7 +12092,7 @@
12092 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12093 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12094 "xloc": [
12093 - "default.handlebars->27->1608"
12095 + "default.handlebars->27->1610"
12096 ]
12097 },
12098 {
@@ -12110,7 +12112,7 @@
12112 "zh-chs": "什么都不做",
12113 "zh-cht": "什麼都不做",
12114 "xloc": [
12113 - "default.handlebars->27->1388"
12115 + "default.handlebars->27->1390"
12116 ]
12117 },
12118 {
@@ -12130,10 +12132,10 @@
12132 "zh-chs": "域",
12133 "zh-cht": "域",
12134 "xloc": [
12133 - "default.handlebars->27->1777",
12134 - "default.handlebars->27->1825",
12135 - "default.handlebars->27->1834",
12136 - "default.handlebars->27->1902",
12135 + "default.handlebars->27->1779",
12136 + "default.handlebars->27->1827",
12137 + "default.handlebars->27->1836",
12138 + "default.handlebars->27->1904",
12139 "mstsc.handlebars->main->1->3->1->2->1->0",
12140 "mstsc.handlebars->main->1->3->1->2->3"
12141 ]
@@ -12155,8 +12157,8 @@
12157 "zh-chs": "不要配置",
12158 "zh-cht": "不要配置",
12159 "xloc": [
12158 - "default.handlebars->27->1392",
12159 - "default.handlebars->27->1397"
12160 + "default.handlebars->27->1394",
12161 + "default.handlebars->27->1399"
12162 ]
12163 },
12164 {
@@ -12176,7 +12178,7 @@
12178 "zh-chs": "不要连接到服务器",
12179 "zh-cht": "不要連接到伺服器",
12180 "xloc": [
12179 - "default.handlebars->27->1393"
12181 + "default.handlebars->27->1395"
12182 ]
12183 },
12184 {
@@ -12396,7 +12398,7 @@
12398 "zh-chs": "下载报告",
12399 "zh-cht": "下載報告",
12400 "xloc": [
12399 - "default.handlebars->27->1695",
12401 + "default.handlebars->27->1697",
12402 "default.handlebars->container->column_l->p3->3->1->0->3"
12403 ]
12404 },
@@ -12597,7 +12599,7 @@
12599 "zh-chs": "使用以下一种档案格式下载事件列表。",
12600 "zh-cht": "使用以下一種檔案格式下載事件列表。",
12601 "xloc": [
12600 - "default.handlebars->27->1696"
12602 + "default.handlebars->27->1698"
12603 ]
12604 },
12605 {
@@ -12617,7 +12619,7 @@
12619 "zh-chs": "使用以下一种档案格式下载用户列表。",
12620 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
12621 "xloc": [
12620 - "default.handlebars->27->1761"
12622 + "default.handlebars->27->1763"
12623 ]
12624 },
12625 {
@@ -12698,7 +12700,7 @@
12700 "zh-chs": "下载:“{0}”",
12701 "zh-cht": "下載:“{0}”",
12702 "xloc": [
12701 - "default.handlebars->27->1631"
12703 + "default.handlebars->27->1633"
12704 ]
12705 },
12706 {
@@ -12738,7 +12740,7 @@
12740 "zh-chs": "代理重复",
12741 "zh-cht": "代理重複",
12742 "xloc": [
12741 - "default.handlebars->27->2063"
12743 + "default.handlebars->27->2065"
12744 ]
12745 },
12746 {
@@ -12778,7 +12780,7 @@
12780 "zh-chs": "复制用户组",
12781 "zh-cht": "複製用戶群",
12782 "xloc": [
12781 - "default.handlebars->27->1829"
12783 + "default.handlebars->27->1831"
12784 ]
12785 },
12786 {
@@ -12815,8 +12817,8 @@
12817 "zh-chs": "持续时间",
12818 "zh-cht": "持續時間",
12819 "xloc": [
12818 - "default.handlebars->27->2017",
12819 - "default.handlebars->27->2037",
12820 + "default.handlebars->27->2019",
12821 + "default.handlebars->27->2039",
12822 "player.handlebars->3->2"
12823 ]
12824 },
@@ -12837,7 +12839,7 @@
12839 "zh-chs": "在激活期间,代理将有权取得管理员密码信息。",
12840 "zh-cht": "在啟動期間,代理將有權取得管理員密碼訊息。",
12841 "xloc": [
12840 - "default.handlebars->27->1402"
12842 + "default.handlebars->27->1404"
12843 ]
12844 },
12845 {
@@ -12857,7 +12859,7 @@
12859 "zh-chs": "荷兰文(比利时)",
12860 "zh-cht": "荷蘭文(比利時)",
12861 "xloc": [
12860 - "default.handlebars->27->1090"
12862 + "default.handlebars->27->1092"
12863 ]
12864 },
12865 {
@@ -12877,7 +12879,7 @@
12879 "zh-chs": "荷兰文(标准)",
12880 "zh-cht": "荷蘭文(標準)",
12881 "xloc": [
12880 - "default.handlebars->27->1089"
12882 + "default.handlebars->27->1091"
12883 ]
12884 },
12885 {
@@ -13167,13 +13169,13 @@
13169 "zh-chs": "编辑设备组",
13170 "zh-cht": "編輯裝置群",
13171 "xloc": [
13170 - "default-mobile.handlebars->9->414",
13172 "default-mobile.handlebars->9->416",
13172 - "default-mobile.handlebars->9->436",
13173 - "default.handlebars->27->1408",
13174 - "default.handlebars->27->1440",
13175 - "default.handlebars->27->1464",
13176 - "default.handlebars->27->1476"
13173 + "default-mobile.handlebars->9->418",
13174 + "default-mobile.handlebars->9->438",
13175 + "default.handlebars->27->1410",
13176 + "default.handlebars->27->1442",
13177 + "default.handlebars->27->1466",
13178 + "default.handlebars->27->1478"
13179 ]
13180 },
13181 {
@@ -13193,7 +13195,7 @@
13195 "zh-chs": "编辑设备组功能",
13196 "zh-cht": "編輯裝置群功能",
13197 "xloc": [
13196 - "default.handlebars->27->1426"
13198 + "default.handlebars->27->1428"
13199 ]
13200 },
13201 {
@@ -13213,8 +13215,8 @@
13215 "zh-chs": "编辑设备组权限",
13216 "zh-cht": "編輯裝置群權限",
13217 "xloc": [
13216 - "default.handlebars->27->1461",
13217 - "default.handlebars->27->1473"
13218 + "default.handlebars->27->1463",
13219 + "default.handlebars->27->1475"
13220 ]
13221 },
13222 {
@@ -13234,7 +13236,7 @@
13236 "zh-chs": "编辑设备组用户同意",
13237 "zh-cht": "編輯裝置群用戶同意",
13238 "xloc": [
13237 - "default.handlebars->27->1409"
13239 + "default.handlebars->27->1411"
13240 ]
13241 },
13242 {
@@ -13254,8 +13256,8 @@
13256 "zh-chs": "编辑设备笔记",
13257 "zh-cht": "編輯裝置筆記",
13258 "xloc": [
13257 - "default-mobile.handlebars->9->428",
13258 - "default.handlebars->27->1453"
13259 + "default-mobile.handlebars->9->430",
13260 + "default.handlebars->27->1455"
13261 ]
13262 },
13263 {
@@ -13275,8 +13277,8 @@
13277 "zh-chs": "编辑设备权限",
13278 "zh-cht": "編輯裝置權限",
13279 "xloc": [
13278 - "default.handlebars->27->1466",
13279 - "default.handlebars->27->1468"
13280 + "default.handlebars->27->1468",
13281 + "default.handlebars->27->1470"
13282 ]
13283 },
13284 {
@@ -13316,7 +13318,7 @@
13318 "zh-chs": "编辑设备用户同意",
13319 "zh-cht": "編輯裝置用戶同意",
13320 "xloc": [
13319 - "default.handlebars->27->1411"
13321 + "default.handlebars->27->1413"
13322 ]
13323 },
13324 {
@@ -13379,8 +13381,8 @@
13381 "zh-chs": "编辑笔记",
13382 "zh-cht": "編輯筆記",
13383 "xloc": [
13382 - "default-mobile.handlebars->9->443",
13383 - "default.handlebars->27->1483"
13384 + "default-mobile.handlebars->9->445",
13385 + "default.handlebars->27->1485"
13386 ]
13387 },
13388 {
@@ -13400,7 +13402,7 @@
13402 "zh-chs": "编辑用户同意",
13403 "zh-cht": "編輯用戶同意",
13404 "xloc": [
13403 - "default.handlebars->27->1410"
13405 + "default.handlebars->27->1412"
13406 ]
13407 },
13408 {
@@ -13420,7 +13422,7 @@
13422 "zh-chs": "编辑用户设备组权限",
13423 "zh-cht": "編輯用戶裝置群權限",
13424 "xloc": [
13423 - "default.handlebars->27->1474"
13425 + "default.handlebars->27->1476"
13426 ]
13427 },
13428 {
@@ -13440,7 +13442,7 @@
13442 "zh-chs": "编辑用户设备权限",
13443 "zh-cht": "編輯用戶裝置權限",
13444 "xloc": [
13443 - "default.handlebars->27->1469"
13445 + "default.handlebars->27->1471"
13446 ]
13447 },
13448 {
@@ -13460,7 +13462,7 @@
13462 "zh-chs": "编辑用户组",
13463 "zh-cht": "編輯用戶群",
13464 "xloc": [
13463 - "default.handlebars->27->1880"
13465 + "default.handlebars->27->1882"
13466 ]
13467 },
13468 {
@@ -13480,14 +13482,14 @@
13482 "zh-chs": "编辑用户组设备权限",
13483 "zh-cht": "編輯用戶群裝置權限",
13484 "xloc": [
13483 - "default.handlebars->27->1471"
13485 + "default.handlebars->27->1473"
13486 ]
13487 },
13488 {
13489 "en": "Edit User Group User Consent",
13490 "nl": "Bewerk groepsgebruikerstoestemming",
13491 "xloc": [
13490 - "default.handlebars->27->1412"
13492 + "default.handlebars->27->1414"
13493 ]
13494 },
13495 {
@@ -13549,11 +13551,11 @@
13551 "zh-cht": "電郵",
13552 "xloc": [
13553 "default-mobile.handlebars->9->78",
13552 - "default.handlebars->27->1779",
13553 - "default.handlebars->27->1906",
13554 + "default.handlebars->27->1781",
13555 "default.handlebars->27->1908",
13555 - "default.handlebars->27->1948",
13556 - "default.handlebars->27->1964",
13556 + "default.handlebars->27->1910",
13557 + "default.handlebars->27->1950",
13558 + "default.handlebars->27->1966",
13559 "default.handlebars->27->339",
13560 "login-mobile.handlebars->5->42",
13561 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13586,7 +13588,7 @@
13588 "zh-cht": "電郵地址變更",
13589 "xloc": [
13590 "default-mobile.handlebars->9->79",
13589 - "default.handlebars->27->1259"
13591 + "default.handlebars->27->1261"
13592 ]
13593 },
13594 {
@@ -13607,7 +13609,7 @@
13609 "zh-cht": "電郵認證",
13610 "xloc": [
13611 "default-mobile.handlebars->9->68",
13610 - "default.handlebars->27->1027"
13612 + "default.handlebars->27->1029"
13613 ]
13614 },
13615 {
@@ -13667,7 +13669,7 @@
13669 "zh-cht": "電郵驗證",
13670 "xloc": [
13671 "default-mobile.handlebars->9->77",
13670 - "default.handlebars->27->1257"
13672 + "default.handlebars->27->1259"
13673 ]
13674 },
13675 {
@@ -13707,7 +13709,7 @@
13709 "zh-chs": "电邮未验证",
13710 "zh-cht": "電郵未驗證",
13711 "xloc": [
13710 - "default.handlebars->27->1725"
13712 + "default.handlebars->27->1727"
13713 ]
13714 },
13715 {
@@ -13727,8 +13729,8 @@
13729 "zh-chs": "电邮已验证",
13730 "zh-cht": "電郵已驗證",
13731 "xloc": [
13730 - "default.handlebars->27->1726",
13731 - "default.handlebars->27->1900"
13732 + "default.handlebars->27->1728",
13733 + "default.handlebars->27->1902"
13734 ]
13735 },
13736 {
@@ -13748,7 +13750,7 @@
13750 "zh-chs": "电邮已验证。",
13751 "zh-cht": "電郵已驗證。",
13752 "xloc": [
13751 - "default.handlebars->27->1785"
13753 + "default.handlebars->27->1787"
13754 ]
13755 },
13756 {
@@ -13768,7 +13770,7 @@
13770 "zh-chs": "电邮未验证",
13771 "zh-cht": "電郵未驗證",
13772 "xloc": [
13771 - "default.handlebars->27->1901"
13773 + "default.handlebars->27->1903"
13774 ]
13775 },
13776 {
@@ -13832,7 +13834,7 @@
13834 "zh-chs": "已通过电邮验证,并且需要重置密码。",
13835 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13836 "xloc": [
13835 - "default.handlebars->27->1786"
13837 + "default.handlebars->27->1788"
13838 ]
13839 },
13840 {
@@ -13852,7 +13854,7 @@
13854 "zh-chs": "电邮/短信流量",
13855 "zh-cht": "電郵/短信流量",
13856 "xloc": [
13855 - "default.handlebars->27->2105"
13857 + "default.handlebars->27->2107"
13858 ]
13859 },
13860 {
@@ -13898,7 +13900,7 @@
13900 "zh-chs": "启用邀请代码",
13901 "zh-cht": "啟用邀請代碼",
13902 "xloc": [
13901 - "default.handlebars->27->1506"
13903 + "default.handlebars->27->1508"
13904 ]
13905 },
13906 {
@@ -13939,7 +13941,7 @@
13941 "zh-cht": "啟用電郵二因子鑑別。",
13942 "xloc": [
13943 "default-mobile.handlebars->9->70",
13942 - "default.handlebars->27->1029"
13944 + "default.handlebars->27->1031"
13945 ]
13946 },
13947 {
@@ -13979,7 +13981,7 @@
13981 "zh-chs": "已启用",
13982 "zh-cht": "已啟用",
13983 "xloc": [
13982 - "default.handlebars->27->2039"
13984 + "default.handlebars->27->2041"
13985 ]
13986 },
13987 {
@@ -13999,7 +14001,7 @@
14001 "zh-chs": "启用电子邮件两因素身份验证",
14002 "zh-cht": "啟用電子郵件兩因素身份驗證",
14003 "xloc": [
14002 - "default.handlebars->27->1670"
14004 + "default.handlebars->27->1672"
14005 ]
14006 },
14007 {
@@ -14039,7 +14041,7 @@
14041 "zh-chs": "时间结束",
14042 "zh-cht": "時間結束",
14043 "xloc": [
14042 - "default.handlebars->27->2036"
14044 + "default.handlebars->27->2038"
14045 ]
14046 },
14047 {
@@ -14059,7 +14061,7 @@
14061 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14062 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14063 "xloc": [
14062 - "default.handlebars->27->1593"
14064 + "default.handlebars->27->1595"
14065 ]
14066 },
14067 {
@@ -14079,7 +14081,7 @@
14081 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14082 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14083 "xloc": [
14082 - "default.handlebars->27->1594"
14084 + "default.handlebars->27->1596"
14085 ]
14086 },
14087 {
@@ -14099,7 +14101,7 @@
14101 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14102 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14103 "xloc": [
14102 - "default.handlebars->27->1591"
14104 + "default.handlebars->27->1593"
14105 ]
14106 },
14107 {
@@ -14119,7 +14121,7 @@
14121 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14122 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14123 "xloc": [
14122 - "default.handlebars->27->1592"
14124 + "default.handlebars->27->1594"
14125 ]
14126 },
14127 {
@@ -14139,7 +14141,7 @@
14141 "zh-chs": "英文",
14142 "zh-cht": "英文",
14143 "xloc": [
14142 - "default.handlebars->27->1091"
14144 + "default.handlebars->27->1093"
14145 ]
14146 },
14147 {
@@ -14159,7 +14161,7 @@
14161 "zh-chs": "英文(澳洲)",
14162 "zh-cht": "英文(澳洲)",
14163 "xloc": [
14162 - "default.handlebars->27->1092"
14164 + "default.handlebars->27->1094"
14165 ]
14166 },
14167 {
@@ -14179,7 +14181,7 @@
14181 "zh-chs": "英文(伯利茲)",
14182 "zh-cht": "英文(伯利茲)",
14183 "xloc": [
14182 - "default.handlebars->27->1093"
14184 + "default.handlebars->27->1095"
14185 ]
14186 },
14187 {
@@ -14199,7 +14201,7 @@
14201 "zh-chs": "英文(加拿大)",
14202 "zh-cht": "英文(加拿大)",
14203 "xloc": [
14202 - "default.handlebars->27->1094"
14204 + "default.handlebars->27->1096"
14205 ]
14206 },
14207 {
@@ -14219,7 +14221,7 @@
14221 "zh-chs": "英文(爱尔兰)",
14222 "zh-cht": "英文(愛爾蘭)",
14223 "xloc": [
14222 - "default.handlebars->27->1095"
14224 + "default.handlebars->27->1097"
14225 ]
14226 },
14227 {
@@ -14239,7 +14241,7 @@
14241 "zh-chs": "英文(牙买加)",
14242 "zh-cht": "英文(牙買加)",
14243 "xloc": [
14242 - "default.handlebars->27->1096"
14244 + "default.handlebars->27->1098"
14245 ]
14246 },
14247 {
@@ -14259,7 +14261,7 @@
14261 "zh-chs": "英文(纽西兰)",
14262 "zh-cht": "英文(紐西蘭)",
14263 "xloc": [
14262 - "default.handlebars->27->1097"
14264 + "default.handlebars->27->1099"
14265 ]
14266 },
14267 {
@@ -14279,7 +14281,7 @@
14281 "zh-chs": "英文(菲律宾)",
14282 "zh-cht": "英文(菲律賓)",
14283 "xloc": [
14282 - "default.handlebars->27->1098"
14284 + "default.handlebars->27->1100"
14285 ]
14286 },
14287 {
@@ -14299,7 +14301,7 @@
14301 "zh-chs": "英语(南非)",
14302 "zh-cht": "英語(南非)",
14303 "xloc": [
14302 - "default.handlebars->27->1099"
14304 + "default.handlebars->27->1101"
14305 ]
14306 },
14307 {
@@ -14319,7 +14321,7 @@
14321 "zh-chs": "英文(特立尼达和多巴哥)",
14322 "zh-cht": "英文(特立尼達和多巴哥)",
14323 "xloc": [
14322 - "default.handlebars->27->1100"
14324 + "default.handlebars->27->1102"
14325 ]
14326 },
14327 {
@@ -14339,7 +14341,7 @@
14341 "zh-chs": "英文(英国)",
14342 "zh-cht": "英文(英國)",
14343 "xloc": [
14342 - "default.handlebars->27->1101"
14344 + "default.handlebars->27->1103"
14345 ]
14346 },
14347 {
@@ -14359,7 +14361,7 @@
14361 "zh-chs": "美国英文",
14362 "zh-cht": "美國英語",
14363 "xloc": [
14362 - "default.handlebars->27->1102"
14364 + "default.handlebars->27->1104"
14365 ]
14366 },
14367 {
@@ -14379,7 +14381,7 @@
14381 "zh-chs": "英文(津巴布韦)",
14382 "zh-cht": "英文(津巴布韋)",
14383 "xloc": [
14382 - "default.handlebars->27->1103"
14384 + "default.handlebars->27->1105"
14385 ]
14386 },
14387 {
@@ -14399,8 +14401,8 @@
14401 "zh-chs": "输入",
14402 "zh-cht": "輸入",
14403 "xloc": [
14402 - "default.handlebars->27->1285",
14403 - "default.handlebars->27->1286"
14404 + "default.handlebars->27->1287",
14405 + "default.handlebars->27->1288"
14406 ]
14407 },
14408 {
@@ -14420,7 +14422,7 @@
14422 "zh-chs": "输入管理领域名称的逗号分隔列表。",
14423 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14424 "xloc": [
14423 - "default.handlebars->27->1790"
14425 + "default.handlebars->27->1792"
14426 ]
14427 },
14428 {
@@ -14523,7 +14525,7 @@
14525 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14526 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14527 "xloc": [
14526 - "default.handlebars->27->1024"
14528 + "default.handlebars->27->1026"
14529 ]
14530 },
14531 {
@@ -14583,7 +14585,7 @@
14585 "zh-chs": "世界文",
14586 "zh-cht": "世界語",
14587 "xloc": [
14586 - "default.handlebars->27->1104"
14588 + "default.handlebars->27->1106"
14589 ]
14590 },
14591 {
@@ -14603,7 +14605,7 @@
14605 "zh-chs": "爱沙尼亚文",
14606 "zh-cht": "愛沙尼亞語",
14607 "xloc": [
14606 - "default.handlebars->27->1105"
14608 + "default.handlebars->27->1107"
14609 ]
14610 },
14611 {
@@ -14643,7 +14645,7 @@
14645 "zh-chs": "事件列表输出",
14646 "zh-cht": "事件列表輸出",
14647 "xloc": [
14646 - "default.handlebars->27->1701"
14648 + "default.handlebars->27->1703"
14649 ]
14650 },
14651 {
@@ -14829,7 +14831,7 @@
14831 "zh-chs": "外部",
14832 "zh-cht": "外部",
14833 "xloc": [
14832 - "default.handlebars->27->2090"
14834 + "default.handlebars->27->2092"
14835 ]
14836 },
14837 {
@@ -14869,7 +14871,7 @@
14871 "zh-chs": "FYRO马其顿语",
14872 "zh-cht": "FYRO馬其頓語",
14873 "xloc": [
14872 - "default.handlebars->27->1155"
14874 + "default.handlebars->27->1157"
14875 ]
14876 },
14877 {
@@ -14889,7 +14891,7 @@
14891 "zh-chs": "法罗语",
14892 "zh-cht": "法羅語",
14893 "xloc": [
14892 - "default.handlebars->27->1106"
14894 + "default.handlebars->27->1108"
14895 ]
14896 },
14897 {
@@ -14929,7 +14931,7 @@
14931 "zh-chs": "本地用户拒绝后无法启动远程桌面",
14932 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
14933 "xloc": [
14932 - "default.handlebars->27->1616"
14934 + "default.handlebars->27->1618"
14935 ]
14936 },
14937 {
@@ -14949,7 +14951,7 @@
14951 "zh-chs": "本地用户拒绝后无法启动远程文件",
14952 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
14953 "xloc": [
14952 - "default.handlebars->27->1623"
14954 + "default.handlebars->27->1625"
14955 ]
14956 },
14957 {
@@ -14990,7 +14992,7 @@
14992 "zh-chs": "波斯文(波斯文)",
14993 "zh-cht": "波斯語(波斯語)",
14994 "xloc": [
14993 - "default.handlebars->27->1107"
14995 + "default.handlebars->27->1109"
14996 ]
14997 },
14998 {
@@ -15032,7 +15034,7 @@
15034 "zh-chs": "功能",
15035 "zh-cht": "功能",
15036 "xloc": [
15035 - "default.handlebars->27->1330"
15037 + "default.handlebars->27->1332"
15038 ]
15039 },
15040 {
@@ -15052,7 +15054,7 @@
15054 "zh-chs": "斐济",
15055 "zh-cht": "斐濟",
15056 "xloc": [
15055 - "default.handlebars->27->1108"
15057 + "default.handlebars->27->1110"
15058 ]
15059 },
15060 {
@@ -15177,8 +15179,8 @@
15179 "xloc": [
15180 "default-mobile.handlebars->9->171",
15181 "default-mobile.handlebars->9->261",
15180 - "default.handlebars->27->1420",
15181 - "default.handlebars->27->2024",
15182 + "default.handlebars->27->1422",
15183 + "default.handlebars->27->2026",
15184 "default.handlebars->27->256",
15185 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15186 "default.handlebars->contextMenu->cxfiles"
@@ -15221,9 +15223,9 @@
15223 "zh-chs": "档案通知",
15224 "zh-cht": "檔案通知",
15225 "xloc": [
15224 - "default.handlebars->27->1338",
15225 - "default.handlebars->27->1846",
15226 - "default.handlebars->27->1933",
15226 + "default.handlebars->27->1340",
15227 + "default.handlebars->27->1848",
15228 + "default.handlebars->27->1935",
15229 "default.handlebars->27->608"
15230 ]
15231 },
@@ -15244,9 +15246,9 @@
15246 "zh-chs": "档案提示",
15247 "zh-cht": "檔案提示",
15248 "xloc": [
15247 - "default.handlebars->27->1337",
15248 - "default.handlebars->27->1845",
15249 - "default.handlebars->27->1932",
15249 + "default.handlebars->27->1339",
15250 + "default.handlebars->27->1847",
15251 + "default.handlebars->27->1934",
15252 "default.handlebars->27->607"
15253 ]
15254 },
@@ -15290,7 +15292,7 @@
15292 "zh-chs": "录制会话已完成,{0}秒",
15293 "zh-cht": "錄製會話已完成,{0}秒",
15294 "xloc": [
15293 - "default.handlebars->27->1589"
15295 + "default.handlebars->27->1591"
15296 ]
15297 },
15298 {
@@ -15310,7 +15312,7 @@
15312 "zh-chs": "芬兰",
15313 "zh-cht": "芬蘭",
15314 "xloc": [
15313 - "default.handlebars->27->1109"
15315 + "default.handlebars->27->1111"
15316 ]
15317 },
15318 {
@@ -15457,8 +15459,8 @@
15459 "zh-chs": "下次登录时强制重置密码。",
15460 "zh-cht": "下次登入時強制重置密碼。",
15461 "xloc": [
15460 - "default.handlebars->27->1784",
15461 - "default.handlebars->27->1973"
15462 + "default.handlebars->27->1786",
15463 + "default.handlebars->27->1975"
15464 ]
15465 },
15466 {
@@ -15541,7 +15543,7 @@
15543 "zh-chs": "格式化",
15544 "zh-cht": "格式化",
15545 "xloc": [
15544 - "default.handlebars->27->1692"
15546 + "default.handlebars->27->1694"
15547 ]
15548 },
15549 {
@@ -15582,8 +15584,8 @@
15584 "zh-chs": "自由",
15585 "zh-cht": "自由",
15586 "xloc": [
15585 - "default.handlebars->27->2048",
15586 - "default.handlebars->27->2050"
15587 + "default.handlebars->27->2050",
15588 + "default.handlebars->27->2052"
15589 ]
15590 },
15591 {
@@ -15624,7 +15626,7 @@
15626 "zh-chs": "法文(比利时)",
15627 "zh-cht": "法語(比利時)",
15628 "xloc": [
15627 - "default.handlebars->27->1111"
15629 + "default.handlebars->27->1113"
15630 ]
15631 },
15632 {
@@ -15644,7 +15646,7 @@
15646 "zh-chs": "法文(加拿大)",
15647 "zh-cht": "法語(加拿大)",
15648 "xloc": [
15647 - "default.handlebars->27->1112"
15649 + "default.handlebars->27->1114"
15650 ]
15651 },
15652 {
@@ -15664,7 +15666,7 @@
15666 "zh-chs": "法文(法国)",
15667 "zh-cht": "法語(法國)",
15668 "xloc": [
15667 - "default.handlebars->27->1113"
15669 + "default.handlebars->27->1115"
15670 ]
15671 },
15672 {
@@ -15684,7 +15686,7 @@
15686 "zh-chs": "法文(卢森堡)",
15687 "zh-cht": "法語(盧森堡)",
15688 "xloc": [
15687 - "default.handlebars->27->1114"
15689 + "default.handlebars->27->1116"
15690 ]
15691 },
15692 {
@@ -15704,7 +15706,7 @@
15706 "zh-chs": "法文(摩纳哥)",
15707 "zh-cht": "法語(摩納哥)",
15708 "xloc": [
15707 - "default.handlebars->27->1115"
15709 + "default.handlebars->27->1117"
15710 ]
15711 },
15712 {
@@ -15724,7 +15726,7 @@
15726 "zh-chs": "法文(标准)",
15727 "zh-cht": "法語(標準)",
15728 "xloc": [
15727 - "default.handlebars->27->1110"
15729 + "default.handlebars->27->1112"
15730 ]
15731 },
15732 {
@@ -15744,7 +15746,7 @@
15746 "zh-chs": "法文(瑞士)",
15747 "zh-cht": "法語(瑞士)",
15748 "xloc": [
15747 - "default.handlebars->27->1116"
15749 + "default.handlebars->27->1118"
15750 ]
15751 },
15752 {
@@ -15764,7 +15766,7 @@
15766 "zh-chs": "弗里斯兰文",
15767 "zh-cht": "弗里斯蘭語",
15768 "xloc": [
15767 - "default.handlebars->27->1117"
15769 + "default.handlebars->27->1119"
15770 ]
15771 },
15772 {
@@ -15784,7 +15786,7 @@
15786 "zh-chs": "弗留利",
15787 "zh-cht": "弗留利",
15788 "xloc": [
15787 - "default.handlebars->27->1118"
15789 + "default.handlebars->27->1120"
15790 ]
15791 },
15792 {
@@ -15805,12 +15807,12 @@
15807 "zh-cht": "完整管理員",
15808 "xloc": [
15809 "default-mobile.handlebars->9->105",
15808 - "default-mobile.handlebars->9->406",
15809 - "default-mobile.handlebars->9->415",
15810 - "default-mobile.handlebars->9->435",
15811 - "default.handlebars->27->1292",
15812 - "default.handlebars->27->1439",
15813 - "default.handlebars->27->1796"
15810 + "default-mobile.handlebars->9->408",
15811 + "default-mobile.handlebars->9->417",
15812 + "default-mobile.handlebars->9->437",
15813 + "default.handlebars->27->1294",
15814 + "default.handlebars->27->1441",
15815 + "default.handlebars->27->1798"
15816 ]
15817 },
15818 {
@@ -15830,7 +15832,7 @@
15832 "zh-chs": "完整管理员(保留所有权利)",
15833 "zh-cht": "完整管理員(保留所有權利)",
15834 "xloc": [
15833 - "default.handlebars->27->1475"
15835 + "default.handlebars->27->1477"
15836 ]
15837 },
15838 {
@@ -15929,7 +15931,7 @@
15931 "zh-chs": "完整管理员",
15932 "zh-cht": "完整管理員",
15933 "xloc": [
15932 - "default.handlebars->27->1894"
15934 + "default.handlebars->27->1896"
15935 ]
15936 },
15937 {
@@ -15970,7 +15972,7 @@
15972 "zh-chs": "盖尔文(爱尔兰)",
15973 "zh-cht": "蓋爾語(愛爾蘭)",
15974 "xloc": [
15973 - "default.handlebars->27->1120"
15975 + "default.handlebars->27->1122"
15976 ]
15977 },
15978 {
@@ -15990,7 +15992,7 @@
15992 "zh-chs": "盖尔文(苏格兰文)",
15993 "zh-cht": "蓋爾語(蘇格蘭語)",
15994 "xloc": [
15993 - "default.handlebars->27->1119"
15995 + "default.handlebars->27->1121"
15996 ]
15997 },
15998 {
@@ -16010,7 +16012,7 @@
16012 "zh-chs": "加拉契文",
16013 "zh-cht": "加拉契語",
16014 "xloc": [
16013 - "default.handlebars->27->1121"
16015 + "default.handlebars->27->1123"
16016 ]
16017 },
16018 {
@@ -16136,7 +16138,7 @@
16138 "zh-chs": "格鲁吉亚文",
16139 "zh-cht": "格魯吉亞文",
16140 "xloc": [
16139 - "default.handlebars->27->1122"
16141 + "default.handlebars->27->1124"
16142 ]
16143 },
16144 {
@@ -16156,7 +16158,7 @@
16158 "zh-chs": "德文(奥地利)",
16159 "zh-cht": "德語(奧地利)",
16160 "xloc": [
16159 - "default.handlebars->27->1124"
16161 + "default.handlebars->27->1126"
16162 ]
16163 },
16164 {
@@ -16176,7 +16178,7 @@
16178 "zh-chs": "德文(德国)",
16179 "zh-cht": "德文(德國)",
16180 "xloc": [
16179 - "default.handlebars->27->1125"
16181 + "default.handlebars->27->1127"
16182 ]
16183 },
16184 {
@@ -16196,7 +16198,7 @@
16198 "zh-chs": "德文(列支敦士登)",
16199 "zh-cht": "德文(列支敦士登)",
16200 "xloc": [
16199 - "default.handlebars->27->1126"
16201 + "default.handlebars->27->1128"
16202 ]
16203 },
16204 {
@@ -16216,7 +16218,7 @@
16218 "zh-chs": "德文(卢森堡)",
16219 "zh-cht": "德語(盧森堡)",
16220 "xloc": [
16219 - "default.handlebars->27->1127"
16221 + "default.handlebars->27->1129"
16222 ]
16223 },
16224 {
@@ -16236,7 +16238,7 @@
16238 "zh-chs": "德文(标准)",
16239 "zh-cht": "德語(標準)",
16240 "xloc": [
16239 - "default.handlebars->27->1123"
16241 + "default.handlebars->27->1125"
16242 ]
16243 },
16244 {
@@ -16256,7 +16258,7 @@
16258 "zh-chs": "德文(瑞士)",
16259 "zh-cht": "德文(瑞士)",
16260 "xloc": [
16259 - "default.handlebars->27->1128"
16261 + "default.handlebars->27->1130"
16262 ]
16263 },
16264 {
@@ -16317,7 +16319,7 @@
16319 "zh-chs": "正在获取剪贴板内容,{0}个字节",
16320 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
16321 "xloc": [
16320 - "default.handlebars->27->1603"
16322 + "default.handlebars->27->1605"
16323 ]
16324 },
16325 {
@@ -16379,7 +16381,7 @@
16381 "zh-chs": "好",
16382 "zh-cht": "好",
16383 "xloc": [
16382 - "default.handlebars->27->1288"
16384 + "default.handlebars->27->1290"
16385 ]
16386 },
16387 {
@@ -16424,8 +16426,8 @@
16426 "zh-chs": "Google云端硬盘备份",
16427 "zh-cht": "Google雲端硬盤備份",
16428 "xloc": [
16427 - "default.handlebars->27->1299",
16428 - "default.handlebars->27->1302",
16429 + "default.handlebars->27->1301",
16430 + "default.handlebars->27->1304",
16431 "default.handlebars->27->202"
16432 ]
16433 },
@@ -16446,7 +16448,7 @@
16448 "zh-chs": "Google云端硬盘控制台",
16449 "zh-cht": "Google雲端硬盤控制台",
16450 "xloc": [
16449 - "default.handlebars->27->1296"
16451 + "default.handlebars->27->1298"
16452 ]
16453 },
16454 {
@@ -16486,7 +16488,7 @@
16488 "zh-chs": "Google云端硬盘备份当前处于活动状态。",
16489 "zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
16490 "xloc": [
16489 - "default.handlebars->27->1300"
16491 + "default.handlebars->27->1302"
16492 ]
16493 },
16494 {
@@ -16506,7 +16508,7 @@
16508 "zh-chs": "希腊文",
16509 "zh-cht": "希臘文",
16510 "xloc": [
16509 - "default.handlebars->27->1129"
16511 + "default.handlebars->27->1131"
16512 ]
16513 },
16514 {
@@ -16548,8 +16550,8 @@
16550 "zh-chs": "集体指令",
16551 "zh-cht": "集體指令",
16552 "xloc": [
16551 - "default.handlebars->27->1740",
16552 - "default.handlebars->27->1819",
16553 + "default.handlebars->27->1742",
16554 + "default.handlebars->27->1821",
16555 "default.handlebars->27->468",
16556 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16557 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16573,7 +16575,7 @@
16575 "zh-chs": "通过...分组",
16576 "zh-cht": "通過...分群",
16577 "xloc": [
16576 - "default.handlebars->27->1688"
16578 + "default.handlebars->27->1690"
16579 ]
16580 },
16581 {
@@ -16593,7 +16595,7 @@
16595 "zh-chs": "组标识符",
16596 "zh-cht": "群標識符",
16597 "xloc": [
16596 - "default.handlebars->27->1836"
16598 + "default.handlebars->27->1838"
16599 ]
16600 },
16601 {
@@ -16613,7 +16615,7 @@
16615 "zh-chs": "群组成员",
16616 "zh-cht": "群組成員",
16617 "xloc": [
16616 - "default.handlebars->27->1857"
16618 + "default.handlebars->27->1859"
16619 ]
16620 },
16621 {
@@ -16633,7 +16635,7 @@
16635 "zh-chs": "用户{0}的群组权限。",
16636 "zh-cht": "用戶{0}的群組權限。",
16637 "xloc": [
16636 - "default.handlebars->27->1438"
16638 + "default.handlebars->27->1440"
16639 ]
16640 },
16641 {
@@ -16653,7 +16655,7 @@
16655 "zh-chs": "{0}的群组权限。",
16656 "zh-cht": "{0}的群組權限。",
16657 "xloc": [
16656 - "default.handlebars->27->1437"
16658 + "default.handlebars->27->1439"
16659 ]
16660 },
16661 {
@@ -16741,7 +16743,7 @@
16743 "zh-chs": "古久拉提",
16744 "zh-cht": "古久拉提",
16745 "xloc": [
16744 - "default.handlebars->27->1130"
16746 + "default.handlebars->27->1132"
16747 ]
16748 },
16749 {
@@ -16784,7 +16786,7 @@
16786 "zh-chs": "海地文",
16787 "zh-cht": "海地文",
16788 "xloc": [
16787 - "default.handlebars->27->1131"
16789 + "default.handlebars->27->1133"
16790 ]
16791 },
16792 {
@@ -16824,7 +16826,7 @@
16826 "zh-chs": "强行断开代理",
16827 "zh-cht": "強行斷開代理",
16828 "xloc": [
16827 - "default.handlebars->27->1019"
16829 + "default.handlebars->27->1021"
16830 ]
16831 },
16832 {
@@ -16844,7 +16846,7 @@
16846 "zh-chs": "堆总数",
16847 "zh-cht": "堆總數",
16848 "xloc": [
16847 - "default.handlebars->27->2092"
16849 + "default.handlebars->27->2094"
16850 ]
16851 },
16852 {
@@ -16864,7 +16866,7 @@
16866 "zh-chs": "堆使用",
16867 "zh-cht": "堆使用",
16868 "xloc": [
16867 - "default.handlebars->27->2091"
16869 + "default.handlebars->27->2093"
16870 ]
16871 },
16872 {
@@ -16884,7 +16886,7 @@
16886 "zh-chs": "希伯来文",
16887 "zh-cht": "希伯來文",
16888 "xloc": [
16887 - "default.handlebars->27->1132"
16889 + "default.handlebars->27->1134"
16890 ]
16891 },
16892 {
@@ -16919,7 +16921,7 @@
16921 "en": "Help Requested, user: {0}, details: {1}",
16922 "nl": "Hulp verzoek van, user: {0}, details: {1}",
16923 "xloc": [
16922 - "default.handlebars->27->1680"
16924 + "default.handlebars->27->1682"
16925 ]
16926 },
16927 {
@@ -16954,7 +16956,7 @@
16956 "zh-chs": "帮助翻译MeshCentral",
16957 "zh-cht": "幫助翻譯MeshCentral",
16958 "xloc": [
16957 - "default.handlebars->27->1247"
16959 + "default.handlebars->27->1249"
16960 ]
16961 },
16962 {
@@ -17058,7 +17060,7 @@
17060 "zh-chs": "印地文",
17061 "zh-cht": "印地文",
17062 "xloc": [
17061 - "default.handlebars->27->1133"
17063 + "default.handlebars->27->1135"
17064 ]
17065 },
17066 {
@@ -17180,7 +17182,7 @@
17182 "zh-cht": "保存{0}項目{1}給{2}",
17183 "xloc": [
17184 "default-mobile.handlebars->9->129",
17183 - "default.handlebars->27->1576"
17185 + "default.handlebars->27->1578"
17186 ]
17187 },
17188 {
@@ -17226,7 +17228,7 @@
17228 "zh-chs": "主机名同步",
17229 "zh-cht": "主機名同步",
17230 "xloc": [
17229 - "default.handlebars->27->1327"
17231 + "default.handlebars->27->1329"
17232 ]
17233 },
17234 {
@@ -17246,7 +17248,7 @@
17248 "zh-chs": "匈牙利文",
17249 "zh-cht": "匈牙利文",
17250 "xloc": [
17249 - "default.handlebars->27->1134"
17251 + "default.handlebars->27->1136"
17252 ]
17253 },
17254 {
@@ -17528,7 +17530,7 @@
17530 "zh-chs": "冰岛文",
17531 "zh-cht": "冰島文",
17532 "xloc": [
17531 - "default.handlebars->27->1135"
17533 + "default.handlebars->27->1137"
17534 ]
17535 },
17536 {
@@ -17718,7 +17720,7 @@
17720 "zh-chs": "印度尼西亚文",
17721 "zh-cht": "印度尼西亞文",
17722 "xloc": [
17721 - "default.handlebars->27->1136"
17723 + "default.handlebars->27->1138"
17724 ]
17725 },
17726 {
@@ -17857,7 +17859,7 @@
17859 "zh-chs": "安装CIRA",
17860 "zh-cht": "安裝CIRA",
17861 "xloc": [
17860 - "default.handlebars->27->1361"
17862 + "default.handlebars->27->1363"
17863 ]
17864 },
17865 {
@@ -17877,7 +17879,7 @@
17879 "zh-chs": "安装本地",
17880 "zh-cht": "安裝本地",
17881 "xloc": [
17880 - "default.handlebars->27->1363"
17882 + "default.handlebars->27->1365"
17883 ]
17884 },
17885 {
@@ -17897,8 +17899,8 @@
17899 "zh-chs": "安装类型",
17900 "zh-cht": "安裝方式",
17901 "xloc": [
17900 - "default.handlebars->27->1508",
17901 - "default.handlebars->27->1515",
17902 + "default.handlebars->27->1510",
17903 + "default.handlebars->27->1517",
17904 "default.handlebars->27->354",
17905 "default.handlebars->27->368",
17906 "default.handlebars->27->382"
@@ -17942,7 +17944,7 @@
17944 "zh-chs": "英特尔AMT",
17945 "zh-cht": "英特爾AMT",
17946 "xloc": [
17945 - "default.handlebars->27->2088"
17947 + "default.handlebars->27->2090"
17948 ]
17949 },
17950 {
@@ -17985,11 +17987,11 @@
17987 "default-mobile.handlebars->9->205",
17988 "default-mobile.handlebars->9->240",
17989 "default-mobile.handlebars->9->245",
17988 - "default.handlebars->27->1345",
17989 - "default.handlebars->27->1355",
17990 - "default.handlebars->27->1527",
17991 - "default.handlebars->27->1535",
17992 - "default.handlebars->27->2110",
17990 + "default.handlebars->27->1347",
17991 + "default.handlebars->27->1357",
17992 + "default.handlebars->27->1529",
17993 + "default.handlebars->27->1537",
17994 + "default.handlebars->27->2112",
17995 "default.handlebars->27->535",
17996 "default.handlebars->27->590",
17997 "default.handlebars->27->618"
@@ -18138,7 +18140,7 @@
18140 "zh-chs": "英特尔&reg;AMT政策",
18141 "zh-cht": "Intel&reg; AMT政策",
18142 "xloc": [
18141 - "default.handlebars->27->1384"
18143 + "default.handlebars->27->1386"
18144 ]
18145 },
18146 {
@@ -18158,7 +18160,7 @@
18160 "zh-chs": "英特尔&reg;AMT重定向",
18161 "zh-cht": "Intel&reg; AMT重定向",
18162 "xloc": [
18161 - "default.handlebars->27->2026",
18163 + "default.handlebars->27->2028",
18164 "player.handlebars->3->14"
18165 ]
18166 },
@@ -18199,7 +18201,7 @@
18201 "zh-chs": "英特尔&reg;AMT WSMAN",
18202 "zh-cht": "Intle&reg; AMT WSMAN",
18203 "xloc": [
18202 - "default.handlebars->27->2025",
18204 + "default.handlebars->27->2027",
18205 "player.handlebars->3->13"
18206 ]
18207 },
@@ -18263,8 +18265,8 @@
18265 "zh-chs": "英特尔&reg;AMT桌面和串行事件。",
18266 "zh-cht": "Intel&reg; AMT桌面和串行事件。",
18267 "xloc": [
18266 - "default.handlebars->27->1253",
18267 - "default.handlebars->27->1523"
18268 + "default.handlebars->27->1255",
18269 + "default.handlebars->27->1525"
18270 ]
18271 },
18272 {
@@ -18448,9 +18450,9 @@
18450 "zh-chs": "仅限英特尔&reg;AMT,无代理",
18451 "zh-cht": "僅限Intel&reg; AMT,無代理",
18452 "xloc": [
18451 - "default-mobile.handlebars->9->397",
18452 - "default.handlebars->27->1282",
18453 - "default.handlebars->27->1317"
18453 + "default-mobile.handlebars->9->399",
18454 + "default.handlebars->27->1284",
18455 + "default.handlebars->27->1319"
18456 ]
18457 },
18458 {
@@ -18736,8 +18738,8 @@
18738 "zh-chs": "仅限互动",
18739 "zh-cht": "僅限互動",
18740 "xloc": [
18739 - "default.handlebars->27->1511",
18740 - "default.handlebars->27->1518",
18741 + "default.handlebars->27->1513",
18742 + "default.handlebars->27->1520",
18743 "default.handlebars->27->357",
18744 "default.handlebars->27->371",
18745 "default.handlebars->27->385"
@@ -18780,7 +18782,7 @@
18782 "zh-chs": "因纽特文",
18783 "zh-cht": "因紐特文",
18784 "xloc": [
18783 - "default.handlebars->27->1137"
18785 + "default.handlebars->27->1139"
18786 ]
18787 },
18788 {
@@ -18800,7 +18802,7 @@
18802 "zh-chs": "无效的设备组类型",
18803 "zh-cht": "無效的裝置群類型",
18804 "xloc": [
18803 - "default.handlebars->27->2062"
18805 + "default.handlebars->27->2064"
18806 ]
18807 },
18808 {
@@ -18820,7 +18822,7 @@
18822 "zh-chs": "无效的JSON",
18823 "zh-cht": "無效的JSON",
18824 "xloc": [
18823 - "default.handlebars->27->2056"
18825 + "default.handlebars->27->2058"
18826 ]
18827 },
18828 {
@@ -18840,8 +18842,8 @@
18842 "zh-chs": "无效的JSON档案格式。",
18843 "zh-cht": "無效的JSON檔案格式。",
18844 "xloc": [
18843 - "default.handlebars->27->1758",
18844 - "default.handlebars->27->1760"
18845 + "default.handlebars->27->1760",
18846 + "default.handlebars->27->1762"
18847 ]
18848 },
18849 {
@@ -18861,7 +18863,7 @@
18863 "zh-chs": "无效的JSON档案:{0}。",
18864 "zh-cht": "無效的JSON檔案:{0}。",
18865 "xloc": [
18864 - "default.handlebars->27->1756"
18866 + "default.handlebars->27->1758"
18867 ]
18868 },
18869 {
@@ -18881,7 +18883,7 @@
18883 "zh-chs": "无效的PKCS签名",
18884 "zh-cht": "無效的PKCS簽名",
18885 "xloc": [
18884 - "default.handlebars->27->2054"
18886 + "default.handlebars->27->2056"
18887 ]
18888 },
18889 {
@@ -18901,7 +18903,7 @@
18903 "zh-chs": "無效的RSA密碼",
18904 "zh-cht": "無效的RSA密碼",
18905 "xloc": [
18904 - "default.handlebars->27->2055"
18906 + "default.handlebars->27->2057"
18907 ]
18908 },
18909 {
@@ -19028,7 +19030,7 @@
19030 "zh-chs": "使电邮无效",
19031 "zh-cht": "使電郵無效",
19032 "xloc": [
19031 - "default.handlebars->27->1734"
19033 + "default.handlebars->27->1736"
19034 ]
19035 },
19036 {
@@ -19105,7 +19107,7 @@
19107 "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
19108 "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
19109 "xloc": [
19108 - "default.handlebars->27->1513"
19110 + "default.handlebars->27->1515"
19111 ]
19112 },
19113 {
@@ -19145,7 +19147,7 @@
19147 "zh-chs": "邀请",
19148 "zh-cht": "邀請",
19149 "xloc": [
19148 - "default.handlebars->27->1371",
19150 + "default.handlebars->27->1373",
19151 "default.handlebars->27->287",
19152 "default.handlebars->27->373"
19153 ]
@@ -19167,11 +19169,11 @@
19169 "zh-chs": "邀请码",
19170 "zh-cht": "邀請碼",
19171 "xloc": [
19170 - "default.handlebars->27->1349",
19171 - "default.handlebars->27->1507",
19172 - "default.handlebars->27->1512",
19172 + "default.handlebars->27->1351",
19173 + "default.handlebars->27->1509",
19174 "default.handlebars->27->1514",
19174 - "default.handlebars->27->1519"
19175 + "default.handlebars->27->1516",
19176 + "default.handlebars->27->1521"
19177 ]
19178 },
19179 {
@@ -19211,7 +19213,7 @@
19213 "zh-chs": "邀请某人在该设备组上安装网格代理。",
19214 "zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
19215 "xloc": [
19214 - "default.handlebars->27->1370",
19216 + "default.handlebars->27->1372",
19217 "default.handlebars->27->286"
19218 ]
19219 },
@@ -19252,7 +19254,7 @@
19254 "zh-chs": "爱尔兰文",
19255 "zh-cht": "愛爾蘭文",
19256 "xloc": [
19255 - "default.handlebars->27->1138"
19257 + "default.handlebars->27->1140"
19258 ]
19259 },
19260 {
@@ -19272,7 +19274,7 @@
19274 "zh-chs": "意大利文(标准)",
19275 "zh-cht": "意大利文(標準)",
19276 "xloc": [
19275 - "default.handlebars->27->1139"
19277 + "default.handlebars->27->1141"
19278 ]
19279 },
19280 {
@@ -19292,7 +19294,7 @@
19294 "zh-chs": "意大利文(瑞士)",
19295 "zh-cht": "義大利文(瑞士)",
19296 "xloc": [
19295 - "default.handlebars->27->1140"
19297 + "default.handlebars->27->1142"
19298 ]
19299 },
19300 {
@@ -19312,7 +19314,7 @@
19314 "zh-chs": "JSON",
19315 "zh-cht": "JSON",
19316 "xloc": [
19315 - "default.handlebars->27->1694"
19317 + "default.handlebars->27->1696"
19318 ]
19319 },
19320 {
@@ -19332,8 +19334,8 @@
19334 "zh-chs": "JSON格式",
19335 "zh-cht": "JSON格式",
19336 "xloc": [
19335 - "default.handlebars->27->1699",
19336 - "default.handlebars->27->1764",
19337 + "default.handlebars->27->1701",
19338 + "default.handlebars->27->1766",
19339 "default.handlebars->27->496"
19340 ]
19341 },
@@ -19354,7 +19356,7 @@
19356 "zh-chs": "日文",
19357 "zh-cht": "日文",
19358 "xloc": [
19357 - "default.handlebars->27->1141"
19359 + "default.handlebars->27->1143"
19360 ]
19361 },
19362 {
@@ -19374,7 +19376,7 @@
19376 "zh-chs": "已加入桌面Multiplex会话",
19377 "zh-cht": "已加入桌面Multiplex會話",
19378 "xloc": [
19377 - "default.handlebars->27->1586"
19379 + "default.handlebars->27->1588"
19380 ]
19381 },
19382 {
@@ -19394,7 +19396,7 @@
19396 "zh-chs": "卡纳达文",
19397 "zh-cht": "卡納達文",
19398 "xloc": [
19397 - "default.handlebars->27->1142"
19399 + "default.handlebars->27->1144"
19400 ]
19401 },
19402 {
@@ -19414,7 +19416,7 @@
19416 "zh-chs": "克什米尔文",
19417 "zh-cht": "克什米爾文",
19418 "xloc": [
19417 - "default.handlebars->27->1143"
19419 + "default.handlebars->27->1145"
19420 ]
19421 },
19422 {
@@ -19434,7 +19436,7 @@
19436 "zh-chs": "哈萨克文",
19437 "zh-cht": "哈薩克文",
19438 "xloc": [
19437 - "default.handlebars->27->1144"
19439 + "default.handlebars->27->1146"
19440 ]
19441 },
19442 {
@@ -19474,8 +19476,8 @@
19476 "zh-chs": "键名",
19477 "zh-cht": "鍵名",
19478 "xloc": [
19477 - "default.handlebars->27->1035",
19478 - "default.handlebars->27->1038"
19479 + "default.handlebars->27->1037",
19480 + "default.handlebars->27->1040"
19481 ]
19482 },
19483 {
@@ -19535,7 +19537,7 @@
19537 "zh-chs": "高棉文",
19538 "zh-cht": "高棉文",
19539 "xloc": [
19538 - "default.handlebars->27->1145"
19540 + "default.handlebars->27->1147"
19541 ]
19542 },
19543 {
@@ -19555,7 +19557,7 @@
19557 "zh-chs": "杀死进程{0}",
19558 "zh-cht": "殺死進程{0}",
19559 "xloc": [
19558 - "default.handlebars->27->1601"
19560 + "default.handlebars->27->1603"
19561 ]
19562 },
19563 {
@@ -19575,7 +19577,7 @@
19577 "zh-chs": "吉尔吉斯",
19578 "zh-cht": "吉爾吉斯",
19579 "xloc": [
19578 - "default.handlebars->27->1146"
19580 + "default.handlebars->27->1148"
19581 ]
19582 },
19583 {
@@ -19595,7 +19597,7 @@
19597 "zh-chs": "克林贡",
19598 "zh-cht": "克林貢",
19599 "xloc": [
19598 - "default.handlebars->27->1147"
19600 + "default.handlebars->27->1149"
19601 ]
19602 },
19603 {
@@ -19636,7 +19638,7 @@
19638 "zh-chs": "韩文",
19639 "zh-cht": "韓文",
19640 "xloc": [
19639 - "default.handlebars->27->1148"
19641 + "default.handlebars->27->1150"
19642 ]
19643 },
19644 {
@@ -19656,7 +19658,7 @@
19658 "zh-chs": "韩文(朝鲜)",
19659 "zh-cht": "韓文(朝鮮)",
19660 "xloc": [
19659 - "default.handlebars->27->1149"
19661 + "default.handlebars->27->1151"
19662 ]
19663 },
19664 {
@@ -19676,7 +19678,7 @@
19678 "zh-chs": "韩文(韩国)",
19679 "zh-cht": "韓文(韓國)",
19680 "xloc": [
19679 - "default.handlebars->27->1150"
19681 + "default.handlebars->27->1152"
19682 ]
19683 },
19684 {
@@ -19717,7 +19719,7 @@
19719 "zh-chs": "语言",
19720 "zh-cht": "語言",
19721 "xloc": [
19720 - "default.handlebars->27->1245"
19722 + "default.handlebars->27->1247"
19723 ]
19724 },
19725 {
@@ -19970,7 +19972,7 @@
19972 "zh-chs": "最后访问",
19973 "zh-cht": "最後訪問",
19974 "xloc": [
19973 - "default.handlebars->27->1707"
19975 + "default.handlebars->27->1709"
19976 ]
19977 },
19978 {
@@ -19990,7 +19992,7 @@
19992 "zh-chs": "上次登录",
19993 "zh-cht": "上次登入",
19994 "xloc": [
19993 - "default.handlebars->27->1915"
19995 + "default.handlebars->27->1917"
19996 ]
19997 },
19998 {
@@ -20062,7 +20064,7 @@
20064 "zh-chs": "上次更改:{0}",
20065 "zh-cht": "上次更改:{0}",
20066 "xloc": [
20065 - "default.handlebars->27->1919"
20067 + "default.handlebars->27->1921"
20068 ]
20069 },
20070 {
@@ -20122,7 +20124,7 @@
20124 "zh-chs": "上次登录:{0}",
20125 "zh-cht": "上次登入:{0}",
20126 "xloc": [
20125 - "default.handlebars->27->1717"
20127 + "default.handlebars->27->1719"
20128 ]
20129 },
20130 {
@@ -20223,7 +20225,7 @@
20225 "zh-chs": "拉丁文",
20226 "zh-cht": "拉丁文",
20227 "xloc": [
20226 - "default.handlebars->27->1151"
20228 + "default.handlebars->27->1153"
20229 ]
20230 },
20231 {
@@ -20243,7 +20245,7 @@
20245 "zh-chs": "拉脱维亚文",
20246 "zh-cht": "拉脫維亞文",
20247 "xloc": [
20246 - "default.handlebars->27->1152"
20248 + "default.handlebars->27->1154"
20249 ]
20250 },
20251 {
@@ -20323,7 +20325,7 @@
20325 "zh-chs": "如没有请留空。",
20326 "zh-cht": "如沒有請留空。",
20327 "xloc": [
20326 - "default.handlebars->27->1959"
20328 + "default.handlebars->27->1961"
20329 ]
20330 },
20331 {
@@ -20368,7 +20370,7 @@
20370 "zh-chs": "离开桌面多路复用会话",
20371 "zh-cht": "離開桌面多路復用會話",
20372 "xloc": [
20371 - "default.handlebars->27->1587"
20373 + "default.handlebars->27->1589"
20374 ]
20375 },
20376 {
@@ -20388,7 +20390,7 @@
20390 "zh-chs": "减",
20391 "zh-cht": "減",
20392 "xloc": [
20391 - "default.handlebars->27->2127"
20393 + "default.handlebars->27->2129"
20394 ]
20395 },
20396 {
@@ -20450,8 +20452,8 @@
20452 "zh-chs": "有限输入",
20453 "zh-cht": "有限輸入",
20454 "xloc": [
20453 - "default-mobile.handlebars->9->448",
20454 - "default.handlebars->27->1489",
20455 + "default-mobile.handlebars->9->450",
20456 + "default.handlebars->27->1491",
20457 "default.handlebars->27->681",
20458 "default.handlebars->27->702"
20459 ]
@@ -20473,8 +20475,8 @@
20475 "zh-chs": "仅有限输入",
20476 "zh-cht": "僅有限輸入",
20477 "xloc": [
20476 - "default-mobile.handlebars->9->421",
20477 - "default.handlebars->27->1445"
20478 + "default-mobile.handlebars->9->423",
20479 + "default.handlebars->27->1447"
20480 ]
20481 },
20482 {
@@ -20923,7 +20925,7 @@
20925 "zh-chs": "立陶宛文",
20926 "zh-cht": "立陶宛文",
20927 "xloc": [
20926 - "default.handlebars->27->1153"
20928 + "default.handlebars->27->1155"
20929 ]
20930 },
20931 {
@@ -20944,10 +20946,10 @@
20946 "zh-cht": "載入中...",
20947 "xloc": [
20948 "default-mobile.handlebars->9->72",
20947 - "default.handlebars->27->1031",
20948 - "default.handlebars->27->1308",
20949 - "default.handlebars->27->1312",
20950 - "default.handlebars->27->2013",
20949 + "default.handlebars->27->1033",
20950 + "default.handlebars->27->1310",
20951 + "default.handlebars->27->1314",
20952 + "default.handlebars->27->2015",
20953 "default.handlebars->27->793"
20954 ]
20955 },
@@ -21030,7 +21032,7 @@
21032 "zh-chs": "本地用户接受的远程终端请求",
21033 "zh-cht": "本地用戶接受的遠程終端請求",
21034 "xloc": [
21033 - "default.handlebars->27->1609"
21035 + "default.handlebars->27->1611"
21036 ]
21037 },
21038 {
@@ -21050,7 +21052,7 @@
21052 "zh-chs": "本地用户拒绝了远程终端请求",
21053 "zh-cht": "本地用戶拒絕了遠程終端請求",
21054 "xloc": [
21053 - "default.handlebars->27->1610"
21055 + "default.handlebars->27->1612"
21056 ]
21057 },
21058 {
@@ -21070,7 +21072,7 @@
21072 "zh-chs": "本地化设置",
21073 "zh-cht": "本地化設置",
21074 "xloc": [
21073 - "default.handlebars->27->1248",
21075 + "default.handlebars->27->1250",
21076 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
21077 ]
21078 },
@@ -21131,7 +21133,7 @@
21133 "zh-chs": "锁定账户",
21134 "zh-cht": "鎖定賬戶",
21135 "xloc": [
21134 - "default.handlebars->27->1804"
21136 + "default.handlebars->27->1806"
21137 ]
21138 },
21139 {
@@ -21151,7 +21153,7 @@
21153 "zh-chs": "锁定帐户设置",
21154 "zh-cht": "鎖定帳戶設置",
21155 "xloc": [
21154 - "default.handlebars->27->1807"
21156 + "default.handlebars->27->1809"
21157 ]
21158 },
21159 {
@@ -21171,7 +21173,7 @@
21173 "zh-chs": "锁定账户",
21174 "zh-cht": "鎖定賬戶",
21175 "xloc": [
21174 - "default.handlebars->27->1737"
21176 + "default.handlebars->27->1739"
21177 ]
21178 },
21179 {
@@ -21191,7 +21193,7 @@
21193 "zh-chs": "已锁定",
21194 "zh-cht": "已鎖定",
21195 "xloc": [
21194 - "default.handlebars->27->1718"
21196 + "default.handlebars->27->1720"
21197 ]
21198 },
21199 {
@@ -21211,7 +21213,7 @@
21213 "zh-chs": "被锁定账户",
21214 "zh-cht": "被鎖定賬戶",
21215 "xloc": [
21214 - "default.handlebars->27->1891"
21216 + "default.handlebars->27->1893"
21217 ]
21218 },
21219 {
@@ -21231,7 +21233,7 @@
21233 "zh-chs": "将远程用户锁定在桌面之外",
21234 "zh-cht": "將遠程用戶鎖定在桌面之外",
21235 "xloc": [
21234 - "default.handlebars->27->1635"
21236 + "default.handlebars->27->1637"
21237 ]
21238 },
21239 {
@@ -21471,7 +21473,7 @@
21473 "zh-chs": "卢森堡文",
21474 "zh-cht": "盧森堡文",
21475 "xloc": [
21474 - "default.handlebars->27->1154"
21476 + "default.handlebars->27->1156"
21477 ]
21478 },
21479 {
@@ -21646,8 +21648,8 @@
21648 "xloc": [
21649 "default-mobile.handlebars->9->207",
21650 "default-mobile.handlebars->9->247",
21649 - "default.handlebars->27->1009",
21650 - "default.handlebars->27->1010",
21651 + "default.handlebars->27->1011",
21652 + "default.handlebars->27->1012",
21653 "default.handlebars->27->219",
21654 "default.handlebars->27->450",
21655 "default.handlebars->27->622",
@@ -21855,7 +21857,7 @@
21857 "zh-chs": "主服务器信息",
21858 "zh-cht": "主伺服器訊息",
21859 "xloc": [
21858 - "default.handlebars->27->2099"
21860 + "default.handlebars->27->2101"
21861 ]
21862 },
21863 {
@@ -21875,7 +21877,7 @@
21877 "zh-chs": "马来文",
21878 "zh-cht": "馬來文",
21879 "xloc": [
21878 - "default.handlebars->27->1156"
21880 + "default.handlebars->27->1158"
21881 ]
21882 },
21883 {
@@ -21895,7 +21897,7 @@
21897 "zh-chs": "玛拉雅拉姆文",
21898 "zh-cht": "馬拉雅拉姆文",
21899 "xloc": [
21898 - "default.handlebars->27->1157"
21900 + "default.handlebars->27->1159"
21901 ]
21902 },
21903 {
@@ -21915,7 +21917,7 @@
21917 "zh-chs": "马耳他文",
21918 "zh-cht": "馬耳他文",
21919 "xloc": [
21918 - "default.handlebars->27->1158"
21920 + "default.handlebars->27->1160"
21921 ]
21922 },
21923 {
@@ -21956,10 +21958,10 @@
21958 "zh-chs": "管理设备组计算机",
21959 "zh-cht": "管理裝置群電腦",
21960 "xloc": [
21959 - "default-mobile.handlebars->9->418",
21960 - "default-mobile.handlebars->9->438",
21961 - "default.handlebars->27->1442",
21962 - "default.handlebars->27->1478"
21961 + "default-mobile.handlebars->9->420",
21962 + "default-mobile.handlebars->9->440",
21963 + "default.handlebars->27->1444",
21964 + "default.handlebars->27->1480"
21965 ]
21966 },
21967 {
@@ -21979,10 +21981,10 @@
21981 "zh-chs": "管理设备组用户",
21982 "zh-cht": "管理裝置群用戶",
21983 "xloc": [
21982 - "default-mobile.handlebars->9->417",
21983 - "default-mobile.handlebars->9->437",
21984 - "default.handlebars->27->1441",
21985 - "default.handlebars->27->1477"
21984 + "default-mobile.handlebars->9->419",
21985 + "default-mobile.handlebars->9->439",
21986 + "default.handlebars->27->1443",
21987 + "default.handlebars->27->1479"
21988 ]
21989 },
21990 {
@@ -22022,7 +22024,7 @@
22024 "zh-chs": "管理录音",
22025 "zh-cht": "管理錄音",
22026 "xloc": [
22025 - "default.handlebars->27->1802"
22027 + "default.handlebars->27->1804"
22028 ]
22029 },
22030 {
@@ -22062,7 +22064,7 @@
22064 "zh-chs": "管理用户组",
22065 "zh-cht": "管理用戶群",
22066 "xloc": [
22065 - "default.handlebars->27->1801"
22067 + "default.handlebars->27->1803"
22068 ]
22069 },
22070 {
@@ -22082,7 +22084,7 @@
22084 "zh-chs": "管理用户",
22085 "zh-cht": "管理用戶",
22086 "xloc": [
22085 - "default.handlebars->27->1800",
22087 + "default.handlebars->27->1802",
22088 "default.handlebars->27->696"
22089 ]
22090 },
@@ -22209,7 +22211,7 @@
22211 "zh-chs": "使用软件代理进行管理",
22212 "zh-cht": "使用軟體代理進行管理",
22213 "xloc": [
22212 - "default.handlebars->27->1281"
22214 + "default.handlebars->27->1283"
22215 ]
22216 },
22217 {
@@ -22229,8 +22231,8 @@
22231 "zh-chs": "使用软件代理进行管理",
22232 "zh-cht": "使用軟體代理進行管理",
22233 "xloc": [
22232 - "default-mobile.handlebars->9->398",
22233 - "default.handlebars->27->1318"
22234 + "default-mobile.handlebars->9->400",
22235 + "default.handlebars->27->1320"
22236 ]
22237 },
22238 {
@@ -22250,7 +22252,7 @@
22252 "zh-chs": "经理",
22253 "zh-cht": "經理",
22254 "xloc": [
22253 - "default.handlebars->27->1723"
22255 + "default.handlebars->27->1725"
22256 ]
22257 },
22258 {
@@ -22310,7 +22312,7 @@
22312 "zh-chs": "毛利文",
22313 "zh-cht": "毛利文",
22314 "xloc": [
22313 - "default.handlebars->27->1159"
22315 + "default.handlebars->27->1161"
22316 ]
22317 },
22318 {
@@ -22351,7 +22353,7 @@
22353 "zh-chs": "马拉地文",
22354 "zh-cht": "馬拉地文",
22355 "xloc": [
22354 - "default.handlebars->27->1160"
22356 + "default.handlebars->27->1162"
22357 ]
22358 },
22359 {
@@ -22371,7 +22373,7 @@
22373 "zh-chs": "达到连接数量上限",
22374 "zh-cht": "達到連接數量上限",
22375 "xloc": [
22374 - "default.handlebars->27->2060"
22376 + "default.handlebars->27->2062"
22377 ]
22378 },
22379 {
@@ -22436,7 +22438,7 @@
22438 "zh-chs": "Megabyte",
22439 "zh-cht": "Megabyte",
22440 "xloc": [
22439 - "default.handlebars->27->2089"
22441 + "default.handlebars->27->2091"
22442 ]
22443 },
22444 {
@@ -22456,9 +22458,9 @@
22458 "zh-chs": "记忆体",
22459 "zh-cht": "記憶體",
22460 "xloc": [
22459 - "default-mobile.handlebars->9->389",
22460 - "default.handlebars->27->2080",
22461 - "default.handlebars->27->997",
22461 + "default-mobile.handlebars->9->391",
22462 + "default.handlebars->27->2082",
22463 + "default.handlebars->27->999",
22464 "default.handlebars->container->column_l->p40->3->1->p40type->3"
22465 ]
22466 },
@@ -22511,8 +22513,8 @@
22513 "zh-chs": "网格代理控制台",
22514 "zh-cht": "網格代理控制台",
22515 "xloc": [
22514 - "default-mobile.handlebars->9->425",
22515 - "default.handlebars->27->1450"
22516 + "default-mobile.handlebars->9->427",
22517 + "default.handlebars->27->1452"
22518 ]
22519 },
22520 {
@@ -22617,7 +22619,7 @@
22619 "zh-chs": "MeshAgent流量",
22620 "zh-cht": "MeshAgent流量",
22621 "xloc": [
22620 - "default.handlebars->27->2101"
22622 + "default.handlebars->27->2103"
22623 ]
22624 },
22625 {
@@ -22637,7 +22639,7 @@
22639 "zh-chs": "MeshAgent更新",
22640 "zh-cht": "MeshAgent更新",
22641 "xloc": [
22640 - "default.handlebars->27->2102"
22642 + "default.handlebars->27->2104"
22643 ]
22644 },
22645 {
@@ -22677,7 +22679,7 @@
22679 "zh-chs": "MeshCentral错误",
22680 "zh-cht": "MeshCentral錯誤",
22681 "xloc": [
22680 - "default.handlebars->27->1311"
22682 + "default.handlebars->27->1313"
22683 ]
22684 },
22685 {
@@ -22758,7 +22760,7 @@
22760 "zh-chs": "MeshCentral服务器同级化",
22761 "zh-cht": "MeshCentral伺服器同級化",
22762 "xloc": [
22761 - "default.handlebars->27->2100"
22763 + "default.handlebars->27->2102"
22764 ]
22765 },
22766 {
@@ -22800,7 +22802,7 @@
22802 "xloc": [
22803 "default.handlebars->27->115",
22804 "default.handlebars->27->117",
22803 - "default.handlebars->27->1307"
22805 + "default.handlebars->27->1309"
22806 ]
22807 },
22808 {
@@ -23087,7 +23089,7 @@
23089 "zh-chs": "消息调度器",
23090 "zh-cht": "電郵調度器",
23091 "xloc": [
23090 - "default.handlebars->27->2098"
23092 + "default.handlebars->27->2100"
23093 ]
23094 },
23095 {
@@ -23209,8 +23211,8 @@
23211 "zh-chs": "模型",
23212 "zh-cht": "模型",
23213 "xloc": [
23212 - "default-mobile.handlebars->9->390",
23213 - "default.handlebars->27->998"
23214 + "default-mobile.handlebars->9->392",
23215 + "default.handlebars->27->1000"
23216 ]
23217 },
23218 {
@@ -23250,7 +23252,7 @@
23252 "zh-chs": "摩尔达维亚文",
23253 "zh-cht": "摩爾達維亞文",
23254 "xloc": [
23253 - "default.handlebars->27->1161"
23255 + "default.handlebars->27->1163"
23256 ]
23257 },
23258 {
@@ -23270,7 +23272,7 @@
23272 "zh-chs": "更多",
23273 "zh-cht": "更多",
23274 "xloc": [
23273 - "default.handlebars->27->2126"
23275 + "default.handlebars->27->2128"
23276 ]
23277 },
23278 {
@@ -23351,7 +23353,7 @@
23353 "zh-chs": "移动:“{0}”到“{1}”",
23354 "zh-cht": "移動:“{0}”到“{1}”",
23355 "xloc": [
23354 - "default.handlebars->27->1634"
23356 + "default.handlebars->27->1636"
23357 ]
23358 },
23359 {
@@ -23371,7 +23373,7 @@
23373 "zh-chs": "将设备{0}移动到组{1}",
23374 "zh-cht": "將設備{0}移動到組{1}",
23375 "xloc": [
23374 - "default.handlebars->27->1667"
23376 + "default.handlebars->27->1669"
23377 ]
23378 },
23379 {
@@ -23411,7 +23413,7 @@
23413 "zh-chs": "多路复用器",
23414 "zh-cht": "多工器",
23415 "xloc": [
23414 - "default.handlebars->27->2038"
23416 + "default.handlebars->27->2040"
23417 ]
23418 },
23419 {
@@ -23552,7 +23554,7 @@
23554 "zh-chs": "我的服务器控制台",
23555 "zh-cht": "我的伺服器控制台",
23556 "xloc": [
23555 - "default.handlebars->27->1004"
23557 + "default.handlebars->27->1006"
23558 ]
23559 },
23560 {
@@ -23714,8 +23716,8 @@
23716 "zh-chs": "我的密钥",
23717 "zh-cht": "我的密鍵",
23718 "xloc": [
23717 - "default.handlebars->27->1036",
23718 - "default.handlebars->27->1039"
23719 + "default.handlebars->27->1038",
23720 + "default.handlebars->27->1041"
23721 ]
23722 },
23723 {
@@ -23758,19 +23760,19 @@
23760 "default-mobile.handlebars->9->219",
23761 "default-mobile.handlebars->9->333",
23762 "default-mobile.handlebars->9->379",
23761 - "default-mobile.handlebars->9->399",
23762 - "default-mobile.handlebars->9->412",
23763 + "default-mobile.handlebars->9->401",
23764 + "default-mobile.handlebars->9->414",
23765 "default-mobile.handlebars->9->97",
23766 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
23765 - "default.handlebars->27->1279",
23766 - "default.handlebars->27->1319",
23767 - "default.handlebars->27->1406",
23768 - "default.handlebars->27->1705",
23769 - "default.handlebars->27->1810",
23770 - "default.handlebars->27->1826",
23771 - "default.handlebars->27->1833",
23772 - "default.handlebars->27->1878",
23773 - "default.handlebars->27->1897",
23767 + "default.handlebars->27->1281",
23768 + "default.handlebars->27->1321",
23769 + "default.handlebars->27->1408",
23770 + "default.handlebars->27->1707",
23771 + "default.handlebars->27->1812",
23772 + "default.handlebars->27->1828",
23773 + "default.handlebars->27->1835",
23774 + "default.handlebars->27->1880",
23775 + "default.handlebars->27->1899",
23776 "default.handlebars->27->558",
23777 "default.handlebars->27->76",
23778 "default.handlebars->27->852",
@@ -23819,7 +23821,7 @@
23821 "zh-chs": "名称1,名称2,名称3",
23822 "zh-cht": "名稱1,名稱2,名稱3",
23823 "xloc": [
23822 - "default.handlebars->27->1792"
23824 + "default.handlebars->27->1794"
23825 ]
23826 },
23827 {
@@ -23839,7 +23841,7 @@
23841 "zh-chs": "纳瓦霍文",
23842 "zh-cht": "納瓦霍文",
23843 "xloc": [
23842 - "default.handlebars->27->1162"
23844 + "default.handlebars->27->1164"
23845 ]
23846 },
23847 {
@@ -23859,7 +23861,7 @@
23861 "zh-chs": "恩东加",
23862 "zh-cht": "恩東加",
23863 "xloc": [
23862 - "default.handlebars->27->1163"
23864 + "default.handlebars->27->1165"
23865 ]
23866 },
23867 {
@@ -23879,7 +23881,7 @@
23881 "zh-chs": "尼泊尔文",
23882 "zh-cht": "尼泊爾文",
23883 "xloc": [
23882 - "default.handlebars->27->1164"
23884 + "default.handlebars->27->1166"
23885 ]
23886 },
23887 {
@@ -23979,7 +23981,7 @@
23981 "zh-chs": "生成新的2FA备份代码",
23982 "zh-cht": "生成新的2FA備份代碼",
23983 "xloc": [
23982 - "default.handlebars->27->1674"
23984 + "default.handlebars->27->1676"
23985 ]
23986 },
23987 {
@@ -24020,8 +24022,8 @@
24022 "zh-cht": "新裝置群",
24023 "xloc": [
24024 "default-mobile.handlebars->9->91",
24023 - "default.handlebars->27->1272",
24024 - "default.handlebars->27->1284",
24025 + "default.handlebars->27->1274",
24026 + "default.handlebars->27->1286",
24027 "default.handlebars->27->784"
24028 ]
24029 },
@@ -24044,7 +24046,7 @@
24046 "xloc": [
24047 "default-mobile.handlebars->9->120",
24048 "default-mobile.handlebars->9->304",
24047 - "default.handlebars->27->1566",
24049 + "default.handlebars->27->1568",
24050 "default.handlebars->27->894",
24051 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
24052 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -24109,8 +24111,8 @@
24111 "xloc": [
24112 "default-mobile.handlebars->9->86",
24113 "default-mobile.handlebars->9->87",
24112 - "default.handlebars->27->1267",
24113 - "default.handlebars->27->1268"
24114 + "default.handlebars->27->1269",
24115 + "default.handlebars->27->1270"
24116 ]
24117 },
24118 {
@@ -24212,7 +24214,7 @@
24214 "zh-chs": "没有桌面",
24215 "zh-cht": "沒有桌面",
24216 "xloc": [
24215 - "default.handlebars->27->1485",
24217 + "default.handlebars->27->1487",
24218 "default.handlebars->27->682",
24219 "default.handlebars->27->703"
24220 ]
@@ -24234,7 +24236,7 @@
24236 "zh-chs": "不能访问桌面",
24237 "zh-cht": "不能訪問桌面",
24238 "xloc": [
24237 - "default.handlebars->27->1446"
24239 + "default.handlebars->27->1448"
24240 ]
24241 },
24242 {
@@ -24254,8 +24256,8 @@
24256 "zh-chs": "找不到事件",
24257 "zh-cht": "找不到事件",
24258 "xloc": [
24257 - "default.handlebars->27->1681",
24258 - "default.handlebars->27->2012",
24259 + "default.handlebars->27->1683",
24260 + "default.handlebars->27->2014",
24261 "default.handlebars->27->929"
24262 ]
24263 },
@@ -24276,8 +24278,8 @@
24278 "zh-chs": "不能存取档案",
24279 "zh-cht": "不能存取檔案",
24280 "xloc": [
24279 - "default-mobile.handlebars->9->423",
24280 - "default.handlebars->27->1448"
24281 + "default-mobile.handlebars->9->425",
24282 + "default.handlebars->27->1450"
24283 ]
24284 },
24285 {
@@ -24297,8 +24299,8 @@
24299 "zh-chs": "没有档案",
24300 "zh-cht": "沒有檔案",
24301 "xloc": [
24300 - "default-mobile.handlebars->9->446",
24301 - "default.handlebars->27->1487",
24302 + "default-mobile.handlebars->9->448",
24303 + "default.handlebars->27->1489",
24304 "default.handlebars->27->679",
24305 "default.handlebars->27->700"
24306 ]
@@ -24341,10 +24343,10 @@
24343 "zh-chs": "没有英特尔&reg;AMT",
24344 "zh-cht": "沒有Intel&reg; AMT",
24345 "xloc": [
24344 - "default-mobile.handlebars->9->424",
24345 - "default-mobile.handlebars->9->447",
24346 - "default.handlebars->27->1449",
24347 - "default.handlebars->27->1488"
24346 + "default-mobile.handlebars->9->426",
24347 + "default-mobile.handlebars->9->449",
24348 + "default.handlebars->27->1451",
24349 + "default.handlebars->27->1490"
24350 ]
24351 },
24352 {
@@ -24424,7 +24426,7 @@
24426 "zh-chs": "没有成员",
24427 "zh-cht": "沒有成員",
24428 "xloc": [
24427 - "default.handlebars->27->1860"
24429 + "default.handlebars->27->1862"
24430 ]
24431 },
24432 {
@@ -24444,7 +24446,7 @@
24446 "zh-chs": "没有新的设备组",
24447 "zh-cht": "沒有新的裝置群",
24448 "xloc": [
24447 - "default.handlebars->27->1805"
24449 + "default.handlebars->27->1807"
24450 ]
24451 },
24452 {
@@ -24464,9 +24466,9 @@
24466 "zh-chs": "没有政策",
24467 "zh-cht": "沒有政策",
24468 "xloc": [
24467 - "default.handlebars->27->1350",
24468 - "default.handlebars->27->1378",
24469 - "default.handlebars->27->1381"
24469 + "default.handlebars->27->1352",
24470 + "default.handlebars->27->1380",
24471 + "default.handlebars->27->1383"
24472 ]
24473 },
24474 {
@@ -24487,10 +24489,10 @@
24489 "zh-cht": "沒有權利",
24490 "xloc": [
24491 "default-mobile.handlebars->9->106",
24490 - "default-mobile.handlebars->9->407",
24491 - "default-mobile.handlebars->9->454",
24492 - "default.handlebars->27->1293",
24493 - "default.handlebars->27->1495",
24492 + "default-mobile.handlebars->9->409",
24493 + "default-mobile.handlebars->9->456",
24494 + "default.handlebars->27->1295",
24495 + "default.handlebars->27->1497",
24496 "default.handlebars->27->693",
24497 "default.handlebars->27->714"
24498 ]
@@ -24534,8 +24536,8 @@
24536 "zh-chs": "没有终端",
24537 "zh-cht": "沒有終端",
24538 "xloc": [
24537 - "default-mobile.handlebars->9->445",
24538 - "default.handlebars->27->1486",
24539 + "default-mobile.handlebars->9->447",
24540 + "default.handlebars->27->1488",
24541 "default.handlebars->27->678",
24542 "default.handlebars->27->699"
24543 ]
@@ -24557,8 +24559,8 @@
24559 "zh-chs": "不能访问终端",
24560 "zh-cht": "不能訪問終端",
24561 "xloc": [
24560 - "default-mobile.handlebars->9->422",
24561 - "default.handlebars->27->1447"
24562 + "default-mobile.handlebars->9->424",
24563 + "default.handlebars->27->1449"
24564 ]
24565 },
24566 {
@@ -24578,7 +24580,7 @@
24580 "zh-chs": "没有工具(MeshCmd /路由器)",
24581 "zh-cht": "沒有工具(MeshCmd /路由器)",
24582 "xloc": [
24581 - "default.handlebars->27->1806"
24583 + "default.handlebars->27->1808"
24584 ]
24585 },
24586 {
@@ -24606,8 +24608,8 @@
24608 "zh-chs": "没有共同的设备组",
24609 "zh-cht": "沒有共同的裝置群",
24610 "xloc": [
24609 - "default.handlebars->27->1866",
24610 - "default.handlebars->27->1984"
24611 + "default.handlebars->27->1868",
24612 + "default.handlebars->27->1986"
24613 ]
24614 },
24615 {
@@ -24727,8 +24729,8 @@
24729 "zh-chs": "没有共同的设备",
24730 "zh-cht": "沒有共同的裝置",
24731 "xloc": [
24730 - "default.handlebars->27->1872",
24731 - "default.handlebars->27->1996"
24732 + "default.handlebars->27->1874",
24733 + "default.handlebars->27->1998"
24734 ]
24735 },
24736 {
@@ -24748,7 +24750,7 @@
24750 "zh-chs": "该设备组中没有设备。",
24751 "zh-cht": "該裝置群中沒有裝置。",
24752 "xloc": [
24751 - "default.handlebars->27->1538"
24753 + "default.handlebars->27->1540"
24754 ]
24755 },
24756 {
@@ -24831,7 +24833,7 @@
24833 "zh-chs": "找不到群组。",
24834 "zh-cht": "找不到群組。",
24835 "xloc": [
24834 - "default.handlebars->27->1809"
24836 + "default.handlebars->27->1811"
24837 ]
24838 },
24839 {
@@ -24851,8 +24853,8 @@
24853 "zh-chs": "没有此设备的讯息。",
24854 "zh-cht": "沒有此裝置的訊息。",
24855 "xloc": [
24854 - "default-mobile.handlebars->9->395",
24855 - "default.handlebars->27->1003"
24856 + "default-mobile.handlebars->9->397",
24857 + "default.handlebars->27->1005"
24858 ]
24859 },
24860 {
@@ -24952,7 +24954,7 @@
24954 "zh-chs": "没有录音。",
24955 "zh-cht": "沒有錄音。",
24956 "xloc": [
24955 - "default.handlebars->27->2014"
24957 + "default.handlebars->27->2016"
24958 ]
24959 },
24960 {
@@ -24972,7 +24974,7 @@
24974 "zh-chs": "没有服务器权限",
24975 "zh-cht": "沒有伺服器權限",
24976 "xloc": [
24975 - "default.handlebars->27->1892"
24977 + "default.handlebars->27->1894"
24978 ]
24979 },
24980 {
@@ -24992,7 +24994,7 @@
24994 "zh-chs": "没有用户组成员身份",
24995 "zh-cht": "沒有用戶群成員身份",
24996 "xloc": [
24995 - "default.handlebars->27->1990"
24997 + "default.handlebars->27->1992"

This file is too large to show in full.

views/default-mobile.handlebars
+8 -4
@@ -1467,9 +1467,12 @@
1467 }
1468 case 'sysinfohash': {
1469 // If the sysinfo document has changed and we are looking at it, request an update.
1470 - if ((currentNode != null) && (message.event.nodeid == powerTimelineReq)) {
1471 - meshserver.send({ action: 'getsysinfo', nodeid: message.event.nodeid });
1472 - }
1470 + if ((currentNode != null) && (message.event.nodeid == powerTimelineReq)) { meshserver.send({ action: 'getsysinfo', nodeid: message.event.nodeid }); }
1471 + break;
1472 + }
1473 + case 'ifchange': {
1474 + // Network interface changed for a device, if we are currently viewing this device, ask for an update.
1475 + if (currentNode._id == message.event.nodeid) { meshserver.send({ action: 'getnetworkinfo', nodeid: currentNode._id }); }
1476 break;
1477 }
1478 case 'devicesessions': {
@@ -3970,7 +3973,8 @@
3973 var m = hardware.windows.memory[i];
3974 x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
3975 x += '<div style=margin-bottom:3px><b>' + EscapeHtml(m.BankLabel) + '</b></div>';
3973 - if (m.Capacity) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); }
3976 + if (m.Capacity && m.Speed) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); }
3977 + else if (m.Capacity) { x += addDetailItem("Capacity", format("{0} Mb", (m.Capacity / 1024 / 1024)), s); }
3978 if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != 'Undefined') ? (m.Manufacturer + ', ') : '') + EscapeHtml(m.PartNumber), s); }
3979 x += '</div>';
3980 }
views/default.handlebars
+7 -1
@@ -2953,6 +2953,11 @@
2953 }
2954 break;
2955 }
2956 + case 'ifchange': {
2957 + // Network interface changed for a device, if we are currently viewing this device, ask for an update.
2958 + if (currentNode._id == message.event.nodeid) { meshserver.send({ action: 'getnetworkinfo', nodeid: currentNode._id }); }
2959 + break;
2960 + }
2961 case 'devicesessions': {
2962 // List of sessions for a given device
2963 var node = getNodeFromId(message.event.nodeid);
@@ -8604,7 +8609,8 @@
8609 var m = hardware.windows.memory[i];
8610 x += '<tr><td><div class=style10 style=border-radius:5px;padding:8px>';
8611 x += '<div style=margin-bottom:3px><b>' + EscapeHtml(m.BankLabel) + '</b></div>';
8607 - if (m.Capacity) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); }
8612 + if (m.Capacity && m.Speed) { x += addDetailItem("Capacity / Speed", format("{0} Mb, {1} Mhz", (m.Capacity / 1024 / 1024), m.Speed), s); }
8613 + else if (m.Capacity) { x += addDetailItem("Capacity", format("{0} Mb", (m.Capacity / 1024 / 1024)), s); }
8614 if (m.PartNumber) { x += addDetailItem("Part Number", EscapeHtml((m.Manufacturer && m.Manufacturer != 'Undefined')?(m.Manufacturer + ', '):'') + EscapeHtml(m.PartNumber), s); }
8615 x += '</div>';
8616 }