Improved device batch upload.

Ylian Saint-Hilaire committed Nov 9, 2020 at 16:51 UTC 8c007666b9c4182c1a738542e77e3f5498698ecd
5 files changed +1722 -1698
agents/meshcore.js
+36 -32
@@ -44,6 +44,7 @@ var MESHRIGHT_NODESKTOP = 65536;
44 function createMeshCore(agent) {
45 var obj = {};
46 var agentFileHttpRequests = {}; // Currently active agent HTTPS GET requests from the server.
47 + var agentFileHttpPendingRequests = []; // Pending HTTPS GET requests from the server.
48
49 if (process.platform == 'win32' && require('user-sessions').isRoot()) {
50 // Check the Agent Uninstall MetaData for correctness, as the installer may have written an incorrect value
@@ -1148,38 +1149,8 @@ function createMeshCore(agent) {
1149 if (data.pipe == true) { delete data.pipe; delete data.action; data.cmd = 'meshToolInfo'; broadcastToRegisteredApps(data); }
1150 break;
1151 case 'wget': // Server uses this command to tell the agent to download a file using HTTPS/GET and place it in a given path. This is used for one-to-many file uploads.
1151 - sendConsoleText(JSON.stringify(data));
1152 - if ((data.overwrite !== true) && fs.existsSync(data.path)) break; // Don't overwrite an existing file.
1153 - if (data.createFolder) { try { fs.mkdirSync(data.folder); } catch (ex) { } } // If requested, create the local folder.
1154 - data.url = 'http' + getServerTargetUrlEx('*/').substring(2);
1155 - var agentFileHttpOptions = http.parseUri(data.url);
1156 - agentFileHttpOptions.path = data.urlpath;
1157 -
1158 - // Perform manual server TLS certificate checking based on the certificate hash given by the server.
1159 - agentFileHttpOptions.rejectUnauthorized = 0;
1160 - agentFileHttpOptions.checkServerIdentity = function checkServerIdentity(certs) { if ((checkServerIdentity.servertlshash != null) && (checkServerIdentity.servertlshash != certs[0].fingerprint.split(':').join('').toLowerCase())) { throw new Error('BadCert') } }
1161 - agentFileHttpOptions.checkServerIdentity.servertlshash = data.servertlshash;
1162 -
1163 - if (agentFileHttpOptions == null) break;
1164 - var agentFileHttpRequest = http.request(agentFileHttpOptions,
1165 - function (response) {
1166 - response.xparent = this;
1167 - try {
1168 - response.xfile = fs.createWriteStream(this.xpath, { flags: 'wbN' })
1169 - response.pipe(response.xfile);
1170 - response.end = function () { delete agentFileHttpRequests[this.xparent.xurlpath]; delete this.xparent; }
1171 - } catch (ex) {
1172 - delete agentFileHttpRequests[this.xurlpath];
1173 - delete response.xparent;
1174 - return;
1175 - }
1176 - }
1177 - );
1178 - agentFileHttpRequest.on('error', function (ex) { delete agentFileHttpRequests[this.xurlpath]; });
1179 - agentFileHttpRequest.end();
1180 - agentFileHttpRequest.xurlpath = data.urlpath;
1181 - agentFileHttpRequest.xpath = data.path;
1182 - agentFileHttpRequests[data.urlpath] = agentFileHttpRequest;
1152 + agentFileHttpPendingRequests.push(data);
1153 + serverFetchFile();
1154 break;
1155 default:
1156 // Unknown action, ignore it.
@@ -1188,6 +1159,39 @@ function createMeshCore(agent) {
1159 }
1160 }
1161
1162 + // Agent just get a file from the server and save it locally.
1163 + function serverFetchFile() {
1164 + if ((Object.keys(agentFileHttpRequests).length > 4) || (agentFileHttpPendingRequests.length == 0)) return; // No more than 4 active HTTPS requests to the server.
1165 + var data = agentFileHttpPendingRequests.shift();
1166 + if ((data.overwrite !== true) && fs.existsSync(data.path)) return; // Don't overwrite an existing file.
1167 + if (data.createFolder) { try { fs.mkdirSync(data.folder); } catch (ex) { } } // If requested, create the local folder.
1168 + data.url = 'http' + getServerTargetUrlEx('*/').substring(2);
1169 + var agentFileHttpOptions = http.parseUri(data.url);
1170 + agentFileHttpOptions.path = data.urlpath;
1171 +
1172 + // Perform manual server TLS certificate checking based on the certificate hash given by the server.
1173 + agentFileHttpOptions.rejectUnauthorized = 0;
1174 + agentFileHttpOptions.checkServerIdentity = function checkServerIdentity(certs) { if ((checkServerIdentity.servertlshash != null) && (checkServerIdentity.servertlshash != certs[0].fingerprint.split(':').join('').toLowerCase())) { throw new Error('BadCert') } }
1175 + agentFileHttpOptions.checkServerIdentity.servertlshash = data.servertlshash;
1176 +
1177 + if (agentFileHttpOptions == null) return;
1178 + var agentFileHttpRequest = http.request(agentFileHttpOptions,
1179 + function (response) {
1180 + response.xparent = this;
1181 + try {
1182 + response.xfile = fs.createWriteStream(this.xpath, { flags: 'wbN' })
1183 + response.pipe(response.xfile);
1184 + response.end = function () { delete agentFileHttpRequests[this.xparent.xurlpath]; delete this.xparent; serverFetchFile(); }
1185 + } catch (ex) { delete agentFileHttpRequests[this.xurlpath]; delete response.xparent; serverFetchFile(); return; }
1186 + }
1187 + );
1188 + agentFileHttpRequest.on('error', function (ex) { delete agentFileHttpRequests[this.xurlpath]; serverFetchFile(); });
1189 + agentFileHttpRequest.end();
1190 + agentFileHttpRequest.xurlpath = data.urlpath;
1191 + agentFileHttpRequest.xpath = data.path;
1192 + agentFileHttpRequests[data.urlpath] = agentFileHttpRequest;
1193 + }
1194 +
1195 // Called when a file changed in the file system
1196 /*
1197 function onFileWatcher(a, b) {
public/scripts/amt-wsman-0.2.0-min.js
+1 -1
@@ -1 +1 @@
1 -var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,c,d){var m="",i="";null!=c&&null!=d&&(m="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+c+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+d+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var c in s)l+="<g:"+c+">"+s[c]+"</g:"+c+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var c in r)if(null!=r[c])if(Array.isArray(r[c]))for(var d in r[c])l+="<r:"+c+">"+r[c][d]+"</r:"+c+">";else l+="<r:"+c+">"+r[c]+"</r:"+c+">";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];if(!(n=n||s.getElementsByTagName("a:Body")[0]))return null;if(0<n.childNodes.length){var l=(e=n.childNodes[0].localName).indexOf("_OUTPUT");-1!=l&&l==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])}return r}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
1 +var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,d,c){var m="",i="";null!=d&&null!=c&&(m="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+d+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+c+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var d in s)l+="<g:"+d+">"+s[d]+"</g:"+d+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var d in r)if(null!=r[d])if(Array.isArray(r[d]))for(var c in r[d])l+="<r:"+d+">"+r[d][c]+"</r:"+d+">";else l+="<r:"+d+">"+r[d]+"</r:"+d+">";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];if(!(n=n||s.getElementsByTagName("a:Body")[0]))return null;if(0<n.childNodes.length){var l=(e=n.childNodes[0].localName).indexOf("_OUTPUT");-1!=l&&l==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])}return r}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
translate/translate.json
+1658 -1643
@@ -17,8 +17,8 @@
17 "zh-chs": " + CIRA",
18 "zh-cht": " + CIRA",
19 "xloc": [
20 - "default.handlebars->29->1354",
21 - "default.handlebars->29->1356"
20 + "default.handlebars->29->1355",
21 + "default.handlebars->29->1357"
22 ]
23 },
24 {
@@ -204,7 +204,7 @@
204 "zh-chs": " 可以使用密码提示,但不建议使用。",
205 "zh-cht": " 可以使用密碼提示,但不建議使用。",
206 "xloc": [
207 - "default.handlebars->29->1267"
207 + "default.handlebars->29->1268"
208 ]
209 },
210 {
@@ -224,8 +224,8 @@
224 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226 "xloc": [
227 - "default.handlebars->29->1427",
228 - "default.handlebars->29->1889"
227 + "default.handlebars->29->1428",
228 + "default.handlebars->29->1891"
229 ]
230 },
231 {
@@ -419,7 +419,7 @@
419 "en": "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric.",
420 "nl": "* 8 karakters, 1 hoofdletter, 1 normale letter, 1 nummeriek, 1 niet alfanumeriek.",
421 "xloc": [
422 - "default.handlebars->29->1396",
422 + "default.handlebars->29->1397",
423 "default.handlebars->29->306"
424 ]
425 },
@@ -495,7 +495,7 @@
495 "zh-cht": ",",
496 "xloc": [
497 "default-mobile.handlebars->9->467",
498 - "default.handlebars->29->1497"
498 + "default.handlebars->29->1498"
499 ]
500 },
501 {
@@ -536,7 +536,7 @@
536 "zh-chs": ",MQTT在线",
537 "zh-cht": ",MQTT在線",
538 "xloc": [
539 - "default.handlebars->29->1009"
539 + "default.handlebars->29->1010"
540 ]
541 },
542 {
@@ -556,7 +556,7 @@
556 "zh-chs": ",软体KVM",
557 "zh-cht": ",軟體KVM",
558 "xloc": [
559 - "default.handlebars->29->833",
559 + "default.handlebars->29->834",
560 "desktop.handlebars->3->12"
561 ]
562 },
@@ -579,9 +579,9 @@
579 "xloc": [
580 "default-mobile.handlebars->9->296",
581 "default-mobile.handlebars->9->305",
582 - "default.handlebars->29->840",
583 - "default.handlebars->29->873",
584 - "default.handlebars->29->885",
582 + "default.handlebars->29->841",
583 + "default.handlebars->29->874",
584 + "default.handlebars->29->886",
585 "desktop.handlebars->3->19",
586 "xterm.handlebars->9->6"
587 ]
@@ -702,7 +702,7 @@
702 "zh-chs": ",{0}观看",
703 "zh-cht": ",{0}觀看",
704 "xloc": [
705 - "default.handlebars->29->834",
705 + "default.handlebars->29->835",
706 "desktop.handlebars->3->13"
707 ]
708 },
@@ -767,9 +767,9 @@
767 "xloc": [
768 "default-mobile.handlebars->9->108",
769 "default-mobile.handlebars->9->307",
770 - "default.handlebars->29->1538",
771 - "default.handlebars->29->2046",
772 - "default.handlebars->29->890"
770 + "default.handlebars->29->1539",
771 + "default.handlebars->29->2048",
772 + "default.handlebars->29->891"
773 ]
774 },
775 {
@@ -825,7 +825,7 @@
825 "zh-chs": "1个活跃时段",
826 "zh-cht": "1個活躍時段",
827 "xloc": [
828 - "default.handlebars->29->1958"
828 + "default.handlebars->29->1960"
829 ]
830 },
831 {
@@ -847,7 +847,7 @@
847 "xloc": [
848 "default-mobile.handlebars->9->118",
849 "default-mobile.handlebars->9->471",
850 - "default.handlebars->29->1562",
850 + "default.handlebars->29->1563",
851 "download.handlebars->3->1",
852 "download2.handlebars->5->1"
853 ]
@@ -869,7 +869,7 @@
869 "zh-chs": "1条连接",
870 "zh-cht": "1位聯絡文",
871 "xloc": [
872 - "default.handlebars->29->836",
872 + "default.handlebars->29->837",
873 "desktop.handlebars->3->15"
874 ]
875 },
@@ -912,7 +912,7 @@
912 "zh-chs": "1组",
913 "zh-cht": "1群",
914 "xloc": [
915 - "default.handlebars->29->1923"
915 + "default.handlebars->29->1925"
916 ]
917 },
918 {
@@ -954,7 +954,7 @@
954 "zh-chs": "1分钟",
955 "zh-cht": "1分鐘",
956 "xloc": [
957 - "default.handlebars->29->721"
957 + "default.handlebars->29->722"
958 ]
959 },
960 {
@@ -1016,7 +1016,7 @@
1016 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1017 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1018 "xloc": [
1019 - "default.handlebars->29->1713"
1019 + "default.handlebars->29->1715"
1020 ]
1021 },
1022 {
@@ -1082,7 +1082,7 @@
1082 "default-mobile.handlebars->9->172",
1083 "default-mobile.handlebars->9->175",
1084 "default-mobile.handlebars->9->178",
1085 - "default.handlebars->29->1717",
1085 + "default.handlebars->29->1719",
1086 "default.handlebars->29->251",
1087 "default.handlebars->29->254",
1088 "default.handlebars->29->257",
@@ -1214,7 +1214,7 @@
1214 "zh-chs": "10分钟",
1215 "zh-cht": "10分鐘",
1216 "xloc": [
1217 - "default.handlebars->29->723"
1217 + "default.handlebars->29->724"
1218 ]
1219 },
1220 {
@@ -1283,7 +1283,7 @@
1283 "en": "12 hours",
1284 "nl": "12 uur",
1285 "xloc": [
1286 - "default.handlebars->29->731"
1286 + "default.handlebars->29->732"
1287 ]
1288 },
1289 {
@@ -1325,28 +1325,28 @@
1325 "zh-chs": "15分钟",
1326 "zh-cht": "15分鐘",
1327 "xloc": [
1328 - "default.handlebars->29->724"
1328 + "default.handlebars->29->725"
1329 ]
1330 },
1331 {
1332 "en": "16 hours",
1333 "nl": "16 uur",
1334 "xloc": [
1335 - "default.handlebars->29->732"
1335 + "default.handlebars->29->733"
1336 ]
1337 },
1338 {
1339 "en": "2 days",
1340 "nl": "2 dagen",
1341 "xloc": [
1342 - "default.handlebars->29->734"
1342 + "default.handlebars->29->735"
1343 ]
1344 },
1345 {
1346 "en": "2 hours",
1347 "nl": "2 uur",
1348 "xloc": [
1349 - "default.handlebars->29->728"
1349 + "default.handlebars->29->729"
1350 ]
1351 },
1352 {
@@ -1437,7 +1437,7 @@
1437 "en": "24 hours",
1438 "nl": "24 uur",
1439 "xloc": [
1440 - "default.handlebars->29->733"
1440 + "default.handlebars->29->734"
1441 ]
1442 },
1443 {
@@ -1499,7 +1499,7 @@
1499 "zh-chs": "2FA备份代码已清除",
1500 "zh-cht": "2FA備份代碼已清除",
1501 "xloc": [
1502 - "default.handlebars->29->1673"
1502 + "default.handlebars->29->1674"
1503 ]
1504 },
1505 {
@@ -1519,8 +1519,8 @@
1519 "zh-chs": "启用第二因素身份验证",
1520 "zh-cht": "啟用第二因素身份驗證",
1521 "xloc": [
1522 - "default.handlebars->29->1730",
1523 - "default.handlebars->29->1945"
1522 + "default.handlebars->29->1732",
1523 + "default.handlebars->29->1947"
1524 ]
1525 },
1526 {
@@ -1639,7 +1639,7 @@
1639 "zh-chs": "30分钟",
1640 "zh-cht": "30分鐘",
1641 "xloc": [
1642 - "default.handlebars->29->725"
1642 + "default.handlebars->29->726"
1643 ]
1644 },
1645 {
@@ -1689,14 +1689,14 @@
1689 "en": "4 days",
1690 "nl": "4 dagen",
1691 "xloc": [
1692 - "default.handlebars->29->735"
1692 + "default.handlebars->29->736"
1693 ]
1694 },
1695 {
1696 "en": "4 hours",
1697 "nl": "4 uur",
1698 "xloc": [
1699 - "default.handlebars->29->729"
1699 + "default.handlebars->29->730"
1700 ]
1701 },
1702 {
@@ -1779,7 +1779,7 @@
1779 "zh-chs": "45分钟",
1780 "zh-cht": "45分鐘",
1781 "xloc": [
1782 - "default.handlebars->29->726"
1782 + "default.handlebars->29->727"
1783 ]
1784 },
1785 {
@@ -1819,7 +1819,7 @@
1819 "zh-chs": "5分钟",
1820 "zh-cht": "5分鐘",
1821 "xloc": [
1822 - "default.handlebars->29->722"
1822 + "default.handlebars->29->723"
1823 ]
1824 },
1825 {
@@ -1932,7 +1932,7 @@
1932 "en": "60 minutes",
1933 "nl": "60 minuten",
1934 "xloc": [
1935 - "default.handlebars->29->727"
1935 + "default.handlebars->29->728"
1936 ]
1937 },
1938 {
@@ -2052,7 +2052,7 @@
2052 "zh-chs": "7天电源状态",
2053 "zh-cht": "7天電源狀態",
2054 "xloc": [
2055 - "default.handlebars->29->766"
2055 + "default.handlebars->29->767"
2056 ]
2057 },
2058 {
@@ -2117,7 +2117,7 @@
2117 "xloc": [
2118 "default.handlebars->29->330",
2119 "default.handlebars->29->344",
2120 - "default.handlebars->29->730"
2120 + "default.handlebars->29->731"
2121 ]
2122 },
2123 {
@@ -2335,8 +2335,8 @@
2335 "zh-cht": "ACM",
2336 "xloc": [
2337 "default-mobile.handlebars->9->236",
2338 - "default.handlebars->29->1370",
2339 - "default.handlebars->29->567"
2338 + "default.handlebars->29->1371",
2339 + "default.handlebars->29->568"
2340 ]
2341 },
2342 {
@@ -2461,7 +2461,7 @@
2461 "zh-chs": "拒绝访问",
2462 "zh-cht": "拒絕存取",
2463 "xloc": [
2464 - "default.handlebars->29->1010"
2464 + "default.handlebars->29->1011"
2465 ]
2466 },
2467 {
@@ -2503,7 +2503,7 @@
2503 "zh-chs": "访问服务器档案",
2504 "zh-cht": "存取伺服器檔案",
2505 "xloc": [
2506 - "default.handlebars->29->1895"
2506 + "default.handlebars->29->1897"
2507 ]
2508 },
2509 {
@@ -2592,10 +2592,10 @@
2592 "default-mobile.handlebars->9->93",
2593 "default-mobile.handlebars->9->95",
2594 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2595 - "default.handlebars->29->1276",
2596 - "default.handlebars->29->1278",
2597 - "default.handlebars->29->536",
2598 - "default.handlebars->29->538"
2595 + "default.handlebars->29->1277",
2596 + "default.handlebars->29->1279",
2597 + "default.handlebars->29->537",
2598 + "default.handlebars->29->539"
2599 ]
2600 },
2601 {
@@ -2656,7 +2656,7 @@
2656 "zh-chs": "帐户已更改:{0}",
2657 "zh-cht": "帳戶已更改:{0}",
2658 "xloc": [
2659 - "default.handlebars->29->1646"
2659 + "default.handlebars->29->1647"
2660 ]
2661 },
2662 {
@@ -2676,7 +2676,7 @@
2676 "zh-chs": "创建帐户,电子邮件为{0}",
2677 "zh-cht": "創建帳戶,電子郵件為{0}",
2678 "xloc": [
2679 - "default.handlebars->29->1645"
2679 + "default.handlebars->29->1646"
2680 ]
2681 },
2682 {
@@ -2696,7 +2696,7 @@
2696 "zh-chs": "创建帐户,用户名是{0}",
2697 "zh-cht": "帳戶已創建,用戶名是{0}",
2698 "xloc": [
2699 - "default.handlebars->29->1644"
2699 + "default.handlebars->29->1645"
2700 ]
2701 },
2702 {
@@ -2716,8 +2716,8 @@
2716 "zh-chs": "帐户已被锁定",
2717 "zh-cht": "帳戶已被鎖定",
2718 "xloc": [
2719 - "default.handlebars->29->1732",
2720 - "default.handlebars->29->1892"
2719 + "default.handlebars->29->1734",
2720 + "default.handlebars->29->1894"
2721 ]
2722 },
2723 {
@@ -2781,7 +2781,7 @@
2781 "zh-chs": "帐号登录",
2782 "zh-cht": "帳號登錄",
2783 "xloc": [
2784 - "default.handlebars->29->1581"
2784 + "default.handlebars->29->1582"
2785 ]
2786 },
2787 {
@@ -2801,7 +2801,7 @@
2801 "zh-chs": "帐户登出",
2802 "zh-cht": "帳戶登出",
2803 "xloc": [
2804 - "default.handlebars->29->1582"
2804 + "default.handlebars->29->1583"
2805 ]
2806 },
2807 {
@@ -2843,7 +2843,7 @@
2843 "zh-chs": "帐户密码已更改:{0}",
2844 "zh-cht": "帳戶密碼已更改:{0}",
2845 "xloc": [
2846 - "default.handlebars->29->1654"
2846 + "default.handlebars->29->1655"
2847 ]
2848 },
2849 {
@@ -2863,7 +2863,7 @@
2863 "zh-chs": "帐户已删除",
2864 "zh-cht": "帳戶已刪除",
2865 "xloc": [
2866 - "default.handlebars->29->1643"
2866 + "default.handlebars->29->1644"
2867 ]
2868 },
2869 {
@@ -2903,7 +2903,7 @@
2903 "zh-chs": "指令",
2904 "zh-cht": "指令",
2905 "xloc": [
2906 - "default.handlebars->29->1015",
2906 + "default.handlebars->29->1016",
2907 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
2908 ]
2909 },
@@ -2924,8 +2924,8 @@
2924 "zh-chs": "动作档案",
2925 "zh-cht": "動作檔案",
2926 "xloc": [
2927 - "default.handlebars->29->809",
2928 - "default.handlebars->29->811"
2927 + "default.handlebars->29->810",
2928 + "default.handlebars->29->812"
2929 ]
2930 },
2931 {
@@ -2948,7 +2948,7 @@
2948 "default-mobile.handlebars->9->259",
2949 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
2950 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
2951 - "default.handlebars->29->616",
2951 + "default.handlebars->29->617",
2952 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
2953 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
2954 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3021,9 +3021,9 @@
3021 "default-mobile.handlebars->9->231",
3022 "default-mobile.handlebars->9->233",
3023 "default-mobile.handlebars->9->370",
3024 - "default.handlebars->29->560",
3025 - "default.handlebars->29->562",
3026 - "default.handlebars->29->971"
3024 + "default.handlebars->29->561",
3025 + "default.handlebars->29->563",
3026 + "default.handlebars->29->972"
3027 ]
3028 },
3029 {
@@ -3050,7 +3050,7 @@
3050 "en": "Active Device Sharing",
3051 "nl": "Actief delen van apparaten",
3052 "xloc": [
3053 - "default.handlebars->29->669"
3053 + "default.handlebars->29->670"
3054 ]
3055 },
3056 {
@@ -3087,7 +3087,7 @@
3087 "zh-chs": "添加代理",
3088 "zh-cht": "新增代理",
3089 "xloc": [
3090 - "default.handlebars->29->1366",
3090 + "default.handlebars->29->1367",
3091 "default.handlebars->29->284"
3092 ]
3093 },
@@ -3125,8 +3125,8 @@
3125 "zh-chs": "添加设备",
3126 "zh-cht": "新增裝置",
3127 "xloc": [
3128 - "default.handlebars->29->1869",
3129 - "default.handlebars->29->1993"
3128 + "default.handlebars->29->1871",
3129 + "default.handlebars->29->1995"
3130 ]
3131 },
3132 {
@@ -3146,7 +3146,7 @@
3146 "zh-chs": "添加设备日志",
3147 "zh-cht": "新增裝置日誌",
3148 "xloc": [
3149 - "default.handlebars->29->711"
3149 + "default.handlebars->29->712"
3150 ]
3151 },
3152 {
@@ -3166,9 +3166,9 @@
3166 "zh-chs": "添加设备组",
3167 "zh-cht": "新增裝置群",
3168 "xloc": [
3169 - "default.handlebars->29->1461",
3170 - "default.handlebars->29->1863",
3171 - "default.handlebars->29->1981",
3169 + "default.handlebars->29->1462",
3170 + "default.handlebars->29->1865",
3171 + "default.handlebars->29->1983",
3172 "default.handlebars->29->238"
3173 ]
3174 },
@@ -3189,7 +3189,7 @@
3189 "zh-chs": "添加设备组权限",
3190 "zh-cht": "新增裝置群權限",
3191 "xloc": [
3192 - "default.handlebars->29->1458"
3192 + "default.handlebars->29->1459"
3193 ]
3194 },
3195 {
@@ -3209,8 +3209,8 @@
3209 "zh-chs": "添加设备权限",
3210 "zh-cht": "新增裝置權限",
3211 "xloc": [
3212 - "default.handlebars->29->1463",
3213 - "default.handlebars->29->1465"
3212 + "default.handlebars->29->1464",
3213 + "default.handlebars->29->1466"
3214 ]
3215 },
3216 {
@@ -3307,7 +3307,7 @@
3307 "zh-chs": "添加成员身份",
3308 "zh-cht": "新增成員身份",
3309 "xloc": [
3310 - "default.handlebars->29->2013"
3310 + "default.handlebars->29->2015"
3311 ]
3312 },
3313 {
@@ -3347,8 +3347,8 @@
3347 "zh-chs": "添加安全密钥",
3348 "zh-cht": "新增安全密鑰",
3349 "xloc": [
3350 - "default.handlebars->29->1043",
3350 "default.handlebars->29->1044",
3351 + "default.handlebars->29->1045",
3352 "default.handlebars->29->149",
3353 "default.handlebars->29->151",
3354 "default.handlebars->29->154",
@@ -3373,7 +3373,7 @@
3373 "zh-cht": "新增用戶",
3374 "xloc": [
3375 "default-mobile.handlebars->9->412",
3376 - "default.handlebars->29->661"
3376 + "default.handlebars->29->662"
3377 ]
3378 },
3379 {
@@ -3393,7 +3393,7 @@
3393 "zh-chs": "添加用户设备权限",
3394 "zh-cht": "新增用戶裝置權限",
3395 "xloc": [
3396 - "default.handlebars->29->1468"
3396 + "default.handlebars->29->1469"
3397 ]
3398 },
3399 {
@@ -3413,10 +3413,10 @@
3413 "zh-chs": "添加用户组",
3414 "zh-cht": "新增用戶群",
3415 "xloc": [
3416 - "default.handlebars->29->1362",
3417 - "default.handlebars->29->1460",
3418 - "default.handlebars->29->1987",
3419 - "default.handlebars->29->662"
3416 + "default.handlebars->29->1363",
3417 + "default.handlebars->29->1461",
3418 + "default.handlebars->29->1989",
3419 + "default.handlebars->29->663"
3420 ]
3421 },
3422 {
@@ -3436,7 +3436,7 @@
3436 "zh-chs": "添加用户组设备权限",
3437 "zh-cht": "新增用戶群裝置權限",
3438 "xloc": [
3439 - "default.handlebars->29->1470"
3439 + "default.handlebars->29->1471"
3440 ]
3441 },
3442 {
@@ -3493,8 +3493,8 @@
3493 "zh-chs": "添加用户",
3494 "zh-cht": "新增用戶",
3495 "xloc": [
3496 - "default.handlebars->29->1361",
3497 - "default.handlebars->29->1858"
3496 + "default.handlebars->29->1362",
3497 + "default.handlebars->29->1860"
3498 ]
3499 },
3500 {
@@ -3514,7 +3514,7 @@
3514 "zh-chs": "将用户添加到设备组",
3515 "zh-cht": "將用戶新增到裝置群",
3516 "xloc": [
3517 - "default.handlebars->29->1457"
3517 + "default.handlebars->29->1458"
3518 ]
3519 },
3520 {
@@ -3534,7 +3534,7 @@
3534 "zh-chs": "将用户添加到用户组",
3535 "zh-cht": "將用戶新增到用戶群",
3536 "xloc": [
3537 - "default.handlebars->29->1891"
3537 + "default.handlebars->29->1893"
3538 ]
3539 },
3540 {
@@ -3651,7 +3651,7 @@
3651 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3652 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3653 "xloc": [
3654 - "default.handlebars->29->1365",
3654 + "default.handlebars->29->1366",
3655 "default.handlebars->29->283"
3656 ]
3657 },
@@ -3699,14 +3699,14 @@
3699 "zh-chs": "添加了身份验证应用程序",
3700 "zh-cht": "添加了身份驗證應用程序",
3701 "xloc": [
3702 - "default.handlebars->29->1670"
3702 + "default.handlebars->29->1671"
3703 ]
3704 },
3705 {
3706 "en": "Added device share {0} from {1} to {2}",
3707 "nl": "Apparaat delen {0} toegevoegd van {1} tot {2}",
3708 "xloc": [
3709 - "default.handlebars->29->1681"
3709 + "default.handlebars->29->1682"
3710 ]
3711 },
3712 {
@@ -3726,8 +3726,8 @@
3726 "zh-chs": "已将设备{0}添加到设备组{1}",
3727 "zh-cht": "已將設備{0}添加到設備組{1}",
3728 "xloc": [
3729 - "default.handlebars->29->1637",
3730 - "default.handlebars->29->1664"
3729 + "default.handlebars->29->1638",
3730 + "default.handlebars->29->1665"
3731 ]
3732 },
3733 {
@@ -3747,7 +3747,7 @@
3747 "zh-chs": "添加了安全密钥",
3748 "zh-cht": "添加了安全密鑰",
3749 "xloc": [
3750 - "default.handlebars->29->1675"
3750 + "default.handlebars->29->1676"
3751 ]
3752 },
3753 {
@@ -3767,7 +3767,7 @@
3767 "zh-chs": "已将用户组{0}添加到设备组{1}",
3768 "zh-cht": "已將用戶組{0}添加到設備組{1}",
3769 "xloc": [
3770 - "default.handlebars->29->1648"
3770 + "default.handlebars->29->1649"
3771 ]
3772 },
3773 {
@@ -3787,8 +3787,8 @@
3787 "zh-chs": "已将用户{0}添加到用户组{1}",
3788 "zh-cht": "已將用戶{0}添加到用戶組{1}",
3789 "xloc": [
3790 - "default.handlebars->29->1651",
3791 - "default.handlebars->29->1660"
3790 + "default.handlebars->29->1652",
3791 + "default.handlebars->29->1661"
3792 ]
3793 },
3794 {
@@ -3849,7 +3849,7 @@
3849 "zh-cht": "管理員控制模式(ACM)",
3850 "xloc": [
3851 "default-mobile.handlebars->9->372",
3852 - "default.handlebars->29->973"
3852 + "default.handlebars->29->974"
3853 ]
3854 },
3855 {
@@ -3870,7 +3870,7 @@
3870 "zh-cht": "管理員憑證",
3871 "xloc": [
3872 "default-mobile.handlebars->9->378",
3873 - "default.handlebars->29->979"
3873 + "default.handlebars->29->980"
3874 ]
3875 },
3876 {
@@ -3911,7 +3911,7 @@
3911 "zh-chs": "管理领域",
3912 "zh-cht": "管理領域",
3913 "xloc": [
3914 - "default.handlebars->29->1927"
3914 + "default.handlebars->29->1929"
3915 ]
3916 },
3917 {
@@ -3952,7 +3952,7 @@
3952 "zh-chs": "管理领域",
3953 "zh-cht": "管理領域",
3954 "xloc": [
3955 - "default.handlebars->29->1795"
3955 + "default.handlebars->29->1797"
3956 ]
3957 },
3958 {
@@ -3972,7 +3972,7 @@
3972 "zh-chs": "管理员",
3973 "zh-cht": "管理員",
3974 "xloc": [
3975 - "default.handlebars->29->1724"
3975 + "default.handlebars->29->1726"
3976 ]
3977 },
3978 {
@@ -3992,7 +3992,7 @@
3992 "zh-chs": "南非文",
3993 "zh-cht": "南非文",
3994 "xloc": [
3995 - "default.handlebars->29->1046"
3995 + "default.handlebars->29->1047"
3996 ]
3997 },
3998 {
@@ -4015,8 +4015,8 @@
4015 "default-mobile.handlebars->9->203",
4016 "default-mobile.handlebars->9->228",
4017 "default-mobile.handlebars->9->250",
4018 - "default.handlebars->29->1524",
4019 - "default.handlebars->29->1532",
4018 + "default.handlebars->29->1525",
4019 + "default.handlebars->29->1533",
4020 "default.handlebars->29->214",
4021 "default.handlebars->29->423",
4022 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4039,8 +4039,8 @@
4039 "zh-chs": "代理+英特尔AMT",
4040 "zh-cht": "代理+Intel&reg; AMT",
4041 "xloc": [
4042 - "default.handlebars->29->1526",
4043 - "default.handlebars->29->1534"
4042 + "default.handlebars->29->1527",
4043 + "default.handlebars->29->1535"
4044 ]
4045 },
4046 {
@@ -4081,7 +4081,7 @@
4081 "zh-cht": "代理控制台",
4082 "xloc": [
4083 "default-mobile.handlebars->9->449",
4084 - "default.handlebars->29->1478"
4084 + "default.handlebars->29->1479"
4085 ]
4086 },
4087 {
@@ -4101,7 +4101,7 @@
4101 "zh-chs": "代理错误计数器",
4102 "zh-cht": "代理錯誤計數器",
4103 "xloc": [
4104 - "default.handlebars->29->2056"
4104 + "default.handlebars->29->2058"
4105 ]
4106 },
4107 {
@@ -4204,7 +4204,7 @@
4204 "zh-chs": "代理时段",
4205 "zh-cht": "代理時段",
4206 "xloc": [
4207 - "default.handlebars->29->2072"
4207 + "default.handlebars->29->2074"
4208 ]
4209 },
4210 {
@@ -4225,7 +4225,7 @@
4225 "zh-cht": "代理標籤",
4226 "xloc": [
4227 "default-mobile.handlebars->9->249",
4228 - "default.handlebars->29->583"
4228 + "default.handlebars->29->584"
4229 ]
4230 },
4231 {
@@ -4245,7 +4245,7 @@
4245 "zh-chs": "代理类型",
4246 "zh-cht": "代理類型",
4247 "xloc": [
4248 - "default.handlebars->29->1530",
4248 + "default.handlebars->29->1531",
4249 "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4250 ]
4251 },
@@ -4266,7 +4266,7 @@
4266 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4267 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4268 "xloc": [
4269 - "default.handlebars->29->1634"
4269 + "default.handlebars->29->1635"
4270 ]
4271 },
4272 {
@@ -4287,8 +4287,8 @@
4287 "zh-cht": "代理已連接",
4288 "xloc": [
4289 "default.handlebars->29->163",
4290 - "default.handlebars->29->652",
4291 - "default.handlebars->29->653"
4290 + "default.handlebars->29->653",
4291 + "default.handlebars->29->654"
4292 ]
4293 },
4294 {
@@ -4328,7 +4328,7 @@
4328 "zh-chs": "代理离线",
4329 "zh-cht": "代理離線",
4330 "xloc": [
4331 - "default.handlebars->29->1008"
4331 + "default.handlebars->29->1009"
4332 ]
4333 },
4334 {
@@ -4348,7 +4348,7 @@
4348 "zh-chs": "代理在线",
4349 "zh-cht": "代理在線",
4350 "xloc": [
4351 - "default.handlebars->29->1007"
4351 + "default.handlebars->29->1008"
4352 ]
4353 },
4354 {
@@ -4356,7 +4356,7 @@
4356 "nl": "De agent wordt op een extern apparaat uitgevoerd met beperkte rechten.",
4357 "xloc": [
4358 "default.handlebars->29->161",
4359 - "default.handlebars->29->650"
4359 + "default.handlebars->29->651"
4360 ]
4361 },
4362 {
@@ -4376,7 +4376,7 @@
4376 "zh-chs": "代理",
4377 "zh-cht": "代理",
4378 "xloc": [
4379 - "default.handlebars->29->2088"
4379 + "default.handlebars->29->2090"
4380 ]
4381 },
4382 {
@@ -4396,7 +4396,7 @@
4396 "zh-chs": "阿尔巴尼亚文",
4397 "zh-cht": "阿爾巴尼亞文",
4398 "xloc": [
4399 - "default.handlebars->29->1047"
4399 + "default.handlebars->29->1048"
4400 ]
4401 },
4402 {
@@ -4439,7 +4439,7 @@
4439 "zh-chs": "全部可用",
4440 "zh-cht": "全部可用",
4441 "xloc": [
4442 - "default.handlebars->29->1687"
4442 + "default.handlebars->29->1689"
4443 ]
4444 },
4445 {
@@ -4476,7 +4476,7 @@
4476 "zh-chs": "所有事件",
4477 "zh-cht": "所有事件",
4478 "xloc": [
4479 - "default.handlebars->29->1685"
4479 + "default.handlebars->29->1687"
4480 ]
4481 },
4482 {
@@ -4496,9 +4496,9 @@
4496 "zh-chs": "全部聚焦",
4497 "zh-cht": "全部聚焦",
4498 "xloc": [
4499 - "default.handlebars->29->841",
4500 - "default.handlebars->29->843",
4501 - "default.handlebars->29->844"
4499 + "default.handlebars->29->842",
4500 + "default.handlebars->29->844",
4501 + "default.handlebars->29->845"
4502 ]
4503 },
4504 {
@@ -4518,8 +4518,8 @@
4518 "zh-chs": "允许用户管理此设备组和该组中的设备。",
4519 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4520 "xloc": [
4521 - "default.handlebars->29->1425",
4522 - "default.handlebars->29->1888"
4521 + "default.handlebars->29->1426",
4522 + "default.handlebars->29->1890"
4523 ]
4524 },
4525 {
@@ -4539,7 +4539,7 @@
4539 "zh-chs": "允许用户管理此设备。",
4540 "zh-cht": "允許用戶管理此裝置。",
4541 "xloc": [
4542 - "default.handlebars->29->1426"
4542 + "default.handlebars->29->1427"
4543 ]
4544 },
4545 {
@@ -4603,7 +4603,7 @@
4603 "zh-chs": "备用(F10 = ESC + 0)",
4604 "zh-cht": "備用(F10 = ESC + 0)",
4605 "xloc": [
4606 - "default.handlebars->29->878"
4606 + "default.handlebars->29->879"
4607 ]
4608 },
4609 {
@@ -4644,10 +4644,10 @@
4644 "zh-chs": "一直通知",
4645 "zh-cht": "一直通知",
4646 "xloc": [
4647 - "default.handlebars->29->1341",
4648 - "default.handlebars->29->1849",
4649 - "default.handlebars->29->1936",
4650 - "default.handlebars->29->598"
4647 + "default.handlebars->29->1342",
4648 + "default.handlebars->29->1851",
4649 + "default.handlebars->29->1938",
4650 + "default.handlebars->29->599"
4651 ]
4652 },
4653 {
@@ -4667,10 +4667,10 @@
4667 "zh-chs": "一直提示",
4668 "zh-cht": "一直提示",
4669 "xloc": [
4670 - "default.handlebars->29->1342",
4671 - "default.handlebars->29->1850",
4672 - "default.handlebars->29->1937",
4673 - "default.handlebars->29->599"
4670 + "default.handlebars->29->1343",
4671 + "default.handlebars->29->1852",
4672 + "default.handlebars->29->1939",
4673 + "default.handlebars->29->600"
4674 ]
4675 },
4676 {
@@ -4793,7 +4793,7 @@
4793 "zh-chs": "杀毒软件",
4794 "zh-cht": "防毒軟體",
4795 "xloc": [
4796 - "default.handlebars->29->589"
4796 + "default.handlebars->29->590"
4797 ]
4798 },
4799 {
@@ -4893,7 +4893,7 @@
4893 "zh-chs": "阿拉伯文(阿尔及利亚)",
4894 "zh-cht": "阿拉伯文(阿爾及利亞)",
4895 "xloc": [
4896 - "default.handlebars->29->1049"
4896 + "default.handlebars->29->1050"
4897 ]
4898 },
4899 {
@@ -4913,7 +4913,7 @@
4913 "zh-chs": "阿拉伯文(巴林)",
4914 "zh-cht": "阿拉伯文(巴林)",
4915 "xloc": [
4916 - "default.handlebars->29->1050"
4916 + "default.handlebars->29->1051"
4917 ]
4918 },
4919 {
@@ -4933,7 +4933,7 @@
4933 "zh-chs": "阿拉伯文(埃及)",
4934 "zh-cht": "阿拉伯文(埃及)",
4935 "xloc": [
4936 - "default.handlebars->29->1051"
4936 + "default.handlebars->29->1052"
4937 ]
4938 },
4939 {
@@ -4953,7 +4953,7 @@
4953 "zh-chs": "阿拉伯文(伊拉克)",
4954 "zh-cht": "阿拉伯文(伊拉克)",
4955 "xloc": [
4956 - "default.handlebars->29->1052"
4956 + "default.handlebars->29->1053"
4957 ]
4958 },
4959 {
@@ -4973,7 +4973,7 @@
4973 "zh-chs": "阿拉伯文(约旦)",
4974 "zh-cht": "阿拉伯文(約旦)",
4975 "xloc": [
4976 - "default.handlebars->29->1053"
4976 + "default.handlebars->29->1054"
4977 ]
4978 },
4979 {
@@ -4993,7 +4993,7 @@
4993 "zh-chs": "阿拉伯文(科威特)",
4994 "zh-cht": "阿拉伯文(科威特)",
4995 "xloc": [
4996 - "default.handlebars->29->1054"
4996 + "default.handlebars->29->1055"
4997 ]
4998 },
4999 {
@@ -5013,7 +5013,7 @@
5013 "zh-chs": "阿拉伯文(黎巴嫩)",
5014 "zh-cht": "阿拉伯文(黎巴嫩)",
5015 "xloc": [
5016 - "default.handlebars->29->1055"
5016 + "default.handlebars->29->1056"
5017 ]
5018 },
5019 {
@@ -5033,7 +5033,7 @@
5033 "zh-chs": "阿拉伯文(利比亚)",
5034 "zh-cht": "阿拉伯文(利比亞)",
5035 "xloc": [
5036 - "default.handlebars->29->1056"
5036 + "default.handlebars->29->1057"
5037 ]
5038 },
5039 {
@@ -5053,7 +5053,7 @@
5053 "zh-chs": "阿拉伯文(摩洛哥)",
5054 "zh-cht": "阿拉伯文(摩洛哥)",
5055 "xloc": [
5056 - "default.handlebars->29->1057"
5056 + "default.handlebars->29->1058"
5057 ]
5058 },
5059 {
@@ -5073,7 +5073,7 @@
5073 "zh-chs": "阿拉伯文(阿曼)",
5074 "zh-cht": "阿拉伯文(阿曼)",
5075 "xloc": [
5076 - "default.handlebars->29->1058"
5076 + "default.handlebars->29->1059"
5077 ]
5078 },
5079 {
@@ -5093,7 +5093,7 @@
5093 "zh-chs": "阿拉伯文(卡塔尔)",
5094 "zh-cht": "阿拉伯文(卡塔爾)",
5095 "xloc": [
5096 - "default.handlebars->29->1059"
5096 + "default.handlebars->29->1060"
5097 ]
5098 },
5099 {
@@ -5113,7 +5113,7 @@
5113 "zh-chs": "阿拉伯文(沙特阿拉伯)",
5114 "zh-cht": "阿拉伯文(沙特阿拉伯)",
5115 "xloc": [
5116 - "default.handlebars->29->1060"
5116 + "default.handlebars->29->1061"
5117 ]
5118 },
5119 {
@@ -5133,7 +5133,7 @@
5133 "zh-chs": "阿拉伯文(标准)",
5134 "zh-cht": "阿拉伯文(標準)",
5135 "xloc": [
5136 - "default.handlebars->29->1048"
5136 + "default.handlebars->29->1049"
5137 ]
5138 },
5139 {
@@ -5153,7 +5153,7 @@
5153 "zh-chs": "阿拉伯文(叙利亚)",
5154 "zh-cht": "阿拉伯文(敘利亞)",
5155 "xloc": [
5156 - "default.handlebars->29->1061"
5156 + "default.handlebars->29->1062"
5157 ]
5158 },
5159 {
@@ -5173,7 +5173,7 @@
5173 "zh-chs": "阿拉伯文(突尼斯)",
5174 "zh-cht": "阿拉伯文(突尼斯)",
5175 "xloc": [
5176 - "default.handlebars->29->1062"
5176 + "default.handlebars->29->1063"
5177 ]
5178 },
5179 {
@@ -5193,7 +5193,7 @@
5193 "zh-chs": "阿拉伯文(阿联酋)",
5194 "zh-cht": "阿拉伯文(阿聯酋)",
5195 "xloc": [
5196 - "default.handlebars->29->1063"
5196 + "default.handlebars->29->1064"
5197 ]
5198 },
5199 {
@@ -5213,7 +5213,7 @@
5213 "zh-chs": "阿拉伯文(也门)",
5214 "zh-cht": "阿拉伯文(也門)",
5215 "xloc": [
5216 - "default.handlebars->29->1064"
5216 + "default.handlebars->29->1065"
5217 ]
5218 },
5219 {
@@ -5233,7 +5233,7 @@
5233 "zh-chs": "阿拉贡文",
5234 "zh-cht": "阿拉貢文",
5235 "xloc": [
5236 - "default.handlebars->29->1065"
5236 + "default.handlebars->29->1066"
5237 ]
5238 },
5239 {
@@ -5254,7 +5254,7 @@
5254 "zh-cht": "結構",
5255 "xloc": [
5256 "default-mobile.handlebars->9->342",
5257 - "default.handlebars->29->933"
5257 + "default.handlebars->29->934"
5258 ]
5259 },
5260 {
@@ -5295,7 +5295,7 @@
5295 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5296 "xloc": [
5297 "default-mobile.handlebars->9->418",
5298 - "default.handlebars->29->1401"
5298 + "default.handlebars->29->1402"
5299 ]
5300 },
5301 {
@@ -5315,7 +5315,7 @@
5315 "zh-chs": "您确定要删除节点{0}吗?",
5316 "zh-cht": "你確定要刪除節點{0}嗎?",
5317 "xloc": [
5318 - "default.handlebars->29->788"
5318 + "default.handlebars->29->789"
5319 ]
5320 },
5321 {
@@ -5335,7 +5335,7 @@
5335 "zh-chs": "您确定要卸载所选代理吗?",
5336 "zh-cht": "你確定要卸載所選代理嗎?",
5337 "xloc": [
5338 - "default.handlebars->29->777"
5338 + "default.handlebars->29->778"
5339 ]
5340 },
5341 {
@@ -5355,7 +5355,7 @@
5355 "zh-chs": "您确定要卸载所选的{0}代理吗?",
5356 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
5357 "xloc": [
5358 - "default.handlebars->29->776"
5358 + "default.handlebars->29->777"
5359 ]
5360 },
5361 {
@@ -5375,7 +5375,7 @@
5375 "zh-chs": "您确定要{0}插件吗:{1}",
5376 "zh-cht": "你確定要{0}外掛嗎:{1}",
5377 "xloc": [
5378 - "default.handlebars->29->2128"
5378 + "default.handlebars->29->2130"
5379 ]
5380 },
5381 {
@@ -5395,7 +5395,7 @@
5395 "zh-chs": "亚美尼亚文",
5396 "zh-cht": "亞美尼亞文",
5397 "xloc": [
5398 - "default.handlebars->29->1066"
5398 + "default.handlebars->29->1067"
5399 ]
5400 },
5401 {
@@ -5455,7 +5455,7 @@
5455 "zh-chs": "阿萨姆文",
5456 "zh-cht": "阿薩姆文",
5457 "xloc": [
5458 - "default.handlebars->29->1067"
5458 + "default.handlebars->29->1068"
5459 ]
5460 },
5461 {
@@ -5475,7 +5475,7 @@
5475 "zh-chs": "阿斯图里亚斯文",
5476 "zh-cht": "阿斯圖里亞斯文",
5477 "xloc": [
5478 - "default.handlebars->29->1068"
5478 + "default.handlebars->29->1069"
5479 ]
5480 },
5481 {
@@ -5495,7 +5495,7 @@
5495 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5496 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5497 "xloc": [
5498 - "default.handlebars->29->1603"
5498 + "default.handlebars->29->1604"
5499 ]
5500 },
5501 {
@@ -5515,7 +5515,7 @@
5515 "zh-chs": "认证软件",
5516 "zh-cht": "認證軟體",
5517 "xloc": [
5518 - "default.handlebars->29->1940"
5518 + "default.handlebars->29->1942"
5519 ]
5520 },
5521 {
@@ -5539,8 +5539,8 @@
5539 "default-mobile.handlebars->9->52",
5540 "default-mobile.handlebars->9->71",
5541 "default-mobile.handlebars->9->73",
5542 - "default.handlebars->29->1032",
5543 - "default.handlebars->29->1034",
5542 + "default.handlebars->29->1033",
5543 + "default.handlebars->29->1035",
5544 "default.handlebars->29->125",
5545 "default.handlebars->29->130"
5546 ]
@@ -5622,7 +5622,7 @@
5622 "zh-chs": "自动删除",
5623 "zh-cht": "自動刪除",
5624 "xloc": [
5625 - "default.handlebars->29->1328"
5625 + "default.handlebars->29->1329"
5626 ]
5627 },
5628 {
@@ -5686,7 +5686,7 @@
5686 "zh-chs": "可用內存",
5687 "zh-cht": "可用內存",
5688 "xloc": [
5689 - "default.handlebars->29->2081"
5689 + "default.handlebars->29->2083"
5690 ]
5691 },
5692 {
@@ -5706,7 +5706,7 @@
5706 "zh-chs": "阿塞拜疆文",
5707 "zh-cht": "阿塞拜疆文",
5708 "xloc": [
5709 - "default.handlebars->29->1069"
5709 + "default.handlebars->29->1070"
5710 ]
5711 },
5712 {
@@ -5727,7 +5727,7 @@
5727 "zh-cht": "的BIOS",
5728 "xloc": [
5729 "default-mobile.handlebars->9->384",
5730 - "default.handlebars->29->985"
5730 + "default.handlebars->29->986"
5731 ]
5732 },
5733 {
@@ -5842,8 +5842,8 @@
5842 "zh-chs": "背景与互动",
5843 "zh-cht": "背景與互動",
5844 "xloc": [
5845 - "default.handlebars->29->1507",
5846 - "default.handlebars->29->1514",
5845 + "default.handlebars->29->1508",
5846 + "default.handlebars->29->1515",
5847 "default.handlebars->29->336",
5848 "default.handlebars->29->350"
5849 ]
@@ -5865,8 +5865,8 @@
5865 "zh-chs": "仅背景",
5866 "zh-cht": "僅背景",
5867 "xloc": [
5868 - "default.handlebars->29->1508",
5869 - "default.handlebars->29->1515",
5868 + "default.handlebars->29->1509",
5869 + "default.handlebars->29->1516",
5870 "default.handlebars->29->337",
5871 "default.handlebars->29->351",
5872 "default.handlebars->29->365"
@@ -5909,7 +5909,7 @@
5909 "zh-chs": "备用码",
5910 "zh-cht": "備用碼",
5911 "xloc": [
5912 - "default.handlebars->29->1942"
5912 + "default.handlebars->29->1944"
5913 ]
5914 },
5915 {
@@ -5929,7 +5929,7 @@
5929 "zh-chs": "错误的签名",
5930 "zh-cht": "錯誤的簽名",
5931 "xloc": [
5932 - "default.handlebars->29->2063"
5932 + "default.handlebars->29->2065"
5933 ]
5934 },
5935 {
@@ -5949,7 +5949,7 @@
5949 "zh-chs": "错误的网络证书",
5950 "zh-cht": "錯誤的網絡憑證",
5951 "xloc": [
5952 - "default.handlebars->29->2062"
5952 + "default.handlebars->29->2064"
5953 ]
5954 },
5955 {
@@ -5969,13 +5969,13 @@
5969 "zh-chs": "巴斯克",
5970 "zh-cht": "巴斯克",
5971 "xloc": [
5972 - "default.handlebars->29->1070"
5972 + "default.handlebars->29->1071"
5973 ]
5974 },
5975 {
5976 "en": "Batch File Upload",
5977 "xloc": [
5978 - "default.handlebars->29->479"
5978 + "default.handlebars->29->480"
5979 ]
5980 },
5981 {
@@ -5998,6 +5998,12 @@
5998 "default.handlebars->container->column_l->p4->3->1->0->3->1->5"
5999 ]
6000 },
6001 + {
6002 + "en": "Batch upload of {0} file(s) to folder {1}",
6003 + "xloc": [
6004 + "default.handlebars->29->1684"
6005 + ]
6006 + },
6007 {
6008 "cs": "běloruština",
6009 "de": "Belarussisch",
@@ -6015,7 +6021,7 @@
6021 "zh-chs": "白俄罗斯文",
6022 "zh-cht": "白俄羅斯文",
6023 "xloc": [
6018 - "default.handlebars->29->1072"
6024 + "default.handlebars->29->1073"
6025 ]
6026 },
6027 {
@@ -6035,7 +6041,7 @@
6041 "zh-chs": "孟加拉",
6042 "zh-cht": "孟加拉",
6043 "xloc": [
6038 - "default.handlebars->29->1073"
6044 + "default.handlebars->29->1074"
6045 ]
6046 },
6047 {
@@ -6078,7 +6084,7 @@
6084 "zh-chs": "波斯尼亚文",
6085 "zh-cht": "波斯尼亞文",
6086 "xloc": [
6081 - "default.handlebars->29->1074"
6087 + "default.handlebars->29->1075"
6088 ]
6089 },
6090 {
@@ -6098,7 +6104,7 @@
6104 "zh-chs": "布列塔尼",
6105 "zh-cht": "布列塔尼",
6106 "xloc": [
6101 - "default.handlebars->29->1075"
6107 + "default.handlebars->29->1076"
6108 ]
6109 },
6110 {
@@ -6118,7 +6124,7 @@
6124 "zh-chs": "广播",
6125 "zh-cht": "廣播",
6126 "xloc": [
6121 - "default.handlebars->29->1856",
6127 + "default.handlebars->29->1858",
6128 "default.handlebars->container->column_l->p4->3->1->0->3->1"
6129 ]
6130 },
@@ -6139,7 +6145,7 @@
6145 "zh-chs": "广播消息",
6146 "zh-cht": "廣播消息",
6147 "xloc": [
6142 - "default.handlebars->29->1777"
6148 + "default.handlebars->29->1779"
6149 ]
6150 },
6151 {
@@ -6159,7 +6165,7 @@
6165 "zh-chs": "向所有连接的用户广播消息。",
6166 "zh-cht": "向所有連接的用戶廣播消息。",
6167 "xloc": [
6162 - "default.handlebars->29->1772"
6168 + "default.handlebars->29->1774"
6169 ]
6170 },
6171 {
@@ -6179,7 +6185,7 @@
6185 "zh-chs": "保加利亚文",
6186 "zh-cht": "保加利亞文",
6187 "xloc": [
6182 - "default.handlebars->29->1071"
6188 + "default.handlebars->29->1072"
6189 ]
6190 },
6191 {
@@ -6199,7 +6205,7 @@
6205 "zh-chs": "缅甸文",
6206 "zh-cht": "緬甸文",
6207 "xloc": [
6202 - "default.handlebars->29->1076"
6208 + "default.handlebars->29->1077"
6209 ]
6210 },
6211 {
@@ -6220,7 +6226,7 @@
6226 "zh-cht": "CCM",
6227 "xloc": [
6228 "default-mobile.handlebars->9->235",
6223 - "default.handlebars->29->565"
6229 + "default.handlebars->29->566"
6230 ]
6231 },
6232 {
@@ -6262,7 +6268,7 @@
6268 "zh-chs": "CIRA服务器",
6269 "zh-cht": "CIRA伺服器",
6270 "xloc": [
6265 - "default.handlebars->29->2116"
6271 + "default.handlebars->29->2118"
6272 ]
6273 },
6274 {
@@ -6282,14 +6288,14 @@
6288 "zh-chs": "CIRA服务器命令",
6289 "zh-cht": "CIRA伺服器指令",
6290 "xloc": [
6285 - "default.handlebars->29->2117"
6291 + "default.handlebars->29->2119"
6292 ]
6293 },
6294 {
6295 "en": "CIRA setup",
6296 "nl": "CIRA setup",
6297 "xloc": [
6292 - "default.handlebars->29->1392"
6298 + "default.handlebars->29->1393"
6299 ]
6300 },
6301 {
@@ -6310,7 +6316,7 @@
6316 "zh-cht": "CPU",
6317 "xloc": [
6318 "default-mobile.handlebars->9->390",
6313 - "default.handlebars->29->991"
6319 + "default.handlebars->29->992"
6320 ]
6321 },
6322 {
@@ -6330,7 +6336,7 @@
6336 "zh-chs": "CPU负载",
6337 "zh-cht": "CPU負載",
6338 "xloc": [
6333 - "default.handlebars->29->2077"
6339 + "default.handlebars->29->2079"
6340 ]
6341 },
6342 {
@@ -6350,7 +6356,7 @@
6356 "zh-chs": "最近15分钟的CPU负载",
6357 "zh-cht": "最近15分鐘的CPU負載",
6358 "xloc": [
6353 - "default.handlebars->29->2080"
6359 + "default.handlebars->29->2082"
6360 ]
6361 },
6362 {
@@ -6370,7 +6376,7 @@
6376 "zh-chs": "最近5分钟的CPU负载",
6377 "zh-cht": "最近5分鐘的CPU負載",
6378 "xloc": [
6373 - "default.handlebars->29->2079"
6379 + "default.handlebars->29->2081"
6380 ]
6381 },
6382 {
@@ -6390,7 +6396,7 @@
6396 "zh-chs": "最近一分钟的CPU负载",
6397 "zh-cht": "最近一分鐘的CPU負載",
6398 "xloc": [
6393 - "default.handlebars->29->2078"
6399 + "default.handlebars->29->2080"
6400 ]
6401 },
6402 {
@@ -6410,8 +6416,8 @@
6416 "zh-chs": "CR+LF",
6417 "zh-cht": "CR+LF",
6418 "xloc": [
6413 - "default.handlebars->29->871",
6414 - "default.handlebars->29->880",
6419 + "default.handlebars->29->872",
6420 + "default.handlebars->29->881",
6421 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
6422 ]
6423 },
@@ -6432,7 +6438,7 @@
6438 "zh-chs": "CSV",
6439 "zh-cht": "CSV",
6440 "xloc": [
6435 - "default.handlebars->29->1695"
6441 + "default.handlebars->29->1697"
6442 ]
6443 },
6444 {
@@ -6452,9 +6458,9 @@
6458 "zh-chs": "CSV格式",
6459 "zh-cht": "CSV格式",
6460 "xloc": [
6455 - "default.handlebars->29->1699",
6456 - "default.handlebars->29->1764",
6457 - "default.handlebars->29->481"
6461 + "default.handlebars->29->1701",
6462 + "default.handlebars->29->1766",
6463 + "default.handlebars->29->482"
6464 ]
6465 },
6466 {
@@ -6474,7 +6480,7 @@
6480 "zh-chs": "呼叫错误",
6481 "zh-cht": "呼叫錯誤",
6482 "xloc": [
6477 - "default.handlebars->29->2129"
6483 + "default.handlebars->29->2131"
6484 ]
6485 },
6486 {
@@ -6496,7 +6502,7 @@
6502 "xloc": [
6503 "default-mobile.handlebars->9->82",
6504 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
6499 - "default.handlebars->29->1306",
6505 + "default.handlebars->29->1307",
6506 "default.handlebars->container->dialog->idx_dlgButtonBar",
6507 "desktop.handlebars->p11->dialog->idx_dlgButtonBar",
6508 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6526,9 +6532,9 @@
6532 "default-mobile.handlebars->9->395",
6533 "default-mobile.handlebars->9->400",
6534 "default-mobile.handlebars->9->402",
6529 - "default.handlebars->29->1001",
6530 - "default.handlebars->29->1003",
6531 - "default.handlebars->29->996"
6535 + "default.handlebars->29->1002",
6536 + "default.handlebars->29->1004",
6537 + "default.handlebars->29->997"
6538 ]
6539 },
6540 {
@@ -6549,7 +6555,7 @@
6555 "zh-cht": "容量/速度",
6556 "xloc": [
6557 "default-mobile.handlebars->9->393",
6552 - "default.handlebars->29->994"
6558 + "default.handlebars->29->995"
6559 ]
6560 },
6561 {
@@ -6569,7 +6575,7 @@
6575 "zh-chs": "加泰罗尼亚文",
6576 "zh-cht": "加泰羅尼亞文",
6577 "xloc": [
6572 - "default.handlebars->29->1077"
6578 + "default.handlebars->29->1078"
6579 ]
6580 },
6581 {
@@ -6589,7 +6595,7 @@
6595 "zh-chs": "在这里为中心显示地图",
6596 "zh-cht": "在這裡為中心顯示地圖",
6597 "xloc": [
6592 - "default.handlebars->29->527"
6598 + "default.handlebars->29->528"
6599 ]
6600 },
6601 {
@@ -6609,7 +6615,7 @@
6615 "zh-chs": "查莫罗",
6616 "zh-cht": "查莫羅",
6617 "xloc": [
6612 - "default.handlebars->29->1078"
6618 + "default.handlebars->29->1079"
6619 ]
6620 },
6621 {
@@ -6651,7 +6657,7 @@
6657 "zh-chs": "更改{0}的电邮",
6658 "zh-cht": "更改{0}的電郵",
6659 "xloc": [
6654 - "default.handlebars->29->1970"
6660 + "default.handlebars->29->1972"
6661 ]
6662 },
6663 {
@@ -6671,9 +6677,9 @@
6677 "zh-chs": "更改组",
6678 "zh-cht": "更改群",
6679 "xloc": [
6674 - "default.handlebars->29->627",
6675 - "default.handlebars->29->785",
6676 - "default.handlebars->29->786"
6680 + "default.handlebars->29->628",
6681 + "default.handlebars->29->786",
6682 + "default.handlebars->29->787"
6683 ]
6684 },
6685 {
@@ -6694,8 +6700,8 @@
6700 "zh-cht": "更改密碼",
6701 "xloc": [
6702 "default-mobile.handlebars->9->90",
6697 - "default.handlebars->29->1273",
6698 - "default.handlebars->29->1957"
6703 + "default.handlebars->29->1274",
6704 + "default.handlebars->29->1959"
6705 ]
6706 },
6707 {
@@ -6715,7 +6721,7 @@
6721 "zh-chs": "更改{0}的密码",
6722 "zh-cht": "更改{0}的密碼",
6723 "xloc": [
6718 - "default.handlebars->29->1977"
6724 + "default.handlebars->29->1979"
6725 ]
6726 },
6727 {
@@ -6735,7 +6741,7 @@
6741 "zh-chs": "更改{0}的真实名称",
6742 "zh-cht": "更改{0}的真實名稱",
6743 "xloc": [
6738 - "default.handlebars->29->1965"
6744 + "default.handlebars->29->1967"
6745 ]
6746 },
6747 {
@@ -6817,7 +6823,7 @@
6823 "zh-chs": "更改该用户的密码",
6824 "zh-cht": "更改該用戶的密碼",
6825 "xloc": [
6820 - "default.handlebars->29->1956"
6826 + "default.handlebars->29->1958"
6827 ]
6828 },
6829 {
@@ -6857,7 +6863,7 @@
6863 "zh-chs": "在此处更改您的帐户电邮地址。",
6864 "zh-cht": "在此處更改你的帳戶電郵地址。",
6865 "xloc": [
6860 - "default.handlebars->29->1260"
6866 + "default.handlebars->29->1261"
6867 ]
6868 },
6869 {
@@ -6877,7 +6883,7 @@
6883 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
6884 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
6885 "xloc": [
6880 - "default.handlebars->29->1266"
6886 + "default.handlebars->29->1267"
6887 ]
6888 },
6889 {
@@ -6897,7 +6903,7 @@
6903 "zh-chs": "更改帐户凭据",
6904 "zh-cht": "帳戶憑證已更改",
6905 "xloc": [
6900 - "default.handlebars->29->1655"
6906 + "default.handlebars->29->1656"
6907 ]
6908 },
6909 {
@@ -6917,7 +6923,7 @@
6923 "zh-chs": "{1}组中的设备{0}已更改:{2}",
6924 "zh-cht": "{1}組中的設備{0}已更改:{2}",
6925 "xloc": [
6920 - "default.handlebars->29->1639"
6926 + "default.handlebars->29->1640"
6927 ]
6928 },
6929 {
@@ -6937,7 +6943,7 @@
6943 "zh-chs": "语言从{1}更改为{2}",
6944 "zh-cht": "語言從{1}更改為{2}",
6945 "xloc": [
6940 - "default.handlebars->29->1583"
6946 + "default.handlebars->29->1584"
6947 ]
6948 },
6949 {
@@ -6957,8 +6963,8 @@
6963 "zh-chs": "已更改{0}的用户设备权限",
6964 "zh-cht": "已更改{0}的用戶設備權限",
6965 "xloc": [
6960 - "default.handlebars->29->1641",
6961 - "default.handlebars->29->1662"
6966 + "default.handlebars->29->1642",
6967 + "default.handlebars->29->1663"
6968 ]
6969 },
6970 {
@@ -6978,7 +6984,7 @@
6984 "zh-chs": "更改语言将需要刷新页面。",
6985 "zh-cht": "更改語言將需要刷新頁面。",
6986 "xloc": [
6981 - "default.handlebars->29->1245"
6987 + "default.handlebars->29->1246"
6988 ]
6989 },
6990 {
@@ -6998,9 +7004,9 @@
7004 "zh-chs": "聊天",
7005 "zh-cht": "聊天",
7006 "xloc": [
7001 - "default.handlebars->29->1716",
7002 - "default.handlebars->29->685",
7003 - "default.handlebars->29->706"
7007 + "default.handlebars->29->1718",
7008 + "default.handlebars->29->686",
7009 + "default.handlebars->29->707"
7010 ]
7011 },
7012 {
@@ -7022,8 +7028,8 @@
7028 "xloc": [
7029 "default-mobile.handlebars->9->439",
7030 "default-mobile.handlebars->9->459",
7025 - "default.handlebars->29->1453",
7026 - "default.handlebars->29->1489"
7031 + "default.handlebars->29->1454",
7032 + "default.handlebars->29->1490"
7033 ]
7034 },
7035 {
@@ -7063,7 +7069,7 @@
7069 "zh-chs": "车臣",
7070 "zh-cht": "車臣",
7071 "xloc": [
7066 - "default.handlebars->29->1079"
7072 + "default.handlebars->29->1080"
7073 ]
7074 },
7075 {
@@ -7163,8 +7169,8 @@
7169 "zh-chs": "检查...",
7170 "zh-cht": "檢查...",
7171 "xloc": [
7166 - "default.handlebars->29->1045",
7167 - "default.handlebars->29->2123"
7172 + "default.handlebars->29->1046",
7173 + "default.handlebars->29->2125"
7174 ]
7175 },
7176 {
@@ -7184,7 +7190,7 @@
7190 "zh-chs": "中文",
7191 "zh-cht": "中文",
7192 "xloc": [
7187 - "default.handlebars->29->1080"
7193 + "default.handlebars->29->1081"
7194 ]
7195 },
7196 {
@@ -7204,7 +7210,7 @@
7210 "zh-chs": "中文(香港)",
7211 "zh-cht": "中文(香港)",
7212 "xloc": [
7207 - "default.handlebars->29->1081"
7213 + "default.handlebars->29->1082"
7214 ]
7215 },
7216 {
@@ -7224,7 +7230,7 @@
7230 "zh-chs": "中文(中国)",
7231 "zh-cht": "中文(中國)",
7232 "xloc": [
7227 - "default.handlebars->29->1082"
7233 + "default.handlebars->29->1083"
7234 ]
7235 },
7236 {
@@ -7244,7 +7250,7 @@
7250 "zh-chs": "简体中文",
7251 "zh-cht": "簡體中文",
7252 "xloc": [
7247 - "default.handlebars->29->1242"
7253 + "default.handlebars->29->1243"
7254 ]
7255 },
7256 {
@@ -7264,7 +7270,7 @@
7270 "zh-chs": "中文(新加坡)",
7271 "zh-cht": "中文(新加坡)",
7272 "xloc": [
7267 - "default.handlebars->29->1083"
7273 + "default.handlebars->29->1084"
7274 ]
7275 },
7276 {
@@ -7284,7 +7290,7 @@
7290 "zh-chs": "中文(台湾)",
7291 "zh-cht": "中文(台灣)",
7292 "xloc": [
7287 - "default.handlebars->29->1084"
7293 + "default.handlebars->29->1085"
7294 ]
7295 },
7296 {
@@ -7304,7 +7310,7 @@
7310 "zh-chs": "繁体中文",
7311 "zh-cht": "繁體中文",
7312 "xloc": [
7307 - "default.handlebars->29->1243"
7313 + "default.handlebars->29->1244"
7314 ]
7315 },
7316 {
@@ -7345,7 +7351,7 @@
7351 "zh-chs": "楚瓦什",
7352 "zh-cht": "楚瓦什",
7353 "xloc": [
7348 - "default.handlebars->29->1085"
7354 + "default.handlebars->29->1086"
7355 ]
7356 },
7357 {
@@ -7388,11 +7394,11 @@
7394 "default-mobile.handlebars->9->330",
7395 "default-mobile.handlebars->9->332",
7396 "default-mobile.handlebars->9->59",
7391 - "default.handlebars->29->1577",
7392 - "default.handlebars->29->910",
7393 - "default.handlebars->29->912",
7394 - "default.handlebars->29->914",
7395 - "default.handlebars->29->916",
7397 + "default.handlebars->29->1578",
7398 + "default.handlebars->29->911",
7399 + "default.handlebars->29->913",
7400 + "default.handlebars->29->915",
7401 + "default.handlebars->29->917",
7402 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7403 "default.handlebars->container->column_l->p41->3->1",
7404 "messenger.handlebars->xbottom"
@@ -7435,7 +7441,7 @@
7441 "zh-chs": "全部清除",
7442 "zh-cht": "全部清除",
7443 "xloc": [
7438 - "default.handlebars->29->2050"
7444 + "default.handlebars->29->2052"
7445 ]
7446 },
7447 {
@@ -7463,7 +7469,7 @@
7469 "zh-chs": "清除核心",
7470 "zh-cht": "清除核心",
7471 "xloc": [
7466 - "default.handlebars->29->1017"
7472 + "default.handlebars->29->1018"
7473 ]
7474 },
7475 {
@@ -7503,7 +7509,7 @@
7509 "zh-chs": "清除此通知",
7510 "zh-cht": "清除此通知",
7511 "xloc": [
7506 - "default.handlebars->29->2049"
7512 + "default.handlebars->29->2051"
7513 ]
7514 },
7515 {
@@ -7563,8 +7569,8 @@
7569 "zh-chs": "单击此处编辑设备组名称",
7570 "zh-cht": "單擊此處編輯裝置群名稱",
7571 "xloc": [
7566 - "default.handlebars->29->1317",
7567 - "default.handlebars->29->1528"
7572 + "default.handlebars->29->1318",
7573 + "default.handlebars->29->1529"
7574 ]
7575 },
7576 {
@@ -7584,7 +7590,7 @@
7590 "zh-chs": "单击此处编辑服务器端设备名称",
7591 "zh-cht": "單擊此處編輯伺服器端裝置名稱",
7592 "xloc": [
7587 - "default.handlebars->29->543"
7593 + "default.handlebars->29->544"
7594 ]
7595 },
7596 {
@@ -7604,7 +7610,7 @@
7610 "zh-chs": "单击此处编辑用户组名称",
7611 "zh-cht": "單擊此處編輯用戶群名稱",
7612 "xloc": [
7607 - "default.handlebars->29->1833"
7613 + "default.handlebars->29->1835"
7614 ]
7615 },
7616 {
@@ -7665,7 +7671,7 @@
7671 "zh-cht": "單擊確定將驗證電郵發送到:",
7672 "xloc": [
7673 "default-mobile.handlebars->9->75",
7668 - "default.handlebars->29->1257"
7674 + "default.handlebars->29->1258"
7675 ]
7676 },
7677 {
@@ -7706,7 +7712,7 @@
7712 "zh-cht": "客戶端控制模式(CCM)",
7713 "xloc": [
7714 "default-mobile.handlebars->9->371",
7709 - "default.handlebars->29->972"
7715 + "default.handlebars->29->973"
7716 ]
7717 },
7718 {
@@ -7726,7 +7732,7 @@
7732 "zh-chs": "客户编号",
7733 "zh-cht": "客戶編號",
7734 "xloc": [
7729 - "default.handlebars->29->1299"
7735 + "default.handlebars->29->1300"
7736 ]
7737 },
7738 {
@@ -7746,7 +7752,7 @@
7752 "zh-chs": "客户端启动的远程访问",
7753 "zh-cht": "客戶端啟動的遠程訪問",
7754 "xloc": [
7749 - "default.handlebars->29->1391"
7755 + "default.handlebars->29->1392"
7756 ]
7757 },
7758 {
@@ -7766,7 +7772,7 @@
7772 "zh-chs": "客户机密",
7773 "zh-cht": "客戶機密",
7774 "xloc": [
7769 - "default.handlebars->29->1300"
7775 + "default.handlebars->29->1301"
7776 ]
7777 },
7778 {
@@ -7810,7 +7816,7 @@
7816 "default-mobile.handlebars->9->57",
7817 "default.handlebars->29->137",
7818 "default.handlebars->29->145",
7813 - "default.handlebars->29->862"
7819 + "default.handlebars->29->863"
7820 ]
7821 },
7822 {
@@ -7830,7 +7836,7 @@
7836 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
7837 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
7838 "xloc": [
7833 - "default.handlebars->29->1588"
7839 + "default.handlebars->29->1589"
7840 ]
7841 },
7842 {
@@ -7914,9 +7920,9 @@
7920 "nl": "Opdrachten",
7921 "xloc": [
7922 "default-mobile.handlebars->9->461",
7917 - "default.handlebars->29->1491",
7918 - "default.handlebars->29->687",
7919 - "default.handlebars->29->708"
7923 + "default.handlebars->29->1492",
7924 + "default.handlebars->29->688",
7925 + "default.handlebars->29->709"
7926 ]
7927 },
7928 {
@@ -7936,8 +7942,8 @@
7942 "zh-chs": "通用设备组",
7943 "zh-cht": "通用裝置群",
7944 "xloc": [
7939 - "default.handlebars->29->1864",
7940 - "default.handlebars->29->1982"
7945 + "default.handlebars->29->1866",
7946 + "default.handlebars->29->1984"
7947 ]
7948 },
7949 {
@@ -7957,8 +7963,8 @@
7963 "zh-chs": "通用设备",
7964 "zh-cht": "通用裝置",
7965 "xloc": [
7960 - "default.handlebars->29->1870",
7961 - "default.handlebars->29->1994"
7966 + "default.handlebars->29->1872",
7967 + "default.handlebars->29->1996"
7968 ]
7969 },
7970 {
@@ -7978,7 +7984,7 @@
7984 "zh-chs": "压缩档案...",
7985 "zh-cht": "壓縮檔案...",
7986 "xloc": [
7981 - "default.handlebars->29->887"
7987 + "default.handlebars->29->888"
7988 ]
7989 },
7990 {
@@ -7996,11 +8002,7 @@
8002 "ru": "Подтвердить {0} из {1} записей в это расположение?",
8003 "tr": "Bu konuma {0} / {1} giriş {2} konulsun mu?",
8004 "zh-chs": "将{1}入口{2}中的{0}限制到此位置?",
7999 - "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
8000 - "xloc": [
8001 - "default-mobile.handlebars->9->127",
8002 - "default.handlebars->29->1572"
8003 - ]
8005 + "zh-cht": "將{1}入口{2}中的{0}限製到此位置?"
8006 },
8007 {
8008 "cs": "Potvrdit",
@@ -8021,14 +8023,14 @@
8023 "xloc": [
8024 "default-mobile.handlebars->9->288",
8025 "default-mobile.handlebars->9->419",
8024 - "default.handlebars->29->1402",
8025 - "default.handlebars->29->1744",
8026 - "default.handlebars->29->1823",
8027 - "default.handlebars->29->1884",
8028 - "default.handlebars->29->1980",
8026 + "default.handlebars->29->1403",
8027 + "default.handlebars->29->1746",
8028 + "default.handlebars->29->1825",
8029 + "default.handlebars->29->1886",
8030 + "default.handlebars->29->1982",
8031 "default.handlebars->29->452",
8030 - "default.handlebars->29->780",
8031 - "default.handlebars->29->789"
8032 + "default.handlebars->29->781",
8033 + "default.handlebars->29->790"
8034 ]
8035 },
8036 {
@@ -8049,7 +8051,7 @@
8051 "zh-cht": "確認將1個副本複製到此位置?",
8052 "xloc": [
8053 "default-mobile.handlebars->9->321",
8052 - "default.handlebars->29->905"
8054 + "default.handlebars->29->906"
8055 ]
8056 },
8057 {
@@ -8069,7 +8071,7 @@
8071 "zh-chs": "确认{0}个条目的复制到此位置?",
8072 "zh-cht": "確認{0}個條目的複製到此位置?",
8073 "xloc": [
8072 - "default.handlebars->29->904"
8074 + "default.handlebars->29->905"
8075 ]
8076 },
8077 {
@@ -8109,7 +8111,7 @@
8111 "zh-chs": "确认删除选定的帐户?",
8112 "zh-cht": "確認刪除所選帳戶?",
8113 "xloc": [
8112 - "default.handlebars->29->1743"
8114 + "default.handlebars->29->1745"
8115 ]
8116 },
8117 {
@@ -8149,7 +8151,7 @@
8151 "zh-chs": "确认删除选定的用户组?",
8152 "zh-cht": "確認刪除所選用戶群?",
8153 "xloc": [
8152 - "default.handlebars->29->1822"
8154 + "default.handlebars->29->1824"
8155 ]
8156 },
8157 {
@@ -8169,7 +8171,7 @@
8171 "zh-chs": "确认删除用户{0}?",
8172 "zh-cht": "確認刪除用戶{0}?",
8173 "xloc": [
8172 - "default.handlebars->29->1979"
8174 + "default.handlebars->29->1981"
8175 ]
8176 },
8177 {
@@ -8189,7 +8191,7 @@
8191 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
8192 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8193 "xloc": [
8192 - "default.handlebars->29->1887"
8194 + "default.handlebars->29->1889"
8195 ]
8196 },
8197 {
@@ -8209,7 +8211,7 @@
8211 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8212 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8213 "xloc": [
8212 - "default.handlebars->29->2011"
8214 + "default.handlebars->29->2013"
8215 ]
8216 },
8217 {
@@ -8230,7 +8232,7 @@
8232 "zh-cht": "確認將1個條目移動到此位置?",
8233 "xloc": [
8234 "default-mobile.handlebars->9->323",
8233 - "default.handlebars->29->907"
8235 + "default.handlebars->29->908"
8236 ]
8237 },
8238 {
@@ -8250,7 +8252,7 @@
8252 "zh-chs": "确认将{0}个条目移到此位置?",
8253 "zh-cht": "確認將{0}個條目移到該位置?",
8254 "xloc": [
8253 - "default.handlebars->29->906"
8255 + "default.handlebars->29->907"
8256 ]
8257 },
8258 {
@@ -8290,7 +8292,7 @@
8292 "zh-chs": "确认覆盖?",
8293 "zh-cht": "確認覆蓋?",
8294 "xloc": [
8293 - "default.handlebars->29->1571"
8295 + "default.handlebars->29->1572"
8296 ]
8297 },
8298 {
@@ -8310,8 +8312,8 @@
8312 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
8313 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8314 "xloc": [
8313 - "default.handlebars->29->1877",
8314 - "default.handlebars->29->2002"
8315 + "default.handlebars->29->1879",
8316 + "default.handlebars->29->2004"
8317 ]
8318 },
8319 {
@@ -8331,8 +8333,8 @@
8333 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8334 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8335 "xloc": [
8334 - "default.handlebars->29->1879",
8335 - "default.handlebars->29->2015"
8336 + "default.handlebars->29->1881",
8337 + "default.handlebars->29->2017"
8338 ]
8339 },
8340 {
@@ -8352,7 +8354,7 @@
8354 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
8355 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8356 "xloc": [
8355 - "default.handlebars->29->2004"
8357 + "default.handlebars->29->2006"
8358 ]
8359 },
8360 {
@@ -8372,7 +8374,7 @@
8374 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8375 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8376 "xloc": [
8375 - "default.handlebars->29->2007"
8377 + "default.handlebars->29->2009"
8378 ]
8379 },
8380 {
@@ -8392,8 +8394,8 @@
8394 "zh-chs": "确认删除访问权限?",
8395 "zh-cht": "確認刪除訪問權限?",
8396 "xloc": [
8395 - "default.handlebars->29->2005",
8396 - "default.handlebars->29->2008"
8397 + "default.handlebars->29->2007",
8398 + "default.handlebars->29->2010"
8399 ]
8400 },
8401 {
@@ -8414,7 +8416,7 @@
8416 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
8417 "xloc": [
8418 "default-mobile.handlebars->9->74",
8417 - "default.handlebars->29->1035"
8419 + "default.handlebars->29->1036"
8420 ]
8421 },
8422 {
@@ -8438,7 +8440,7 @@
8440 "en": "Confirm removal of device share \\\"{0}\\\"?",
8441 "nl": "Bevestig de verwijdering van apparaatdeling \\\"{0}\\\"?",
8442 "xloc": [
8441 - "default.handlebars->29->2000"
8443 + "default.handlebars->29->2002"
8444 ]
8445 },
8446 {
@@ -8492,7 +8494,7 @@
8494 "zh-chs": "确认删除用户“ {0} ”的权限?",
8495 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
8496 "xloc": [
8495 - "default.handlebars->29->1500"
8497 + "default.handlebars->29->1501"
8498 ]
8499 },
8500 {
@@ -8512,7 +8514,7 @@
8514 "zh-chs": "确认删除用户组“ {0} ”的权限?",
8515 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
8516 "xloc": [
8515 - "default.handlebars->29->1502"
8517 + "default.handlebars->29->1503"
8518 ]
8519 },
8520 {
@@ -8552,6 +8554,13 @@
8554 "default-mobile.handlebars->9->470"
8555 ]
8556 },
8557 + {
8558 + "en": "Confirm {0} of {1} entrie{2} to this location?",
8559 + "xloc": [
8560 + "default-mobile.handlebars->9->127",
8561 + "default.handlebars->29->1573"
8562 + ]
8563 + },
8564 {
8565 "cs": "Připojit",
8566 "de": "Verbinden",
@@ -8572,8 +8581,8 @@
8581 "default-mobile.handlebars->9->303",
8582 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
8583 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
8575 - "default.handlebars->29->1345",
8576 - "default.handlebars->29->883",
8584 + "default.handlebars->29->1346",
8585 + "default.handlebars->29->884",
8586 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
8587 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
8588 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -8620,7 +8629,7 @@
8629 "zh-chs": "连接到服务器",
8630 "zh-cht": "連接到伺服器",
8631 "xloc": [
8623 - "default.handlebars->29->1395"
8632 + "default.handlebars->29->1396"
8633 ]
8634 },
8635 {
@@ -8741,7 +8750,7 @@
8750 "zh-chs": "已连接的英特尔&reg;AMT",
8751 "zh-cht": "已連接的Intel&reg; AMT",
8752 "xloc": [
8744 - "default.handlebars->29->2068"
8753 + "default.handlebars->29->2070"
8754 ]
8755 },
8756 {
@@ -8761,7 +8770,7 @@
8770 "zh-chs": "已连接的用户",
8771 "zh-cht": "已连接的用户",
8772 "xloc": [
8764 - "default.handlebars->29->2073"
8773 + "default.handlebars->29->2075"
8774 ]
8775 },
8776 {
@@ -8782,7 +8791,7 @@
8791 "zh-cht": "現在已連接",
8792 "xloc": [
8793 "default-mobile.handlebars->9->346",
8785 - "default.handlebars->29->937"
8794 + "default.handlebars->29->938"
8795 ]
8796 },
8797 {
@@ -8829,7 +8838,7 @@
8838 "default.handlebars->29->247",
8839 "default.handlebars->29->274",
8840 "default.handlebars->29->9",
8832 - "default.handlebars->29->928",
8841 + "default.handlebars->29->929",
8842 "desktop.handlebars->3->2",
8843 "xterm.handlebars->9->2"
8844 ]
@@ -8851,7 +8860,7 @@
8860 "zh-chs": "连接数量",
8861 "zh-cht": "連接數量",
8862 "xloc": [
8854 - "default.handlebars->29->2087"
8863 + "default.handlebars->29->2089"
8864 ]
8865 },
8866 {
@@ -8871,7 +8880,7 @@
8880 "zh-chs": "连接转发器",
8881 "zh-cht": "連接轉發器",
8882 "xloc": [
8874 - "default.handlebars->29->2115"
8883 + "default.handlebars->29->2117"
8884 ]
8885 },
8886 {
@@ -8932,9 +8941,9 @@
8941 "zh-cht": "連接性",
8942 "xloc": [
8943 "default-mobile.handlebars->9->255",
8935 - "default.handlebars->29->1535",
8944 + "default.handlebars->29->1536",
8945 "default.handlebars->29->235",
8937 - "default.handlebars->29->612",
8946 + "default.handlebars->29->613",
8947 "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
8948 ]
8949 },
@@ -8955,8 +8964,8 @@
8964 "zh-chs": "控制台",
8965 "zh-cht": "控制台",
8966 "xloc": [
8958 - "default.handlebars->29->680",
8959 - "default.handlebars->29->701",
8967 + "default.handlebars->29->681",
8968 + "default.handlebars->29->702",
8969 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
8970 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
8971 "default.handlebars->contextMenu->cxconsole"
@@ -8979,7 +8988,7 @@
8988 "zh-chs": "控制台 -",
8989 "zh-cht": "控制台 -",
8990 "xloc": [
8982 - "default.handlebars->29->544"
8991 + "default.handlebars->29->545"
8992 ]
8993 },
8994 {
@@ -8999,8 +9008,8 @@
9008 "zh-chs": "控制",
9009 "zh-cht": "控制",
9010 "xloc": [
9002 - "default.handlebars->29->679",
9003 - "default.handlebars->29->700",
9011 + "default.handlebars->29->680",
9012 + "default.handlebars->29->701",
9013 "messenger.handlebars->13->1"
9014 ]
9015 },
@@ -9021,7 +9030,7 @@
9030 "zh-chs": "Cookie编码器",
9031 "zh-cht": "Cookie編碼器",
9032 "xloc": [
9024 - "default.handlebars->29->2101"
9033 + "default.handlebars->29->2103"
9034 ]
9035 },
9036 {
@@ -9178,8 +9187,8 @@
9187 "zh-chs": "复制连结到剪贴板",
9188 "zh-cht": "複製連結到剪貼板",
9189 "xloc": [
9181 - "default.handlebars->29->1540",
9182 - "default.handlebars->29->1559",
9190 + "default.handlebars->29->1541",
9191 + "default.handlebars->29->1560",
9192 "default.handlebars->29->196",
9193 "default.handlebars->29->353"
9194 ]
@@ -9282,7 +9291,7 @@
9291 "zh-chs": "复制:“{0}”到“{1}”",
9292 "zh-cht": "複製:“{0}”到“{1}”",
9293 "xloc": [
9285 - "default.handlebars->29->1631"
9294 + "default.handlebars->29->1632"
9295 ]
9296 },
9297 {
@@ -9428,7 +9437,7 @@
9437 "zh-chs": "核心服务器",
9438 "zh-cht": "核心伺服器",
9439 "xloc": [
9431 - "default.handlebars->29->2100"
9440 + "default.handlebars->29->2102"
9441 ]
9442 },
9443 {
@@ -9448,7 +9457,7 @@
9457 "zh-chs": "科西嘉文",
9458 "zh-cht": "科西嘉文",
9459 "xloc": [
9451 - "default.handlebars->29->1086"
9460 + "default.handlebars->29->1087"
9461 ]
9462 },
9463 {
@@ -9468,7 +9477,7 @@
9477 "zh-chs": "创建帐号",
9478 "zh-cht": "創建帳號",
9479 "xloc": [
9471 - "default.handlebars->29->1791",
9480 + "default.handlebars->29->1793",
9481 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
9482 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
9483 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9511,7 +9520,7 @@
9520 "zh-chs": "创建用户组",
9521 "zh-cht": "創建用戶群",
9522 "xloc": [
9514 - "default.handlebars->29->1830"
9523 + "default.handlebars->29->1832"
9524 ]
9525 },
9526 {
@@ -9531,7 +9540,7 @@
9540 "zh-chs": "创建连结以与访客共享此设备",
9541 "zh-cht": "創建鏈結以與訪客共享此裝置",
9542 "xloc": [
9534 - "default.handlebars->29->625"
9543 + "default.handlebars->29->626"
9544 ]
9545 },
9546 {
@@ -9551,7 +9560,7 @@
9560 "zh-chs": "使用以下选项创建一个新的设备组。",
9561 "zh-cht": "使用以下選項創建一個新的裝置群。",
9562 "xloc": [
9554 - "default.handlebars->29->1280"
9563 + "default.handlebars->29->1281"
9564 ]
9565 },
9566 {
@@ -9574,6 +9583,12 @@
9583 "default.handlebars->29->237"
9584 ]
9585 },
9586 + {
9587 + "en": "Create folder if it does not exists?",
9588 + "xloc": [
9589 + "default.handlebars->29->478"
9590 + ]
9591 + },
9592 {
9593 "cs": "Vytvořit složku: \\\"{0}\\\"",
9594 "de": "Ordner erstellen: \\\"{0}\\\"",
@@ -9591,7 +9606,7 @@
9606 "zh-chs": "创建文件夹:“{0}”",
9607 "zh-cht": "創建文件夾:“{0}”",
9608 "xloc": [
9594 - "default.handlebars->29->1624"
9609 + "default.handlebars->29->1625"
9610 ]
9611 },
9612 {
@@ -9611,7 +9626,7 @@
9626 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
9627 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
9628 "xloc": [
9614 - "default.handlebars->29->1755"
9629 + "default.handlebars->29->1757"
9630 ]
9631 },
9632 {
@@ -9653,13 +9668,13 @@
9668 "zh-chs": "创建的设备组:{0}",
9669 "zh-cht": "創建的設備組:{0}",
9670 "xloc": [
9656 - "default.handlebars->29->1635"
9671 + "default.handlebars->29->1636"
9672 ]
9673 },
9674 {
9675 "en": "Creates a link that allows a guest without an account to remote desktop into this device for a limited time.",
9676 "xloc": [
9662 - "default.handlebars->29->719"
9677 + "default.handlebars->29->720"
9678 ]
9679 },
9680 {
@@ -9696,7 +9711,7 @@
9711 "zh-chs": "创建",
9712 "zh-cht": "創建",
9713 "xloc": [
9699 - "default.handlebars->29->1916"
9714 + "default.handlebars->29->1918"
9715 ]
9716 },
9717 {
@@ -9716,7 +9731,7 @@
9731 "zh-chs": "创建时间",
9732 "zh-cht": "創作時間",
9733 "xloc": [
9719 - "default.handlebars->29->1327"
9734 + "default.handlebars->29->1328"
9735 ]
9736 },
9737 {
@@ -9758,8 +9773,8 @@
9773 "zh-chs": "创建者",
9774 "zh-cht": "創作者",
9775 "xloc": [
9761 - "default.handlebars->29->1325",
9762 - "default.handlebars->29->1326"
9776 + "default.handlebars->29->1326",
9777 + "default.handlebars->29->1327"
9778 ]
9779 },
9780 {
@@ -9779,7 +9794,7 @@
9794 "zh-chs": "证书",
9795 "zh-cht": "證書",
9796 "xloc": [
9782 - "default.handlebars->29->1297"
9797 + "default.handlebars->29->1298"
9798 ]
9799 },
9800 {
@@ -9799,7 +9814,7 @@
9814 "zh-chs": "克里语",
9815 "zh-cht": "克里語",
9816 "xloc": [
9802 - "default.handlebars->29->1087"
9817 + "default.handlebars->29->1088"
9818 ]
9819 },
9820 {
@@ -9819,7 +9834,7 @@
9834 "zh-chs": "克罗地亚文",
9835 "zh-cht": "克羅地亞文",
9836 "xloc": [
9822 - "default.handlebars->29->1088"
9837 + "default.handlebars->29->1089"
9838 ]
9839 },
9840 {
@@ -9986,7 +10001,7 @@
10001 "zh-chs": "捷克文",
10002 "zh-cht": "捷克文",
10003 "xloc": [
9989 - "default.handlebars->29->1089"
10004 + "default.handlebars->29->1090"
10005 ]
10006 },
10007 {
@@ -10026,7 +10041,7 @@
10041 "zh-chs": "丹麦文",
10042 "zh-cht": "丹麥文",
10043 "xloc": [
10029 - "default.handlebars->29->1090"
10044 + "default.handlebars->29->1091"
10045 ]
10046 },
10047 {
@@ -10046,7 +10061,7 @@
10061 "zh-chs": "数据通道",
10062 "zh-cht": "數據通道",
10063 "xloc": [
10049 - "default.handlebars->29->832",
10064 + "default.handlebars->29->833",
10065 "desktop.handlebars->3->11"
10066 ]
10067 },
@@ -10067,7 +10082,7 @@
10082 "zh-chs": "日期和时间",
10083 "zh-cht": "日期和時間",
10084 "xloc": [
10070 - "default.handlebars->29->1248"
10085 + "default.handlebars->29->1249"
10086 ]
10087 },
10088 {
@@ -10088,14 +10103,14 @@
10103 "zh-cht": "天",
10104 "xloc": [
10105 "default-mobile.handlebars->9->278",
10091 - "default.handlebars->29->764"
10106 + "default.handlebars->29->765"
10107 ]
10108 },
10109 {
10110 "en": "Deactivate",
10111 "nl": "Deactiveren",
10112 "xloc": [
10098 - "default.handlebars->29->1378"
10113 + "default.handlebars->29->1379"
10114 ]
10115 },
10116 {
@@ -10153,10 +10168,10 @@
10168 "zh-chs": "默认",
10169 "zh-cht": "默認",
10170 "xloc": [
10156 - "default.handlebars->29->1778",
10157 - "default.handlebars->29->1826",
10158 - "default.handlebars->29->1837",
10159 - "default.handlebars->29->1905"
10171 + "default.handlebars->29->1780",
10172 + "default.handlebars->29->1828",
10173 + "default.handlebars->29->1839",
10174 + "default.handlebars->29->1907"
10175 ]
10176 },
10177 {
@@ -10180,9 +10195,9 @@
10195 "default-mobile.handlebars->9->313",
10196 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10197 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10183 - "default.handlebars->29->1566",
10184 - "default.handlebars->29->514",
10185 - "default.handlebars->29->896",
10198 + "default.handlebars->29->1567",
10199 + "default.handlebars->29->515",
10200 + "default.handlebars->29->897",
10201 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10202 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10203 "default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10210,7 +10225,7 @@
10225 "zh-cht": "刪除帳戶",
10226 "xloc": [
10227 "default-mobile.handlebars->9->84",
10213 - "default.handlebars->29->1265"
10228 + "default.handlebars->29->1266"
10229 ]
10230 },
10231 {
@@ -10230,7 +10245,7 @@
10245 "zh-chs": "删除帐户",
10246 "zh-cht": "刪除帳戶",
10247 "xloc": [
10233 - "default.handlebars->29->1745"
10248 + "default.handlebars->29->1747"
10249 ]
10250 },
10251 {
@@ -10251,7 +10266,7 @@
10266 "zh-cht": "刪除裝置",
10267 "xloc": [
10268 "default-mobile.handlebars->9->260",
10254 - "default.handlebars->29->629"
10269 + "default.handlebars->29->630"
10270 ]
10271 },
10272 {
@@ -10273,8 +10288,8 @@
10288 "xloc": [
10289 "default-mobile.handlebars->9->417",
10290 "default-mobile.handlebars->9->420",
10276 - "default.handlebars->29->1374",
10277 - "default.handlebars->29->1403"
10291 + "default.handlebars->29->1375",
10292 + "default.handlebars->29->1404"
10293 ]
10294 },
10295 {
@@ -10295,7 +10310,7 @@
10310 "zh-cht": "刪除節點",
10311 "xloc": [
10312 "default-mobile.handlebars->9->286",
10298 - "default.handlebars->29->790"
10313 + "default.handlebars->29->791"
10314 ]
10315 },
10316 {
@@ -10335,7 +10350,7 @@
10350 "zh-chs": "删除用户",
10351 "zh-cht": "刪除用戶",
10352 "xloc": [
10338 - "default.handlebars->29->1955"
10353 + "default.handlebars->29->1957"
10354 ]
10355 },
10356 {
@@ -10355,8 +10370,8 @@
10370 "zh-chs": "删除用户群组",
10371 "zh-cht": "刪除用戶群組",
10372 "xloc": [
10358 - "default.handlebars->29->1875",
10359 - "default.handlebars->29->1885"
10373 + "default.handlebars->29->1877",
10374 + "default.handlebars->29->1887"
10375 ]
10376 },
10377 {
@@ -10376,7 +10391,7 @@
10391 "zh-chs": "删除用户群组",
10392 "zh-cht": "刪除用戶群組",
10393 "xloc": [
10379 - "default.handlebars->29->1824"
10394 + "default.handlebars->29->1826"
10395 ]
10396 },
10397 {
@@ -10396,7 +10411,7 @@
10411 "zh-chs": "删除用户{0}",
10412 "zh-cht": "刪除用戶{0}",
10413 "xloc": [
10399 - "default.handlebars->29->1978"
10414 + "default.handlebars->29->1980"
10415 ]
10416 },
10417 {
@@ -10417,7 +10432,7 @@
10432 "zh-cht": "刪除帳戶",
10433 "xloc": [
10434 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
10420 - "default.handlebars->29->1741",
10435 + "default.handlebars->29->1743",
10436 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
10437 ]
10438 },
@@ -10458,7 +10473,7 @@
10473 "zh-chs": "删除群组",
10474 "zh-cht": "刪除群組",
10475 "xloc": [
10461 - "default.handlebars->29->1820"
10476 + "default.handlebars->29->1822"
10477 ]
10478 },
10479 {
@@ -10478,7 +10493,7 @@
10493 "zh-chs": "删除项目?",
10494 "zh-cht": "刪除項目?",
10495 "xloc": [
10481 - "default.handlebars->29->515"
10496 + "default.handlebars->29->516"
10497 ]
10498 },
10499 {
@@ -10498,7 +10513,7 @@
10513 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
10514 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
10515 "xloc": [
10501 - "default.handlebars->29->1626"
10516 + "default.handlebars->29->1627"
10517 ]
10518 },
10519 {
@@ -10520,8 +10535,8 @@
10535 "xloc": [
10536 "default-mobile.handlebars->9->124",
10537 "default-mobile.handlebars->9->315",
10523 - "default.handlebars->29->1568",
10524 - "default.handlebars->29->898"
10538 + "default.handlebars->29->1569",
10539 + "default.handlebars->29->899"
10540 ]
10541 },
10542 {
@@ -10541,7 +10556,7 @@
10556 "zh-chs": "删除用户群组{0}?",
10557 "zh-cht": "刪除用戶群組{0}?",
10558 "xloc": [
10544 - "default.handlebars->29->1883"
10559 + "default.handlebars->29->1885"
10560 ]
10561 },
10562 {
@@ -10563,8 +10578,8 @@
10578 "xloc": [
10579 "default-mobile.handlebars->9->123",
10580 "default-mobile.handlebars->9->314",
10566 - "default.handlebars->29->1567",
10567 - "default.handlebars->29->897"
10581 + "default.handlebars->29->1568",
10582 + "default.handlebars->29->898"
10583 ]
10584 },
10585 {
@@ -10604,7 +10619,7 @@
10619 "zh-chs": "删除:“{0}”",
10620 "zh-cht": "刪除:“{0}”",
10621 "xloc": [
10607 - "default.handlebars->29->1625"
10622 + "default.handlebars->29->1626"
10623 ]
10624 },
10625 {
@@ -10624,7 +10639,7 @@
10639 "zh-chs": "删除:“{0}”,{1}个元素已删除",
10640 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
10641 "xloc": [
10627 - "default.handlebars->29->1627"
10642 + "default.handlebars->29->1628"
10643 ]
10644 },
10645 {
@@ -10644,7 +10659,7 @@
10659 "zh-chs": "被拒绝",
10660 "zh-cht": "被拒絕",
10661 "xloc": [
10647 - "default.handlebars->29->828",
10662 + "default.handlebars->29->829",
10663 "desktop.handlebars->3->7"
10664 ]
10665 },
@@ -10741,19 +10756,19 @@
10756 "default-mobile.handlebars->9->352",
10757 "default-mobile.handlebars->9->409",
10758 "default-mobile.handlebars->9->422",
10744 - "default.handlebars->29->1285",
10745 - "default.handlebars->29->1322",
10746 - "default.handlebars->29->1405",
10747 - "default.handlebars->29->1829",
10748 - "default.handlebars->29->1839",
10749 - "default.handlebars->29->1840",
10750 - "default.handlebars->29->1881",
10751 - "default.handlebars->29->555",
10759 + "default.handlebars->29->1286",
10760 + "default.handlebars->29->1323",
10761 + "default.handlebars->29->1406",
10762 + "default.handlebars->29->1831",
10763 + "default.handlebars->29->1841",
10764 + "default.handlebars->29->1842",
10765 + "default.handlebars->29->1883",
10766 "default.handlebars->29->556",
10767 + "default.handlebars->29->557",
10768 "default.handlebars->29->77",
10754 - "default.handlebars->29->823",
10755 - "default.handlebars->29->943",
10756 - "default.handlebars->29->953",
10769 + "default.handlebars->29->824",
10770 + "default.handlebars->29->944",
10771 + "default.handlebars->29->954",
10772 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
10773 ]
10774 },
@@ -10792,10 +10807,10 @@
10807 "zh-cht": "桌面",
10808 "xloc": [
10809 "default-mobile.handlebars->9->267",
10795 - "default.handlebars->29->1411",
10796 - "default.handlebars->29->2027",
10797 - "default.handlebars->29->520",
10798 - "default.handlebars->29->868",
10810 + "default.handlebars->29->1412",
10811 + "default.handlebars->29->2029",
10812 + "default.handlebars->29->521",
10813 + "default.handlebars->29->869",
10814 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
10815 "default.handlebars->contextMenu->cxdesktop",
10816 "desktop.handlebars->3->23"
@@ -10838,10 +10853,10 @@
10853 "zh-chs": "桌面通知",
10854 "zh-cht": "桌面通知",
10855 "xloc": [
10841 - "default.handlebars->29->1336",
10842 - "default.handlebars->29->1844",
10843 - "default.handlebars->29->1931",
10844 - "default.handlebars->29->593"
10856 + "default.handlebars->29->1337",
10857 + "default.handlebars->29->1846",
10858 + "default.handlebars->29->1933",
10859 + "default.handlebars->29->594"
10860 ]
10861 },
10862 {
@@ -10861,10 +10876,10 @@
10876 "zh-chs": "桌面提示",
10877 "zh-cht": "桌面提示",
10878 "xloc": [
10864 - "default.handlebars->29->1335",
10865 - "default.handlebars->29->1843",
10866 - "default.handlebars->29->1930",
10867 - "default.handlebars->29->592"
10879 + "default.handlebars->29->1336",
10880 + "default.handlebars->29->1845",
10881 + "default.handlebars->29->1932",
10882 + "default.handlebars->29->593"
10883 ]
10884 },
10885 {
@@ -10884,10 +10899,10 @@
10899 "zh-chs": "桌面提示+工具栏",
10900 "zh-cht": "桌面提示+工具欄",
10901 "xloc": [
10887 - "default.handlebars->29->1333",
10888 - "default.handlebars->29->1841",
10889 - "default.handlebars->29->1928",
10890 - "default.handlebars->29->590"
10902 + "default.handlebars->29->1334",
10903 + "default.handlebars->29->1843",
10904 + "default.handlebars->29->1930",
10905 + "default.handlebars->29->591"
10906 ]
10907 },
10908 {
@@ -10935,10 +10950,10 @@
10950 "zh-chs": "桌面工具栏",
10951 "zh-cht": "桌面工具欄",
10952 "xloc": [
10938 - "default.handlebars->29->1334",
10939 - "default.handlebars->29->1842",
10940 - "default.handlebars->29->1929",
10941 - "default.handlebars->29->591"
10953 + "default.handlebars->29->1335",
10954 + "default.handlebars->29->1844",
10955 + "default.handlebars->29->1931",
10956 + "default.handlebars->29->592"
10957 ]
10958 },
10959 {
@@ -10958,7 +10973,7 @@
10973 "zh-chs": "桌面时段",
10974 "zh-cht": "桌面時段",
10975 "xloc": [
10961 - "default.handlebars->29->867"
10976 + "default.handlebars->29->868"
10977 ]
10978 },
10979 {
@@ -11041,9 +11056,9 @@
11056 "zh-chs": "设备",
11057 "zh-cht": "裝置",
11058 "xloc": [
11044 - "default.handlebars->29->1434",
11059 + "default.handlebars->29->1435",
11060 "default.handlebars->29->186",
11046 - "default.handlebars->29->1997",
11061 + "default.handlebars->29->1999",
11062 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11063 ]
11064 },
@@ -11065,7 +11080,7 @@
11080 "zh-cht": "裝置指令",
11081 "xloc": [
11082 "default-mobile.handlebars->9->277",
11068 - "default.handlebars->29->755"
11083 + "default.handlebars->29->756"
11084 ]
11085 },
11086 {
@@ -11092,14 +11107,14 @@
11107 "zh-chs": "设备组",
11108 "zh-cht": "裝置群",
11109 "xloc": [
11095 - "default.handlebars->29->1429",
11096 - "default.handlebars->29->1432",
11110 + "default.handlebars->29->1430",
11111 "default.handlebars->29->1433",
11098 - "default.handlebars->29->1692",
11099 - "default.handlebars->29->1867",
11100 - "default.handlebars->29->1873",
11101 - "default.handlebars->29->1985",
11102 - "default.handlebars->29->2036"
11112 + "default.handlebars->29->1434",
11113 + "default.handlebars->29->1694",
11114 + "default.handlebars->29->1869",
11115 + "default.handlebars->29->1875",
11116 + "default.handlebars->29->1987",
11117 + "default.handlebars->29->2038"
11118 ]
11119 },
11120 {
@@ -11120,7 +11135,7 @@
11135 "zh-cht": "裝置群用戶",
11136 "xloc": [
11137 "default-mobile.handlebars->9->468",
11123 - "default.handlebars->29->1498"
11138 + "default.handlebars->29->1499"
11139 ]
11140 },
11141 {
@@ -11141,11 +11156,11 @@
11156 "zh-cht": "裝置群",
11157 "xloc": [
11158 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11144 - "default.handlebars->29->1708",
11145 - "default.handlebars->29->1814",
11146 - "default.handlebars->29->1854",
11147 - "default.handlebars->29->1925",
11148 - "default.handlebars->29->2071",
11159 + "default.handlebars->29->1710",
11160 + "default.handlebars->29->1816",
11161 + "default.handlebars->29->1856",
11162 + "default.handlebars->29->1927",
11163 + "default.handlebars->29->2073",
11164 "default.handlebars->container->column_l->p2->p2info->7"
11165 ]
11166 },
@@ -11166,7 +11181,7 @@
11181 "zh-chs": "设备信息导出",
11182 "zh-cht": "裝置訊息輸出",
11183 "xloc": [
11169 - "default.handlebars->29->485"
11184 + "default.handlebars->29->486"
11185 ]
11186 },
11187 {
@@ -11186,7 +11201,7 @@
11201 "zh-chs": "设备位置",
11202 "zh-cht": "裝置位置",
11203 "xloc": [
11189 - "default.handlebars->29->791"
11204 + "default.handlebars->29->792"
11205 ]
11206 },
11207 {
@@ -11206,7 +11221,7 @@
11221 "zh-chs": "设备消息",
11222 "zh-cht": "裝置訊息",
11223 "xloc": [
11209 - "default.handlebars->29->716"
11224 + "default.handlebars->29->717"
11225 ]
11226 },
11227 {
@@ -11227,9 +11242,9 @@
11242 "zh-cht": "裝置名稱",
11243 "xloc": [
11244 "default-mobile.handlebars->9->290",
11230 - "default.handlebars->29->2035",
11245 + "default.handlebars->29->2037",
11246 "default.handlebars->29->288",
11232 - "default.handlebars->29->821",
11247 + "default.handlebars->29->822",
11248 "player.handlebars->3->9"
11249 ]
11250 },
@@ -11251,14 +11266,14 @@
11266 "zh-cht": "裝置通知",
11267 "xloc": [
11268 "default.handlebars->29->474",
11254 - "default.handlebars->29->718"
11269 + "default.handlebars->29->719"
11270 ]
11271 },
11272 {
11273 "en": "Device Sharing Link",
11274 "nl": "Apparaat deel Link",
11275 "xloc": [
11261 - "default.handlebars->29->670"
11276 + "default.handlebars->29->671"
11277 ]
11278 },
11279 {
@@ -11298,8 +11313,8 @@
11313 "zh-chs": "设备连接。",
11314 "zh-cht": "裝置連接。",
11315 "xloc": [
11301 - "default.handlebars->29->1253",
11302 - "default.handlebars->29->1519"
11316 + "default.handlebars->29->1254",
11317 + "default.handlebars->29->1520"
11318 ]
11319 },
11320 {
@@ -11319,8 +11334,8 @@
11334 "zh-chs": "设备断开连接。",
11335 "zh-cht": "裝置斷開連接。",
11336 "xloc": [
11322 - "default.handlebars->29->1254",
11323 - "default.handlebars->29->1520"
11337 + "default.handlebars->29->1255",
11338 + "default.handlebars->29->1521"
11339 ]
11340 },
11341 {
@@ -11340,7 +11355,7 @@
11355 "zh-chs": "创建的设备组:{0}",
11356 "zh-cht": "設備組已創建:{0}",
11357 "xloc": [
11343 - "default.handlebars->29->1656"
11358 + "default.handlebars->29->1657"
11359 ]
11360 },
11361 {
@@ -11360,7 +11375,7 @@
11375 "zh-chs": "设备组已删除:{0}",
11376 "zh-cht": "設備組已刪除:{0}",
11377 "xloc": [
11363 - "default.handlebars->29->1657"
11378 + "default.handlebars->29->1658"
11379 ]
11380 },
11381 {
@@ -11380,7 +11395,7 @@
11395 "zh-chs": "设备组成员身份已更改:{0}",
11396 "zh-cht": "設備組成員身份已更改:{0}",
11397 "xloc": [
11383 - "default.handlebars->29->1658"
11398 + "default.handlebars->29->1659"
11399 ]
11400 },
11401 {
@@ -11400,7 +11415,7 @@
11415 "zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
11416 "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
11417 "xloc": [
11403 - "default.handlebars->29->713"
11418 + "default.handlebars->29->714"
11419 ]
11420 },
11421 {
@@ -11420,7 +11435,7 @@
11435 "zh-chs": "设备组通知已更改",
11436 "zh-cht": "設備組通知已更改",
11437 "xloc": [
11423 - "default.handlebars->29->1653"
11438 + "default.handlebars->29->1654"
11439 ]
11440 },
11441 {
@@ -11440,7 +11455,7 @@
11455 "zh-chs": "未删除的设备组:{0}",
11456 "zh-cht": "未刪除的設備組:{0}",
11457 "xloc": [
11443 - "default.handlebars->29->1636"
11458 + "default.handlebars->29->1637"
11459 ]
11460 },
11461 {
@@ -11463,7 +11478,7 @@
11478 "default-mobile.handlebars->9->160",
11479 "default-mobile.handlebars->9->216",
11480 "default.handlebars->29->212",
11466 - "default.handlebars->29->541"
11481 + "default.handlebars->29->542"
11482 ]
11483 },
11484 {
@@ -11711,7 +11726,7 @@
11726 "default-mobile.handlebars->9->159",
11727 "default-mobile.handlebars->9->215",
11728 "default.handlebars->29->211",
11714 - "default.handlebars->29->540"
11729 + "default.handlebars->29->541"
11730 ]
11731 },
11732 {
@@ -11793,7 +11808,7 @@
11808 "zh-chs": "设备名称",
11809 "zh-cht": "裝置名稱",
11810 "xloc": [
11796 - "default.handlebars->29->532"
11811 + "default.handlebars->29->533"
11812 ]
11813 },
11814 {
@@ -11833,7 +11848,7 @@
11848 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
11849 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
11850 "xloc": [
11836 - "default.handlebars->29->1638"
11851 + "default.handlebars->29->1639"
11852 ]
11853 },
11854 {
@@ -11870,8 +11885,8 @@
11885 "zh-chs": "设备",
11886 "zh-cht": "裝置",
11887 "xloc": [
11873 - "default.handlebars->29->1815",
11874 - "default.handlebars->29->1855"
11888 + "default.handlebars->29->1817",
11889 + "default.handlebars->29->1857"
11890 ]
11891 },
11892 {
@@ -11891,7 +11906,7 @@
11906 "zh-chs": "已禁用",
11907 "zh-cht": "已禁用",
11908 "xloc": [
11894 - "default.handlebars->29->586"
11909 + "default.handlebars->29->587"
11910 ]
11911 },
11912 {
@@ -11911,7 +11926,7 @@
11926 "zh-chs": "禁用的电子邮件两因素身份验证",
11927 "zh-cht": "禁用的電子郵件兩因素身份驗證",
11928 "xloc": [
11914 - "default.handlebars->29->1669"
11929 + "default.handlebars->29->1670"
11930 ]
11931 },
11932 {
@@ -11933,8 +11948,8 @@
11948 "xloc": [
11949 "default-mobile.handlebars->9->304",
11950 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11936 - "default.handlebars->29->1346",
11937 - "default.handlebars->29->884",
11951 + "default.handlebars->29->1347",
11952 + "default.handlebars->29->885",
11953 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
11954 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
11955 "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -12011,7 +12026,7 @@
12026 "zh-chs": "在远程设备上显示一个消息框。",
12027 "zh-cht": "在遠程裝置上顯示一個訊息框。",
12028 "xloc": [
12014 - "default.handlebars->29->717"
12029 + "default.handlebars->29->718"
12030 ]
12031 },
12032 {
@@ -12051,7 +12066,7 @@
12066 "zh-chs": "在远程设备上显示短信",
12067 "zh-cht": "在遠程裝置上顯示短信",
12068 "xloc": [
12054 - "default.handlebars->29->623"
12069 + "default.handlebars->29->624"
12070 ]
12071 },
12072 {
@@ -12071,7 +12086,7 @@
12086 "zh-chs": "显示设备组名称",
12087 "zh-cht": "顯示裝置群名稱",
12088 "xloc": [
12074 - "default.handlebars->29->1252"
12089 + "default.handlebars->29->1253"
12090 ]
12091 },
12092 {
@@ -12091,7 +12106,7 @@
12106 "zh-chs": "显示名称",
12107 "zh-cht": "顯示名稱",
12108 "xloc": [
12094 - "default.handlebars->29->853"
12109 + "default.handlebars->29->854"
12110 ]
12111 },
12112 {
@@ -12111,7 +12126,7 @@
12126 "zh-chs": "显示公共连结",
12127 "zh-cht": "顯示公共鏈結",
12128 "xloc": [
12114 - "default.handlebars->29->1539"
12129 + "default.handlebars->29->1540"
12130 ]
12131 },
12132 {
@@ -12131,7 +12146,7 @@
12146 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
12147 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
12148 "xloc": [
12134 - "default.handlebars->29->1598"
12149 + "default.handlebars->29->1599"
12150 ]
12151 },
12152 {
@@ -12151,7 +12166,7 @@
12166 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
12167 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
12168 "xloc": [
12154 - "default.handlebars->29->1606"
12169 + "default.handlebars->29->1607"
12170 ]
12171 },
12172 {
@@ -12171,8 +12186,8 @@
12186 "zh-chs": "什么都不做",
12187 "zh-cht": "什麼都不做",
12188 "xloc": [
12174 - "default.handlebars->29->1389",
12175 - "default.handlebars->29->1393"
12189 + "default.handlebars->29->1390",
12190 + "default.handlebars->29->1394"
12191 ]
12192 },
12193 {
@@ -12192,10 +12207,10 @@
12207 "zh-chs": "域",
12208 "zh-cht": "域",
12209 "xloc": [
12195 - "default.handlebars->29->1779",
12196 - "default.handlebars->29->1827",
12197 - "default.handlebars->29->1836",
12198 - "default.handlebars->29->1904",
12210 + "default.handlebars->29->1781",
12211 + "default.handlebars->29->1829",
12212 + "default.handlebars->29->1838",
12213 + "default.handlebars->29->1906",
12214 "mstsc.handlebars->main->1->3->1->2->1->0",
12215 "mstsc.handlebars->main->1->3->1->2->3"
12216 ]
@@ -12234,7 +12249,7 @@
12249 "zh-chs": "不要连接到服务器",
12250 "zh-cht": "不要連接到伺服器",
12251 "xloc": [
12237 - "default.handlebars->29->1394"
12252 + "default.handlebars->29->1395"
12253 ]
12254 },
12255 {
@@ -12354,7 +12369,7 @@
12369 "zh-cht": "下載檔案",
12370 "xloc": [
12371 "default-mobile.handlebars->9->334",
12357 - "default.handlebars->29->917"
12372 + "default.handlebars->29->918"
12373 ]
12374 },
12375 {
@@ -12394,7 +12409,7 @@
12409 "zh-chs": "下载MeshCmd",
12410 "zh-cht": "下載MeshCmd",
12411 "xloc": [
12397 - "default.handlebars->29->813"
12412 + "default.handlebars->29->814"
12413 ]
12414 },
12415 {
@@ -12454,7 +12469,7 @@
12469 "zh-chs": "下载报告",
12470 "zh-cht": "下載報告",
12471 "xloc": [
12457 - "default.handlebars->29->1697",
12472 + "default.handlebars->29->1699",
12473 "default.handlebars->container->column_l->p3->3->1->0->3"
12474 ]
12475 },
@@ -12475,7 +12490,7 @@
12490 "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
12491 "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
12492 "xloc": [
12478 - "default.handlebars->29->806"
12493 + "default.handlebars->29->807"
12494 ]
12495 },
12496 {
@@ -12555,7 +12570,7 @@
12570 "zh-chs": "下载电源事件",
12571 "zh-cht": "下載電源事件",
12572 "xloc": [
12558 - "default.handlebars->29->765"
12573 + "default.handlebars->29->766"
12574 ]
12575 },
12576 {
@@ -12635,7 +12650,7 @@
12650 "zh-chs": "使用以下一种档案格式下载设备列表。",
12651 "zh-cht": "使用以下一種檔案格式下載裝置列表。",
12652 "xloc": [
12638 - "default.handlebars->29->480"
12653 + "default.handlebars->29->481"
12654 ]
12655 },
12656 {
@@ -12655,7 +12670,7 @@
12670 "zh-chs": "使用以下一种档案格式下载事件列表。",
12671 "zh-cht": "使用以下一種檔案格式下載事件列表。",
12672 "xloc": [
12658 - "default.handlebars->29->1698"
12673 + "default.handlebars->29->1700"
12674 ]
12675 },
12676 {
@@ -12675,7 +12690,7 @@
12690 "zh-chs": "使用以下一种档案格式下载用户列表。",
12691 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
12692 "xloc": [
12678 - "default.handlebars->29->1763"
12693 + "default.handlebars->29->1765"
12694 ]
12695 },
12696 {
@@ -12756,7 +12771,7 @@
12771 "zh-chs": "下载:“{0}”",
12772 "zh-cht": "下載:“{0}”",
12773 "xloc": [
12759 - "default.handlebars->29->1629"
12774 + "default.handlebars->29->1630"
12775 ]
12776 },
12777 {
@@ -12796,7 +12811,7 @@
12811 "zh-chs": "代理重复",
12812 "zh-cht": "代理重複",
12813 "xloc": [
12799 - "default.handlebars->29->2067"
12814 + "default.handlebars->29->2069"
12815 ]
12816 },
12817 {
@@ -12836,7 +12851,7 @@
12851 "zh-chs": "复制用户组",
12852 "zh-cht": "複製用戶群",
12853 "xloc": [
12839 - "default.handlebars->29->1831"
12854 + "default.handlebars->29->1833"
12855 ]
12856 },
12857 {
@@ -12873,8 +12888,8 @@
12888 "zh-chs": "持续时间",
12889 "zh-cht": "持續時間",
12890 "xloc": [
12876 - "default.handlebars->29->2021",
12877 - "default.handlebars->29->2041",
12891 + "default.handlebars->29->2023",
12892 + "default.handlebars->29->2043",
12893 "player.handlebars->3->2"
12894 ]
12895 },
@@ -12912,7 +12927,7 @@
12927 "zh-chs": "荷兰文(比利时)",
12928 "zh-cht": "荷蘭文(比利時)",
12929 "xloc": [
12915 - "default.handlebars->29->1092"
12930 + "default.handlebars->29->1093"
12931 ]
12932 },
12933 {
@@ -12932,7 +12947,7 @@
12947 "zh-chs": "荷兰文(标准)",
12948 "zh-cht": "荷蘭文(標準)",
12949 "xloc": [
12935 - "default.handlebars->29->1091"
12950 + "default.handlebars->29->1092"
12951 ]
12952 },
12953 {
@@ -13203,7 +13218,7 @@
13218 "zh-cht": "編輯裝置",
13219 "xloc": [
13220 "default-mobile.handlebars->9->295",
13206 - "default.handlebars->29->826"
13221 + "default.handlebars->29->827"
13222 ]
13223 },
13224 {
@@ -13226,10 +13241,10 @@
13241 "default-mobile.handlebars->9->423",
13242 "default-mobile.handlebars->9->425",
13243 "default-mobile.handlebars->9->445",
13229 - "default.handlebars->29->1406",
13230 - "default.handlebars->29->1438",
13231 - "default.handlebars->29->1462",
13232 - "default.handlebars->29->1474"
13244 + "default.handlebars->29->1407",
13245 + "default.handlebars->29->1439",
13246 + "default.handlebars->29->1463",
13247 + "default.handlebars->29->1475"
13248 ]
13249 },
13250 {
@@ -13249,7 +13264,7 @@
13264 "zh-chs": "编辑设备组功能",
13265 "zh-cht": "編輯裝置群功能",
13266 "xloc": [
13252 - "default.handlebars->29->1424"
13267 + "default.handlebars->29->1425"
13268 ]
13269 },
13270 {
@@ -13269,8 +13284,8 @@
13284 "zh-chs": "编辑设备组权限",
13285 "zh-cht": "編輯裝置群權限",
13286 "xloc": [
13272 - "default.handlebars->29->1459",
13273 - "default.handlebars->29->1471"
13287 + "default.handlebars->29->1460",
13288 + "default.handlebars->29->1472"
13289 ]
13290 },
13291 {
@@ -13290,7 +13305,7 @@
13305 "zh-chs": "编辑设备组用户同意",
13306 "zh-cht": "編輯裝置群用戶同意",
13307 "xloc": [
13293 - "default.handlebars->29->1407"
13308 + "default.handlebars->29->1408"
13309 ]
13310 },
13311 {
@@ -13311,7 +13326,7 @@
13326 "zh-cht": "編輯裝置筆記",
13327 "xloc": [
13328 "default-mobile.handlebars->9->437",
13314 - "default.handlebars->29->1451"
13329 + "default.handlebars->29->1452"
13330 ]
13331 },
13332 {
@@ -13331,8 +13346,8 @@
13346 "zh-chs": "编辑设备权限",
13347 "zh-cht": "編輯裝置權限",
13348 "xloc": [
13334 - "default.handlebars->29->1464",
13335 - "default.handlebars->29->1466"
13349 + "default.handlebars->29->1465",
13350 + "default.handlebars->29->1467"
13351 ]
13352 },
13353 {
@@ -13372,7 +13387,7 @@
13387 "zh-chs": "编辑设备用户同意",
13388 "zh-cht": "編輯裝置用戶同意",
13389 "xloc": [
13375 - "default.handlebars->29->1409"
13390 + "default.handlebars->29->1410"
13391 ]
13392 },
13393 {
@@ -13392,7 +13407,7 @@
13407 "zh-chs": "编辑群组",
13408 "zh-cht": "編輯群組",
13409 "xloc": [
13395 - "default.handlebars->29->691"
13410 + "default.handlebars->29->692"
13411 ]
13412 },
13413 {
@@ -13416,10 +13431,10 @@
13431 "default-mobile.handlebars->9->242",
13432 "default-mobile.handlebars->9->245",
13433 "default-mobile.handlebars->9->285",
13419 - "default.handlebars->29->570",
13420 - "default.handlebars->29->573",
13421 - "default.handlebars->29->576",
13422 - "default.handlebars->29->772"
13434 + "default.handlebars->29->571",
13435 + "default.handlebars->29->574",
13436 + "default.handlebars->29->577",
13437 + "default.handlebars->29->773"
13438 ]
13439 },
13440 {
@@ -13440,7 +13455,7 @@
13455 "zh-cht": "編輯筆記",
13456 "xloc": [
13457 "default-mobile.handlebars->9->452",
13443 - "default.handlebars->29->1481"
13458 + "default.handlebars->29->1482"
13459 ]
13460 },
13461 {
@@ -13460,7 +13475,7 @@
13475 "zh-chs": "编辑用户同意",
13476 "zh-cht": "編輯用戶同意",
13477 "xloc": [
13463 - "default.handlebars->29->1408"
13478 + "default.handlebars->29->1409"
13479 ]
13480 },
13481 {
@@ -13480,7 +13495,7 @@
13495 "zh-chs": "编辑用户设备组权限",
13496 "zh-cht": "編輯用戶裝置群權限",
13497 "xloc": [
13483 - "default.handlebars->29->1472"
13498 + "default.handlebars->29->1473"
13499 ]
13500 },
13501 {
@@ -13500,7 +13515,7 @@
13515 "zh-chs": "编辑用户设备权限",
13516 "zh-cht": "編輯用戶裝置權限",
13517 "xloc": [
13503 - "default.handlebars->29->1467"
13518 + "default.handlebars->29->1468"
13519 ]
13520 },
13521 {
@@ -13520,7 +13535,7 @@
13535 "zh-chs": "编辑用户组",
13536 "zh-cht": "編輯用戶群",
13537 "xloc": [
13523 - "default.handlebars->29->1882"
13538 + "default.handlebars->29->1884"
13539 ]
13540 },
13541 {
@@ -13540,14 +13555,14 @@
13555 "zh-chs": "编辑用户组设备权限",
13556 "zh-cht": "編輯用戶群裝置權限",
13557 "xloc": [
13543 - "default.handlebars->29->1469"
13558 + "default.handlebars->29->1470"
13559 ]
13560 },
13561 {
13562 "en": "Edit User Group User Consent",
13563 "nl": "Bewerk groepsgebruikerstoestemming",
13564 "xloc": [
13550 - "default.handlebars->29->1410"
13565 + "default.handlebars->29->1411"
13566 ]
13567 },
13568 {
@@ -13609,11 +13624,11 @@
13624 "zh-cht": "電郵",
13625 "xloc": [
13626 "default-mobile.handlebars->9->78",
13612 - "default.handlebars->29->1781",
13613 - "default.handlebars->29->1908",
13627 + "default.handlebars->29->1783",
13628 "default.handlebars->29->1910",
13615 - "default.handlebars->29->1950",
13616 - "default.handlebars->29->1966",
13629 + "default.handlebars->29->1912",
13630 + "default.handlebars->29->1952",
13631 + "default.handlebars->29->1968",
13632 "default.handlebars->29->320",
13633 "login-mobile.handlebars->5->42",
13634 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13646,7 +13661,7 @@
13661 "zh-cht": "電郵地址變更",
13662 "xloc": [
13663 "default-mobile.handlebars->9->79",
13649 - "default.handlebars->29->1261"
13664 + "default.handlebars->29->1262"
13665 ]
13666 },
13667 {
@@ -13667,7 +13682,7 @@
13682 "zh-cht": "電郵認證",
13683 "xloc": [
13684 "default-mobile.handlebars->9->68",
13670 - "default.handlebars->29->1029"
13685 + "default.handlebars->29->1030"
13686 ]
13687 },
13688 {
@@ -13727,7 +13742,7 @@
13742 "zh-cht": "電郵驗證",
13743 "xloc": [
13744 "default-mobile.handlebars->9->77",
13730 - "default.handlebars->29->1259"
13745 + "default.handlebars->29->1260"
13746 ]
13747 },
13748 {
@@ -13767,7 +13782,7 @@
13782 "zh-chs": "电邮未验证",
13783 "zh-cht": "電郵未驗證",
13784 "xloc": [
13770 - "default.handlebars->29->1727"
13785 + "default.handlebars->29->1729"
13786 ]
13787 },
13788 {
@@ -13787,8 +13802,8 @@
13802 "zh-chs": "电邮已验证",
13803 "zh-cht": "電郵已驗證",
13804 "xloc": [
13790 - "default.handlebars->29->1728",
13791 - "default.handlebars->29->1902"
13805 + "default.handlebars->29->1730",
13806 + "default.handlebars->29->1904"
13807 ]
13808 },
13809 {
@@ -13808,7 +13823,7 @@
13823 "zh-chs": "电邮已验证。",
13824 "zh-cht": "電郵已驗證。",
13825 "xloc": [
13811 - "default.handlebars->29->1787"
13826 + "default.handlebars->29->1789"
13827 ]
13828 },
13829 {
@@ -13828,7 +13843,7 @@
13843 "zh-chs": "电邮未验证",
13844 "zh-cht": "電郵未驗證",
13845 "xloc": [
13831 - "default.handlebars->29->1903"
13846 + "default.handlebars->29->1905"
13847 ]
13848 },
13849 {
@@ -13892,7 +13907,7 @@
13907 "zh-chs": "已通过电邮验证,并且需要重置密码。",
13908 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
13909 "xloc": [
13895 - "default.handlebars->29->1788"
13910 + "default.handlebars->29->1790"
13911 ]
13912 },
13913 {
@@ -13912,7 +13927,7 @@
13927 "zh-chs": "电邮/短信流量",
13928 "zh-cht": "電郵/短信流量",
13929 "xloc": [
13915 - "default.handlebars->29->2109"
13930 + "default.handlebars->29->2111"
13931 ]
13932 },
13933 {
@@ -13958,7 +13973,7 @@
13973 "zh-chs": "启用邀请代码",
13974 "zh-cht": "啟用邀請代碼",
13975 "xloc": [
13961 - "default.handlebars->29->1504"
13976 + "default.handlebars->29->1505"
13977 ]
13978 },
13979 {
@@ -13999,7 +14014,7 @@
14014 "zh-cht": "啟用電郵二因子鑑別。",
14015 "xloc": [
14016 "default-mobile.handlebars->9->70",
14002 - "default.handlebars->29->1031"
14017 + "default.handlebars->29->1032"
14018 ]
14019 },
14020 {
@@ -14039,7 +14054,7 @@
14054 "zh-chs": "已启用",
14055 "zh-cht": "已啟用",
14056 "xloc": [
14042 - "default.handlebars->29->2043"
14057 + "default.handlebars->29->2045"
14058 ]
14059 },
14060 {
@@ -14059,7 +14074,7 @@
14074 "zh-chs": "启用电子邮件两因素身份验证",
14075 "zh-cht": "啟用電子郵件兩因素身份驗證",
14076 "xloc": [
14062 - "default.handlebars->29->1668"
14077 + "default.handlebars->29->1669"
14078 ]
14079 },
14080 {
@@ -14099,7 +14114,7 @@
14114 "zh-chs": "时间结束",
14115 "zh-cht": "時間結束",
14116 "xloc": [
14102 - "default.handlebars->29->2040"
14117 + "default.handlebars->29->2042"
14118 ]
14119 },
14120 {
@@ -14119,7 +14134,7 @@
14134 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
14135 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
14136 "xloc": [
14122 - "default.handlebars->29->1591"
14137 + "default.handlebars->29->1592"
14138 ]
14139 },
14140 {
@@ -14139,7 +14154,7 @@
14154 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
14155 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
14156 "xloc": [
14142 - "default.handlebars->29->1592"
14157 + "default.handlebars->29->1593"
14158 ]
14159 },
14160 {
@@ -14159,7 +14174,7 @@
14174 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
14175 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
14176 "xloc": [
14162 - "default.handlebars->29->1589"
14177 + "default.handlebars->29->1590"
14178 ]
14179 },
14180 {
@@ -14179,7 +14194,7 @@
14194 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
14195 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
14196 "xloc": [
14182 - "default.handlebars->29->1590"
14197 + "default.handlebars->29->1591"
14198 ]
14199 },
14200 {
@@ -14199,7 +14214,7 @@
14214 "zh-chs": "英文",
14215 "zh-cht": "英文",
14216 "xloc": [
14202 - "default.handlebars->29->1093"
14217 + "default.handlebars->29->1094"
14218 ]
14219 },
14220 {
@@ -14219,7 +14234,7 @@
14234 "zh-chs": "英文(澳洲)",
14235 "zh-cht": "英文(澳洲)",
14236 "xloc": [
14222 - "default.handlebars->29->1094"
14237 + "default.handlebars->29->1095"
14238 ]
14239 },
14240 {
@@ -14239,7 +14254,7 @@
14254 "zh-chs": "英文(伯利茲)",
14255 "zh-cht": "英文(伯利茲)",
14256 "xloc": [
14242 - "default.handlebars->29->1095"
14257 + "default.handlebars->29->1096"
14258 ]
14259 },
14260 {
@@ -14259,7 +14274,7 @@
14274 "zh-chs": "英文(加拿大)",
14275 "zh-cht": "英文(加拿大)",
14276 "xloc": [
14262 - "default.handlebars->29->1096"
14277 + "default.handlebars->29->1097"
14278 ]
14279 },
14280 {
@@ -14279,7 +14294,7 @@
14294 "zh-chs": "英文(爱尔兰)",
14295 "zh-cht": "英文(愛爾蘭)",
14296 "xloc": [
14282 - "default.handlebars->29->1097"
14297 + "default.handlebars->29->1098"
14298 ]
14299 },
14300 {
@@ -14299,7 +14314,7 @@
14314 "zh-chs": "英文(牙买加)",
14315 "zh-cht": "英文(牙買加)",
14316 "xloc": [
14302 - "default.handlebars->29->1098"
14317 + "default.handlebars->29->1099"
14318 ]
14319 },
14320 {
@@ -14319,7 +14334,7 @@
14334 "zh-chs": "英文(纽西兰)",
14335 "zh-cht": "英文(紐西蘭)",
14336 "xloc": [
14322 - "default.handlebars->29->1099"
14337 + "default.handlebars->29->1100"
14338 ]
14339 },
14340 {
@@ -14339,7 +14354,7 @@
14354 "zh-chs": "英文(菲律宾)",
14355 "zh-cht": "英文(菲律賓)",
14356 "xloc": [
14342 - "default.handlebars->29->1100"
14357 + "default.handlebars->29->1101"
14358 ]
14359 },
14360 {
@@ -14359,7 +14374,7 @@
14374 "zh-chs": "英语(南非)",
14375 "zh-cht": "英語(南非)",
14376 "xloc": [
14362 - "default.handlebars->29->1101"
14377 + "default.handlebars->29->1102"
14378 ]
14379 },
14380 {
@@ -14379,7 +14394,7 @@
14394 "zh-chs": "英文(特立尼达和多巴哥)",
14395 "zh-cht": "英文(特立尼達和多巴哥)",
14396 "xloc": [
14382 - "default.handlebars->29->1102"
14397 + "default.handlebars->29->1103"
14398 ]
14399 },
14400 {
@@ -14399,7 +14414,7 @@
14414 "zh-chs": "英文(英国)",
14415 "zh-cht": "英文(英國)",
14416 "xloc": [
14402 - "default.handlebars->29->1103"
14417 + "default.handlebars->29->1104"
14418 ]
14419 },
14420 {
@@ -14419,7 +14434,7 @@
14434 "zh-chs": "美国英文",
14435 "zh-cht": "美國英語",
14436 "xloc": [
14422 - "default.handlebars->29->1104"
14437 + "default.handlebars->29->1105"
14438 ]
14439 },
14440 {
@@ -14439,7 +14454,7 @@
14454 "zh-chs": "英文(津巴布韦)",
14455 "zh-cht": "英文(津巴布韋)",
14456 "xloc": [
14442 - "default.handlebars->29->1105"
14457 + "default.handlebars->29->1106"
14458 ]
14459 },
14460 {
@@ -14459,8 +14474,8 @@
14474 "zh-chs": "输入",
14475 "zh-cht": "輸入",
14476 "xloc": [
14462 - "default.handlebars->29->1287",
14463 - "default.handlebars->29->1288"
14477 + "default.handlebars->29->1288",
14478 + "default.handlebars->29->1289"
14479 ]
14480 },
14481 {
@@ -14480,7 +14495,7 @@
14495 "zh-chs": "输入管理领域名称的逗号分隔列表。",
14496 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
14497 "xloc": [
14483 - "default.handlebars->29->1792"
14498 + "default.handlebars->29->1794"
14499 ]
14500 },
14501 {
@@ -14520,7 +14535,7 @@
14535 "zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。",
14536 "zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
14537 "xloc": [
14523 - "default.handlebars->29->847",
14538 + "default.handlebars->29->848",
14539 "desktop.handlebars->3->21"
14540 ]
14541 },
@@ -14583,7 +14598,7 @@
14598 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
14599 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
14600 "xloc": [
14586 - "default.handlebars->29->1026"
14601 + "default.handlebars->29->1027"
14602 ]
14603 },
14604 {
@@ -14643,7 +14658,7 @@
14658 "zh-chs": "世界文",
14659 "zh-cht": "世界語",
14660 "xloc": [
14646 - "default.handlebars->29->1106"
14661 + "default.handlebars->29->1107"
14662 ]
14663 },
14664 {
@@ -14663,7 +14678,7 @@
14678 "zh-chs": "爱沙尼亚文",
14679 "zh-cht": "愛沙尼亞語",
14680 "xloc": [
14666 - "default.handlebars->29->1107"
14681 + "default.handlebars->29->1108"
14682 ]
14683 },
14684 {
@@ -14683,7 +14698,7 @@
14698 "zh-chs": "事件详情",
14699 "zh-cht": "事件詳情",
14700 "xloc": [
14686 - "default.handlebars->29->930"
14701 + "default.handlebars->29->931"
14702 ]
14703 },
14704 {
@@ -14703,7 +14718,7 @@
14718 "zh-chs": "事件列表输出",
14719 "zh-cht": "事件列表輸出",
14720 "xloc": [
14706 - "default.handlebars->29->1703"
14721 + "default.handlebars->29->1705"
14722 ]
14723 },
14724 {
@@ -14796,7 +14811,7 @@
14811 "zh-cht": "到期時間",
14812 "xloc": [
14813 "default.handlebars->29->189",
14799 - "default.handlebars->29->739"
14814 + "default.handlebars->29->740"
14815 ]
14816 },
14817 {
@@ -14862,7 +14877,7 @@
14877 "zh-chs": "扩充式ASCII",
14878 "zh-cht": "擴充式ASCII",
14879 "xloc": [
14865 - "default.handlebars->29->875"
14880 + "default.handlebars->29->876"
14881 ]
14882 },
14883 {
@@ -14902,7 +14917,7 @@
14917 "zh-chs": "外部",
14918 "zh-cht": "外部",
14919 "xloc": [
14905 - "default.handlebars->29->2094"
14920 + "default.handlebars->29->2096"
14921 ]
14922 },
14923 {
@@ -14942,7 +14957,7 @@
14957 "zh-chs": "FYRO马其顿语",
14958 "zh-cht": "FYRO馬其頓語",
14959 "xloc": [
14945 - "default.handlebars->29->1157"
14960 + "default.handlebars->29->1158"
14961 ]
14962 },
14963 {
@@ -14962,7 +14977,7 @@
14977 "zh-chs": "法罗语",
14978 "zh-cht": "法羅語",
14979 "xloc": [
14965 - "default.handlebars->29->1108"
14980 + "default.handlebars->29->1109"
14981 ]
14982 },
14983 {
@@ -15002,7 +15017,7 @@
15017 "zh-chs": "本地用户拒绝后无法启动远程桌面",
15018 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
15019 "xloc": [
15005 - "default.handlebars->29->1614"
15020 + "default.handlebars->29->1615"
15021 ]
15022 },
15023 {
@@ -15022,7 +15037,7 @@
15037 "zh-chs": "本地用户拒绝后无法启动远程文件",
15038 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
15039 "xloc": [
15025 - "default.handlebars->29->1621"
15040 + "default.handlebars->29->1622"
15041 ]
15042 },
15043 {
@@ -15042,7 +15057,7 @@
15057 "zh-chs": "无法启动远程终端接合{0}({1})",
15058 "zh-cht": "無法啟動遠程終端接合{0}({1})",
15059 "xloc": [
15045 - "default.handlebars->29->829",
15060 + "default.handlebars->29->830",
15061 "desktop.handlebars->3->8"
15062 ]
15063 },
@@ -15063,7 +15078,7 @@
15078 "zh-chs": "波斯文(波斯文)",
15079 "zh-cht": "波斯語(波斯語)",
15080 "xloc": [
15066 - "default.handlebars->29->1109"
15081 + "default.handlebars->29->1110"
15082 ]
15083 },
15084 {
@@ -15105,7 +15120,7 @@
15120 "zh-chs": "功能",
15121 "zh-cht": "功能",
15122 "xloc": [
15108 - "default.handlebars->29->1332"
15123 + "default.handlebars->29->1333"
15124 ]
15125 },
15126 {
@@ -15125,7 +15140,7 @@
15140 "zh-chs": "斐济",
15141 "zh-cht": "斐濟",
15142 "xloc": [
15128 - "default.handlebars->29->1110"
15143 + "default.handlebars->29->1111"
15144 ]
15145 },
15146 {
@@ -15166,8 +15181,8 @@
15181 "zh-cht": "檔案編輯器",
15182 "xloc": [
15183 "default-mobile.handlebars->9->318",
15169 - "default.handlebars->29->512",
15170 - "default.handlebars->29->901"
15184 + "default.handlebars->29->513",
15185 + "default.handlebars->29->902"
15186 ]
15187 },
15188 {
@@ -15187,8 +15202,8 @@
15202 "zh-chs": "档案操作",
15203 "zh-cht": "檔案操作",
15204 "xloc": [
15190 - "default.handlebars->29->886",
15191 - "default.handlebars->29->888"
15205 + "default.handlebars->29->887",
15206 + "default.handlebars->29->889"
15207 ]
15208 },
15209 {
@@ -15228,7 +15243,7 @@
15243 "zh-chs": "文件系统驱动",
15244 "zh-cht": "FileSystemDriver",
15245 "xloc": [
15231 - "default.handlebars->29->856"
15246 + "default.handlebars->29->857"
15247 ]
15248 },
15249 {
@@ -15250,8 +15265,8 @@
15265 "xloc": [
15266 "default-mobile.handlebars->9->171",
15267 "default-mobile.handlebars->9->268",
15253 - "default.handlebars->29->1418",
15254 - "default.handlebars->29->2028",
15268 + "default.handlebars->29->1419",
15269 + "default.handlebars->29->2030",
15270 "default.handlebars->29->259",
15271 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
15272 "default.handlebars->contextMenu->cxfiles"
@@ -15294,10 +15309,10 @@
15309 "zh-chs": "档案通知",
15310 "zh-cht": "檔案通知",
15311 "xloc": [
15297 - "default.handlebars->29->1340",
15298 - "default.handlebars->29->1848",
15299 - "default.handlebars->29->1935",
15300 - "default.handlebars->29->597"
15312 + "default.handlebars->29->1341",
15313 + "default.handlebars->29->1850",
15314 + "default.handlebars->29->1937",
15315 + "default.handlebars->29->598"
15316 ]
15317 },
15318 {
@@ -15317,10 +15332,10 @@
15332 "zh-chs": "档案提示",
15333 "zh-cht": "檔案提示",
15334 "xloc": [
15320 - "default.handlebars->29->1339",
15321 - "default.handlebars->29->1847",
15322 - "default.handlebars->29->1934",
15323 - "default.handlebars->29->596"
15335 + "default.handlebars->29->1340",
15336 + "default.handlebars->29->1849",
15337 + "default.handlebars->29->1936",
15338 + "default.handlebars->29->597"
15339 ]
15340 },
15341 {
@@ -15363,7 +15378,7 @@
15378 "zh-chs": "录制会话已完成,{0}秒",
15379 "zh-cht": "錄製會話已完成,{0}秒",
15380 "xloc": [
15366 - "default.handlebars->29->1587"
15381 + "default.handlebars->29->1588"
15382 ]
15383 },
15384 {
@@ -15383,7 +15398,7 @@
15398 "zh-chs": "芬兰",
15399 "zh-cht": "芬蘭",
15400 "xloc": [
15386 - "default.handlebars->29->1111"
15401 + "default.handlebars->29->1112"
15402 ]
15403 },
15404 {
@@ -15537,8 +15552,8 @@
15552 "zh-chs": "下次登录时强制重置密码。",
15553 "zh-cht": "下次登入時強制重置密碼。",
15554 "xloc": [
15540 - "default.handlebars->29->1786",
15541 - "default.handlebars->29->1975"
15555 + "default.handlebars->29->1788",
15556 + "default.handlebars->29->1977"
15557 ]
15558 },
15559 {
@@ -15621,7 +15636,7 @@
15636 "zh-chs": "格式化",
15637 "zh-cht": "格式化",
15638 "xloc": [
15624 - "default.handlebars->29->1694"
15639 + "default.handlebars->29->1696"
15640 ]
15641 },
15642 {
@@ -15662,8 +15677,8 @@
15677 "zh-chs": "自由",
15678 "zh-cht": "自由",
15679 "xloc": [
15665 - "default.handlebars->29->2052",
15666 - "default.handlebars->29->2054"
15680 + "default.handlebars->29->2054",
15681 + "default.handlebars->29->2056"
15682 ]
15683 },
15684 {
@@ -15704,7 +15719,7 @@
15719 "zh-chs": "法文(比利时)",
15720 "zh-cht": "法語(比利時)",
15721 "xloc": [
15707 - "default.handlebars->29->1113"
15722 + "default.handlebars->29->1114"
15723 ]
15724 },
15725 {
@@ -15724,7 +15739,7 @@
15739 "zh-chs": "法文(加拿大)",
15740 "zh-cht": "法語(加拿大)",
15741 "xloc": [
15727 - "default.handlebars->29->1114"
15742 + "default.handlebars->29->1115"
15743 ]
15744 },
15745 {
@@ -15744,7 +15759,7 @@
15759 "zh-chs": "法文(法国)",
15760 "zh-cht": "法語(法國)",
15761 "xloc": [
15747 - "default.handlebars->29->1115"
15762 + "default.handlebars->29->1116"
15763 ]
15764 },
15765 {
@@ -15764,7 +15779,7 @@
15779 "zh-chs": "法文(卢森堡)",
15780 "zh-cht": "法語(盧森堡)",
15781 "xloc": [
15767 - "default.handlebars->29->1116"
15782 + "default.handlebars->29->1117"
15783 ]
15784 },
15785 {
@@ -15784,7 +15799,7 @@
15799 "zh-chs": "法文(摩纳哥)",
15800 "zh-cht": "法語(摩納哥)",
15801 "xloc": [
15787 - "default.handlebars->29->1117"
15802 + "default.handlebars->29->1118"
15803 ]
15804 },
15805 {
@@ -15804,7 +15819,7 @@
15819 "zh-chs": "法文(标准)",
15820 "zh-cht": "法語(標準)",
15821 "xloc": [
15807 - "default.handlebars->29->1112"
15822 + "default.handlebars->29->1113"
15823 ]
15824 },
15825 {
@@ -15824,7 +15839,7 @@
15839 "zh-chs": "法文(瑞士)",
15840 "zh-cht": "法語(瑞士)",
15841 "xloc": [
15827 - "default.handlebars->29->1118"
15842 + "default.handlebars->29->1119"
15843 ]
15844 },
15845 {
@@ -15844,7 +15859,7 @@
15859 "zh-chs": "弗里斯兰文",
15860 "zh-cht": "弗里斯蘭語",
15861 "xloc": [
15847 - "default.handlebars->29->1119"
15862 + "default.handlebars->29->1120"
15863 ]
15864 },
15865 {
@@ -15864,7 +15879,7 @@
15879 "zh-chs": "弗留利",
15880 "zh-cht": "弗留利",
15881 "xloc": [
15867 - "default.handlebars->29->1120"
15882 + "default.handlebars->29->1121"
15883 ]
15884 },
15885 {
@@ -15888,9 +15903,9 @@
15903 "default-mobile.handlebars->9->415",
15904 "default-mobile.handlebars->9->424",
15905 "default-mobile.handlebars->9->444",
15891 - "default.handlebars->29->1294",
15892 - "default.handlebars->29->1437",
15893 - "default.handlebars->29->1798"
15906 + "default.handlebars->29->1295",
15907 + "default.handlebars->29->1438",
15908 + "default.handlebars->29->1800"
15909 ]
15910 },
15911 {
@@ -15910,7 +15925,7 @@
15925 "zh-chs": "完整管理员(保留所有权利)",
15926 "zh-cht": "完整管理員(保留所有權利)",
15927 "xloc": [
15913 - "default.handlebars->29->1473"
15928 + "default.handlebars->29->1474"
15929 ]
15930 },
15931 {
@@ -15947,7 +15962,7 @@
15962 "zh-chs": "完整设备权限",
15963 "zh-cht": "完整裝置權限",
15964 "xloc": [
15950 - "default.handlebars->29->672"
15965 + "default.handlebars->29->673"
15966 ]
15967 },
15968 {
@@ -15967,7 +15982,7 @@
15982 "zh-chs": "全部权限",
15983 "zh-cht": "全部權限",
15984 "xloc": [
15970 - "default.handlebars->29->690"
15985 + "default.handlebars->29->691"
15986 ]
15987 },
15988 {
@@ -16009,15 +16024,15 @@
16024 "zh-chs": "完整管理员",
16025 "zh-cht": "完整管理員",
16026 "xloc": [
16012 - "default.handlebars->29->1896"
16027 + "default.handlebars->29->1898"
16028 ]
16029 },
16030 {
16031 "en": "Fully Automatic",
16032 "nl": "Vol automatisch",
16033 "xloc": [
16019 - "default.handlebars->29->1357",
16020 - "default.handlebars->29->1380"
16034 + "default.handlebars->29->1358",
16035 + "default.handlebars->29->1381"
16036 ]
16037 },
16038 {
@@ -16038,7 +16053,7 @@
16053 "zh-cht": "GPU",
16054 "xloc": [
16055 "default-mobile.handlebars->9->391",
16041 - "default.handlebars->29->992"
16056 + "default.handlebars->29->993"
16057 ]
16058 },
16059 {
@@ -16058,7 +16073,7 @@
16073 "zh-chs": "盖尔文(爱尔兰)",
16074 "zh-cht": "蓋爾語(愛爾蘭)",
16075 "xloc": [
16061 - "default.handlebars->29->1122"
16076 + "default.handlebars->29->1123"
16077 ]
16078 },
16079 {
@@ -16078,7 +16093,7 @@
16093 "zh-chs": "盖尔文(苏格兰文)",
16094 "zh-cht": "蓋爾語(蘇格蘭語)",
16095 "xloc": [
16081 - "default.handlebars->29->1121"
16096 + "default.handlebars->29->1122"
16097 ]
16098 },
16099 {
@@ -16098,7 +16113,7 @@
16113 "zh-chs": "加拉契文",
16114 "zh-cht": "加拉契語",
16115 "xloc": [
16101 - "default.handlebars->29->1123"
16116 + "default.handlebars->29->1124"
16117 ]
16118 },
16119 {
@@ -16184,7 +16199,7 @@
16199 "zh-chs": "一般信息",
16200 "zh-cht": "一般訊息",
16201 "xloc": [
16187 - "default.handlebars->29->519"
16202 + "default.handlebars->29->520"
16203 ]
16204 },
16205 {
@@ -16224,7 +16239,7 @@
16239 "zh-chs": "格鲁吉亚文",
16240 "zh-cht": "格魯吉亞文",
16241 "xloc": [
16227 - "default.handlebars->29->1124"
16242 + "default.handlebars->29->1125"
16243 ]
16244 },
16245 {
@@ -16244,7 +16259,7 @@
16259 "zh-chs": "德文(奥地利)",
16260 "zh-cht": "德語(奧地利)",
16261 "xloc": [
16247 - "default.handlebars->29->1126"
16262 + "default.handlebars->29->1127"
16263 ]
16264 },
16265 {
@@ -16264,7 +16279,7 @@
16279 "zh-chs": "德文(德国)",
16280 "zh-cht": "德文(德國)",
16281 "xloc": [
16267 - "default.handlebars->29->1127"
16282 + "default.handlebars->29->1128"
16283 ]
16284 },
16285 {
@@ -16284,7 +16299,7 @@
16299 "zh-chs": "德文(列支敦士登)",
16300 "zh-cht": "德文(列支敦士登)",
16301 "xloc": [
16287 - "default.handlebars->29->1128"
16302 + "default.handlebars->29->1129"
16303 ]
16304 },
16305 {
@@ -16304,7 +16319,7 @@
16319 "zh-chs": "德文(卢森堡)",
16320 "zh-cht": "德語(盧森堡)",
16321 "xloc": [
16307 - "default.handlebars->29->1129"
16322 + "default.handlebars->29->1130"
16323 ]
16324 },
16325 {
@@ -16324,7 +16339,7 @@
16339 "zh-chs": "德文(标准)",
16340 "zh-cht": "德語(標準)",
16341 "xloc": [
16327 - "default.handlebars->29->1125"
16342 + "default.handlebars->29->1126"
16343 ]
16344 },
16345 {
@@ -16344,7 +16359,7 @@
16359 "zh-chs": "德文(瑞士)",
16360 "zh-cht": "德文(瑞士)",
16361 "xloc": [
16347 - "default.handlebars->29->1130"
16362 + "default.handlebars->29->1131"
16363 ]
16364 },
16365 {
@@ -16364,7 +16379,7 @@
16379 "zh-chs": "获取此设备的MQTT登录凭证。",
16380 "zh-cht": "獲取此裝置的MQTT登入憑證。",
16381 "xloc": [
16367 - "default.handlebars->29->648"
16382 + "default.handlebars->29->649"
16383 ]
16384 },
16385 {
@@ -16405,7 +16420,7 @@
16420 "zh-chs": "正在获取剪贴板内容,{0}个字节",
16421 "zh-cht": "正在獲取剪貼板內容,{0}個字節",
16422 "xloc": [
16408 - "default.handlebars->29->1601"
16423 + "default.handlebars->29->1602"
16424 ]
16425 },
16426 {
@@ -16467,7 +16482,7 @@
16482 "zh-chs": "好",
16483 "zh-cht": "好",
16484 "xloc": [
16470 - "default.handlebars->29->1290"
16485 + "default.handlebars->29->1291"
16486 ]
16487 },
16488 {
@@ -16512,8 +16527,8 @@
16527 "zh-chs": "Google云端硬盘备份",
16528 "zh-cht": "Google雲端硬盤備份",
16529 "xloc": [
16515 - "default.handlebars->29->1301",
16516 - "default.handlebars->29->1304",
16530 + "default.handlebars->29->1302",
16531 + "default.handlebars->29->1305",
16532 "default.handlebars->29->205"
16533 ]
16534 },
@@ -16534,7 +16549,7 @@
16549 "zh-chs": "Google云端硬盘控制台",
16550 "zh-cht": "Google雲端硬盤控制台",
16551 "xloc": [
16537 - "default.handlebars->29->1298"
16552 + "default.handlebars->29->1299"
16553 ]
16554 },
16555 {
@@ -16574,7 +16589,7 @@
16589 "zh-chs": "Google云端硬盘备份当前处于活动状态。",
16590 "zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
16591 "xloc": [
16577 - "default.handlebars->29->1302"
16592 + "default.handlebars->29->1303"
16593 ]
16594 },
16595 {
@@ -16594,7 +16609,7 @@
16609 "zh-chs": "希腊文",
16610 "zh-cht": "希臘文",
16611 "xloc": [
16597 - "default.handlebars->29->1131"
16612 + "default.handlebars->29->1132"
16613 ]
16614 },
16615 {
@@ -16615,7 +16630,7 @@
16630 "zh-cht": "群",
16631 "xloc": [
16632 "default-mobile.handlebars->9->218",
16618 - "default.handlebars->29->547",
16633 + "default.handlebars->29->548",
16634 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
16635 ]
16636 },
@@ -16636,8 +16651,8 @@
16651 "zh-chs": "集体指令",
16652 "zh-cht": "集體指令",
16653 "xloc": [
16639 - "default.handlebars->29->1742",
16640 - "default.handlebars->29->1821",
16654 + "default.handlebars->29->1744",
16655 + "default.handlebars->29->1823",
16656 "default.handlebars->29->450",
16657 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16658 "default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16661,7 +16676,7 @@
16676 "zh-chs": "通过...分组",
16677 "zh-cht": "通過...分群",
16678 "xloc": [
16664 - "default.handlebars->29->1690"
16679 + "default.handlebars->29->1692"
16680 ]
16681 },
16682 {
@@ -16681,7 +16696,7 @@
16696 "zh-chs": "组标识符",
16697 "zh-cht": "群標識符",
16698 "xloc": [
16684 - "default.handlebars->29->1838"
16699 + "default.handlebars->29->1840"
16700 ]
16701 },
16702 {
@@ -16701,7 +16716,7 @@
16716 "zh-chs": "群组成员",
16717 "zh-cht": "群組成員",
16718 "xloc": [
16704 - "default.handlebars->29->1859"
16719 + "default.handlebars->29->1861"
16720 ]
16721 },
16722 {
@@ -16721,7 +16736,7 @@
16736 "zh-chs": "用户{0}的群组权限。",
16737 "zh-cht": "用戶{0}的群組權限。",
16738 "xloc": [
16724 - "default.handlebars->29->1436"
16739 + "default.handlebars->29->1437"
16740 ]
16741 },
16742 {
@@ -16741,7 +16756,7 @@
16756 "zh-chs": "{0}的群组权限。",
16757 "zh-cht": "{0}的群組權限。",
16758 "xloc": [
16744 - "default.handlebars->29->1435"
16759 + "default.handlebars->29->1436"
16760 ]
16761 },
16762 {
@@ -16809,7 +16824,7 @@
16824 "zh-cht": "來賓姓名",
16825 "xloc": [
16826 "default.handlebars->29->187",
16812 - "default.handlebars->29->720"
16827 + "default.handlebars->29->721"
16828 ]
16829 },
16830 {
@@ -16829,7 +16844,7 @@
16844 "zh-chs": "古久拉提",
16845 "zh-cht": "古久拉提",
16846 "xloc": [
16832 - "default.handlebars->29->1132"
16847 + "default.handlebars->29->1133"
16848 ]
16849 },
16850 {
@@ -16872,7 +16887,7 @@
16887 "zh-chs": "海地文",
16888 "zh-cht": "海地文",
16889 "xloc": [
16875 - "default.handlebars->29->1133"
16890 + "default.handlebars->29->1134"
16891 ]
16892 },
16893 {
@@ -16912,7 +16927,7 @@
16927 "zh-chs": "强行断开代理",
16928 "zh-cht": "強行斷開代理",
16929 "xloc": [
16915 - "default.handlebars->29->1021"
16930 + "default.handlebars->29->1022"
16931 ]
16932 },
16933 {
@@ -16932,7 +16947,7 @@
16947 "zh-chs": "堆总数",
16948 "zh-cht": "堆總數",
16949 "xloc": [
16935 - "default.handlebars->29->2096"
16950 + "default.handlebars->29->2098"
16951 ]
16952 },
16953 {
@@ -16952,7 +16967,7 @@
16967 "zh-chs": "堆使用",
16968 "zh-cht": "堆使用",
16969 "xloc": [
16955 - "default.handlebars->29->2095"
16970 + "default.handlebars->29->2097"
16971 ]
16972 },
16973 {
@@ -16972,7 +16987,7 @@
16987 "zh-chs": "希伯来文",
16988 "zh-cht": "希伯來文",
16989 "xloc": [
16975 - "default.handlebars->29->1134"
16990 + "default.handlebars->29->1135"
16991 ]
16992 },
16993 {
@@ -17007,7 +17022,7 @@
17022 "en": "Help Requested, user: {0}, details: {1}",
17023 "nl": "Hulp verzoek van, user: {0}, details: {1}",
17024 "xloc": [
17010 - "default.handlebars->29->1678"
17025 + "default.handlebars->29->1679"
17026 ]
17027 },
17028 {
@@ -17042,7 +17057,7 @@
17057 "zh-chs": "帮助翻译MeshCentral",
17058 "zh-cht": "幫助翻譯MeshCentral",
17059 "xloc": [
17045 - "default.handlebars->29->1249"
17060 + "default.handlebars->29->1250"
17061 ]
17062 },
17063 {
@@ -17146,7 +17161,7 @@
17161 "zh-chs": "印地文",
17162 "zh-cht": "印地文",
17163 "xloc": [
17149 - "default.handlebars->29->1135"
17164 + "default.handlebars->29->1136"
17165 ]
17166 },
17167 {
@@ -17184,7 +17199,7 @@
17199 "zh-cht": "保存1個項目進行複製",
17200 "xloc": [
17201 "default-mobile.handlebars->9->327",
17187 - "default.handlebars->29->911"
17202 + "default.handlebars->29->912"
17203 ]
17204 },
17205 {
@@ -17205,7 +17220,7 @@
17220 "zh-cht": "保存1個項目進行移動",
17221 "xloc": [
17222 "default-mobile.handlebars->9->331",
17208 - "default.handlebars->29->915"
17223 + "default.handlebars->29->916"
17224 ]
17225 },
17226 {
@@ -17226,7 +17241,7 @@
17241 "zh-cht": "保留{0}個項目進行複製",
17242 "xloc": [
17243 "default-mobile.handlebars->9->325",
17229 - "default.handlebars->29->909"
17244 + "default.handlebars->29->910"
17245 ]
17246 },
17247 {
@@ -17247,7 +17262,7 @@
17262 "zh-cht": "保存{0}個項目以進行移動",
17263 "xloc": [
17264 "default-mobile.handlebars->9->329",
17250 - "default.handlebars->29->913"
17265 + "default.handlebars->29->914"
17266 ]
17267 },
17268 {
@@ -17268,7 +17283,7 @@
17283 "zh-cht": "保存{0}項目{1}給{2}",
17284 "xloc": [
17285 "default-mobile.handlebars->9->129",
17271 - "default.handlebars->29->1574"
17286 + "default.handlebars->29->1575"
17287 ]
17288 },
17289 {
@@ -17293,8 +17308,8 @@
17308 "default-mobile.handlebars->9->223",
17309 "default-mobile.handlebars->9->291",
17310 "default.handlebars->29->289",
17296 - "default.handlebars->29->552",
17297 - "default.handlebars->29->822"
17311 + "default.handlebars->29->553",
17312 + "default.handlebars->29->823"
17313 ]
17314 },
17315 {
@@ -17314,7 +17329,7 @@
17329 "zh-chs": "主机名同步",
17330 "zh-cht": "主機名同步",
17331 "xloc": [
17317 - "default.handlebars->29->1329"
17332 + "default.handlebars->29->1330"
17333 ]
17334 },
17335 {
@@ -17334,7 +17349,7 @@
17349 "zh-chs": "匈牙利文",
17350 "zh-cht": "匈牙利文",
17351 "xloc": [
17337 - "default.handlebars->29->1136"
17352 + "default.handlebars->29->1137"
17353 ]
17354 },
17355 {
@@ -17399,9 +17414,9 @@
17414 "xloc": [
17415 "default-mobile.handlebars->9->360",
17416 "default-mobile.handlebars->9->364",
17402 - "default.handlebars->29->951",
17403 - "default.handlebars->29->961",
17404 - "default.handlebars->29->965"
17417 + "default.handlebars->29->952",
17418 + "default.handlebars->29->962",
17419 + "default.handlebars->29->966"
17420 ]
17421 },
17422 {
@@ -17423,9 +17438,9 @@
17438 "xloc": [
17439 "default-mobile.handlebars->9->358",
17440 "default-mobile.handlebars->9->362",
17426 - "default.handlebars->29->949",
17427 - "default.handlebars->29->959",
17428 - "default.handlebars->29->963"
17441 + "default.handlebars->29->950",
17442 + "default.handlebars->29->960",
17443 + "default.handlebars->29->964"
17444 ]
17445 },
17446 {
@@ -17447,10 +17462,10 @@
17462 "xloc": [
17463 "default-mobile.handlebars->9->357",
17464 "default-mobile.handlebars->9->359",
17450 - "default.handlebars->29->948",
17451 - "default.handlebars->29->950",
17452 - "default.handlebars->29->958",
17453 - "default.handlebars->29->960"
17465 + "default.handlebars->29->949",
17466 + "default.handlebars->29->951",
17467 + "default.handlebars->29->959",
17468 + "default.handlebars->29->961"
17469 ]
17470 },
17471 {
@@ -17535,8 +17550,8 @@
17550 "xloc": [
17551 "default-mobile.handlebars->9->361",
17552 "default-mobile.handlebars->9->363",
17538 - "default.handlebars->29->962",
17539 - "default.handlebars->29->964"
17553 + "default.handlebars->29->963",
17554 + "default.handlebars->29->965"
17555 ]
17556 },
17557 {
@@ -17616,7 +17631,7 @@
17631 "zh-chs": "冰岛文",
17632 "zh-cht": "冰島文",
17633 "xloc": [
17619 - "default.handlebars->29->1137"
17634 + "default.handlebars->29->1138"
17635 ]
17636 },
17637 {
@@ -17637,7 +17652,7 @@
17652 "zh-cht": "圖符選擇",
17653 "xloc": [
17654 "default-mobile.handlebars->9->289",
17640 - "default.handlebars->29->820"
17655 + "default.handlebars->29->821"
17656 ]
17657 },
17658 {
@@ -17658,14 +17673,14 @@
17673 "zh-cht": "識別符",
17674 "xloc": [
17675 "default-mobile.handlebars->9->389",
17661 - "default.handlebars->29->990"
17676 + "default.handlebars->29->991"
17677 ]
17678 },
17679 {
17680 "en": "If in CCM, reactivate Intel&reg; AMT",
17681 "nl": "Indien in CCM, heractiveer Intel&reg; AMT",
17682 "xloc": [
17668 - "default.handlebars->29->1390"
17683 + "default.handlebars->29->1391"
17684 ]
17685 },
17686 {
@@ -17813,7 +17828,7 @@
17828 "zh-chs": "印度尼西亚文",
17829 "zh-cht": "印度尼西亞文",
17830 "xloc": [
17816 - "default.handlebars->29->1138"
17831 + "default.handlebars->29->1139"
17832 ]
17833 },
17834 {
@@ -17986,8 +18001,8 @@
18001 "zh-chs": "安装类型",
18002 "zh-cht": "安裝方式",
18003 "xloc": [
17989 - "default.handlebars->29->1506",
17990 - "default.handlebars->29->1513",
18004 + "default.handlebars->29->1507",
18005 + "default.handlebars->29->1514",
18006 "default.handlebars->29->335",
18007 "default.handlebars->29->349",
18008 "default.handlebars->29->363"
@@ -18010,7 +18025,7 @@
18025 "zh-chs": "英特尔(F10 = ESC + [OM)",
18026 "zh-cht": "Intel(F10 = ESC + [OM)",
18027 "xloc": [
18013 - "default.handlebars->29->877",
18028 + "default.handlebars->29->878",
18029 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
18030 ]
18031 },
@@ -18031,7 +18046,7 @@
18046 "zh-chs": "英特尔AMT",
18047 "zh-cht": "英特爾AMT",
18048 "xloc": [
18034 - "default.handlebars->29->2092"
18049 + "default.handlebars->29->2094"
18050 ]
18051 },
18052 {
@@ -18051,7 +18066,7 @@
18066 "zh-chs": "英特尔ASCII",
18067 "zh-cht": "Intel ASCII",
18068 "xloc": [
18054 - "default.handlebars->29->876"
18069 + "default.handlebars->29->877"
18070 ]
18071 },
18072 {
@@ -18074,14 +18089,14 @@
18089 "default-mobile.handlebars->9->205",
18090 "default-mobile.handlebars->9->247",
18091 "default-mobile.handlebars->9->252",
18077 - "default.handlebars->29->1347",
18078 - "default.handlebars->29->1358",
18079 - "default.handlebars->29->1525",
18080 - "default.handlebars->29->1533",
18081 - "default.handlebars->29->2114",
18082 - "default.handlebars->29->522",
18083 - "default.handlebars->29->580",
18084 - "default.handlebars->29->607"
18092 + "default.handlebars->29->1348",
18093 + "default.handlebars->29->1359",
18094 + "default.handlebars->29->1526",
18095 + "default.handlebars->29->1534",
18096 + "default.handlebars->29->2116",
18097 + "default.handlebars->29->523",
18098 + "default.handlebars->29->581",
18099 + "default.handlebars->29->608"
18100 ]
18101 },
18102 {
@@ -18109,7 +18124,7 @@
18124 "zh-cht": "Intel&reg; AMT CIRA",
18125 "xloc": [
18126 "default-mobile.handlebars->9->251",
18112 - "default.handlebars->29->605"
18127 + "default.handlebars->29->606"
18128 ]
18129 },
18130 {
@@ -18171,7 +18186,7 @@
18186 "xloc": [
18187 "default.handlebars->29->215",
18188 "default.handlebars->29->424",
18174 - "default.handlebars->29->604"
18189 + "default.handlebars->29->605"
18190 ]
18191 },
18192 {
@@ -18234,7 +18249,7 @@
18249 "zh-chs": "英特尔&reg;AMT政策",
18250 "zh-cht": "Intel&reg; AMT政策",
18251 "xloc": [
18237 - "default.handlebars->29->1381"
18252 + "default.handlebars->29->1382"
18253 ]
18254 },
18255 {
@@ -18254,7 +18269,7 @@
18269 "zh-chs": "英特尔&reg;AMT重定向",
18270 "zh-cht": "Intel&reg; AMT重定向",
18271 "xloc": [
18257 - "default.handlebars->29->2030",
18272 + "default.handlebars->29->2032",
18273 "player.handlebars->3->14"
18274 ]
18275 },
@@ -18275,7 +18290,7 @@
18290 "zh-chs": "英特尔&reg;AMT标签",
18291 "zh-cht": "Intel&reg; AMT標籤",
18292 "xloc": [
18278 - "default.handlebars->29->584"
18293 + "default.handlebars->29->585"
18294 ]
18295 },
18296 {
@@ -18295,7 +18310,7 @@
18310 "zh-chs": "英特尔&reg;AMT WSMAN",
18311 "zh-cht": "Intle&reg; AMT WSMAN",
18312 "xloc": [
18298 - "default.handlebars->29->2029",
18313 + "default.handlebars->29->2031",
18314 "player.handlebars->3->13"
18315 ]
18316 },
@@ -18334,8 +18349,8 @@
18349 "zh-cht": "Intel &reg;AMT已連接",
18350 "xloc": [
18351 "default-mobile.handlebars->9->262",
18337 - "default.handlebars->29->654",
18338 - "default.handlebars->29->655"
18352 + "default.handlebars->29->655",
18353 + "default.handlebars->29->656"
18354 ]
18355 },
18356 {
@@ -18355,8 +18370,8 @@
18370 "zh-chs": "英特尔&reg;AMT桌面和串行事件。",
18371 "zh-cht": "Intel&reg; AMT桌面和串行事件。",
18372 "xloc": [
18358 - "default.handlebars->29->1255",
18359 - "default.handlebars->29->1521"
18373 + "default.handlebars->29->1256",
18374 + "default.handlebars->29->1522"
18375 ]
18376 },
18377 {
@@ -18378,8 +18393,8 @@
18393 "xloc": [
18394 "default-mobile.handlebars->9->263",

This file is too large to show in full.

views/default.handlebars
+2 -1
@@ -10935,7 +10935,8 @@
10935 99: "Running commands as user",
10936 100: "Running commands as user if possible",
10937 101: "Added device share {0} from {1} to {2}",
10938 - 102: "Removed device share {0}"
10938 + 102: "Removed device share {0}",
10939 + 103: "Batch upload of {0} file(s) to folder {1}",
10940 };
10941
10942 // Highlights the device being hovered
webserver.js
+25 -21
@@ -3211,9 +3211,31 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
3211 obj.fs.rename(file.path, fpath, function (err) {
3212 if (err && (err.code === 'EXDEV')) {
3213 // On some Linux, the rename will fail with a "EXDEV" error, do a copy+unlink instead.
3214 - obj.common.copyFile(file.path, fpath, function (err) { obj.fs.unlink(file.path, function (err) { handleUploadFileBatchEx(cmd); }); });
3215 - } else {
3216 - handleUploadFileBatchEx(cmd);
3214 + obj.common.copyFile(file.path, fpath, function (err) { obj.fs.unlink(file.path, function (err) { }); });
3215 + }
3216 + });
3217 + }
3218 +
3219 + // Instruct one of more agents to download a URL to a given local drive location.
3220 + var tlsCertHash = obj.webCertificateHashs[cmd.domain.id];
3221 + if (tlsCertHash != null) { tlsCertHash = Buffer.from(tlsCertHash, 'binary').toString('hex'); }
3222 + for (var i in cmd.nodeids) {
3223 + obj.GetNodeWithRights(cmd.domain, cmd.user, cmd.nodeids[i], function (node, rights, visible) {
3224 + if ((node == null) || ((rights & 8) == 0) || (visible == false)) return; // We don't have remote control rights to this device
3225 + var agentPath = ((node.agent.id > 0) && (node.agent.id < 5)) ? cmd.windowsPath : cmd.linuxPath;
3226 +
3227 + // Event that this operation is being performed.
3228 + var targets = obj.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', cmd.user._id]);
3229 + var msgid = 103; // "Batch upload of {0} file(s) to folder {1}"
3230 + var event = { etype: 'node', userid: cmd.user._id, username: cmd.user.name, nodeid: node._id, action: 'batchupload', msg: 'Performing batch upload of ' + cmd.files.length + ' file(s) to ' + agentPath, msgid: msgid, msgArgs: [cmd.files.length, agentPath], domain: cmd.domain.id };
3231 + parent.DispatchEvent(targets, obj, event);
3232 +
3233 + // Send the agent commands to perform the batch upload operation
3234 + for (var f in cmd.files) {
3235 + const acmd = { action: 'wget', overwrite: cmd.overwrite, createFolder: cmd.createFolder, urlpath: '/agentdownload.ashx?c=' + obj.parent.encodeCookie({ a: 'tmpdl', d: cmd.domain.id, nid: node._id, f: cmd.files[f].target }, obj.parent.loginCookieEncryptionKey), path: obj.path.join(agentPath, cmd.files[f].name), folder: agentPath, servertlshash: tlsCertHash };
3236 + var agent = obj.wsagents[node._id];
3237 + if (agent != null) { try { agent.send(JSON.stringify(acmd)); } catch (ex) { } }
3238 + // TODO: Add support for peer servers.
3239 }
3240 });
3241 }
@@ -3222,24 +3244,6 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
3244 });
3245 }
3246
3225 - // Instruct one of more agents to download a URL to a given local drive location.
3226 - function handleUploadFileBatchEx(cmd) {
3227 - var tlsCertHash = obj.webCertificateHashs[cmd.domain.id];
3228 - if (tlsCertHash != null) { tlsCertHash = Buffer.from(tlsCertHash, 'binary').toString('hex'); }
3229 - for (var i in cmd.nodeids) {
3230 - obj.GetNodeWithRights(cmd.domain, cmd.user, cmd.nodeids[i], function (node, rights, visible) {
3231 - if ((node == null) || ((rights & 8) == 0) || (visible == false)) return; // We don't have remote control rights to this device
3232 - var agentPath = ((node.agent.id > 0) && (node.agent.id < 5)) ? cmd.windowsPath : cmd.linuxPath;
3233 - for (var f in cmd.files) {
3234 - const acmd = { action: 'wget', overwrite: cmd.overwrite, createFolder: cmd.createFolder, urlpath: '/agentdownload.ashx?c=' + obj.parent.encodeCookie({ a: 'tmpdl', d: cmd.domain.id, nid: node._id, f: cmd.files[f].target }, obj.parent.loginCookieEncryptionKey), path: obj.path.join(agentPath, cmd.files[f].name), folder: agentPath, servertlshash: tlsCertHash };
3235 - var agent = obj.wsagents[node._id];
3236 - if (agent != null) { try { agent.send(JSON.stringify(acmd)); } catch (ex) { } }
3237 - // TODO: Add support for peer servers.
3238 - }
3239 - });
3240 - }
3241 - }
3242 -
3247 // Subscribe to all events we are allowed to receive
3248 obj.subscribe = function (userid, target) {
3249 const user = obj.users[userid];