Improved agent meshcore self-update debugging.

Ylian Saint-Hilaire committed Mar 4, 2021 at 16:27 UTC 77e3acad080155b0a8ca6b48b95de9018b2ed512
6 files changed +1709 -1676
agents/meshcmd.js
+14 -2
@@ -113,7 +113,7 @@ function run(argv) {
113 //console.log('addedModules = ' + JSON.stringify(addedModules));
114 var actionpath = 'meshaction.txt';
115 if (args.actionfile != null) { actionpath = args.actionfile; }
116 - var actions = ['HELP', 'ROUTE', 'MICROLMS', 'AMTCONFIG', 'AMTSCAN', 'AMTPOWER', 'AMTFEATURES', 'AMTNETWORK', 'AMTLOADWEBAPP', 'AMTLOADSMALLWEBAPP', 'AMTLOADLARGEWEBAPP', 'AMTCLEARWEBAPP', 'AMTSTORAGESTATE', 'AMTINFO', 'AMTINFODEBUG', 'AMTVERSIONS', 'AMTHASHES', 'AMTSAVESTATE', 'AMTUUID', 'AMTCCM', 'AMTDEACTIVATE', 'AMTACMDEACTIVATE', 'SMBIOS', 'RAWSMBIOS', 'MESHCOMMANDER', 'AMTAUDITLOG', 'AMTEVENTLOG', 'AMTPRESENCE', 'AMTWIFI', 'AMTWAKE'];
116 + var actions = ['HELP', 'ROUTE', 'MICROLMS', 'AMTCONFIG', 'AMTSCAN', 'AMTPOWER', 'AMTFEATURES', 'AMTNETWORK', 'AMTLOADWEBAPP', 'AMTLOADSMALLWEBAPP', 'AMTLOADLARGEWEBAPP', 'AMTCLEARWEBAPP', 'AMTSTORAGESTATE', 'AMTINFO', 'AMTINFODEBUG', 'AMTVERSIONS', 'AMTHASHES', 'AMTSAVESTATE', 'AMTUUID', 'AMTCCM', 'AMTDEACTIVATE', 'AMTACMDEACTIVATE', 'SMBIOS', 'RAWSMBIOS', 'MESHCOMMANDER', 'AMTAUDITLOG', 'AMTEVENTLOG', 'AMTPRESENCE', 'AMTWIFI', 'AMTWAKE', 'AMTSTOPCONFIGURATION'];
117
118 // Load the action file
119 var actionfile = null;
@@ -428,7 +428,19 @@ function run(argv) {
428 console.log('Proxy set to ' + proxy[0] + ':' + proxyport);
429 }
430
431 - if (settings.action == 'smbios') {
431 + if (settings.action == 'amtstopconfiguration') {
432 + // Stop Intel AMT configuration
433 + var amtMeiModule, amtMei;
434 + try { amtMeiModule = require('amt-mei'); amtMei = new amtMeiModule(); } catch (ex) { console.log(ex); exit(1); return; }
435 + amtMei.on('error', function (e) { console.log('ERROR: ' + e); exit(1); return; });
436 + amtMei.stopConfiguration(function (state) {
437 + if (state == 3) { console.log("Intel AMT is not in in-provisionning mode."); }
438 + else if (state == 1) { console.log("Intel AMT internal error."); }
439 + else if (state == 0) { console.log("Success."); }
440 + else { console.log("Unknown state: " + state); }
441 + exit(1);
442 + });
443 + } else if (settings.action == 'smbios') {
444 // Display SM BIOS tables in raw form
445 SMBiosTables = require('smbios');
446 SMBiosTables.get(function (data) {
agents/meshcore.js
+11 -5
@@ -2751,7 +2751,11 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
2751 break;
2752 case 'agentupdateex':
2753 // Perform an direct agent update without requesting any information from the server, this should not typically be used.
2754 - agentUpdate_Start(null, { sessionid: sessionid });
2754 + if (args['_'].length == 1) {
2755 + if (args['_'][0].startsWith('https://')) { agentUpdate_Start(args['_'][0], { sessionid: sessionid }); } else { response = "Usage: agentupdateex https://server/path"; }
2756 + } else {
2757 + agentUpdate_Start(null, { sessionid: sessionid });
2758 + }
2759 break;
2760 case 'msh':
2761 response = JSON.stringify(_MSH(), null, 2);
@@ -4139,8 +4143,10 @@ function agentUpdate_Start(updateurl, updateoptions) {
4143 var sessionid = (updateoptions != null) ? updateoptions.sessionid : null; // If this is null, messages will be broadcast. Otherwise they will be unicasted
4144
4145 // If the url starts with *, switch it to use the same protoco, host and port as the control channel.
4142 - updateurl = getServerTargetUrlEx(updateurl);
4143 - if (updateurl.startsWith("wss://")) { updateurl = "https://" + updateurl.substring(6); }
4146 + if (updateurl != null) {
4147 + updateurl = getServerTargetUrlEx(updateurl);
4148 + if (updateurl.startsWith("wss://")) { updateurl = "https://" + updateurl.substring(6); }
4149 + }
4150
4151 if (agentUpdate_Start._selfupdate != null) {
4152 // We were already called, so we will ignore this duplicate request
@@ -4171,10 +4177,10 @@ function agentUpdate_Start(updateurl, updateoptions) {
4177 return;
4178 }
4179
4174 - if (sessionid != null) { sendConsoleText('Downloading update from: ' + updateurl, sessionid); }
4180 + if ((sessionid != null) && (updateurl != null)) { sendConsoleText('Downloading update from: ' + updateurl, sessionid); }
4181 var options = require('http').parseUri(updateurl != null ? updateurl : require('MeshAgent').ServerUrl);
4182 options.protocol = 'https:';
4177 - if (updateurl == null) { options.path = ('/meshagents?id=' + require('MeshAgent').ARCHID); }
4183 + if (updateurl == null) { options.path = ('/meshagents?id=' + require('MeshAgent').ARCHID); sendConsoleText('Downloading update from: ' + options.path, sessionid); }
4184 options.rejectUnauthorized = false;
4185 options.checkServerIdentity = function checkServerIdentity(certs) {
4186 // If the tunnel certificate matches the control channel certificate, accept the connection
agents/recoverycore.js
+12 -6
@@ -353,8 +353,10 @@ function agentUpdate_Start(updateurl, updateoptions) {
353 var sessionid = (updateoptions != null) ? updateoptions.sessionid : null; // If this is null, messages will be broadcast. Otherwise they will be unicasted
354
355 // If the url starts with *, switch it to use the same protoco, host and port as the control channel.
356 - updateurl = getServerTargetUrlEx(updateurl);
357 - if (updateurl.startsWith("wss://")) { updateurl = "https://" + updateurl.substring(6); }
356 + if (updateurl != null) {
357 + updateurl = getServerTargetUrlEx(updateurl);
358 + if (updateurl.startsWith("wss://")) { updateurl = "https://" + updateurl.substring(6); }
359 + }
360
361 if (agentUpdate_Start._selfupdate != null) {
362 // We were already called, so we will ignore this duplicate request
@@ -385,10 +387,10 @@ function agentUpdate_Start(updateurl, updateoptions) {
387 return;
388 }
389
388 - if (sessionid != null) { sendConsoleText('Downloading update from: ' + updateurl, sessionid); }
390 + if ((sessionid != null) && (updateurl != null)) { sendConsoleText('Downloading update from: ' + updateurl, sessionid); }
391 var options = require('http').parseUri(updateurl != null ? updateurl : require('MeshAgent').ServerUrl);
392 options.protocol = 'https:';
391 - if (updateurl == null) { options.path = ('/meshagents?id=' + require('MeshAgent').ARCHID); }
393 + if (updateurl == null) { options.path = ('/meshagents?id=' + require('MeshAgent').ARCHID); sendConsoleText('Downloading update from: ' + options.path, sessionid); }
394 options.rejectUnauthorized = false;
395 options.checkServerIdentity = function checkServerIdentity(certs) {
396 // If the tunnel certificate matches the control channel certificate, accept the connection
@@ -1002,7 +1004,7 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
1004 var response = null;
1005 switch (cmd) {
1006 case 'help':
1005 - response = "Available commands are: agentupdate, dbkeys, dbget, dbset, dbcompact, eval, netinfo, osinfo, setdebug, versions.";
1007 + response = "Available commands are: agentupdate, agentupdateex, dbkeys, dbget, dbset, dbcompact, eval, netinfo, osinfo, setdebug, versions.";
1008 break;
1009 case '_descriptors':
1010 response = 'Open Descriptors: ' + JSON.stringify(getOpenDescriptors());
@@ -1016,7 +1018,11 @@ function processConsoleCommand(cmd, args, rights, sessionid) {
1018 break;
1019 case 'agentupdateex':
1020 // Perform an direct agent update without requesting any information from the server, this should not typically be used.
1019 - agentUpdate_Start(null, { sessionid: sessionid });
1021 + if (args['_'].length == 1) {
1022 + if (args['_'][0].startsWith('https://')) { agentUpdate_Start(args['_'][0], { sessionid: sessionid }); } else { response = "Usage: agentupdateex https://server/path"; }
1023 + } else {
1024 + agentUpdate_Start(null, { sessionid: sessionid });
1025 + }
1026 break;
1027 case 'eval':
1028 { // Eval JavaScript
meshagent.js
+2
@@ -1170,6 +1170,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1170 obj.agentCoreUpdateTaskId = taskid;
1171 const url = '*' + require('url').parse(obj.agentExeInfo.url).path;
1172 var cmd = { action: 'agentupdate', url: url, hash: obj.agentExeInfo.hashhex };
1173 + parent.parent.debug('agentupdate', "Sending agent update url: " + cmd.url);
1174
1175 // Add the hash
1176 if (obj.agentExeInfo.fileHash != null) { cmd.hash = obj.agentExeInfo.fileHashHex; } else { cmd.hash = obj.agentExeInfo.hashhex; }
@@ -1486,6 +1487,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1487 obj.agentCoreUpdateTaskId = taskid;
1488 const url = '*' + require('url').parse(obj.agentExeInfo.url).path;
1489 var cmd = { action: 'agentupdate', url: url, hash: obj.agentExeInfo.hashhex, sessionid: agentUpdateFunc.sessionid };
1490 + parent.parent.debug('agentupdate', "Sending user requested agent update url: " + cmd.url);
1491
1492 // Add the hash
1493 if (obj.agentExeInfo.fileHash != null) { cmd.hash = obj.agentExeInfo.fileHashHex; } else { cmd.hash = obj.agentExeInfo.hashhex; }
public/scripts/amt-wsman-0.2.0-min.js
+1 -1
@@ -1 +1 @@
1 -var WsmanStackCreateService=function(e,s,r,a,o,t){var u={};function l(e){if(!e)return"";var s,r=" ";for(s in e)e.hasOwnProperty(s)&&0===s.indexOf("@")&&(r+=s.substring(1)+'="'+e[s]+'" ');return r}function p(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,r="<w:SelectorSet>";for(s in e)if(e.hasOwnProperty(s)){if(r+='<w:Selector Name="'+s+'">',e[s].ReferenceParameters){r+="<a:EndpointReference>",r+="<a:Address>"+e[s].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[s].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[s].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)r+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else r+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";r+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else r+=e[s];r+="</w:Selector>"}return r+="</w:SelectorSet>"}return u.NextMessageId=1,u.Address="/wsman",u.comm=CreateWsmanComm(e,s,r,a,o,t),u.PerformAjax=function(e,a,s,r,o){null==o&&(o=""),u.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" '+o+"><Header><a:Action>"+e,function(e,s,r){200==s?(e=u.ParseWsman(e))&&null!=e?a(u,e.Header.ResourceURI,e,200,r):a(u,null,{Header:{HttpError:s}},601,r):a(u,null,{Header:{HttpError:s}},s,r)},s,r)},u.CancelAllQueries=function(e){u.comm.CancelAllQueries(e)},u.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},u.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"/>');i="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+p(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>";u.PerformAjax(i+"</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"')},u.ExecUnSubscribe=function(e,s,r,a,o){o="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+p(o)+"</Header><Body><e:Unsubscribe/>";u.PerformAjax(o+"</Body></Envelope>",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},u.ExecPut=function(e,s,r,a,o,t){s="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r,a=u.GetNameFromUrl(e),o="<r:"+a+' xmlns:r="'+e+'">';for(r in s)if(s.hasOwnProperty(r)&&0!==r.indexOf("__")&&0!==r.indexOf("@")&&void 0!==s[r]&&null!==s[r]&&"function"!=typeof s[r])if("object"==typeof s[r]&&s[r].ReferenceParameters){o+="<r:"+r+"><a:Address>"+s[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)o+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else o+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";o+="</w:SelectorSet></a:ReferenceParameters></r:"+r+">"}else if(Array.isArray(s[r]))for(n=0;n<s[r].length;n++)o+="<r:"+r+">"+s[r][n].toString()+"</r:"+r+">";else o+="<r:"+r+">"+s[r].toString()+"</r:"+r+">";return o+="</r:"+a+">"}(e,s);u.PerformAjax(s+"</Body></Envelope>",r,a,o)},u.ExecCreate=function(e,s,r,a,o,t){var n,l=u.GetNameFromUrl(e),c="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(t)+"</Header><Body><g:"+l+' xmlns:g="'+e+'">';for(n in s)c+="<g:"+n+">"+s[n]+"</g:"+n+">";u.PerformAjax(c+"</g:"+l+"></Body></Envelope>",r,a,o)},u.ExecCreateXml=function(e,s,r,a,o){var t=u.GetNameFromUrl(e);u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.ExecDelete=function(e,s,r,a,o){s="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(s)+"</Header><Body /></Envelope>";u.PerformAjax(s,r,a,o)},u.ExecGet=function(e,s,r,a){u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.ExecMethod=function(e,s,r,a,o,t,n){var l,c="";for(l in r)if(null!=r[l])if(Array.isArray(r[l]))for(var d in r[l])c+="<r:"+l+">"+r[l][d]+"</r:"+l+">";else c+="<r:"+l+">"+r[l]+"</r:"+l+">";u.ExecMethodXml(e,s,c,a,o,t,n)},u.ExecMethodXml=function(e,s,r,a,o,t,n){u.PerformAjax(e+"/"+s+"</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},u.ExecEnum=function(e,s,r,a){u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.ExecPull=function(e,s,r,a,o){u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.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={Header:{}},r=s.getElementsByTagName("Header")[0];if(!(r=r||s.getElementsByTagName("a:Header")[0]))return null;for(var a=0;a<r.childNodes.length;a++){var o=r.childNodes[a];e.Header[o.localName]=o.textContent}var t,n,l=s.getElementsByTagName("Body")[0];return(l=l||s.getElementsByTagName("a:Body")[0])?(0<l.childNodes.length&&(-1!=(n=(t=l.childNodes[0].localName).indexOf("_OUTPUT"))&&n==t.length-7&&(t=t.substring(0,t.length-7)),e.Header.Method=t,e.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o],n=r="false"==(r="true"==(r=0==t.childElementCount?t.textContent:e(t))?!0:r)?!1: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}(l.childNodes[0])),e):null}catch(e){return console.log("Unable to parse XML: "+s),null}},u}
\ No newline at end of file
1 +var WsmanStackCreateService=function(e,s,r,a,o,t){var u={};function l(e){if(!e)return"";var s,r=" ";for(s in e)e.hasOwnProperty(s)&&0===s.indexOf("@")&&(r+=s.substring(1)+'="'+e[s]+'" ');return r}function p(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,r="<w:SelectorSet>";for(s in e)if(e.hasOwnProperty(s)){if(r+='<w:Selector Name="'+s+'">',e[s].ReferenceParameters){r+="<a:EndpointReference>",r+="<a:Address>"+e[s].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[s].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[s].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)r+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else r+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";r+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else r+=e[s];r+="</w:Selector>"}return r+="</w:SelectorSet>"}return u.NextMessageId=1,u.Address="/wsman",u.comm=CreateWsmanComm(e,s,r,a,o,t),u.PerformAjax=function(e,a,s,r,o){null==o&&(o=""),u.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" '+o+"><Header><a:Action>"+e,function(e,s,r){200==s?(e=u.ParseWsman(e))&&null!=e?a(u,e.Header.ResourceURI,e,200,r):a(u,null,{Header:{HttpError:s}},601,r):a(u,null,{Header:{HttpError:s}},s,r)},s,r)},u.CancelAllQueries=function(e){u.comm.CancelAllQueries(e)},u.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},u.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"/>');i="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+p(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>";u.PerformAjax(i+"</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"')},u.ExecUnSubscribe=function(e,s,r,a,o){o="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+p(o)+"</Header><Body><e:Unsubscribe/>";u.PerformAjax(o+"</Body></Envelope>",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},u.ExecPut=function(e,s,r,a,o,t){s="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r,a=u.GetNameFromUrl(e),o="<r:"+a+' xmlns:r="'+e+'">';for(r in s)if(s.hasOwnProperty(r)&&0!==r.indexOf("__")&&0!==r.indexOf("@")&&void 0!==s[r]&&null!==s[r]&&"function"!=typeof s[r])if("object"==typeof s[r]&&s[r].ReferenceParameters){o+="<r:"+r+"><a:Address>"+s[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)o+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else o+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";o+="</w:SelectorSet></a:ReferenceParameters></r:"+r+">"}else if(Array.isArray(s[r]))for(n=0;n<s[r].length;n++)o+="<r:"+r+">"+s[r][n].toString()+"</r:"+r+">";else o+="<r:"+r+">"+s[r].toString()+"</r:"+r+">";return o+="</r:"+a+">"}(e,s);u.PerformAjax(s+"</Body></Envelope>",r,a,o)},u.ExecCreate=function(e,s,r,a,o,t){var n,l=u.GetNameFromUrl(e),d="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(t)+"</Header><Body><g:"+l+' xmlns:g="'+e+'">';for(n in s)d+="<g:"+n+">"+s[n]+"</g:"+n+">";u.PerformAjax(d+"</g:"+l+"></Body></Envelope>",r,a,o)},u.ExecCreateXml=function(e,s,r,a,o){var t=u.GetNameFromUrl(e);u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.ExecDelete=function(e,s,r,a,o){s="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(s)+"</Header><Body /></Envelope>";u.PerformAjax(s,r,a,o)},u.ExecGet=function(e,s,r,a){u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.ExecMethod=function(e,s,r,a,o,t,n){var l,d="";for(l in r)if(null!=r[l])if(Array.isArray(r[l]))for(var c in r[l])d+="<r:"+l+">"+r[l][c]+"</r:"+l+">";else d+="<r:"+l+">"+r[l]+"</r:"+l+">";u.ExecMethodXml(e,s,d,a,o,t,n)},u.ExecMethodXml=function(e,s,r,a,o,t,n){u.PerformAjax(e+"/"+s+"</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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>"+p(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},u.ExecEnum=function(e,s,r,a){u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.ExecPull=function(e,s,r,a,o){u.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+u.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+u.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)},u.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={Header:{}},r=s.getElementsByTagName("Header")[0];if(!(r=r||s.getElementsByTagName("a:Header")[0]))return null;for(var a=0;a<r.childNodes.length;a++){var o=r.childNodes[a];e.Header[o.localName]=o.textContent}var t,n,l=s.getElementsByTagName("Body")[0];return(l=l||s.getElementsByTagName("a:Body")[0])?(0<l.childNodes.length&&(-1!=(n=(t=l.childNodes[0].localName).indexOf("_OUTPUT"))&&n==t.length-7&&(t=t.substring(0,t.length-7)),e.Header.Method=t,e.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o],n=r="false"==(r="true"==(r=0==t.childElementCount?t.textContent:e(t))?!0:r)?!1: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}(l.childNodes[0])),e):null}catch(e){return console.log("Unable to parse XML: "+s),null}},u}
\ No newline at end of file
translate/translate.json
+1669 -1662
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->31->1472",
21 - "default.handlebars->31->1474"
20 + "default.handlebars->31->1473",
21 + "default.handlebars->31->1475"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->31->1385"
207 + "default.handlebars->31->1386"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->31->1549",
228 - "default.handlebars->31->2031"
227 + "default.handlebars->31->1550",
228 + "default.handlebars->31->2032"
229 ]
230 },
231 {
@@ -432,7 +432,7 @@
432 "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434 "xloc": [
435 - "default.handlebars->31->1518",
435 + "default.handlebars->31->1519",
436 "default.handlebars->31->332"
437 ]
438 },
@@ -507,8 +507,8 @@
507 "zh-chs": ",",
508 "zh-cht": ",",
509 "xloc": [
510 - "default-mobile.handlebars->11->576",
511 - "default.handlebars->31->1620"
510 + "default-mobile.handlebars->11->577",
511 + "default.handlebars->31->1621"
512 ]
513 },
514 {
@@ -549,8 +549,8 @@
549 "zh-chs": ",MQTT在线",
550 "zh-cht": ",MQTT在線",
551 "xloc": [
552 - "default-mobile.handlebars->11->493",
553 - "default.handlebars->31->1123"
552 + "default-mobile.handlebars->11->494",
553 + "default.handlebars->31->1124"
554 ]
555 },
556 {
@@ -636,10 +636,10 @@
636 "zh-cht": ",WebRTC",
637 "xloc": [
638 "default-mobile.handlebars->11->334",
639 - "default-mobile.handlebars->11->367",
639 + "default-mobile.handlebars->11->368",
640 "default.handlebars->31->913",
641 - "default.handlebars->31->974",
642 - "default.handlebars->31->986",
641 + "default.handlebars->31->975",
642 + "default.handlebars->31->987",
643 "desktop.handlebars->3->19",
644 "terminal.handlebars->3->9",
645 "xterm.handlebars->9->6"
@@ -826,10 +826,10 @@
826 "zh-cht": "...",
827 "xloc": [
828 "default-mobile.handlebars->11->130",
829 - "default-mobile.handlebars->11->369",
830 - "default.handlebars->31->1672",
831 - "default.handlebars->31->2194",
832 - "default.handlebars->31->992"
829 + "default-mobile.handlebars->11->370",
830 + "default.handlebars->31->1673",
831 + "default.handlebars->31->2195",
832 + "default.handlebars->31->993"
833 ]
834 },
835 {
@@ -886,7 +886,7 @@
886 "zh-chs": "1个活跃时段",
887 "zh-cht": "1個活躍時段",
888 "xloc": [
889 - "default.handlebars->31->2104"
889 + "default.handlebars->31->2105"
890 ]
891 },
892 {
@@ -907,8 +907,8 @@
907 "zh-cht": "1個位元組",
908 "xloc": [
909 "default-mobile.handlebars->11->140",
910 - "default-mobile.handlebars->11->619",
911 - "default.handlebars->31->1696",
910 + "default-mobile.handlebars->11->620",
911 + "default.handlebars->31->1697",
912 "download.handlebars->3->1",
913 "download2.handlebars->5->1"
914 ]
@@ -973,7 +973,7 @@
973 "zh-chs": "1组",
974 "zh-cht": "1群",
975 "xloc": [
976 - "default.handlebars->31->2065"
976 + "default.handlebars->31->2066"
977 ]
978 },
979 {
@@ -1077,7 +1077,7 @@
1077 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1078 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1079 "xloc": [
1080 - "default.handlebars->31->1855"
1080 + "default.handlebars->31->1856"
1081 ]
1082 },
1083 {
@@ -1143,7 +1143,7 @@
1143 "default-mobile.handlebars->11->202",
1144 "default-mobile.handlebars->11->205",
1145 "default-mobile.handlebars->11->208",
1146 - "default.handlebars->31->1859",
1146 + "default.handlebars->31->1860",
1147 "default.handlebars->31->277",
1148 "default.handlebars->31->280",
1149 "default.handlebars->31->283",
@@ -1626,7 +1626,7 @@
1626 "zh-chs": "2FA备份代码已清除",
1627 "zh-cht": "2FA備份代碼已清除",
1628 "xloc": [
1629 - "default.handlebars->31->1807"
1629 + "default.handlebars->31->1808"
1630 ]
1631 },
1632 {
@@ -1646,8 +1646,8 @@
1646 "zh-chs": "启用第二因素身份验证",
1647 "zh-cht": "啟用第二因素身份驗證",
1648 "xloc": [
1649 - "default.handlebars->31->1872",
1650 - "default.handlebars->31->2087"
1649 + "default.handlebars->31->1873",
1650 + "default.handlebars->31->2088"
1651 ]
1652 },
1653 {
@@ -1683,7 +1683,7 @@
1683 "pt": "3",
1684 "ru": "3",
1685 "xloc": [
1686 - "default-mobile.handlebars->11->395"
1686 + "default-mobile.handlebars->11->396"
1687 ]
1688 },
1689 {
@@ -2515,7 +2515,7 @@
2515 "zh-cht": "ACM",
2516 "xloc": [
2517 "default-mobile.handlebars->11->266",
2518 - "default.handlebars->31->1488",
2518 + "default.handlebars->31->1489",
2519 "default.handlebars->31->606"
2520 ]
2521 },
@@ -2684,8 +2684,8 @@
2684 "nl": "Anti-virus",
2685 "fr": "Antivirus",
2686 "xloc": [
2687 - "default-mobile.handlebars->11->405",
2688 - "default-mobile.handlebars->11->407",
2687 + "default-mobile.handlebars->11->406",
2688 + "default-mobile.handlebars->11->408",
2689 "default.handlebars->31->625",
2690 "default.handlebars->31->627"
2691 ]
@@ -2707,8 +2707,8 @@
2707 "zh-chs": "拒绝访问",
2708 "zh-cht": "拒絕存取",
2709 "xloc": [
2710 - "default-mobile.handlebars->11->494",
2711 - "default.handlebars->31->1124"
2710 + "default-mobile.handlebars->11->495",
2711 + "default.handlebars->31->1125"
2712 ]
2713 },
2714 {
@@ -2750,7 +2750,7 @@
2750 "zh-chs": "访问服务器档案",
2751 "zh-cht": "存取伺服器檔案",
2752 "xloc": [
2753 - "default.handlebars->31->2037"
2753 + "default.handlebars->31->2038"
2754 ]
2755 },
2756 {
@@ -2839,9 +2839,9 @@
2839 "default-mobile.handlebars->11->241",
2840 "default-mobile.handlebars->11->243",
2841 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2842 - "default.handlebars->31->1394",
2843 - "default.handlebars->31->1396",
2844 - "default.handlebars->31->2310",
2842 + "default.handlebars->31->1395",
2843 + "default.handlebars->31->1397",
2844 + "default.handlebars->31->2311",
2845 "default.handlebars->31->575",
2846 "default.handlebars->31->577"
2847 ]
@@ -2851,8 +2851,8 @@
2851 "nl": "Account instellingen",
2852 "fr": "Paramètres du compte",
2853 "xloc": [
2854 - "default-mobile.handlebars->11->587",
2855 - "default.handlebars->31->2202"
2854 + "default-mobile.handlebars->11->588",
2855 + "default.handlebars->31->2203"
2856 ]
2857 },
2858 {
@@ -2913,7 +2913,7 @@
2913 "zh-chs": "帐户已更改:{0}",
2914 "zh-cht": "帳戶已更改:{0}",
2915 "xloc": [
2916 - "default.handlebars->31->1780"
2916 + "default.handlebars->31->1781"
2917 ]
2918 },
2919 {
@@ -2933,7 +2933,7 @@
2933 "zh-chs": "创建帐户,电子邮件为{0}",
2934 "zh-cht": "創建帳戶,電子郵件為{0}",
2935 "xloc": [
2936 - "default.handlebars->31->1779"
2936 + "default.handlebars->31->1780"
2937 ]
2938 },
2939 {
@@ -2953,7 +2953,7 @@
2953 "zh-chs": "创建帐户,用户名是{0}",
2954 "zh-cht": "帳戶已創建,用戶名是{0}",
2955 "xloc": [
2956 - "default.handlebars->31->1778"
2956 + "default.handlebars->31->1779"
2957 ]
2958 },
2959 {
@@ -2973,8 +2973,8 @@
2973 "zh-chs": "帐户已被锁定",
2974 "zh-cht": "帳戶已被鎖定",
2975 "xloc": [
2976 - "default.handlebars->31->1874",
2977 - "default.handlebars->31->2034"
2976 + "default.handlebars->31->1875",
2977 + "default.handlebars->31->2035"
2978 ]
2979 },
2980 {
@@ -2994,8 +2994,8 @@
2994 "zh-chs": "达到帐户限制。",
2995 "zh-cht": "達到帳戶限制。",
2996 "xloc": [
2997 - "default-mobile.handlebars->11->599",
2998 - "default.handlebars->31->2214",
2997 + "default-mobile.handlebars->11->600",
2998 + "default.handlebars->31->2215",
2999 "login-mobile.handlebars->5->6",
3000 "login.handlebars->5->6",
3001 "login2.handlebars->7->7"
@@ -3040,7 +3040,7 @@
3040 "zh-chs": "帐号登录",
3041 "zh-cht": "帳號登錄",
3042 "xloc": [
3043 - "default.handlebars->31->1715"
3043 + "default.handlebars->31->1716"
3044 ]
3045 },
3046 {
@@ -3048,7 +3048,7 @@
3048 "nl": "Account aanmelding van {0}, {1}, {2}",
3049 "fr": "Connexion de {0}, {1}, {2}",
3050 "xloc": [
3051 - "default.handlebars->31->1821"
3051 + "default.handlebars->31->1822"
3052 ]
3053 },
3054 {
@@ -3068,7 +3068,7 @@
3068 "zh-chs": "帐户登出",
3069 "zh-cht": "帳戶登出",
3070 "xloc": [
3071 - "default.handlebars->31->1716"
3071 + "default.handlebars->31->1717"
3072 ]
3073 },
3074 {
@@ -3110,7 +3110,7 @@
3110 "zh-chs": "帐户密码已更改:{0}",
3111 "zh-cht": "帳戶密碼已更改:{0}",
3112 "xloc": [
3113 - "default.handlebars->31->1788"
3113 + "default.handlebars->31->1789"
3114 ]
3115 },
3116 {
@@ -3130,7 +3130,7 @@
3130 "zh-chs": "帐户已删除",
3131 "zh-cht": "帳戶已刪除",
3132 "xloc": [
3133 - "default.handlebars->31->1777"
3133 + "default.handlebars->31->1778"
3134 ]
3135 },
3136 {
@@ -3170,8 +3170,8 @@
3170 "zh-chs": "指令",
3171 "zh-cht": "指令",
3172 "xloc": [
3173 - "default-mobile.handlebars->11->500",
3174 - "default.handlebars->31->1130",
3173 + "default-mobile.handlebars->11->501",
3174 + "default.handlebars->31->1131",
3175 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3176 ]
3177 },
@@ -3299,7 +3299,7 @@
3299 "zh-chs": "如果ACM失败,则激活到CCM",
3300 "zh-cht": "如果ACM失敗,則激活到CCM",
3301 "xloc": [
3302 - "default.handlebars->31->1509"
3302 + "default.handlebars->31->1510"
3303 ]
3304 },
3305 {
@@ -3321,8 +3321,8 @@
3321 "xloc": [
3322 "default-mobile.handlebars->11->261",
3323 "default-mobile.handlebars->11->263",
3324 - "default-mobile.handlebars->11->456",
3325 - "default.handlebars->31->1085",
3324 + "default-mobile.handlebars->11->457",
3325 + "default.handlebars->31->1086",
3326 "default.handlebars->31->599",
3327 "default.handlebars->31->601"
3328 ]
@@ -3389,8 +3389,8 @@
3389 "fr": "Ajouter",
3390 "nl": "Toevoegen",
3391 "xloc": [
3392 - "default-mobile.handlebars->11->360",
3393 - "default.handlebars->31->943"
3392 + "default-mobile.handlebars->11->361",
3393 + "default.handlebars->31->944"
3394 ]
3395 },
3396 {
@@ -3410,7 +3410,7 @@
3410 "zh-chs": "添加代理",
3411 "zh-cht": "新增代理",
3412 "xloc": [
3413 - "default.handlebars->31->1484",
3413 + "default.handlebars->31->1485",
3414 "default.handlebars->31->310"
3415 ]
3416 },
@@ -3448,8 +3448,8 @@
3448 "zh-chs": "添加设备",
3449 "zh-cht": "新增裝置",
3450 "xloc": [
3451 - "default.handlebars->31->2011",
3452 - "default.handlebars->31->2141"
3451 + "default.handlebars->31->2012",
3452 + "default.handlebars->31->2142"
3453 ]
3454 },
3455 {
@@ -3489,9 +3489,9 @@
3489 "zh-chs": "添加设备组",
3490 "zh-cht": "新增裝置群",
3491 "xloc": [
3492 - "default.handlebars->31->1584",
3493 - "default.handlebars->31->2005",
3494 - "default.handlebars->31->2129",
3492 + "default.handlebars->31->1585",
3493 + "default.handlebars->31->2006",
3494 + "default.handlebars->31->2130",
3495 "default.handlebars->31->247"
3496 ]
3497 },
@@ -3512,7 +3512,7 @@
3512 "zh-chs": "添加设备组权限",
3513 "zh-cht": "新增裝置群權限",
3514 "xloc": [
3515 - "default.handlebars->31->1581"
3515 + "default.handlebars->31->1582"
3516 ]
3517 },
3518 {
@@ -3532,8 +3532,8 @@
3532 "zh-chs": "添加设备权限",
3533 "zh-cht": "新增裝置權限",
3534 "xloc": [
3535 - "default.handlebars->31->1586",
3536 - "default.handlebars->31->1588"
3535 + "default.handlebars->31->1587",
3536 + "default.handlebars->31->1589"
3537 ]
3538 },
3539 {
@@ -3630,7 +3630,7 @@
3630 "zh-chs": "添加成员身份",
3631 "zh-cht": "新增成員身份",
3632 "xloc": [
3633 - "default.handlebars->31->2161"
3633 + "default.handlebars->31->2162"
3634 ]
3635 },
3636 {
@@ -3670,8 +3670,8 @@
3670 "zh-chs": "添加安全密钥",
3671 "zh-cht": "新增安全密鑰",
3672 "xloc": [
3673 - "default.handlebars->31->1161",
3673 "default.handlebars->31->1162",
3674 + "default.handlebars->31->1163",
3675 "default.handlebars->31->164",
3676 "default.handlebars->31->166",
3677 "default.handlebars->31->169",
@@ -3695,7 +3695,7 @@
3695 "zh-chs": "添加用户",
3696 "zh-cht": "新增用戶",
3697 "xloc": [
3698 - "default-mobile.handlebars->11->516",
3698 + "default-mobile.handlebars->11->517",
3699 "default.handlebars->31->716"
3700 ]
3701 },
@@ -3716,7 +3716,7 @@
3716 "zh-chs": "添加用户设备权限",
3717 "zh-cht": "新增用戶裝置權限",
3718 "xloc": [
3719 - "default.handlebars->31->1591"
3719 + "default.handlebars->31->1592"
3720 ]
3721 },
3722 {
@@ -3736,9 +3736,9 @@
3736 "zh-chs": "添加用户组",
3737 "zh-cht": "新增用戶群",
3738 "xloc": [
3739 - "default.handlebars->31->1480",
3740 - "default.handlebars->31->1583",
3741 - "default.handlebars->31->2135",
3739 + "default.handlebars->31->1481",
3740 + "default.handlebars->31->1584",
3741 + "default.handlebars->31->2136",
3742 "default.handlebars->31->717"
3743 ]
3744 },
@@ -3759,7 +3759,7 @@
3759 "zh-chs": "添加用户组设备权限",
3760 "zh-cht": "新增用戶群裝置權限",
3761 "xloc": [
3762 - "default.handlebars->31->1593"
3762 + "default.handlebars->31->1594"
3763 ]
3764 },
3765 {
@@ -3779,7 +3779,7 @@
3779 "zh-chs": "将用户添加到设备组",
3780 "zh-cht": "將用戶新增到裝置群",
3781 "xloc": [
3782 - "default-mobile.handlebars->11->552"
3782 + "default-mobile.handlebars->11->553"
3783 ]
3784 },
3785 {
@@ -3816,8 +3816,8 @@
3816 "zh-chs": "添加用户",
3817 "zh-cht": "新增用戶",
3818 "xloc": [
3819 - "default.handlebars->31->1479",
3820 - "default.handlebars->31->2000"
3819 + "default.handlebars->31->1480",
3820 + "default.handlebars->31->2001"
3821 ]
3822 },
3823 {
@@ -3837,7 +3837,7 @@
3837 "zh-chs": "将用户添加到设备组",
3838 "zh-cht": "將用戶新增到裝置群",
3839 "xloc": [
3840 - "default.handlebars->31->1580"
3840 + "default.handlebars->31->1581"
3841 ]
3842 },
3843 {
@@ -3857,7 +3857,7 @@
3857 "zh-chs": "将用户添加到用户组",
3858 "zh-cht": "將用戶新增到用戶群",
3859 "xloc": [
3860 - "default.handlebars->31->2033"
3860 + "default.handlebars->31->2034"
3861 ]
3862 },
3863 {
@@ -3974,7 +3974,7 @@
3974 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3975 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3976 "xloc": [
3977 - "default.handlebars->31->1483",
3977 + "default.handlebars->31->1484",
3978 "default.handlebars->31->309"
3979 ]
3980 },
@@ -4035,7 +4035,7 @@
4035 "zh-chs": "添加了身份验证应用程序",
4036 "zh-cht": "添加了身份驗證應用程序",
4037 "xloc": [
4038 - "default.handlebars->31->1804"
4038 + "default.handlebars->31->1805"
4039 ]
4040 },
4041 {
@@ -4055,7 +4055,7 @@
4055 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
4056 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
4057 "xloc": [
4058 - "default.handlebars->31->1815"
4058 + "default.handlebars->31->1816"
4059 ]
4060 },
4061 {
@@ -4075,8 +4075,8 @@
4075 "zh-chs": "已将设备{0}添加到设备组{1}",
4076 "zh-cht": "已將設備{0}添加到設備組{1}",
4077 "xloc": [
4078 - "default.handlebars->31->1771",
4079 - "default.handlebars->31->1798"
4078 + "default.handlebars->31->1772",
4079 + "default.handlebars->31->1799"
4080 ]
4081 },
4082 {
@@ -4096,7 +4096,7 @@
4096 "zh-chs": "添加了安全密钥",
4097 "zh-cht": "添加了安全密鑰",
4098 "xloc": [
4099 - "default.handlebars->31->1809"
4099 + "default.handlebars->31->1810"
4100 ]
4101 },
4102 {
@@ -4116,7 +4116,7 @@
4116 "zh-chs": "已将用户组{0}添加到设备组{1}",
4117 "zh-cht": "已將用戶組{0}添加到設備組{1}",
4118 "xloc": [
4119 - "default.handlebars->31->1782"
4119 + "default.handlebars->31->1783"
4120 ]
4121 },
4122 {
@@ -4136,8 +4136,8 @@
4136 "zh-chs": "已将用户{0}添加到用户组{1}",
4137 "zh-cht": "已將用戶{0}添加到用戶組{1}",
4138 "xloc": [
4139 - "default.handlebars->31->1785",
4140 - "default.handlebars->31->1794"
4139 + "default.handlebars->31->1786",
4140 + "default.handlebars->31->1795"
4141 ]
4142 },
4143 {
@@ -4197,8 +4197,8 @@
4197 "zh-chs": "管理员控制模式(ACM)",
4198 "zh-cht": "管理員控制模式(ACM)",
4199 "xloc": [
4200 - "default-mobile.handlebars->11->458",
4201 - "default.handlebars->31->1087"
4200 + "default-mobile.handlebars->11->459",
4201 + "default.handlebars->31->1088"
4202 ]
4203 },
4204 {
@@ -4218,8 +4218,8 @@
4218 "zh-chs": "管理员凭证",
4219 "zh-cht": "管理員憑證",
4220 "xloc": [
4221 - "default-mobile.handlebars->11->464",
4222 - "default.handlebars->31->1093"
4221 + "default-mobile.handlebars->11->465",
4222 + "default.handlebars->31->1094"
4223 ]
4224 },
4225 {
@@ -4260,7 +4260,7 @@
4260 "zh-chs": "管理领域",
4261 "zh-cht": "管理領域",
4262 "xloc": [
4263 - "default.handlebars->31->2069"
4263 + "default.handlebars->31->2070"
4264 ]
4265 },
4266 {
@@ -4301,7 +4301,7 @@
4301 "zh-chs": "管理领域",
4302 "zh-cht": "管理領域",
4303 "xloc": [
4304 - "default.handlebars->31->1937"
4304 + "default.handlebars->31->1938"
4305 ]
4306 },
4307 {
@@ -4321,7 +4321,7 @@
4321 "zh-chs": "管理员",
4322 "zh-cht": "管理員",
4323 "xloc": [
4324 - "default.handlebars->31->1866"
4324 + "default.handlebars->31->1867"
4325 ]
4326 },
4327 {
@@ -4341,7 +4341,7 @@
4341 "zh-chs": "南非文",
4342 "zh-cht": "南非文",
4343 "xloc": [
4344 - "default.handlebars->31->1164"
4344 + "default.handlebars->31->1165"
4345 ]
4346 },
4347 {
@@ -4366,8 +4366,8 @@
4366 "default-mobile.handlebars->11->258",
4367 "default-mobile.handlebars->11->280",
4368 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4369 - "default.handlebars->31->1647",
4370 - "default.handlebars->31->1660",
4369 + "default.handlebars->31->1648",
4370 + "default.handlebars->31->1661",
4371 "default.handlebars->31->263",
4372 "default.handlebars->31->454",
4373 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -4390,8 +4390,8 @@
4390 "zh-chs": "代理+英特尔AMT",
4391 "zh-cht": "代理+Intel&reg; AMT",
4392 "xloc": [
4393 - "default.handlebars->31->1649",
4394 - "default.handlebars->31->1662"
4393 + "default.handlebars->31->1650",
4394 + "default.handlebars->31->1663"
4395 ]
4396 },
4397 {
@@ -4432,8 +4432,8 @@
4432 "zh-chs": "代理控制台",
4433 "zh-cht": "代理控制台",
4434 "xloc": [
4435 - "default-mobile.handlebars->11->558",
4436 - "default.handlebars->31->1601"
4435 + "default-mobile.handlebars->11->559",
4436 + "default.handlebars->31->1602"
4437 ]
4438 },
4439 {
@@ -4453,7 +4453,7 @@
4453 "zh-chs": "代理错误计数器",
4454 "zh-cht": "代理錯誤計數器",
4455 "xloc": [
4456 - "default.handlebars->31->2239"
4456 + "default.handlebars->31->2240"
4457 ]
4458 },
4459 {
@@ -4556,7 +4556,7 @@
4556 "zh-chs": "代理时段",
4557 "zh-cht": "代理時段",
4558 "xloc": [
4559 - "default.handlebars->31->2255"
4559 + "default.handlebars->31->2256"
4560 ]
4561 },
4562 {
@@ -4597,7 +4597,7 @@
4597 "zh-chs": "代理类型",
4598 "zh-cht": "代理類型",
4599 "xloc": [
4600 - "default.handlebars->31->1658",
4600 + "default.handlebars->31->1659",
4601 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4602 ]
4603 },
@@ -4618,7 +4618,7 @@
4618 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4619 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4620 "xloc": [
4621 - "default.handlebars->31->1768"
4621 + "default.handlebars->31->1769"
4622 ]
4623 },
4624 {
@@ -4680,8 +4680,8 @@
4680 "zh-chs": "代理离线",
4681 "zh-cht": "代理離線",
4682 "xloc": [
4683 - "default-mobile.handlebars->11->492",
4684 - "default.handlebars->31->1122"
4683 + "default-mobile.handlebars->11->493",
4684 + "default.handlebars->31->1123"
4685 ]
4686 },
4687 {
@@ -4701,8 +4701,8 @@
4701 "zh-chs": "代理在线",
4702 "zh-cht": "代理在線",
4703 "xloc": [
4704 - "default-mobile.handlebars->11->491",
4705 - "default.handlebars->31->1121"
4704 + "default-mobile.handlebars->11->492",
4705 + "default.handlebars->31->1122"
4706 ]
4707 },
4708 {
@@ -4743,7 +4743,7 @@
4743 "zh-chs": "代理",
4744 "zh-cht": "代理",
4745 "xloc": [
4746 - "default.handlebars->31->2271"
4746 + "default.handlebars->31->2272"
4747 ]
4748 },
4749 {
@@ -4763,7 +4763,7 @@
4763 "zh-chs": "阿尔巴尼亚文",
4764 "zh-cht": "阿爾巴尼亞文",
4765 "xloc": [
4766 - "default.handlebars->31->1165"
4766 + "default.handlebars->31->1166"
4767 ]
4768 },
4769 {
@@ -4784,8 +4784,8 @@
4784 "zh-cht": "所有",
4785 "xloc": [
4786 "default-mobile.handlebars->11->139",
4787 - "default-mobile.handlebars->11->370",
4788 - "default-mobile.handlebars->11->372",
4787 + "default-mobile.handlebars->11->371",
4788 + "default-mobile.handlebars->11->373",
4789 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4790 ]
4791 },
@@ -4806,7 +4806,7 @@
4806 "zh-chs": "全部可用",
4807 "zh-cht": "全部可用",
4808 "xloc": [
4809 - "default.handlebars->31->1829"
4809 + "default.handlebars->31->1830"
4810 ]
4811 },
4812 {
@@ -4826,7 +4826,7 @@
4826 "zh-chs": "所有显示",
4827 "zh-cht": "所有顯示",
4828 "xloc": [
4829 - "default.handlebars->31->968"
4829 + "default.handlebars->31->969"
4830 ]
4831 },
4832 {
@@ -4846,7 +4846,7 @@
4846 "zh-chs": "所有事件",
4847 "zh-cht": "所有事件",
4848 "xloc": [
4849 - "default.handlebars->31->1827"
4849 + "default.handlebars->31->1828"
4850 ]
4851 },
4852 {
@@ -4888,8 +4888,8 @@
4888 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4889 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4890 "xloc": [
4891 - "default.handlebars->31->1547",
4892 - "default.handlebars->31->2030"
4891 + "default.handlebars->31->1548",
4892 + "default.handlebars->31->2031"
4893 ]
4894 },
4895 {
@@ -4909,7 +4909,7 @@
4909 "zh-chs": "允许用户管理此设备。",
4910 "zh-cht": "允許用戶管理此裝置。",
4911 "xloc": [
4912 - "default.handlebars->31->1548"
4912 + "default.handlebars->31->1549"
4913 ]
4914 },
4915 {
@@ -4946,10 +4946,10 @@
4946 "fr": "Alt",
4947 "nl": "Alt",
4948 "xloc": [
4949 - "default-mobile.handlebars->11->353",
4950 - "default-mobile.handlebars->11->357",
4951 - "default.handlebars->31->936",
4952 - "default.handlebars->31->940"
4949 + "default-mobile.handlebars->11->354",
4950 + "default-mobile.handlebars->11->358",
4951 + "default.handlebars->31->937",
4952 + "default.handlebars->31->941"
4953 ]
4954 },
4955 {
@@ -5011,7 +5011,7 @@
5011 "zh-chs": "备用(F10 = ESC + 0)",
5012 "zh-cht": "備用(F10 = ESC + 0)",
5013 "xloc": [
5014 - "default.handlebars->31->979",
5014 + "default.handlebars->31->980",
5015 "terminal.handlebars->3->19"
5016 ]
5017 },
@@ -5053,9 +5053,9 @@
5053 "zh-chs": "一直通知",
5054 "zh-cht": "一直通知",
5055 "xloc": [
5056 - "default.handlebars->31->1459",
5057 - "default.handlebars->31->1991",
5058 - "default.handlebars->31->2078",
5056 + "default.handlebars->31->1460",
5057 + "default.handlebars->31->1992",
5058 + "default.handlebars->31->2079",
5059 "default.handlebars->31->650"
5060 ]
5061 },
@@ -5076,9 +5076,9 @@
5076 "zh-chs": "一直提示",
5077 "zh-cht": "一直提示",
5078 "xloc": [
5079 - "default.handlebars->31->1460",
5080 - "default.handlebars->31->1992",
5081 - "default.handlebars->31->2079",
5079 + "default.handlebars->31->1461",
5080 + "default.handlebars->31->1993",
5081 + "default.handlebars->31->2080",
5082 "default.handlebars->31->651"
5083 ]
5084 },
@@ -5196,7 +5196,7 @@
5196 "nl": "Android installatie",
5197 "fr": "Installation pour Android",
5198 "xloc": [
5199 - "default-mobile.handlebars->11->532"
5199 + "default-mobile.handlebars->11->533"
5200 ]
5201 },
5202 {
@@ -5225,8 +5225,8 @@
5225 "nl": "Anti-virus niet actief",
5226 "fr": "Antivirus désactivé",
5227 "xloc": [
5228 - "default.handlebars->31->1651",
5229 - "default.handlebars->31->1665"
5228 + "default.handlebars->31->1652",
5229 + "default.handlebars->31->1666"
5230 ]
5231 },
5232 {
@@ -5246,7 +5246,7 @@
5246 "zh-chs": "杀毒软件",
5247 "zh-cht": "防毒軟體",
5248 "xloc": [
5249 - "default-mobile.handlebars->11->421",
5249 + "default-mobile.handlebars->11->422",
5250 "default.handlebars->31->641"
5251 ]
5252 },
@@ -5368,7 +5368,7 @@
5368 "zh-chs": "阿拉伯文(阿尔及利亚)",
5369 "zh-cht": "阿拉伯文(阿爾及利亞)",
5370 "xloc": [
5371 - "default.handlebars->31->1167"
5371 + "default.handlebars->31->1168"
5372 ]
5373 },
5374 {
@@ -5388,7 +5388,7 @@
5388 "zh-chs": "阿拉伯文(巴林)",
5389 "zh-cht": "阿拉伯文(巴林)",
5390 "xloc": [
5391 - "default.handlebars->31->1168"
5391 + "default.handlebars->31->1169"
5392 ]
5393 },
5394 {
@@ -5408,7 +5408,7 @@
5408 "zh-chs": "阿拉伯文(埃及)",
5409 "zh-cht": "阿拉伯文(埃及)",
5410 "xloc": [
5411 - "default.handlebars->31->1169"
5411 + "default.handlebars->31->1170"
5412 ]
5413 },
5414 {
@@ -5428,7 +5428,7 @@
5428 "zh-chs": "阿拉伯文(伊拉克)",
5429 "zh-cht": "阿拉伯文(伊拉克)",
5430 "xloc": [
5431 - "default.handlebars->31->1170"
5431 + "default.handlebars->31->1171"
5432 ]
5433 },
5434 {
@@ -5448,7 +5448,7 @@
5448 "zh-chs": "阿拉伯文(约旦)",
5449 "zh-cht": "阿拉伯文(約旦)",
5450 "xloc": [
5451 - "default.handlebars->31->1171"
5451 + "default.handlebars->31->1172"
5452 ]
5453 },
5454 {
@@ -5468,7 +5468,7 @@
5468 "zh-chs": "阿拉伯文(科威特)",
5469 "zh-cht": "阿拉伯文(科威特)",
5470 "xloc": [
5471 - "default.handlebars->31->1172"
5471 + "default.handlebars->31->1173"
5472 ]
5473 },
5474 {
@@ -5488,7 +5488,7 @@
5488 "zh-chs": "阿拉伯文(黎巴嫩)",
5489 "zh-cht": "阿拉伯文(黎巴嫩)",
5490 "xloc": [
5491 - "default.handlebars->31->1173"
5491 + "default.handlebars->31->1174"
5492 ]
5493 },
5494 {
@@ -5508,7 +5508,7 @@
5508 "zh-chs": "阿拉伯文(利比亚)",
5509 "zh-cht": "阿拉伯文(利比亞)",
5510 "xloc": [
5511 - "default.handlebars->31->1174"
5511 + "default.handlebars->31->1175"
5512 ]
5513 },
5514 {
@@ -5528,7 +5528,7 @@
5528 "zh-chs": "阿拉伯文(摩洛哥)",
5529 "zh-cht": "阿拉伯文(摩洛哥)",
5530 "xloc": [
5531 - "default.handlebars->31->1175"
5531 + "default.handlebars->31->1176"
5532 ]
5533 },
5534 {
@@ -5548,7 +5548,7 @@
5548 "zh-chs": "阿拉伯文(阿曼)",
5549 "zh-cht": "阿拉伯文(阿曼)",
5550 "xloc": [
5551 - "default.handlebars->31->1176"
5551 + "default.handlebars->31->1177"
5552 ]
5553 },
5554 {
@@ -5568,7 +5568,7 @@
5568 "zh-chs": "阿拉伯文(卡塔尔)",
5569 "zh-cht": "阿拉伯文(卡塔爾)",
5570 "xloc": [
5571 - "default.handlebars->31->1177"
5571 + "default.handlebars->31->1178"
5572 ]
5573 },
5574 {
@@ -5588,7 +5588,7 @@
5588 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5589 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5590 "xloc": [
5591 - "default.handlebars->31->1178"
5591 + "default.handlebars->31->1179"
5592 ]
5593 },
5594 {
@@ -5608,7 +5608,7 @@
5608 "zh-chs": "阿拉伯文(标准)",
5609 "zh-cht": "阿拉伯文(標準)",
5610 "xloc": [
5611 - "default.handlebars->31->1166"
5611 + "default.handlebars->31->1167"
5612 ]
5613 },
5614 {
@@ -5628,7 +5628,7 @@
5628 "zh-chs": "阿拉伯文(叙利亚)",
5629 "zh-cht": "阿拉伯文(敘利亞)",
5630 "xloc": [
5631 - "default.handlebars->31->1179"
5631 + "default.handlebars->31->1180"
5632 ]
5633 },
5634 {
@@ -5648,7 +5648,7 @@
5648 "zh-chs": "阿拉伯文(突尼斯)",
5649 "zh-cht": "阿拉伯文(突尼斯)",
5650 "xloc": [
5651 - "default.handlebars->31->1180"
5651 + "default.handlebars->31->1181"
5652 ]
5653 },
5654 {
@@ -5668,7 +5668,7 @@
5668 "zh-chs": "阿拉伯文(阿联酋)",
5669 "zh-cht": "阿拉伯文(阿聯酋)",
5670 "xloc": [
5671 - "default.handlebars->31->1181"
5671 + "default.handlebars->31->1182"
5672 ]
5673 },
5674 {
@@ -5688,7 +5688,7 @@
5688 "zh-chs": "阿拉伯文(也门)",
5689 "zh-cht": "阿拉伯文(也門)",
5690 "xloc": [
5691 - "default.handlebars->31->1182"
5691 + "default.handlebars->31->1183"
5692 ]
5693 },
5694 {
@@ -5708,7 +5708,7 @@
5708 "zh-chs": "阿拉贡文",
5709 "zh-cht": "阿拉貢文",
5710 "xloc": [
5711 - "default.handlebars->31->1183"
5711 + "default.handlebars->31->1184"
5712 ]
5713 },
5714 {
@@ -5728,8 +5728,8 @@
5728 "zh-chs": "架构",
5729 "zh-cht": "結構",
5730 "xloc": [
5731 - "default-mobile.handlebars->11->404",
5732 - "default.handlebars->31->1040"
5731 + "default-mobile.handlebars->11->405",
5732 + "default.handlebars->31->1041"
5733 ]
5734 },
5735 {
@@ -5769,8 +5769,8 @@
5769 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5770 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5771 "xloc": [
5772 - "default-mobile.handlebars->11->523",
5773 - "default.handlebars->31->1523"
5772 + "default-mobile.handlebars->11->524",
5773 + "default.handlebars->31->1524"
5774 ]
5775 },
5776 {
@@ -5850,7 +5850,7 @@
5850 "zh-chs": "您确定要{0}插件吗:{1}",
5851 "zh-cht": "你確定要{0}外掛嗎:{1}",
5852 "xloc": [
5853 - "default.handlebars->31->2319"
5853 + "default.handlebars->31->2320"
5854 ]
5855 },
5856 {
@@ -5870,7 +5870,7 @@
5870 "zh-chs": "亚美尼亚文",
5871 "zh-cht": "亞美尼亞文",
5872 "xloc": [
5873 - "default.handlebars->31->1184"
5873 + "default.handlebars->31->1185"
5874 ]
5875 },
5876 {
@@ -5930,7 +5930,7 @@
5930 "zh-chs": "阿萨姆文",
5931 "zh-cht": "阿薩姆文",
5932 "xloc": [
5933 - "default.handlebars->31->1185"
5933 + "default.handlebars->31->1186"
5934 ]
5935 },
5936 {
@@ -5950,7 +5950,7 @@
5950 "zh-chs": "阿斯图里亚斯文",
5951 "zh-cht": "阿斯圖里亞斯文",
5952 "xloc": [
5953 - "default.handlebars->31->1186"
5953 + "default.handlebars->31->1187"
5954 ]
5955 },
5956 {
@@ -5970,7 +5970,7 @@
5970 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5971 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5972 "xloc": [
5973 - "default.handlebars->31->1737"
5973 + "default.handlebars->31->1738"
5974 ]
5975 },
5976 {
@@ -5990,7 +5990,7 @@
5990 "zh-chs": "认证软件",
5991 "zh-cht": "認證軟體",
5992 "xloc": [
5993 - "default.handlebars->31->2082"
5993 + "default.handlebars->31->2083"
5994 ]
5995 },
5996 {
@@ -6014,8 +6014,8 @@
6014 "default-mobile.handlebars->11->63",
6015 "default-mobile.handlebars->11->93",
6016 "default-mobile.handlebars->11->95",
6017 - "default.handlebars->31->1150",
6018 - "default.handlebars->31->1152",
6017 + "default.handlebars->31->1151",
6018 + "default.handlebars->31->1153",
6019 "default.handlebars->31->140",
6020 "default.handlebars->31->145"
6021 ]
@@ -6097,7 +6097,7 @@
6097 "zh-chs": "自动删除",
6098 "zh-cht": "自動刪除",
6099 "xloc": [
6100 - "default.handlebars->31->1446"
6100 + "default.handlebars->31->1447"
6101 ]
6102 },
6103 {
@@ -6141,7 +6141,7 @@
6141 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6142 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6143 "xloc": [
6144 - "default.handlebars->31->1818"
6144 + "default.handlebars->31->1819"
6145 ]
6146 },
6147 {
@@ -6181,7 +6181,7 @@
6181 "zh-chs": "可用內存",
6182 "zh-cht": "可用內存",
6183 "xloc": [
6184 - "default.handlebars->31->2264"
6184 + "default.handlebars->31->2265"
6185 ]
6186 },
6187 {
@@ -6201,7 +6201,7 @@
6201 "zh-chs": "阿塞拜疆文",
6202 "zh-cht": "阿塞拜疆文",
6203 "xloc": [
6204 - "default.handlebars->31->1187"
6204 + "default.handlebars->31->1188"
6205 ]
6206 },
6207 {
@@ -6209,9 +6209,9 @@
6209 "nl": "Uitgeschakeld",
6210 "fr": "Désactivé",
6211 "xloc": [
6212 - "default-mobile.handlebars->11->408",
6213 - "default-mobile.handlebars->11->412",
6214 - "default-mobile.handlebars->11->416",
6212 + "default-mobile.handlebars->11->409",
6213 + "default-mobile.handlebars->11->413",
6214 + "default-mobile.handlebars->11->417",
6215 "default.handlebars->31->628",
6216 "default.handlebars->31->632",
6217 "default.handlebars->31->636"
@@ -6234,8 +6234,8 @@
6234 "zh-chs": "的BIOS",
6235 "zh-cht": "的BIOS",
6236 "xloc": [
6237 - "default-mobile.handlebars->11->470",
6238 - "default.handlebars->31->1099"
6237 + "default-mobile.handlebars->11->471",
6238 + "default.handlebars->31->1100"
6239 ]
6240 },
6241 {
@@ -6359,8 +6359,8 @@
6359 "zh-chs": "背景与互动",
6360 "zh-cht": "背景與互動",
6361 "xloc": [
6362 - "default.handlebars->31->1630",
6363 - "default.handlebars->31->1637",
6362 + "default.handlebars->31->1631",
6363 + "default.handlebars->31->1638",
6364 "default.handlebars->31->362",
6365 "default.handlebars->31->376"
6366 ]
@@ -6382,8 +6382,8 @@
6382 "zh-chs": "仅背景",
6383 "zh-cht": "僅背景",
6384 "xloc": [
6385 - "default.handlebars->31->1631",
6386 - "default.handlebars->31->1638",
6385 + "default.handlebars->31->1632",
6386 + "default.handlebars->31->1639",
6387 "default.handlebars->31->363",
6388 "default.handlebars->31->377",
6389 "default.handlebars->31->392"
@@ -6427,7 +6427,7 @@
6427 "zh-chs": "备用码",
6428 "zh-cht": "備用碼",
6429 "xloc": [
6430 - "default.handlebars->31->2084"
6430 + "default.handlebars->31->2085"
6431 ]
6432 },
6433 {
@@ -6447,7 +6447,7 @@
6447 "zh-chs": "错误的签名",
6448 "zh-cht": "錯誤的簽名",
6449 "xloc": [
6450 - "default.handlebars->31->2246"
6450 + "default.handlebars->31->2247"
6451 ]
6452 },
6453 {
@@ -6467,7 +6467,7 @@
6467 "zh-chs": "错误的网络证书",
6468 "zh-cht": "錯誤的網絡憑證",
6469 "xloc": [
6470 - "default.handlebars->31->2245"
6470 + "default.handlebars->31->2246"
6471 ]
6472 },
6473 {
@@ -6487,7 +6487,7 @@
6487 "zh-chs": "巴斯克",
6488 "zh-cht": "巴斯克",
6489 "xloc": [
6490 - "default.handlebars->31->1188"
6490 + "default.handlebars->31->1189"
6491 ]
6492 },
6493 {
@@ -6547,7 +6547,7 @@
6547 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
6548 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6549 "xloc": [
6550 - "default.handlebars->31->1817"
6550 + "default.handlebars->31->1818"
6551 ]
6552 },
6553 {
@@ -6567,7 +6567,7 @@
6567 "zh-chs": "白俄罗斯文",
6568 "zh-cht": "白俄羅斯文",
6569 "xloc": [
6570 - "default.handlebars->31->1190"
6570 + "default.handlebars->31->1191"
6571 ]
6572 },
6573 {
@@ -6587,7 +6587,7 @@
6587 "zh-chs": "孟加拉",
6588 "zh-cht": "孟加拉",
6589 "xloc": [
6590 - "default.handlebars->31->1191"
6590 + "default.handlebars->31->1192"
6591 ]
6592 },
6593 {
@@ -6618,8 +6618,8 @@
6618 "nl": "Bootloader",
6619 "fr": "Chargeur de démarrage",
6620 "xloc": [
6621 - "default-mobile.handlebars->11->434",
6622 - "default.handlebars->31->1053"
6621 + "default-mobile.handlebars->11->435",
6622 + "default.handlebars->31->1054"
6623 ]
6624 },
6625 {
@@ -6639,7 +6639,7 @@
6639 "zh-chs": "波斯尼亚文",
6640 "zh-cht": "波斯尼亞文",
6641 "xloc": [
6642 - "default.handlebars->31->1192"
6642 + "default.handlebars->31->1193"
6643 ]
6644 },
6645 {
@@ -6659,7 +6659,7 @@
6659 "zh-chs": "布列塔尼",
6660 "zh-cht": "布列塔尼",
6661 "xloc": [
6662 - "default.handlebars->31->1193"
6662 + "default.handlebars->31->1194"
6663 ]
6664 },
6665 {
@@ -6679,7 +6679,7 @@
6679 "zh-chs": "广播",
6680 "zh-cht": "廣播",
6681 "xloc": [
6682 - "default.handlebars->31->1998",
6682 + "default.handlebars->31->1999",
6683 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6684 ]
6685 },
@@ -6700,7 +6700,7 @@
6700 "zh-chs": "广播消息",
6701 "zh-cht": "廣播消息",
6702 "xloc": [
6703 - "default.handlebars->31->1919"
6703 + "default.handlebars->31->1920"
6704 ]
6705 },
6706 {
@@ -6720,7 +6720,7 @@
6720 "zh-chs": "向所有连接的用户广播消息。",
6721 "zh-cht": "向所有連接的用戶廣播消息。",
6722 "xloc": [
6723 - "default.handlebars->31->1914"
6723 + "default.handlebars->31->1915"
6724 ]
6725 },
6726 {
@@ -6749,7 +6749,7 @@
6749 "zh-chs": "保加利亚文",
6750 "zh-cht": "保加利亞文",
6751 "xloc": [
6752 - "default.handlebars->31->1189"
6752 + "default.handlebars->31->1190"
6753 ]
6754 },
6755 {
@@ -6769,7 +6769,7 @@
6769 "zh-chs": "缅甸文",
6770 "zh-cht": "緬甸文",
6771 "xloc": [
6772 - "default.handlebars->31->1194"
6772 + "default.handlebars->31->1195"
6773 ]
6774 },
6775 {
@@ -6810,7 +6810,7 @@
6810 "zh-chs": "CCM模式",
6811 "zh-cht": "CCM模式",
6812 "xloc": [
6813 - "default.handlebars->31->1506"
6813 + "default.handlebars->31->1507"
6814 ]
6815 },
6816 {
@@ -6852,7 +6852,7 @@
6852 "zh-chs": "CIRA服务器",
6853 "zh-cht": "CIRA伺服器",
6854 "xloc": [
6855 - "default.handlebars->31->2303"
6855 + "default.handlebars->31->2304"
6856 ]
6857 },
6858 {
@@ -6872,7 +6872,7 @@
6872 "zh-chs": "CIRA服务器命令",
6873 "zh-cht": "CIRA伺服器指令",
6874 "xloc": [
6875 - "default.handlebars->31->2304"
6875 + "default.handlebars->31->2305"
6876 ]
6877 },
6878 {
@@ -6892,7 +6892,7 @@
6892 "zh-chs": "CIRA设置",
6893 "zh-cht": "CIRA設置",
6894 "xloc": [
6895 - "default.handlebars->31->1514"
6895 + "default.handlebars->31->1515"
6896 ]
6897 },
6898 {
@@ -6912,8 +6912,8 @@
6912 "zh-chs": "CPU",
6913 "zh-cht": "CPU",
6914 "xloc": [
6915 - "default-mobile.handlebars->11->476",
6916 - "default.handlebars->31->1105"
6915 + "default-mobile.handlebars->11->477",
6916 + "default.handlebars->31->1106"
6917 ]
6918 },
6919 {
@@ -6933,7 +6933,7 @@
6933 "zh-chs": "CPU负载",
6934 "zh-cht": "CPU負載",
6935 "xloc": [
6936 - "default.handlebars->31->2260"
6936 + "default.handlebars->31->2261"
6937 ]
6938 },
6939 {
@@ -6953,7 +6953,7 @@
6953 "zh-chs": "最近15分钟的CPU负载",
6954 "zh-cht": "最近15分鐘的CPU負載",
6955 "xloc": [
6956 - "default.handlebars->31->2263"
6956 + "default.handlebars->31->2264"
6957 ]
6958 },
6959 {
@@ -6973,7 +6973,7 @@
6973 "zh-chs": "最近5分钟的CPU负载",
6974 "zh-cht": "最近5分鐘的CPU負載",
6975 "xloc": [
6976 - "default.handlebars->31->2262"
6976 + "default.handlebars->31->2263"
6977 ]
6978 },
6979 {
@@ -6993,7 +6993,7 @@
6993 "zh-chs": "最近一分钟的CPU负载",
6994 "zh-cht": "最近一分鐘的CPU負載",
6995 "xloc": [
6996 - "default.handlebars->31->2261"
6996 + "default.handlebars->31->2262"
6997 ]
6998 },
6999 {
@@ -7013,8 +7013,8 @@
7013 "zh-chs": "CR+LF",
7014 "zh-cht": "CR+LF",
7015 "xloc": [
7016 - "default.handlebars->31->972",
7017 - "default.handlebars->31->981",
7016 + "default.handlebars->31->973",
7017 + "default.handlebars->31->982",
7018 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7019 "terminal.handlebars->3->21",
7020 "terminal.handlebars->3->7",
@@ -7038,7 +7038,7 @@
7038 "zh-chs": "CSV",
7039 "zh-cht": "CSV",
7040 "xloc": [
7041 - "default.handlebars->31->1837"
7041 + "default.handlebars->31->1838"
7042 ]
7043 },
7044 {
@@ -7058,8 +7058,8 @@
7058 "zh-chs": "CSV格式",
7059 "zh-cht": "CSV格式",
7060 "xloc": [
7061 - "default.handlebars->31->1841",
7062 - "default.handlebars->31->1906",
7061 + "default.handlebars->31->1842",
7062 + "default.handlebars->31->1907",
7063 "default.handlebars->31->516"
7064 ]
7065 },
@@ -7097,7 +7097,7 @@
7097 "zh-chs": "呼叫错误",
7098 "zh-cht": "呼叫錯誤",
7099 "xloc": [
7100 - "default.handlebars->31->2320"
7100 + "default.handlebars->31->2321"
7101 ]
7102 },
7103 {
@@ -7120,8 +7120,8 @@
7120 "agent-translations.json",
7121 "default-mobile.handlebars->11->104",
7122 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
7123 - "default.handlebars->31->1424",
7124 - "default.handlebars->31->2309",
7123 + "default.handlebars->31->1425",
7124 + "default.handlebars->31->2310",
7125 "default.handlebars->container->dialog->idx_dlgButtonBar",
7126 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7127 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7149,12 +7149,12 @@
7149 "zh-chs": "容量",
7150 "zh-cht": "容量",
7151 "xloc": [
7152 - "default-mobile.handlebars->11->481",
7153 - "default-mobile.handlebars->11->486",
7154 - "default-mobile.handlebars->11->488",
7155 - "default.handlebars->31->1110",
7156 - "default.handlebars->31->1115",
7157 - "default.handlebars->31->1117"
7152 + "default-mobile.handlebars->11->482",
7153 + "default-mobile.handlebars->11->487",
7154 + "default-mobile.handlebars->11->489",
7155 + "default.handlebars->31->1111",
7156 + "default.handlebars->31->1116",
7157 + "default.handlebars->31->1118"
7158 ]
7159 },
7160 {
@@ -7174,8 +7174,8 @@
7174 "zh-chs": "容量/速度",
7175 "zh-cht": "容量/速度",
7176 "xloc": [
7177 - "default-mobile.handlebars->11->479",
7178 - "default.handlebars->31->1108"
7177 + "default-mobile.handlebars->11->480",
7178 + "default.handlebars->31->1109"
7179 ]
7180 },
7181 {
@@ -7195,7 +7195,7 @@
7195 "zh-chs": "加泰罗尼亚文",
7196 "zh-cht": "加泰羅尼亞文",
7197 "xloc": [
7198 - "default.handlebars->31->1195"
7198 + "default.handlebars->31->1196"
7199 ]
7200 },
7201 {
@@ -7235,7 +7235,7 @@
7235 "zh-chs": "查莫罗",
7236 "zh-cht": "查莫羅",
7237 "xloc": [
7238 - "default.handlebars->31->1196"
7238 + "default.handlebars->31->1197"
7239 ]
7240 },
7241 {
@@ -7277,7 +7277,7 @@
7277 "zh-chs": "更改{0}的电邮",
7278 "zh-cht": "更改{0}的電郵",
7279 "xloc": [
7280 - "default.handlebars->31->2116"
7280 + "default.handlebars->31->2117"
7281 ]
7282 },
7283 {
@@ -7320,8 +7320,8 @@
7320 "zh-cht": "更改密碼",
7321 "xloc": [
7322 "default-mobile.handlebars->11->112",
7323 - "default.handlebars->31->1391",
7324 - "default.handlebars->31->2101"
7323 + "default.handlebars->31->1392",
7324 + "default.handlebars->31->2102"
7325 ]
7326 },
7327 {
@@ -7341,7 +7341,7 @@
7341 "zh-chs": "更改{0}的密码",
7342 "zh-cht": "更改{0}的密碼",
7343 "xloc": [
7344 - "default.handlebars->31->2125"
7344 + "default.handlebars->31->2126"
7345 ]
7346 },
7347 {
@@ -7361,7 +7361,7 @@
7361 "zh-chs": "更改{0}的真实名称",
7362 "zh-cht": "更改{0}的真實名稱",
7363 "xloc": [
7364 - "default.handlebars->31->2111"
7364 + "default.handlebars->31->2112"
7365 ]
7366 },
7367 {
@@ -7443,7 +7443,7 @@
7443 "zh-chs": "更改该用户的密码",
7444 "zh-cht": "更改該用戶的密碼",
7445 "xloc": [
7446 - "default.handlebars->31->2100"
7446 + "default.handlebars->31->2101"
7447 ]
7448 },
7449 {
@@ -7483,7 +7483,7 @@
7483 "zh-chs": "在此处更改您的帐户电邮地址。",
7484 "zh-cht": "在此處更改你的帳戶電郵地址。",
7485 "xloc": [
7486 - "default.handlebars->31->1378"
7486 + "default.handlebars->31->1379"
7487 ]
7488 },
7489 {
@@ -7503,7 +7503,7 @@
7503 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7504 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7505 "xloc": [
7506 - "default.handlebars->31->1384"
7506 + "default.handlebars->31->1385"
7507 ]
7508 },
7509 {
@@ -7523,7 +7523,7 @@
7523 "zh-chs": "更改帐户凭据",
7524 "zh-cht": "帳戶憑證已更改",
7525 "xloc": [
7526 - "default.handlebars->31->1789"
7526 + "default.handlebars->31->1790"
7527 ]
7528 },
7529 {
@@ -7543,7 +7543,7 @@
7543 "zh-chs": "{1}组中的设备{0}已更改:{2}",
7544 "zh-cht": "{1}組中的設備{0}已更改:{2}",
7545 "xloc": [
7546 - "default.handlebars->31->1773"
7546 + "default.handlebars->31->1774"
7547 ]
7548 },
7549 {
@@ -7563,7 +7563,7 @@
7563 "zh-chs": "语言从{1}更改为{2}",
7564 "zh-cht": "語言從{1}更改為{2}",
7565 "xloc": [
7566 - "default.handlebars->31->1717"
7566 + "default.handlebars->31->1718"
7567 ]
7568 },
7569 {
@@ -7583,8 +7583,8 @@
7583 "zh-chs": "已更改{0}的用户设备权限",
7584 "zh-cht": "已更改{0}的用戶設備權限",
7585 "xloc": [
7586 - "default.handlebars->31->1775",
7587 - "default.handlebars->31->1796"
7586 + "default.handlebars->31->1776",
7587 + "default.handlebars->31->1797"
7588 ]
7589 },
7590 {
@@ -7604,7 +7604,7 @@
7604 "zh-chs": "更改语言将需要刷新页面。",
7605 "zh-cht": "更改語言將需要刷新頁面。",
7606 "xloc": [
7607 - "default.handlebars->31->1363"
7607 + "default.handlebars->31->1364"
7608 ]
7609 },
7610 {
@@ -7624,9 +7624,9 @@
7624 "zh-chs": "聊天",
7625 "zh-cht": "聊天",
7626 "xloc": [
7627 - "default.handlebars->31->1858",
7628 - "default.handlebars->31->2096",
7627 + "default.handlebars->31->1859",
7628 "default.handlebars->31->2097",
7629 + "default.handlebars->31->2098",
7630 "default.handlebars->31->676",
7631 "default.handlebars->31->748",
7632 "default.handlebars->31->770"
@@ -7649,10 +7649,10 @@
7649 "zh-chs": "聊天并通知",
7650 "zh-cht": "聊天並通知",
7651 "xloc": [
7652 - "default-mobile.handlebars->11->548",
7653 - "default-mobile.handlebars->11->568",
7654 - "default.handlebars->31->1576",
7655 - "default.handlebars->31->1612"
7652 + "default-mobile.handlebars->11->549",
7653 + "default-mobile.handlebars->11->569",
7654 + "default.handlebars->31->1577",
7655 + "default.handlebars->31->1613"
7656 ]
7657 },
7658 {
@@ -7660,8 +7660,8 @@
7660 "nl": "Chatverzoek, klik hier om te accepteren.",
7661 "fr": "Demande de discussion, cliquez ici pour accepter.",
7662 "xloc": [
7663 - "default-mobile.handlebars->11->600",
7664 - "default.handlebars->31->2215"
7663 + "default-mobile.handlebars->11->601",
7664 + "default.handlebars->31->2216"
7665 ]
7666 },
7667 {
@@ -7701,7 +7701,7 @@
7701 "zh-chs": "车臣",
7702 "zh-cht": "車臣",
7703 "xloc": [
7704 - "default.handlebars->31->1197"
7704 + "default.handlebars->31->1198"
7705 ]
7706 },
7707 {
@@ -7801,8 +7801,8 @@
7801 "zh-chs": "检查...",
7802 "zh-cht": "檢查...",
7803 "xloc": [
7804 - "default.handlebars->31->1163",
7805 - "default.handlebars->31->2314"
7804 + "default.handlebars->31->1164",
7805 + "default.handlebars->31->2315"
7806 ]
7807 },
7808 {
@@ -7822,7 +7822,7 @@
7822 "zh-chs": "中文",
7823 "zh-cht": "中文",
7824 "xloc": [
7825 - "default.handlebars->31->1198"
7825 + "default.handlebars->31->1199"
7826 ]
7827 },
7828 {
@@ -7842,7 +7842,7 @@
7842 "zh-chs": "中文(香港)",
7843 "zh-cht": "中文(香港)",
7844 "xloc": [
7845 - "default.handlebars->31->1199"
7845 + "default.handlebars->31->1200"
7846 ]
7847 },
7848 {
@@ -7862,7 +7862,7 @@
7862 "zh-chs": "中文(中国)",
7863 "zh-cht": "中文(中國)",
7864 "xloc": [
7865 - "default.handlebars->31->1200"
7865 + "default.handlebars->31->1201"
7866 ]
7867 },
7868 {
@@ -7882,7 +7882,7 @@
7882 "zh-chs": "简体中文",
7883 "zh-cht": "簡體中文",
7884 "xloc": [
7885 - "default.handlebars->31->1360"
7885 + "default.handlebars->31->1361"
7886 ]
7887 },
7888 {
@@ -7902,7 +7902,7 @@
7902 "zh-chs": "中文(新加坡)",
7903 "zh-cht": "中文(新加坡)",
7904 "xloc": [
7905 - "default.handlebars->31->1201"
7905 + "default.handlebars->31->1202"
7906 ]
7907 },
7908 {
@@ -7922,7 +7922,7 @@
7922 "zh-chs": "中文(台湾)",
7923 "zh-cht": "中文(台灣)",
7924 "xloc": [
7925 - "default.handlebars->31->1202"
7925 + "default.handlebars->31->1203"
7926 ]
7927 },
7928 {
@@ -7942,7 +7942,7 @@
7942 "zh-chs": "繁体中文",
7943 "zh-cht": "繁體中文",
7944 "xloc": [
7945 - "default.handlebars->31->1361"
7945 + "default.handlebars->31->1362"
7946 ]
7947 },
7948 {
@@ -7983,7 +7983,7 @@
7983 "zh-chs": "楚瓦什",
7984 "zh-cht": "楚瓦什",
7985 "xloc": [
7986 - "default.handlebars->31->1203"
7986 + "default.handlebars->31->1204"
7987 ]
7988 },
7989 {
@@ -8021,17 +8021,17 @@
8021 "zh-cht": "清除",
8022 "xloc": [
8023 "default-mobile.handlebars->11->154",
8024 - "default-mobile.handlebars->11->388",
8025 - "default-mobile.handlebars->11->390",
8026 - "default-mobile.handlebars->11->392",
8027 - "default-mobile.handlebars->11->394",
8024 + "default-mobile.handlebars->11->389",
8025 + "default-mobile.handlebars->11->391",
8026 + "default-mobile.handlebars->11->393",
8027 + "default-mobile.handlebars->11->395",
8028 "default-mobile.handlebars->11->70",
8029 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8030 - "default.handlebars->31->1017",
8031 - "default.handlebars->31->1019",
8032 - "default.handlebars->31->1021",
8033 - "default.handlebars->31->1023",
8034 - "default.handlebars->31->1711",
8030 + "default.handlebars->31->1018",
8031 + "default.handlebars->31->1020",
8032 + "default.handlebars->31->1022",
8033 + "default.handlebars->31->1024",
8034 + "default.handlebars->31->1712",
8035 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8036 "default.handlebars->container->column_l->p41->3->1",
8037 "messenger.handlebars->xbottom->1->1->0->5"
@@ -8074,8 +8074,8 @@
8074 "zh-chs": "全部清除",
8075 "zh-cht": "全部清除",
8076 "xloc": [
8077 - "default-mobile.handlebars->11->583",
8078 - "default.handlebars->31->2198"
8077 + "default-mobile.handlebars->11->584",
8078 + "default.handlebars->31->2199"
8079 ]
8080 },
8081 {
@@ -8116,8 +8116,8 @@
8116 "zh-chs": "清除核心",
8117 "zh-cht": "清除核心",
8118 "xloc": [
8119 - "default-mobile.handlebars->11->502",
8120 - "default.handlebars->31->1132"
8119 + "default-mobile.handlebars->11->503",
8120 + "default.handlebars->31->1133"
8121 ]
8122 },
8123 {
@@ -8157,8 +8157,8 @@
8157 "zh-chs": "清除此通知",
8158 "zh-cht": "清除此通知",
8159 "xloc": [
8160 - "default-mobile.handlebars->11->582",
8161 - "default.handlebars->31->2197"
8160 + "default-mobile.handlebars->11->583",
8161 + "default.handlebars->31->2198"
8162 ]
8163 },
8164 {
@@ -8218,8 +8218,8 @@
8218 "zh-chs": "单击此处编辑设备组名称",
8219 "zh-cht": "單擊此處編輯裝置群名稱",
8220 "xloc": [
8221 - "default.handlebars->31->1435",
8222 - "default.handlebars->31->1656"
8221 + "default.handlebars->31->1436",
8222 + "default.handlebars->31->1657"
8223 ]
8224 },
8225 {
@@ -8259,7 +8259,7 @@
8259 "zh-chs": "单击此处编辑用户组名称",
8260 "zh-cht": "單擊此處編輯用戶群名稱",
8261 "xloc": [
8262 - "default.handlebars->31->1975"
8262 + "default.handlebars->31->1976"
8263 ]
8264 },
8265 {
@@ -8330,7 +8330,7 @@
8330 "zh-cht": "單擊確定將驗證電郵發送到:",
8331 "xloc": [
8332 "default-mobile.handlebars->11->97",
8333 - "default.handlebars->31->1375"
8333 + "default.handlebars->31->1376"
8334 ]
8335 },
8336 {
@@ -8391,8 +8391,8 @@
8391 "zh-chs": "客户端控制模式(CCM)",
8392 "zh-cht": "客戶端控制模式(CCM)",
8393 "xloc": [
8394 - "default-mobile.handlebars->11->457",
8395 - "default.handlebars->31->1086"
8394 + "default-mobile.handlebars->11->458",
8395 + "default.handlebars->31->1087"
8396 ]
8397 },
8398 {
@@ -8412,7 +8412,7 @@
8412 "zh-chs": "客户编号",
8413 "zh-cht": "客戶編號",
8414 "xloc": [
8415 - "default.handlebars->31->1417"
8415 + "default.handlebars->31->1418"
8416 ]
8417 },
8418 {
@@ -8432,7 +8432,7 @@
8432 "zh-chs": "客户端启动的远程访问",
8433 "zh-cht": "客戶端啟動的遠程訪問",
8434 "xloc": [
8435 - "default.handlebars->31->1513"
8435 + "default.handlebars->31->1514"
8436 ]
8437 },
8438 {
@@ -8452,7 +8452,7 @@
8452 "zh-chs": "客户机密",
8453 "zh-cht": "客戶機密",
8454 "xloc": [
8455 - "default.handlebars->31->1418"
8455 + "default.handlebars->31->1419"
8456 ]
8457 },
8458 {
@@ -8496,9 +8496,9 @@
8496 "default-mobile.handlebars->11->68",
8497 "default.handlebars->31->152",
8498 "default.handlebars->31->160",
8499 - "default.handlebars->31->2308",
8500 - "default.handlebars->31->961",
8501 - "default.handlebars->31->994"
8499 + "default.handlebars->31->2309",
8500 + "default.handlebars->31->962",
8501 + "default.handlebars->31->995"
8502 ]
8503 },
8504 {
@@ -8518,7 +8518,7 @@
8518 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
8519 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
8520 "xloc": [
8521 - "default.handlebars->31->1722"
8521 + "default.handlebars->31->1723"
8522 ]
8523 },
8524 {
@@ -8640,8 +8640,8 @@
8640 "zh-chs": "指令",
8641 "zh-cht": "指令",
8642 "xloc": [
8643 - "default-mobile.handlebars->11->570",
8644 - "default.handlebars->31->1614",
8643 + "default-mobile.handlebars->11->571",
8644 + "default.handlebars->31->1615",
8645 "default.handlebars->31->750",
8646 "default.handlebars->31->772"
8647 ]
@@ -8663,8 +8663,8 @@
8663 "zh-chs": "通用设备组",
8664 "zh-cht": "通用裝置群",
8665 "xloc": [
8666 - "default.handlebars->31->2006",
8667 - "default.handlebars->31->2130"
8666 + "default.handlebars->31->2007",
8667 + "default.handlebars->31->2131"
8668 ]
8669 },
8670 {
@@ -8684,8 +8684,8 @@
8684 "zh-chs": "通用设备",
8685 "zh-cht": "通用裝置",
8686 "xloc": [
8687 - "default.handlebars->31->2012",
8688 - "default.handlebars->31->2142"
8687 + "default.handlebars->31->2013",
8688 + "default.handlebars->31->2143"
8689 ]
8690 },
8691 {
@@ -8693,8 +8693,8 @@
8693 "nl": "Compileer tijd",
8694 "fr": "Temps de compilation",
8695 "xloc": [
8696 - "default-mobile.handlebars->11->430",
8697 - "default.handlebars->31->1049"
8696 + "default-mobile.handlebars->11->431",
8697 + "default.handlebars->31->1050"
8698 ]
8699 },
8700 {
@@ -8714,7 +8714,7 @@
8714 "zh-chs": "压缩档案...",
8715 "zh-cht": "壓縮檔案...",
8716 "xloc": [
8717 - "default.handlebars->31->989"
8717 + "default.handlebars->31->990"
8718 ]
8719 },
8720 {
@@ -8735,12 +8735,12 @@
8735 "zh-cht": "確認",
8736 "xloc": [
8737 "default-mobile.handlebars->11->321",
8738 - "default-mobile.handlebars->11->524",
8739 - "default.handlebars->31->1524",
8740 - "default.handlebars->31->1886",
8741 - "default.handlebars->31->1965",
8742 - "default.handlebars->31->2026",
8743 - "default.handlebars->31->2128",
8738 + "default-mobile.handlebars->11->525",
8739 + "default.handlebars->31->1525",
8740 + "default.handlebars->31->1887",
8741 + "default.handlebars->31->1966",
8742 + "default.handlebars->31->2027",
8743 + "default.handlebars->31->2129",
8744 "default.handlebars->31->484",
8745 "default.handlebars->31->848",
8746 "default.handlebars->31->857"
@@ -8763,8 +8763,8 @@
8763 "zh-chs": "确认将1个副本复制到此位置?",
8764 "zh-cht": "確認將1個副本複製到此位置?",
8765 "xloc": [
8766 - "default-mobile.handlebars->11->383",
8767 - "default.handlebars->31->1012"
8766 + "default-mobile.handlebars->11->384",
8767 + "default.handlebars->31->1013"
8768 ]
8769 },
8770 {
@@ -8784,7 +8784,7 @@
8784 "zh-chs": "确认{0}个条目的复制到此位置?",
8785 "zh-cht": "確認{0}個條目的複製到此位置?",
8786 "xloc": [
8787 - "default.handlebars->31->1011"
8787 + "default.handlebars->31->1012"
8788 ]
8789 },
8790 {
@@ -8804,7 +8804,7 @@
8804 "zh-chs": "确认{0}个条目的副本到此位置?",
8805 "zh-cht": "確認{0}個條目的副本到此位置?",
8806 "xloc": [
8807 - "default-mobile.handlebars->11->382"
8807 + "default-mobile.handlebars->11->383"
8808 ]
8809 },
8810 {
@@ -8824,7 +8824,7 @@
8824 "zh-chs": "确认删除选定的帐户?",
8825 "zh-cht": "確認刪除所選帳戶?",
8826 "xloc": [
8827 - "default.handlebars->31->1885"
8827 + "default.handlebars->31->1886"
8828 ]
8829 },
8830 {
@@ -8864,7 +8864,7 @@
8864 "zh-chs": "确认删除选定的用户组?",
8865 "zh-cht": "確認刪除所選用戶群?",
8866 "xloc": [
8867 - "default.handlebars->31->1964"
8867 + "default.handlebars->31->1965"
8868 ]
8869 },
8870 {
@@ -8884,7 +8884,7 @@
8884 "zh-chs": "确认删除用户{0}?",
8885 "zh-cht": "確認刪除用戶{0}?",
8886 "xloc": [
8887 - "default.handlebars->31->2127"
8887 + "default.handlebars->31->2128"
8888 ]
8889 },
8890 {
@@ -8904,7 +8904,7 @@
8904 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8905 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8906 "xloc": [
8907 - "default.handlebars->31->2029"
8907 + "default.handlebars->31->2030"
8908 ]
8909 },
8910 {
@@ -8924,7 +8924,7 @@
8924 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8925 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8926 "xloc": [
8927 - "default.handlebars->31->2159"
8927 + "default.handlebars->31->2160"
8928 ]
8929 },
8930 {
@@ -8944,8 +8944,8 @@
8944 "zh-chs": "确认将1个条目移动到此位置?",
8945 "zh-cht": "確認將1個條目移動到此位置?",
8946 "xloc": [
8947 - "default-mobile.handlebars->11->385",
8948 - "default.handlebars->31->1014"
8947 + "default-mobile.handlebars->11->386",
8948 + "default.handlebars->31->1015"
8949 ]
8950 },
8951 {
@@ -8965,7 +8965,7 @@
8965 "zh-chs": "确认将{0}个条目移到此位置?",
8966 "zh-cht": "確認將{0}個條目移到該位置?",
8967 "xloc": [
8968 - "default.handlebars->31->1013"
8968 + "default.handlebars->31->1014"
8969 ]
8970 },
8971 {
@@ -8985,7 +8985,7 @@
8985 "zh-chs": "确认将{0}个条目移到该位置?",
8986 "zh-cht": "確認將{0}個條目移到該位置?",
8987 "xloc": [
8988 - "default-mobile.handlebars->11->384"
8988 + "default-mobile.handlebars->11->385"
8989 ]
8990 },
8991 {
@@ -9005,7 +9005,7 @@
9005 "zh-chs": "确认覆盖?",
9006 "zh-cht": "確認覆蓋?",
9007 "xloc": [
9008 - "default.handlebars->31->1705"
9008 + "default.handlebars->31->1706"
9009 ]
9010 },
9011 {
@@ -9025,8 +9025,8 @@
9025 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
9026 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9027 "xloc": [
9028 - "default.handlebars->31->2019",
9029 - "default.handlebars->31->2150"
9028 + "default.handlebars->31->2020",
9029 + "default.handlebars->31->2151"
9030 ]
9031 },
9032 {
@@ -9046,8 +9046,8 @@
9046 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9047 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9048 "xloc": [
9049 - "default.handlebars->31->2021",
9050 - "default.handlebars->31->2163"
9049 + "default.handlebars->31->2022",
9050 + "default.handlebars->31->2164"
9051 ]
9052 },
9053 {
@@ -9067,7 +9067,7 @@
9067 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
9068 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9069 "xloc": [
9070 - "default.handlebars->31->2152"
9070 + "default.handlebars->31->2153"
9071 ]
9072 },
9073 {
@@ -9087,7 +9087,7 @@
9087 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9088 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9089 "xloc": [
9090 - "default.handlebars->31->2155"
9090 + "default.handlebars->31->2156"
9091 ]
9092 },
9093 {
@@ -9107,8 +9107,8 @@
9107 "zh-chs": "确认删除访问权限?",
9108 "zh-cht": "確認刪除訪問權限?",
9109 "xloc": [
9110 - "default.handlebars->31->2153",
9111 - "default.handlebars->31->2156"
9110 + "default.handlebars->31->2154",
9111 + "default.handlebars->31->2157"
9112 ]
9113 },
9114 {
@@ -9129,7 +9129,7 @@
9129 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
9130 "xloc": [
9131 "default-mobile.handlebars->11->96",
9132 - "default.handlebars->31->1153"
9132 + "default.handlebars->31->1154"
9133 ]
9134 },
9135 {
@@ -9166,7 +9166,7 @@
9166 "zh-chs": "确认删除设备共享“{0}”?",
9167 "zh-cht": "確認刪除設備共享“{0}”?",
9168 "xloc": [
9169 - "default.handlebars->31->2148"
9169 + "default.handlebars->31->2149"
9170 ]
9171 },
9172 {
@@ -9220,7 +9220,7 @@
9220 "zh-chs": "确认删除用户“ {0} ”的权限?",
9221 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
9222 "xloc": [
9223 - "default.handlebars->31->1623"
9223 + "default.handlebars->31->1624"
9224 ]
9225 },
9226 {
@@ -9240,7 +9240,7 @@
9240 "zh-chs": "确认删除用户组“ {0} ”的权限?",
9241 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9242 "xloc": [
9243 - "default.handlebars->31->1625"
9243 + "default.handlebars->31->1626"
9244 ]
9245 },
9246 {
@@ -9277,7 +9277,7 @@
9277 "zh-chs": "确认删除用户{0}?",
9278 "zh-cht": "確認刪除用戶{0}?",
9279 "xloc": [
9280 - "default-mobile.handlebars->11->579"
9280 + "default-mobile.handlebars->11->580"
9281 ]
9282 },
9283 {
@@ -9298,7 +9298,7 @@
9298 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9299 "xloc": [
9300 "default-mobile.handlebars->11->149",
9301 - "default.handlebars->31->1706"
9301 + "default.handlebars->31->1707"
9302 ]
9303 },
9304 {
@@ -9319,11 +9319,11 @@
9319 "zh-cht": "連接",
9320 "xloc": [
9321 "agent-translations.json",
9322 - "default-mobile.handlebars->11->365",
9322 + "default-mobile.handlebars->11->366",
9323 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9324 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9325 - "default.handlebars->31->1463",
9326 - "default.handlebars->31->984",
9325 + "default.handlebars->31->1464",
9326 + "default.handlebars->31->985",
9327 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9328 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9329 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9371,7 +9371,7 @@
9371 "zh-chs": "连接到服务器",
9372 "zh-cht": "連接到伺服器",
9373 "xloc": [
9374 - "default.handlebars->31->1517"
9374 + "default.handlebars->31->1518"
9375 ]
9376 },
9377 {
@@ -9493,7 +9493,7 @@
9493 "zh-chs": "已连接的英特尔&reg;AMT",
9494 "zh-cht": "已連接的Intel&reg; AMT",
9495 "xloc": [
9496 - "default.handlebars->31->2251"
9496 + "default.handlebars->31->2252"
9497 ]
9498 },
9499 {
@@ -9513,7 +9513,7 @@
9513 "zh-chs": "已连接的用户",
9514 "zh-cht": "已连接的用户",
9515 "xloc": [
9516 - "default.handlebars->31->2256"
9516 + "default.handlebars->31->2257"
9517 ]
9518 },
9519 {
@@ -9533,8 +9533,8 @@
9533 "zh-chs": "现在已连接",
9534 "zh-cht": "現在已連接",
9535 "xloc": [
9536 - "default-mobile.handlebars->11->425",
9537 - "default.handlebars->31->1044"
9536 + "default-mobile.handlebars->11->426",
9537 + "default.handlebars->31->1045"
9538 ]
9539 },
9540 {
@@ -9575,9 +9575,9 @@
9575 "zh-cht": "正在連線...",
9576 "xloc": [
9577 "default-mobile.handlebars->11->2",
9578 - "default-mobile.handlebars->11->401",
9578 + "default-mobile.handlebars->11->402",
9579 "default-mobile.handlebars->11->48",
9580 - "default.handlebars->31->1035",
9580 + "default.handlebars->31->1036",
9581 "default.handlebars->31->253",
9582 "default.handlebars->31->256",
9583 "default.handlebars->31->300",
@@ -9604,7 +9604,7 @@
9604 "zh-chs": "连接数量",
9605 "zh-cht": "連接數量",
9606 "xloc": [
9607 - "default.handlebars->31->2270"
9607 + "default.handlebars->31->2271"
9608 ]
9609 },
9610 {
@@ -9624,7 +9624,7 @@
9624 "zh-chs": "连接转发器",
9625 "zh-cht": "連接轉發器",
9626 "xloc": [
9627 - "default.handlebars->31->2302"
9627 + "default.handlebars->31->2303"
9628 ]
9629 },
9630 {
@@ -9685,7 +9685,7 @@
9685 "zh-cht": "連接性",
9686 "xloc": [
9687 "default-mobile.handlebars->11->285",
9688 - "default.handlebars->31->1663",
9688 + "default.handlebars->31->1664",
9689 "default.handlebars->31->244",
9690 "default.handlebars->31->664",
9691 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -9775,7 +9775,7 @@
9775 "zh-chs": "Cookie编码器",
9776 "zh-cht": "Cookie編碼器",
9777 "xloc": [
9778 - "default.handlebars->31->2286"
9778 + "default.handlebars->31->2287"
9779 ]
9780 },
9781 {
@@ -9932,8 +9932,8 @@
9932 "zh-chs": "复制连结到剪贴板",
9933 "zh-cht": "複製連結到剪貼板",
9934 "xloc": [
9935 - "default.handlebars->31->1674",
9936 - "default.handlebars->31->1693",
9935 + "default.handlebars->31->1675",
9936 + "default.handlebars->31->1694",
9937 "default.handlebars->31->215",
9938 "default.handlebars->31->379"
9939 ]
@@ -10038,7 +10038,7 @@
10038 "zh-chs": "复制:“{0}”到“{1}”",
10039 "zh-cht": "複製:“{0}”到“{1}”",
10040 "xloc": [
10041 - "default.handlebars->31->1765"
10041 + "default.handlebars->31->1766"
10042 ]
10043 },
10044 {
@@ -10184,7 +10184,7 @@
10184 "zh-chs": "核心服务器",
10185 "zh-cht": "核心伺服器",
10186 "xloc": [
10187 - "default.handlebars->31->2285"
10187 + "default.handlebars->31->2286"
10188 ]
10189 },
10190 {
@@ -10204,7 +10204,7 @@
10204 "zh-chs": "科西嘉文",
10205 "zh-cht": "科西嘉文",
10206 "xloc": [
10207 - "default.handlebars->31->1204"
10207 + "default.handlebars->31->1205"
10208 ]
10209 },
10210 {
@@ -10224,7 +10224,7 @@
10224 "zh-chs": "创建帐号",
10225 "zh-cht": "創建帳號",
10226 "xloc": [
10227 - "default.handlebars->31->1933",
10227 + "default.handlebars->31->1934",
10228 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10229 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10230 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10267,7 +10267,7 @@
10267 "zh-chs": "创建用户组",
10268 "zh-cht": "創建用戶群",
10269 "xloc": [
10270 - "default.handlebars->31->1972"
10270 + "default.handlebars->31->1973"
10271 ]
10272 },
10273 {
@@ -10307,7 +10307,7 @@
10307 "zh-chs": "使用以下选项创建一个新的设备组。",
10308 "zh-cht": "使用以下選項創建一個新的裝置群。",
10309 "xloc": [
10310 - "default.handlebars->31->1398"
10310 + "default.handlebars->31->1399"
10311 ]
10312 },
10313 {
@@ -10367,7 +10367,7 @@
10367 "zh-chs": "创建文件夹:“{0}”",
10368 "zh-cht": "創建文件夾:“{0}”",
10369 "xloc": [
10370 - "default.handlebars->31->1758"
10370 + "default.handlebars->31->1759"
10371 ]
10372 },
10373 {
@@ -10387,7 +10387,7 @@
10387 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10388 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10389 "xloc": [
10390 - "default.handlebars->31->1897"
10390 + "default.handlebars->31->1898"
10391 ]
10392 },
10393 {
@@ -10429,7 +10429,7 @@
10429 "zh-chs": "创建的设备组:{0}",
10430 "zh-cht": "創建的設備組:{0}",
10431 "xloc": [
10432 - "default.handlebars->31->1769"
10432 + "default.handlebars->31->1770"
10433 ]
10434 },
10435 {
@@ -10503,7 +10503,7 @@
10503 "zh-chs": "创建",
10504 "zh-cht": "創建",
10505 "xloc": [
10506 - "default.handlebars->31->2058"
10506 + "default.handlebars->31->2059"
10507 ]
10508 },
10509 {
@@ -10523,7 +10523,7 @@
10523 "zh-chs": "创建时间",
10524 "zh-cht": "創作時間",
10525 "xloc": [
10526 - "default.handlebars->31->1445"
10526 + "default.handlebars->31->1446"
10527 ]
10528 },
10529 {
@@ -10565,8 +10565,8 @@
10565 "zh-chs": "创建者",
10566 "zh-cht": "創作者",
10567 "xloc": [
10568 - "default.handlebars->31->1443",
10569 - "default.handlebars->31->1444"
10568 + "default.handlebars->31->1444",
10569 + "default.handlebars->31->1445"
10570 ]
10571 },
10572 {
@@ -10586,7 +10586,7 @@
10586 "zh-chs": "证书",
10587 "zh-cht": "證書",
10588 "xloc": [
10589 - "default.handlebars->31->1415"
10589 + "default.handlebars->31->1416"
10590 ]
10591 },
10592 {
@@ -10606,7 +10606,7 @@
10606 "zh-chs": "克里语",
10607 "zh-cht": "克里語",
10608 "xloc": [
10609 - "default.handlebars->31->1205"
10609 + "default.handlebars->31->1206"
10610 ]
10611 },
10612 {
@@ -10626,7 +10626,7 @@
10626 "zh-chs": "克罗地亚文",
10627 "zh-cht": "克羅地亞文",
10628 "xloc": [
10629 - "default.handlebars->31->1206"
10629 + "default.handlebars->31->1207"
10630 ]
10631 },
10632 {
@@ -10688,11 +10688,11 @@
10688 "zh-chs": "Ctrl",
10689 "zh-cht": "Ctrl",
10690 "xloc": [
10691 - "default-mobile.handlebars->11->354",
10692 - "default-mobile.handlebars->11->358",
10691 + "default-mobile.handlebars->11->355",
10692 + "default-mobile.handlebars->11->359",
10693 "default.handlebars->31->57",
10694 - "default.handlebars->31->937",
10695 - "default.handlebars->31->941",
10694 + "default.handlebars->31->938",
10695 + "default.handlebars->31->942",
10696 "terminal.handlebars->3->6"
10697 ]
10698 },
@@ -10800,8 +10800,8 @@
10800 "nl": "Huidig wachtwoord is niet correct.",
10801 "fr": "Le mot de passe actuel n'est pas correct.",
10802 "xloc": [
10803 - "default-mobile.handlebars->11->610",
10804 - "default.handlebars->31->2225"
10803 + "default-mobile.handlebars->11->611",
10804 + "default.handlebars->31->2226"
10805 ]
10806 },
10807 {
@@ -10860,7 +10860,7 @@
10860 "zh-chs": "捷克文",
10861 "zh-cht": "捷克文",
10862 "xloc": [
10863 - "default.handlebars->31->1207"
10863 + "default.handlebars->31->1208"
10864 ]
10865 },
10866 {
@@ -10900,7 +10900,7 @@
10900 "zh-chs": "丹麦文",
10901 "zh-cht": "丹麥文",
10902 "xloc": [
10903 - "default.handlebars->31->1208"
10903 + "default.handlebars->31->1209"
10904 ]
10905 },
10906 {
@@ -10950,7 +10950,7 @@
10950 "zh-chs": "日期和时间",
10951 "zh-cht": "日期和時間",
10952 "xloc": [
10953 - "default.handlebars->31->1366"
10953 + "default.handlebars->31->1367"
10954 ]
10955 },
10956 {
@@ -10991,7 +10991,7 @@
10991 "zh-chs": "停用",
10992 "zh-cht": "停用",
10993 "xloc": [
10994 - "default.handlebars->31->1496"
10994 + "default.handlebars->31->1497"
10995 ]
10996 },
10997 {
@@ -11011,7 +11011,7 @@
11011 "zh-chs": "如果设置停用CCM",
11012 "zh-cht": "如果設置停用CCM",
11013 "xloc": [
11014 - "default.handlebars->31->1508"
11014 + "default.handlebars->31->1509"
11015 ]
11016 },
11017 {
@@ -11069,10 +11069,10 @@
11069 "zh-chs": "默认",
11070 "zh-cht": "默認",
11071 "xloc": [
11072 - "default.handlebars->31->1920",
11073 - "default.handlebars->31->1968",
11074 - "default.handlebars->31->1979",
11075 - "default.handlebars->31->2047"
11072 + "default.handlebars->31->1921",
11073 + "default.handlebars->31->1969",
11074 + "default.handlebars->31->1980",
11075 + "default.handlebars->31->2048"
11076 ]
11077 },
11078 {
@@ -11080,8 +11080,8 @@
11080 "fr": "Suppr",
11081 "nl": "Del",
11082 "xloc": [
11083 - "default-mobile.handlebars->11->342",
11084 - "default.handlebars->31->925"
11083 + "default-mobile.handlebars->11->343",
11084 + "default.handlebars->31->926"
11085 ]
11086 },
11087 {
@@ -11102,11 +11102,11 @@
11102 "zh-cht": "刪除",
11103 "xloc": [
11104 "default-mobile.handlebars->11->144",
11105 - "default-mobile.handlebars->11->375",
11105 + "default-mobile.handlebars->11->376",
11106 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11107 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11108 - "default.handlebars->31->1003",
11109 - "default.handlebars->31->1700",
11108 + "default.handlebars->31->1004",
11109 + "default.handlebars->31->1701",
11110 "default.handlebars->31->553",
11111 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11112 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -11136,7 +11136,7 @@
11136 "zh-cht": "刪除帳戶",
11137 "xloc": [
11138 "default-mobile.handlebars->11->106",
11139 - "default.handlebars->31->1383"
11139 + "default.handlebars->31->1384"
11140 ]
11141 },
11142 {
@@ -11156,7 +11156,7 @@
11156 "zh-chs": "删除帐户",
11157 "zh-cht": "刪除帳戶",
11158 "xloc": [
11159 - "default.handlebars->31->1887"
11159 + "default.handlebars->31->1888"
11160 ]
11161 },
11162 {
@@ -11197,10 +11197,10 @@
11197 "zh-chs": "删除群组",
11198 "zh-cht": "刪除群組",
11199 "xloc": [
11200 - "default-mobile.handlebars->11->522",
11201 - "default-mobile.handlebars->11->525",
11202 - "default.handlebars->31->1492",
11203 - "default.handlebars->31->1525"
11200 + "default-mobile.handlebars->11->523",
11201 + "default-mobile.handlebars->11->526",
11202 + "default.handlebars->31->1493",
11203 + "default.handlebars->31->1526"
11204 ]
11205 },
11206 {
@@ -11261,7 +11261,7 @@
11261 "zh-chs": "删除用户",
11262 "zh-cht": "刪除用戶",
11263 "xloc": [
11264 - "default.handlebars->31->2099"
11264 + "default.handlebars->31->2100"
11265 ]
11266 },
11267 {
@@ -11281,8 +11281,8 @@
11281 "zh-chs": "删除用户群组",
11282 "zh-cht": "刪除用戶群組",
11283 "xloc": [
11284 - "default.handlebars->31->2017",
11285 - "default.handlebars->31->2027"
11284 + "default.handlebars->31->2018",
11285 + "default.handlebars->31->2028"
11286 ]
11287 },
11288 {
@@ -11302,7 +11302,7 @@
11302 "zh-chs": "删除用户群组",
11303 "zh-cht": "刪除用戶群組",
11304 "xloc": [
11305 - "default.handlebars->31->1966"
11305 + "default.handlebars->31->1967"
11306 ]
11307 },
11308 {
@@ -11322,7 +11322,7 @@
11322 "zh-chs": "删除用户{0}",
11323 "zh-cht": "刪除用戶{0}",
11324 "xloc": [
11325 - "default.handlebars->31->2126"
11325 + "default.handlebars->31->2127"
11326 ]
11327 },
11328 {
@@ -11343,7 +11343,7 @@
11343 "zh-cht": "刪除帳戶",
11344 "xloc": [
11345 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11346 - "default.handlebars->31->1883",
11346 + "default.handlebars->31->1884",
11347 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11348 ]
11349 },
@@ -11384,7 +11384,7 @@
11384 "zh-chs": "删除群组",
11385 "zh-cht": "刪除群組",
11386 "xloc": [
11387 - "default.handlebars->31->1962"
11387 + "default.handlebars->31->1963"
11388 ]
11389 },
11390 {
@@ -11424,7 +11424,7 @@
11424 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11425 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11426 "xloc": [
11427 - "default.handlebars->31->1760"
11427 + "default.handlebars->31->1761"
11428 ]
11429 },
11430 {
@@ -11445,9 +11445,9 @@
11445 "zh-cht": "刪除所選項目?",
11446 "xloc": [
11447 "default-mobile.handlebars->11->146",
11448 - "default-mobile.handlebars->11->377",
11449 - "default.handlebars->31->1005",
11450 - "default.handlebars->31->1702"
11448 + "default-mobile.handlebars->11->378",
11449 + "default.handlebars->31->1006",
11450 + "default.handlebars->31->1703"
11451 ]
11452 },
11453 {
@@ -11467,7 +11467,7 @@
11467 "zh-chs": "删除用户群组{0}?",
11468 "zh-cht": "刪除用戶群組{0}?",
11469 "xloc": [
11470 - "default.handlebars->31->2025"
11470 + "default.handlebars->31->2026"
11471 ]
11472 },
11473 {
@@ -11488,9 +11488,9 @@
11488 "zh-cht": "刪除{0}個所選項目?",
11489 "xloc": [
11490 "default-mobile.handlebars->11->145",
11491 - "default-mobile.handlebars->11->376",
11492 - "default.handlebars->31->1004",
11493 - "default.handlebars->31->1701"
11491 + "default-mobile.handlebars->11->377",
11492 + "default.handlebars->31->1005",
11493 + "default.handlebars->31->1702"
11494 ]
11495 },
11496 {
@@ -11530,7 +11530,7 @@
11530 "zh-chs": "删除:“{0}”",
11531 "zh-cht": "刪除:“{0}”",
11532 "xloc": [
11533 - "default.handlebars->31->1759"
11533 + "default.handlebars->31->1760"
11534 ]
11535 },
11536 {
@@ -11550,7 +11550,7 @@
11550 "zh-chs": "删除:“{0}”,{1}个元素已删除",
11551 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11552 "xloc": [
11553 - "default.handlebars->31->1761"
11553 + "default.handlebars->31->1762"
11554 ]
11555 },
11556 {
@@ -11666,18 +11666,18 @@
11666 "default-mobile.handlebars->11->255",
11667 "default-mobile.handlebars->11->256",
11668 "default-mobile.handlebars->11->325",
11669 - "default-mobile.handlebars->11->438",
11670 - "default-mobile.handlebars->11->513",
11671 - "default-mobile.handlebars->11->527",
11672 - "default.handlebars->31->1057",
11673 - "default.handlebars->31->1067",
11674 - "default.handlebars->31->1403",
11675 - "default.handlebars->31->1440",
11676 - "default.handlebars->31->1527",
11677 - "default.handlebars->31->1971",
11678 - "default.handlebars->31->1981",
11669 + "default-mobile.handlebars->11->439",
11670 + "default-mobile.handlebars->11->514",
11671 + "default-mobile.handlebars->11->528",
11672 + "default.handlebars->31->1058",
11673 + "default.handlebars->31->1068",
11674 + "default.handlebars->31->1404",
11675 + "default.handlebars->31->1441",
11676 + "default.handlebars->31->1528",
11677 + "default.handlebars->31->1972",
11678 "default.handlebars->31->1982",
11680 - "default.handlebars->31->2023",
11679 + "default.handlebars->31->1983",
11680 + "default.handlebars->31->2024",
11681 "default.handlebars->31->594",
11682 "default.handlebars->31->595",
11683 "default.handlebars->31->896",
@@ -11720,12 +11720,12 @@
11720 "zh-cht": "桌面",
11721 "xloc": [
11722 "default-mobile.handlebars->11->297",
11723 - "default.handlebars->31->1533",
11724 - "default.handlebars->31->2175",
11723 + "default.handlebars->31->1534",
11724 + "default.handlebars->31->2176",
11725 "default.handlebars->31->559",
11726 "default.handlebars->31->729",
11727 "default.handlebars->31->785",
11728 - "default.handlebars->31->967",
11728 + "default.handlebars->31->968",
11729 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11730 "default.handlebars->contextMenu->cxdesktop",
11731 "desktop.handlebars->3->23"
@@ -11768,9 +11768,9 @@
11768 "zh-chs": "桌面通知",
11769 "zh-cht": "桌面通知",
11770 "xloc": [
11771 - "default.handlebars->31->1454",
11772 - "default.handlebars->31->1986",
11773 - "default.handlebars->31->2073",
11771 + "default.handlebars->31->1455",
11772 + "default.handlebars->31->1987",
11773 + "default.handlebars->31->2074",
11774 "default.handlebars->31->645"
11775 ]
11776 },
@@ -11791,9 +11791,9 @@
11791 "zh-chs": "桌面提示",
11792 "zh-cht": "桌面提示",
11793 "xloc": [
11794 - "default.handlebars->31->1453",
11795 - "default.handlebars->31->1985",
11796 - "default.handlebars->31->2072",
11794 + "default.handlebars->31->1454",
11795 + "default.handlebars->31->1986",
11796 + "default.handlebars->31->2073",
11797 "default.handlebars->31->644"
11798 ]
11799 },
@@ -11814,9 +11814,9 @@
11814 "zh-chs": "桌面提示+工具栏",
11815 "zh-cht": "桌面提示+工具欄",
11816 "xloc": [
11817 - "default.handlebars->31->1451",
11818 - "default.handlebars->31->1983",
11819 - "default.handlebars->31->2070",
11817 + "default.handlebars->31->1452",
11818 + "default.handlebars->31->1984",
11819 + "default.handlebars->31->2071",
11820 "default.handlebars->31->642"
11821 ]
11822 },
@@ -11879,9 +11879,9 @@
11879 "zh-chs": "桌面工具栏",
11880 "zh-cht": "桌面工具欄",
11881 "xloc": [
11882 - "default.handlebars->31->1452",
11883 - "default.handlebars->31->1984",
11884 - "default.handlebars->31->2071",
11882 + "default.handlebars->31->1453",
11883 + "default.handlebars->31->1985",
11884 + "default.handlebars->31->2072",
11885 "default.handlebars->31->643"
11886 ]
11887 },
@@ -11910,7 +11910,7 @@
11910 "zh-chs": "桌面时段",
11911 "zh-cht": "桌面時段",
11912 "xloc": [
11913 - "default.handlebars->31->966"
11913 + "default.handlebars->31->967"
11914 ]
11915 },
11916 {
@@ -11993,11 +11993,11 @@
11993 "zh-chs": "设备",
11994 "zh-cht": "裝置",
11995 "xloc": [
11996 - "default-mobile.handlebars->11->433",
11997 - "default.handlebars->31->1052",
11998 - "default.handlebars->31->1556",
11996 + "default-mobile.handlebars->11->434",
11997 + "default.handlebars->31->1053",
11998 + "default.handlebars->31->1557",
11999 "default.handlebars->31->201",
12000 - "default.handlebars->31->2145",
12000 + "default.handlebars->31->2146",
12001 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12002 ]
12003 },
@@ -12061,16 +12061,16 @@
12061 "zh-cht": "裝置群",
12062 "xloc": [
12063 "agent-translations.json",
12064 - "default-mobile.handlebars->11->588",
12065 - "default.handlebars->31->1551",
12066 - "default.handlebars->31->1554",
12064 + "default-mobile.handlebars->11->589",
12065 + "default.handlebars->31->1552",
12066 "default.handlebars->31->1555",
12068 - "default.handlebars->31->1834",
12069 - "default.handlebars->31->2009",
12070 - "default.handlebars->31->2015",
12071 - "default.handlebars->31->2133",
12072 - "default.handlebars->31->2184",
12073 - "default.handlebars->31->2203"
12067 + "default.handlebars->31->1556",
12068 + "default.handlebars->31->1835",
12069 + "default.handlebars->31->2010",
12070 + "default.handlebars->31->2016",
12071 + "default.handlebars->31->2134",
12072 + "default.handlebars->31->2185",
12073 + "default.handlebars->31->2204"
12074 ]
12075 },
12076 {
@@ -12090,8 +12090,8 @@
12090 "zh-chs": "设备组用户",
12091 "zh-cht": "裝置群用戶",
12092 "xloc": [
12093 - "default-mobile.handlebars->11->577",
12094 - "default.handlebars->31->1621"
12093 + "default-mobile.handlebars->11->578",
12094 + "default.handlebars->31->1622"
12095 ]
12096 },
12097 {
@@ -12112,11 +12112,11 @@
12112 "zh-cht": "裝置群",
12113 "xloc": [
12114 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
12115 - "default.handlebars->31->1850",
12116 - "default.handlebars->31->1956",
12117 - "default.handlebars->31->1996",
12118 - "default.handlebars->31->2067",
12119 - "default.handlebars->31->2254",
12115 + "default.handlebars->31->1851",
12116 + "default.handlebars->31->1957",
12117 + "default.handlebars->31->1997",
12118 + "default.handlebars->31->2068",
12119 + "default.handlebars->31->2255",
12120 "default.handlebars->container->column_l->p2->p2info->7"
12121 ]
12122 },
@@ -12198,7 +12198,7 @@
12198 "zh-cht": "裝置名稱",
12199 "xloc": [
12200 "default-mobile.handlebars->11->323",
12201 - "default.handlebars->31->2183",
12201 + "default.handlebars->31->2184",
12202 "default.handlebars->31->314",
12203 "default.handlebars->31->894",
12204 "player.handlebars->3->9"
@@ -12230,7 +12230,7 @@
12230 "nl": "Apparaat koppelingslink",
12231 "fr": "Lien de jumelage de l'appareil",
12232 "xloc": [
12233 - "default-mobile.handlebars->11->531"
12233 + "default-mobile.handlebars->11->532"
12234 ]
12235 },
12236 {
@@ -12307,8 +12307,8 @@
12307 "zh-chs": "设备连接。",
12308 "zh-cht": "裝置連接。",
12309 "xloc": [
12310 - "default.handlebars->31->1371",
12311 - "default.handlebars->31->1642"
12310 + "default.handlebars->31->1372",
12311 + "default.handlebars->31->1643"
12312 ]
12313 },
12314 {
@@ -12328,8 +12328,8 @@
12328 "zh-chs": "设备断开连接。",
12329 "zh-cht": "裝置斷開連接。",
12330 "xloc": [
12331 - "default.handlebars->31->1372",
12332 - "default.handlebars->31->1643"
12331 + "default.handlebars->31->1373",
12332 + "default.handlebars->31->1644"
12333 ]
12334 },
12335 {
@@ -12349,7 +12349,7 @@
12349 "zh-chs": "创建的设备组:{0}",
12350 "zh-cht": "設備組已創建:{0}",
12351 "xloc": [
12352 - "default.handlebars->31->1790"
12352 + "default.handlebars->31->1791"
12353 ]
12354 },
12355 {
@@ -12369,7 +12369,7 @@
12369 "zh-chs": "设备组已删除:{0}",
12370 "zh-cht": "設備組已刪除:{0}",
12371 "xloc": [
12372 - "default.handlebars->31->1791"
12372 + "default.handlebars->31->1792"
12373 ]
12374 },
12375 {
@@ -12389,7 +12389,7 @@
12389 "zh-chs": "设备组成员身份已更改:{0}",
12390 "zh-cht": "設備組成員身份已更改:{0}",
12391 "xloc": [
12392 - "default.handlebars->31->1792"
12392 + "default.handlebars->31->1793"
12393 ]
12394 },
12395 {
@@ -12429,7 +12429,7 @@
12429 "zh-chs": "设备组通知已更改",
12430 "zh-cht": "設備組通知已更改",
12431 "xloc": [
12432 - "default.handlebars->31->1787"
12432 + "default.handlebars->31->1788"
12433 ]
12434 },
12435 {
@@ -12449,7 +12449,7 @@
12449 "zh-chs": "未删除的设备组:{0}",
12450 "zh-cht": "未刪除的設備組:{0}",
12451 "xloc": [
12452 - "default.handlebars->31->1770"
12452 + "default.handlebars->31->1771"
12453 ]
12454 },
12455 {
@@ -12842,7 +12842,7 @@
12842 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12843 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12844 "xloc": [
12845 - "default.handlebars->31->1772"
12845 + "default.handlebars->31->1773"
12846 ]
12847 },
12848 {
@@ -12879,8 +12879,8 @@
12879 "zh-chs": "设备",
12880 "zh-cht": "裝置",
12881 "xloc": [
12882 - "default.handlebars->31->1957",
12883 - "default.handlebars->31->1997"
12882 + "default.handlebars->31->1958",
12883 + "default.handlebars->31->1998"
12884 ]
12885 },
12886 {
@@ -12900,7 +12900,7 @@
12900 "zh-chs": "已禁用",
12901 "zh-cht": "已禁用",
12902 "xloc": [
12903 - "default-mobile.handlebars->11->418",
12903 + "default-mobile.handlebars->11->419",
12904 "default.handlebars->31->638"
12905 ]
12906 },
@@ -12921,7 +12921,7 @@
12921 "zh-chs": "禁用的电子邮件两因素身份验证",
12922 "zh-cht": "禁用的電子郵件兩因素身份驗證",
12923 "xloc": [
12924 - "default.handlebars->31->1803"
12924 + "default.handlebars->31->1804"
12925 ]
12926 },
12927 {
@@ -12942,10 +12942,10 @@
12942 "zh-cht": "斷線",
12943 "xloc": [
12944 "agent-translations.json",
12945 - "default-mobile.handlebars->11->366",
12945 + "default-mobile.handlebars->11->367",
12946 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12947 - "default.handlebars->31->1464",
12948 - "default.handlebars->31->985",
12947 + "default.handlebars->31->1465",
12948 + "default.handlebars->31->986",
12949 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12950 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
12951 "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -13105,7 +13105,7 @@
13105 "zh-chs": "显示设备组名称",
13106 "zh-cht": "顯示裝置群名稱",
13107 "xloc": [
13108 - "default.handlebars->31->1370"
13108 + "default.handlebars->31->1371"
13109 ]
13110 },
13111 {
@@ -13125,7 +13125,7 @@
13125 "zh-chs": "显示名称",
13126 "zh-cht": "顯示名稱",
13127 "xloc": [
13128 - "default.handlebars->31->952"
13128 + "default.handlebars->31->953"
13129 ]
13130 },
13131 {
@@ -13145,7 +13145,7 @@
13145 "zh-chs": "显示公共连结",
13146 "zh-cht": "顯示公共鏈結",
13147 "xloc": [
13148 - "default.handlebars->31->1673"
13148 + "default.handlebars->31->1674"
13149 ]
13150 },
13151 {
@@ -13153,7 +13153,7 @@
13153 "nl": "Scherm {0}",
13154 "fr": "Affichage {0}",
13155 "xloc": [
13156 - "default.handlebars->31->969"
13156 + "default.handlebars->31->970"
13157 ]
13158 },
13159 {
@@ -13173,7 +13173,7 @@
13173 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13174 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13175 "xloc": [
13176 - "default.handlebars->31->1732"
13176 + "default.handlebars->31->1733"
13177 ]
13178 },
13179 {
@@ -13193,7 +13193,7 @@
13193 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13194 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13195 "xloc": [
13196 - "default.handlebars->31->1740"
13196 + "default.handlebars->31->1741"
13197 ]
13198 },
13199 {
@@ -13213,8 +13213,8 @@
13213 "zh-chs": "什么都不做",
13214 "zh-cht": "什麼都不做",
13215 "xloc": [
13216 - "default.handlebars->31->1511",
13217 - "default.handlebars->31->1515"
13216 + "default.handlebars->31->1512",
13217 + "default.handlebars->31->1516"
13218 ]
13219 },
13220 {
@@ -13234,10 +13234,10 @@
13234 "zh-chs": "域",
13235 "zh-cht": "域",
13236 "xloc": [
13237 - "default.handlebars->31->1921",
13238 - "default.handlebars->31->1969",
13239 - "default.handlebars->31->1978",
13240 - "default.handlebars->31->2046",
13237 + "default.handlebars->31->1922",
13238 + "default.handlebars->31->1970",
13239 + "default.handlebars->31->1979",
13240 + "default.handlebars->31->2047",
13241 "mstsc.handlebars->main->1->3->1->2->1->0",
13242 "mstsc.handlebars->main->1->3->1->2->3"
13243 ]
@@ -13259,7 +13259,7 @@
13259 "zh-chs": "请勿更改,如果设置请保留CCM",
13260 "zh-cht": "請勿更改,如果設置請保留CCM",
13261 "xloc": [
13262 - "default.handlebars->31->1507"
13262 + "default.handlebars->31->1508"
13263 ]
13264 },
13265 {
@@ -13296,7 +13296,7 @@
13296 "zh-chs": "不要连接到服务器",
13297 "zh-cht": "不要連接到伺服器",
13298 "xloc": [
13299 - "default.handlebars->31->1516"
13299 + "default.handlebars->31->1517"
13300 ]
13301 },
13302 {
@@ -13360,8 +13360,8 @@
13360 "fr": "Bas",
13361 "nl": "Omlaag",
13362 "xloc": [
13363 - "default-mobile.handlebars->11->350",
13364 - "default.handlebars->31->933"
13363 + "default-mobile.handlebars->11->351",
13364 + "default.handlebars->31->934"
13365 ]
13366 },
13367 {
@@ -13424,8 +13424,8 @@
13424 "zh-chs": "下载档案",
13425 "zh-cht": "下載檔案",
13426 "xloc": [
13427 - "default-mobile.handlebars->11->396",
13428 - "default.handlebars->31->1024"
13427 + "default-mobile.handlebars->11->397",
13428 + "default.handlebars->31->1025"
13429 ]
13430 },
13431 {
@@ -13525,7 +13525,7 @@
13525 "zh-chs": "下载报告",
13526 "zh-cht": "下載報告",
13527 "xloc": [
13528 - "default.handlebars->31->1839",
13528 + "default.handlebars->31->1840",
13529 "default.handlebars->container->column_l->p3->3->1->0->3"
13530 ]
13531 },
@@ -13734,7 +13734,7 @@
13734 "zh-chs": "使用以下一种档案格式下载事件列表。",
13735 "zh-cht": "使用以下一種檔案格式下載事件列表。",
13736 "xloc": [
13737 - "default.handlebars->31->1840"
13737 + "default.handlebars->31->1841"
13738 ]
13739 },
13740 {
@@ -13754,7 +13754,7 @@
13754 "zh-chs": "使用以下一种档案格式下载用户列表。",
13755 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
13756 "xloc": [
13757 - "default.handlebars->31->1905"
13757 + "default.handlebars->31->1906"
13758 ]
13759 },
13760 {
@@ -13835,7 +13835,7 @@
13835 "zh-chs": "下载:“{0}”",
13836 "zh-cht": "下載:“{0}”",
13837 "xloc": [
13838 - "default.handlebars->31->1763"
13838 + "default.handlebars->31->1764"
13839 ]
13840 },
13841 {
@@ -13843,7 +13843,7 @@
13843 "nl": "Download: \\\"{0}\\\", Grootte: {1}",
13844 "fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
13845 "xloc": [
13846 - "default.handlebars->31->1820"
13846 + "default.handlebars->31->1821"
13847 ]
13848 },
13849 {
@@ -13883,7 +13883,7 @@
13883 "zh-chs": "代理重复",
13884 "zh-cht": "代理重複",
13885 "xloc": [
13886 - "default.handlebars->31->2250"
13886 + "default.handlebars->31->2251"
13887 ]
13888 },
13889 {
@@ -13923,7 +13923,7 @@
13923 "zh-chs": "复制用户组",
13924 "zh-cht": "複製用戶群",
13925 "xloc": [
13926 - "default.handlebars->31->1973"
13926 + "default.handlebars->31->1974"
13927 ]
13928 },
13929 {
@@ -13960,8 +13960,8 @@
13960 "zh-chs": "持续时间",
13961 "zh-cht": "持續時間",
13962 "xloc": [
13963 - "default.handlebars->31->2169",
13964 - "default.handlebars->31->2189",
13963 + "default.handlebars->31->2170",
13964 + "default.handlebars->31->2190",
13965 "player.handlebars->3->2"
13966 ]
13967 },
@@ -13999,7 +13999,7 @@
13999 "zh-chs": "荷兰文(比利时)",
14000 "zh-cht": "荷蘭文(比利時)",
14001 "xloc": [
14002 - "default.handlebars->31->1210"
14002 + "default.handlebars->31->1211"
14003 ]
14004 },
14005 {
@@ -14019,7 +14019,7 @@
14019 "zh-chs": "荷兰文(标准)",
14020 "zh-cht": "荷蘭文(標準)",
14021 "xloc": [
14022 - "default.handlebars->31->1209"
14022 + "default.handlebars->31->1210"
14023 ]
14024 },
14025 {
@@ -14328,13 +14328,13 @@
14328 "zh-chs": "编辑设备组",
14329 "zh-cht": "編輯裝置群",
14330 "xloc": [
14331 - "default-mobile.handlebars->11->528",
14332 - "default-mobile.handlebars->11->534",
14333 - "default-mobile.handlebars->11->554",
14334 - "default.handlebars->31->1528",
14335 - "default.handlebars->31->1560",
14336 - "default.handlebars->31->1585",
14337 - "default.handlebars->31->1597"
14331 + "default-mobile.handlebars->11->529",
14332 + "default-mobile.handlebars->11->535",
14333 + "default-mobile.handlebars->11->555",
14334 + "default.handlebars->31->1529",
14335 + "default.handlebars->31->1561",
14336 + "default.handlebars->31->1586",
14337 + "default.handlebars->31->1598"
14338 ]
14339 },
14340 {
@@ -14354,7 +14354,7 @@
14354 "zh-chs": "编辑设备组功能",
14355 "zh-cht": "編輯裝置群功能",
14356 "xloc": [
14357 - "default.handlebars->31->1546"
14357 + "default.handlebars->31->1547"
14358 ]
14359 },
14360 {
@@ -14374,8 +14374,8 @@
14374 "zh-chs": "编辑设备组权限",
14375 "zh-cht": "編輯裝置群權限",
14376 "xloc": [
14377 - "default.handlebars->31->1582",
14378 - "default.handlebars->31->1594"
14377 + "default.handlebars->31->1583",
14378 + "default.handlebars->31->1595"
14379 ]
14380 },
14381 {
@@ -14395,7 +14395,7 @@
14395 "zh-chs": "编辑设备组用户同意",
14396 "zh-cht": "編輯裝置群用戶同意",
14397 "xloc": [
14398 - "default.handlebars->31->1529"
14398 + "default.handlebars->31->1530"
14399 ]
14400 },
14401 {
@@ -14415,8 +14415,8 @@
14415 "zh-chs": "编辑设备笔记",
14416 "zh-cht": "編輯裝置筆記",
14417 "xloc": [
14418 - "default-mobile.handlebars->11->546",
14419 - "default.handlebars->31->1574"
14418 + "default-mobile.handlebars->11->547",
14419 + "default.handlebars->31->1575"
14420 ]
14421 },
14422 {
@@ -14436,8 +14436,8 @@
14436 "zh-chs": "编辑设备权限",
14437 "zh-cht": "編輯裝置權限",
14438 "xloc": [
14439 - "default.handlebars->31->1587",
14440 - "default.handlebars->31->1589"
14439 + "default.handlebars->31->1588",
14440 + "default.handlebars->31->1590"
14441 ]
14442 },
14443 {
@@ -14478,7 +14478,7 @@
14478 "zh-chs": "编辑设备用户同意",
14479 "zh-cht": "編輯裝置用戶同意",
14480 "xloc": [
14481 - "default.handlebars->31->1531"
14481 + "default.handlebars->31->1532"
14482 ]
14483 },
14484 {
@@ -14545,8 +14545,8 @@
14545 "zh-chs": "编辑笔记",
14546 "zh-cht": "編輯筆記",
14547 "xloc": [
14548 - "default-mobile.handlebars->11->561",
14549 - "default.handlebars->31->1604"
14548 + "default-mobile.handlebars->11->562",
14549 + "default.handlebars->31->1605"
14550 ]
14551 },
14552 {
@@ -14566,7 +14566,7 @@
14566 "zh-chs": "编辑用户同意",
14567 "zh-cht": "編輯用戶同意",
14568 "xloc": [
14569 - "default.handlebars->31->1530"
14569 + "default.handlebars->31->1531"
14570 ]
14571 },
14572 {
@@ -14586,7 +14586,7 @@
14586 "zh-chs": "编辑用户设备组权限",
14587 "zh-cht": "編輯用戶裝置群權限",
14588 "xloc": [
14589 - "default.handlebars->31->1595"
14589 + "default.handlebars->31->1596"
14590 ]
14591 },
14592 {
@@ -14606,7 +14606,7 @@
14606 "zh-chs": "编辑用户设备权限",
14607 "zh-cht": "編輯用戶裝置權限",
14608 "xloc": [
14609 - "default.handlebars->31->1590"
14609 + "default.handlebars->31->1591"
14610 ]
14611 },
14612 {
@@ -14626,7 +14626,7 @@
14626 "zh-chs": "编辑用户组",
14627 "zh-cht": "編輯用戶群",
14628 "xloc": [
14629 - "default.handlebars->31->2024"
14629 + "default.handlebars->31->2025"
14630 ]
14631 },
14632 {
@@ -14646,7 +14646,7 @@
14646 "zh-chs": "编辑用户组设备权限",
14647 "zh-cht": "編輯用戶群裝置權限",
14648 "xloc": [
14649 - "default.handlebars->31->1592"
14649 + "default.handlebars->31->1593"
14650 ]
14651 },
14652 {
@@ -14666,7 +14666,7 @@
14666 "zh-chs": "编辑用户组用户同意",
14667 "zh-cht": "編輯用戶組用戶同意",
14668 "xloc": [
14669 - "default.handlebars->31->1532"
14669 + "default.handlebars->31->1533"
14670 ]
14671 },
14672 {
@@ -14748,11 +14748,11 @@
14748 "zh-cht": "電郵",
14749 "xloc": [
14750 "default-mobile.handlebars->11->100",
14751 - "default.handlebars->31->1923",
14752 - "default.handlebars->31->2050",
14753 - "default.handlebars->31->2052",
14754 - "default.handlebars->31->2092",
14755 - "default.handlebars->31->2112",
14751 + "default.handlebars->31->1924",
14752 + "default.handlebars->31->2051",
14753 + "default.handlebars->31->2053",
14754 + "default.handlebars->31->2093",
14755 + "default.handlebars->31->2113",
14756 "default.handlebars->31->346",
14757 "login-mobile.handlebars->5->42",
14758 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14785,7 +14785,7 @@
14785 "zh-cht": "電郵地址變更",
14786 "xloc": [
14787 "default-mobile.handlebars->11->101",
14788 - "default.handlebars->31->1379"
14788 + "default.handlebars->31->1380"
14789 ]
14790 },
14791 {
@@ -14806,7 +14806,7 @@
14806 "zh-cht": "電郵認證",
14807 "xloc": [
14808 "default-mobile.handlebars->11->90",
14809 - "default.handlebars->31->1147"
14809 + "default.handlebars->31->1148"
14810 ]
14811 },
14812 {
@@ -14866,7 +14866,7 @@
14866 "zh-cht": "電郵驗證",
14867 "xloc": [
14868 "default-mobile.handlebars->11->99",
14869 - "default.handlebars->31->1377"
14869 + "default.handlebars->31->1378"
14870 ]
14871 },
14872 {
@@ -14906,7 +14906,7 @@
14906 "zh-chs": "电邮未验证",
14907 "zh-cht": "電郵未驗證",
14908 "xloc": [
14909 - "default.handlebars->31->1869"
14909 + "default.handlebars->31->1870"
14910 ]
14911 },
14912 {
@@ -14926,8 +14926,8 @@
14926 "zh-chs": "电子邮件已验证",
14927 "zh-cht": "電子郵件已驗證",
14928 "xloc": [
14929 - "default.handlebars->31->1870",
14930 - "default.handlebars->31->2044"
14929 + "default.handlebars->31->1871",
14930 + "default.handlebars->31->2045"
14931 ]
14932 },
14933 {
@@ -14947,7 +14947,7 @@
14947 "zh-chs": "电邮已验证。",
14948 "zh-cht": "電郵已驗證。",
14949 "xloc": [
14950 - "default.handlebars->31->1929"
14950 + "default.handlebars->31->1930"
14951 ]
14952 },
14953 {
@@ -14967,7 +14967,7 @@
14967 "zh-chs": "电邮未验证",
14968 "zh-cht": "電郵未驗證",
14969 "xloc": [
14970 - "default.handlebars->31->2045"
14970 + "default.handlebars->31->2046"
14971 ]
14972 },
14973 {
@@ -14987,8 +14987,8 @@
14987 "zh-chs": "电邮已发送。",
14988 "zh-cht": "電郵已發送。",
14989 "xloc": [
14990 - "default-mobile.handlebars->11->603",
14991 - "default.handlebars->31->2218",
14990 + "default-mobile.handlebars->11->604",
14991 + "default.handlebars->31->2219",
14992 "login-mobile.handlebars->5->2",
14993 "login.handlebars->5->2",
14994 "login2.handlebars->7->3"
@@ -15033,7 +15033,7 @@
15033 "zh-chs": "已通过电邮验证,并且需要重置密码。",
15034 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
15035 "xloc": [
15036 - "default.handlebars->31->1930"
15036 + "default.handlebars->31->1931"
15037 ]
15038 },
15039 {
@@ -15057,7 +15057,7 @@
15057 "en": "Email/SMS/Push Traffic",
15058 "nl": "Email/SMS/Push verkeer",
15059 "xloc": [
15060 - "default.handlebars->31->2294"
15060 + "default.handlebars->31->2295"
15061 ]
15062 },
15063 {
@@ -15103,7 +15103,7 @@
15103 "zh-chs": "启用邀请代码",
15104 "zh-cht": "啟用邀請代碼",
15105 "xloc": [
15106 - "default.handlebars->31->1627"
15106 + "default.handlebars->31->1628"
15107 ]
15108 },
15109 {
@@ -15144,7 +15144,7 @@
15144 "zh-cht": "啟用電郵二因子鑑別。",
15145 "xloc": [
15146 "default-mobile.handlebars->11->92",
15147 - "default.handlebars->31->1149"
15147 + "default.handlebars->31->1150"
15148 ]
15149 },
15150 {
@@ -15184,7 +15184,7 @@
15184 "zh-chs": "已启用",
15185 "zh-cht": "已啟用",
15186 "xloc": [
15187 - "default.handlebars->31->2191"
15187 + "default.handlebars->31->2192"
15188 ]
15189 },
15190 {
@@ -15204,7 +15204,7 @@
15204 "zh-chs": "启用电子邮件两因素身份验证",
15205 "zh-cht": "啟用電子郵件兩因素身份驗證",
15206 "xloc": [
15207 - "default.handlebars->31->1802"
15207 + "default.handlebars->31->1803"
15208 ]
15209 },
15210 {
@@ -15232,8 +15232,8 @@
15232 "fr": "Fin",
15233 "nl": "End",
15234 "xloc": [
15235 - "default-mobile.handlebars->11->344",
15236 - "default.handlebars->31->927"
15235 + "default-mobile.handlebars->11->345",
15236 + "default.handlebars->31->928"
15237 ]
15238 },
15239 {
@@ -15253,7 +15253,7 @@
15253 "zh-chs": "时间结束",
15254 "zh-cht": "時間結束",
15255 "xloc": [
15256 - "default.handlebars->31->2188"
15256 + "default.handlebars->31->2189"
15257 ]
15258 },
15259 {
@@ -15273,7 +15273,7 @@
15273 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15274 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15275 "xloc": [
15276 - "default.handlebars->31->1725"
15276 + "default.handlebars->31->1726"
15277 ]
15278 },
15279 {
@@ -15293,7 +15293,7 @@
15293 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15294 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15295 "xloc": [
15296 - "default.handlebars->31->1726"
15296 + "default.handlebars->31->1727"
15297 ]
15298 },
15299 {
@@ -15313,7 +15313,7 @@
15313 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15314 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15315 "xloc": [
15316 - "default.handlebars->31->1723"
15316 + "default.handlebars->31->1724"
15317 ]
15318 },
15319 {
@@ -15333,7 +15333,7 @@
15333 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15334 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15335 "xloc": [
15336 - "default.handlebars->31->1724"
15336 + "default.handlebars->31->1725"
15337 ]
15338 },
15339 {
@@ -15353,7 +15353,7 @@
15353 "zh-chs": "英文",
15354 "zh-cht": "英文",
15355 "xloc": [
15356 - "default.handlebars->31->1211"
15356 + "default.handlebars->31->1212"
15357 ]
15358 },
15359 {
@@ -15373,7 +15373,7 @@
15373 "zh-chs": "英文(澳洲)",
15374 "zh-cht": "英文(澳洲)",
15375 "xloc": [
15376 - "default.handlebars->31->1212"
15376 + "default.handlebars->31->1213"
15377 ]
15378 },
15379 {
@@ -15393,7 +15393,7 @@
15393 "zh-chs": "英文(伯利茲)",
15394 "zh-cht": "英文(伯利茲)",
15395 "xloc": [
15396 - "default.handlebars->31->1213"
15396 + "default.handlebars->31->1214"
15397 ]
15398 },
15399 {
@@ -15413,7 +15413,7 @@
15413 "zh-chs": "英文(加拿大)",
15414 "zh-cht": "英文(加拿大)",
15415 "xloc": [
15416 - "default.handlebars->31->1214"
15416 + "default.handlebars->31->1215"
15417 ]
15418 },
15419 {
@@ -15433,7 +15433,7 @@
15433 "zh-chs": "英文(爱尔兰)",
15434 "zh-cht": "英文(愛爾蘭)",
15435 "xloc": [
15436 - "default.handlebars->31->1215"
15436 + "default.handlebars->31->1216"
15437 ]
15438 },
15439 {
@@ -15453,7 +15453,7 @@
15453 "zh-chs": "英文(牙买加)",
15454 "zh-cht": "英文(牙買加)",
15455 "xloc": [
15456 - "default.handlebars->31->1216"
15456 + "default.handlebars->31->1217"
15457 ]
15458 },
15459 {
@@ -15473,7 +15473,7 @@
15473 "zh-chs": "英文(纽西兰)",
15474 "zh-cht": "英文(紐西蘭)",
15475 "xloc": [
15476 - "default.handlebars->31->1217"
15476 + "default.handlebars->31->1218"
15477 ]
15478 },
15479 {
@@ -15493,7 +15493,7 @@
15493 "zh-chs": "英文(菲律宾)",
15494 "zh-cht": "英文(菲律賓)",
15495 "xloc": [
15496 - "default.handlebars->31->1218"
15496 + "default.handlebars->31->1219"
15497 ]
15498 },
15499 {
@@ -15513,7 +15513,7 @@
15513 "zh-chs": "英语(南非)",
15514 "zh-cht": "英語(南非)",
15515 "xloc": [
15516 - "default.handlebars->31->1219"
15516 + "default.handlebars->31->1220"
15517 ]
15518 },
15519 {
@@ -15533,7 +15533,7 @@
15533 "zh-chs": "英文(特立尼达和多巴哥)",
15534 "zh-cht": "英文(特立尼達和多巴哥)",
15535 "xloc": [
15536 - "default.handlebars->31->1220"
15536 + "default.handlebars->31->1221"
15537 ]
15538 },
15539 {
@@ -15553,7 +15553,7 @@
15553 "zh-chs": "英文(英国)",
15554 "zh-cht": "英文(英國)",
15555 "xloc": [
15556 - "default.handlebars->31->1221"
15556 + "default.handlebars->31->1222"
15557 ]
15558 },
15559 {
@@ -15573,7 +15573,7 @@
15573 "zh-chs": "美国英文",
15574 "zh-cht": "美國英語",
15575 "xloc": [
15576 - "default.handlebars->31->1222"
15576 + "default.handlebars->31->1223"
15577 ]
15578 },
15579 {
@@ -15593,7 +15593,7 @@
15593 "zh-chs": "英文(津巴布韦)",
15594 "zh-cht": "英文(津巴布韋)",
15595 "xloc": [
15596 - "default.handlebars->31->1223"
15596 + "default.handlebars->31->1224"
15597 ]
15598 },
15599 {
@@ -15614,10 +15614,10 @@
15614 "zh-cht": "輸入",
15615 "xloc": [
15616 "default-mobile.handlebars->11->339",
15617 - "default.handlebars->31->1405",
15617 "default.handlebars->31->1406",
15618 + "default.handlebars->31->1407",
15619 "default.handlebars->31->922",
15620 - "default.handlebars->31->997"
15620 + "default.handlebars->31->998"
15621 ]
15622 },
15623 {
@@ -15637,7 +15637,7 @@
15637 "zh-chs": "输入管理领域名称的逗号分隔列表。",
15638 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15639 "xloc": [
15640 - "default.handlebars->31->1934"
15640 + "default.handlebars->31->1935"
15641 ]
15642 },
15643 {
@@ -15697,7 +15697,7 @@
15697 "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
15698 "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
15699 "xloc": [
15700 - "default.handlebars->31->946"
15700 + "default.handlebars->31->947"
15701 ]
15702 },
15703 {
@@ -15759,7 +15759,7 @@
15759 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
15760 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
15761 "xloc": [
15762 - "default.handlebars->31->1144"
15762 + "default.handlebars->31->1145"
15763 ]
15764 },
15765 {
@@ -15787,8 +15787,8 @@
15787 "nl": "Fout, uitnodigingscode \\\"{0}\\\" al in gebruik.",
15788 "fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
15789 "xloc": [
15790 - "default-mobile.handlebars->11->611",
15791 - "default.handlebars->31->2226"
15790 + "default-mobile.handlebars->11->612",
15791 + "default.handlebars->31->2227"
15792 ]
15793 },
15794 {
@@ -15796,8 +15796,8 @@
15796 "nl": "Fout, wachtwoord niet gewijzigd.",
15797 "fr": "Erreur, mot de passe non modifié.",
15798 "xloc": [
15799 - "default-mobile.handlebars->11->608",
15800 - "default.handlebars->31->2223"
15799 + "default-mobile.handlebars->11->609",
15800 + "default.handlebars->31->2224"
15801 ]
15802 },
15803 {
@@ -15805,8 +15805,8 @@
15805 "nl": "Fout, het is niet mogelijk om naar algemeen gebruikt wachtwoord te veranderen.",
15806 "fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
15807 "xloc": [
15808 - "default-mobile.handlebars->11->607",
15809 - "default.handlebars->31->2222"
15808 + "default-mobile.handlebars->11->608",
15809 + "default.handlebars->31->2223"
15810 ]
15811 },
15812 {
@@ -15814,8 +15814,8 @@
15814 "nl": "Fout, kan niet wijzigen naar eerder gebruikt wachtwoord.",
15815 "fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
15816 "xloc": [
15817 - "default-mobile.handlebars->11->606",
15818 - "default.handlebars->31->2221"
15817 + "default-mobile.handlebars->11->607",
15818 + "default.handlebars->31->2222"
15819 ]
15820 },
15821 {
@@ -15864,7 +15864,7 @@
15864 "zh-chs": "世界文",
15865 "zh-cht": "世界語",
15866 "xloc": [
15867 - "default.handlebars->31->1224"
15867 + "default.handlebars->31->1225"
15868 ]
15869 },
15870 {
@@ -15884,7 +15884,7 @@
15884 "zh-chs": "爱沙尼亚文",
15885 "zh-cht": "愛沙尼亞語",
15886 "xloc": [
15887 - "default.handlebars->31->1225"
15887 + "default.handlebars->31->1226"
15888 ]
15889 },
15890 {
@@ -15904,7 +15904,7 @@
15904 "zh-chs": "事件详情",
15905 "zh-cht": "事件詳情",
15906 "xloc": [
15907 - "default.handlebars->31->1037"
15907 + "default.handlebars->31->1038"
15908 ]
15909 },
15910 {
@@ -15924,7 +15924,7 @@
15924 "zh-chs": "事件列表输出",
15925 "zh-cht": "事件列表輸出",
15926 "xloc": [
15927 - "default.handlebars->31->1845"
15927 + "default.handlebars->31->1846"
15928 ]
15929 },
15930 {
@@ -16112,7 +16112,7 @@
16112 "zh-chs": "扩充式ASCII",
16113 "zh-cht": "擴充式ASCII",
16114 "xloc": [
16115 - "default.handlebars->31->976",
16115 + "default.handlebars->31->977",
16116 "terminal.handlebars->3->16"
16117 ]
16118 },
@@ -16154,7 +16154,7 @@
16154 "zh-chs": "外部",
16155 "zh-cht": "外部",
16156 "xloc": [
16157 - "default.handlebars->31->2277"
16157 + "default.handlebars->31->2278"
16158 ]
16159 },
16160 {
@@ -16194,7 +16194,7 @@
16194 "zh-chs": "FYRO马其顿语",
16195 "zh-cht": "FYRO馬其頓語",
16196 "xloc": [
16197 - "default.handlebars->31->1275"
16197 + "default.handlebars->31->1276"
16198 ]
16199 },
16200 {
@@ -16214,7 +16214,7 @@
16214 "zh-chs": "法罗语",
16215 "zh-cht": "法羅語",
16216 "xloc": [
16217 - "default.handlebars->31->1226"
16217 + "default.handlebars->31->1227"
16218 ]
16219 },
16220 {
@@ -16242,8 +16242,8 @@
16242 "nl": "E-mailadres kan niet worden gewijzigd, een ander account gebruikt al: {0}.",
16243 "fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16244 "xloc": [
16245 - "default-mobile.handlebars->11->602",
16246 - "default.handlebars->31->2217"
16245 + "default-mobile.handlebars->11->603",
16246 + "default.handlebars->31->2218"
16247 ]
16248 },
16249 {
@@ -16263,7 +16263,7 @@
16263 "zh-chs": "本地用户拒绝后无法启动远程桌面",
16264 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
16265 "xloc": [
16266 - "default.handlebars->31->1748"
16266 + "default.handlebars->31->1749"
16267 ]
16268 },
16269 {
@@ -16283,7 +16283,7 @@
16283 "zh-chs": "本地用户拒绝后无法启动远程文件",
16284 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
16285 "xloc": [
16286 - "default.handlebars->31->1755"
16286 + "default.handlebars->31->1756"
16287 ]
16288 },
16289 {
@@ -16326,7 +16326,7 @@
16326 "zh-chs": "波斯文(波斯文)",
16327 "zh-cht": "波斯語(波斯語)",
16328 "xloc": [
16329 - "default.handlebars->31->1227"
16329 + "default.handlebars->31->1228"
16330 ]
16331 },
16332 {
@@ -16368,7 +16368,7 @@
16368 "zh-chs": "功能",
16369 "zh-cht": "功能",
16370 "xloc": [
16371 - "default.handlebars->31->1450"
16371 + "default.handlebars->31->1451"
16372 ]
16373 },
16374 {
@@ -16388,7 +16388,7 @@
16388 "zh-chs": "斐济",
16389 "zh-cht": "斐濟",
16390 "xloc": [
16391 - "default.handlebars->31->1228"
16391 + "default.handlebars->31->1229"
16392 ]
16393 },
16394 {
@@ -16428,8 +16428,8 @@
16428 "zh-chs": "档案编辑器",
16429 "zh-cht": "檔案編輯器",
16430 "xloc": [
16431 - "default-mobile.handlebars->11->380",
16432 - "default.handlebars->31->1008",
16431 + "default-mobile.handlebars->11->381",
16432 + "default.handlebars->31->1009",
16433 "default.handlebars->31->551"
16434 ]
16435 },
@@ -16466,8 +16466,8 @@
16466 "zh-chs": "档案操作",
16467 "zh-cht": "檔案操作",
16468 "xloc": [
16469 - "default.handlebars->31->988",
16470 - "default.handlebars->31->990"
16469 + "default.handlebars->31->989",
16470 + "default.handlebars->31->991"
16471 ]
16472 },
16473 {
@@ -16507,7 +16507,7 @@
16507 "zh-chs": "文件系统驱动",
16508 "zh-cht": "FileSystemDriver",
16509 "xloc": [
16510 - "default.handlebars->31->955"
16510 + "default.handlebars->31->956"
16511 ]
16512 },
16513 {
@@ -16529,8 +16529,8 @@
16529 "xloc": [
16530 "default-mobile.handlebars->11->201",
16531 "default-mobile.handlebars->11->298",
16532 - "default.handlebars->31->1540",
16533 - "default.handlebars->31->2176",
16532 + "default.handlebars->31->1541",
16533 + "default.handlebars->31->2177",
16534 "default.handlebars->31->285",
16535 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
16536 "default.handlebars->contextMenu->cxfiles"
@@ -16573,9 +16573,9 @@
16573 "zh-chs": "档案通知",
16574 "zh-cht": "檔案通知",
16575 "xloc": [
16576 - "default.handlebars->31->1458",
16577 - "default.handlebars->31->1990",
16578 - "default.handlebars->31->2077",
16576 + "default.handlebars->31->1459",
16577 + "default.handlebars->31->1991",
16578 + "default.handlebars->31->2078",
16579 "default.handlebars->31->649"
16580 ]
16581 },
@@ -16596,9 +16596,9 @@
16596 "zh-chs": "档案提示",
16597 "zh-cht": "檔案提示",
16598 "xloc": [
16599 - "default.handlebars->31->1457",
16600 - "default.handlebars->31->1989",
16601 - "default.handlebars->31->2076",
16599 + "default.handlebars->31->1458",
16600 + "default.handlebars->31->1990",
16601 + "default.handlebars->31->2077",
16602 "default.handlebars->31->648"
16603 ]
16604 },
@@ -16620,7 +16620,7 @@
16620 "zh-cht": "過濾",
16621 "xloc": [
16622 "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
16623 - "default.handlebars->31->993",
16623 + "default.handlebars->31->994",
16624 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16625 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
16626 "default.handlebars->container->column_l->p4->3->1->0->3->3"
@@ -16663,7 +16663,7 @@
16663 "zh-chs": "查找文件",
16664 "zh-cht": "查找文件",
16665 "xloc": [
16666 - "default.handlebars->31->996"
16666 + "default.handlebars->31->997"
16667 ]
16668 },
16669 {
@@ -16683,7 +16683,7 @@
16683 "zh-chs": "录制会话已完成,{0}秒",
16684 "zh-cht": "錄製會話已完成,{0}秒",
16685 "xloc": [
16686 - "default.handlebars->31->1721"
16686 + "default.handlebars->31->1722"
16687 ]
16688 },
16689 {
@@ -16703,7 +16703,7 @@
16703 "zh-chs": "芬兰",
16704 "zh-cht": "芬蘭",
16705 "xloc": [
16706 - "default.handlebars->31->1229"
16706 + "default.handlebars->31->1230"
16707 ]
16708 },
16709 {
@@ -16711,8 +16711,8 @@
16711 "nl": "Firewall",
16712 "fr": "Parefeu",
16713 "xloc": [
16714 - "default-mobile.handlebars->11->413",
16715 - "default-mobile.handlebars->11->415",
16714 + "default-mobile.handlebars->11->414",
16715 + "default-mobile.handlebars->11->416",
16716 "default.handlebars->31->633",
16717 "default.handlebars->31->635"
16718 ]
@@ -16722,8 +16722,8 @@
16722 "nl": "Firewall niet actief",
16723 "fr": "Pare-feu désactivé",
16724 "xloc": [
16725 - "default.handlebars->31->1653",
16726 - "default.handlebars->31->1667"
16725 + "default.handlebars->31->1654",
16726 + "default.handlebars->31->1668"
16727 ]
16728 },
16729 {
@@ -16906,8 +16906,8 @@
16906 "zh-chs": "下次登录时强制重置密码。",
16907 "zh-cht": "下次登入時強制重置密碼。",
16908 "xloc": [
16909 - "default.handlebars->31->1928",
16910 - "default.handlebars->31->2123"
16909 + "default.handlebars->31->1929",
16910 + "default.handlebars->31->2124"
16911 ]
16912 },
16913 {
@@ -16990,7 +16990,7 @@
16990 "zh-chs": "格式化",
16991 "zh-cht": "格式化",
16992 "xloc": [
16993 - "default.handlebars->31->1836"
16993 + "default.handlebars->31->1837"
16994 ]
16995 },
16996 {
@@ -17031,8 +17031,8 @@
17031 "zh-chs": "自由",
17032 "zh-cht": "自由",
17033 "xloc": [
17034 - "default.handlebars->31->2235",
17035 - "default.handlebars->31->2237"
17034 + "default.handlebars->31->2236",
17035 + "default.handlebars->31->2238"
17036 ]
17037 },
17038 {
@@ -17073,7 +17073,7 @@
17073 "zh-chs": "法文(比利时)",
17074 "zh-cht": "法語(比利時)",
17075 "xloc": [
17076 - "default.handlebars->31->1231"
17076 + "default.handlebars->31->1232"
17077 ]
17078 },
17079 {
@@ -17093,7 +17093,7 @@
17093 "zh-chs": "法文(加拿大)",
17094 "zh-cht": "法語(加拿大)",
17095 "xloc": [
17096 - "default.handlebars->31->1232"
17096 + "default.handlebars->31->1233"
17097 ]
17098 },
17099 {
@@ -17113,7 +17113,7 @@
17113 "zh-chs": "法文(法国)",
17114 "zh-cht": "法語(法國)",
17115 "xloc": [
17116 - "default.handlebars->31->1233"
17116 + "default.handlebars->31->1234"
17117 ]
17118 },
17119 {
@@ -17133,7 +17133,7 @@
17133 "zh-chs": "法文(卢森堡)",
17134 "zh-cht": "法語(盧森堡)",
17135 "xloc": [
17136 - "default.handlebars->31->1234"
17136 + "default.handlebars->31->1235"
17137 ]
17138 },
17139 {
@@ -17153,7 +17153,7 @@
17153 "zh-chs": "法文(摩纳哥)",
17154 "zh-cht": "法語(摩納哥)",
17155 "xloc": [
17156 - "default.handlebars->31->1235"
17156 + "default.handlebars->31->1236"
17157 ]
17158 },
17159 {
@@ -17173,7 +17173,7 @@
17173 "zh-chs": "法文(标准)",
17174 "zh-cht": "法語(標準)",
17175 "xloc": [
17176 - "default.handlebars->31->1230"
17176 + "default.handlebars->31->1231"
17177 ]
17178 },
17179 {
@@ -17193,7 +17193,7 @@
17193 "zh-chs": "法文(瑞士)",
17194 "zh-cht": "法語(瑞士)",
17195 "xloc": [
17196 - "default.handlebars->31->1236"
17196 + "default.handlebars->31->1237"
17197 ]
17198 },
17199 {
@@ -17213,7 +17213,7 @@
17213 "zh-chs": "弗里斯兰文",
17214 "zh-cht": "弗里斯蘭語",
17215 "xloc": [
17216 - "default.handlebars->31->1237"
17216 + "default.handlebars->31->1238"
17217 ]
17218 },
17219 {
@@ -17233,7 +17233,7 @@
17233 "zh-chs": "弗留利",
17234 "zh-cht": "弗留利",
17235 "xloc": [
17236 - "default.handlebars->31->1238"
17236 + "default.handlebars->31->1239"
17237 ]
17238 },
17239 {
@@ -17254,12 +17254,12 @@
17254 "zh-cht": "完整管理員",
17255 "xloc": [
17256 "default-mobile.handlebars->11->127",
17257 - "default-mobile.handlebars->11->520",
17258 - "default-mobile.handlebars->11->533",
17259 - "default-mobile.handlebars->11->553",
17260 - "default.handlebars->31->1412",
17261 - "default.handlebars->31->1559",
17262 - "default.handlebars->31->1940"
17257 + "default-mobile.handlebars->11->521",
17258 + "default-mobile.handlebars->11->534",
17259 + "default-mobile.handlebars->11->554",
17260 + "default.handlebars->31->1413",
17261 + "default.handlebars->31->1560",
17262 + "default.handlebars->31->1941"
17263 ]
17264 },
17265 {
@@ -17279,7 +17279,7 @@
17279 "zh-chs": "完整管理员(保留所有权利)",
17280 "zh-cht": "完整管理員(保留所有權利)",
17281 "xloc": [
17282 - "default.handlebars->31->1596"
17282 + "default.handlebars->31->1597"
17283 ]
17284 },
17285 {
@@ -17398,7 +17398,7 @@
17398 "zh-chs": "完整管理员",
17399 "zh-cht": "完整管理員",
17400 "xloc": [
17401 - "default.handlebars->31->2038"
17401 + "default.handlebars->31->2039"
17402 ]
17403 },
17404 {
@@ -17418,8 +17418,8 @@
17418 "zh-chs": "全自动的",
17419 "zh-cht": "全自動的",
17420 "xloc": [
17421 - "default.handlebars->31->1475",
17422 - "default.handlebars->31->1498"
17421 + "default.handlebars->31->1476",
17422 + "default.handlebars->31->1499"
17423 ]
17424 },
17425 {
@@ -17439,8 +17439,8 @@
17439 "zh-chs": "GPU",
17440 "zh-cht": "GPU",
17441 "xloc": [
17442 - "default-mobile.handlebars->11->477",
17443 - "default.handlebars->31->1106"
17442 + "default-mobile.handlebars->11->478",
17443 + "default.handlebars->31->1107"
17444 ]
17445 },
17446 {
@@ -17460,7 +17460,7 @@
17460 "zh-chs": "盖尔文(爱尔兰)",
17461 "zh-cht": "蓋爾語(愛爾蘭)",
17462 "xloc": [
17463 - "default.handlebars->31->1240"
17463 + "default.handlebars->31->1241"
17464 ]
17465 },
17466 {
@@ -17480,7 +17480,7 @@
17480 "zh-chs": "盖尔文(苏格兰文)",
17481 "zh-cht": "蓋爾語(蘇格蘭語)",
17482 "xloc": [
17483 - "default.handlebars->31->1239"
17483 + "default.handlebars->31->1240"
17484 ]
17485 },
17486 {
@@ -17500,7 +17500,7 @@
17500 "zh-chs": "加拉契文",
17501 "zh-cht": "加拉契語",
17502 "xloc": [
17503 - "default.handlebars->31->1241"
17503 + "default.handlebars->31->1242"
17504 ]
17505 },
17506 {
@@ -17626,7 +17626,7 @@
17626 "zh-chs": "格鲁吉亚文",
17627 "zh-cht": "格魯吉亞文",
17628 "xloc": [
17629 - "default.handlebars->31->1242"
17629 + "default.handlebars->31->1243"
17630 ]
17631 },
17632 {
@@ -17646,7 +17646,7 @@
17646 "zh-chs": "德文(奥地利)",
17647 "zh-cht": "德語(奧地利)",
17648 "xloc": [
17649 - "default.handlebars->31->1244"
17649 + "default.handlebars->31->1245"
17650 ]
17651 },
17652 {
@@ -17666,7 +17666,7 @@
17666 "zh-chs": "德文(德国)",
17667 "zh-cht": "德文(德國)",
17668 "xloc": [
17669 - "default.handlebars->31->1245"
17669 + "default.handlebars->31->1246"
17670 ]
17671 },
17672 {
@@ -17686,7 +17686,7 @@
17686 "zh-chs": "德文(列支敦士登)",
17687 "zh-cht": "德文(列支敦士登)",
17688 "xloc": [
17689 - "default.handlebars->31->1246"
17689 + "default.handlebars->31->1247"
17690 ]
17691 },
17692 {
@@ -17706,7 +17706,7 @@
17706 "zh-chs": "德文(卢森堡)",
17707 "zh-cht": "德語(盧森堡)",
17708 "xloc": [
17709 - "default.handlebars->31->1247"
17709 + "default.handlebars->31->1248"
17710 ]
17711 },
17712 {
@@ -17726,7 +17726,7 @@
17726 "zh-chs": "德文(标准)",
17727 "zh-cht": "德語(標準)",
17728 "xloc": [
17729 - "default.handlebars->31->1243"
17729 + "default.handlebars->31->1244"
17730 ]
17731 },
17732 {
@@ -17746,7 +17746,7 @@
17746 "zh-chs": "德文(瑞士)",
17747 "zh-cht": "德文(瑞士)",
17748 "xloc": [
17749 - "default.handlebars->31->1248"
17749 + "default.handlebars->31->1249"
17750 ]
17751 },
17752 {
@@ -17807,7 +17807,7 @@
17807 "zh-chs": "正在获取剪贴板内容,{0}个字节",
17808 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
17809 "xloc": [
17810 - "default.handlebars->31->1735"
17810 + "default.handlebars->31->1736"
17811 ]
17812 },
17813 {
@@ -17869,7 +17869,7 @@
17869 "zh-chs": "好",
17870 "zh-cht": "好",
17871 "xloc": [
17872 - "default.handlebars->31->1408"
17872 + "default.handlebars->31->1409"
17873 ]
17874 },
17875 {
@@ -17914,8 +17914,8 @@
17914 "zh-chs": "Google云端硬盘备份",
17915 "zh-cht": "Google雲端硬盤備份",
17916 "xloc": [
17917 - "default.handlebars->31->1419",
17918 - "default.handlebars->31->1422",
17917 + "default.handlebars->31->1420",
17918 + "default.handlebars->31->1423",
17919 "default.handlebars->31->224"
17920 ]
17921 },
@@ -17936,7 +17936,7 @@
17936 "zh-chs": "Google云端硬盘控制台",
17937 "zh-cht": "Google雲端硬盤控制台",
17938 "xloc": [
17939 - "default.handlebars->31->1416"
17939 + "default.handlebars->31->1417"
17940 ]
17941 },
17942 {
@@ -17976,7 +17976,7 @@
17976 "zh-chs": "Google云端硬盘备份当前处于活动状态。",
17977 "zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
17978 "xloc": [
17979 - "default.handlebars->31->1420"
17979 + "default.handlebars->31->1421"
17980 ]
17981 },
17982 {
@@ -18004,7 +18004,7 @@
18004 "zh-chs": "希腊文",
18005 "zh-cht": "希臘文",
18006 "xloc": [
18007 - "default.handlebars->31->1249"
18007 + "default.handlebars->31->1250"
18008 ]
18009 },
18010 {
@@ -18046,8 +18046,8 @@
18046 "zh-chs": "集体指令",
18047 "zh-cht": "集體指令",
18048 "xloc": [
18049 - "default.handlebars->31->1884",
18050 - "default.handlebars->31->1963",
18049 + "default.handlebars->31->1885",
18050 + "default.handlebars->31->1964",
18051 "default.handlebars->31->482",
18052 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
18053 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -18071,7 +18071,7 @@
18071 "zh-chs": "通过...分组",
18072 "zh-cht": "通過...分群",
18073 "xloc": [
18074 - "default.handlebars->31->1832"
18074 + "default.handlebars->31->1833"
18075 ]
18076 },
18077 {
@@ -18091,7 +18091,7 @@
18091 "zh-chs": "组标识符",
18092 "zh-cht": "群標識符",
18093 "xloc": [
18094 - "default.handlebars->31->1980"
18094 + "default.handlebars->31->1981"
18095 ]
18096 },
18097 {
@@ -18111,7 +18111,7 @@
18111 "zh-chs": "群组成员",
18112 "zh-cht": "群組成員",
18113 "xloc": [
18114 - "default.handlebars->31->2001"
18114 + "default.handlebars->31->2002"
18115 ]
18116 },
18117 {
@@ -18131,7 +18131,7 @@
18131 "zh-chs": "用户{0}的群组权限。",
18132 "zh-cht": "用戶{0}的群組權限。",
18133 "xloc": [
18134 - "default.handlebars->31->1558"
18134 + "default.handlebars->31->1559"
18135 ]
18136 },
18137 {
@@ -18151,7 +18151,7 @@
18151 "zh-chs": "{0}的群组权限。",
18152 "zh-cht": "{0}的群組權限。",
18153 "xloc": [
18154 - "default.handlebars->31->1557"
18154 + "default.handlebars->31->1558"
18155 ]
18156 },
18157 {
@@ -18247,7 +18247,7 @@
18247 "en": "Guest Sharing",
18248 "nl": "Gastdeling",
18249 "xloc": [
18250 - "default.handlebars->31->1566"
18250 + "default.handlebars->31->1567"
18251 ]
18252 },
18253 {
@@ -18267,7 +18267,7 @@
18267 "zh-chs": "古久拉提",
18268 "zh-cht": "古久拉提",
18269 "xloc": [
18270 - "default.handlebars->31->1250"
18270 + "default.handlebars->31->1251"
18271 ]
18272 },
18273 {
@@ -18310,7 +18310,7 @@
18310 "zh-chs": "海地文",
18311 "zh-cht": "海地文",
18312 "xloc": [
18313 - "default.handlebars->31->1251"
18313 + "default.handlebars->31->1252"
18314 ]
18315 },
18316 {
@@ -18350,8 +18350,8 @@
18350 "zh-chs": "强行断开代理",
18351 "zh-cht": "強行斷開代理",
18352 "xloc": [
18353 - "default-mobile.handlebars->11->507",
18354 - "default.handlebars->31->1137"
18353 + "default-mobile.handlebars->11->508",
18354 + "default.handlebars->31->1138"
18355 ]
18356 },
18357 {
@@ -18371,7 +18371,7 @@
18371 "zh-chs": "堆总数",
18372 "zh-cht": "堆總數",
18373 "xloc": [
18374 - "default.handlebars->31->2279"
18374 + "default.handlebars->31->2280"
18375 ]
18376 },
18377 {
@@ -18391,7 +18391,7 @@
18391 "zh-chs": "堆使用",
18392 "zh-cht": "堆使用",
18393 "xloc": [
18394 - "default.handlebars->31->2278"
18394 + "default.handlebars->31->2279"
18395 ]
18396 },
18397 {
@@ -18411,7 +18411,7 @@
18411 "zh-chs": "希伯来文",
18412 "zh-cht": "希伯來文",
18413 "xloc": [
18414 - "default.handlebars->31->1252"
18414 + "default.handlebars->31->1253"
18415 ]
18416 },
18417 {
@@ -18472,7 +18472,7 @@
18472 "zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
18473 "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
18474 "xloc": [
18475 - "default.handlebars->31->1812"
18475 + "default.handlebars->31->1813"
18476 ]
18477 },
18478 {
@@ -18533,7 +18533,7 @@
18533 "zh-chs": "帮助翻译MeshCentral",
18534 "zh-cht": "幫助翻譯MeshCentral",
18535 "xloc": [
18536 - "default.handlebars->31->1367"
18536 + "default.handlebars->31->1368"
18537 ]
18538 },
18539 {
@@ -18637,7 +18637,7 @@
18637 "zh-chs": "印地文",
18638 "zh-cht": "印地文",
18639 "xloc": [
18640 - "default.handlebars->31->1253"
18640 + "default.handlebars->31->1254"
18641 ]
18642 },
18643 {
@@ -18674,8 +18674,8 @@
18674 "zh-chs": "保存1个条目进行复制",
18675 "zh-cht": "保存1個項目進行複製",
18676 "xloc": [
18677 - "default-mobile.handlebars->11->389",
18678 - "default.handlebars->31->1018"
18677 + "default-mobile.handlebars->11->390",
18678 + "default.handlebars->31->1019"
18679 ]
18680 },
18681 {
@@ -18695,8 +18695,8 @@
18695 "zh-chs": "保存1个项目进行移动",
18696 "zh-cht": "保存1個項目進行移動",
18697 "xloc": [
18698 - "default-mobile.handlebars->11->393",
18699 - "default.handlebars->31->1022"
18698 + "default-mobile.handlebars->11->394",
18699 + "default.handlebars->31->1023"
18700 ]
18701 },
18702 {
@@ -18716,8 +18716,8 @@
18716 "zh-chs": "保存{0}个条目进行复制",
18717 "zh-cht": "保留{0}個項目進行複製",
18718 "xloc": [
18719 - "default-mobile.handlebars->11->387",
18720 - "default.handlebars->31->1016"
18719 + "default-mobile.handlebars->11->388",
18720 + "default.handlebars->31->1017"
18721 ]
18722 },
18723 {
@@ -18737,8 +18737,8 @@
18737 "zh-chs": "保存{0}个条目以进行移动",
18738 "zh-cht": "保存{0}個項目以進行移動",
18739 "xloc": [
18740 - "default-mobile.handlebars->11->391",
18741 - "default.handlebars->31->1020"
18740 + "default-mobile.handlebars->11->392",
18741 + "default.handlebars->31->1021"
18742 ]
18743 },
18744 {
@@ -18759,7 +18759,7 @@
18759 "zh-cht": "保存{0}項目{1}給{2}",
18760 "xloc": [
18761 "default-mobile.handlebars->11->151",
18762 - "default.handlebars->31->1708"
18762 + "default.handlebars->31->1709"
18763 ]
18764 },
18765 {
@@ -18767,8 +18767,8 @@
18767 "fr": "Home",
18768 "nl": "Home",
18769 "xloc": [
18770 - "default-mobile.handlebars->11->343",
18771 - "default.handlebars->31->926"
18770 + "default-mobile.handlebars->11->344",
18771 + "default.handlebars->31->927"
18772 ]
18773 },
18774 {
@@ -18792,8 +18792,8 @@
18792 "default-mobile.handlebars->11->251",
18793 "default-mobile.handlebars->11->253",
18794 "default-mobile.handlebars->11->324",
18795 - "default-mobile.handlebars->11->436",
18796 - "default.handlebars->31->1055",
18795 + "default-mobile.handlebars->11->437",
18796 + "default.handlebars->31->1056",
18797 "default.handlebars->31->315",
18798 "default.handlebars->31->591",
18799 "default.handlebars->31->895"
@@ -18816,7 +18816,7 @@
18816 "zh-chs": "主机名同步",
18817 "zh-cht": "主機名同步",
18818 "xloc": [
18819 - "default.handlebars->31->1447"
18819 + "default.handlebars->31->1448"
18820 ]
18821 },
18822 {
@@ -18836,7 +18836,7 @@
18836 "zh-chs": "匈牙利文",
18837 "zh-cht": "匈牙利文",
18838 "xloc": [
18839 - "default.handlebars->31->1254"
18839 + "default.handlebars->31->1255"
18840 ]
18841 },
18842 {
@@ -18899,9 +18899,9 @@
18899 "zh-chs": "IP:{0}",
18900 "zh-cht": "IP:{0}",
18901 "xloc": [
18902 - "default.handlebars->31->1065",
18903 - "default.handlebars->31->1075",
18904 - "default.handlebars->31->1079"
18902 + "default.handlebars->31->1066",
18903 + "default.handlebars->31->1076",
18904 + "default.handlebars->31->1080"
18905 ]
18906 },
18907 {
@@ -18921,9 +18921,9 @@
18921 "zh-chs": "IP:{0},掩码:{1},网关:{2}",
18922 "zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
18923 "xloc": [
18924 - "default.handlebars->31->1063",
18925 - "default.handlebars->31->1073",
18926 - "default.handlebars->31->1077"
18924 + "default.handlebars->31->1064",
18925 + "default.handlebars->31->1074",
18926 + "default.handlebars->31->1078"
18927 ]
18928 },
18929 {
@@ -18943,12 +18943,12 @@
18943 "zh-chs": "IPv4层",
18944 "zh-cht": "IPv4層",
18945 "xloc": [
18946 - "default-mobile.handlebars->11->443",
18947 - "default-mobile.handlebars->11->445",
18948 - "default.handlebars->31->1062",
18949 - "default.handlebars->31->1064",
18950 - "default.handlebars->31->1072",
18951 - "default.handlebars->31->1074"
18946 + "default-mobile.handlebars->11->444",
18947 + "default-mobile.handlebars->11->446",
18948 + "default.handlebars->31->1063",
18949 + "default.handlebars->31->1065",
18950 + "default.handlebars->31->1073",
18951 + "default.handlebars->31->1075"
18952 ]
18953 },
18954 {
@@ -19031,10 +19031,10 @@
19031 "zh-chs": "IPv6层",
19032 "zh-cht": "IPv6層",
19033 "xloc": [
19034 - "default-mobile.handlebars->11->447",
19035 - "default-mobile.handlebars->11->449",
19036 - "default.handlebars->31->1076",
19037 - "default.handlebars->31->1078"
19034 + "default-mobile.handlebars->11->448",
19035 + "default-mobile.handlebars->11->450",
19036 + "default.handlebars->31->1077",
19037 + "default.handlebars->31->1079"
19038 ]
19039 },
19040 {
@@ -19114,7 +19114,7 @@
19114 "zh-chs": "冰岛文",
19115 "zh-cht": "冰島文",
19116 "xloc": [
19117 - "default.handlebars->31->1255"
19117 + "default.handlebars->31->1256"
19118 ]
19119 },
19120 {
@@ -19155,10 +19155,10 @@
19155 "zh-chs": "识别码",
19156 "zh-cht": "識別符",
19157 "xloc": [
19158 - "default-mobile.handlebars->11->435",
19159 - "default-mobile.handlebars->11->475",
19160 - "default.handlebars->31->1054",
19161 - "default.handlebars->31->1104"
19158 + "default-mobile.handlebars->11->436",
19159 + "default-mobile.handlebars->11->476",
19160 + "default.handlebars->31->1055",
19161 + "default.handlebars->31->1105"
19162 ]
19163 },
19164 {
@@ -19178,7 +19178,7 @@
19178 "zh-chs": "如果在CCM中,请重新激活英特尔&reg;AMT",
19179 "zh-cht": "如果在CCM中,請重新激活英特爾&reg;AMT",
19180 "xloc": [
19181 - "default.handlebars->31->1512"
19181 + "default.handlebars->31->1513"
19182 ]
19183 },
19184 {
@@ -19347,7 +19347,7 @@
19347 "zh-chs": "印度尼西亚文",
19348 "zh-cht": "印度尼西亞文",
19349 "xloc": [
19350 - "default.handlebars->31->1256"
19350 + "default.handlebars->31->1257"
19351 ]
19352 },
19353 {
@@ -19417,8 +19417,8 @@
19417 "fr": "Insérer",
19418 "nl": "Insert",
19419 "xloc": [
19420 - "default-mobile.handlebars->11->341",
19421 - "default.handlebars->31->924"
19420 + "default-mobile.handlebars->11->342",
19421 + "default.handlebars->31->925"
19422 ]
19423 },
19424 {
@@ -19520,7 +19520,7 @@
19520 "nl": "Installeren on dit apparaat",
19521 "fr": "Installer sur cet appareil",
19522 "xloc": [
19523 - "default-mobile.handlebars->11->517"
19523 + "default-mobile.handlebars->11->518"
19524 ]
19525 },
19526 {
@@ -19528,7 +19528,7 @@
19528 "nl": "Installeer de MeshCentral Agent op uw Android apparaat. Na installatie klikt u op de koppelingslink om uw apparaat met deze server te verbinden.",
19529 "fr": "Installez l'agent MeshCentral sur votre appareil android puis cliquez sur ce lien pour le connecter au serveur.",
19530 "xloc": [
19531 - "default-mobile.handlebars->11->529"
19531 + "default-mobile.handlebars->11->530"
19532 ]
19533 },
19534 {
@@ -19548,8 +19548,8 @@
19548 "zh-chs": "安装类型",
19549 "zh-cht": "安裝方式",
19550 "xloc": [
19551 - "default.handlebars->31->1629",
19552 - "default.handlebars->31->1636",
19551 + "default.handlebars->31->1630",
19552 + "default.handlebars->31->1637",
19553 "default.handlebars->31->361",
19554 "default.handlebars->31->375",
19555 "default.handlebars->31->390"
@@ -19572,7 +19572,7 @@
19572 "zh-chs": "英特尔(F10 = ESC + [OM)",
19573 "zh-cht": "Intel(F10 = ESC + [OM)",
19574 "xloc": [
19575 - "default.handlebars->31->978",
19575 + "default.handlebars->31->979",
19576 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
19577 "terminal.handlebars->3->18",
19578 "terminal.handlebars->p12->9->1->terminalSettingsButtons"
@@ -19595,7 +19595,7 @@
19595 "zh-chs": "英特尔AMT",
19596 "zh-cht": "英特爾AMT",
19597 "xloc": [
19598 - "default.handlebars->31->2275"
19598 + "default.handlebars->31->2276"
19599 ]
19600 },
19601 {
@@ -19603,7 +19603,7 @@
19603 "fr": "Gestionnaire Intel AMT",
19604 "nl": "Intel AMT beheerder",
19605 "xloc": [
19606 - "default.handlebars->31->2301"
19606 + "default.handlebars->31->2302"
19607 ]
19608 },
19609 {
@@ -19623,7 +19623,7 @@
19623 "zh-chs": "英特尔ASCII",
19624 "zh-cht": "Intel ASCII",
19625 "xloc": [
19626 - "default.handlebars->31->977",
19626 + "default.handlebars->31->978",
19627 "terminal.handlebars->3->17"
19628 ]
19629 },
@@ -19647,11 +19647,11 @@
19647 "default-mobile.handlebars->11->235",
19648 "default-mobile.handlebars->11->277",
19649 "default-mobile.handlebars->11->282",
19650 - "default.handlebars->31->1465",
19651 - "default.handlebars->31->1476",
19652 - "default.handlebars->31->1648",
19653 - "default.handlebars->31->1661",
19654 - "default.handlebars->31->2300",
19650 + "default.handlebars->31->1466",
19651 + "default.handlebars->31->1477",
19652 + "default.handlebars->31->1649",
19653 + "default.handlebars->31->1662",
19654 + "default.handlebars->31->2301",
19655 "default.handlebars->31->561",
19656 "default.handlebars->31->619",
19657 "default.handlebars->31->659"
@@ -19821,7 +19821,7 @@
19821 "zh-chs": "英特尔&reg;AMT政策",
19822 "zh-cht": "Intel&reg; AMT政策",
19823 "xloc": [
19824 - "default.handlebars->31->1499"
19824 + "default.handlebars->31->1500"
19825 ]
19826 },
19827 {
@@ -19841,7 +19841,7 @@
19841 "zh-chs": "英特尔&reg;AMT重定向",
19842 "zh-cht": "Intel&reg; AMT重定向",
19843 "xloc": [
19844 - "default.handlebars->31->2178",
19844 + "default.handlebars->31->2179",
19845 "player.handlebars->3->14"
19846 ]
19847 },
@@ -19882,7 +19882,7 @@
19882 "zh-chs": "英特尔&reg;AMT WSMAN",
19883 "zh-cht": "Intle&reg; AMT WSMAN",
19884 "xloc": [
19885 - "default.handlebars->31->2177",
19885 + "default.handlebars->31->2178",
19886 "player.handlebars->3->13"
19887 ]
19888 },
@@ -19942,8 +19942,8 @@
19942 "zh-chs": "英特尔&reg;AMT桌面和串行事件。",
19943 "zh-cht": "Intel&reg; AMT桌面和串行事件。",
19944 "xloc": [
19945 - "default.handlebars->31->1373",
19946 - "default.handlebars->31->1644"
19945 + "default.handlebars->31->1374",
19946 + "default.handlebars->31->1645"
19947 ]
19948 },
19949 {
@@ -20128,9 +20128,9 @@
20128 "zh-chs": "仅限英特尔&reg;AMT,无代理",
20129 "zh-cht": "僅限Intel&reg; AMT,無代理",
20130 "xloc": [
20131 - "default-mobile.handlebars->11->510",
20132 - "default.handlebars->31->1402",
20133 - "default.handlebars->31->1437"
20131 + "default-mobile.handlebars->11->511",
20132 + "default.handlebars->31->1403",
20133 + "default.handlebars->31->1438"
20134 ]
20135 },
20136 {
@@ -20207,8 +20207,8 @@
20207 "zh-chs": "英特尔&reg;主动管理技术(英特尔&reg;AMT)",
20208 "zh-cht": "Intel &reg; Active Management Technology(Intel&reg; AMT)",
20209 "xloc": [
20210 - "default-mobile.handlebars->11->467",
20211 - "default.handlebars->31->1096"
20210 + "default-mobile.handlebars->11->468",
20211 + "default.handlebars->31->1097"
20212 ]
20213 },
20214 {
@@ -20414,7 +20414,7 @@
20414 "zh-chs": "互动",
20415 "zh-cht": "互動",
20416 "xloc": [
20417 - "default.handlebars->31->956"
20417 + "default.handlebars->31->957"
20418 ]
20419 },
20420 {
@@ -20434,8 +20434,8 @@
20434 "zh-chs": "仅限互动",
20435 "zh-cht": "僅限互動",
20436 "xloc": [
20437 - "default.handlebars->31->1632",
20438 - "default.handlebars->31->1639",
20437 + "default.handlebars->31->1633",
20438 + "default.handlebars->31->1640",
20439 "default.handlebars->31->364",
20440 "default.handlebars->31->378",
20441 "default.handlebars->31->393"
@@ -20478,7 +20478,7 @@
20478 "zh-chs": "因纽特文",
20479 "zh-cht": "因紐特文",
20480 "xloc": [
20481 - "default.handlebars->31->1257"
20481 + "default.handlebars->31->1258"
20482 ]
20483 },
20484 {
@@ -20528,7 +20528,7 @@
20528 "zh-chs": "无效的设备组类型",
20529 "zh-cht": "無效的裝置群類型",
20530 "xloc": [
20531 - "default.handlebars->31->2249"
20531 + "default.handlebars->31->2250"
20532 ]
20533 },
20534 {
@@ -20548,7 +20548,7 @@
20548 "zh-chs": "无效的JSON",
20549 "zh-cht": "無效的JSON",
20550 "xloc": [
20551 - "default.handlebars->31->2243"
20551 + "default.handlebars->31->2244"
20552 ]
20553 },
20554 {
@@ -20568,8 +20568,8 @@
20568 "zh-chs": "无效的JSON档案格式。",
20569 "zh-cht": "無效的JSON檔案格式。",
20570 "xloc": [
20571 - "default.handlebars->31->1902",
20572 - "default.handlebars->31->1904"
20571 + "default.handlebars->31->1903",
20572 + "default.handlebars->31->1905"
20573 ]
20574 },
20575 {
@@ -20589,7 +20589,7 @@
20589 "zh-chs": "无效的JSON档案:{0}。",
20590 "zh-cht": "無效的JSON檔案:{0}。",
20591 "xloc": [
20592 - "default.handlebars->31->1900"
20592 + "default.handlebars->31->1901"
20593 ]
20594 },
20595 {
@@ -20609,7 +20609,7 @@
20609 "zh-chs": "无效的PKCS签名",
20610 "zh-cht": "無效的PKCS簽名",
20611 "xloc": [
20612 - "default.handlebars->31->2241"
20612 + "default.handlebars->31->2242"
20613 ]
20614 },
20615 {
@@ -20629,7 +20629,7 @@
20629 "zh-chs": "無效的RSA密碼",
20630 "zh-cht": "無效的RSA密碼",
20631 "xloc": [
20632 - "default.handlebars->31->2242"
20632 + "default.handlebars->31->2243"
20633 ]
20634 },
20635 {
@@ -20637,8 +20637,8 @@
20637 "nl": "Ongeldig SMS bericht",
20638 "fr": "Message SMS non valide",
20639 "xloc": [
20640 - "default-mobile.handlebars->11->614",
20641 - "default.handlebars->31->2229"
20640 + "default-mobile.handlebars->11->615",
20641 + "default.handlebars->31->2230"
20642 ]
20643 },
20644 {
@@ -20668,8 +20668,8 @@
20668 "nl": "Ongeldig domein",
20669 "fr": "Domaine non valide",
20670 "xloc": [
20671 - "default-mobile.handlebars->11->594",
20672 - "default.handlebars->31->2209"
20671 + "default-mobile.handlebars->11->595",
20672 + "default.handlebars->31->2210"
20673 ]
20674 },
20675 {
@@ -20677,8 +20677,8 @@
20677 "nl": "Ongeldig email",
20678 "fr": "Email invalide",
20679 "xloc": [
20680 - "default-mobile.handlebars->11->593",
20681 - "default.handlebars->31->2208"
20680 + "default-mobile.handlebars->11->594",
20681 + "default.handlebars->31->2209"
20682 ]
20683 },
20684 {
@@ -20749,9 +20749,9 @@
20749 "nl": "Ongeldig wachtwoord",
20750 "fr": "Mot de passe incorrect",
20751 "xloc": [
20752 - "default-mobile.handlebars->11->592",
20752 + "default-mobile.handlebars->11->593",

This file is too large to show in full.