diff --git a/agents/meshcore.js b/agents/meshcore.js
index 5c26e491..90df7d99 100644
--- a/agents/meshcore.js
+++ b/agents/meshcore.js
@@ -2590,7 +2590,7 @@ function createMeshCore(agent) {
var response = null;
switch (cmd) {
case 'help': { // Displays available commands
- var fin = '', f = '', availcommands = 'coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,nwslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,sendcaps,openurl,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,wallpaper,agentmsg';
+ var fin = '', f = '', availcommands = 'coreinfo, coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,nwslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,sendcaps,openurl,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,wallpaper,agentmsg';
if (process.platform == 'win32') { availcommands += ',safemode,wpfhwacceleration,uac'; }
if (amt != null) { availcommands += ',amt,amtconfig,amtevents'; }
if (process.platform != 'freebsd') { availcommands += ',vm';}
@@ -2606,6 +2606,10 @@ function createMeshCore(agent) {
response = "Available commands: \r\n" + fin + ".";
break;
}
+ case 'coreinfo': {
+ response = JSON.stringify(meshCoreObj, null, 2);
+ break;
+ }
case 'agentmsg': {
if (args['_'].length == 0) {
response = "Proper usage:\r\n agentmsg add \"[message]\" [iconIndex]\r\n agentmsg remove [index]\r\n agentmsg list"; // Display usage
diff --git a/amtmanager.js b/amtmanager.js
index 939bf2d6..de848cf7 100644
--- a/amtmanager.js
+++ b/amtmanager.js
@@ -432,11 +432,11 @@ module.exports.CreateAmtManager = function (parent) {
// Connect now
var comm;
if (dev.tlsfail !== true) {
- parent.debug('amt', 'Relay-Connect', "TLS", dev.name, user, pass);
+ parent.debug('amt', (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "TLS", dev.name, user, pass);
comm = CreateWsmanComm(dev.nodeid, 16993, user, pass, 1, null, ciraconn); // Perform TLS
comm.xtlsFingerprint = 0; // Perform no certificate checking
} else {
- parent.debug('amt', 'Relay-Connect', "NoTLS", dev.name, user, pass);
+ parent.debug('amt', (dev.connType == 1) ? 'Relay-Connect' : 'LMS-Connect', "NoTLS", dev.name, user, pass);
comm = CreateWsmanComm(dev.nodeid, 16992, user, pass, 0, null, ciraconn); // No TLS
}
var wsstack = WsmanStackCreateService(comm);
@@ -608,7 +608,7 @@ module.exports.CreateAmtManager = function (parent) {
if ((typeof dev.aquired.user == 'string') && (dev.aquired.user != device.intelamt.user)) { change = 1; log = 1; device.intelamt.user = dev.aquired.user; changes.push('AMT user'); }
if ((typeof dev.aquired.pass == 'string') && (dev.aquired.pass != device.intelamt.pass)) { change = 1; log = 1; device.intelamt.pass = dev.aquired.pass; changes.push('AMT pass'); }
if ((typeof dev.aquired.mpspass == 'string') && (dev.aquired.mpspass != device.intelamt.mpspass)) { change = 1; log = 1; device.intelamt.mpspass = dev.aquired.mpspass; changes.push('AMT MPS pass'); }
- if ((typeof dev.aquired.host == 'string') && (dev.aquired.host != device.host)) { change = 1; log = 1; device.host = dev.aquired.host; changes.push('host'); }
+ if ((typeof dev.aquired.host == 'string') && (dev.aquired.host != device.intelamt.host)) { change = 1; log = 1; device.intelamt.host = dev.aquired.host; changes.push('AMT host'); }
if ((typeof dev.aquired.realm == 'string') && (dev.aquired.realm != device.intelamt.realm)) { change = 1; log = 1; device.intelamt.realm = dev.aquired.realm; changes.push('AMT realm'); }
if ((typeof dev.aquired.hash == 'string') && (dev.aquired.hash != device.intelamt.hash)) { change = 1; log = 1; device.intelamt.hash = dev.aquired.hash; changes.push('AMT hash'); }
if ((typeof dev.aquired.tls == 'number') && (dev.aquired.tls != device.intelamt.tls)) { change = 1; log = 1; device.intelamt.tls = dev.aquired.tls; changes.push('AMT TLS'); }
diff --git a/db.js b/db.js
index f58db236..5814949e 100644
--- a/db.js
+++ b/db.js
@@ -851,6 +851,13 @@ module.exports.CreateDB = function (parent, func) {
}
}
};
+ obj.GetAllTypeNodeFiltered = function (nodes, domain, type, id, func) {
+ if (id && (id != '')) {
+ sqlDbQuery('SELECT doc FROM meshcentral.main WHERE id = ? AND type = ? AND domain = ? AND nodeid IN (?)', [id, type, domain, nodes], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); });
+ } else {
+ sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ? AND domain = ? AND nodeid IN (?)', [type, domain, nodes], function (err, docs) { if (err == null) { for (var i in docs) { delete docs[i].type } } func(err, docs); });
+ }
+ };
obj.GetAllType = function (type, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE type = ?', [type], func); }
obj.GetAllIdsOfType = function (ids, domain, type, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE id IN (?) AND domain = ? AND type = ?', [ids, domain, type], func); }
obj.GetUserWithEmail = function (domain, email, func) { sqlDbQuery('SELECT doc FROM meshcentral.main WHERE domain = ? AND extra = ?', [domain, 'email/' + email], func); }
@@ -1010,6 +1017,11 @@ module.exports.CreateDB = function (parent, func) {
obj.file.find(x, { type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); });
}
};
+ obj.GetAllTypeNodeFiltered = function (nodes, domain, type, id, func) {
+ var x = { type: type, domain: domain, nodeid: { $in: nodes } };
+ if (id) { x._id = id; }
+ obj.file.find(x, { type: 0 }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); });
+ };
obj.GetAllType = function (type, func) { obj.file.find({ type: type }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); };
obj.GetAllIdsOfType = function (ids, domain, type, func) { obj.file.find({ type: type, domain: domain, _id: { $in: ids } }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); };
obj.GetUserWithEmail = function (domain, email, func) { obj.file.find({ type: 'user', domain: domain, email: email }).toArray(function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); };
@@ -1163,6 +1175,11 @@ module.exports.CreateDB = function (parent, func) {
obj.file.find(x, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); });
}
};
+ obj.GetAllTypeNodeFiltered = function (nodes, domain, type, id, func) {
+ var x = { type: type, domain: domain, nodeid: { $in: nodes } };
+ if (id) { x._id = id; }
+ obj.file.find(x, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); });
+ };
obj.GetAllType = function (type, func) { obj.file.find({ type: type }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); };
obj.GetAllIdsOfType = function (ids, domain, type, func) { obj.file.find({ type: type, domain: domain, _id: { $in: ids } }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); };
obj.GetUserWithEmail = function (domain, email, func) { obj.file.find({ type: 'user', domain: domain, email: email }, { type: 0 }, function (err, docs) { func(err, performTypedRecordDecrypt(docs)); }); };
diff --git a/meshagent.js b/meshagent.js
index a820d64b..e66d42a4 100644
--- a/meshagent.js
+++ b/meshagent.js
@@ -1135,6 +1135,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
case 'coreinfo':
{
// Sent by the agent to update agent information
+ // TODO: Check that this does not include outdates Intel AMT information
ChangeAgentCoreInfo(command);
break;
}
@@ -1255,34 +1256,6 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
}
break;
}
- case 'acmactivate':
- {
- if (obj.agentInfo.capabilities & 0x20) return; // If this is a temporary device, don't do ACM activation.
-
- // Get the current Intel AMT policy
- var mesh = parent.meshes[obj.dbMeshKey];
- if ((mesh == null) || (mesh.amt == null) || (mesh.amt.type != 3) || (domain.amtacmactivation == null) || (domain.amtacmactivation.acmmatch == null) || (mesh.amt.password == null)) break; // If this is not the right policy, ignore this.
-
- // Get the Intel AMT admin password, randomize if needed.
- var amtpassword = ((mesh.amt.password == '') ? getRandomAmtPassword() : mesh.amt.password);
- if (checkAmtPassword(amtpassword) == false) return; // Invalid Intel AMT password, this should never happen.
-
- // Agent is asking the server to sign an Intel AMT ACM activation request
- var signResponse = parent.parent.certificateOperations.signAcmRequest(domain, command, 'admin', amtpassword, obj.remoteaddrport, obj.dbNodeKey, obj.dbMeshKey, obj.agentInfo.computerName, obj.agentInfo.agentId); // TODO: Place account credentials!!!
- if ((signResponse != null) && (signResponse.error == null)) {
- // Log this activation event
- var event = { etype: 'node', action: 'amtactivate', nodeid: obj.dbNodeKey, domain: domain.id, msgid: 58, msgArgs: [command.fqdn], msg: 'Device requested Intel(R) AMT ACM activation, FQDN: ' + command.fqdn, ip: obj.remoteaddrport };
- if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the node. Another event will come.
- parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(obj.dbMeshKey, [obj.dbNodeKey]), obj, event);
-
- // Update the device Intel AMT information
- ChangeAgentCoreInfo({ 'intelamt': { user: 'admin', pass: amtpassword, uuid: command.uuid, realm: command.realm } });
-
- // Send the activation response
- obj.send(JSON.stringify(signResponse));
- }
- break;
- }
case 'diagnostic':
{
if (typeof command.value == 'object') {
@@ -1482,13 +1455,13 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
if (!device.intelamt) { device.intelamt = {}; }
if ((command.intelamt.ver != null) && (typeof command.intelamt.ver == 'string') && (command.intelamt.ver.length < 12) && (device.intelamt.ver != command.intelamt.ver)) { changes.push('AMT version'); device.intelamt.ver = command.intelamt.ver; change = 1; log = 1; }
if ((command.intelamt.sku != null) && (typeof command.intelamt.sku == 'number') && (device.intelamt.sku !== command.intelamt.sku)) { changes.push('AMT SKU'); device.intelamt.sku = command.intelamt.sku; change = 1; log = 1; }
- if ((command.intelamt.state != null) && (typeof command.intelamt.state == 'number') && (device.intelamt.state != command.intelamt.state)) { changes.push('AMT state'); device.intelamt.state = command.intelamt.state; change = 1; log = 1; }
+ if ((command.intelamt.state != null) && (typeof command.intelamt.state == 'number') && (device.intelamt.state != command.intelamt.state)) { changes.push('AMT state'); console.log('agent', device.intelamt.state, command.intelamt.state); device.intelamt.state = command.intelamt.state; change = 1; log = 1; }
if ((command.intelamt.flags != null) && (typeof command.intelamt.flags == 'number') && (device.intelamt.flags != command.intelamt.flags)) {
if (device.intelamt.flags) { changes.push('AMT flags (' + device.intelamt.flags + ' --> ' + command.intelamt.flags + ')'); } else { changes.push('AMT flags (' + command.intelamt.flags + ')'); }
device.intelamt.flags = command.intelamt.flags; change = 1; log = 1;
}
if ((command.intelamt.realm != null) && (typeof command.intelamt.realm == 'string') && (device.intelamt.realm != command.intelamt.realm)) { changes.push('AMT realm'); device.intelamt.realm = command.intelamt.realm; change = 1; log = 1; }
- if ((command.intelamt.host != null) && (typeof command.intelamt.host == 'string') && (device.intelamt.host != command.intelamt.host)) { changes.push('AMT host'); device.intelamt.host = command.intelamt.host; change = 1; log = 1; }
+ //if ((command.intelamt.host != null) && (typeof command.intelamt.host == 'string') && (device.intelamt.host != command.intelamt.host)) { changes.push('AMT host'); device.intelamt.host = command.intelamt.host; change = 1; log = 1; }
if ((command.intelamt.uuid != null) && (typeof command.intelamt.uuid == 'string') && (device.intelamt.uuid != command.intelamt.uuid)) { changes.push('AMT uuid'); device.intelamt.uuid = command.intelamt.uuid; change = 1; log = 1; }
if ((command.intelamt.user != null) && (typeof command.intelamt.user == 'string') && (device.intelamt.user != command.intelamt.user)) { changes.push('AMT user'); device.intelamt.user = command.intelamt.user; change = 1; log = 1; }
if ((command.intelamt.pass != null) && (typeof command.intelamt.pass == 'string') && (device.intelamt.pass != command.intelamt.pass)) { changes.push('AMT pass'); device.intelamt.pass = command.intelamt.pass; change = 1; log = 1; }
diff --git a/meshdesktopmultiplex.js b/meshdesktopmultiplex.js
index 0d3a13ba..80be00c6 100644
--- a/meshdesktopmultiplex.js
+++ b/meshdesktopmultiplex.js
@@ -803,7 +803,32 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) {
return obj;
}
+function checkDeviceSharePublicIdentifier(parent, domain, nodeid, pid, func) {
+ // Check the public id
+ parent.db.GetAllTypeNodeFiltered([nodeid], domain.id, 'deviceshare', null, function (err, docs) {
+ if ((err != null) || (docs.length == 0)) { func(false); return; }
+
+ // Search for the device share public identifier
+ var found = false;
+ for (var i = 0; i < docs.length; i++) { if (docs[i].publicid == pid) { found = true; } }
+ func(found);
+ });
+}
+
module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie) {
+ if ((cookie != null) && (typeof cookie.nid == 'string') && (typeof cookie.pid == 'string')) {
+ checkDeviceSharePublicIdentifier(parent, domain, cookie.nid, cookie.pid, function (result) {
+ // If the identifier if not found, close the connection
+ if (result == false) { try { ws.close(); } catch (e) { } return; }
+ // Public device sharing identifier found, continue as normal.
+ CreateMeshRelayEx(parent, ws, req, domain, user, cookie);
+ });
+ } else {
+ CreateMeshRelayEx(parent, ws, req, domain, user, cookie);
+ }
+}
+
+function CreateMeshRelayEx(parent, ws, req, domain, user, cookie) {
const currentTime = Date.now();
if (cookie) {
if ((typeof cookie.expire == 'number') && (cookie.expire <= currentTime)) { delete req.query.nodeid; }
@@ -819,6 +844,14 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
obj.ruserid = null;
obj.req = req; // Used in multi-server.js
+ // Setup subscription for desktop sharing public identifier
+ // If the identifier is removed, drop the connection
+ if ((cookie != null) && (typeof cookie.pid == 'string')) {
+ obj.pid = cookie.pid;
+ parent.parent.AddEventDispatch([obj.nodeid], obj);
+ obj.HandleEvent = function (source, event, ids, id) { if ((event.action == 'removedDeviceShare') && (obj.pid == event.publicid)) { obj.close(); } }
+ }
+
// Check relay authentication
if ((user == null) && (obj.req.query != null) && (obj.req.query.rauth != null)) {
const rcookie = parent.parent.decodeCookie(obj.req.query.rauth, parent.parent.loginCookieEncryptionKey, 240); // Cookie with 4 hour timeout
@@ -878,6 +911,9 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
// Clear timers if present
if (obj.pingtimer != null) { clearInterval(obj.pingtimer); delete obj.pingtimer; }
if (obj.pongtimer != null) { clearInterval(obj.pongtimer); delete obj.pongtimer; }
+
+ // Unsubscribe
+ if (obj.pid != null) { parent.parent.RemoveAllEventDispatch(obj); }
};
obj.sendAgentMessage = function (command, userid, domainid) {
diff --git a/meshrelay.js b/meshrelay.js
index c0ad10a9..5aa1cd13 100644
--- a/meshrelay.js
+++ b/meshrelay.js
@@ -13,7 +13,33 @@
/*jshint esversion: 6 */
"use strict";
+
+function checkDeviceSharePublicIdentifier(parent, domain, nodeid, pid, func) {
+ // Check the public id
+ parent.db.GetAllTypeNodeFiltered([nodeid], domain.id, 'deviceshare', null, function (err, docs) {
+ if ((err != null) || (docs.length == 0)) { func(false); return; }
+
+ // Search for the device share public identifier
+ var found = false;
+ for (var i = 0; i < docs.length; i++) { if (docs[i].publicid == pid) { found = true; } }
+ func(found);
+ });
+}
+
module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie) {
+ if ((cookie != null) && (typeof cookie.nid == 'string') && (typeof cookie.pid == 'string')) {
+ checkDeviceSharePublicIdentifier(parent, domain, cookie.nid, cookie.pid, function (result) {
+ // If the identifier if not found, close the connection
+ if (result == false) { try { ws.close(); } catch (e) { } return; }
+ // Public device sharing identifier found, continue as normal.
+ CreateMeshRelayEx(parent, ws, req, domain, user, cookie);
+ });
+ } else {
+ CreateMeshRelayEx(parent, ws, req, domain, user, cookie);
+ }
+}
+
+function CreateMeshRelayEx(parent, ws, req, domain, user, cookie) {
const currentTime = Date.now();
if (cookie) {
if ((typeof cookie.expire == 'number') && (cookie.expire <= currentTime)) { try { ws.close(); parent.parent.debug('relay', 'Relay: Expires cookie (' + req.clientIp + ')'); } catch (e) { console.log(e); } return; }
@@ -26,6 +52,14 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
obj.ruserid = null;
obj.req = req; // Used in multi-server.js
+ // Setup subscription for desktop sharing public identifier
+ // If the identifier is removed, drop the connection
+ if ((cookie != null) && (typeof cookie.pid == 'string')) {
+ obj.pid = cookie.pid;
+ parent.parent.AddEventDispatch([cookie.nid], obj);
+ obj.HandleEvent = function (source, event, ids, id) { if ((event.action == 'removedDeviceShare') && (obj.pid == event.publicid)) { closeBothSides(); } }
+ }
+
// Check relay authentication
if ((user == null) && (obj.req.query != null) && (obj.req.query.rauth != null)) {
const rcookie = parent.parent.decodeCookie(obj.req.query.rauth, parent.parent.loginCookieEncryptionKey, 240); // Cookie with 4 hour timeout
@@ -78,6 +112,9 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
delete obj.ws;
delete obj.peer;
delete obj.expireTimer;
+
+ // Unsubscribe
+ if (obj.pid != null) { parent.parent.RemoveAllEventDispatch(obj); }
};
obj.sendAgentMessage = function (command, userid, domainid) {
@@ -465,6 +502,9 @@ module.exports.CreateMeshRelay = function (parent, ws, req, domain, user, cookie
delete obj.peer;
if (obj.pingtimer != null) { clearInterval(obj.pingtimer); delete obj.pingtimer; }
if (obj.pongtimer != null) { clearInterval(obj.pongtimer); delete obj.pongtimer; }
+
+ // Unsubscribe
+ if (obj.pid != null) { parent.parent.RemoveAllEventDispatch(obj); }
}
// Record a new entry in a recording log
diff --git a/meshuser.js b/meshuser.js
index 9283c4cb..f448d3c3 100644
--- a/meshuser.js
+++ b/meshuser.js
@@ -4577,9 +4577,107 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
ws.send(JSON.stringify({ action: 'createInviteLink', meshid: command.meshid, url: url, expire: command.expire, cookie: inviteCookie, responseid: command.responseid, tag: command.tag }));
break;
}
+ case 'deviceShares': {
+ var err = null;
+ if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the nodeid
+
+ // Handle any errors
+ if (err != null) {
+ if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'deviceShares', responseid: command.responseid, result: err })); } catch (ex) { } }
+ break;
+ }
+
+ // Get the device rights
+ parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
+ // If node not found or we don't have remote control, reject.
+ if ((node == null) || ((rights & 8) == 0)) return;
+
+ // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request.
+ if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return;
+
+ parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) {
+ if (err != null) return;
+ var now = Date.now(), removed = false, okDocs = [];
+ for (var i = 0; i < docs.length; i++) {
+ const doc = docs[i];
+ if (doc.expireTime < now) {
+ // This share is expired.
+ parent.db.Remove(doc._id, function () { }); delete docs[i]; removed = true;
+ } else {
+ // This share is ok, remove extra data we don't need to send.
+ delete doc._id; delete doc.domain; delete doc.nodeid; delete doc.type;
+ okDocs.push(doc);
+ }
+ }
+ try { ws.send(JSON.stringify({ action: 'deviceShares', nodeid: command.nodeid, deviceShares: okDocs })); } catch (ex) { }
+
+ // If we removed any shares, send device share update
+ if (removed == true) {
+ var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
+ parent.parent.DispatchEvent(targets, obj, { etype: 'node', nodeid: node._id, action: 'deviceShareUpdate', domain: domain.id, deviceShares: okDocs, nolog: 1 });
+ }
+ });
+ });
+
+ break;
+ }
+ case 'removeDeviceShare': {
+ var err = null;
+ if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the nodeid
+ else if (common.validateString(command.publicid, 1, 128) == false) { err = 'Invalid public id'; } // Check the public identifier
+
+ // Handle any errors
+ if (err != null) {
+ if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'removeDeviceShare', responseid: command.responseid, result: err })); } catch (ex) { } }
+ break;
+ }
+
+ // Get the device rights
+ parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
+ // If node not found or we don't have remote control, reject.
+ if ((node == null) || ((rights & 8) == 0)) return;
+
+ // If there is MESHRIGHT_DESKLIMITEDINPUT or MESHRIGHT_REMOTEVIEWONLY on this account, reject this request.
+ if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return;
+
+ parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) {
+ if (err != null) return;
+
+ // Remove device sharing
+ var now = Date.now(), removedExact = null, removed = false, okDocs = [];
+ for (var i = 0; i < docs.length; i++) {
+ const doc = docs[i];
+ if (doc.publicid == command.publicid) { parent.db.Remove(doc._id, function () { }); removedExact = doc; removed = true; }
+ else if (doc.expireTime < now) { parent.db.Remove(doc._id, function () { }); removed = true; } else {
+ // This share is ok, remove extra data we don't need to send.
+ delete doc._id; delete doc.domain; delete doc.nodeid; delete doc.type;
+ okDocs.push(doc);
+ }
+ }
+
+ // Confirm removal if requested
+ if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'removeDeviceShare', responseid: command.responseid, nodeid: command.nodeid, publicid: doc.publicid, removed: removedExact })); } catch (ex) { } }
+
+ // Event device share removal
+ if (removedExact != null) {
+ // Send out an event that we removed a device share
+ var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
+ var event = { etype: 'node', userid: user._id, username: user.name, nodeid: node._id, action: 'removedDeviceShare', msg: 'Removed Device Share', msgid: 102, msgArgs: [removedExact.guestName], domain: domain.id, publicid: command.publicid };
+ parent.parent.DispatchEvent(targets, obj, event);
+ }
+
+ // If we removed any shares, send device share update
+ if (removed == true) {
+ var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
+ parent.parent.DispatchEvent(targets, obj, { etype: 'node', nodeid: node._id, action: 'deviceShareUpdate', domain: domain.id, deviceShares: okDocs, nolog: 1 });
+ }
+ });
+ });
+ break;
+ }
case 'createDeviceShareLink': {
var err = null, maxExpireMinutes = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60;
- if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the meshid
+ if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the nodeid
else if (common.validateString(command.guestname, 1, 128) == false) { err = 'Invalid guest name'; } // Check the guest name
else if (common.validateInt(command.expire, 1, maxExpireMinutes) == false) { err = 'Invalid expire time'; } // Check the expire time in hours
else if (common.validateInt(command.consent, 0, 256) == false) { err = 'Invalid flags'; } // Check the flags
@@ -4595,7 +4693,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
break;
}
- // Get the device from the database
+ // Get the device rights
parent.GetNodeWithRights(domain, user, command.nodeid, function (node, rights, visible) {
// If node not found or we don't have remote control, reject.
if ((node == null) || ((rights & 8) == 0)) return;
@@ -4604,8 +4702,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return;
// Create cookie
- var expireTime = Date.now() + (60000 * command.expire);
- const inviteCookie = parent.parent.encodeCookie({ a: 5, uid: user._id, gn: command.guestname, nid: node._id, cf: command.consent, expire: expireTime }, parent.parent.invitationLinkEncryptionKey);
+ var publicid = getRandomPassword();
+ var startTime = Date.now(), expireTime = Date.now() + (60000 * command.expire);
+ const inviteCookie = parent.parent.encodeCookie({ a: 5, uid: user._id, gn: command.guestname, nid: node._id, cf: command.consent, start: startTime, expire: expireTime, pid: publicid }, parent.parent.invitationLinkEncryptionKey);
if (inviteCookie == null) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'createDeviceShareLink', responseid: command.responseid, result: 'Unable to generate shareing cookie' })); } catch (ex) { } } return; }
command.expire = expireTime;
@@ -4618,6 +4717,33 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
if (serverName.split('.') == 1) { url = '/' + xdomain + 'desktop?c=' + inviteCookie; }
command.url = url;
ws.send(JSON.stringify(command));
+
+ // Create a device sharing database entry
+ parent.db.Set({ type: 'deviceshare', nodeid: node._id, domain: node.domain, publicid: publicid, startTime: startTime, expireTime: expireTime, userid: user._id, guestName: command.guestname, consent: command.consent, url: url });
+
+ // Send out an event that we added a device share
+ var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
+ var event = { etype: 'node', userid: user._id, username: user.name, nodeid: node._id, action: 'addedDeviceShare', msg: 'Added Device Share', msgid: 101, msgArgs: [command.guestname, 'DATETIME:' + startTime, 'DATETIME:' + expireTime], domain: domain.id };
+ parent.parent.DispatchEvent(targets, obj, event);
+
+ // Send device share update
+ parent.db.GetAllTypeNodeFiltered([command.nodeid], domain.id, 'deviceshare', null, function (err, docs) {
+ if (err != null) return;
+
+ // Check device sharing
+ var now = Date.now();
+ for (var i = 0; i < docs.length; i++) {
+ const doc = docs[i];
+ if (doc.expireTime < now) { parent.db.Remove(doc._id, function () { }); delete docs[i]; } else {
+ // This share is ok, remove extra data we don't need to send.
+ delete doc._id; delete doc.domain; delete doc.nodeid; delete doc.type;
+ }
+ }
+
+ // Send device share update
+ var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
+ parent.parent.DispatchEvent(targets, obj, { etype: 'node', nodeid: node._id, action: 'deviceShareUpdate', domain: domain.id, deviceShares: docs, nolog: 1 });
+ });
});
break;
}
diff --git a/mpsserver.js b/mpsserver.js
index 9da02ed3..4d5fc828 100644
--- a/mpsserver.js
+++ b/mpsserver.js
@@ -701,7 +701,6 @@ module.exports.CreateMpsServer = function (parent, db, args, certificates) {
var addr = data.substring(10 + requestLen, 10 + requestLen + addrLen);
var port = common.ReadInt(data, 10 + requestLen + addrLen);
parent.debug('mpscmd', '--> GLOBAL_REQUEST', request, addr + ':' + port);
- ChangeHostname(socket, addr, socket.tag.SystemId);
if (socket.tag.boundPorts.indexOf(port) == -1) { socket.tag.boundPorts.push(port); }
SendTcpForwardSuccessReply(socket, port);
return 14 + requestLen + addrLen;
@@ -1131,44 +1130,6 @@ module.exports.CreateMpsServer = function (parent, db, args, certificates) {
return cirachannel;
};
- function ChangeHostname(socket, host, systemid) {
- if (socket.tag.host === host) return; // Nothing to change
- socket.tag.host = host;
-
- // Change the device
- obj.db.Get(socket.tag.nodeid, function (err, nodes) {
- if ((nodes == null) || (nodes.length !== 1)) return;
- var node = nodes[0];
-
- // See if any changes need to be made
- if ((node.intelamt != null) && (node.intelamt.host == host) && (node.name != null) && (node.name != '') && (node.intelamt.state == 2)) return;
-
- // Get the mesh for this device
- obj.db.Get(node.meshid, function (err, meshes) {
- if ((meshes == null) || (meshes.length !== 1)) return;
- var mesh = meshes[0];
-
- // Ready the node change event
- var changes = ['host'], event = { etype: 'node', action: 'changenode', nodeid: node._id };
- event.msg = +": ";
-
- // Make the change & save
- if (node.intelamt == null) node.intelamt = {};
- node.intelamt.host = host;
- node.intelamt.state = 2; // Set the state to activated, since this is pretty obvious, we have a CIRA connection.
- if (((node.name == null) || (node.name == '')) && (host != null) && (host != '')) { node.name = host.split('.')[0]; } // If this system has no name, set it to the start of the domain name.
- if (((node.name == null) || (node.name == '')) && (systemid != null)) { node.name = systemid; } // If this system still has no name, set it to the system GUID.
- obj.db.Set(node);
-
- // Event the node change
- event.msg = 'CIRA changed device ' + node.name + ' from group ' + mesh.name + ': ' + changes.join(', ');
- event.node = parent.webserver.CloneSafeNode(node);
- if (obj.db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the node. Another event will come.
- obj.parent.DispatchEvent(['*', node.meshid], obj, event);
- });
- });
- }
-
// Change a node to a new meshid, this is called when a node changes groups.
obj.changeDeviceMesh = function (nodeid, newMeshId) {
var connectionArray = obj.ciraConnections[nodeid];
diff --git a/public/scripts/amt-wsman-0.2.0-min.js b/public/scripts/amt-wsman-0.2.0-min.js
index a8eb3bca..86d1ae50 100644
--- a/public/scripts/amt-wsman-0.2.0-min.js
+++ b/public/scripts/amt-wsman-0.2.0-min.js
@@ -1 +1 @@
-var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return''+e.InstanceID+"";var s="";for(var r in e)if(e.hasOwnProperty(r)){if(s+='',e[r].ReferenceParameters){s+="",s+=""+e[r].Address+""+e[r].ReferenceParameters.ResourceURI+"";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o"+a[o].Value+"";else s+=""+a.Value+"";s+=""}else s+=e[r];s+=""}return s+=""}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,d,c){var m="",i="";null!=d&&null!=c&&(m="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken"+d+''+c+"",i=''),l=null!=l&&null!=l?""+l+"":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(n)+m+''+r+""+i+"PT0.000000S";p.PerformAjax(u+"",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(o)+"
";p.PerformAjax(t+"",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S"+w(t)+""+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+=""+s[o].Address+""+s[o].ReferenceParameters.ResourceURI+"";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n"+t[n].Value+"";else a+=""+t.Value+"";a+=""}else if(Array.isArray(s[o]))for(n=0;n"+s[o][n].toString()+"";else a+=""+s[o].toString()+"";return a+=""}(e,s);p.PerformAjax(n+"",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(t)+"';for(var d in s)l+=""+s[d]+"";p.PerformAjax(l+"",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S'+s+"",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(s)+"'+r+"",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+s+"99999999",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o'+e.InstanceID+"";var s="";for(var r in e)if(e.hasOwnProperty(r)){if(s+='',e[r].ReferenceParameters){s+="",s+=""+e[r].Address+""+e[r].ReferenceParameters.ResourceURI+"";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o"+a[o].Value+"";else s+=""+a.Value+"";s+=""}else s+=e[r];s+=""}return s+=""}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,c,d){var m="",i="";null!=c&&null!=d&&(m="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken"+c+''+d+"",i=''),l=null!=l&&null!=l?""+l+"":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(n)+m+''+r+""+i+"PT0.000000S";p.PerformAjax(u+"",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(o)+"";p.PerformAjax(t+"",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S"+w(t)+""+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+=""+s[o].Address+""+s[o].ReferenceParameters.ResourceURI+"";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n"+t[n].Value+"";else a+=""+t.Value+"";a+=""}else if(Array.isArray(s[o]))for(n=0;n"+s[o][n].toString()+"";else a+=""+s[o].toString()+"";return a+=""}(e,s);p.PerformAjax(n+"",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(t)+"';for(var c in s)l+=""+s[c]+"";p.PerformAjax(l+"",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S'+s+"",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(s)+"";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+r+"",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+s+"99999999",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o29->1339",
- "default.handlebars->29->1341"
+ "default.handlebars->29->1342",
+ "default.handlebars->29->1344"
]
},
{
@@ -204,7 +204,7 @@
"zh-chs": " 可以使用密码提示,但不建议使用。",
"zh-cht": " 可以使用密碼提示,但不建議使用。",
"xloc": [
- "default.handlebars->29->1252"
+ "default.handlebars->29->1255"
]
},
{
@@ -224,8 +224,8 @@
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
"xloc": [
- "default.handlebars->29->1412",
- "default.handlebars->29->1872"
+ "default.handlebars->29->1415",
+ "default.handlebars->29->1877"
]
},
{
@@ -419,7 +419,7 @@
"en": "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric.",
"nl": "* 8 karakters, 1 hoofdletter, 1 normale letter, 1 nummeriek, 1 niet alfanumeriek.",
"xloc": [
- "default.handlebars->29->1381",
+ "default.handlebars->29->1384",
"default.handlebars->29->305"
]
},
@@ -495,7 +495,7 @@
"zh-cht": ",",
"xloc": [
"default-mobile.handlebars->9->467",
- "default.handlebars->29->1482"
+ "default.handlebars->29->1485"
]
},
{
@@ -536,7 +536,7 @@
"zh-chs": ",MQTT在线",
"zh-cht": ",MQTT在線",
"xloc": [
- "default.handlebars->29->994"
+ "default.handlebars->29->997"
]
},
{
@@ -556,7 +556,7 @@
"zh-chs": ",软体KVM",
"zh-cht": ",軟體KVM",
"xloc": [
- "default.handlebars->29->818",
+ "default.handlebars->29->821",
"desktop.handlebars->3->13"
]
},
@@ -579,9 +579,9 @@
"xloc": [
"default-mobile.handlebars->9->296",
"default-mobile.handlebars->9->305",
- "default.handlebars->29->825",
- "default.handlebars->29->858",
- "default.handlebars->29->870",
+ "default.handlebars->29->828",
+ "default.handlebars->29->861",
+ "default.handlebars->29->873",
"desktop.handlebars->3->20",
"xterm.handlebars->9->6"
]
@@ -702,7 +702,7 @@
"zh-chs": ",{0}观看",
"zh-cht": ",{0}觀看",
"xloc": [
- "default.handlebars->29->819",
+ "default.handlebars->29->822",
"desktop.handlebars->3->14"
]
},
@@ -767,9 +767,9 @@
"xloc": [
"default-mobile.handlebars->9->108",
"default-mobile.handlebars->9->307",
- "default.handlebars->29->1523",
- "default.handlebars->29->2027",
- "default.handlebars->29->875"
+ "default.handlebars->29->1526",
+ "default.handlebars->29->2034",
+ "default.handlebars->29->878"
]
},
{
@@ -825,7 +825,7 @@
"zh-chs": "1个活跃时段",
"zh-cht": "1個活躍時段",
"xloc": [
- "default.handlebars->29->1941"
+ "default.handlebars->29->1946"
]
},
{
@@ -847,7 +847,7 @@
"xloc": [
"default-mobile.handlebars->9->118",
"default-mobile.handlebars->9->471",
- "default.handlebars->29->1547",
+ "default.handlebars->29->1550",
"download.handlebars->3->1",
"download2.handlebars->5->1"
]
@@ -869,7 +869,7 @@
"zh-chs": "1条连接",
"zh-cht": "1位聯絡文",
"xloc": [
- "default.handlebars->29->821",
+ "default.handlebars->29->824",
"desktop.handlebars->3->16"
]
},
@@ -912,7 +912,7 @@
"zh-chs": "1组",
"zh-cht": "1群",
"xloc": [
- "default.handlebars->29->1906"
+ "default.handlebars->29->1911"
]
},
{
@@ -954,7 +954,7 @@
"zh-chs": "1分钟",
"zh-cht": "1分鐘",
"xloc": [
- "default.handlebars->29->710"
+ "default.handlebars->29->713"
]
},
{
@@ -1016,7 +1016,7 @@
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
"xloc": [
- "default.handlebars->29->1696"
+ "default.handlebars->29->1701"
]
},
{
@@ -1082,7 +1082,7 @@
"default-mobile.handlebars->9->172",
"default-mobile.handlebars->9->175",
"default-mobile.handlebars->9->178",
- "default.handlebars->29->1700",
+ "default.handlebars->29->1705",
"default.handlebars->29->250",
"default.handlebars->29->253",
"default.handlebars->29->256",
@@ -1214,7 +1214,7 @@
"zh-chs": "10分钟",
"zh-cht": "10分鐘",
"xloc": [
- "default.handlebars->29->712"
+ "default.handlebars->29->715"
]
},
{
@@ -1283,7 +1283,7 @@
"en": "12 hours",
"nl": "12 uur",
"xloc": [
- "default.handlebars->29->720"
+ "default.handlebars->29->723"
]
},
{
@@ -1325,28 +1325,28 @@
"zh-chs": "15分钟",
"zh-cht": "15分鐘",
"xloc": [
- "default.handlebars->29->713"
+ "default.handlebars->29->716"
]
},
{
"en": "16 hours",
"nl": "16 uur",
"xloc": [
- "default.handlebars->29->721"
+ "default.handlebars->29->724"
]
},
{
"en": "2 days",
"nl": "2 dagen",
"xloc": [
- "default.handlebars->29->723"
+ "default.handlebars->29->726"
]
},
{
"en": "2 hours",
"nl": "2 uur",
"xloc": [
- "default.handlebars->29->717"
+ "default.handlebars->29->720"
]
},
{
@@ -1437,7 +1437,7 @@
"en": "24 hours",
"nl": "24 uur",
"xloc": [
- "default.handlebars->29->722"
+ "default.handlebars->29->725"
]
},
{
@@ -1499,7 +1499,7 @@
"zh-chs": "2FA备份代码已清除",
"zh-cht": "2FA備份代碼已清除",
"xloc": [
- "default.handlebars->29->1658"
+ "default.handlebars->29->1661"
]
},
{
@@ -1519,8 +1519,8 @@
"zh-chs": "启用第二因素身份验证",
"zh-cht": "啟用第二因素身份驗證",
"xloc": [
- "default.handlebars->29->1713",
- "default.handlebars->29->1928"
+ "default.handlebars->29->1718",
+ "default.handlebars->29->1933"
]
},
{
@@ -1639,7 +1639,7 @@
"zh-chs": "30分钟",
"zh-cht": "30分鐘",
"xloc": [
- "default.handlebars->29->714"
+ "default.handlebars->29->717"
]
},
{
@@ -1689,14 +1689,14 @@
"en": "4 days",
"nl": "4 dagen",
"xloc": [
- "default.handlebars->29->724"
+ "default.handlebars->29->727"
]
},
{
"en": "4 hours",
"nl": "4 uur",
"xloc": [
- "default.handlebars->29->718"
+ "default.handlebars->29->721"
]
},
{
@@ -1779,7 +1779,7 @@
"zh-chs": "45分钟",
"zh-cht": "45分鐘",
"xloc": [
- "default.handlebars->29->715"
+ "default.handlebars->29->718"
]
},
{
@@ -1819,7 +1819,7 @@
"zh-chs": "5分钟",
"zh-cht": "5分鐘",
"xloc": [
- "default.handlebars->29->711"
+ "default.handlebars->29->714"
]
},
{
@@ -1932,7 +1932,7 @@
"en": "60 minutes",
"nl": "60 minuten",
"xloc": [
- "default.handlebars->29->716"
+ "default.handlebars->29->719"
]
},
{
@@ -2052,7 +2052,7 @@
"zh-chs": "7天电源状态",
"zh-cht": "7天電源狀態",
"xloc": [
- "default.handlebars->29->751"
+ "default.handlebars->29->754"
]
},
{
@@ -2117,7 +2117,7 @@
"xloc": [
"default.handlebars->29->329",
"default.handlebars->29->343",
- "default.handlebars->29->719"
+ "default.handlebars->29->722"
]
},
{
@@ -2335,7 +2335,7 @@
"zh-cht": "ACM",
"xloc": [
"default-mobile.handlebars->9->236",
- "default.handlebars->29->1355",
+ "default.handlebars->29->1358",
"default.handlebars->29->560"
]
},
@@ -2461,7 +2461,7 @@
"zh-chs": "拒绝访问",
"zh-cht": "拒絕存取",
"xloc": [
- "default.handlebars->29->995"
+ "default.handlebars->29->998"
]
},
{
@@ -2503,7 +2503,7 @@
"zh-chs": "访问服务器档案",
"zh-cht": "存取伺服器檔案",
"xloc": [
- "default.handlebars->29->1878"
+ "default.handlebars->29->1883"
]
},
{
@@ -2592,8 +2592,8 @@
"default-mobile.handlebars->9->93",
"default-mobile.handlebars->9->95",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
- "default.handlebars->29->1261",
- "default.handlebars->29->1263",
+ "default.handlebars->29->1264",
+ "default.handlebars->29->1266",
"default.handlebars->29->529",
"default.handlebars->29->531"
]
@@ -2656,7 +2656,7 @@
"zh-chs": "帐户已更改:{0}",
"zh-cht": "帳戶已更改:{0}",
"xloc": [
- "default.handlebars->29->1631"
+ "default.handlebars->29->1634"
]
},
{
@@ -2676,7 +2676,7 @@
"zh-chs": "创建帐户,电子邮件为{0}",
"zh-cht": "創建帳戶,電子郵件為{0}",
"xloc": [
- "default.handlebars->29->1630"
+ "default.handlebars->29->1633"
]
},
{
@@ -2696,7 +2696,7 @@
"zh-chs": "创建帐户,用户名是{0}",
"zh-cht": "帳戶已創建,用戶名是{0}",
"xloc": [
- "default.handlebars->29->1629"
+ "default.handlebars->29->1632"
]
},
{
@@ -2716,8 +2716,8 @@
"zh-chs": "帐户已被锁定",
"zh-cht": "帳戶已被鎖定",
"xloc": [
- "default.handlebars->29->1715",
- "default.handlebars->29->1875"
+ "default.handlebars->29->1720",
+ "default.handlebars->29->1880"
]
},
{
@@ -2781,7 +2781,7 @@
"zh-chs": "帐号登录",
"zh-cht": "帳號登錄",
"xloc": [
- "default.handlebars->29->1566"
+ "default.handlebars->29->1569"
]
},
{
@@ -2801,7 +2801,7 @@
"zh-chs": "帐户登出",
"zh-cht": "帳戶登出",
"xloc": [
- "default.handlebars->29->1567"
+ "default.handlebars->29->1570"
]
},
{
@@ -2843,7 +2843,7 @@
"zh-chs": "帐户密码已更改:{0}",
"zh-cht": "帳戶密碼已更改:{0}",
"xloc": [
- "default.handlebars->29->1639"
+ "default.handlebars->29->1642"
]
},
{
@@ -2863,7 +2863,7 @@
"zh-chs": "帐户已删除",
"zh-cht": "帳戶已刪除",
"xloc": [
- "default.handlebars->29->1628"
+ "default.handlebars->29->1631"
]
},
{
@@ -2903,7 +2903,7 @@
"zh-chs": "指令",
"zh-cht": "指令",
"xloc": [
- "default.handlebars->29->1000",
+ "default.handlebars->29->1003",
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
]
},
@@ -2924,8 +2924,8 @@
"zh-chs": "动作档案",
"zh-cht": "動作檔案",
"xloc": [
- "default.handlebars->29->794",
- "default.handlebars->29->796"
+ "default.handlebars->29->797",
+ "default.handlebars->29->799"
]
},
{
@@ -3023,7 +3023,7 @@
"default-mobile.handlebars->9->370",
"default.handlebars->29->553",
"default.handlebars->29->555",
- "default.handlebars->29->956"
+ "default.handlebars->29->959"
]
},
{
@@ -3046,6 +3046,12 @@
"default.handlebars->29->202"
]
},
+ {
+ "en": "Active Device Sharing",
+ "xloc": [
+ "default.handlebars->29->661"
+ ]
+ },
{
"cs": "Aktivní uživatel{0}",
"de": "Aktive Benutzer{0}",
@@ -3083,7 +3089,7 @@
"zh-chs": "添加代理",
"zh-cht": "新增代理",
"xloc": [
- "default.handlebars->29->1351",
+ "default.handlebars->29->1354",
"default.handlebars->29->283"
]
},
@@ -3121,8 +3127,8 @@
"zh-chs": "添加设备",
"zh-cht": "新增裝置",
"xloc": [
- "default.handlebars->29->1852",
- "default.handlebars->29->1976"
+ "default.handlebars->29->1857",
+ "default.handlebars->29->1981"
]
},
{
@@ -3142,7 +3148,7 @@
"zh-chs": "添加设备日志",
"zh-cht": "新增裝置日誌",
"xloc": [
- "default.handlebars->29->700"
+ "default.handlebars->29->703"
]
},
{
@@ -3162,9 +3168,9 @@
"zh-chs": "添加设备组",
"zh-cht": "新增裝置群",
"xloc": [
- "default.handlebars->29->1446",
- "default.handlebars->29->1846",
- "default.handlebars->29->1964",
+ "default.handlebars->29->1449",
+ "default.handlebars->29->1851",
+ "default.handlebars->29->1969",
"default.handlebars->29->237"
]
},
@@ -3185,7 +3191,7 @@
"zh-chs": "添加设备组权限",
"zh-cht": "新增裝置群權限",
"xloc": [
- "default.handlebars->29->1443"
+ "default.handlebars->29->1446"
]
},
{
@@ -3205,8 +3211,8 @@
"zh-chs": "添加设备权限",
"zh-cht": "新增裝置權限",
"xloc": [
- "default.handlebars->29->1448",
- "default.handlebars->29->1450"
+ "default.handlebars->29->1451",
+ "default.handlebars->29->1453"
]
},
{
@@ -3303,7 +3309,7 @@
"zh-chs": "添加成员身份",
"zh-cht": "新增成員身份",
"xloc": [
- "default.handlebars->29->1994"
+ "default.handlebars->29->2001"
]
},
{
@@ -3343,8 +3349,8 @@
"zh-chs": "添加安全密钥",
"zh-cht": "新增安全密鑰",
"xloc": [
- "default.handlebars->29->1028",
- "default.handlebars->29->1029",
+ "default.handlebars->29->1031",
+ "default.handlebars->29->1032",
"default.handlebars->29->149",
"default.handlebars->29->151",
"default.handlebars->29->154",
@@ -3389,7 +3395,7 @@
"zh-chs": "添加用户设备权限",
"zh-cht": "新增用戶裝置權限",
"xloc": [
- "default.handlebars->29->1453"
+ "default.handlebars->29->1456"
]
},
{
@@ -3409,9 +3415,9 @@
"zh-chs": "添加用户组",
"zh-cht": "新增用戶群",
"xloc": [
- "default.handlebars->29->1347",
- "default.handlebars->29->1445",
- "default.handlebars->29->1970",
+ "default.handlebars->29->1350",
+ "default.handlebars->29->1448",
+ "default.handlebars->29->1975",
"default.handlebars->29->654"
]
},
@@ -3432,7 +3438,7 @@
"zh-chs": "添加用户组设备权限",
"zh-cht": "新增用戶群裝置權限",
"xloc": [
- "default.handlebars->29->1455"
+ "default.handlebars->29->1458"
]
},
{
@@ -3489,8 +3495,8 @@
"zh-chs": "添加用户",
"zh-cht": "新增用戶",
"xloc": [
- "default.handlebars->29->1346",
- "default.handlebars->29->1841"
+ "default.handlebars->29->1349",
+ "default.handlebars->29->1846"
]
},
{
@@ -3510,7 +3516,7 @@
"zh-chs": "将用户添加到设备组",
"zh-cht": "將用戶新增到裝置群",
"xloc": [
- "default.handlebars->29->1442"
+ "default.handlebars->29->1445"
]
},
{
@@ -3530,7 +3536,7 @@
"zh-chs": "将用户添加到用户组",
"zh-cht": "將用戶新增到用戶群",
"xloc": [
- "default.handlebars->29->1874"
+ "default.handlebars->29->1879"
]
},
{
@@ -3647,7 +3653,7 @@
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
"xloc": [
- "default.handlebars->29->1350",
+ "default.handlebars->29->1353",
"default.handlebars->29->282"
]
},
@@ -3695,7 +3701,13 @@
"zh-chs": "添加了身份验证应用程序",
"zh-cht": "添加了身份驗證應用程序",
"xloc": [
- "default.handlebars->29->1655"
+ "default.handlebars->29->1658"
+ ]
+ },
+ {
+ "en": "Added device share {0} from {1} to {2}",
+ "xloc": [
+ "default.handlebars->29->1669"
]
},
{
@@ -3715,8 +3727,8 @@
"zh-chs": "已将设备{0}添加到设备组{1}",
"zh-cht": "已將設備{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->29->1622",
- "default.handlebars->29->1649"
+ "default.handlebars->29->1625",
+ "default.handlebars->29->1652"
]
},
{
@@ -3736,7 +3748,7 @@
"zh-chs": "添加了安全密钥",
"zh-cht": "添加了安全密鑰",
"xloc": [
- "default.handlebars->29->1660"
+ "default.handlebars->29->1663"
]
},
{
@@ -3756,7 +3768,7 @@
"zh-chs": "已将用户组{0}添加到设备组{1}",
"zh-cht": "已將用戶組{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->29->1633"
+ "default.handlebars->29->1636"
]
},
{
@@ -3776,8 +3788,8 @@
"zh-chs": "已将用户{0}添加到用户组{1}",
"zh-cht": "已將用戶{0}添加到用戶組{1}",
"xloc": [
- "default.handlebars->29->1636",
- "default.handlebars->29->1645"
+ "default.handlebars->29->1639",
+ "default.handlebars->29->1648"
]
},
{
@@ -3838,7 +3850,7 @@
"zh-cht": "管理員控制模式(ACM)",
"xloc": [
"default-mobile.handlebars->9->372",
- "default.handlebars->29->958"
+ "default.handlebars->29->961"
]
},
{
@@ -3859,7 +3871,7 @@
"zh-cht": "管理員憑證",
"xloc": [
"default-mobile.handlebars->9->378",
- "default.handlebars->29->964"
+ "default.handlebars->29->967"
]
},
{
@@ -3900,7 +3912,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->29->1910"
+ "default.handlebars->29->1915"
]
},
{
@@ -3941,7 +3953,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->29->1778"
+ "default.handlebars->29->1783"
]
},
{
@@ -3961,7 +3973,7 @@
"zh-chs": "管理员",
"zh-cht": "管理員",
"xloc": [
- "default.handlebars->29->1707"
+ "default.handlebars->29->1712"
]
},
{
@@ -3981,7 +3993,7 @@
"zh-chs": "南非文",
"zh-cht": "南非文",
"xloc": [
- "default.handlebars->29->1031"
+ "default.handlebars->29->1034"
]
},
{
@@ -4004,8 +4016,8 @@
"default-mobile.handlebars->9->203",
"default-mobile.handlebars->9->228",
"default-mobile.handlebars->9->250",
- "default.handlebars->29->1509",
- "default.handlebars->29->1517",
+ "default.handlebars->29->1512",
+ "default.handlebars->29->1520",
"default.handlebars->29->213",
"default.handlebars->29->422",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4028,8 +4040,8 @@
"zh-chs": "代理+英特尔AMT",
"zh-cht": "代理+Intel® AMT",
"xloc": [
- "default.handlebars->29->1511",
- "default.handlebars->29->1519"
+ "default.handlebars->29->1514",
+ "default.handlebars->29->1522"
]
},
{
@@ -4070,7 +4082,7 @@
"zh-cht": "代理控制台",
"xloc": [
"default-mobile.handlebars->9->449",
- "default.handlebars->29->1463"
+ "default.handlebars->29->1466"
]
},
{
@@ -4090,7 +4102,7 @@
"zh-chs": "代理错误计数器",
"zh-cht": "代理錯誤計數器",
"xloc": [
- "default.handlebars->29->2037"
+ "default.handlebars->29->2044"
]
},
{
@@ -4193,7 +4205,7 @@
"zh-chs": "代理时段",
"zh-cht": "代理時段",
"xloc": [
- "default.handlebars->29->2053"
+ "default.handlebars->29->2060"
]
},
{
@@ -4234,7 +4246,7 @@
"zh-chs": "代理类型",
"zh-cht": "代理類型",
"xloc": [
- "default.handlebars->29->1515",
+ "default.handlebars->29->1518",
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
]
},
@@ -4255,7 +4267,7 @@
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
"xloc": [
- "default.handlebars->29->1619"
+ "default.handlebars->29->1622"
]
},
{
@@ -4317,7 +4329,7 @@
"zh-chs": "代理离线",
"zh-cht": "代理離線",
"xloc": [
- "default.handlebars->29->993"
+ "default.handlebars->29->996"
]
},
{
@@ -4337,7 +4349,7 @@
"zh-chs": "代理在线",
"zh-cht": "代理在線",
"xloc": [
- "default.handlebars->29->992"
+ "default.handlebars->29->995"
]
},
{
@@ -4365,7 +4377,7 @@
"zh-chs": "代理",
"zh-cht": "代理",
"xloc": [
- "default.handlebars->29->2069"
+ "default.handlebars->29->2076"
]
},
{
@@ -4385,7 +4397,7 @@
"zh-chs": "阿尔巴尼亚文",
"zh-cht": "阿爾巴尼亞文",
"xloc": [
- "default.handlebars->29->1032"
+ "default.handlebars->29->1035"
]
},
{
@@ -4428,7 +4440,7 @@
"zh-chs": "全部可用",
"zh-cht": "全部可用",
"xloc": [
- "default.handlebars->29->1670"
+ "default.handlebars->29->1675"
]
},
{
@@ -4465,7 +4477,7 @@
"zh-chs": "所有事件",
"zh-cht": "所有事件",
"xloc": [
- "default.handlebars->29->1668"
+ "default.handlebars->29->1673"
]
},
{
@@ -4485,9 +4497,9 @@
"zh-chs": "全部聚焦",
"zh-cht": "全部聚焦",
"xloc": [
- "default.handlebars->29->826",
- "default.handlebars->29->828",
- "default.handlebars->29->829"
+ "default.handlebars->29->829",
+ "default.handlebars->29->831",
+ "default.handlebars->29->832"
]
},
{
@@ -4507,8 +4519,8 @@
"zh-chs": "允许用户管理此设备组和该组中的设备。",
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
"xloc": [
- "default.handlebars->29->1410",
- "default.handlebars->29->1871"
+ "default.handlebars->29->1413",
+ "default.handlebars->29->1876"
]
},
{
@@ -4528,7 +4540,7 @@
"zh-chs": "允许用户管理此设备。",
"zh-cht": "允許用戶管理此裝置。",
"xloc": [
- "default.handlebars->29->1411"
+ "default.handlebars->29->1414"
]
},
{
@@ -4592,7 +4604,7 @@
"zh-chs": "备用(F10 = ESC + 0)",
"zh-cht": "備用(F10 = ESC + 0)",
"xloc": [
- "default.handlebars->29->863"
+ "default.handlebars->29->866"
]
},
{
@@ -4633,9 +4645,9 @@
"zh-chs": "一直通知",
"zh-cht": "一直通知",
"xloc": [
- "default.handlebars->29->1326",
- "default.handlebars->29->1832",
- "default.handlebars->29->1919",
+ "default.handlebars->29->1329",
+ "default.handlebars->29->1837",
+ "default.handlebars->29->1924",
"default.handlebars->29->592"
]
},
@@ -4656,9 +4668,9 @@
"zh-chs": "一直提示",
"zh-cht": "一直提示",
"xloc": [
- "default.handlebars->29->1327",
- "default.handlebars->29->1833",
- "default.handlebars->29->1920",
+ "default.handlebars->29->1330",
+ "default.handlebars->29->1838",
+ "default.handlebars->29->1925",
"default.handlebars->29->593"
]
},
@@ -4882,7 +4894,7 @@
"zh-chs": "阿拉伯文(阿尔及利亚)",
"zh-cht": "阿拉伯文(阿爾及利亞)",
"xloc": [
- "default.handlebars->29->1034"
+ "default.handlebars->29->1037"
]
},
{
@@ -4902,7 +4914,7 @@
"zh-chs": "阿拉伯文(巴林)",
"zh-cht": "阿拉伯文(巴林)",
"xloc": [
- "default.handlebars->29->1035"
+ "default.handlebars->29->1038"
]
},
{
@@ -4922,7 +4934,7 @@
"zh-chs": "阿拉伯文(埃及)",
"zh-cht": "阿拉伯文(埃及)",
"xloc": [
- "default.handlebars->29->1036"
+ "default.handlebars->29->1039"
]
},
{
@@ -4942,7 +4954,7 @@
"zh-chs": "阿拉伯文(伊拉克)",
"zh-cht": "阿拉伯文(伊拉克)",
"xloc": [
- "default.handlebars->29->1037"
+ "default.handlebars->29->1040"
]
},
{
@@ -4962,7 +4974,7 @@
"zh-chs": "阿拉伯文(约旦)",
"zh-cht": "阿拉伯文(約旦)",
"xloc": [
- "default.handlebars->29->1038"
+ "default.handlebars->29->1041"
]
},
{
@@ -4982,7 +4994,7 @@
"zh-chs": "阿拉伯文(科威特)",
"zh-cht": "阿拉伯文(科威特)",
"xloc": [
- "default.handlebars->29->1039"
+ "default.handlebars->29->1042"
]
},
{
@@ -5002,7 +5014,7 @@
"zh-chs": "阿拉伯文(黎巴嫩)",
"zh-cht": "阿拉伯文(黎巴嫩)",
"xloc": [
- "default.handlebars->29->1040"
+ "default.handlebars->29->1043"
]
},
{
@@ -5022,7 +5034,7 @@
"zh-chs": "阿拉伯文(利比亚)",
"zh-cht": "阿拉伯文(利比亞)",
"xloc": [
- "default.handlebars->29->1041"
+ "default.handlebars->29->1044"
]
},
{
@@ -5042,7 +5054,7 @@
"zh-chs": "阿拉伯文(摩洛哥)",
"zh-cht": "阿拉伯文(摩洛哥)",
"xloc": [
- "default.handlebars->29->1042"
+ "default.handlebars->29->1045"
]
},
{
@@ -5062,7 +5074,7 @@
"zh-chs": "阿拉伯文(阿曼)",
"zh-cht": "阿拉伯文(阿曼)",
"xloc": [
- "default.handlebars->29->1043"
+ "default.handlebars->29->1046"
]
},
{
@@ -5082,7 +5094,7 @@
"zh-chs": "阿拉伯文(卡塔尔)",
"zh-cht": "阿拉伯文(卡塔爾)",
"xloc": [
- "default.handlebars->29->1044"
+ "default.handlebars->29->1047"
]
},
{
@@ -5102,7 +5114,7 @@
"zh-chs": "阿拉伯文(沙特阿拉伯)",
"zh-cht": "阿拉伯文(沙特阿拉伯)",
"xloc": [
- "default.handlebars->29->1045"
+ "default.handlebars->29->1048"
]
},
{
@@ -5122,7 +5134,7 @@
"zh-chs": "阿拉伯文(标准)",
"zh-cht": "阿拉伯文(標準)",
"xloc": [
- "default.handlebars->29->1033"
+ "default.handlebars->29->1036"
]
},
{
@@ -5142,7 +5154,7 @@
"zh-chs": "阿拉伯文(叙利亚)",
"zh-cht": "阿拉伯文(敘利亞)",
"xloc": [
- "default.handlebars->29->1046"
+ "default.handlebars->29->1049"
]
},
{
@@ -5162,7 +5174,7 @@
"zh-chs": "阿拉伯文(突尼斯)",
"zh-cht": "阿拉伯文(突尼斯)",
"xloc": [
- "default.handlebars->29->1047"
+ "default.handlebars->29->1050"
]
},
{
@@ -5182,7 +5194,7 @@
"zh-chs": "阿拉伯文(阿联酋)",
"zh-cht": "阿拉伯文(阿聯酋)",
"xloc": [
- "default.handlebars->29->1048"
+ "default.handlebars->29->1051"
]
},
{
@@ -5202,7 +5214,7 @@
"zh-chs": "阿拉伯文(也门)",
"zh-cht": "阿拉伯文(也門)",
"xloc": [
- "default.handlebars->29->1049"
+ "default.handlebars->29->1052"
]
},
{
@@ -5222,7 +5234,7 @@
"zh-chs": "阿拉贡文",
"zh-cht": "阿拉貢文",
"xloc": [
- "default.handlebars->29->1050"
+ "default.handlebars->29->1053"
]
},
{
@@ -5243,7 +5255,7 @@
"zh-cht": "結構",
"xloc": [
"default-mobile.handlebars->9->342",
- "default.handlebars->29->918"
+ "default.handlebars->29->921"
]
},
{
@@ -5284,7 +5296,7 @@
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
"xloc": [
"default-mobile.handlebars->9->418",
- "default.handlebars->29->1386"
+ "default.handlebars->29->1389"
]
},
{
@@ -5304,7 +5316,7 @@
"zh-chs": "您确定要删除节点{0}吗?",
"zh-cht": "你確定要刪除節點{0}嗎?",
"xloc": [
- "default.handlebars->29->773"
+ "default.handlebars->29->776"
]
},
{
@@ -5324,7 +5336,7 @@
"zh-chs": "您确定要卸载所选代理吗?",
"zh-cht": "你確定要卸載所選代理嗎?",
"xloc": [
- "default.handlebars->29->762"
+ "default.handlebars->29->765"
]
},
{
@@ -5344,7 +5356,7 @@
"zh-chs": "您确定要卸载所选的{0}代理吗?",
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
"xloc": [
- "default.handlebars->29->761"
+ "default.handlebars->29->764"
]
},
{
@@ -5364,7 +5376,7 @@
"zh-chs": "您确定要{0}插件吗:{1}",
"zh-cht": "你確定要{0}外掛嗎:{1}",
"xloc": [
- "default.handlebars->29->2109"
+ "default.handlebars->29->2116"
]
},
{
@@ -5384,7 +5396,7 @@
"zh-chs": "亚美尼亚文",
"zh-cht": "亞美尼亞文",
"xloc": [
- "default.handlebars->29->1051"
+ "default.handlebars->29->1054"
]
},
{
@@ -5444,7 +5456,7 @@
"zh-chs": "阿萨姆文",
"zh-cht": "阿薩姆文",
"xloc": [
- "default.handlebars->29->1052"
+ "default.handlebars->29->1055"
]
},
{
@@ -5464,7 +5476,7 @@
"zh-chs": "阿斯图里亚斯文",
"zh-cht": "阿斯圖里亞斯文",
"xloc": [
- "default.handlebars->29->1053"
+ "default.handlebars->29->1056"
]
},
{
@@ -5484,7 +5496,7 @@
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
"xloc": [
- "default.handlebars->29->1588"
+ "default.handlebars->29->1591"
]
},
{
@@ -5504,7 +5516,7 @@
"zh-chs": "认证软件",
"zh-cht": "認證軟體",
"xloc": [
- "default.handlebars->29->1923"
+ "default.handlebars->29->1928"
]
},
{
@@ -5528,8 +5540,8 @@
"default-mobile.handlebars->9->52",
"default-mobile.handlebars->9->71",
"default-mobile.handlebars->9->73",
- "default.handlebars->29->1017",
- "default.handlebars->29->1019",
+ "default.handlebars->29->1020",
+ "default.handlebars->29->1022",
"default.handlebars->29->125",
"default.handlebars->29->130"
]
@@ -5611,7 +5623,7 @@
"zh-chs": "自动删除",
"zh-cht": "自動刪除",
"xloc": [
- "default.handlebars->29->1313"
+ "default.handlebars->29->1316"
]
},
{
@@ -5675,7 +5687,7 @@
"zh-chs": "可用內存",
"zh-cht": "可用內存",
"xloc": [
- "default.handlebars->29->2062"
+ "default.handlebars->29->2069"
]
},
{
@@ -5695,7 +5707,7 @@
"zh-chs": "阿塞拜疆文",
"zh-cht": "阿塞拜疆文",
"xloc": [
- "default.handlebars->29->1054"
+ "default.handlebars->29->1057"
]
},
{
@@ -5716,7 +5728,7 @@
"zh-cht": "的BIOS",
"xloc": [
"default-mobile.handlebars->9->384",
- "default.handlebars->29->970"
+ "default.handlebars->29->973"
]
},
{
@@ -5831,8 +5843,8 @@
"zh-chs": "背景与互动",
"zh-cht": "背景與互動",
"xloc": [
- "default.handlebars->29->1492",
- "default.handlebars->29->1499",
+ "default.handlebars->29->1495",
+ "default.handlebars->29->1502",
"default.handlebars->29->335",
"default.handlebars->29->349"
]
@@ -5854,8 +5866,8 @@
"zh-chs": "仅背景",
"zh-cht": "僅背景",
"xloc": [
- "default.handlebars->29->1493",
- "default.handlebars->29->1500",
+ "default.handlebars->29->1496",
+ "default.handlebars->29->1503",
"default.handlebars->29->336",
"default.handlebars->29->350",
"default.handlebars->29->364"
@@ -5898,7 +5910,7 @@
"zh-chs": "备用码",
"zh-cht": "備用碼",
"xloc": [
- "default.handlebars->29->1925"
+ "default.handlebars->29->1930"
]
},
{
@@ -5918,7 +5930,7 @@
"zh-chs": "错误的签名",
"zh-cht": "錯誤的簽名",
"xloc": [
- "default.handlebars->29->2044"
+ "default.handlebars->29->2051"
]
},
{
@@ -5938,7 +5950,7 @@
"zh-chs": "错误的网络证书",
"zh-cht": "錯誤的網絡憑證",
"xloc": [
- "default.handlebars->29->2043"
+ "default.handlebars->29->2050"
]
},
{
@@ -5958,7 +5970,7 @@
"zh-chs": "巴斯克",
"zh-cht": "巴斯克",
"xloc": [
- "default.handlebars->29->1055"
+ "default.handlebars->29->1058"
]
},
{
@@ -5998,7 +6010,7 @@
"zh-chs": "白俄罗斯文",
"zh-cht": "白俄羅斯文",
"xloc": [
- "default.handlebars->29->1057"
+ "default.handlebars->29->1060"
]
},
{
@@ -6018,7 +6030,7 @@
"zh-chs": "孟加拉",
"zh-cht": "孟加拉",
"xloc": [
- "default.handlebars->29->1058"
+ "default.handlebars->29->1061"
]
},
{
@@ -6061,7 +6073,7 @@
"zh-chs": "波斯尼亚文",
"zh-cht": "波斯尼亞文",
"xloc": [
- "default.handlebars->29->1059"
+ "default.handlebars->29->1062"
]
},
{
@@ -6081,7 +6093,7 @@
"zh-chs": "布列塔尼",
"zh-cht": "布列塔尼",
"xloc": [
- "default.handlebars->29->1060"
+ "default.handlebars->29->1063"
]
},
{
@@ -6101,7 +6113,7 @@
"zh-chs": "广播",
"zh-cht": "廣播",
"xloc": [
- "default.handlebars->29->1839",
+ "default.handlebars->29->1844",
"default.handlebars->container->column_l->p4->3->1->0->3->1"
]
},
@@ -6122,7 +6134,7 @@
"zh-chs": "广播消息",
"zh-cht": "廣播消息",
"xloc": [
- "default.handlebars->29->1760"
+ "default.handlebars->29->1765"
]
},
{
@@ -6142,7 +6154,7 @@
"zh-chs": "向所有连接的用户广播消息。",
"zh-cht": "向所有連接的用戶廣播消息。",
"xloc": [
- "default.handlebars->29->1755"
+ "default.handlebars->29->1760"
]
},
{
@@ -6162,7 +6174,7 @@
"zh-chs": "保加利亚文",
"zh-cht": "保加利亞文",
"xloc": [
- "default.handlebars->29->1056"
+ "default.handlebars->29->1059"
]
},
{
@@ -6182,7 +6194,7 @@
"zh-chs": "缅甸文",
"zh-cht": "緬甸文",
"xloc": [
- "default.handlebars->29->1061"
+ "default.handlebars->29->1064"
]
},
{
@@ -6245,7 +6257,7 @@
"zh-chs": "CIRA服务器",
"zh-cht": "CIRA伺服器",
"xloc": [
- "default.handlebars->29->2097"
+ "default.handlebars->29->2104"
]
},
{
@@ -6265,14 +6277,14 @@
"zh-chs": "CIRA服务器命令",
"zh-cht": "CIRA伺服器指令",
"xloc": [
- "default.handlebars->29->2098"
+ "default.handlebars->29->2105"
]
},
{
"en": "CIRA setup",
"nl": "CIRA setup",
"xloc": [
- "default.handlebars->29->1377"
+ "default.handlebars->29->1380"
]
},
{
@@ -6293,7 +6305,7 @@
"zh-cht": "CPU",
"xloc": [
"default-mobile.handlebars->9->390",
- "default.handlebars->29->976"
+ "default.handlebars->29->979"
]
},
{
@@ -6313,7 +6325,7 @@
"zh-chs": "CPU负载",
"zh-cht": "CPU負載",
"xloc": [
- "default.handlebars->29->2058"
+ "default.handlebars->29->2065"
]
},
{
@@ -6333,7 +6345,7 @@
"zh-chs": "最近15分钟的CPU负载",
"zh-cht": "最近15分鐘的CPU負載",
"xloc": [
- "default.handlebars->29->2061"
+ "default.handlebars->29->2068"
]
},
{
@@ -6353,7 +6365,7 @@
"zh-chs": "最近5分钟的CPU负载",
"zh-cht": "最近5分鐘的CPU負載",
"xloc": [
- "default.handlebars->29->2060"
+ "default.handlebars->29->2067"
]
},
{
@@ -6373,7 +6385,7 @@
"zh-chs": "最近一分钟的CPU负载",
"zh-cht": "最近一分鐘的CPU負載",
"xloc": [
- "default.handlebars->29->2059"
+ "default.handlebars->29->2066"
]
},
{
@@ -6393,8 +6405,8 @@
"zh-chs": "CR+LF",
"zh-cht": "CR+LF",
"xloc": [
- "default.handlebars->29->856",
- "default.handlebars->29->865",
+ "default.handlebars->29->859",
+ "default.handlebars->29->868",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
]
},
@@ -6415,7 +6427,7 @@
"zh-chs": "CSV",
"zh-cht": "CSV",
"xloc": [
- "default.handlebars->29->1678"
+ "default.handlebars->29->1683"
]
},
{
@@ -6435,8 +6447,8 @@
"zh-chs": "CSV格式",
"zh-cht": "CSV格式",
"xloc": [
- "default.handlebars->29->1682",
- "default.handlebars->29->1747",
+ "default.handlebars->29->1687",
+ "default.handlebars->29->1752",
"default.handlebars->29->474"
]
},
@@ -6457,7 +6469,7 @@
"zh-chs": "呼叫错误",
"zh-cht": "呼叫錯誤",
"xloc": [
- "default.handlebars->29->2110"
+ "default.handlebars->29->2117"
]
},
{
@@ -6479,7 +6491,7 @@
"xloc": [
"default-mobile.handlebars->9->82",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->29->1291",
+ "default.handlebars->29->1294",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -6509,9 +6521,9 @@
"default-mobile.handlebars->9->395",
"default-mobile.handlebars->9->400",
"default-mobile.handlebars->9->402",
- "default.handlebars->29->981",
- "default.handlebars->29->986",
- "default.handlebars->29->988"
+ "default.handlebars->29->984",
+ "default.handlebars->29->989",
+ "default.handlebars->29->991"
]
},
{
@@ -6532,7 +6544,7 @@
"zh-cht": "容量/速度",
"xloc": [
"default-mobile.handlebars->9->393",
- "default.handlebars->29->979"
+ "default.handlebars->29->982"
]
},
{
@@ -6552,7 +6564,7 @@
"zh-chs": "加泰罗尼亚文",
"zh-cht": "加泰羅尼亞文",
"xloc": [
- "default.handlebars->29->1062"
+ "default.handlebars->29->1065"
]
},
{
@@ -6592,7 +6604,7 @@
"zh-chs": "查莫罗",
"zh-cht": "查莫羅",
"xloc": [
- "default.handlebars->29->1063"
+ "default.handlebars->29->1066"
]
},
{
@@ -6634,7 +6646,7 @@
"zh-chs": "更改{0}的电邮",
"zh-cht": "更改{0}的電郵",
"xloc": [
- "default.handlebars->29->1953"
+ "default.handlebars->29->1958"
]
},
{
@@ -6655,8 +6667,8 @@
"zh-cht": "更改群",
"xloc": [
"default.handlebars->29->619",
- "default.handlebars->29->770",
- "default.handlebars->29->771"
+ "default.handlebars->29->773",
+ "default.handlebars->29->774"
]
},
{
@@ -6677,8 +6689,8 @@
"zh-cht": "更改密碼",
"xloc": [
"default-mobile.handlebars->9->90",
- "default.handlebars->29->1258",
- "default.handlebars->29->1940"
+ "default.handlebars->29->1261",
+ "default.handlebars->29->1945"
]
},
{
@@ -6698,7 +6710,7 @@
"zh-chs": "更改{0}的密码",
"zh-cht": "更改{0}的密碼",
"xloc": [
- "default.handlebars->29->1960"
+ "default.handlebars->29->1965"
]
},
{
@@ -6718,7 +6730,7 @@
"zh-chs": "更改{0}的真实名称",
"zh-cht": "更改{0}的真實名稱",
"xloc": [
- "default.handlebars->29->1948"
+ "default.handlebars->29->1953"
]
},
{
@@ -6800,7 +6812,7 @@
"zh-chs": "更改该用户的密码",
"zh-cht": "更改該用戶的密碼",
"xloc": [
- "default.handlebars->29->1939"
+ "default.handlebars->29->1944"
]
},
{
@@ -6840,7 +6852,7 @@
"zh-chs": "在此处更改您的帐户电邮地址。",
"zh-cht": "在此處更改你的帳戶電郵地址。",
"xloc": [
- "default.handlebars->29->1245"
+ "default.handlebars->29->1248"
]
},
{
@@ -6860,7 +6872,7 @@
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
"xloc": [
- "default.handlebars->29->1251"
+ "default.handlebars->29->1254"
]
},
{
@@ -6880,7 +6892,7 @@
"zh-chs": "更改帐户凭据",
"zh-cht": "帳戶憑證已更改",
"xloc": [
- "default.handlebars->29->1640"
+ "default.handlebars->29->1643"
]
},
{
@@ -6900,7 +6912,7 @@
"zh-chs": "{1}组中的设备{0}已更改:{2}",
"zh-cht": "{1}組中的設備{0}已更改:{2}",
"xloc": [
- "default.handlebars->29->1624"
+ "default.handlebars->29->1627"
]
},
{
@@ -6920,7 +6932,7 @@
"zh-chs": "语言从{1}更改为{2}",
"zh-cht": "語言從{1}更改為{2}",
"xloc": [
- "default.handlebars->29->1568"
+ "default.handlebars->29->1571"
]
},
{
@@ -6940,8 +6952,8 @@
"zh-chs": "已更改{0}的用户设备权限",
"zh-cht": "已更改{0}的用戶設備權限",
"xloc": [
- "default.handlebars->29->1626",
- "default.handlebars->29->1647"
+ "default.handlebars->29->1629",
+ "default.handlebars->29->1650"
]
},
{
@@ -6961,7 +6973,7 @@
"zh-chs": "更改语言将需要刷新页面。",
"zh-cht": "更改語言將需要刷新頁面。",
"xloc": [
- "default.handlebars->29->1230"
+ "default.handlebars->29->1233"
]
},
{
@@ -6981,9 +6993,9 @@
"zh-chs": "聊天",
"zh-cht": "聊天",
"xloc": [
- "default.handlebars->29->1699",
- "default.handlebars->29->674",
- "default.handlebars->29->695"
+ "default.handlebars->29->1704",
+ "default.handlebars->29->677",
+ "default.handlebars->29->698"
]
},
{
@@ -7005,8 +7017,8 @@
"xloc": [
"default-mobile.handlebars->9->439",
"default-mobile.handlebars->9->459",
- "default.handlebars->29->1438",
- "default.handlebars->29->1474"
+ "default.handlebars->29->1441",
+ "default.handlebars->29->1477"
]
},
{
@@ -7046,7 +7058,7 @@
"zh-chs": "车臣",
"zh-cht": "車臣",
"xloc": [
- "default.handlebars->29->1064"
+ "default.handlebars->29->1067"
]
},
{
@@ -7146,8 +7158,8 @@
"zh-chs": "检查...",
"zh-cht": "檢查...",
"xloc": [
- "default.handlebars->29->1030",
- "default.handlebars->29->2104"
+ "default.handlebars->29->1033",
+ "default.handlebars->29->2111"
]
},
{
@@ -7167,7 +7179,7 @@
"zh-chs": "中文",
"zh-cht": "中文",
"xloc": [
- "default.handlebars->29->1065"
+ "default.handlebars->29->1068"
]
},
{
@@ -7187,7 +7199,7 @@
"zh-chs": "中文(香港)",
"zh-cht": "中文(香港)",
"xloc": [
- "default.handlebars->29->1066"
+ "default.handlebars->29->1069"
]
},
{
@@ -7207,7 +7219,7 @@
"zh-chs": "中文(中国)",
"zh-cht": "中文(中國)",
"xloc": [
- "default.handlebars->29->1067"
+ "default.handlebars->29->1070"
]
},
{
@@ -7227,7 +7239,7 @@
"zh-chs": "简体中文",
"zh-cht": "簡體中文",
"xloc": [
- "default.handlebars->29->1227"
+ "default.handlebars->29->1230"
]
},
{
@@ -7247,7 +7259,7 @@
"zh-chs": "中文(新加坡)",
"zh-cht": "中文(新加坡)",
"xloc": [
- "default.handlebars->29->1068"
+ "default.handlebars->29->1071"
]
},
{
@@ -7267,7 +7279,7 @@
"zh-chs": "中文(台湾)",
"zh-cht": "中文(台灣)",
"xloc": [
- "default.handlebars->29->1069"
+ "default.handlebars->29->1072"
]
},
{
@@ -7287,7 +7299,7 @@
"zh-chs": "繁体中文",
"zh-cht": "繁體中文",
"xloc": [
- "default.handlebars->29->1228"
+ "default.handlebars->29->1231"
]
},
{
@@ -7328,7 +7340,7 @@
"zh-chs": "楚瓦什",
"zh-cht": "楚瓦什",
"xloc": [
- "default.handlebars->29->1070"
+ "default.handlebars->29->1073"
]
},
{
@@ -7371,11 +7383,11 @@
"default-mobile.handlebars->9->330",
"default-mobile.handlebars->9->332",
"default-mobile.handlebars->9->59",
- "default.handlebars->29->1562",
- "default.handlebars->29->895",
- "default.handlebars->29->897",
- "default.handlebars->29->899",
- "default.handlebars->29->901",
+ "default.handlebars->29->1565",
+ "default.handlebars->29->898",
+ "default.handlebars->29->900",
+ "default.handlebars->29->902",
+ "default.handlebars->29->904",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
"default.handlebars->container->column_l->p41->3->1",
"messenger.handlebars->xbottom"
@@ -7418,7 +7430,7 @@
"zh-chs": "全部清除",
"zh-cht": "全部清除",
"xloc": [
- "default.handlebars->29->2031"
+ "default.handlebars->29->2038"
]
},
{
@@ -7446,7 +7458,7 @@
"zh-chs": "清除核心",
"zh-cht": "清除核心",
"xloc": [
- "default.handlebars->29->1002"
+ "default.handlebars->29->1005"
]
},
{
@@ -7486,7 +7498,7 @@
"zh-chs": "清除此通知",
"zh-cht": "清除此通知",
"xloc": [
- "default.handlebars->29->2030"
+ "default.handlebars->29->2037"
]
},
{
@@ -7546,8 +7558,8 @@
"zh-chs": "单击此处编辑设备组名称",
"zh-cht": "單擊此處編輯裝置群名稱",
"xloc": [
- "default.handlebars->29->1302",
- "default.handlebars->29->1513"
+ "default.handlebars->29->1305",
+ "default.handlebars->29->1516"
]
},
{
@@ -7587,7 +7599,7 @@
"zh-chs": "单击此处编辑用户组名称",
"zh-cht": "單擊此處編輯用戶群名稱",
"xloc": [
- "default.handlebars->29->1816"
+ "default.handlebars->29->1821"
]
},
{
@@ -7648,7 +7660,7 @@
"zh-cht": "單擊確定將驗證電郵發送到:",
"xloc": [
"default-mobile.handlebars->9->75",
- "default.handlebars->29->1242"
+ "default.handlebars->29->1245"
]
},
{
@@ -7689,7 +7701,7 @@
"zh-cht": "客戶端控制模式(CCM)",
"xloc": [
"default-mobile.handlebars->9->371",
- "default.handlebars->29->957"
+ "default.handlebars->29->960"
]
},
{
@@ -7709,7 +7721,7 @@
"zh-chs": "客户编号",
"zh-cht": "客戶編號",
"xloc": [
- "default.handlebars->29->1284"
+ "default.handlebars->29->1287"
]
},
{
@@ -7729,7 +7741,7 @@
"zh-chs": "客户端启动的远程访问",
"zh-cht": "客戶端啟動的遠程訪問",
"xloc": [
- "default.handlebars->29->1376"
+ "default.handlebars->29->1379"
]
},
{
@@ -7749,7 +7761,7 @@
"zh-chs": "客户机密",
"zh-cht": "客戶機密",
"xloc": [
- "default.handlebars->29->1285"
+ "default.handlebars->29->1288"
]
},
{
@@ -7793,7 +7805,7 @@
"default-mobile.handlebars->9->57",
"default.handlebars->29->137",
"default.handlebars->29->145",
- "default.handlebars->29->847"
+ "default.handlebars->29->850"
]
},
{
@@ -7813,7 +7825,7 @@
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
"xloc": [
- "default.handlebars->29->1573"
+ "default.handlebars->29->1576"
]
},
{
@@ -7897,9 +7909,9 @@
"nl": "Opdrachten",
"xloc": [
"default-mobile.handlebars->9->461",
- "default.handlebars->29->1476",
- "default.handlebars->29->676",
- "default.handlebars->29->697"
+ "default.handlebars->29->1479",
+ "default.handlebars->29->679",
+ "default.handlebars->29->700"
]
},
{
@@ -7919,8 +7931,8 @@
"zh-chs": "通用设备组",
"zh-cht": "通用裝置群",
"xloc": [
- "default.handlebars->29->1847",
- "default.handlebars->29->1965"
+ "default.handlebars->29->1852",
+ "default.handlebars->29->1970"
]
},
{
@@ -7940,8 +7952,8 @@
"zh-chs": "通用设备",
"zh-cht": "通用裝置",
"xloc": [
- "default.handlebars->29->1853",
- "default.handlebars->29->1977"
+ "default.handlebars->29->1858",
+ "default.handlebars->29->1982"
]
},
{
@@ -7961,7 +7973,7 @@
"zh-chs": "压缩档案...",
"zh-cht": "壓縮檔案...",
"xloc": [
- "default.handlebars->29->872"
+ "default.handlebars->29->875"
]
},
{
@@ -7982,7 +7994,7 @@
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
"xloc": [
"default-mobile.handlebars->9->127",
- "default.handlebars->29->1557"
+ "default.handlebars->29->1560"
]
},
{
@@ -8004,14 +8016,14 @@
"xloc": [
"default-mobile.handlebars->9->288",
"default-mobile.handlebars->9->419",
- "default.handlebars->29->1387",
- "default.handlebars->29->1727",
- "default.handlebars->29->1806",
- "default.handlebars->29->1867",
- "default.handlebars->29->1963",
+ "default.handlebars->29->1390",
+ "default.handlebars->29->1732",
+ "default.handlebars->29->1811",
+ "default.handlebars->29->1872",
+ "default.handlebars->29->1968",
"default.handlebars->29->450",
- "default.handlebars->29->765",
- "default.handlebars->29->774"
+ "default.handlebars->29->768",
+ "default.handlebars->29->777"
]
},
{
@@ -8032,7 +8044,7 @@
"zh-cht": "確認將1個副本複製到此位置?",
"xloc": [
"default-mobile.handlebars->9->321",
- "default.handlebars->29->890"
+ "default.handlebars->29->893"
]
},
{
@@ -8052,7 +8064,7 @@
"zh-chs": "确认{0}个条目的复制到此位置?",
"zh-cht": "確認{0}個條目的複製到此位置?",
"xloc": [
- "default.handlebars->29->889"
+ "default.handlebars->29->892"
]
},
{
@@ -8092,7 +8104,7 @@
"zh-chs": "确认删除选定的帐户?",
"zh-cht": "確認刪除所選帳戶?",
"xloc": [
- "default.handlebars->29->1726"
+ "default.handlebars->29->1731"
]
},
{
@@ -8132,7 +8144,7 @@
"zh-chs": "确认删除选定的用户组?",
"zh-cht": "確認刪除所選用戶群?",
"xloc": [
- "default.handlebars->29->1805"
+ "default.handlebars->29->1810"
]
},
{
@@ -8152,7 +8164,7 @@
"zh-chs": "确认删除用户{0}?",
"zh-cht": "確認刪除用戶{0}?",
"xloc": [
- "default.handlebars->29->1962"
+ "default.handlebars->29->1967"
]
},
{
@@ -8172,7 +8184,7 @@
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->29->1870"
+ "default.handlebars->29->1875"
]
},
{
@@ -8192,7 +8204,7 @@
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->29->1992"
+ "default.handlebars->29->1999"
]
},
{
@@ -8213,7 +8225,7 @@
"zh-cht": "確認將1個條目移動到此位置?",
"xloc": [
"default-mobile.handlebars->9->323",
- "default.handlebars->29->892"
+ "default.handlebars->29->895"
]
},
{
@@ -8233,7 +8245,7 @@
"zh-chs": "确认将{0}个条目移到此位置?",
"zh-cht": "確認將{0}個條目移到該位置?",
"xloc": [
- "default.handlebars->29->891"
+ "default.handlebars->29->894"
]
},
{
@@ -8273,7 +8285,7 @@
"zh-chs": "确认覆盖?",
"zh-cht": "確認覆蓋?",
"xloc": [
- "default.handlebars->29->1556"
+ "default.handlebars->29->1559"
]
},
{
@@ -8293,8 +8305,8 @@
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1860",
- "default.handlebars->29->1983"
+ "default.handlebars->29->1865",
+ "default.handlebars->29->1990"
]
},
{
@@ -8314,8 +8326,8 @@
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1862",
- "default.handlebars->29->1996"
+ "default.handlebars->29->1867",
+ "default.handlebars->29->2003"
]
},
{
@@ -8335,7 +8347,7 @@
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1985"
+ "default.handlebars->29->1992"
]
},
{
@@ -8355,7 +8367,7 @@
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->29->1988"
+ "default.handlebars->29->1995"
]
},
{
@@ -8375,8 +8387,8 @@
"zh-chs": "确认删除访问权限?",
"zh-cht": "確認刪除訪問權限?",
"xloc": [
- "default.handlebars->29->1986",
- "default.handlebars->29->1989"
+ "default.handlebars->29->1993",
+ "default.handlebars->29->1996"
]
},
{
@@ -8397,7 +8409,7 @@
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
"xloc": [
"default-mobile.handlebars->9->74",
- "default.handlebars->29->1020"
+ "default.handlebars->29->1023"
]
},
{
@@ -8417,6 +8429,12 @@
"zh-chs": "确认删除设备组{0}?",
"zh-cht": "確認刪除裝置群{0}?"
},
+ {
+ "en": "Confirm removal of device share \\\"{0}\\\"?",
+ "xloc": [
+ "default.handlebars->29->1988"
+ ]
+ },
{
"cs": "Potvrdit odebrání zařízení {0}?",
"de": "Entfernen des Geräts {0} bestätigen?",
@@ -8468,7 +8486,7 @@
"zh-chs": "确认删除用户“ {0} ”的权限?",
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
"xloc": [
- "default.handlebars->29->1485"
+ "default.handlebars->29->1488"
]
},
{
@@ -8488,7 +8506,7 @@
"zh-chs": "确认删除用户组“ {0} ”的权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
"xloc": [
- "default.handlebars->29->1487"
+ "default.handlebars->29->1490"
]
},
{
@@ -8548,8 +8566,8 @@
"default-mobile.handlebars->9->303",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
- "default.handlebars->29->1330",
- "default.handlebars->29->868",
+ "default.handlebars->29->1333",
+ "default.handlebars->29->871",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -8596,7 +8614,7 @@
"zh-chs": "连接到服务器",
"zh-cht": "連接到伺服器",
"xloc": [
- "default.handlebars->29->1380"
+ "default.handlebars->29->1383"
]
},
{
@@ -8717,7 +8735,7 @@
"zh-chs": "已连接的英特尔®AMT",
"zh-cht": "已連接的Intel® AMT",
"xloc": [
- "default.handlebars->29->2049"
+ "default.handlebars->29->2056"
]
},
{
@@ -8737,7 +8755,7 @@
"zh-chs": "已连接的用户",
"zh-cht": "已连接的用户",
"xloc": [
- "default.handlebars->29->2054"
+ "default.handlebars->29->2061"
]
},
{
@@ -8758,7 +8776,7 @@
"zh-cht": "現在已連接",
"xloc": [
"default-mobile.handlebars->9->346",
- "default.handlebars->29->922"
+ "default.handlebars->29->925"
]
},
{
@@ -8805,7 +8823,7 @@
"default.handlebars->29->246",
"default.handlebars->29->273",
"default.handlebars->29->9",
- "default.handlebars->29->913",
+ "default.handlebars->29->916",
"desktop.handlebars->3->2",
"xterm.handlebars->9->2"
]
@@ -8827,7 +8845,7 @@
"zh-chs": "连接数量",
"zh-cht": "連接數量",
"xloc": [
- "default.handlebars->29->2068"
+ "default.handlebars->29->2075"
]
},
{
@@ -8847,7 +8865,7 @@
"zh-chs": "连接转发器",
"zh-cht": "連接轉發器",
"xloc": [
- "default.handlebars->29->2096"
+ "default.handlebars->29->2103"
]
},
{
@@ -8908,7 +8926,7 @@
"zh-cht": "連接性",
"xloc": [
"default-mobile.handlebars->9->255",
- "default.handlebars->29->1520",
+ "default.handlebars->29->1523",
"default.handlebars->29->234",
"default.handlebars->29->606",
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -8931,8 +8949,8 @@
"zh-chs": "控制台",
"zh-cht": "控制台",
"xloc": [
- "default.handlebars->29->669",
- "default.handlebars->29->690",
+ "default.handlebars->29->672",
+ "default.handlebars->29->693",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
"default.handlebars->contextMenu->cxconsole"
@@ -8975,8 +8993,8 @@
"zh-chs": "控制",
"zh-cht": "控制",
"xloc": [
- "default.handlebars->29->668",
- "default.handlebars->29->689",
+ "default.handlebars->29->671",
+ "default.handlebars->29->692",
"messenger.handlebars->13->1"
]
},
@@ -8997,7 +9015,7 @@
"zh-chs": "Cookie编码器",
"zh-cht": "Cookie編碼器",
"xloc": [
- "default.handlebars->29->2082"
+ "default.handlebars->29->2089"
]
},
{
@@ -9154,8 +9172,8 @@
"zh-chs": "复制连结到剪贴板",
"zh-cht": "複製連結到剪貼板",
"xloc": [
- "default.handlebars->29->1525",
- "default.handlebars->29->1544",
+ "default.handlebars->29->1528",
+ "default.handlebars->29->1547",
"default.handlebars->29->195",
"default.handlebars->29->352"
]
@@ -9258,7 +9276,7 @@
"zh-chs": "复制:“{0}”到“{1}”",
"zh-cht": "複製:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->29->1616"
+ "default.handlebars->29->1619"
]
},
{
@@ -9404,7 +9422,7 @@
"zh-chs": "核心服务器",
"zh-cht": "核心伺服器",
"xloc": [
- "default.handlebars->29->2081"
+ "default.handlebars->29->2088"
]
},
{
@@ -9424,7 +9442,7 @@
"zh-chs": "科西嘉文",
"zh-cht": "科西嘉文",
"xloc": [
- "default.handlebars->29->1071"
+ "default.handlebars->29->1074"
]
},
{
@@ -9444,7 +9462,7 @@
"zh-chs": "创建帐号",
"zh-cht": "創建帳號",
"xloc": [
- "default.handlebars->29->1774",
+ "default.handlebars->29->1779",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -9487,7 +9505,7 @@
"zh-chs": "创建用户组",
"zh-cht": "創建用戶群",
"xloc": [
- "default.handlebars->29->1813"
+ "default.handlebars->29->1818"
]
},
{
@@ -9527,7 +9545,7 @@
"zh-chs": "使用以下选项创建一个新的设备组。",
"zh-cht": "使用以下選項創建一個新的裝置群。",
"xloc": [
- "default.handlebars->29->1265"
+ "default.handlebars->29->1268"
]
},
{
@@ -9567,7 +9585,7 @@
"zh-chs": "创建文件夹:“{0}”",
"zh-cht": "創建文件夾:“{0}”",
"xloc": [
- "default.handlebars->29->1609"
+ "default.handlebars->29->1612"
]
},
{
@@ -9587,7 +9605,7 @@
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
"xloc": [
- "default.handlebars->29->1738"
+ "default.handlebars->29->1743"
]
},
{
@@ -9629,7 +9647,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "創建的設備組:{0}",
"xloc": [
- "default.handlebars->29->1620"
+ "default.handlebars->29->1623"
]
},
{
@@ -9649,7 +9667,7 @@
"zh-chs": "创建一个连结,该连结允许没有帐户的访客将远程桌面访问此设备最多1小时。",
"zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。",
"xloc": [
- "default.handlebars->29->708"
+ "default.handlebars->29->711"
]
},
{
@@ -9669,7 +9687,7 @@
"zh-chs": "创建",
"zh-cht": "創建",
"xloc": [
- "default.handlebars->29->1899"
+ "default.handlebars->29->1904"
]
},
{
@@ -9689,7 +9707,7 @@
"zh-chs": "创建时间",
"zh-cht": "創作時間",
"xloc": [
- "default.handlebars->29->1312"
+ "default.handlebars->29->1315"
]
},
{
@@ -9731,8 +9749,8 @@
"zh-chs": "创建者",
"zh-cht": "創作者",
"xloc": [
- "default.handlebars->29->1310",
- "default.handlebars->29->1311"
+ "default.handlebars->29->1313",
+ "default.handlebars->29->1314"
]
},
{
@@ -9752,7 +9770,7 @@
"zh-chs": "证书",
"zh-cht": "證書",
"xloc": [
- "default.handlebars->29->1282"
+ "default.handlebars->29->1285"
]
},
{
@@ -9772,7 +9790,7 @@
"zh-chs": "克里语",
"zh-cht": "克里語",
"xloc": [
- "default.handlebars->29->1072"
+ "default.handlebars->29->1075"
]
},
{
@@ -9792,7 +9810,7 @@
"zh-chs": "克罗地亚文",
"zh-cht": "克羅地亞文",
"xloc": [
- "default.handlebars->29->1073"
+ "default.handlebars->29->1076"
]
},
{
@@ -9959,7 +9977,7 @@
"zh-chs": "捷克文",
"zh-cht": "捷克文",
"xloc": [
- "default.handlebars->29->1074"
+ "default.handlebars->29->1077"
]
},
{
@@ -9999,7 +10017,7 @@
"zh-chs": "丹麦文",
"zh-cht": "丹麥文",
"xloc": [
- "default.handlebars->29->1075"
+ "default.handlebars->29->1078"
]
},
{
@@ -10019,7 +10037,7 @@
"zh-chs": "数据通道",
"zh-cht": "數據通道",
"xloc": [
- "default.handlebars->29->817",
+ "default.handlebars->29->820",
"desktop.handlebars->3->12"
]
},
@@ -10040,7 +10058,7 @@
"zh-chs": "日期和时间",
"zh-cht": "日期和時間",
"xloc": [
- "default.handlebars->29->1233"
+ "default.handlebars->29->1236"
]
},
{
@@ -10061,14 +10079,14 @@
"zh-cht": "天",
"xloc": [
"default-mobile.handlebars->9->278",
- "default.handlebars->29->749"
+ "default.handlebars->29->752"
]
},
{
"en": "Deactivate",
"nl": "Deactiveren",
"xloc": [
- "default.handlebars->29->1363"
+ "default.handlebars->29->1366"
]
},
{
@@ -10126,10 +10144,10 @@
"zh-chs": "默认",
"zh-cht": "默認",
"xloc": [
- "default.handlebars->29->1761",
- "default.handlebars->29->1809",
- "default.handlebars->29->1820",
- "default.handlebars->29->1888"
+ "default.handlebars->29->1766",
+ "default.handlebars->29->1814",
+ "default.handlebars->29->1825",
+ "default.handlebars->29->1893"
]
},
{
@@ -10153,9 +10171,9 @@
"default-mobile.handlebars->9->313",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
- "default.handlebars->29->1551",
+ "default.handlebars->29->1554",
"default.handlebars->29->507",
- "default.handlebars->29->881",
+ "default.handlebars->29->884",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10183,7 +10201,7 @@
"zh-cht": "刪除帳戶",
"xloc": [
"default-mobile.handlebars->9->84",
- "default.handlebars->29->1250"
+ "default.handlebars->29->1253"
]
},
{
@@ -10203,7 +10221,7 @@
"zh-chs": "删除帐户",
"zh-cht": "刪除帳戶",
"xloc": [
- "default.handlebars->29->1728"
+ "default.handlebars->29->1733"
]
},
{
@@ -10246,8 +10264,8 @@
"xloc": [
"default-mobile.handlebars->9->417",
"default-mobile.handlebars->9->420",
- "default.handlebars->29->1359",
- "default.handlebars->29->1388"
+ "default.handlebars->29->1362",
+ "default.handlebars->29->1391"
]
},
{
@@ -10268,7 +10286,7 @@
"zh-cht": "刪除節點",
"xloc": [
"default-mobile.handlebars->9->286",
- "default.handlebars->29->775"
+ "default.handlebars->29->778"
]
},
{
@@ -10308,7 +10326,7 @@
"zh-chs": "删除用户",
"zh-cht": "刪除用戶",
"xloc": [
- "default.handlebars->29->1938"
+ "default.handlebars->29->1943"
]
},
{
@@ -10328,8 +10346,8 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->29->1858",
- "default.handlebars->29->1868"
+ "default.handlebars->29->1863",
+ "default.handlebars->29->1873"
]
},
{
@@ -10349,7 +10367,7 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->29->1807"
+ "default.handlebars->29->1812"
]
},
{
@@ -10369,7 +10387,7 @@
"zh-chs": "删除用户{0}",
"zh-cht": "刪除用戶{0}",
"xloc": [
- "default.handlebars->29->1961"
+ "default.handlebars->29->1966"
]
},
{
@@ -10390,7 +10408,7 @@
"zh-cht": "刪除帳戶",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
- "default.handlebars->29->1724",
+ "default.handlebars->29->1729",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
]
},
@@ -10431,7 +10449,7 @@
"zh-chs": "删除群组",
"zh-cht": "刪除群組",
"xloc": [
- "default.handlebars->29->1803"
+ "default.handlebars->29->1808"
]
},
{
@@ -10471,7 +10489,7 @@
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
"xloc": [
- "default.handlebars->29->1611"
+ "default.handlebars->29->1614"
]
},
{
@@ -10493,8 +10511,8 @@
"xloc": [
"default-mobile.handlebars->9->124",
"default-mobile.handlebars->9->315",
- "default.handlebars->29->1553",
- "default.handlebars->29->883"
+ "default.handlebars->29->1556",
+ "default.handlebars->29->886"
]
},
{
@@ -10514,7 +10532,7 @@
"zh-chs": "删除用户群组{0}?",
"zh-cht": "刪除用戶群組{0}?",
"xloc": [
- "default.handlebars->29->1866"
+ "default.handlebars->29->1871"
]
},
{
@@ -10536,8 +10554,8 @@
"xloc": [
"default-mobile.handlebars->9->123",
"default-mobile.handlebars->9->314",
- "default.handlebars->29->1552",
- "default.handlebars->29->882"
+ "default.handlebars->29->1555",
+ "default.handlebars->29->885"
]
},
{
@@ -10577,7 +10595,7 @@
"zh-chs": "删除:“{0}”",
"zh-cht": "刪除:“{0}”",
"xloc": [
- "default.handlebars->29->1610"
+ "default.handlebars->29->1613"
]
},
{
@@ -10597,7 +10615,7 @@
"zh-chs": "删除:“{0}”,{1}个元素已删除",
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
"xloc": [
- "default.handlebars->29->1612"
+ "default.handlebars->29->1615"
]
},
{
@@ -10617,7 +10635,7 @@
"zh-chs": "被拒绝",
"zh-cht": "被拒絕",
"xloc": [
- "default.handlebars->29->813",
+ "default.handlebars->29->816",
"desktop.handlebars->3->8"
]
},
@@ -10714,19 +10732,19 @@
"default-mobile.handlebars->9->352",
"default-mobile.handlebars->9->409",
"default-mobile.handlebars->9->422",
- "default.handlebars->29->1270",
- "default.handlebars->29->1307",
- "default.handlebars->29->1390",
- "default.handlebars->29->1812",
- "default.handlebars->29->1822",
- "default.handlebars->29->1823",
- "default.handlebars->29->1864",
+ "default.handlebars->29->1273",
+ "default.handlebars->29->1310",
+ "default.handlebars->29->1393",
+ "default.handlebars->29->1817",
+ "default.handlebars->29->1827",
+ "default.handlebars->29->1828",
+ "default.handlebars->29->1869",
"default.handlebars->29->548",
"default.handlebars->29->549",
"default.handlebars->29->77",
- "default.handlebars->29->808",
- "default.handlebars->29->928",
- "default.handlebars->29->938",
+ "default.handlebars->29->811",
+ "default.handlebars->29->931",
+ "default.handlebars->29->941",
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
]
},
@@ -10765,10 +10783,10 @@
"zh-cht": "桌面",
"xloc": [
"default-mobile.handlebars->9->267",
- "default.handlebars->29->1396",
- "default.handlebars->29->2008",
+ "default.handlebars->29->1399",
+ "default.handlebars->29->2015",
"default.handlebars->29->513",
- "default.handlebars->29->853",
+ "default.handlebars->29->856",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
"default.handlebars->contextMenu->cxdesktop",
"desktop.handlebars->3->24"
@@ -10811,9 +10829,9 @@
"zh-chs": "桌面通知",
"zh-cht": "桌面通知",
"xloc": [
- "default.handlebars->29->1321",
- "default.handlebars->29->1827",
- "default.handlebars->29->1914",
+ "default.handlebars->29->1324",
+ "default.handlebars->29->1832",
+ "default.handlebars->29->1919",
"default.handlebars->29->587"
]
},
@@ -10834,9 +10852,9 @@
"zh-chs": "桌面提示",
"zh-cht": "桌面提示",
"xloc": [
- "default.handlebars->29->1320",
- "default.handlebars->29->1826",
- "default.handlebars->29->1913",
+ "default.handlebars->29->1323",
+ "default.handlebars->29->1831",
+ "default.handlebars->29->1918",
"default.handlebars->29->586"
]
},
@@ -10857,9 +10875,9 @@
"zh-chs": "桌面提示+工具栏",
"zh-cht": "桌面提示+工具欄",
"xloc": [
- "default.handlebars->29->1318",
- "default.handlebars->29->1824",
- "default.handlebars->29->1911",
+ "default.handlebars->29->1321",
+ "default.handlebars->29->1829",
+ "default.handlebars->29->1916",
"default.handlebars->29->584"
]
},
@@ -10901,9 +10919,9 @@
"zh-chs": "桌面工具栏",
"zh-cht": "桌面工具欄",
"xloc": [
- "default.handlebars->29->1319",
- "default.handlebars->29->1825",
- "default.handlebars->29->1912",
+ "default.handlebars->29->1322",
+ "default.handlebars->29->1830",
+ "default.handlebars->29->1917",
"default.handlebars->29->585"
]
},
@@ -10924,7 +10942,7 @@
"zh-chs": "桌面时段",
"zh-cht": "桌面時段",
"xloc": [
- "default.handlebars->29->852"
+ "default.handlebars->29->855"
]
},
{
@@ -11007,9 +11025,9 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default.handlebars->29->1419",
+ "default.handlebars->29->1422",
"default.handlebars->29->186",
- "default.handlebars->29->1980",
+ "default.handlebars->29->1985",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
]
},
@@ -11031,7 +11049,7 @@
"zh-cht": "裝置指令",
"xloc": [
"default-mobile.handlebars->9->277",
- "default.handlebars->29->740"
+ "default.handlebars->29->743"
]
},
{
@@ -11058,14 +11076,14 @@
"zh-chs": "设备组",
"zh-cht": "裝置群",
"xloc": [
- "default.handlebars->29->1414",
"default.handlebars->29->1417",
- "default.handlebars->29->1418",
- "default.handlebars->29->1675",
- "default.handlebars->29->1850",
- "default.handlebars->29->1856",
- "default.handlebars->29->1968",
- "default.handlebars->29->2017"
+ "default.handlebars->29->1420",
+ "default.handlebars->29->1421",
+ "default.handlebars->29->1680",
+ "default.handlebars->29->1855",
+ "default.handlebars->29->1861",
+ "default.handlebars->29->1973",
+ "default.handlebars->29->2024"
]
},
{
@@ -11086,7 +11104,7 @@
"zh-cht": "裝置群用戶",
"xloc": [
"default-mobile.handlebars->9->468",
- "default.handlebars->29->1483"
+ "default.handlebars->29->1486"
]
},
{
@@ -11107,11 +11125,11 @@
"zh-cht": "裝置群",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
- "default.handlebars->29->1691",
- "default.handlebars->29->1797",
- "default.handlebars->29->1837",
- "default.handlebars->29->1908",
- "default.handlebars->29->2052",
+ "default.handlebars->29->1696",
+ "default.handlebars->29->1802",
+ "default.handlebars->29->1842",
+ "default.handlebars->29->1913",
+ "default.handlebars->29->2059",
"default.handlebars->container->column_l->p2->p2info->7"
]
},
@@ -11152,7 +11170,7 @@
"zh-chs": "设备位置",
"zh-cht": "裝置位置",
"xloc": [
- "default.handlebars->29->776"
+ "default.handlebars->29->779"
]
},
{
@@ -11172,7 +11190,7 @@
"zh-chs": "设备消息",
"zh-cht": "裝置訊息",
"xloc": [
- "default.handlebars->29->705"
+ "default.handlebars->29->708"
]
},
{
@@ -11193,9 +11211,9 @@
"zh-cht": "裝置名稱",
"xloc": [
"default-mobile.handlebars->9->290",
- "default.handlebars->29->2016",
+ "default.handlebars->29->2023",
"default.handlebars->29->287",
- "default.handlebars->29->806",
+ "default.handlebars->29->809",
"player.handlebars->3->9"
]
},
@@ -11217,7 +11235,13 @@
"zh-cht": "裝置通知",
"xloc": [
"default.handlebars->29->472",
- "default.handlebars->29->707"
+ "default.handlebars->29->710"
+ ]
+ },
+ {
+ "en": "Device Sharing Link",
+ "xloc": [
+ "default.handlebars->29->662"
]
},
{
@@ -11257,8 +11281,8 @@
"zh-chs": "设备连接。",
"zh-cht": "裝置連接。",
"xloc": [
- "default.handlebars->29->1238",
- "default.handlebars->29->1504"
+ "default.handlebars->29->1241",
+ "default.handlebars->29->1507"
]
},
{
@@ -11278,8 +11302,8 @@
"zh-chs": "设备断开连接。",
"zh-cht": "裝置斷開連接。",
"xloc": [
- "default.handlebars->29->1239",
- "default.handlebars->29->1505"
+ "default.handlebars->29->1242",
+ "default.handlebars->29->1508"
]
},
{
@@ -11299,7 +11323,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "設備組已創建:{0}",
"xloc": [
- "default.handlebars->29->1641"
+ "default.handlebars->29->1644"
]
},
{
@@ -11319,7 +11343,7 @@
"zh-chs": "设备组已删除:{0}",
"zh-cht": "設備組已刪除:{0}",
"xloc": [
- "default.handlebars->29->1642"
+ "default.handlebars->29->1645"
]
},
{
@@ -11339,7 +11363,7 @@
"zh-chs": "设备组成员身份已更改:{0}",
"zh-cht": "設備組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->29->1643"
+ "default.handlebars->29->1646"
]
},
{
@@ -11359,7 +11383,7 @@
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
"xloc": [
- "default.handlebars->29->702"
+ "default.handlebars->29->705"
]
},
{
@@ -11379,7 +11403,7 @@
"zh-chs": "设备组通知已更改",
"zh-cht": "設備組通知已更改",
"xloc": [
- "default.handlebars->29->1638"
+ "default.handlebars->29->1641"
]
},
{
@@ -11399,7 +11423,7 @@
"zh-chs": "未删除的设备组:{0}",
"zh-cht": "未刪除的設備組:{0}",
"xloc": [
- "default.handlebars->29->1621"
+ "default.handlebars->29->1624"
]
},
{
@@ -11792,7 +11816,7 @@
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
"xloc": [
- "default.handlebars->29->1623"
+ "default.handlebars->29->1626"
]
},
{
@@ -11829,8 +11853,8 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default.handlebars->29->1798",
- "default.handlebars->29->1838"
+ "default.handlebars->29->1803",
+ "default.handlebars->29->1843"
]
},
{
@@ -11870,7 +11894,7 @@
"zh-chs": "禁用的电子邮件两因素身份验证",
"zh-cht": "禁用的電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->29->1654"
+ "default.handlebars->29->1657"
]
},
{
@@ -11892,8 +11916,8 @@
"xloc": [
"default-mobile.handlebars->9->304",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
- "default.handlebars->29->1331",
- "default.handlebars->29->869",
+ "default.handlebars->29->1334",
+ "default.handlebars->29->872",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -11970,7 +11994,7 @@
"zh-chs": "在远程设备上显示一个消息框。",
"zh-cht": "在遠程裝置上顯示一個訊息框。",
"xloc": [
- "default.handlebars->29->706"
+ "default.handlebars->29->709"
]
},
{
@@ -12030,7 +12054,7 @@
"zh-chs": "显示设备组名称",
"zh-cht": "顯示裝置群名稱",
"xloc": [
- "default.handlebars->29->1237"
+ "default.handlebars->29->1240"
]
},
{
@@ -12050,7 +12074,7 @@
"zh-chs": "显示名称",
"zh-cht": "顯示名稱",
"xloc": [
- "default.handlebars->29->838"
+ "default.handlebars->29->841"
]
},
{
@@ -12070,7 +12094,7 @@
"zh-chs": "显示公共连结",
"zh-cht": "顯示公共鏈結",
"xloc": [
- "default.handlebars->29->1524"
+ "default.handlebars->29->1527"
]
},
{
@@ -12090,7 +12114,7 @@
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->29->1583"
+ "default.handlebars->29->1586"
]
},
{
@@ -12110,7 +12134,7 @@
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->29->1591"
+ "default.handlebars->29->1594"
]
},
{
@@ -12130,8 +12154,8 @@
"zh-chs": "什么都不做",
"zh-cht": "什麼都不做",
"xloc": [
- "default.handlebars->29->1374",
- "default.handlebars->29->1378"
+ "default.handlebars->29->1377",
+ "default.handlebars->29->1381"
]
},
{
@@ -12151,10 +12175,10 @@
"zh-chs": "域",
"zh-cht": "域",
"xloc": [
- "default.handlebars->29->1762",
- "default.handlebars->29->1810",
- "default.handlebars->29->1819",
- "default.handlebars->29->1887",
+ "default.handlebars->29->1767",
+ "default.handlebars->29->1815",
+ "default.handlebars->29->1824",
+ "default.handlebars->29->1892",
"mstsc.handlebars->main->1->3->1->2->1->0",
"mstsc.handlebars->main->1->3->1->2->3"
]
@@ -12193,7 +12217,7 @@
"zh-chs": "不要连接到服务器",
"zh-cht": "不要連接到伺服器",
"xloc": [
- "default.handlebars->29->1379"
+ "default.handlebars->29->1382"
]
},
{
@@ -12313,7 +12337,7 @@
"zh-cht": "下載檔案",
"xloc": [
"default-mobile.handlebars->9->334",
- "default.handlebars->29->902"
+ "default.handlebars->29->905"
]
},
{
@@ -12353,7 +12377,7 @@
"zh-chs": "下载MeshCmd",
"zh-cht": "下載MeshCmd",
"xloc": [
- "default.handlebars->29->798"
+ "default.handlebars->29->801"
]
},
{
@@ -12413,7 +12437,7 @@
"zh-chs": "下载报告",
"zh-cht": "下載報告",
"xloc": [
- "default.handlebars->29->1680",
+ "default.handlebars->29->1685",
"default.handlebars->container->column_l->p3->3->1->0->3"
]
},
@@ -12434,7 +12458,7 @@
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
"xloc": [
- "default.handlebars->29->791"
+ "default.handlebars->29->794"
]
},
{
@@ -12514,7 +12538,7 @@
"zh-chs": "下载电源事件",
"zh-cht": "下載電源事件",
"xloc": [
- "default.handlebars->29->750"
+ "default.handlebars->29->753"
]
},
{
@@ -12614,7 +12638,7 @@
"zh-chs": "使用以下一种档案格式下载事件列表。",
"zh-cht": "使用以下一種檔案格式下載事件列表。",
"xloc": [
- "default.handlebars->29->1681"
+ "default.handlebars->29->1686"
]
},
{
@@ -12634,7 +12658,7 @@
"zh-chs": "使用以下一种档案格式下载用户列表。",
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
"xloc": [
- "default.handlebars->29->1746"
+ "default.handlebars->29->1751"
]
},
{
@@ -12715,7 +12739,7 @@
"zh-chs": "下载:“{0}”",
"zh-cht": "下載:“{0}”",
"xloc": [
- "default.handlebars->29->1614"
+ "default.handlebars->29->1617"
]
},
{
@@ -12755,7 +12779,7 @@
"zh-chs": "代理重复",
"zh-cht": "代理重複",
"xloc": [
- "default.handlebars->29->2048"
+ "default.handlebars->29->2055"
]
},
{
@@ -12795,7 +12819,7 @@
"zh-chs": "复制用户组",
"zh-cht": "複製用戶群",
"xloc": [
- "default.handlebars->29->1814"
+ "default.handlebars->29->1819"
]
},
{
@@ -12832,8 +12856,8 @@
"zh-chs": "持续时间",
"zh-cht": "持續時間",
"xloc": [
- "default.handlebars->29->2002",
- "default.handlebars->29->2022",
+ "default.handlebars->29->2009",
+ "default.handlebars->29->2029",
"player.handlebars->3->2"
]
},
@@ -12871,7 +12895,7 @@
"zh-chs": "荷兰文(比利时)",
"zh-cht": "荷蘭文(比利時)",
"xloc": [
- "default.handlebars->29->1077"
+ "default.handlebars->29->1080"
]
},
{
@@ -12891,7 +12915,7 @@
"zh-chs": "荷兰文(标准)",
"zh-cht": "荷蘭文(標準)",
"xloc": [
- "default.handlebars->29->1076"
+ "default.handlebars->29->1079"
]
},
{
@@ -13162,7 +13186,7 @@
"zh-cht": "編輯裝置",
"xloc": [
"default-mobile.handlebars->9->295",
- "default.handlebars->29->811"
+ "default.handlebars->29->814"
]
},
{
@@ -13185,10 +13209,10 @@
"default-mobile.handlebars->9->423",
"default-mobile.handlebars->9->425",
"default-mobile.handlebars->9->445",
- "default.handlebars->29->1391",
- "default.handlebars->29->1423",
- "default.handlebars->29->1447",
- "default.handlebars->29->1459"
+ "default.handlebars->29->1394",
+ "default.handlebars->29->1426",
+ "default.handlebars->29->1450",
+ "default.handlebars->29->1462"
]
},
{
@@ -13208,7 +13232,7 @@
"zh-chs": "编辑设备组功能",
"zh-cht": "編輯裝置群功能",
"xloc": [
- "default.handlebars->29->1409"
+ "default.handlebars->29->1412"
]
},
{
@@ -13228,8 +13252,8 @@
"zh-chs": "编辑设备组权限",
"zh-cht": "編輯裝置群權限",
"xloc": [
- "default.handlebars->29->1444",
- "default.handlebars->29->1456"
+ "default.handlebars->29->1447",
+ "default.handlebars->29->1459"
]
},
{
@@ -13249,7 +13273,7 @@
"zh-chs": "编辑设备组用户同意",
"zh-cht": "編輯裝置群用戶同意",
"xloc": [
- "default.handlebars->29->1392"
+ "default.handlebars->29->1395"
]
},
{
@@ -13270,7 +13294,7 @@
"zh-cht": "編輯裝置筆記",
"xloc": [
"default-mobile.handlebars->9->437",
- "default.handlebars->29->1436"
+ "default.handlebars->29->1439"
]
},
{
@@ -13290,8 +13314,8 @@
"zh-chs": "编辑设备权限",
"zh-cht": "編輯裝置權限",
"xloc": [
- "default.handlebars->29->1449",
- "default.handlebars->29->1451"
+ "default.handlebars->29->1452",
+ "default.handlebars->29->1454"
]
},
{
@@ -13331,7 +13355,7 @@
"zh-chs": "编辑设备用户同意",
"zh-cht": "編輯裝置用戶同意",
"xloc": [
- "default.handlebars->29->1394"
+ "default.handlebars->29->1397"
]
},
{
@@ -13351,7 +13375,7 @@
"zh-chs": "编辑群组",
"zh-cht": "編輯群組",
"xloc": [
- "default.handlebars->29->680"
+ "default.handlebars->29->683"
]
},
{
@@ -13378,7 +13402,7 @@
"default.handlebars->29->563",
"default.handlebars->29->566",
"default.handlebars->29->569",
- "default.handlebars->29->757"
+ "default.handlebars->29->760"
]
},
{
@@ -13399,7 +13423,7 @@
"zh-cht": "編輯筆記",
"xloc": [
"default-mobile.handlebars->9->452",
- "default.handlebars->29->1466"
+ "default.handlebars->29->1469"
]
},
{
@@ -13419,7 +13443,7 @@
"zh-chs": "编辑用户同意",
"zh-cht": "編輯用戶同意",
"xloc": [
- "default.handlebars->29->1393"
+ "default.handlebars->29->1396"
]
},
{
@@ -13439,7 +13463,7 @@
"zh-chs": "编辑用户设备组权限",
"zh-cht": "編輯用戶裝置群權限",
"xloc": [
- "default.handlebars->29->1457"
+ "default.handlebars->29->1460"
]
},
{
@@ -13459,7 +13483,7 @@
"zh-chs": "编辑用户设备权限",
"zh-cht": "編輯用戶裝置權限",
"xloc": [
- "default.handlebars->29->1452"
+ "default.handlebars->29->1455"
]
},
{
@@ -13479,7 +13503,7 @@
"zh-chs": "编辑用户组",
"zh-cht": "編輯用戶群",
"xloc": [
- "default.handlebars->29->1865"
+ "default.handlebars->29->1870"
]
},
{
@@ -13499,14 +13523,14 @@
"zh-chs": "编辑用户组设备权限",
"zh-cht": "編輯用戶群裝置權限",
"xloc": [
- "default.handlebars->29->1454"
+ "default.handlebars->29->1457"
]
},
{
"en": "Edit User Group User Consent",
"nl": "Bewerk groepsgebruikerstoestemming",
"xloc": [
- "default.handlebars->29->1395"
+ "default.handlebars->29->1398"
]
},
{
@@ -13568,11 +13592,11 @@
"zh-cht": "電郵",
"xloc": [
"default-mobile.handlebars->9->78",
- "default.handlebars->29->1764",
- "default.handlebars->29->1891",
- "default.handlebars->29->1893",
- "default.handlebars->29->1933",
- "default.handlebars->29->1949",
+ "default.handlebars->29->1769",
+ "default.handlebars->29->1896",
+ "default.handlebars->29->1898",
+ "default.handlebars->29->1938",
+ "default.handlebars->29->1954",
"default.handlebars->29->319",
"login-mobile.handlebars->5->42",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -13605,7 +13629,7 @@
"zh-cht": "電郵地址變更",
"xloc": [
"default-mobile.handlebars->9->79",
- "default.handlebars->29->1246"
+ "default.handlebars->29->1249"
]
},
{
@@ -13626,7 +13650,7 @@
"zh-cht": "電郵認證",
"xloc": [
"default-mobile.handlebars->9->68",
- "default.handlebars->29->1014"
+ "default.handlebars->29->1017"
]
},
{
@@ -13686,7 +13710,7 @@
"zh-cht": "電郵驗證",
"xloc": [
"default-mobile.handlebars->9->77",
- "default.handlebars->29->1244"
+ "default.handlebars->29->1247"
]
},
{
@@ -13726,7 +13750,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->29->1710"
+ "default.handlebars->29->1715"
]
},
{
@@ -13746,8 +13770,8 @@
"zh-chs": "电邮已验证",
"zh-cht": "電郵已驗證",
"xloc": [
- "default.handlebars->29->1711",
- "default.handlebars->29->1885"
+ "default.handlebars->29->1716",
+ "default.handlebars->29->1890"
]
},
{
@@ -13767,7 +13791,7 @@
"zh-chs": "电邮已验证。",
"zh-cht": "電郵已驗證。",
"xloc": [
- "default.handlebars->29->1770"
+ "default.handlebars->29->1775"
]
},
{
@@ -13787,7 +13811,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->29->1886"
+ "default.handlebars->29->1891"
]
},
{
@@ -13851,7 +13875,7 @@
"zh-chs": "已通过电邮验证,并且需要重置密码。",
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
"xloc": [
- "default.handlebars->29->1771"
+ "default.handlebars->29->1776"
]
},
{
@@ -13871,7 +13895,7 @@
"zh-chs": "电邮/短信流量",
"zh-cht": "電郵/短信流量",
"xloc": [
- "default.handlebars->29->2090"
+ "default.handlebars->29->2097"
]
},
{
@@ -13917,7 +13941,7 @@
"zh-chs": "启用邀请代码",
"zh-cht": "啟用邀請代碼",
"xloc": [
- "default.handlebars->29->1489"
+ "default.handlebars->29->1492"
]
},
{
@@ -13958,7 +13982,7 @@
"zh-cht": "啟用電郵二因子鑑別。",
"xloc": [
"default-mobile.handlebars->9->70",
- "default.handlebars->29->1016"
+ "default.handlebars->29->1019"
]
},
{
@@ -13998,7 +14022,7 @@
"zh-chs": "已启用",
"zh-cht": "已啟用",
"xloc": [
- "default.handlebars->29->2024"
+ "default.handlebars->29->2031"
]
},
{
@@ -14018,7 +14042,7 @@
"zh-chs": "启用电子邮件两因素身份验证",
"zh-cht": "啟用電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->29->1653"
+ "default.handlebars->29->1656"
]
},
{
@@ -14058,7 +14082,7 @@
"zh-chs": "时间结束",
"zh-cht": "時間結束",
"xloc": [
- "default.handlebars->29->2021"
+ "default.handlebars->29->2028"
]
},
{
@@ -14078,7 +14102,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
"xloc": [
- "default.handlebars->29->1576"
+ "default.handlebars->29->1579"
]
},
{
@@ -14098,7 +14122,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
"xloc": [
- "default.handlebars->29->1577"
+ "default.handlebars->29->1580"
]
},
{
@@ -14118,7 +14142,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
"xloc": [
- "default.handlebars->29->1574"
+ "default.handlebars->29->1577"
]
},
{
@@ -14138,7 +14162,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
"xloc": [
- "default.handlebars->29->1575"
+ "default.handlebars->29->1578"
]
},
{
@@ -14158,7 +14182,7 @@
"zh-chs": "英文",
"zh-cht": "英文",
"xloc": [
- "default.handlebars->29->1078"
+ "default.handlebars->29->1081"
]
},
{
@@ -14178,7 +14202,7 @@
"zh-chs": "英文(澳洲)",
"zh-cht": "英文(澳洲)",
"xloc": [
- "default.handlebars->29->1079"
+ "default.handlebars->29->1082"
]
},
{
@@ -14198,7 +14222,7 @@
"zh-chs": "英文(伯利茲)",
"zh-cht": "英文(伯利茲)",
"xloc": [
- "default.handlebars->29->1080"
+ "default.handlebars->29->1083"
]
},
{
@@ -14218,7 +14242,7 @@
"zh-chs": "英文(加拿大)",
"zh-cht": "英文(加拿大)",
"xloc": [
- "default.handlebars->29->1081"
+ "default.handlebars->29->1084"
]
},
{
@@ -14238,7 +14262,7 @@
"zh-chs": "英文(爱尔兰)",
"zh-cht": "英文(愛爾蘭)",
"xloc": [
- "default.handlebars->29->1082"
+ "default.handlebars->29->1085"
]
},
{
@@ -14258,7 +14282,7 @@
"zh-chs": "英文(牙买加)",
"zh-cht": "英文(牙買加)",
"xloc": [
- "default.handlebars->29->1083"
+ "default.handlebars->29->1086"
]
},
{
@@ -14278,7 +14302,7 @@
"zh-chs": "英文(纽西兰)",
"zh-cht": "英文(紐西蘭)",
"xloc": [
- "default.handlebars->29->1084"
+ "default.handlebars->29->1087"
]
},
{
@@ -14298,7 +14322,7 @@
"zh-chs": "英文(菲律宾)",
"zh-cht": "英文(菲律賓)",
"xloc": [
- "default.handlebars->29->1085"
+ "default.handlebars->29->1088"
]
},
{
@@ -14318,7 +14342,7 @@
"zh-chs": "英语(南非)",
"zh-cht": "英語(南非)",
"xloc": [
- "default.handlebars->29->1086"
+ "default.handlebars->29->1089"
]
},
{
@@ -14338,7 +14362,7 @@
"zh-chs": "英文(特立尼达和多巴哥)",
"zh-cht": "英文(特立尼達和多巴哥)",
"xloc": [
- "default.handlebars->29->1087"
+ "default.handlebars->29->1090"
]
},
{
@@ -14358,7 +14382,7 @@
"zh-chs": "英文(英国)",
"zh-cht": "英文(英國)",
"xloc": [
- "default.handlebars->29->1088"
+ "default.handlebars->29->1091"
]
},
{
@@ -14378,7 +14402,7 @@
"zh-chs": "美国英文",
"zh-cht": "美國英語",
"xloc": [
- "default.handlebars->29->1089"
+ "default.handlebars->29->1092"
]
},
{
@@ -14398,7 +14422,7 @@
"zh-chs": "英文(津巴布韦)",
"zh-cht": "英文(津巴布韋)",
"xloc": [
- "default.handlebars->29->1090"
+ "default.handlebars->29->1093"
]
},
{
@@ -14418,8 +14442,8 @@
"zh-chs": "输入",
"zh-cht": "輸入",
"xloc": [
- "default.handlebars->29->1272",
- "default.handlebars->29->1273"
+ "default.handlebars->29->1275",
+ "default.handlebars->29->1276"
]
},
{
@@ -14439,7 +14463,7 @@
"zh-chs": "输入管理领域名称的逗号分隔列表。",
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
"xloc": [
- "default.handlebars->29->1775"
+ "default.handlebars->29->1780"
]
},
{
@@ -14479,7 +14503,7 @@
"zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。",
"zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
"xloc": [
- "default.handlebars->29->832",
+ "default.handlebars->29->835",
"desktop.handlebars->3->22"
]
},
@@ -14542,7 +14566,7 @@
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
"xloc": [
- "default.handlebars->29->1011"
+ "default.handlebars->29->1014"
]
},
{
@@ -14602,7 +14626,7 @@
"zh-chs": "世界文",
"zh-cht": "世界語",
"xloc": [
- "default.handlebars->29->1091"
+ "default.handlebars->29->1094"
]
},
{
@@ -14622,7 +14646,7 @@
"zh-chs": "爱沙尼亚文",
"zh-cht": "愛沙尼亞語",
"xloc": [
- "default.handlebars->29->1092"
+ "default.handlebars->29->1095"
]
},
{
@@ -14642,7 +14666,7 @@
"zh-chs": "事件详情",
"zh-cht": "事件詳情",
"xloc": [
- "default.handlebars->29->915"
+ "default.handlebars->29->918"
]
},
{
@@ -14662,7 +14686,7 @@
"zh-chs": "事件列表输出",
"zh-cht": "事件列表輸出",
"xloc": [
- "default.handlebars->29->1686"
+ "default.handlebars->29->1691"
]
},
{
@@ -14755,7 +14779,7 @@
"zh-cht": "到期時間",
"xloc": [
"default.handlebars->29->188",
- "default.handlebars->29->725"
+ "default.handlebars->29->728"
]
},
{
@@ -14815,7 +14839,7 @@
"zh-chs": "扩充式ASCII",
"zh-cht": "擴充式ASCII",
"xloc": [
- "default.handlebars->29->860"
+ "default.handlebars->29->863"
]
},
{
@@ -14855,7 +14879,7 @@
"zh-chs": "外部",
"zh-cht": "外部",
"xloc": [
- "default.handlebars->29->2075"
+ "default.handlebars->29->2082"
]
},
{
@@ -14895,7 +14919,7 @@
"zh-chs": "FYRO马其顿语",
"zh-cht": "FYRO馬其頓語",
"xloc": [
- "default.handlebars->29->1142"
+ "default.handlebars->29->1145"
]
},
{
@@ -14915,7 +14939,7 @@
"zh-chs": "法罗语",
"zh-cht": "法羅語",
"xloc": [
- "default.handlebars->29->1093"
+ "default.handlebars->29->1096"
]
},
{
@@ -14955,7 +14979,7 @@
"zh-chs": "本地用户拒绝后无法启动远程桌面",
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
"xloc": [
- "default.handlebars->29->1599"
+ "default.handlebars->29->1602"
]
},
{
@@ -14975,7 +14999,7 @@
"zh-chs": "本地用户拒绝后无法启动远程文件",
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
"xloc": [
- "default.handlebars->29->1606"
+ "default.handlebars->29->1609"
]
},
{
@@ -14995,7 +15019,7 @@
"zh-chs": "无法启动远程终端接合{0}({1})",
"zh-cht": "無法啟動遠程終端接合{0}({1})",
"xloc": [
- "default.handlebars->29->814",
+ "default.handlebars->29->817",
"desktop.handlebars->3->9"
]
},
@@ -15016,7 +15040,7 @@
"zh-chs": "波斯文(波斯文)",
"zh-cht": "波斯語(波斯語)",
"xloc": [
- "default.handlebars->29->1094"
+ "default.handlebars->29->1097"
]
},
{
@@ -15058,7 +15082,7 @@
"zh-chs": "功能",
"zh-cht": "功能",
"xloc": [
- "default.handlebars->29->1317"
+ "default.handlebars->29->1320"
]
},
{
@@ -15078,7 +15102,7 @@
"zh-chs": "斐济",
"zh-cht": "斐濟",
"xloc": [
- "default.handlebars->29->1095"
+ "default.handlebars->29->1098"
]
},
{
@@ -15120,7 +15144,7 @@
"xloc": [
"default-mobile.handlebars->9->318",
"default.handlebars->29->505",
- "default.handlebars->29->886"
+ "default.handlebars->29->889"
]
},
{
@@ -15140,8 +15164,8 @@
"zh-chs": "档案操作",
"zh-cht": "檔案操作",
"xloc": [
- "default.handlebars->29->871",
- "default.handlebars->29->873"
+ "default.handlebars->29->874",
+ "default.handlebars->29->876"
]
},
{
@@ -15181,7 +15205,7 @@
"zh-chs": "文件系统驱动",
"zh-cht": "FileSystemDriver",
"xloc": [
- "default.handlebars->29->841"
+ "default.handlebars->29->844"
]
},
{
@@ -15203,8 +15227,8 @@
"xloc": [
"default-mobile.handlebars->9->171",
"default-mobile.handlebars->9->268",
- "default.handlebars->29->1403",
- "default.handlebars->29->2009",
+ "default.handlebars->29->1406",
+ "default.handlebars->29->2016",
"default.handlebars->29->258",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default.handlebars->contextMenu->cxfiles"
@@ -15247,9 +15271,9 @@
"zh-chs": "档案通知",
"zh-cht": "檔案通知",
"xloc": [
- "default.handlebars->29->1325",
- "default.handlebars->29->1831",
- "default.handlebars->29->1918",
+ "default.handlebars->29->1328",
+ "default.handlebars->29->1836",
+ "default.handlebars->29->1923",
"default.handlebars->29->591"
]
},
@@ -15270,9 +15294,9 @@
"zh-chs": "档案提示",
"zh-cht": "檔案提示",
"xloc": [
- "default.handlebars->29->1324",
- "default.handlebars->29->1830",
- "default.handlebars->29->1917",
+ "default.handlebars->29->1327",
+ "default.handlebars->29->1835",
+ "default.handlebars->29->1922",
"default.handlebars->29->590"
]
},
@@ -15316,7 +15340,7 @@
"zh-chs": "录制会话已完成,{0}秒",
"zh-cht": "錄製會話已完成,{0}秒",
"xloc": [
- "default.handlebars->29->1572"
+ "default.handlebars->29->1575"
]
},
{
@@ -15336,7 +15360,7 @@
"zh-chs": "芬兰",
"zh-cht": "芬蘭",
"xloc": [
- "default.handlebars->29->1096"
+ "default.handlebars->29->1099"
]
},
{
@@ -15490,8 +15514,8 @@
"zh-chs": "下次登录时强制重置密码。",
"zh-cht": "下次登入時強制重置密碼。",
"xloc": [
- "default.handlebars->29->1769",
- "default.handlebars->29->1958"
+ "default.handlebars->29->1774",
+ "default.handlebars->29->1963"
]
},
{
@@ -15574,7 +15598,7 @@
"zh-chs": "格式化",
"zh-cht": "格式化",
"xloc": [
- "default.handlebars->29->1677"
+ "default.handlebars->29->1682"
]
},
{
@@ -15615,8 +15639,8 @@
"zh-chs": "自由",
"zh-cht": "自由",
"xloc": [
- "default.handlebars->29->2033",
- "default.handlebars->29->2035"
+ "default.handlebars->29->2040",
+ "default.handlebars->29->2042"
]
},
{
@@ -15657,7 +15681,7 @@
"zh-chs": "法文(比利时)",
"zh-cht": "法語(比利時)",
"xloc": [
- "default.handlebars->29->1098"
+ "default.handlebars->29->1101"
]
},
{
@@ -15677,7 +15701,7 @@
"zh-chs": "法文(加拿大)",
"zh-cht": "法語(加拿大)",
"xloc": [
- "default.handlebars->29->1099"
+ "default.handlebars->29->1102"
]
},
{
@@ -15697,7 +15721,7 @@
"zh-chs": "法文(法国)",
"zh-cht": "法語(法國)",
"xloc": [
- "default.handlebars->29->1100"
+ "default.handlebars->29->1103"
]
},
{
@@ -15717,7 +15741,7 @@
"zh-chs": "法文(卢森堡)",
"zh-cht": "法語(盧森堡)",
"xloc": [
- "default.handlebars->29->1101"
+ "default.handlebars->29->1104"
]
},
{
@@ -15737,7 +15761,7 @@
"zh-chs": "法文(摩纳哥)",
"zh-cht": "法語(摩納哥)",
"xloc": [
- "default.handlebars->29->1102"
+ "default.handlebars->29->1105"
]
},
{
@@ -15757,7 +15781,7 @@
"zh-chs": "法文(标准)",
"zh-cht": "法語(標準)",
"xloc": [
- "default.handlebars->29->1097"
+ "default.handlebars->29->1100"
]
},
{
@@ -15777,7 +15801,7 @@
"zh-chs": "法文(瑞士)",
"zh-cht": "法語(瑞士)",
"xloc": [
- "default.handlebars->29->1103"
+ "default.handlebars->29->1106"
]
},
{
@@ -15797,7 +15821,7 @@
"zh-chs": "弗里斯兰文",
"zh-cht": "弗里斯蘭語",
"xloc": [
- "default.handlebars->29->1104"
+ "default.handlebars->29->1107"
]
},
{
@@ -15817,7 +15841,7 @@
"zh-chs": "弗留利",
"zh-cht": "弗留利",
"xloc": [
- "default.handlebars->29->1105"
+ "default.handlebars->29->1108"
]
},
{
@@ -15841,9 +15865,9 @@
"default-mobile.handlebars->9->415",
"default-mobile.handlebars->9->424",
"default-mobile.handlebars->9->444",
- "default.handlebars->29->1279",
- "default.handlebars->29->1422",
- "default.handlebars->29->1781"
+ "default.handlebars->29->1282",
+ "default.handlebars->29->1425",
+ "default.handlebars->29->1786"
]
},
{
@@ -15863,7 +15887,7 @@
"zh-chs": "完整管理员(保留所有权利)",
"zh-cht": "完整管理員(保留所有權利)",
"xloc": [
- "default.handlebars->29->1458"
+ "default.handlebars->29->1461"
]
},
{
@@ -15900,7 +15924,7 @@
"zh-chs": "完整设备权限",
"zh-cht": "完整裝置權限",
"xloc": [
- "default.handlebars->29->661"
+ "default.handlebars->29->664"
]
},
{
@@ -15920,7 +15944,7 @@
"zh-chs": "全部权限",
"zh-cht": "全部權限",
"xloc": [
- "default.handlebars->29->679"
+ "default.handlebars->29->682"
]
},
{
@@ -15962,15 +15986,15 @@
"zh-chs": "完整管理员",
"zh-cht": "完整管理員",
"xloc": [
- "default.handlebars->29->1879"
+ "default.handlebars->29->1884"
]
},
{
"en": "Fully Automatic",
"nl": "Vol automatisch",
"xloc": [
- "default.handlebars->29->1342",
- "default.handlebars->29->1365"
+ "default.handlebars->29->1345",
+ "default.handlebars->29->1368"
]
},
{
@@ -15991,7 +16015,7 @@
"zh-cht": "GPU",
"xloc": [
"default-mobile.handlebars->9->391",
- "default.handlebars->29->977"
+ "default.handlebars->29->980"
]
},
{
@@ -16011,7 +16035,7 @@
"zh-chs": "盖尔文(爱尔兰)",
"zh-cht": "蓋爾語(愛爾蘭)",
"xloc": [
- "default.handlebars->29->1107"
+ "default.handlebars->29->1110"
]
},
{
@@ -16031,7 +16055,7 @@
"zh-chs": "盖尔文(苏格兰文)",
"zh-cht": "蓋爾語(蘇格蘭語)",
"xloc": [
- "default.handlebars->29->1106"
+ "default.handlebars->29->1109"
]
},
{
@@ -16051,7 +16075,7 @@
"zh-chs": "加拉契文",
"zh-cht": "加拉契語",
"xloc": [
- "default.handlebars->29->1108"
+ "default.handlebars->29->1111"
]
},
{
@@ -16177,7 +16201,7 @@
"zh-chs": "格鲁吉亚文",
"zh-cht": "格魯吉亞文",
"xloc": [
- "default.handlebars->29->1109"
+ "default.handlebars->29->1112"
]
},
{
@@ -16197,7 +16221,7 @@
"zh-chs": "德文(奥地利)",
"zh-cht": "德語(奧地利)",
"xloc": [
- "default.handlebars->29->1111"
+ "default.handlebars->29->1114"
]
},
{
@@ -16217,7 +16241,7 @@
"zh-chs": "德文(德国)",
"zh-cht": "德文(德國)",
"xloc": [
- "default.handlebars->29->1112"
+ "default.handlebars->29->1115"
]
},
{
@@ -16237,7 +16261,7 @@
"zh-chs": "德文(列支敦士登)",
"zh-cht": "德文(列支敦士登)",
"xloc": [
- "default.handlebars->29->1113"
+ "default.handlebars->29->1116"
]
},
{
@@ -16257,7 +16281,7 @@
"zh-chs": "德文(卢森堡)",
"zh-cht": "德語(盧森堡)",
"xloc": [
- "default.handlebars->29->1114"
+ "default.handlebars->29->1117"
]
},
{
@@ -16277,7 +16301,7 @@
"zh-chs": "德文(标准)",
"zh-cht": "德語(標準)",
"xloc": [
- "default.handlebars->29->1110"
+ "default.handlebars->29->1113"
]
},
{
@@ -16297,7 +16321,7 @@
"zh-chs": "德文(瑞士)",
"zh-cht": "德文(瑞士)",
"xloc": [
- "default.handlebars->29->1115"
+ "default.handlebars->29->1118"
]
},
{
@@ -16358,7 +16382,7 @@
"zh-chs": "正在获取剪贴板内容,{0}个字节",
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->29->1586"
+ "default.handlebars->29->1589"
]
},
{
@@ -16420,7 +16444,7 @@
"zh-chs": "好",
"zh-cht": "好",
"xloc": [
- "default.handlebars->29->1275"
+ "default.handlebars->29->1278"
]
},
{
@@ -16465,8 +16489,8 @@
"zh-chs": "Google云端硬盘备份",
"zh-cht": "Google雲端硬盤備份",
"xloc": [
- "default.handlebars->29->1286",
"default.handlebars->29->1289",
+ "default.handlebars->29->1292",
"default.handlebars->29->204"
]
},
@@ -16487,7 +16511,7 @@
"zh-chs": "Google云端硬盘控制台",
"zh-cht": "Google雲端硬盤控制台",
"xloc": [
- "default.handlebars->29->1283"
+ "default.handlebars->29->1286"
]
},
{
@@ -16527,7 +16551,7 @@
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
"xloc": [
- "default.handlebars->29->1287"
+ "default.handlebars->29->1290"
]
},
{
@@ -16547,7 +16571,7 @@
"zh-chs": "希腊文",
"zh-cht": "希臘文",
"xloc": [
- "default.handlebars->29->1116"
+ "default.handlebars->29->1119"
]
},
{
@@ -16589,8 +16613,8 @@
"zh-chs": "集体指令",
"zh-cht": "集體指令",
"xloc": [
- "default.handlebars->29->1725",
- "default.handlebars->29->1804",
+ "default.handlebars->29->1730",
+ "default.handlebars->29->1809",
"default.handlebars->29->448",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -16614,7 +16638,7 @@
"zh-chs": "通过...分组",
"zh-cht": "通過...分群",
"xloc": [
- "default.handlebars->29->1673"
+ "default.handlebars->29->1678"
]
},
{
@@ -16634,7 +16658,7 @@
"zh-chs": "组标识符",
"zh-cht": "群標識符",
"xloc": [
- "default.handlebars->29->1821"
+ "default.handlebars->29->1826"
]
},
{
@@ -16654,7 +16678,7 @@
"zh-chs": "群组成员",
"zh-cht": "群組成員",
"xloc": [
- "default.handlebars->29->1842"
+ "default.handlebars->29->1847"
]
},
{
@@ -16674,7 +16698,7 @@
"zh-chs": "用户{0}的群组权限。",
"zh-cht": "用戶{0}的群組權限。",
"xloc": [
- "default.handlebars->29->1421"
+ "default.handlebars->29->1424"
]
},
{
@@ -16694,7 +16718,7 @@
"zh-chs": "{0}的群组权限。",
"zh-cht": "{0}的群組權限。",
"xloc": [
- "default.handlebars->29->1420"
+ "default.handlebars->29->1423"
]
},
{
@@ -16762,7 +16786,7 @@
"zh-cht": "來賓姓名",
"xloc": [
"default.handlebars->29->187",
- "default.handlebars->29->709"
+ "default.handlebars->29->712"
]
},
{
@@ -16782,7 +16806,7 @@
"zh-chs": "古久拉提",
"zh-cht": "古久拉提",
"xloc": [
- "default.handlebars->29->1117"
+ "default.handlebars->29->1120"
]
},
{
@@ -16825,7 +16849,7 @@
"zh-chs": "海地文",
"zh-cht": "海地文",
"xloc": [
- "default.handlebars->29->1118"
+ "default.handlebars->29->1121"
]
},
{
@@ -16865,7 +16889,7 @@
"zh-chs": "强行断开代理",
"zh-cht": "強行斷開代理",
"xloc": [
- "default.handlebars->29->1006"
+ "default.handlebars->29->1009"
]
},
{
@@ -16885,7 +16909,7 @@
"zh-chs": "堆总数",
"zh-cht": "堆總數",
"xloc": [
- "default.handlebars->29->2077"
+ "default.handlebars->29->2084"
]
},
{
@@ -16905,7 +16929,7 @@
"zh-chs": "堆使用",
"zh-cht": "堆使用",
"xloc": [
- "default.handlebars->29->2076"
+ "default.handlebars->29->2083"
]
},
{
@@ -16925,7 +16949,7 @@
"zh-chs": "希伯来文",
"zh-cht": "希伯來文",
"xloc": [
- "default.handlebars->29->1119"
+ "default.handlebars->29->1122"
]
},
{
@@ -16960,7 +16984,7 @@
"en": "Help Requested, user: {0}, details: {1}",
"nl": "Hulp verzoek van, user: {0}, details: {1}",
"xloc": [
- "default.handlebars->29->1663"
+ "default.handlebars->29->1666"
]
},
{
@@ -16995,7 +17019,7 @@
"zh-chs": "帮助翻译MeshCentral",
"zh-cht": "幫助翻譯MeshCentral",
"xloc": [
- "default.handlebars->29->1234"
+ "default.handlebars->29->1237"
]
},
{
@@ -17099,7 +17123,7 @@
"zh-chs": "印地文",
"zh-cht": "印地文",
"xloc": [
- "default.handlebars->29->1120"
+ "default.handlebars->29->1123"
]
},
{
@@ -17137,7 +17161,7 @@
"zh-cht": "保存1個項目進行複製",
"xloc": [
"default-mobile.handlebars->9->327",
- "default.handlebars->29->896"
+ "default.handlebars->29->899"
]
},
{
@@ -17158,7 +17182,7 @@
"zh-cht": "保存1個項目進行移動",
"xloc": [
"default-mobile.handlebars->9->331",
- "default.handlebars->29->900"
+ "default.handlebars->29->903"
]
},
{
@@ -17179,7 +17203,7 @@
"zh-cht": "保留{0}個項目進行複製",
"xloc": [
"default-mobile.handlebars->9->325",
- "default.handlebars->29->894"
+ "default.handlebars->29->897"
]
},
{
@@ -17200,7 +17224,7 @@
"zh-cht": "保存{0}個項目以進行移動",
"xloc": [
"default-mobile.handlebars->9->329",
- "default.handlebars->29->898"
+ "default.handlebars->29->901"
]
},
{
@@ -17221,7 +17245,7 @@
"zh-cht": "保存{0}項目{1}給{2}",
"xloc": [
"default-mobile.handlebars->9->129",
- "default.handlebars->29->1559"
+ "default.handlebars->29->1562"
]
},
{
@@ -17247,7 +17271,7 @@
"default-mobile.handlebars->9->291",
"default.handlebars->29->288",
"default.handlebars->29->545",
- "default.handlebars->29->807"
+ "default.handlebars->29->810"
]
},
{
@@ -17267,7 +17291,7 @@
"zh-chs": "主机名同步",
"zh-cht": "主機名同步",
"xloc": [
- "default.handlebars->29->1314"
+ "default.handlebars->29->1317"
]
},
{
@@ -17287,7 +17311,7 @@
"zh-chs": "匈牙利文",
"zh-cht": "匈牙利文",
"xloc": [
- "default.handlebars->29->1121"
+ "default.handlebars->29->1124"
]
},
{
@@ -17352,9 +17376,9 @@
"xloc": [
"default-mobile.handlebars->9->360",
"default-mobile.handlebars->9->364",
- "default.handlebars->29->936",
- "default.handlebars->29->946",
- "default.handlebars->29->950"
+ "default.handlebars->29->939",
+ "default.handlebars->29->949",
+ "default.handlebars->29->953"
]
},
{
@@ -17376,9 +17400,9 @@
"xloc": [
"default-mobile.handlebars->9->358",
"default-mobile.handlebars->9->362",
- "default.handlebars->29->934",
- "default.handlebars->29->944",
- "default.handlebars->29->948"
+ "default.handlebars->29->937",
+ "default.handlebars->29->947",
+ "default.handlebars->29->951"
]
},
{
@@ -17400,10 +17424,10 @@
"xloc": [
"default-mobile.handlebars->9->357",
"default-mobile.handlebars->9->359",
- "default.handlebars->29->933",
- "default.handlebars->29->935",
- "default.handlebars->29->943",
- "default.handlebars->29->945"
+ "default.handlebars->29->936",
+ "default.handlebars->29->938",
+ "default.handlebars->29->946",
+ "default.handlebars->29->948"
]
},
{
@@ -17488,8 +17512,8 @@
"xloc": [
"default-mobile.handlebars->9->361",
"default-mobile.handlebars->9->363",
- "default.handlebars->29->947",
- "default.handlebars->29->949"
+ "default.handlebars->29->950",
+ "default.handlebars->29->952"
]
},
{
@@ -17569,7 +17593,7 @@
"zh-chs": "冰岛文",
"zh-cht": "冰島文",
"xloc": [
- "default.handlebars->29->1122"
+ "default.handlebars->29->1125"
]
},
{
@@ -17590,7 +17614,7 @@
"zh-cht": "圖符選擇",
"xloc": [
"default-mobile.handlebars->9->289",
- "default.handlebars->29->805"
+ "default.handlebars->29->808"
]
},
{
@@ -17611,14 +17635,14 @@
"zh-cht": "識別符",
"xloc": [
"default-mobile.handlebars->9->389",
- "default.handlebars->29->975"
+ "default.handlebars->29->978"
]
},
{
"en": "If in CCM, reactivate Intel® AMT",
"nl": "Indien in CCM, heractiveer Intel® AMT",
"xloc": [
- "default.handlebars->29->1375"
+ "default.handlebars->29->1378"
]
},
{
@@ -17766,7 +17790,7 @@
"zh-chs": "印度尼西亚文",
"zh-cht": "印度尼西亞文",
"xloc": [
- "default.handlebars->29->1123"
+ "default.handlebars->29->1126"
]
},
{
@@ -17939,8 +17963,8 @@
"zh-chs": "安装类型",
"zh-cht": "安裝方式",
"xloc": [
- "default.handlebars->29->1491",
- "default.handlebars->29->1498",
+ "default.handlebars->29->1494",
+ "default.handlebars->29->1501",
"default.handlebars->29->334",
"default.handlebars->29->348",
"default.handlebars->29->362"
@@ -17963,7 +17987,7 @@
"zh-chs": "英特尔(F10 = ESC + [OM)",
"zh-cht": "Intel(F10 = ESC + [OM)",
"xloc": [
- "default.handlebars->29->862",
+ "default.handlebars->29->865",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons"
]
},
@@ -17984,7 +18008,7 @@
"zh-chs": "英特尔AMT",
"zh-cht": "英特爾AMT",
"xloc": [
- "default.handlebars->29->2073"
+ "default.handlebars->29->2080"
]
},
{
@@ -18004,7 +18028,7 @@
"zh-chs": "英特尔ASCII",
"zh-cht": "Intel ASCII",
"xloc": [
- "default.handlebars->29->861"
+ "default.handlebars->29->864"
]
},
{
@@ -18027,11 +18051,11 @@
"default-mobile.handlebars->9->205",
"default-mobile.handlebars->9->247",
"default-mobile.handlebars->9->252",
- "default.handlebars->29->1332",
- "default.handlebars->29->1343",
- "default.handlebars->29->1510",
- "default.handlebars->29->1518",
- "default.handlebars->29->2095",
+ "default.handlebars->29->1335",
+ "default.handlebars->29->1346",
+ "default.handlebars->29->1513",
+ "default.handlebars->29->1521",
+ "default.handlebars->29->2102",
"default.handlebars->29->515",
"default.handlebars->29->573",
"default.handlebars->29->601"
@@ -18187,7 +18211,7 @@
"zh-chs": "英特尔®AMT政策",
"zh-cht": "Intel® AMT政策",
"xloc": [
- "default.handlebars->29->1366"
+ "default.handlebars->29->1369"
]
},
{
@@ -18207,7 +18231,7 @@
"zh-chs": "英特尔®AMT重定向",
"zh-cht": "Intel® AMT重定向",
"xloc": [
- "default.handlebars->29->2011",
+ "default.handlebars->29->2018",
"player.handlebars->3->14"
]
},
@@ -18248,7 +18272,7 @@
"zh-chs": "英特尔®AMT WSMAN",
"zh-cht": "Intle® AMT WSMAN",
"xloc": [
- "default.handlebars->29->2010",
+ "default.handlebars->29->2017",
"player.handlebars->3->13"
]
},
@@ -18308,8 +18332,8 @@
"zh-chs": "英特尔®AMT桌面和串行事件。",
"zh-cht": "Intel® AMT桌面和串行事件。",
"xloc": [
- "default.handlebars->29->1240",
- "default.handlebars->29->1506"
+ "default.handlebars->29->1243",
+ "default.handlebars->29->1509"
]
},
{
@@ -18495,8 +18519,8 @@
"zh-cht": "僅限Intel® AMT,無代理",
"xloc": [
"default-mobile.handlebars->9->406",
- "default.handlebars->29->1269",
- "default.handlebars->29->1304"
+ "default.handlebars->29->1272",
+ "default.handlebars->29->1307"
]
},
{
@@ -18561,7 +18585,7 @@
"zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
"xloc": [
"default-mobile.handlebars->9->381",
- "default.handlebars->29->967"
+ "default.handlebars->29->970"
]
},
{
@@ -18766,7 +18790,7 @@
"zh-chs": "互动",
"zh-cht": "互動",
"xloc": [
- "default.handlebars->29->842"
+ "default.handlebars->29->845"
]
},
{
@@ -18786,8 +18810,8 @@
"zh-chs": "仅限互动",
"zh-cht": "僅限互動",
"xloc": [
- "default.handlebars->29->1494",
- "default.handlebars->29->1501",
+ "default.handlebars->29->1497",
+ "default.handlebars->29->1504",
"default.handlebars->29->337",
"default.handlebars->29->351",
"default.handlebars->29->365"
@@ -18830,7 +18854,7 @@
"zh-chs": "因纽特文",
"zh-cht": "因紐特文",
"xloc": [
- "default.handlebars->29->1124"
+ "default.handlebars->29->1127"
]
},
{
@@ -18860,7 +18884,7 @@
"zh-chs": "无效的设备组类型",
"zh-cht": "無效的裝置群類型",
"xloc": [
- "default.handlebars->29->2047"
+ "default.handlebars->29->2054"
]
},
{
@@ -18880,7 +18904,7 @@
"zh-chs": "无效的JSON",
"zh-cht": "無效的JSON",
"xloc": [
- "default.handlebars->29->2041"
+ "default.handlebars->29->2048"
]
},
{
@@ -18900,8 +18924,8 @@
"zh-chs": "无效的JSON档案格式。",
"zh-cht": "無效的JSON檔案格式。",
"xloc": [
- "default.handlebars->29->1743",
- "default.handlebars->29->1745"
+ "default.handlebars->29->1748",
+ "default.handlebars->29->1750"
]
},
{
@@ -18921,7 +18945,7 @@
"zh-chs": "无效的JSON档案:{0}。",
"zh-cht": "無效的JSON檔案:{0}。",
"xloc": [
- "default.handlebars->29->1741"
+ "default.handlebars->29->1746"
]
},
{
@@ -18941,7 +18965,7 @@
"zh-chs": "无效的PKCS签名",
"zh-cht": "無效的PKCS簽名",
"xloc": [
- "default.handlebars->29->2039"
+ "default.handlebars->29->2046"
]
},
{
@@ -18961,7 +18985,7 @@
"zh-chs": "無效的RSA密碼",
"zh-cht": "無效的RSA密碼",
"xloc": [
- "default.handlebars->29->2040"
+ "default.handlebars->29->2047"
]
},
{
@@ -19088,7 +19112,7 @@
"zh-chs": "使电邮无效",
"zh-cht": "使電郵無效",
"xloc": [
- "default.handlebars->29->1719"
+ "default.handlebars->29->1724"
]
},
{
@@ -19165,7 +19189,7 @@
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->29->1496"
+ "default.handlebars->29->1499"
]
},
{
@@ -19205,7 +19229,7 @@
"zh-chs": "邀请",
"zh-cht": "邀請",
"xloc": [
- "default.handlebars->29->1353",
+ "default.handlebars->29->1356",
"default.handlebars->29->285",
"default.handlebars->29->353"
]
@@ -19227,11 +19251,11 @@
"zh-chs": "邀请码",
"zh-cht": "邀請碼",
"xloc": [
- "default.handlebars->29->1336",
- "default.handlebars->29->1490",
- "default.handlebars->29->1495",
- "default.handlebars->29->1497",
- "default.handlebars->29->1502"
+ "default.handlebars->29->1339",
+ "default.handlebars->29->1493",
+ "default.handlebars->29->1498",
+ "default.handlebars->29->1500",
+ "default.handlebars->29->1505"
]
},
{
@@ -19271,7 +19295,7 @@
"zh-chs": "邀请某人在该设备组上安装网格代理。",
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
"xloc": [
- "default.handlebars->29->1352",
+ "default.handlebars->29->1355",
"default.handlebars->29->284"
]
},
@@ -19312,7 +19336,7 @@
"zh-chs": "爱尔兰文",
"zh-cht": "愛爾蘭文",
"xloc": [
- "default.handlebars->29->1125"
+ "default.handlebars->29->1128"
]
},
{
@@ -19332,7 +19356,7 @@
"zh-chs": "意大利文(标准)",
"zh-cht": "意大利文(標準)",
"xloc": [
- "default.handlebars->29->1126"
+ "default.handlebars->29->1129"
]
},
{
@@ -19352,7 +19376,7 @@
"zh-chs": "意大利文(瑞士)",
"zh-cht": "義大利文(瑞士)",
"xloc": [
- "default.handlebars->29->1127"
+ "default.handlebars->29->1130"
]
},
{
@@ -19372,7 +19396,7 @@
"zh-chs": "JSON",
"zh-cht": "JSON",
"xloc": [
- "default.handlebars->29->1679"
+ "default.handlebars->29->1684"
]
},
{
@@ -19392,8 +19416,8 @@
"zh-chs": "JSON格式",
"zh-cht": "JSON格式",
"xloc": [
- "default.handlebars->29->1684",
- "default.handlebars->29->1749",
+ "default.handlebars->29->1689",
+ "default.handlebars->29->1754",
"default.handlebars->29->476"
]
},
@@ -19414,7 +19438,7 @@
"zh-chs": "日文",
"zh-cht": "日文",
"xloc": [
- "default.handlebars->29->1128"
+ "default.handlebars->29->1131"
]
},
{
@@ -19434,7 +19458,7 @@
"zh-chs": "已加入桌面Multiplex会话",
"zh-cht": "已加入桌面Multiplex會話",
"xloc": [
- "default.handlebars->29->1569"
+ "default.handlebars->29->1572"
]
},
{
@@ -19454,7 +19478,7 @@
"zh-chs": "卡纳达文",
"zh-cht": "卡納達文",
"xloc": [
- "default.handlebars->29->1129"
+ "default.handlebars->29->1132"
]
},
{
@@ -19474,7 +19498,7 @@
"zh-chs": "克什米尔文",
"zh-cht": "克什米爾文",
"xloc": [
- "default.handlebars->29->1130"
+ "default.handlebars->29->1133"
]
},
{
@@ -19494,14 +19518,14 @@
"zh-chs": "哈萨克文",
"zh-cht": "哈薩克文",
"xloc": [
- "default.handlebars->29->1131"
+ "default.handlebars->29->1134"
]
},
{
"en": "Keep existing password",
"nl": "Behoud huidige wachtwoord",
"xloc": [
- "default.handlebars->29->1367"
+ "default.handlebars->29->1370"
]
},
{
@@ -19521,7 +19545,7 @@
"zh-chs": "内核驱动器",
"zh-cht": "內核驅動器",
"xloc": [
- "default.handlebars->29->843"
+ "default.handlebars->29->846"
]
},
{
@@ -19541,8 +19565,8 @@
"zh-chs": "键名",
"zh-cht": "鍵名",
"xloc": [
- "default.handlebars->29->1022",
- "default.handlebars->29->1025"
+ "default.handlebars->29->1025",
+ "default.handlebars->29->1028"
]
},
{
@@ -19602,7 +19626,7 @@
"zh-chs": "高棉文",
"zh-cht": "高棉文",
"xloc": [
- "default.handlebars->29->1132"
+ "default.handlebars->29->1135"
]
},
{
@@ -19622,7 +19646,7 @@
"zh-chs": "杀死进程{0}",
"zh-cht": "殺死進程{0}",
"xloc": [
- "default.handlebars->29->1584"
+ "default.handlebars->29->1587"
]
},
{
@@ -19642,7 +19666,7 @@
"zh-chs": "吉尔吉斯",
"zh-cht": "吉爾吉斯",
"xloc": [
- "default.handlebars->29->1133"
+ "default.handlebars->29->1136"
]
},
{
@@ -19662,7 +19686,7 @@
"zh-chs": "克林贡",
"zh-cht": "克林貢",
"xloc": [
- "default.handlebars->29->1134"
+ "default.handlebars->29->1137"
]
},
{
@@ -19683,7 +19707,7 @@
"zh-cht": "已知的",
"xloc": [
"default-mobile.handlebars->9->380",
- "default.handlebars->29->966"
+ "default.handlebars->29->969"
]
},
{
@@ -19703,7 +19727,7 @@
"zh-chs": "韩文",
"zh-cht": "韓文",
"xloc": [
- "default.handlebars->29->1135"
+ "default.handlebars->29->1138"
]
},
{
@@ -19723,7 +19747,7 @@
"zh-chs": "韩文(朝鲜)",
"zh-cht": "韓文(朝鮮)",
"xloc": [
- "default.handlebars->29->1136"
+ "default.handlebars->29->1139"
]
},
{
@@ -19743,7 +19767,7 @@
"zh-chs": "韩文(韩国)",
"zh-cht": "韓文(韓國)",
"xloc": [
- "default.handlebars->29->1137"
+ "default.handlebars->29->1140"
]
},
{
@@ -19763,8 +19787,8 @@
"zh-chs": "如果",
"zh-cht": "如果",
"xloc": [
- "default.handlebars->29->857",
- "default.handlebars->29->866"
+ "default.handlebars->29->860",
+ "default.handlebars->29->869"
]
},
{
@@ -19784,7 +19808,7 @@
"zh-chs": "语言",
"zh-cht": "語言",
"xloc": [
- "default.handlebars->29->1232"
+ "default.handlebars->29->1235"
]
},
{
@@ -19824,7 +19848,7 @@
"zh-chs": "大焦点",
"zh-cht": "大焦點",
"xloc": [
- "default.handlebars->29->831"
+ "default.handlebars->29->834"
]
},
{
@@ -20037,7 +20061,7 @@
"zh-chs": "最后访问",
"zh-cht": "最後訪問",
"xloc": [
- "default.handlebars->29->1692"
+ "default.handlebars->29->1697"
]
},
{
@@ -20057,7 +20081,7 @@
"zh-chs": "上次登录",
"zh-cht": "上次登入",
"xloc": [
- "default.handlebars->29->1900"
+ "default.handlebars->29->1905"
]
},
{
@@ -20083,9 +20107,9 @@
"default.handlebars->29->69",
"default.handlebars->29->71",
"default.handlebars->29->73",
- "default.handlebars->29->924",
- "default.handlebars->29->925",
- "default.handlebars->29->926"
+ "default.handlebars->29->927",
+ "default.handlebars->29->928",
+ "default.handlebars->29->929"
]
},
{
@@ -20108,8 +20132,8 @@
"default-mobile.handlebars->9->345",
"default-mobile.handlebars->9->347",
"default.handlebars->29->68",
- "default.handlebars->29->921",
- "default.handlebars->29->923"
+ "default.handlebars->29->924",
+ "default.handlebars->29->926"
]
},
{
@@ -20129,7 +20153,7 @@
"zh-chs": "上次更改:{0}",
"zh-cht": "上次更改:{0}",
"xloc": [
- "default.handlebars->29->1904"
+ "default.handlebars->29->1909"
]
},
{
@@ -20189,7 +20213,7 @@
"zh-chs": "上次登录:{0}",
"zh-cht": "上次登入:{0}",
"xloc": [
- "default.handlebars->29->1702"
+ "default.handlebars->29->1707"
]
},
{
@@ -20290,7 +20314,7 @@
"zh-chs": "拉丁文",
"zh-cht": "拉丁文",
"xloc": [
- "default.handlebars->29->1138"
+ "default.handlebars->29->1141"
]
},
{
@@ -20310,7 +20334,7 @@
"zh-chs": "拉脱维亚文",
"zh-cht": "拉脫維亞文",
"xloc": [
- "default.handlebars->29->1139"
+ "default.handlebars->29->1142"
]
},
{
@@ -20330,7 +20354,7 @@
"zh-chs": "启动MeshCentral路由器",
"zh-cht": "啟動MeshCentral路由器",
"xloc": [
- "default.handlebars->29->782"
+ "default.handlebars->29->785"
]
},
{
@@ -20390,7 +20414,7 @@
"zh-chs": "如没有请留空。",
"zh-cht": "如沒有請留空。",
"xloc": [
- "default.handlebars->29->1944"
+ "default.handlebars->29->1949"
]
},
{
@@ -20435,7 +20459,7 @@
"zh-chs": "离开桌面多路复用会话",
"zh-cht": "離開桌面多路復用會話",
"xloc": [
- "default.handlebars->29->1570"
+ "default.handlebars->29->1573"
]
},
{
@@ -20455,7 +20479,7 @@
"zh-chs": "减",
"zh-cht": "減",
"xloc": [
- "default.handlebars->29->2112"
+ "default.handlebars->29->2119"
]
},
{
@@ -20475,8 +20499,8 @@
"zh-chs": "限制事件",
"zh-cht": "限制事件",
"xloc": [
- "default.handlebars->29->673",
- "default.handlebars->29->694"
+ "default.handlebars->29->676",
+ "default.handlebars->29->697"
]
},
{
@@ -20518,9 +20542,9 @@
"zh-cht": "有限輸入",
"xloc": [
"default-mobile.handlebars->9->457",
- "default.handlebars->29->1472",
- "default.handlebars->29->666",
- "default.handlebars->29->687"
+ "default.handlebars->29->1475",
+ "default.handlebars->29->669",
+ "default.handlebars->29->690"
]
},
{
@@ -20541,7 +20565,7 @@
"zh-cht": "僅有限輸入",
"xloc": [
"default-mobile.handlebars->9->430",
- "default.handlebars->29->1428"
+ "default.handlebars->29->1431"
]
},
{
@@ -20767,7 +20791,7 @@
"zh-chs": "Linux ARM,Raspberry Pi(32位)",
"zh-cht": "Linux ARM,Raspberry Pi(32位)",
"xloc": [
- "default.handlebars->29->789"
+ "default.handlebars->29->792"
]
},
{
@@ -20891,7 +20915,7 @@
"zh-chs": "Linux x86(32位)",
"zh-cht": "Linux x86(32位)",
"xloc": [
- "default.handlebars->29->786"
+ "default.handlebars->29->789"
]
},
{
@@ -20911,7 +20935,7 @@
"zh-chs": "Linux x86(64位)",
"zh-cht": "Linux x86(64位)",
"xloc": [
- "default.handlebars->29->787"
+ "default.handlebars->29->790"
]
},
{
@@ -20932,7 +20956,7 @@
"zh-cht": "Linux / BSD / macOS命令外殼",
"xloc": [
"default.handlebars->29->455",
- "default.handlebars->29->744"
+ "default.handlebars->29->747"
]
},
{
@@ -20990,7 +21014,7 @@
"zh-chs": "立陶宛文",
"zh-cht": "立陶宛文",
"xloc": [
- "default.handlebars->29->1140"
+ "default.handlebars->29->1143"
]
},
{
@@ -21011,11 +21035,11 @@
"zh-cht": "載入中...",
"xloc": [
"default-mobile.handlebars->9->72",
- "default.handlebars->29->1018",
- "default.handlebars->29->1295",
- "default.handlebars->29->1299",
- "default.handlebars->29->1998",
- "default.handlebars->29->778"
+ "default.handlebars->29->1021",
+ "default.handlebars->29->1298",
+ "default.handlebars->29->1302",
+ "default.handlebars->29->2005",
+ "default.handlebars->29->781"
]
},
{
@@ -21097,7 +21121,7 @@
"zh-chs": "本地用户接受的远程终端请求",
"zh-cht": "本地用戶接受的遠程終端請求",
"xloc": [
- "default.handlebars->29->1592"
+ "default.handlebars->29->1595"
]
},
{
@@ -21117,7 +21141,7 @@
"zh-chs": "本地用户拒绝了远程终端请求",
"zh-cht": "本地用戶拒絕了遠程終端請求",
"xloc": [
- "default.handlebars->29->1593"
+ "default.handlebars->29->1596"
]
},
{
@@ -21137,7 +21161,7 @@
"zh-chs": "本地化设置",
"zh-cht": "本地化設置",
"xloc": [
- "default.handlebars->29->1235",
+ "default.handlebars->29->1238",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
]
},
@@ -21198,7 +21222,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->29->1789"
+ "default.handlebars->29->1794"
]
},
{
@@ -21218,7 +21242,7 @@
"zh-chs": "锁定帐户设置",
"zh-cht": "鎖定帳戶設置",
"xloc": [
- "default.handlebars->29->1792"
+ "default.handlebars->29->1797"
]
},
{
@@ -21238,7 +21262,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->29->1722"
+ "default.handlebars->29->1727"
]
},
{
@@ -21258,7 +21282,7 @@
"zh-chs": "已锁定",
"zh-cht": "已鎖定",
"xloc": [
- "default.handlebars->29->1703"
+ "default.handlebars->29->1708"
]
},
{
@@ -21278,7 +21302,7 @@
"zh-chs": "被锁定账户",
"zh-cht": "被鎖定賬戶",
"xloc": [
- "default.handlebars->29->1876"
+ "default.handlebars->29->1881"
]
},
{
@@ -21298,7 +21322,7 @@
"zh-chs": "将远程用户锁定在桌面之外",
"zh-cht": "將遠程用戶鎖定在桌面之外",
"xloc": [
- "default.handlebars->29->1618"
+ "default.handlebars->29->1621"
]
},
{
@@ -21538,7 +21562,7 @@
"zh-chs": "卢森堡文",
"zh-cht": "盧森堡文",
"xloc": [
- "default.handlebars->29->1141"
+ "default.handlebars->29->1144"
]
},
{
@@ -21560,10 +21584,10 @@
"xloc": [
"default-mobile.handlebars->9->353",
"default-mobile.handlebars->9->355",
- "default.handlebars->29->929",
- "default.handlebars->29->931",
- "default.handlebars->29->939",
- "default.handlebars->29->941"
+ "default.handlebars->29->932",
+ "default.handlebars->29->934",
+ "default.handlebars->29->942",
+ "default.handlebars->29->944"
]
},
{
@@ -21605,8 +21629,8 @@
"zh-cht": "MAC:{0}",
"xloc": [
"default-mobile.handlebars->9->356",
- "default.handlebars->29->932",
- "default.handlebars->29->942"
+ "default.handlebars->29->935",
+ "default.handlebars->29->945"
]
},
{
@@ -21627,8 +21651,8 @@
"zh-cht": "MAC:{0},網關:{1}",
"xloc": [
"default-mobile.handlebars->9->354",
- "default.handlebars->29->930",
- "default.handlebars->29->940"
+ "default.handlebars->29->933",
+ "default.handlebars->29->943"
]
},
{
@@ -21709,11 +21733,11 @@
"xloc": [
"default-mobile.handlebars->9->207",
"default-mobile.handlebars->9->254",
+ "default.handlebars->29->1000",
"default.handlebars->29->221",
"default.handlebars->29->430",
"default.handlebars->29->605",
- "default.handlebars->29->996",
- "default.handlebars->29->997",
+ "default.handlebars->29->999",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
]
},
@@ -21918,7 +21942,7 @@
"zh-chs": "主服务器信息",
"zh-cht": "主伺服器訊息",
"xloc": [
- "default.handlebars->29->2084"
+ "default.handlebars->29->2091"
]
},
{
@@ -21938,7 +21962,7 @@
"zh-chs": "马来文",
"zh-cht": "馬來文",
"xloc": [
- "default.handlebars->29->1143"
+ "default.handlebars->29->1146"
]
},
{
@@ -21958,7 +21982,7 @@
"zh-chs": "玛拉雅拉姆文",
"zh-cht": "馬拉雅拉姆文",
"xloc": [
- "default.handlebars->29->1144"
+ "default.handlebars->29->1147"
]
},
{
@@ -21978,7 +22002,7 @@
"zh-chs": "马耳他文",
"zh-cht": "馬耳他文",
"xloc": [
- "default.handlebars->29->1145"
+ "default.handlebars->29->1148"
]
},
{
@@ -22021,8 +22045,8 @@
"xloc": [
"default-mobile.handlebars->9->427",
"default-mobile.handlebars->9->447",
- "default.handlebars->29->1425",
- "default.handlebars->29->1461"
+ "default.handlebars->29->1428",
+ "default.handlebars->29->1464"
]
},
{
@@ -22044,8 +22068,8 @@
"xloc": [
"default-mobile.handlebars->9->426",
"default-mobile.handlebars->9->446",
- "default.handlebars->29->1424",
- "default.handlebars->29->1460"
+ "default.handlebars->29->1427",
+ "default.handlebars->29->1463"
]
},
{
@@ -22065,7 +22089,7 @@
"zh-chs": "管理设备",
"zh-cht": "管理裝置",
"xloc": [
- "default.handlebars->29->682"
+ "default.handlebars->29->685"
]
},
{
@@ -22085,7 +22109,7 @@
"zh-chs": "管理录音",
"zh-cht": "管理錄音",
"xloc": [
- "default.handlebars->29->1787"
+ "default.handlebars->29->1792"
]
},
{
@@ -22125,7 +22149,7 @@
"zh-chs": "管理用户组",
"zh-cht": "管理用戶群",
"xloc": [
- "default.handlebars->29->1786"
+ "default.handlebars->29->1791"
]
},
{
@@ -22145,8 +22169,8 @@
"zh-chs": "管理用户",
"zh-cht": "管理用戶",
"xloc": [
- "default.handlebars->29->1785",
- "default.handlebars->29->681"
+ "default.handlebars->29->1790",
+ "default.handlebars->29->684"
]
},
{
@@ -22272,7 +22296,7 @@
"zh-chs": "使用软件代理进行管理",
"zh-cht": "使用軟體代理進行管理",
"xloc": [
- "default.handlebars->29->1268"
+ "default.handlebars->29->1271"
]
},
{
@@ -22293,7 +22317,7 @@
"zh-cht": "使用軟體代理進行管理",
"xloc": [
"default-mobile.handlebars->9->407",
- "default.handlebars->29->1305"
+ "default.handlebars->29->1308"
]
},
{
@@ -22313,7 +22337,7 @@
"zh-chs": "经理",
"zh-cht": "經理",
"xloc": [
- "default.handlebars->29->1708"
+ "default.handlebars->29->1713"
]
},
{
@@ -22367,7 +22391,7 @@
"zh-chs": "毛利文",
"zh-cht": "毛利文",
"xloc": [
- "default.handlebars->29->1146"
+ "default.handlebars->29->1149"
]
},
{
@@ -22408,7 +22432,7 @@
"zh-chs": "马拉地文",
"zh-cht": "馬拉地文",
"xloc": [
- "default.handlebars->29->1147"
+ "default.handlebars->29->1150"
]
},
{
@@ -22428,7 +22452,7 @@
"zh-chs": "达到连接数量上限",
"zh-cht": "達到連接數量上限",
"xloc": [
- "default.handlebars->29->2045"
+ "default.handlebars->29->2052"
]
},
{
@@ -22493,7 +22517,7 @@
"zh-chs": "Megabyte",
"zh-cht": "Megabyte",
"xloc": [
- "default.handlebars->29->2074"
+ "default.handlebars->29->2081"
]
},
{
@@ -22514,8 +22538,8 @@
"zh-cht": "記憶體",
"xloc": [
"default-mobile.handlebars->9->398",
- "default.handlebars->29->2065",
- "default.handlebars->29->984",
+ "default.handlebars->29->2072",
+ "default.handlebars->29->987",
"default.handlebars->container->column_l->p40->3->1->p40type->3"
]
},
@@ -22547,8 +22571,8 @@
"default.handlebars->29->392",
"default.handlebars->29->550",
"default.handlebars->29->597",
- "default.handlebars->29->920",
- "default.handlebars->29->927"
+ "default.handlebars->29->923",
+ "default.handlebars->29->930"
]
},
{
@@ -22569,7 +22593,7 @@
"zh-cht": "網格代理控制台",
"xloc": [
"default-mobile.handlebars->9->434",
- "default.handlebars->29->1433"
+ "default.handlebars->29->1436"
]
},
{
@@ -22653,8 +22677,8 @@
"zh-chs": "MeshAction(.txt)",
"zh-cht": "MeshAction(.txt)",
"xloc": [
- "default.handlebars->29->795",
- "default.handlebars->29->797"
+ "default.handlebars->29->798",
+ "default.handlebars->29->800"
]
},
{
@@ -22674,7 +22698,7 @@
"zh-chs": "MeshAgent流量",
"zh-cht": "MeshAgent流量",
"xloc": [
- "default.handlebars->29->2086"
+ "default.handlebars->29->2093"
]
},
{
@@ -22694,7 +22718,7 @@
"zh-chs": "MeshAgent更新",
"zh-cht": "MeshAgent更新",
"xloc": [
- "default.handlebars->29->2087"
+ "default.handlebars->29->2094"
]
},
{
@@ -22734,7 +22758,7 @@
"zh-chs": "MeshCentral错误",
"zh-cht": "MeshCentral錯誤",
"xloc": [
- "default.handlebars->29->1298"
+ "default.handlebars->29->1301"
]
},
{
@@ -22754,7 +22778,7 @@
"zh-chs": "MeshCentral路由器",
"zh-cht": "MeshCentral Router",
"xloc": [
- "default.handlebars->29->783"
+ "default.handlebars->29->786"
]
},
{
@@ -22774,7 +22798,7 @@
"zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。",
"zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。",
"xloc": [
- "default.handlebars->29->779"
+ "default.handlebars->29->782"
]
},
{
@@ -22815,7 +22839,7 @@
"zh-chs": "MeshCentral服务器同级化",
"zh-cht": "MeshCentral伺服器同級化",
"xloc": [
- "default.handlebars->29->2085"
+ "default.handlebars->29->2092"
]
},
{
@@ -22857,7 +22881,7 @@
"xloc": [
"default.handlebars->29->115",
"default.handlebars->29->117",
- "default.handlebars->29->1294"
+ "default.handlebars->29->1297"
]
},
{
@@ -22879,7 +22903,7 @@
"xloc": [
"default.handlebars->29->239",
"default.handlebars->29->627",
- "default.handlebars->29->793"
+ "default.handlebars->29->796"
]
},
{
@@ -22899,7 +22923,7 @@
"zh-chs": "MeshCmd(Linux ARM,32位)",
"zh-cht": "MeshCmd(Linux ARM,32位)",
"xloc": [
- "default.handlebars->29->804"
+ "default.handlebars->29->807"
]
},
{
@@ -22919,7 +22943,7 @@
"zh-chs": "MeshCmd(Linux x86,32bit)",
"zh-cht": "MeshCmd(Linux x86,32bit)",
"xloc": [
- "default.handlebars->29->801"
+ "default.handlebars->29->804"
]
},
{
@@ -22939,7 +22963,7 @@
"zh-chs": "MeshCmd(Linux x86,64位)",
"zh-cht": "MeshCmd(Linux x86,64位)",
"xloc": [
- "default.handlebars->29->802"
+ "default.handlebars->29->805"
]
},
{
@@ -22959,7 +22983,7 @@
"zh-chs": "MeshCmd(Win32可执行档案)",
"zh-cht": "MeshCmd(Win32可執行檔案)",
"xloc": [
- "default.handlebars->29->799"
+ "default.handlebars->29->802"
]
},
{
@@ -22979,7 +23003,7 @@
"zh-chs": "MeshCmd(Win64可执行档案)",
"zh-cht": "MeshCmd(Win64可執行檔案)",
"xloc": [
- "default.handlebars->29->800"
+ "default.handlebars->29->803"
]
},
{
@@ -22999,7 +23023,7 @@
"zh-chs": "MeshCmd(macOS,64位)",
"zh-cht": "MeshCmd(macOS,64位)",
"xloc": [
- "default.handlebars->29->803"
+ "default.handlebars->29->806"
]
},
{
@@ -23019,7 +23043,7 @@
"zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。",
"zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。",
"xloc": [
- "default.handlebars->29->790"
+ "default.handlebars->29->793"
]
},
{
@@ -23097,7 +23121,7 @@
"xloc": [
"default.handlebars->29->338",
"default.handlebars->29->614",
- "default.handlebars->29->759"
+ "default.handlebars->29->762"
]
},
{
@@ -23137,7 +23161,7 @@
"zh-chs": "消息调度器",
"zh-cht": "電郵調度器",
"xloc": [
- "default.handlebars->29->2083"
+ "default.handlebars->29->2090"
]
},
{
@@ -23260,7 +23284,7 @@
"zh-cht": "模型",
"xloc": [
"default-mobile.handlebars->9->399",
- "default.handlebars->29->985"
+ "default.handlebars->29->988"
]
},
{
@@ -23300,7 +23324,7 @@
"zh-chs": "摩尔达维亚文",
"zh-cht": "摩爾達維亞文",
"xloc": [
- "default.handlebars->29->1148"
+ "default.handlebars->29->1151"
]
},
{
@@ -23320,7 +23344,7 @@
"zh-chs": "更多",
"zh-cht": "更多",
"xloc": [
- "default.handlebars->29->2111"
+ "default.handlebars->29->2118"
]
},
{
@@ -23341,7 +23365,7 @@
"zh-cht": "母板",
"xloc": [
"default-mobile.handlebars->9->392",
- "default.handlebars->29->978"
+ "default.handlebars->29->981"
]
},
{
@@ -23401,7 +23425,7 @@
"zh-chs": "移动:“{0}”到“{1}”",
"zh-cht": "移動:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->29->1617"
+ "default.handlebars->29->1620"
]
},
{
@@ -23421,7 +23445,7 @@
"zh-chs": "将设备{0}移动到组{1}",
"zh-cht": "將設備{0}移動到組{1}",
"xloc": [
- "default.handlebars->29->1650"
+ "default.handlebars->29->1653"
]
},
{
@@ -23461,7 +23485,7 @@
"zh-chs": "多路复用器",
"zh-cht": "多工器",
"xloc": [
- "default.handlebars->29->2023"
+ "default.handlebars->29->2030"
]
},
{
@@ -23469,7 +23493,7 @@
"nl": "Moet als gebruiker worden uitgevoerd",
"xloc": [
"default.handlebars->29->458",
- "default.handlebars->29->747"
+ "default.handlebars->29->750"
]
},
{
@@ -23602,7 +23626,7 @@
"zh-chs": "我的服务器控制台",
"zh-cht": "我的伺服器控制台",
"xloc": [
- "default.handlebars->29->991"
+ "default.handlebars->29->994"
]
},
{
@@ -23764,8 +23788,8 @@
"zh-chs": "我的密钥",
"zh-cht": "我的密鍵",
"xloc": [
- "default.handlebars->29->1023",
- "default.handlebars->29->1026"
+ "default.handlebars->29->1026",
+ "default.handlebars->29->1029"
]
},
{
@@ -23812,21 +23836,21 @@
"default-mobile.handlebars->9->421",
"default-mobile.handlebars->9->97",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1",
- "default.handlebars->29->1266",
- "default.handlebars->29->1306",
- "default.handlebars->29->1389",
- "default.handlebars->29->1690",
- "default.handlebars->29->1795",
- "default.handlebars->29->1811",
- "default.handlebars->29->1818",
- "default.handlebars->29->1863",
- "default.handlebars->29->1882",
+ "default.handlebars->29->1269",
+ "default.handlebars->29->1309",
+ "default.handlebars->29->1392",
+ "default.handlebars->29->1695",
+ "default.handlebars->29->1800",
+ "default.handlebars->29->1816",
+ "default.handlebars->29->1823",
+ "default.handlebars->29->1868",
+ "default.handlebars->29->1887",
"default.handlebars->29->538",
"default.handlebars->29->76",
- "default.handlebars->29->837",
+ "default.handlebars->29->840",
"default.handlebars->29->90",
- "default.handlebars->29->916",
- "default.handlebars->29->972",
+ "default.handlebars->29->919",
+ "default.handlebars->29->975",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
"default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -23869,7 +23893,7 @@
"zh-chs": "名称1,名称2,名称3",
"zh-cht": "名稱1,名稱2,名稱3",
"xloc": [
- "default.handlebars->29->1777"
+ "default.handlebars->29->1782"
]
},
{
@@ -23889,7 +23913,7 @@
"zh-chs": "纳瓦霍文",
"zh-cht": "納瓦霍文",
"xloc": [
- "default.handlebars->29->1149"
+ "default.handlebars->29->1152"
]
},
{
@@ -23909,7 +23933,7 @@
"zh-chs": "恩东加",
"zh-cht": "恩東加",
"xloc": [
- "default.handlebars->29->1150"
+ "default.handlebars->29->1153"
]
},
{
@@ -23929,7 +23953,7 @@
"zh-chs": "尼泊尔文",
"zh-cht": "尼泊爾文",
"xloc": [
- "default.handlebars->29->1151"
+ "default.handlebars->29->1154"
]
},
{
@@ -23949,7 +23973,7 @@
"zh-chs": "网络接口",
"zh-cht": "網絡介面",
"xloc": [
- "default.handlebars->29->777"
+ "default.handlebars->29->780"
]
},
{
@@ -23987,8 +24011,8 @@
"zh-cht": "網路",
"xloc": [
"default-mobile.handlebars->9->365",
- "default.handlebars->29->937",
- "default.handlebars->29->951"
+ "default.handlebars->29->940",
+ "default.handlebars->29->954"
]
},
{
@@ -24029,7 +24053,7 @@
"zh-chs": "生成新的2FA备份代码",
"zh-cht": "生成新的2FA備份代碼",
"xloc": [
- "default.handlebars->29->1657"
+ "default.handlebars->29->1660"
]
},
{
@@ -24070,9 +24094,9 @@
"zh-cht": "新裝置群",
"xloc": [
"default-mobile.handlebars->9->91",
- "default.handlebars->29->1259",
- "default.handlebars->29->1271",
- "default.handlebars->29->769"
+ "default.handlebars->29->1262",
+ "default.handlebars->29->1274",
+ "default.handlebars->29->772"
]
},
{
@@ -24094,8 +24118,8 @@
"xloc": [
"default-mobile.handlebars->9->120",
"default-mobile.handlebars->9->311",
- "default.handlebars->29->1549",
- "default.handlebars->29->879",
+ "default.handlebars->29->1552",
+ "default.handlebars->29->882",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
]
@@ -24152,8 +24176,8 @@
"en": "New password*",
"nl": "Nieuw wachtwoord*",
"xloc": [
- "default.handlebars->29->1371",
- "default.handlebars->29->1372"
+ "default.handlebars->29->1374",
+ "default.handlebars->29->1375"
]
},
{
@@ -24175,8 +24199,8 @@
"xloc": [
"default-mobile.handlebars->9->86",
"default-mobile.handlebars->9->87",
- "default.handlebars->29->1254",
- "default.handlebars->29->1255"
+ "default.handlebars->29->1257",
+ "default.handlebars->29->1258"
]
},
{
@@ -24196,8 +24220,8 @@
"zh-chs": "没有AMT",
"zh-cht": "沒有AMT",
"xloc": [
- "default.handlebars->29->665",
- "default.handlebars->29->686"
+ "default.handlebars->29->668",
+ "default.handlebars->29->689"
]
},
{
@@ -24278,9 +24302,9 @@
"zh-chs": "没有桌面",
"zh-cht": "沒有桌面",
"xloc": [
- "default.handlebars->29->1468",
- "default.handlebars->29->667",
- "default.handlebars->29->688"
+ "default.handlebars->29->1471",
+ "default.handlebars->29->670",
+ "default.handlebars->29->691"
]
},
{
@@ -24300,7 +24324,7 @@
"zh-chs": "不能访问桌面",
"zh-cht": "不能訪問桌面",
"xloc": [
- "default.handlebars->29->1429"
+ "default.handlebars->29->1432"
]
},
{
@@ -24320,9 +24344,9 @@
"zh-chs": "找不到事件",
"zh-cht": "找不到事件",
"xloc": [
- "default.handlebars->29->1666",
- "default.handlebars->29->1997",
- "default.handlebars->29->914"
+ "default.handlebars->29->1671",
+ "default.handlebars->29->2004",
+ "default.handlebars->29->917"
]
},
{
@@ -24343,7 +24367,7 @@
"zh-cht": "不能存取檔案",
"xloc": [
"default-mobile.handlebars->9->432",
- "default.handlebars->29->1431"
+ "default.handlebars->29->1434"
]
},
{
@@ -24364,9 +24388,9 @@
"zh-cht": "沒有檔案",
"xloc": [
"default-mobile.handlebars->9->455",
- "default.handlebars->29->1470",
- "default.handlebars->29->664",
- "default.handlebars->29->685"
+ "default.handlebars->29->1473",
+ "default.handlebars->29->667",
+ "default.handlebars->29->688"
]
},
{
@@ -24386,8 +24410,8 @@
"zh-chs": "无输入",
"zh-cht": "無輸入",
"xloc": [
- "default.handlebars->29->662",
- "default.handlebars->29->683"
+ "default.handlebars->29->665",
+ "default.handlebars->29->686"
]
},
{
@@ -24409,8 +24433,8 @@
"xloc": [
"default-mobile.handlebars->9->433",
"default-mobile.handlebars->9->456",
- "default.handlebars->29->1432",
- "default.handlebars->29->1471"
+ "default.handlebars->29->1435",
+ "default.handlebars->29->1474"
]
},
{
@@ -24490,7 +24514,7 @@
"zh-chs": "没有成员",
"zh-cht": "沒有成員",
"xloc": [
- "default.handlebars->29->1845"
+ "default.handlebars->29->1850"
]
},
{
@@ -24510,7 +24534,7 @@
"zh-chs": "没有新的设备组",
"zh-cht": "沒有新的裝置群",
"xloc": [
- "default.handlebars->29->1790"
+ "default.handlebars->29->1795"
]
},
{
@@ -24530,8 +24554,8 @@
"zh-chs": "没有政策",
"zh-cht": "沒有政策",
"xloc": [
- "default.handlebars->29->1337",
- "default.handlebars->29->1362"
+ "default.handlebars->29->1340",
+ "default.handlebars->29->1365"
]
},
{
@@ -24554,10 +24578,10 @@
"default-mobile.handlebars->9->106",
"default-mobile.handlebars->9->416",
"default-mobile.handlebars->9->463",
- "default.handlebars->29->1280",
- "default.handlebars->29->1478",
- "default.handlebars->29->678",
- "default.handlebars->29->699"
+ "default.handlebars->29->1283",
+ "default.handlebars->29->1481",
+ "default.handlebars->29->681",
+ "default.handlebars->29->702"
]
},
{
@@ -24579,7 +24603,7 @@
"xloc": [
"default-mobile.handlebars->9->283",
"default.handlebars->29->294",
- "default.handlebars->29->755"
+ "default.handlebars->29->758"
]
},
{
@@ -24600,9 +24624,9 @@
"zh-cht": "沒有終端",
"xloc": [
"default-mobile.handlebars->9->454",
- "default.handlebars->29->1469",
- "default.handlebars->29->663",
- "default.handlebars->29->684"
+ "default.handlebars->29->1472",
+ "default.handlebars->29->666",
+ "default.handlebars->29->687"
]
},
{
@@ -24623,7 +24647,7 @@
"zh-cht": "不能訪問終端",
"xloc": [
"default-mobile.handlebars->9->431",
- "default.handlebars->29->1430"
+ "default.handlebars->29->1433"
]
},
{
@@ -24643,7 +24667,7 @@
"zh-chs": "没有工具(MeshCmd /路由器)",
"zh-cht": "沒有工具(MeshCmd /路由器)",
"xloc": [
- "default.handlebars->29->1791"
+ "default.handlebars->29->1796"
]
},
{
@@ -24651,7 +24675,7 @@
"nl": "Er zijn momenteel geen acties beschikbaar voor dit apparaat.",
"xloc": [
"default-mobile.handlebars->9->276",
- "default.handlebars->29->739"
+ "default.handlebars->29->742"
]
},
{
@@ -24671,8 +24695,8 @@
"zh-chs": "没有共同的设备组",
"zh-cht": "沒有共同的裝置群",
"xloc": [
- "default.handlebars->29->1851",
- "default.handlebars->29->1969"
+ "default.handlebars->29->1856",
+ "default.handlebars->29->1974"
]
},
{
@@ -24792,8 +24816,8 @@
"zh-chs": "没有共同的设备",
"zh-cht": "沒有共同的裝置",
"xloc": [
- "default.handlebars->29->1857",
- "default.handlebars->29->1981"
+ "default.handlebars->29->1862",
+ "default.handlebars->29->1986"
]
},
{
@@ -24813,7 +24837,7 @@
"zh-chs": "该设备组中没有设备。",
"zh-cht": "該裝置群中沒有裝置。",
"xloc": [
- "default.handlebars->29->1521"
+ "default.handlebars->29->1524"
]
},
{
@@ -24896,7 +24920,7 @@
"zh-chs": "找不到群组。",
"zh-cht": "找不到群組。",
"xloc": [
- "default.handlebars->29->1794"
+ "default.handlebars->29->1799"
]
},
{
@@ -24917,7 +24941,7 @@
"zh-cht": "沒有此裝置的訊息。",
"xloc": [
"default-mobile.handlebars->9->404",
- "default.handlebars->29->990"
+ "default.handlebars->29->993"
]
},
{
@@ -24977,7 +25001,7 @@
"zh-chs": "没有其他相同类型的设备组。",
"zh-cht": "沒有其他相同類型的裝置群。",
"xloc": [
- "default.handlebars->29->772"
+ "default.handlebars->29->775"
]
},
{
@@ -25017,7 +25041,7 @@
"zh-chs": "没有录音。",
"zh-cht": "沒有錄音。",
"xloc": [
- "default.handlebars->29->1999"
+ "default.handlebars->29->2006"
]
},
{
@@ -25037,7 +25061,7 @@
"zh-chs": "没有服务器权限",
"zh-cht": "沒有伺服器權限",
"xloc": [
- "default.handlebars->29->1877"
+ "default.handlebars->29->1882"
]
},
{
@@ -25057,7 +25081,7 @@
"zh-chs": "没有用户组成员身份",
"zh-cht": "沒有用戶群成員身份",
"xloc": [
- "default.handlebars->29->1975"
+ "default.handlebars->29->1980"
]
},
{
@@ -25077,7 +25101,7 @@
"zh-chs": "未找到相应的用户。",
"zh-cht": "未找到相應的用戶。",
"xloc": [
- "default.handlebars->29->1698"
+ "default.handlebars->29->1703"
]
},
{
@@ -25167,25 +25191,25 @@
"default-mobile.handlebars->9->256",
"default-mobile.handlebars->9->309",
"default-mobile.handlebars->9->410",
- "default.handlebars->29->1301",
- "default.handlebars->29->1308",
- "default.handlebars->29->1316",
- "default.handlebars->29->1328",
- "default.handlebars->29->1333",
- "default.handlebars->29->1335",
- "default.handlebars->29->1512",
- "default.handlebars->29->1531",
- "default.handlebars->29->1536",
- "default.handlebars->29->1674",
+ "default.handlebars->29->1304",
+ "default.handlebars->29->1311",
+ "default.handlebars->29->1319",
+ "default.handlebars->29->1331",
+ "default.handlebars->29->1336",
+ "default.handlebars->29->1338",
+ "default.handlebars->29->1515",
+ "default.handlebars->29->1534",
+ "default.handlebars->29->1539",
+ "default.handlebars->29->1679",
"default.handlebars->29->177",
- "default.handlebars->29->1815",
- "default.handlebars->29->1817",
- "default.handlebars->29->1834",
- "default.handlebars->29->1896",
- "default.handlebars->29->1905",
- "default.handlebars->29->1909",
+ "default.handlebars->29->1820",
+ "default.handlebars->29->1822",
+ "default.handlebars->29->1839",
+ "default.handlebars->29->1901",
+ "default.handlebars->29->1910",
+ "default.handlebars->29->1914",
"default.handlebars->29->192",
- "default.handlebars->29->1921",
+ "default.handlebars->29->1926",
"default.handlebars->29->208",
"default.handlebars->29->209",
"default.handlebars->29->535",
@@ -25234,7 +25258,7 @@
"zh-chs": "挪威文",
"zh-cht": "挪威文",
"xloc": [
- "default.handlebars->29->1152"
+ "default.handlebars->29->1155"
]
},
{
@@ -25254,7 +25278,7 @@
"zh-chs": "挪威文(Bokmal)",
"zh-cht": "挪威文(Bokmal)",
"xloc": [
- "default.handlebars->29->1153"
+ "default.handlebars->29->1156"
]
},
{
@@ -25274,14 +25298,14 @@
"zh-chs": "挪威文(尼诺斯克)",
"zh-cht": "挪威文(尼諾斯克)",
"xloc": [
- "default.handlebars->29->1154"
+ "default.handlebars->29->1157"
]
},
{
"en": "Not Activated",
"nl": "Niet geactiveerd",
"xloc": [
- "default.handlebars->29->954"
+ "default.handlebars->29->957"
]
},
{
@@ -25345,8 +25369,8 @@
"zh-chs": "未连接",
"zh-cht": "未連接",
"xloc": [
- "default.handlebars->29->1508",
- "default.handlebars->29->1516"
+ "default.handlebars->29->1511",
+ "default.handlebars->29->1519"
]
},
{
@@ -25367,7 +25391,7 @@
"zh-cht": "未知",
"xloc": [
"default-mobile.handlebars->9->379",
- "default.handlebars->29->965"
+ "default.handlebars->29->968"
]
},
{
@@ -25387,7 +25411,7 @@
"zh-chs": "不在服务器上",
"zh-cht": "不在伺服器上",
"xloc": [
- "default.handlebars->29->2015"
+ "default.handlebars->29->2022"
]
},
{
@@ -25407,8 +25431,8 @@
"zh-chs": "没有设置",
"zh-cht": "沒有設置",
"xloc": [
- "default.handlebars->29->1883",
- "default.handlebars->29->1884"
+ "default.handlebars->29->1888",
+ "default.handlebars->29->1889"
]
},
{
@@ -25428,7 +25452,7 @@
"zh-chs": "未经审核的",
"zh-cht": "未經審核的",
"xloc": [
- "default.handlebars->29->1951"
+ "default.handlebars->29->1956"
]
},
{
@@ -25448,12 +25472,12 @@
"zh-chs": "笔记",
"zh-cht": "筆記",
"xloc": [
- "default.handlebars->29->1344",
- "default.handlebars->29->1929",
+ "default.handlebars->29->1347",
+ "default.handlebars->29->1934",
"default.handlebars->29->610",
- "default.handlebars->29->672",
- "default.handlebars->29->693",
- "default.handlebars->29->703"
+ "default.handlebars->29->675",
+ "default.handlebars->29->696",
+ "default.handlebars->29->706"
]
},
{
@@ -25493,8 +25517,8 @@
"zh-chs": "通知设置",
"zh-cht": "通知設定",
"xloc": [
- "default.handlebars->29->1241",
- "default.handlebars->29->1507",
+ "default.handlebars->29->1244",
+ "default.handlebars->29->1510",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
]
},
@@ -25515,7 +25539,7 @@
"zh-chs": "通知设置还必须在帐户设置中启用。",
"zh-cht": "通知設定還必須在帳戶設定中啟用。",
"xloc": [
- "default.handlebars->29->1503"
+ "default.handlebars->29->1506"
]
},
{
@@ -25535,7 +25559,7 @@
"zh-chs": "通知音效。",
"zh-cht": "通知音效。",
"xloc": [
- "default.handlebars->29->1236"
+ "default.handlebars->29->1239"
]
},
{
@@ -25555,7 +25579,7 @@
"zh-chs": "通知",
"zh-cht": "通知",
"xloc": [
- "default.handlebars->29->1334"
+ "default.handlebars->29->1337"
]
},
{
@@ -25576,7 +25600,7 @@
"zh-cht": "通知",
"xloc": [
"default.handlebars->29->189",
- "default.handlebars->29->1935"
+ "default.handlebars->29->1940"
]
},
{
@@ -25596,7 +25620,7 @@
"zh-chs": "仅通知",
"zh-cht": "只通知",
"xloc": [
- "default.handlebars->29->728"
+ "default.handlebars->29->731"
]
},
{
@@ -25616,9 +25640,9 @@
"zh-chs": "通知使用者",
"zh-cht": "通知使用者",
"xloc": [
- "default.handlebars->29->1397",
- "default.handlebars->29->1401",
- "default.handlebars->29->1404"
+ "default.handlebars->29->1400",
+ "default.handlebars->29->1404",
+ "default.handlebars->29->1407"
]
},
{
@@ -25638,7 +25662,7 @@
"zh-chs": "通知{0}",
"zh-cht": "通知{0}",
"xloc": [
- "default.handlebars->29->1737"
+ "default.handlebars->29->1742"
]
},
{
@@ -25660,7 +25684,7 @@
"xloc": [
"default-mobile.handlebars->9->83",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->29->1292",
+ "default.handlebars->29->1295",
"default.handlebars->29->581",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
@@ -25710,7 +25734,7 @@
"zh-chs": "欧舒丹",
"zh-cht": "歐舒丹",
"xloc": [
- "default.handlebars->29->1155"
+ "default.handlebars->29->1158"
]
},
{
@@ -25730,7 +25754,7 @@
"zh-chs": "发生在{0}",
"zh-cht": "發生在{0}",
"xloc": [
- "default.handlebars->29->2029"
+ "default.handlebars->29->2036"
]
},
{
@@ -25757,7 +25781,7 @@
"zh-chs": "离线用户",
"zh-cht": "離線用戶",
"xloc": [
- "default.handlebars->29->1695"
+ "default.handlebars->29->1700"
]
},
{
@@ -25785,7 +25809,7 @@
"zh-cht": "舊密碼:",
"xloc": [
"default-mobile.handlebars->9->85",
- "default.handlebars->29->1253"
+ "default.handlebars->29->1256"
]
},
{
@@ -25805,7 +25829,7 @@
"zh-chs": "一天",
"zh-cht": "一天",
"xloc": [
- "default.handlebars->29->1671"
+ "default.handlebars->29->1676"
]
},
{
@@ -25868,7 +25892,7 @@
"zh-chs": "在线用户",
"zh-cht": "在線用戶",
"xloc": [
- "default.handlebars->29->1694"
+ "default.handlebars->29->1699"
]
},
{
@@ -25890,7 +25914,7 @@
"xloc": [
"default-mobile.handlebars->9->319",
"default.handlebars->29->506",
- "default.handlebars->29->887"
+ "default.handlebars->29->890"
]
},
{
@@ -25951,7 +25975,7 @@
"zh-chs": "在设备上打开页面",
"zh-cht": "在裝置上打開頁面",
"xloc": [
- "default.handlebars->29->704"
+ "default.handlebars->29->707"
]
},
{
@@ -26052,7 +26076,7 @@
"zh-chs": "开头:{0}",
"zh-cht": "開場:{0}",
"xloc": [
- "default.handlebars->29->1585"
+ "default.handlebars->29->1588"
]
},
{
@@ -26076,8 +26100,8 @@
"default.handlebars->29->321",
"default.handlebars->29->354",
"default.handlebars->29->578",
- "default.handlebars->29->792",
- "default.handlebars->29->919"
+ "default.handlebars->29->795",
+ "default.handlebars->29->922"
]
},
{
@@ -26098,11 +26122,11 @@
"zh-cht": "操作",
"xloc": [
"default-mobile.handlebars->9->275",
- "default.handlebars->29->1721",
- "default.handlebars->29->1802",
+ "default.handlebars->29->1726",
+ "default.handlebars->29->1807",
"default.handlebars->29->446",
"default.handlebars->29->461",
- "default.handlebars->29->738"
+ "default.handlebars->29->741"
]
},
{
@@ -26139,7 +26163,7 @@
"zh-chs": "奥里亚",
"zh-cht": "奧里亞",
"xloc": [
- "default.handlebars->29->1156"
+ "default.handlebars->29->1159"
]
},
{
@@ -26159,7 +26183,7 @@
"zh-chs": "奥罗莫",
"zh-cht": "奧羅莫",
"xloc": [
- "default.handlebars->29->1157"
+ "default.handlebars->29->1160"
]
},
{
@@ -26241,7 +26265,7 @@
"zh-chs": "自己的过程",
"zh-cht": "自己的過程",
"xloc": [
- "default.handlebars->29->844"
+ "default.handlebars->29->847"
]
},
{
@@ -26262,7 +26286,7 @@
"zh-cht": "PID",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0",
- "default.handlebars->29->840",
+ "default.handlebars->29->843",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1"
]
},
@@ -26284,7 +26308,7 @@
"zh-cht": "零件號",
"xloc": [
"default-mobile.handlebars->9->397",
- "default.handlebars->29->983"
+ "default.handlebars->29->986"
]
},
{
@@ -26304,7 +26328,7 @@
"zh-chs": "部分的",
"zh-cht": "部分的",
"xloc": [
- "default.handlebars->29->1709"
+ "default.handlebars->29->1714"
]
},
{
@@ -26360,7 +26384,7 @@
"xloc": [
"default-mobile.handlebars->9->104",
"default-mobile.handlebars->9->414",
- "default.handlebars->29->1278"
+ "default.handlebars->29->1281"
]
},
{
@@ -26380,7 +26404,7 @@
"zh-chs": "部分权限",
"zh-cht": "部分權限",
"xloc": [
- "default.handlebars->29->1880"
+ "default.handlebars->29->1885"
]
},
{
@@ -26421,15 +26445,15 @@
"zh-cht": "密碼",
"xloc": [
"default-mobile.handlebars->9->281",
- "default.handlebars->29->1368",
- "default.handlebars->29->1765",
- "default.handlebars->29->1766",
- "default.handlebars->29->1901",
- "default.handlebars->29->1903",
- "default.handlebars->29->1954",
- "default.handlebars->29->1955",
+ "default.handlebars->29->1371",
+ "default.handlebars->29->1770",
+ "default.handlebars->29->1771",
+ "default.handlebars->29->1906",
+ "default.handlebars->29->1908",
+ "default.handlebars->29->1959",
+ "default.handlebars->29->1960",
"default.handlebars->29->292",
- "default.handlebars->29->753",
+ "default.handlebars->29->756",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1",
"mstsc.handlebars->main->1->3->1->6->1->0",
@@ -26570,7 +26594,7 @@
"zh-chs": "密码提示",
"zh-cht": "密碼提示",
"xloc": [
- "default.handlebars->29->1956"
+ "default.handlebars->29->1961"
]
},
{
@@ -26591,7 +26615,7 @@
"zh-cht": "密碼提示:",
"xloc": [
"default-mobile.handlebars->9->88",
- "default.handlebars->29->1256"
+ "default.handlebars->29->1259"
]
},
{
@@ -26670,8 +26694,8 @@
"account-invite.html->2->5",
"default-mobile.handlebars->9->80",
"default-mobile.handlebars->9->81",
- "default.handlebars->29->1248",
- "default.handlebars->29->1249",
+ "default.handlebars->29->1251",
+ "default.handlebars->29->1252",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1",
@@ -26709,9 +26733,9 @@
"default-mobile.handlebars->9->324",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
- "default.handlebars->29->1558",
- "default.handlebars->29->867",
- "default.handlebars->29->893",
+ "default.handlebars->29->1561",
+ "default.handlebars->29->870",
+ "default.handlebars->29->896",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -26774,7 +26798,7 @@
"zh-chs": "执行代理指令",
"zh-cht": "執行代理指令",
"xloc": [
- "default.handlebars->29->999"
+ "default.handlebars->29->1002"
]
},
{
@@ -26815,7 +26839,7 @@
"en": "Perform Intel® AMT activation and configuration.",
"nl": "Voer Intel® AMT-activering en configuratie uit.",
"xloc": [
- "default.handlebars->29->1348",
+ "default.handlebars->29->1351",
"default.handlebars->29->280"
]
},
@@ -26967,7 +26991,7 @@
"zh-chs": "执行电源操作= {0},强制执行= {1}",
"zh-cht": "執行電源操作= {0},強制執行= {1}",
"xloc": [
- "default.handlebars->29->1590"
+ "default.handlebars->29->1593"
]
},
{
@@ -26988,8 +27012,8 @@
"zh-cht": "權限",
"xloc": [
"default-mobile.handlebars->9->466",
- "default.handlebars->29->1481",
- "default.handlebars->29->1693"
+ "default.handlebars->29->1484",
+ "default.handlebars->29->1698"
]
},
{
@@ -27009,7 +27033,7 @@
"zh-chs": "波斯/伊朗",
"zh-cht": "波斯/伊朗",
"xloc": [
- "default.handlebars->29->1158"
+ "default.handlebars->29->1161"
]
},
{
@@ -27032,10 +27056,10 @@
"default-mobile.handlebars->9->62",
"default-mobile.handlebars->9->65",
"default-mobile.handlebars->9->67",
- "default.handlebars->29->1010",
"default.handlebars->29->1013",
+ "default.handlebars->29->1016",
"default.handlebars->29->159",
- "default.handlebars->29->1946"
+ "default.handlebars->29->1951"
]
},
{
@@ -27055,7 +27079,7 @@
"zh-chs": "电话号码",
"zh-cht": "電話號碼",
"xloc": [
- "default.handlebars->29->1895"
+ "default.handlebars->29->1900"
]
},
{
@@ -27076,8 +27100,8 @@
"zh-cht": "電話號碼:",
"xloc": [
"default-mobile.handlebars->9->66",
- "default.handlebars->29->1012",
- "default.handlebars->29->1945"
+ "default.handlebars->29->1015",
+ "default.handlebars->29->1950"
]
},
{
@@ -27216,7 +27240,7 @@
"zh-cht": "請等待幾分鐘以接收驗證。",
"xloc": [
"default-mobile.handlebars->9->76",
- "default.handlebars->29->1243"
+ "default.handlebars->29->1246"
]
},
{
@@ -27237,7 +27261,7 @@
"zh-cht": "外掛指令",
"xloc": [
"default.handlebars->29->199",
- "default.handlebars->29->2108"
+ "default.handlebars->29->2115"
]
},
{
@@ -27381,7 +27405,7 @@
"zh-cht": "政策",
"xloc": [
"default-mobile.handlebars->9->103",
- "default.handlebars->29->1277"
+ "default.handlebars->29->1280"
]
},
{
@@ -27401,7 +27425,7 @@
"zh-chs": "波兰文",
"zh-cht": "波蘭文",
"xloc": [
- "default.handlebars->29->1159"
+ "default.handlebars->29->1162"
]
},
{
@@ -27421,7 +27445,7 @@
"zh-chs": "葡萄牙文",
"zh-cht": "葡萄牙文",
"xloc": [
- "default.handlebars->29->1160"
+ "default.handlebars->29->1163"
]
},
{
@@ -27441,7 +27465,7 @@
"zh-chs": "葡萄牙文(巴西)",
"zh-cht": "葡萄牙文(巴西)",
"xloc": [
- "default.handlebars->29->1161"
+ "default.handlebars->29->1164"
]
},
{
@@ -27522,7 +27546,7 @@
"zh-chs": "电源状态",
"zh-cht": "電源狀態",
"xloc": [
- "default.handlebars->29->1514",
+ "default.handlebars->29->1517",
"default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
]
},
@@ -27546,7 +27570,7 @@
"default-mobile.handlebars->9->187",
"default-mobile.handlebars->9->274",
"default.handlebars->29->6",
- "default.handlebars->29->735"
+ "default.handlebars->29->738"
]
},
{
@@ -27596,7 +27620,7 @@
"en": "Pre-activation",
"nl": "Pre-activering",
"xloc": [
- "default.handlebars->29->955"
+ "default.handlebars->29->958"
]
},
{
@@ -27639,7 +27663,7 @@
"zh-chs": "存在于服务器上",
"zh-cht": "存在於伺服器上",
"xloc": [
- "default.handlebars->29->2014"
+ "default.handlebars->29->2021"
]
},
{
@@ -27743,7 +27767,7 @@
"zh-cht": "進程控制",
"xloc": [
"default-mobile.handlebars->9->301",
- "default.handlebars->29->854",
+ "default.handlebars->29->857",
"desktop.handlebars->3->25"
]
},
@@ -27785,7 +27809,7 @@
"zh-chs": "处理控制台命令:“{0}”",
"zh-cht": "處理控制台命令:“{0}”",
"xloc": [
- "default.handlebars->29->1582"
+ "default.handlebars->29->1585"
]
},
{
@@ -27825,7 +27849,7 @@
"zh-chs": "用户同意提示",
"zh-cht": "用戶同意提示",
"xloc": [
- "default.handlebars->29->727"
+ "default.handlebars->29->730"
]
},
{
@@ -27845,9 +27869,9 @@
"zh-chs": "用户同意提示",
"zh-cht": "用戶同意提示",
"xloc": [
- "default.handlebars->29->1398",
- "default.handlebars->29->1402",
- "default.handlebars->29->1405"
+ "default.handlebars->29->1401",
+ "default.handlebars->29->1405",
+ "default.handlebars->29->1408"
]
},
{
@@ -27867,7 +27891,7 @@
"zh-chs": "协议",
"zh-cht": "協議",
"xloc": [
- "default.handlebars->29->2012",
+ "default.handlebars->29->2019",
"player.handlebars->3->16"
]
},
@@ -27906,7 +27930,7 @@
"zh-cht": "配置狀態",
"xloc": [
"default-mobile.handlebars->9->373",
- "default.handlebars->29->959"
+ "default.handlebars->29->962"
]
},
{
@@ -27927,7 +27951,7 @@
"zh-cht": "公開鏈結",
"xloc": [
"default-mobile.handlebars->9->115",
- "default.handlebars->29->1543"
+ "default.handlebars->29->1546"
]
},
{
@@ -27947,7 +27971,7 @@
"zh-chs": "旁遮普文",
"zh-cht": "旁遮普文",
"xloc": [
- "default.handlebars->29->1162"
+ "default.handlebars->29->1165"
]
},
{
@@ -27967,7 +27991,7 @@
"zh-chs": "旁遮普(印度)",
"zh-cht": "旁遮普(印度)",
"xloc": [
- "default.handlebars->29->1163"
+ "default.handlebars->29->1166"
]
},
{
@@ -27987,7 +28011,7 @@
"zh-chs": "旁遮普(巴基斯坦)",
"zh-cht": "旁遮普(巴基斯坦)",
"xloc": [
- "default.handlebars->29->1164"
+ "default.handlebars->29->1167"
]
},
{
@@ -28049,7 +28073,7 @@
"zh-chs": "盖丘亚族",
"zh-cht": "蓋丘亞族",
"xloc": [
- "default.handlebars->29->1165"
+ "default.handlebars->29->1168"
]
},
{
@@ -28234,14 +28258,14 @@
"zh-chs": "RSS",
"zh-cht": "RSS",
"xloc": [
- "default.handlebars->29->2078"
+ "default.handlebars->29->2085"
]
},
{
"en": "Randomize password",
"nl": "Willekeurig wachtwoord",
"xloc": [
- "default.handlebars->29->1369"
+ "default.handlebars->29->1372"
]
},
{
@@ -28261,7 +28285,7 @@
"zh-chs": "随机密码。",
"zh-cht": "隨機密碼。",
"xloc": [
- "default.handlebars->29->1767"
+ "default.handlebars->29->1772"
]
},
{
@@ -28318,9 +28342,9 @@
"zh-chs": "真正的名字",
"zh-cht": "真正的名字",
"xloc": [
- "default.handlebars->29->1892",
- "default.handlebars->29->1894",
- "default.handlebars->29->1947"
+ "default.handlebars->29->1897",
+ "default.handlebars->29->1899",
+ "default.handlebars->29->1952"
]
},
{
@@ -28340,7 +28364,7 @@
"zh-chs": "境界",
"zh-cht": "境界",
"xloc": [
- "default.handlebars->29->1776"
+ "default.handlebars->29->1781"
]
},
{
@@ -28360,7 +28384,7 @@
"zh-chs": "收到无效的网络数据",
"zh-cht": "收到無效的網絡數據",
"xloc": [
- "default.handlebars->29->816",
+ "default.handlebars->29->819",
"desktop.handlebars->3->11"
]
},
@@ -28368,7 +28392,7 @@
"en": "Record Sessions",
"nl": "Sessies opnemen",
"xloc": [
- "default.handlebars->29->1315"
+ "default.handlebars->29->1318"
]
},
{
@@ -28395,7 +28419,7 @@
"en": "Record sessions",
"nl": "Sessies opnemen",
"xloc": [
- "default.handlebars->29->1408"
+ "default.handlebars->29->1411"
]
},
{
@@ -28415,7 +28439,7 @@
"zh-chs": "记录细节",
"zh-cht": "記錄細節",
"xloc": [
- "default.handlebars->29->2026"
+ "default.handlebars->29->2033"
]
},
{
@@ -28457,8 +28481,8 @@
"xloc": [
"default-mobile.handlebars->9->121",
"default-mobile.handlebars->9->312",
- "default.handlebars->29->1550",
- "default.handlebars->29->880"
+ "default.handlebars->29->1553",
+ "default.handlebars->29->883"
]
},
{
@@ -28577,7 +28601,7 @@
"zh-chs": "中继数量",
"zh-cht": "中繼數量",
"xloc": [
- "default.handlebars->29->2057"
+ "default.handlebars->29->2064"
]
},
{
@@ -28597,7 +28621,7 @@
"zh-chs": "中继错误",
"zh-cht": "中繼錯誤",
"xloc": [
- "default.handlebars->29->2050"
+ "default.handlebars->29->2057"
]
},
{
@@ -28617,8 +28641,8 @@
"zh-chs": "中继连接",
"zh-cht": "中繼連接",
"xloc": [
- "default.handlebars->29->2056",
- "default.handlebars->29->2072"
+ "default.handlebars->29->2063",
+ "default.handlebars->29->2079"
]
},
{
@@ -28755,7 +28779,7 @@
"zh-chs": "远程剪贴板",
"zh-cht": "遠程剪貼板",
"xloc": [
- "default.handlebars->29->835"
+ "default.handlebars->29->838"
]
},
{
@@ -28763,7 +28787,7 @@
"nl": "Externe opdrachten",
"xloc": [
"default-mobile.handlebars->9->441",
- "default.handlebars->29->1440"
+ "default.handlebars->29->1443"
]
},
{
@@ -28785,8 +28809,8 @@
"xloc": [
"default-mobile.handlebars->9->428",
"default-mobile.handlebars->9->448",
- "default.handlebars->29->1426",
- "default.handlebars->29->1462"
+ "default.handlebars->29->1429",
+ "default.handlebars->29->1465"
]
},
{
@@ -28829,8 +28853,8 @@
"zh-chs": "远程桌面连接栏已激活/更新",
"zh-cht": "遠程桌面連接欄已激活/更新",
"xloc": [
- "default.handlebars->29->1596",
- "default.handlebars->29->1602"
+ "default.handlebars->29->1599",
+ "default.handlebars->29->1605"
]
},
{
@@ -28850,7 +28874,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->29->1597"
+ "default.handlebars->29->1600"
]
},
{
@@ -28870,7 +28894,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->29->1603"
+ "default.handlebars->29->1606"
]
},
{
@@ -28890,9 +28914,9 @@
"zh-chs": "本地用户强行关闭了远程桌面连接",
"zh-cht": "本地用戶強行關閉了遠程桌面連接",
"xloc": [
- "default.handlebars->29->1594",
- "default.handlebars->29->1598",
- "default.handlebars->29->1604"
+ "default.handlebars->29->1597",
+ "default.handlebars->29->1601",
+ "default.handlebars->29->1607"
]
},
{
@@ -28934,7 +28958,7 @@
"xloc": [
"default-mobile.handlebars->9->297",
"default.handlebars->29->275",
- "default.handlebars->29->827",
+ "default.handlebars->29->830",
"desktop.handlebars->3->21"
]
},
@@ -28955,7 +28979,7 @@
"zh-chs": "远程键盘输入",
"zh-cht": "遠程鍵盤輸入",
"xloc": [
- "default.handlebars->29->833",
+ "default.handlebars->29->836",
"desktop.handlebars->3->23"
]
},
@@ -29015,8 +29039,8 @@
"xloc": [
"default-mobile.handlebars->9->429",
"default-mobile.handlebars->9->453",
- "default.handlebars->29->1427",
- "default.handlebars->29->1467"
+ "default.handlebars->29->1430",
+ "default.handlebars->29->1470"
]
},
{
@@ -29036,7 +29060,7 @@
"zh-chs": "远程剪贴板的有效期为60秒。",
"zh-cht": "遠程剪貼板的有效期為60秒。",
"xloc": [
- "default.handlebars->29->834"
+ "default.handlebars->29->837"
]
},
{
@@ -29097,7 +29121,7 @@
"zh-chs": "删除配置",
"zh-cht": "刪除配置",
"xloc": [
- "default.handlebars->29->1288"
+ "default.handlebars->29->1291"
]
},
{
@@ -29151,8 +29175,8 @@
"zh-chs": "删除设备组权限",
"zh-cht": "刪除裝置群權限",
"xloc": [
- "default.handlebars->29->1861",
- "default.handlebars->29->1995"
+ "default.handlebars->29->1866",
+ "default.handlebars->29->2002"
]
},
{
@@ -29172,8 +29196,14 @@
"zh-chs": "删除设备权限",
"zh-cht": "刪除裝置權限",
"xloc": [
- "default.handlebars->29->1859",
- "default.handlebars->29->1982"
+ "default.handlebars->29->1864",
+ "default.handlebars->29->1989"
+ ]
+ },
+ {
+ "en": "Remove Device Share",
+ "xloc": [
+ "default.handlebars->29->1987"
]
},
{
@@ -29210,7 +29240,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->29->1991"
+ "default.handlebars->29->1998"
]
},
{
@@ -29230,8 +29260,8 @@
"zh-chs": "删除用户组权限",
"zh-cht": "刪除用戶群權限",
"xloc": [
- "default.handlebars->29->1486",
- "default.handlebars->29->1987"
+ "default.handlebars->29->1489",
+ "default.handlebars->29->1994"
]
},
{
@@ -29251,7 +29281,7 @@
"zh-chs": "删除用户成员资格",
"zh-cht": "刪除用戶成員資格",
"xloc": [
- "default.handlebars->29->1869"
+ "default.handlebars->29->1874"
]
},
{
@@ -29271,8 +29301,8 @@
"zh-chs": "删除用户权限",
"zh-cht": "刪除用戶權限",
"xloc": [
- "default.handlebars->29->1484",
- "default.handlebars->29->1984"
+ "default.handlebars->29->1487",
+ "default.handlebars->29->1991"
]
},
{
@@ -29292,7 +29322,7 @@
"zh-chs": "删除所有两因素认证。",
"zh-cht": "刪除所有二因子鑑別。",
"xloc": [
- "default.handlebars->29->1959"
+ "default.handlebars->29->1964"
]
},
{
@@ -29312,7 +29342,7 @@
"zh-chs": "删除此用户标识的所有先前事件。",
"zh-cht": "刪除此用戶標識的所有先前事件。",
"xloc": [
- "default.handlebars->29->1768"
+ "default.handlebars->29->1773"
]
},
{
@@ -29332,7 +29362,13 @@
"zh-chs": "断开连接后移除设备",
"zh-cht": "斷開連接後删除裝置",
"xloc": [
- "default.handlebars->29->1406"
+ "default.handlebars->29->1409"
+ ]
+ },
+ {
+ "en": "Remove device sharing",
+ "xloc": [
+ "default.handlebars->29->663"
]
},
{
@@ -29373,7 +29409,7 @@
"zh-cht": "刪除電話號碼",
"xloc": [
"default-mobile.handlebars->9->64",
- "default.handlebars->29->1009"
+ "default.handlebars->29->1012"
]
},
{
@@ -29433,7 +29469,7 @@
"zh-chs": "删除此用户",
"zh-cht": "刪除此用戶",
"xloc": [
- "default.handlebars->29->1937"
+ "default.handlebars->29->1942"
]
},
{
@@ -29453,7 +29489,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->29->1973"
+ "default.handlebars->29->1978"
]
},
{
@@ -29473,7 +29509,7 @@
"zh-chs": "删除此设备的用户组权限",
"zh-cht": "刪除此裝置的用戶群權限",
"xloc": [
- "default.handlebars->29->1855"
+ "default.handlebars->29->1860"
]
},
{
@@ -29493,7 +29529,7 @@
"zh-chs": "删除此设备组的用户组权限",
"zh-cht": "刪除此裝置群的用戶群權限",
"xloc": [
- "default.handlebars->29->1849",
+ "default.handlebars->29->1854",
"default.handlebars->29->656"
]
},
@@ -29514,10 +29550,10 @@
"zh-chs": "删除此设备组的用户权限",
"zh-cht": "刪除此裝置群的用戶權限",
"xloc": [
- "default.handlebars->29->1357",
- "default.handlebars->29->1843",
- "default.handlebars->29->1967",
- "default.handlebars->29->1979",
+ "default.handlebars->29->1360",
+ "default.handlebars->29->1848",
+ "default.handlebars->29->1972",
+ "default.handlebars->29->1984",
"default.handlebars->29->657"
]
},
@@ -29538,7 +29574,13 @@
"zh-chs": "删除身份验证应用程序",
"zh-cht": "刪除身份驗證應用程序",
"xloc": [
- "default.handlebars->29->1656"
+ "default.handlebars->29->1659"
+ ]
+ },
+ {
+ "en": "Removed device share {0}",
+ "xloc": [
+ "default.handlebars->29->1670"
]
},
{
@@ -29558,7 +29600,7 @@
"zh-chs": "从设备组{1}中删除了设备{0}",
"zh-cht": "從設備組{1}中刪除了設備{0}",
"xloc": [
- "default.handlebars->29->1652"
+ "default.handlebars->29->1655"
]
},
{
@@ -29578,7 +29620,7 @@
"zh-chs": "已删除用户{0}的电话号码",
"zh-cht": "已刪除用戶{0}的電話號碼",
"xloc": [
- "default.handlebars->29->1662"
+ "default.handlebars->29->1665"
]
},
{
@@ -29598,7 +29640,7 @@
"zh-chs": "移除安全密钥",
"zh-cht": "移除安全密鑰",
"xloc": [
- "default.handlebars->29->1659"
+ "default.handlebars->29->1662"
]
},
{
@@ -29618,9 +29660,9 @@
"zh-chs": "删除了{0}的用户设备权限",
"zh-cht": "刪除了{0}的用戶設備權限",
"xloc": [
- "default.handlebars->29->1625",
- "default.handlebars->29->1646",
- "default.handlebars->29->1651"
+ "default.handlebars->29->1628",
+ "default.handlebars->29->1649",
+ "default.handlebars->29->1654"
]
},
{
@@ -29640,7 +29682,7 @@
"zh-chs": "从设备组{1}中删除了用户组{0}",
"zh-cht": "從設備組{1}中刪除了用戶組{0}",
"xloc": [
- "default.handlebars->29->1635"
+ "default.handlebars->29->1638"
]
},
{
@@ -29660,7 +29702,7 @@
"zh-chs": "从设备组{1}中删除了用户{0}",
"zh-cht": "已從設備組{1}中刪除用戶{0}",
"xloc": [
- "default.handlebars->29->1648"
+ "default.handlebars->29->1651"
]
},
{
@@ -29680,8 +29722,8 @@
"zh-chs": "从用户组{1}中删除了用户{0}",
"zh-cht": "從用戶組{1}中刪除了用戶{0}",
"xloc": [
- "default.handlebars->29->1627",
- "default.handlebars->29->1637"
+ "default.handlebars->29->1630",
+ "default.handlebars->29->1640"
]
},
{
@@ -29705,9 +29747,9 @@
"default-mobile.handlebars->9->316",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
- "default.handlebars->29->1554",
+ "default.handlebars->29->1557",
"default.handlebars->29->504",
- "default.handlebars->29->884",
+ "default.handlebars->29->887",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->filesContextMenu->1"
@@ -29730,7 +29772,7 @@
"zh-chs": "重命名:“{0}”为“{1}”",
"zh-cht": "重命名:“{0}”為“{1}”",
"xloc": [
- "default.handlebars->29->1613"
+ "default.handlebars->29->1616"
]
},
{
@@ -29750,7 +29792,7 @@
"zh-chs": "报告日",
"zh-cht": "報告日",
"xloc": [
- "default.handlebars->29->1672"
+ "default.handlebars->29->1677"
]
},
{
@@ -29770,7 +29812,7 @@
"zh-chs": "报告类型",
"zh-cht": "報告類型",
"xloc": [
- "default.handlebars->29->1667"
+ "default.handlebars->29->1672"
]
},
{
@@ -29790,7 +29832,7 @@
"zh-chs": "要求:",
"zh-cht": "要求:",
"xloc": [
- "default.handlebars->29->1257"
+ "default.handlebars->29->1260"
]
},
{
@@ -29811,8 +29853,21 @@
"zh-cht": "要求:{0}。",
"xloc": [
"default-mobile.handlebars->9->89",
- "default.handlebars->29->1773",
- "default.handlebars->29->1957"
+ "default.handlebars->29->1778",
+ "default.handlebars->29->1962"
+ ]
+ },
+ {
+ "en": "Requires installation of MeshCentral Router",
+ "xloc": [
+ "default.handlebars->29->630"
+ ]
+ },
+ {
+ "en": "Requires installation of MeshCentral Router.",
+ "xloc": [
+ "default.handlebars->29->632",
+ "default.handlebars->29->634"
]
},
{
@@ -29855,7 +29910,7 @@
"zh-cht": "重設",
"xloc": [
"default-mobile.handlebars->9->273",
- "default.handlebars->29->734",
+ "default.handlebars->29->737",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar"
]
},
@@ -29864,7 +29919,7 @@
"nl": "Reset / uitschakelen",
"xloc": [
"default-mobile.handlebars->9->442",
- "default.handlebars->29->1441"
+ "default.handlebars->29->1444"
]
},
{
@@ -29978,9 +30033,9 @@
"nl": "Reset/Uit",
"xloc": [
"default-mobile.handlebars->9->462",
- "default.handlebars->29->1477",
- "default.handlebars->29->677",
- "default.handlebars->29->698"
+ "default.handlebars->29->1480",
+ "default.handlebars->29->680",
+ "default.handlebars->29->701"
]
},
{
@@ -30000,7 +30055,7 @@
"zh-chs": "重新启动",
"zh-cht": "重新啟動",
"xloc": [
- "default.handlebars->29->850",
+ "default.handlebars->29->853",
"player.handlebars->p11->deskarea0->deskarea4->3"
]
},
@@ -30021,7 +30076,7 @@
"zh-chs": "还原服务器",
"zh-cht": "還原伺服器",
"xloc": [
- "default.handlebars->29->1293"
+ "default.handlebars->29->1296"
]
},
{
@@ -30061,7 +30116,7 @@
"zh-chs": "使用备份还原服务器,这将删除现有服务器数据 span>。仅当您知道自己在做什么时才这样做。",
"zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據 span>。僅當你知道自己在做什麼時才這樣做。",
"xloc": [
- "default.handlebars->29->1290"
+ "default.handlebars->29->1293"
]
},
{
@@ -30090,7 +30145,7 @@
"zh-chs": "限制条件",
"zh-cht": "限制條件",
"xloc": [
- "default.handlebars->29->1881"
+ "default.handlebars->29->1886"
]
},
{
@@ -30110,7 +30165,7 @@
"zh-chs": "雷托-罗曼语",
"zh-cht": "雷托-羅曼語",
"xloc": [
- "default.handlebars->29->1166"
+ "default.handlebars->29->1169"
]
},
{
@@ -30130,7 +30185,7 @@
"zh-chs": "罗马尼亚文",
"zh-cht": "羅馬尼亞文",
"xloc": [
- "default.handlebars->29->1167"
+ "default.handlebars->29->1170"
]
},
{
@@ -30150,7 +30205,7 @@
"zh-chs": "罗马尼亚文(摩尔达维亚)",
"zh-cht": "羅馬尼亞文(摩爾達維亞)",
"xloc": [
- "default.handlebars->29->1168"
+ "default.handlebars->29->1171"
]
},
{
@@ -30172,8 +30227,8 @@
"xloc": [
"default-mobile.handlebars->9->107",
"default-mobile.handlebars->9->306",
- "default.handlebars->29->1522",
- "default.handlebars->29->874"
+ "default.handlebars->29->1525",
+ "default.handlebars->29->877"
]
},
{
@@ -30311,8 +30366,8 @@
"zh-cht": "運行命令",
"xloc": [
"default.handlebars->29->459",
- "default.handlebars->29->732",
- "default.handlebars->29->748"
+ "default.handlebars->29->735",
+ "default.handlebars->29->751"
]
},
{
@@ -30332,7 +30387,7 @@
"zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。",
"zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。",
"xloc": [
- "default.handlebars->29->781"
+ "default.handlebars->29->784"
]
},
{
@@ -30340,7 +30395,7 @@
"nl": "Uitvoeren als agent",
"xloc": [
"default.handlebars->29->456",
- "default.handlebars->29->745"
+ "default.handlebars->29->748"
]
},
{
@@ -30348,7 +30403,7 @@
"nl": "Uitvoeren als gebruiker, agent als er geen gebruiker is",
"xloc": [
"default.handlebars->29->457",
- "default.handlebars->29->746"
+ "default.handlebars->29->749"
]
},
{
@@ -30389,7 +30444,7 @@
"zh-cht": "在所選裝置上運行命令。",
"xloc": [
"default.handlebars->29->452",
- "default.handlebars->29->741"
+ "default.handlebars->29->744"
]
},
{
@@ -30426,21 +30481,21 @@
"zh-chs": "运行命令",
"zh-cht": "運行命令",
"xloc": [
- "default.handlebars->29->1589"
+ "default.handlebars->29->1592"
]
},
{
"en": "Running commands as user",
"nl": "Commando's uitvoeren als gebruiker",
"xloc": [
- "default.handlebars->29->1664"
+ "default.handlebars->29->1667"
]
},
{
"en": "Running commands as user if possible",
"nl": "Indien mogelijk commando's uitvoeren als gebruiker",
"xloc": [
- "default.handlebars->29->1665"
+ "default.handlebars->29->1668"
]
},
{
@@ -30460,7 +30515,7 @@
"zh-chs": "俄文",
"zh-cht": "俄文",
"xloc": [
- "default.handlebars->29->1169"
+ "default.handlebars->29->1172"
]
},
{
@@ -30480,7 +30535,7 @@
"zh-chs": "俄文(摩尔达维亚)",
"zh-cht": "俄文(摩爾達維亞)",
"xloc": [
- "default.handlebars->29->1170"
+ "default.handlebars->29->1173"
]
},
{
@@ -30500,8 +30555,8 @@
"zh-chs": "短信",
"zh-cht": "短信",
"xloc": [
- "default.handlebars->29->1926",
"default.handlebars->29->1931",
+ "default.handlebars->29->1936",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -30526,7 +30581,7 @@
"zh-chs": "此用户的短信功能电话号码。",
"zh-cht": "此用戶的短信功能電話號碼。",
"xloc": [
- "default.handlebars->29->1943"
+ "default.handlebars->29->1948"
]
},
{
@@ -30588,7 +30643,7 @@
"zh-chs": "萨米(拉普兰)",
"zh-cht": "薩米(拉普蘭)",
"xloc": [
- "default.handlebars->29->1171"
+ "default.handlebars->29->1174"
]
},
{
@@ -30646,7 +30701,7 @@
"zh-chs": "三乡",
"zh-cht": "三鄉",
"xloc": [
- "default.handlebars->29->1172"
+ "default.handlebars->29->1175"
]
},
{
@@ -30666,7 +30721,7 @@
"zh-chs": "梵文",
"zh-cht": "梵文",
"xloc": [
- "default.handlebars->29->1173"
+ "default.handlebars->29->1176"
]
},
{
@@ -30686,7 +30741,7 @@
"zh-chs": "撒丁岛",
"zh-cht": "撒丁島",
"xloc": [
- "default.handlebars->29->1174"
+ "default.handlebars->29->1177"
]
},
{
@@ -31054,7 +31109,7 @@
"zh-cht": "已使用TLS保安",
"xloc": [
"default-mobile.handlebars->9->376",
- "default.handlebars->29->962"
+ "default.handlebars->29->965"
]
},
{
@@ -31076,10 +31131,10 @@
"xloc": [
"default-mobile.handlebars->9->282",
"default-mobile.handlebars->9->375",
- "default.handlebars->29->1927",
+ "default.handlebars->29->1932",
"default.handlebars->29->293",
- "default.handlebars->29->754",
- "default.handlebars->29->961"
+ "default.handlebars->29->757",
+ "default.handlebars->29->964"
]
},
{
@@ -31099,7 +31154,7 @@
"zh-chs": "安全密钥",
"zh-cht": "安全密鑰",
"xloc": [
- "default.handlebars->29->1924"
+ "default.handlebars->29->1929"
]
},
{
@@ -31139,12 +31194,12 @@
"zh-chs": "全选",
"zh-cht": "全選",
"xloc": [
- "default.handlebars->29->1546",
- "default.handlebars->29->1717",
- "default.handlebars->29->1800",
+ "default.handlebars->29->1549",
+ "default.handlebars->29->1722",
+ "default.handlebars->29->1805",
"default.handlebars->29->433",
- "default.handlebars->29->876",
- "default.handlebars->29->878",
+ "default.handlebars->29->879",
+ "default.handlebars->29->881",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -31170,11 +31225,11 @@
"zh-chs": "选择无",
"zh-cht": "選擇無",
"xloc": [
- "default.handlebars->29->1545",
- "default.handlebars->29->1716",
- "default.handlebars->29->1799",
+ "default.handlebars->29->1548",
+ "default.handlebars->29->1721",
+ "default.handlebars->29->1804",
"default.handlebars->29->432",
- "default.handlebars->29->877",
+ "default.handlebars->29->880",
"default.handlebars->meshContextMenu->cxselectnone"
]
},
@@ -31195,7 +31250,7 @@
"zh-chs": "为所选设备选择一个新组",
"zh-cht": "為所選裝置選擇一個新群",
"xloc": [
- "default.handlebars->29->768"
+ "default.handlebars->29->771"
]
},
{
@@ -31215,7 +31270,7 @@
"zh-chs": "选择此设备的新组",
"zh-cht": "選擇此裝置的新群",
"xloc": [
- "default.handlebars->29->767"
+ "default.handlebars->29->770"
]
},
{
@@ -31275,8 +31330,8 @@
"zh-chs": "选择要对所有选定用户执行的操作。",
"zh-cht": "選擇要對所有選定用戶執行的操作。",
"xloc": [
- "default.handlebars->29->1720",
- "default.handlebars->29->1801"
+ "default.handlebars->29->1725",
+ "default.handlebars->29->1806"
]
},
{
@@ -31297,14 +31352,14 @@
"zh-cht": "選擇要在此裝置上執行的操作。",
"xloc": [
"default-mobile.handlebars->9->270",
- "default.handlebars->29->730"
+ "default.handlebars->29->733"
]
},
{
"en": "Select new password",
"nl": "Selecteer nieuw wachtwoord",
"xloc": [
- "default.handlebars->29->1370"
+ "default.handlebars->29->1373"
]
},
{
@@ -31346,7 +31401,7 @@
"zh-cht": "僅自我事件",
"xloc": [
"default-mobile.handlebars->9->458",
- "default.handlebars->29->1473"
+ "default.handlebars->29->1476"
]
},
{
@@ -31389,7 +31444,7 @@
"zh-chs": "发电邮",
"zh-cht": "發電郵",
"xloc": [
- "default.handlebars->29->1731"
+ "default.handlebars->29->1736"
]
},
{
@@ -31410,7 +31465,7 @@
"zh-cht": "發送MQTT消息",
"xloc": [
"default.handlebars->29->434",
- "default.handlebars->29->736"
+ "default.handlebars->29->739"
]
},
{
@@ -31430,7 +31485,7 @@
"zh-chs": "发送MQTT消息",
"zh-cht": "發送MQTT消息",
"xloc": [
- "default.handlebars->29->760"
+ "default.handlebars->29->763"
]
},
{
@@ -31450,7 +31505,7 @@
"zh-chs": "发送短信",
"zh-cht": "發送簡訊",
"xloc": [
- "default.handlebars->29->1729"
+ "default.handlebars->29->1734"
]
},
{
@@ -31470,7 +31525,7 @@
"zh-chs": "发送短信给该用户",
"zh-cht": "發送短信給該用戶",
"xloc": [
- "default.handlebars->29->1932"
+ "default.handlebars->29->1937"
]
},
{
@@ -31490,7 +31545,7 @@
"zh-chs": "发送电邮给该用户",
"zh-cht": "發送電郵給該用戶",
"xloc": [
- "default.handlebars->29->1934"
+ "default.handlebars->29->1939"
]
},
{
@@ -31510,7 +31565,7 @@
"zh-chs": "向该组中的所有用户发送通知。",
"zh-cht": "向該群中的所有用戶發送通知。",
"xloc": [
- "default.handlebars->29->1840"
+ "default.handlebars->29->1845"
]
},
{
@@ -31530,7 +31585,7 @@
"zh-chs": "向该用户发送文本通知。",
"zh-cht": "向該用戶發送文本通知。",
"xloc": [
- "default.handlebars->29->1732"
+ "default.handlebars->29->1737"
]
},
{
@@ -31550,7 +31605,7 @@
"zh-chs": "发送电邮给用户",
"zh-cht": "發送電郵給用戶",
"xloc": [
- "default.handlebars->29->1712"
+ "default.handlebars->29->1717"
]
},
{
@@ -31590,7 +31645,7 @@
"zh-chs": "发送邀请电邮。",
"zh-cht": "發送邀請電郵。",
"xloc": [
- "default.handlebars->29->1772"
+ "default.handlebars->29->1777"
]
},
{
@@ -31712,7 +31767,7 @@
"zh-chs": "发送用户通知",
"zh-cht": "發送用戶通知",
"xloc": [
- "default.handlebars->29->1936"
+ "default.handlebars->29->1941"
]
},
{
@@ -31732,7 +31787,7 @@
"zh-chs": "塞尔维亚",
"zh-cht": "塞爾維亞",
"xloc": [
- "default.handlebars->29->1177"
+ "default.handlebars->29->1180"
]
},
{
@@ -31753,7 +31808,7 @@
"zh-cht": "序列號",
"xloc": [
"default-mobile.handlebars->9->387",
- "default.handlebars->29->973"
+ "default.handlebars->29->976"
]
},
{
@@ -31773,7 +31828,7 @@
"zh-chs": "服务器备份",
"zh-cht": "伺服器備份",
"xloc": [
- "default.handlebars->29->1782"
+ "default.handlebars->29->1787"
]
},
{
@@ -31793,7 +31848,7 @@
"zh-chs": "服务器证书",
"zh-cht": "伺服器憑證",
"xloc": [
- "default.handlebars->29->2088"
+ "default.handlebars->29->2095"
]
},
{
@@ -31813,7 +31868,7 @@
"zh-chs": "服务器数据库",
"zh-cht": "伺服器數據庫",
"xloc": [
- "default.handlebars->29->2089"
+ "default.handlebars->29->2096"
]
},
{
@@ -31835,11 +31890,11 @@
"xloc": [
"default-mobile.handlebars->9->435",
"default-mobile.handlebars->9->450",
- "default.handlebars->29->1434",
- "default.handlebars->29->1464",
- "default.handlebars->29->1779",
- "default.handlebars->29->670",
- "default.handlebars->29->691"
+ "default.handlebars->29->1437",
+ "default.handlebars->29->1467",
+ "default.handlebars->29->1784",
+ "default.handlebars->29->673",
+ "default.handlebars->29->694"
]
},
{
@@ -31859,8 +31914,8 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->29->1704",
- "default.handlebars->29->1793"
+ "default.handlebars->29->1709",
+ "default.handlebars->29->1798"
]
},
{
@@ -31880,7 +31935,7 @@
"zh-chs": "服务器配额",
"zh-cht": "伺服器配額",
"xloc": [
- "default.handlebars->29->1898"
+ "default.handlebars->29->1903"
]
},
{
@@ -31900,7 +31955,7 @@
"zh-chs": "服务器还原",
"zh-cht": "伺服器還原",
"xloc": [
- "default.handlebars->29->1783"
+ "default.handlebars->29->1788"
]
},
{
@@ -31920,7 +31975,7 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->29->1897"
+ "default.handlebars->29->1902"
]
},
{
@@ -31940,7 +31995,7 @@
"zh-chs": "服务器状态",
"zh-cht": "伺服器狀態",
"xloc": [
- "default.handlebars->29->2036"
+ "default.handlebars->29->2043"
]
},
{
@@ -31980,7 +32035,7 @@
"zh-chs": "服务器跟踪",
"zh-cht": "伺服器追蹤",
"xloc": [
- "default.handlebars->29->2099"
+ "default.handlebars->29->2106"
]
},
{
@@ -32000,7 +32055,7 @@
"zh-chs": "服务器更新",
"zh-cht": "伺服器更新",
"xloc": [
- "default.handlebars->29->1784"
+ "default.handlebars->29->1789"
]
},
{
@@ -32143,7 +32198,7 @@
"zh-chs": "ServerStats.csv",
"zh-cht": "ServerStats.csv",
"xloc": [
- "default.handlebars->29->2080"
+ "default.handlebars->29->2087"
]
},
{
@@ -32163,7 +32218,7 @@
"zh-chs": "服务详情",
"zh-cht": "服務詳情",
"xloc": [
- "default.handlebars->29->851"
+ "default.handlebars->29->854"
]
},
{
@@ -32203,7 +32258,7 @@
"zh-chs": "会话",
"zh-cht": "節",
"xloc": [
- "default.handlebars->29->2000"
+ "default.handlebars->29->2007"
]
},
{
@@ -32223,7 +32278,7 @@
"zh-chs": "会话信息",
"zh-cht": "會議訊息",
"xloc": [
- "default.handlebars->29->824",
+ "default.handlebars->29->827",
"desktop.handlebars->3->19"
]
},
@@ -32328,7 +32383,7 @@
"zh-chs": "设置剪贴板内容,{0}个字节",
"zh-cht": "設置剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->29->1587"
+ "default.handlebars->29->1590"
]
},
{
@@ -32397,7 +32452,7 @@
"en": "Setup",
"nl": "Setup",
"xloc": [
- "default.handlebars->29->1349",
+ "default.handlebars->29->1352",
"default.handlebars->29->281"
]
},
@@ -32452,7 +32507,7 @@
"zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。",
"zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。",
"xloc": [
- "default.handlebars->29->1281"
+ "default.handlebars->29->1284"
]
},
{
@@ -32519,7 +32574,7 @@
"zh-cht": "共享裝置",
"xloc": [
"default.handlebars->29->196",
- "default.handlebars->29->729"
+ "default.handlebars->29->732"
]
},
{
@@ -32559,7 +32614,7 @@
"zh-chs": "共享过程",
"zh-cht": "共享過程",
"xloc": [
- "default.handlebars->29->845"
+ "default.handlebars->29->848"
]
},
{
@@ -32711,7 +32766,7 @@
"zh-cht": "只顯示自己的事件",
"xloc": [
"default-mobile.handlebars->9->438",
- "default.handlebars->29->1437"
+ "default.handlebars->29->1440"
]
},
{
@@ -32731,7 +32786,7 @@
"zh-chs": "显示连接工具栏",
"zh-cht": "顯示連接工具欄",
"xloc": [
- "default.handlebars->29->1399"
+ "default.handlebars->29->1402"
]
},
{
@@ -32811,8 +32866,8 @@
"zh-chs": "显示1分钟",
"zh-cht": "顯示1分鐘",
"xloc": [
- "default.handlebars->29->1735",
- "default.handlebars->29->1758"
+ "default.handlebars->29->1740",
+ "default.handlebars->29->1763"
]
},
{
@@ -32832,8 +32887,8 @@
"zh-chs": "显示10秒",
"zh-cht": "顯示10秒",
"xloc": [
- "default.handlebars->29->1734",
- "default.handlebars->29->1757"
+ "default.handlebars->29->1739",
+ "default.handlebars->29->1762"
]
},
{
@@ -32853,8 +32908,8 @@
"zh-chs": "显示5分钟",
"zh-cht": "顯示5分鐘",
"xloc": [
- "default.handlebars->29->1736",
- "default.handlebars->29->1759"
+ "default.handlebars->29->1741",
+ "default.handlebars->29->1764"
]
},
{
@@ -32874,8 +32929,8 @@
"zh-chs": "显示消息,直到被用户拒绝",
"zh-cht": "顯示消息,直到被用戶拒絕",
"xloc": [
- "default.handlebars->29->1733",
- "default.handlebars->29->1756"
+ "default.handlebars->29->1738",
+ "default.handlebars->29->1761"
]
},
{
@@ -33069,8 +33124,8 @@
"zh-chs": "简单管理员控制模式(ACM)",
"zh-cht": "簡單管理員控制模式(ACM)",
"xloc": [
- "default.handlebars->29->1340",
- "default.handlebars->29->1360"
+ "default.handlebars->29->1343",
+ "default.handlebars->29->1363"
]
},
{
@@ -33090,8 +33145,8 @@
"zh-chs": "简单客户端控制模式(CCM)",
"zh-cht": "簡單客戶端控制模式(CCM)",
"xloc": [
- "default.handlebars->29->1338",
- "default.handlebars->29->1364"
+ "default.handlebars->29->1341",
+ "default.handlebars->29->1367"
]
},
{
@@ -33111,7 +33166,7 @@
"zh-chs": "信地",
"zh-cht": "信地",
"xloc": [
- "default.handlebars->29->1175"
+ "default.handlebars->29->1178"
]
},
{
@@ -33131,7 +33186,7 @@
"zh-chs": "僧伽罗文",
"zh-cht": "僧伽羅文",
"xloc": [
- "default.handlebars->29->1176"
+ "default.handlebars->29->1179"
]
},
{
@@ -33173,8 +33228,8 @@
"zh-chs": "尺寸",
"zh-cht": "尺寸",
"xloc": [
- "default.handlebars->29->2003",
- "default.handlebars->29->2018",
+ "default.handlebars->29->2010",
+ "default.handlebars->29->2025",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
]
},
@@ -33195,7 +33250,7 @@
"zh-chs": "缩放:100%",
"zh-cht": "縮放:100%",
"xloc": [
- "default.handlebars->29->905"
+ "default.handlebars->29->908"
]
},
{
@@ -33215,7 +33270,7 @@
"zh-chs": "缩放:125%",
"zh-cht": "縮放:125%",
"xloc": [
- "default.handlebars->29->906"
+ "default.handlebars->29->909"
]
},
{
@@ -33235,7 +33290,7 @@
"zh-chs": "缩放:150%",
"zh-cht": "縮放:150%",
"xloc": [
- "default.handlebars->29->907"
+ "default.handlebars->29->910"
]
},
{
@@ -33255,7 +33310,7 @@
"zh-chs": "缩放:200%",
"zh-cht": "縮放:200%",
"xloc": [
- "default.handlebars->29->908"
+ "default.handlebars->29->911"
]
},
{
@@ -33282,7 +33337,7 @@
"default.handlebars->29->2",
"default.handlebars->29->3",
"default.handlebars->29->4",
- "default.handlebars->29->733"
+ "default.handlebars->29->736"
]
},
{
@@ -33345,7 +33400,7 @@
"zh-chs": "斯洛伐克文",
"zh-cht": "斯洛伐克文",
"xloc": [
- "default.handlebars->29->1178"
+ "default.handlebars->29->1181"
]
},
{
@@ -33365,7 +33420,7 @@
"zh-chs": "斯洛文尼亞文",
"zh-cht": "斯洛文尼亞文",
"xloc": [
- "default.handlebars->29->1179"
+ "default.handlebars->29->1182"
]
},
{
@@ -33428,7 +33483,7 @@
"zh-chs": "小焦点",
"zh-cht": "小焦點",
"xloc": [
- "default.handlebars->29->830"
+ "default.handlebars->29->833"
]
},
{
@@ -33448,7 +33503,7 @@
"zh-chs": "软断开代理",
"zh-cht": "軟斷開代理",
"xloc": [
- "default.handlebars->29->1005"
+ "default.handlebars->29->1008"
]
},
{
@@ -33509,7 +33564,7 @@
"zh-chs": "索马尼",
"zh-cht": "索馬尼",
"xloc": [
- "default.handlebars->29->1180"
+ "default.handlebars->29->1183"
]
},
{
@@ -33529,7 +33584,7 @@
"zh-chs": "索比亚文",
"zh-cht": "索比亞文",
"xloc": [
- "default.handlebars->29->1181"
+ "default.handlebars->29->1184"
]
},
{
@@ -33680,7 +33735,7 @@
"zh-chs": "西班牙文",
"zh-cht": "西班牙文",
"xloc": [
- "default.handlebars->29->1182"
+ "default.handlebars->29->1185"
]
},
{
@@ -33700,7 +33755,7 @@
"zh-chs": "西班牙文(阿根廷)",
"zh-cht": "西班牙文(阿根廷)",
"xloc": [
- "default.handlebars->29->1183"
+ "default.handlebars->29->1186"
]
},
{
@@ -33720,7 +33775,7 @@
"zh-chs": "西班牙文(玻利维亚)",
"zh-cht": "西班牙文(玻利維亞)",
"xloc": [
- "default.handlebars->29->1184"
+ "default.handlebars->29->1187"
]
},
{
@@ -33740,7 +33795,7 @@
"zh-chs": "西班牙文(智利)",
"zh-cht": "西班牙文(智利)",
"xloc": [
- "default.handlebars->29->1185"
+ "default.handlebars->29->1188"
]
},
{
@@ -33760,7 +33815,7 @@
"zh-chs": "西班牙文(哥伦比亚)",
"zh-cht": "西班牙文(哥倫比亞)",
"xloc": [
- "default.handlebars->29->1186"
+ "default.handlebars->29->1189"
]
},
{
@@ -33780,7 +33835,7 @@
"zh-chs": "西班牙文(哥斯达黎加)",
"zh-cht": "西班牙文(哥斯達黎加)",
"xloc": [
- "default.handlebars->29->1187"
+ "default.handlebars->29->1190"
]
},
{
@@ -33800,7 +33855,7 @@
"zh-chs": "西班牙文(多米尼加共和国)",
"zh-cht": "西班牙文(多米尼加共和國)",
"xloc": [
- "default.handlebars->29->1188"
+ "default.handlebars->29->1191"
]
},
{
@@ -33820,7 +33875,7 @@
"zh-chs": "西班牙文(厄瓜多尔)",
"zh-cht": "西班牙文(厄瓜多爾)",
"xloc": [
- "default.handlebars->29->1189"
+ "default.handlebars->29->1192"
]
},
{
@@ -33840,7 +33895,7 @@
"zh-chs": "西班牙文(萨尔瓦多)",
"zh-cht": "西班牙文(薩爾瓦多)",
"xloc": [
- "default.handlebars->29->1190"
+ "default.handlebars->29->1193"
]
},
{
@@ -33860,7 +33915,7 @@
"zh-chs": "西班牙文(危地马拉)",
"zh-cht": "西班牙文(危地馬拉)",
"xloc": [
- "default.handlebars->29->1191"
+ "default.handlebars->29->1194"
]
},
{
@@ -33880,7 +33935,7 @@
"zh-chs": "西班牙文(洪都拉斯)",
"zh-cht": "西班牙文(洪都拉斯)",
"xloc": [
- "default.handlebars->29->1192"
+ "default.handlebars->29->1195"
]
},
{
@@ -33900,7 +33955,7 @@
"zh-chs": "西班牙文(墨西哥)",
"zh-cht": "西班牙文(墨西哥)",
"xloc": [
- "default.handlebars->29->1193"
+ "default.handlebars->29->1196"
]
},
{
@@ -33920,7 +33975,7 @@
"zh-chs": "西班牙文(尼加拉瓜)",
"zh-cht": "西班牙文(尼加拉瓜)",
"xloc": [
- "default.handlebars->29->1194"
+ "default.handlebars->29->1197"
]
},
{
@@ -33940,7 +33995,7 @@
"zh-chs": "西班牙文(巴拿马)",
"zh-cht": "西班牙文(巴拿馬)",
"xloc": [
- "default.handlebars->29->1195"
+ "default.handlebars->29->1198"
]
},
{
@@ -33960,7 +34015,7 @@
"zh-chs": "西班牙文(巴拉圭)",
"zh-cht": "西班牙文(巴拉圭)",
"xloc": [
- "default.handlebars->29->1196"
+ "default.handlebars->29->1199"
]
},
{
@@ -33980,7 +34035,7 @@
"zh-chs": "西班牙文(秘鲁)",
"zh-cht": "西班牙文(秘魯)",
"xloc": [
- "default.handlebars->29->1197"
+ "default.handlebars->29->1200"
]
},
{
@@ -34000,7 +34055,7 @@
"zh-chs": "西班牙文(波多黎各)",
"zh-cht": "西班牙文(波多黎各)",
"xloc": [
- "default.handlebars->29->1198"
+ "default.handlebars->29->1201"
]
},
{
@@ -34020,7 +34075,7 @@
"zh-chs": "西班牙文(西班牙)",
"zh-cht": "西班牙文(西班牙)",
"xloc": [
- "default.handlebars->29->1199"
+ "default.handlebars->29->1202"
]
},
{
@@ -34040,7 +34095,7 @@
"zh-chs": "西班牙文(乌拉圭)",
"zh-cht": "西班牙文(烏拉圭)",
"xloc": [
- "default.handlebars->29->1200"
+ "default.handlebars->29->1203"
]
},
{
@@ -34060,7 +34115,7 @@
"zh-chs": "西班牙文(委内瑞拉)",
"zh-cht": "西班牙文(委內瑞拉)",
"xloc": [
- "default.handlebars->29->1201"
+ "default.handlebars->29->1204"
]
},
{
@@ -34127,7 +34182,7 @@
"zh-chs": "开始",
"zh-cht": "開始",
"xloc": [
- "default.handlebars->29->848"
+ "default.handlebars->29->851"
]
},
{
@@ -34164,9 +34219,9 @@
"zh-chs": "开始时间",
"zh-cht": "開始時間",
"xloc": [
- "default.handlebars->29->2001",
- "default.handlebars->29->2020",
- "default.handlebars->29->820",
+ "default.handlebars->29->2008",
+ "default.handlebars->29->2027",
+ "default.handlebars->29->823",
"desktop.handlebars->3->15"
]
},
@@ -34194,7 +34249,7 @@
"zh-chs": "开始桌面多重会话",
"zh-cht": "啟動桌面多路復用會話",
"xloc": [
- "default.handlebars->29->1571"
+ "default.handlebars->29->1574"
]
},
{
@@ -34214,7 +34269,7 @@
"zh-chs": "从{1}到{2}开始了桌面会话“{0}”",
"zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
"xloc": [
- "default.handlebars->29->1580"
+ "default.handlebars->29->1583"
]
},
{
@@ -34234,7 +34289,7 @@
"zh-chs": "从{1}到{2}开始文件管理会话“{0}”",
"zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
"xloc": [
- "default.handlebars->29->1581"
+ "default.handlebars->29->1584"
]
},
{
@@ -34254,7 +34309,7 @@
"zh-chs": "从{1}到{2}开始中继会话“{0}”",
"zh-cht": "從{1}到{2}開始中繼會話“{0}”",
"xloc": [
- "default.handlebars->29->1578"
+ "default.handlebars->29->1581"
]
},
{
@@ -34274,7 +34329,7 @@
"zh-chs": "使用Toast通知启动远程桌面",
"zh-cht": "使用Toast通知啟動遠程桌面",
"xloc": [
- "default.handlebars->29->1600"
+ "default.handlebars->29->1603"
]
},
{
@@ -34294,7 +34349,7 @@
"zh-chs": "启动远程桌面,而无需通知",
"zh-cht": "啟動遠程桌面,而無需通知",
"xloc": [
- "default.handlebars->29->1601"
+ "default.handlebars->29->1604"
]
},
{
@@ -34314,7 +34369,7 @@
"zh-chs": "启动带有Toast通知的远程文件",
"zh-cht": "啟動帶有Toast通知的遠程文件",
"xloc": [
- "default.handlebars->29->1607"
+ "default.handlebars->29->1610"
]
},
{
@@ -34334,7 +34389,7 @@
"zh-chs": "已启动的远程文件,恕不另行通知",
"zh-cht": "已啟動的遠程文件,恕不另行通知",
"xloc": [
- "default.handlebars->29->1608"
+ "default.handlebars->29->1611"
]
},
{
@@ -34354,7 +34409,7 @@
"zh-chs": "从{1}到{2}开始了终端会话“{0}”",
"zh-cht": "從{1}到{2}開始了終端會話“{0}”",
"xloc": [
- "default.handlebars->29->1579"
+ "default.handlebars->29->1582"
]
},
{
@@ -34374,7 +34429,7 @@
"zh-chs": "接受本地用户后启动远程桌面",
"zh-cht": "接受本地用戶後啟動遠程桌面",
"xloc": [
- "default.handlebars->29->1595"
+ "default.handlebars->29->1598"
]
},
{
@@ -34394,7 +34449,7 @@
"zh-chs": "本地用户接受后启动远程文件",
"zh-cht": "本地用戶接受後啟動遠程文件",
"xloc": [
- "default.handlebars->29->1605"
+ "default.handlebars->29->1608"
]
},
{
@@ -34414,7 +34469,7 @@
"zh-chs": "状况",
"zh-cht": "狀態",
"xloc": [
- "default.handlebars->29->839",
+ "default.handlebars->29->842",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1"
]
},
@@ -34455,8 +34510,8 @@
"zh-chs": "状况",
"zh-cht": "狀態",
"xloc": [
- "default.handlebars->29->1950",
- "default.handlebars->29->2013",
+ "default.handlebars->29->1955",
+ "default.handlebars->29->2020",
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
]
},
@@ -34477,7 +34532,7 @@
"zh-chs": "停止",
"zh-cht": "停止",
"xloc": [
- "default.handlebars->29->849"
+ "default.handlebars->29->852"
]
},
{
@@ -34497,7 +34552,7 @@
"zh-chs": "停止进程",
"zh-cht": "停止進程",
"xloc": [
- "default.handlebars->29->836"
+ "default.handlebars->29->839"
]
},
{
@@ -34505,7 +34560,7 @@
"nl": "Stop proces #{0} \\\"{1}\\\"?",
"xloc": [
"default-mobile.handlebars->9->302",
- "default.handlebars->29->855",
+ "default.handlebars->29->858",
"desktop.handlebars->3->26"
]
},
@@ -34544,7 +34599,7 @@
"zh-cht": "儲存",
"xloc": [
"default-mobile.handlebars->9->403",
- "default.handlebars->29->989"
+ "default.handlebars->29->992"
]
},
{
@@ -34584,7 +34639,7 @@
"zh-chs": "超出储存空间",
"zh-cht": "超出儲存空間",
"xloc": [
- "default.handlebars->29->1526"
+ "default.handlebars->29->1529"
]
},
{
@@ -34604,7 +34659,7 @@
"zh-chs": "强",
"zh-cht": "強",
"xloc": [
- "default.handlebars->29->1274"
+ "default.handlebars->29->1277"
]
},
{
@@ -34649,7 +34704,7 @@
"zh-chs": "主题",
"zh-cht": "主題",
"xloc": [
- "default.handlebars->29->1730"
+ "default.handlebars->29->1735"
]
},
{
@@ -34749,7 +34804,7 @@
"zh-chs": "苏图",
"zh-cht": "蘇圖",
"xloc": [
- "default.handlebars->29->1202"
+ "default.handlebars->29->1205"
]
},
{
@@ -34769,7 +34824,7 @@
"zh-chs": "斯瓦希里文",
"zh-cht": "斯瓦希里文",
"xloc": [
- "default.handlebars->29->1203"
+ "default.handlebars->29->1206"
]
},
{
@@ -34796,7 +34851,7 @@
"zh-chs": "瑞典文",
"zh-cht": "瑞典文",
"xloc": [
- "default.handlebars->29->1204"
+ "default.handlebars->29->1207"
]
},
{
@@ -34816,7 +34871,7 @@
"zh-chs": "瑞典文(芬兰)",
"zh-cht": "瑞典文(芬蘭)",
"xloc": [
- "default.handlebars->29->1205"
+ "default.handlebars->29->1208"
]
},
{
@@ -34836,14 +34891,14 @@
"zh-chs": "瑞典文(瑞典)",
"zh-cht": "瑞典文(瑞典)",
"xloc": [
- "default.handlebars->29->1206"
+ "default.handlebars->29->1209"
]
},
{
"en": "Switch Intel AMT to Admin Control Mode (ACM).",
"nl": "Schakel Intel AMT over naar Admin Control Mode (ACM).",
"xloc": [
- "default.handlebars->29->1354"
+ "default.handlebars->29->1357"
]
},
{
@@ -34863,7 +34918,7 @@
"zh-chs": "将服务器设备名称同步到主机名称",
"zh-cht": "將伺服器裝置名稱同步到主機名稱",
"xloc": [
- "default.handlebars->29->1407"
+ "default.handlebars->29->1410"
]
},
{
@@ -35013,7 +35068,7 @@
"zh-cht": "未設置TLS",
"xloc": [
"default-mobile.handlebars->9->377",
- "default.handlebars->29->963"
+ "default.handlebars->29->966"
]
},
{
@@ -35035,7 +35090,7 @@
"xloc": [
"default-mobile.handlebars->9->284",
"default.handlebars->29->295",
- "default.handlebars->29->756"
+ "default.handlebars->29->759"
]
},
{
@@ -35076,7 +35131,7 @@
"zh-cht": "標籤1,標籤2,標籤3",
"xloc": [
"default.handlebars->29->466",
- "default.handlebars->29->810"
+ "default.handlebars->29->813"
]
},
{
@@ -35106,7 +35161,7 @@
"default-mobile.handlebars->9->258",
"default-mobile.handlebars->9->293",
"default.handlebars->29->465",
- "default.handlebars->29->809",
+ "default.handlebars->29->812",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7"
]
},
@@ -35127,7 +35182,7 @@
"zh-chs": "泰米尔文",
"zh-cht": "泰米爾文",
"xloc": [
- "default.handlebars->29->1207"
+ "default.handlebars->29->1210"
]
},
{
@@ -35147,7 +35202,7 @@
"zh-chs": "塔塔尔族",
"zh-cht": "塔塔爾族",
"xloc": [
- "default.handlebars->29->1208"
+ "default.handlebars->29->1211"
]
},
{
@@ -35167,7 +35222,7 @@
"zh-chs": "泰卢加",
"zh-cht": "泰盧加",
"xloc": [
- "default.handlebars->29->1209"
+ "default.handlebars->29->1212"
]
},
{
@@ -35188,8 +35243,8 @@
"zh-cht": "終端機",
"xloc": [
"default-mobile.handlebars->9->168",
- "default.handlebars->29->1400",
- "default.handlebars->29->2007",
+ "default.handlebars->29->1403",
+ "default.handlebars->29->2014",
"default.handlebars->29->255",
"default.handlebars->29->514",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
@@ -35233,9 +35288,9 @@
"zh-chs": "终端通知",
"zh-cht": "終端機通知",
"xloc": [
- "default.handlebars->29->1323",
- "default.handlebars->29->1829",
- "default.handlebars->29->1916",
+ "default.handlebars->29->1326",
+ "default.handlebars->29->1834",
+ "default.handlebars->29->1921",
"default.handlebars->29->589"
]
},
@@ -35256,9 +35311,9 @@
"zh-chs": "终端提示",
"zh-cht": "終端機提示",
"xloc": [
- "default.handlebars->29->1322",
- "default.handlebars->29->1828",
- "default.handlebars->29->1915",
+ "default.handlebars->29->1325",
+ "default.handlebars->29->1833",
+ "default.handlebars->29->1920",
"default.handlebars->29->588"
]
},
@@ -35327,7 +35382,7 @@
"zh-chs": "泰国",
"zh-cht": "泰國",
"xloc": [
- "default.handlebars->29->1210"
+ "default.handlebars->29->1213"
]
},
{
@@ -35429,7 +35484,7 @@
"zh-chs": "目前没有任何通知",
"zh-cht": "目前沒有任何通知",
"xloc": [
- "default.handlebars->29->2028"
+ "default.handlebars->29->2035"
]
},
{
@@ -35490,7 +35545,7 @@
"zh-cht": "此帳戶無權建立新的裝置群。",
"xloc": [
"default-mobile.handlebars->9->92",
- "default.handlebars->29->1260"
+ "default.handlebars->29->1263"
]
},
{
@@ -35571,7 +35626,7 @@
"en": "This is the recommanded policy. Intel® AMT activation and management is completely automated and the server will attempt to make best possible use of hardware management.",
"nl": "Dit is het aanbevolen beleid. Activering en beheer van Intel® AMT is volledig geautomatiseerd en de server zal proberen om optimaal gebruik te maken van hardwarebeheer.",
"xloc": [
- "default.handlebars->29->1385"
+ "default.handlebars->29->1388"
]
},
{
@@ -35612,7 +35667,7 @@
"zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。",
"zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。",
"xloc": [
- "default.handlebars->29->1382"
+ "default.handlebars->29->1385"
]
},
{
@@ -35695,7 +35750,7 @@
"zh-chs": "这会在此设备的事件日志中添加一个条目。",
"zh-cht": "這會在此裝置的事件日誌中增加一個記錄。",
"xloc": [
- "default.handlebars->29->701"
+ "default.handlebars->29->704"
]
},
{
@@ -35732,7 +35787,7 @@
"zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。",
"zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
"xloc": [
- "default.handlebars->29->763"
+ "default.handlebars->29->766"
]
},
{
@@ -35752,7 +35807,7 @@
"zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。",
"zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
"xloc": [
- "default.handlebars->29->764"
+ "default.handlebars->29->767"
]
},
{
@@ -35772,7 +35827,7 @@
"zh-chs": "蒂格雷",
"zh-cht": "蒂格雷",
"xloc": [
- "default.handlebars->29->1211"
+ "default.handlebars->29->1214"
]
},
{
@@ -35812,7 +35867,7 @@
"zh-chs": "时间跨度",
"zh-cht": "時間跨度",
"xloc": [
- "default.handlebars->29->1669"
+ "default.handlebars->29->1674"
]
},
{
@@ -35832,7 +35887,7 @@
"zh-chs": "超时",
"zh-cht": "超時",
"xloc": [
- "default.handlebars->29->815",
+ "default.handlebars->29->818",
"desktop.handlebars->3->10"
]
},
@@ -35984,7 +36039,7 @@
"zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。",
"zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。",
"xloc": [
- "default.handlebars->29->1247"
+ "default.handlebars->29->1250"
]
},
{
@@ -36460,7 +36515,7 @@
"zh-chs": "主题",
"zh-cht": "主題",
"xloc": [
- "default.handlebars->29->758"
+ "default.handlebars->29->761"
]
},
{
@@ -36560,7 +36615,7 @@
"zh-chs": "特松加",
"zh-cht": "特松加",
"xloc": [
- "default.handlebars->29->1212"
+ "default.handlebars->29->1215"
]
},
{
@@ -36580,7 +36635,7 @@
"zh-chs": "茨瓦纳",
"zh-cht": "茨瓦納",
"xloc": [
- "default.handlebars->29->1213"
+ "default.handlebars->29->1216"
]
},
{
@@ -36600,7 +36655,7 @@
"zh-chs": "土耳其",
"zh-cht": "土耳其",
"xloc": [
- "default.handlebars->29->1214"
+ "default.handlebars->29->1217"
]
},
{
@@ -36620,7 +36675,7 @@
"zh-chs": "土库曼文",
"zh-cht": "土庫曼文",
"xloc": [
- "default.handlebars->29->1215"
+ "default.handlebars->29->1218"
]
},
{
@@ -36662,10 +36717,10 @@
"xloc": [
"default-mobile.handlebars->9->411",
"default-mobile.handlebars->9->98",
- "default.handlebars->29->1267",
- "default.handlebars->29->1309",
- "default.handlebars->29->1361",
- "default.handlebars->29->846",
+ "default.handlebars->29->1270",
+ "default.handlebars->29->1312",
+ "default.handlebars->29->1364",
+ "default.handlebars->29->849",
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->3",
"desktop.handlebars->p11->deskarea0->deskarea4->3"
]
@@ -36687,7 +36742,7 @@
"zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。",
"zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。",
"xloc": [
- "default.handlebars->29->1024"
+ "default.handlebars->29->1027"
]
},
{
@@ -36707,7 +36762,7 @@
"zh-chs": "输入要添加的密钥的名称。",
"zh-cht": "輸入要新增的密鑰的名稱。",
"xloc": [
- "default.handlebars->29->1021"
+ "default.handlebars->29->1024"
]
},
{
@@ -36748,7 +36803,7 @@
"zh-chs": "UTF8终端",
"zh-cht": "UTF8終端",
"xloc": [
- "default.handlebars->29->859"
+ "default.handlebars->29->862"
]
},
{
@@ -36768,7 +36823,7 @@
"zh-chs": "乌克兰",
"zh-cht": "烏克蘭",
"xloc": [
- "default.handlebars->29->1216"
+ "default.handlebars->29->1219"
]
},
{
@@ -36788,7 +36843,7 @@
"zh-chs": "在验证电邮地址之前,无法访问设备。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电邮地址。",
"zh-cht": "在驗證電郵地址之前,無法訪問裝置。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電郵地址。",
"xloc": [
- "default.handlebars->29->1262",
+ "default.handlebars->29->1265",
"default.handlebars->29->530"
]
},
@@ -36851,7 +36906,7 @@
"zh-chs": "在启用两因素身份验证之前,无法访问设备。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。",
"zh-cht": "在啟用二因子身份驗證之前,無法訪問裝置。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
"xloc": [
- "default.handlebars->29->1264",
+ "default.handlebars->29->1267",
"default.handlebars->29->532"
]
},
@@ -36979,9 +37034,9 @@
"zh-cht": "卸載",
"xloc": [
"default-mobile.handlebars->9->460",
- "default.handlebars->29->1475",
- "default.handlebars->29->675",
- "default.handlebars->29->696"
+ "default.handlebars->29->1478",
+ "default.handlebars->29->678",
+ "default.handlebars->29->699"
]
},
{
@@ -37003,7 +37058,7 @@
"xloc": [
"default-mobile.handlebars->9->440",
"default.handlebars->29->436",
- "default.handlebars->29->737"
+ "default.handlebars->29->740"
]
},
{
@@ -37023,7 +37078,7 @@
"zh-chs": "卸载代理/删除设备",
"zh-cht": "卸載代理/刪除設備",
"xloc": [
- "default.handlebars->29->1439"
+ "default.handlebars->29->1442"
]
},
{
@@ -37043,7 +37098,7 @@
"zh-chs": "卸载代理",
"zh-cht": "卸載代理",
"xloc": [
- "default.handlebars->29->766"
+ "default.handlebars->29->769"
]
},
{
@@ -37073,16 +37128,16 @@
"default.handlebars->29->109",
"default.handlebars->29->111",
"default.handlebars->29->113",
- "default.handlebars->29->1296",
- "default.handlebars->29->1297",
+ "default.handlebars->29->1299",
"default.handlebars->29->13",
- "default.handlebars->29->1990",
- "default.handlebars->29->2005",
- "default.handlebars->29->2006",
+ "default.handlebars->29->1300",
+ "default.handlebars->29->1997",
+ "default.handlebars->29->2012",
+ "default.handlebars->29->2013",
"default.handlebars->29->42",
"default.handlebars->29->431",
- "default.handlebars->29->953",
- "default.handlebars->29->960"
+ "default.handlebars->29->956",
+ "default.handlebars->29->963"
]
},
{
@@ -37103,7 +37158,7 @@
"zh-cht": "未知#{0}",
"xloc": [
"default-mobile.handlebars->9->405",
- "default.handlebars->29->1303"
+ "default.handlebars->29->1306"
]
},
{
@@ -37123,7 +37178,7 @@
"zh-chs": "未知动作",
"zh-cht": "未知動作",
"xloc": [
- "default.handlebars->29->2042"
+ "default.handlebars->29->2049"
]
},
{
@@ -37143,8 +37198,8 @@
"zh-chs": "未知设备",
"zh-cht": "未知裝置",
"xloc": [
- "default.handlebars->29->1854",
- "default.handlebars->29->1978"
+ "default.handlebars->29->1859",
+ "default.handlebars->29->1983"
]
},
{
@@ -37164,9 +37219,9 @@
"zh-chs": "未知设备组",
"zh-cht": "未知裝置群",
"xloc": [
- "default.handlebars->29->1848",
- "default.handlebars->29->1966",
- "default.handlebars->29->2046"
+ "default.handlebars->29->1853",
+ "default.handlebars->29->1971",
+ "default.handlebars->29->2053"
]
},
{
@@ -37186,7 +37241,7 @@
"zh-chs": "未知群组",
"zh-cht": "未知群組",
"xloc": [
- "default.handlebars->29->2038"
+ "default.handlebars->29->2045"
]
},
{
@@ -37227,7 +37282,7 @@
"zh-chs": "未知用户组",
"zh-cht": "未知用戶群",
"xloc": [
- "default.handlebars->29->1972"
+ "default.handlebars->29->1977"
]
},
{
@@ -37255,7 +37310,7 @@
"en": "Unknown password",
"nl": "Onbekend wachtwoord",
"xloc": [
- "default.handlebars->29->1373"
+ "default.handlebars->29->1376"
]
},
{
@@ -37297,7 +37352,7 @@
"zh-chs": "解锁帐户",
"zh-cht": "解鎖帳戶",
"xloc": [
- "default.handlebars->29->1723"
+ "default.handlebars->29->1728"
]
},
{
@@ -37347,7 +37402,7 @@
"zh-chs": "最新",
"zh-cht": "最新",
"xloc": [
- "default.handlebars->29->2106"
+ "default.handlebars->29->2113"
]
},
{
@@ -37395,11 +37450,11 @@
"default-mobile.handlebars->9->317",
"default-mobile.handlebars->9->335",
"default-mobile.handlebars->9->338",
- "default.handlebars->29->1555",
- "default.handlebars->29->1563",
- "default.handlebars->29->885",
- "default.handlebars->29->909",
+ "default.handlebars->29->1558",
+ "default.handlebars->29->1566",
+ "default.handlebars->29->888",
"default.handlebars->29->912",
+ "default.handlebars->29->915",
"default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1"
]
},
@@ -37420,7 +37475,7 @@
"zh-chs": "上载网格代理核心",
"zh-cht": "上載mesh agent核心",
"xloc": [
- "default.handlebars->29->1007"
+ "default.handlebars->29->1010"
]
},
{
@@ -37440,7 +37495,7 @@
"zh-chs": "上载核心档案",
"zh-cht": "上載核心檔案",
"xloc": [
- "default.handlebars->29->1004"
+ "default.handlebars->29->1007"
]
},
{
@@ -37460,7 +37515,7 @@
"zh-chs": "上载默认服务器核心",
"zh-cht": "上載默認伺服器核心",
"xloc": [
- "default.handlebars->29->1001"
+ "default.handlebars->29->1004"
]
},
{
@@ -37500,7 +37555,7 @@
"zh-chs": "上传恢复核心",
"zh-cht": "上傳恢復核心",
"xloc": [
- "default.handlebars->29->1003"
+ "default.handlebars->29->1006"
]
},
{
@@ -37521,8 +37576,8 @@
"zh-cht": "上傳將覆蓋1個檔案。繼續?",
"xloc": [
"default-mobile.handlebars->9->336",
- "default.handlebars->29->1564",
- "default.handlebars->29->910"
+ "default.handlebars->29->1567",
+ "default.handlebars->29->913"
]
},
{
@@ -37543,8 +37598,8 @@
"zh-cht": "上傳將覆蓋{0}個檔案。繼續?",
"xloc": [
"default-mobile.handlebars->9->337",
- "default.handlebars->29->1565",
- "default.handlebars->29->911"
+ "default.handlebars->29->1568",
+ "default.handlebars->29->914"
]
},
{
@@ -37581,7 +37636,7 @@
"zh-chs": "上传:“{0}”",
"zh-cht": "上傳:“{0}”",
"xloc": [
- "default.handlebars->29->1615"
+ "default.handlebars->29->1618"
]
},
{
@@ -37601,7 +37656,7 @@
"zh-chs": "上索布族",
"zh-cht": "上索布族",
"xloc": [
- "default.handlebars->29->1217"
+ "default.handlebars->29->1220"
]
},
{
@@ -37621,7 +37676,7 @@
"zh-chs": "乌尔都文",
"zh-cht": "烏爾都文",
"xloc": [
- "default.handlebars->29->1218"
+ "default.handlebars->29->1221"
]
},
{
@@ -37685,8 +37740,8 @@
"zh-chs": "用过的",
"zh-cht": "用過的",
"xloc": [
- "default.handlebars->29->2032",
- "default.handlebars->29->2034"
+ "default.handlebars->29->2039",
+ "default.handlebars->29->2041"
]
},
{
@@ -37706,11 +37761,11 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->29->1358",
- "default.handlebars->29->1676",
- "default.handlebars->29->1705",
- "default.handlebars->29->1844",
- "default.handlebars->29->2025",
+ "default.handlebars->29->1361",
+ "default.handlebars->29->1681",
+ "default.handlebars->29->1710",
+ "default.handlebars->29->1849",
+ "default.handlebars->29->2032",
"default.handlebars->29->232",
"default.handlebars->29->659"
]
@@ -37732,7 +37787,7 @@
"zh-chs": "用户+档案",
"zh-cht": "用戶+檔案",
"xloc": [
- "default.handlebars->29->1706"
+ "default.handlebars->29->1711"
]
},
{
@@ -37752,10 +37807,10 @@
"zh-chs": "用户帐户导入",
"zh-cht": "用戶帳戶導入",
"xloc": [
- "default.handlebars->29->1739",
- "default.handlebars->29->1740",
- "default.handlebars->29->1742",
- "default.handlebars->29->1744"
+ "default.handlebars->29->1744",
+ "default.handlebars->29->1745",
+ "default.handlebars->29->1747",
+ "default.handlebars->29->1749"
]
},
{
@@ -37775,7 +37830,7 @@
"zh-chs": "用户帐户",
"zh-cht": "用戶帳戶",
"xloc": [
- "default.handlebars->29->2051"
+ "default.handlebars->29->2058"
]
},
{
@@ -37796,7 +37851,7 @@
"zh-cht": "用戶授權",
"xloc": [
"default-mobile.handlebars->9->413",
- "default.handlebars->29->1356",
+ "default.handlebars->29->1359",
"default.handlebars->29->655"
]
},
@@ -37817,12 +37872,12 @@
"zh-chs": "用户同意",
"zh-cht": "用戶同意",
"xloc": [
- "default.handlebars->29->1329",
- "default.handlebars->29->1835",
- "default.handlebars->29->1922",
+ "default.handlebars->29->1332",
+ "default.handlebars->29->1840",
+ "default.handlebars->29->1927",
"default.handlebars->29->193",
"default.handlebars->29->595",
- "default.handlebars->29->726"
+ "default.handlebars->29->729"
]
},
{
@@ -37842,11 +37897,11 @@
"zh-chs": "用户组",
"zh-cht": "用戶群",
"xloc": [
- "default.handlebars->29->1415",
- "default.handlebars->29->1416",
- "default.handlebars->29->1808",
- "default.handlebars->29->1974",
- "default.handlebars->29->1993",
+ "default.handlebars->29->1418",
+ "default.handlebars->29->1419",
+ "default.handlebars->29->1813",
+ "default.handlebars->29->1979",
+ "default.handlebars->29->2000",
"default.handlebars->29->658"
]
},
@@ -37887,7 +37942,7 @@
"zh-chs": "用户组成员",
"zh-cht": "用戶群成員",
"xloc": [
- "default.handlebars->29->1971"
+ "default.handlebars->29->1976"
]
},
{
@@ -37927,9 +37982,9 @@
"zh-chs": "用户识别码",
"zh-cht": "用戶識別碼",
"xloc": [
- "default.handlebars->29->1480",
- "default.handlebars->29->1889",
- "default.handlebars->29->1890"
+ "default.handlebars->29->1483",
+ "default.handlebars->29->1894",
+ "default.handlebars->29->1895"
]
},
{
@@ -37949,8 +38004,8 @@
"zh-chs": "用户标识符",
"zh-cht": "用戶標識符",
"xloc": [
- "default.handlebars->29->1413",
- "default.handlebars->29->1873"
+ "default.handlebars->29->1416",
+ "default.handlebars->29->1878"
]
},
{
@@ -37970,7 +38025,7 @@
"zh-chs": "用户列表输出",
"zh-cht": "用戶列表輸出",
"xloc": [
- "default.handlebars->29->1751"
+ "default.handlebars->29->1756"
]
},
{
@@ -37991,7 +38046,7 @@
"zh-cht": "用戶名",
"xloc": [
"default-mobile.handlebars->9->464",
- "default.handlebars->29->1479"
+ "default.handlebars->29->1482"
]
},
{
@@ -38066,7 +38121,7 @@
"zh-chs": "用户节",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->29->2071"
+ "default.handlebars->29->2078"
]
},
{
@@ -38149,7 +38204,7 @@
"zh-chs": "用户“{0}”",
"zh-cht": "用戶“{0}”",
"xloc": [
- "default.handlebars->29->823",
+ "default.handlebars->29->826",
"desktop.handlebars->3->18"
]
},
@@ -38170,8 +38225,8 @@
"zh-chs": "用户浏览器值",
"zh-cht": "用戶瀏覽器值",
"xloc": [
- "default.handlebars->29->1229",
- "default.handlebars->29->1231"
+ "default.handlebars->29->1232",
+ "default.handlebars->29->1234"
]
},
{
@@ -38191,7 +38246,7 @@
"zh-chs": "用户组已更改:{0}",
"zh-cht": "用戶組已更改:{0}",
"xloc": [
- "default.handlebars->29->1644"
+ "default.handlebars->29->1647"
]
},
{
@@ -38211,7 +38266,7 @@
"zh-chs": "已创建用户组:{0}",
"zh-cht": "已創建用戶組:{0}",
"xloc": [
- "default.handlebars->29->1634"
+ "default.handlebars->29->1637"
]
},
{
@@ -38231,7 +38286,7 @@
"zh-chs": "用户组成员身份已更改:{0}",
"zh-cht": "用戶組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->29->1632"
+ "default.handlebars->29->1635"
]
},
{
@@ -38297,9 +38352,9 @@
"zh-cht": "用戶名",
"xloc": [
"default-mobile.handlebars->9->280",
- "default.handlebars->29->1763",
+ "default.handlebars->29->1768",
"default.handlebars->29->290",
- "default.handlebars->29->752",
+ "default.handlebars->29->755",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1",
"mstsc.handlebars->main->1->3->1->4->1->0",
@@ -38371,9 +38426,9 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->29->1796",
- "default.handlebars->29->1836",
- "default.handlebars->29->2070",
+ "default.handlebars->29->1801",
+ "default.handlebars->29->1841",
+ "default.handlebars->29->2077",
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
]
},
@@ -38394,7 +38449,7 @@
"zh-chs": "用户会话",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->29->2055"
+ "default.handlebars->29->2062"
]
},
{
@@ -38414,7 +38469,7 @@
"zh-chs": "VT100 +(F10 = ESC + [OY)",
"zh-cht": "VT100 +(F10 = ESC + [OY)",
"xloc": [
- "default.handlebars->29->864"
+ "default.handlebars->29->867"
]
},
{
@@ -38434,7 +38489,7 @@
"zh-chs": "验证电邮",
"zh-cht": "驗證電郵",
"xloc": [
- "default.handlebars->29->1718"
+ "default.handlebars->29->1723"
]
},
{
@@ -38454,7 +38509,7 @@
"zh-chs": "文达",
"zh-cht": "文達",
"xloc": [
- "default.handlebars->29->1219"
+ "default.handlebars->29->1222"
]
},
{
@@ -38476,8 +38531,8 @@
"xloc": [
"default-mobile.handlebars->9->382",
"default-mobile.handlebars->9->385",
- "default.handlebars->29->968",
- "default.handlebars->29->971"
+ "default.handlebars->29->971",
+ "default.handlebars->29->974"
]
},
{
@@ -38518,7 +38573,7 @@
"zh-chs": "已验证",
"zh-cht": "已驗證",
"xloc": [
- "default.handlebars->29->1952"
+ "default.handlebars->29->1957"
]
},
{
@@ -38560,8 +38615,8 @@
"zh-cht": "驗證電話號碼",
"xloc": [
"default-mobile.handlebars->9->63",
- "default.handlebars->29->1008",
- "default.handlebars->29->1714"
+ "default.handlebars->29->1011",
+ "default.handlebars->29->1719"
]
},
{
@@ -38581,7 +38636,7 @@
"zh-chs": "用户{0}的已验证电话号码",
"zh-cht": "用戶{0}的已驗證電話號碼",
"xloc": [
- "default.handlebars->29->1661"
+ "default.handlebars->29->1664"
]
},
{
@@ -38646,10 +38701,10 @@
"default-mobile.handlebars->9->366",
"default-mobile.handlebars->9->383",
"default-mobile.handlebars->9->388",
- "default.handlebars->29->917",
- "default.handlebars->29->952",
- "default.handlebars->29->969",
- "default.handlebars->29->974",
+ "default.handlebars->29->920",
+ "default.handlebars->29->955",
+ "default.handlebars->29->972",
+ "default.handlebars->29->977",
"default.handlebars->container->column_l->p42->p42tbl->1->0->5"
]
},
@@ -38670,7 +38725,7 @@
"zh-chs": "版本不兼容,请先升级您的MeshCentral",
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
"xloc": [
- "default.handlebars->29->2102"
+ "default.handlebars->29->2109"
]
},
{
@@ -38712,7 +38767,7 @@
"zh-chs": "越南文",
"zh-cht": "越南文",
"xloc": [
- "default.handlebars->29->1220"
+ "default.handlebars->29->1223"
]
},
{
@@ -38752,7 +38807,7 @@
"zh-chs": "查看所有事件",
"zh-cht": "查看所有事件",
"xloc": [
- "default.handlebars->29->1788"
+ "default.handlebars->29->1793"
]
},
{
@@ -38772,8 +38827,8 @@
"zh-chs": "查看变更日志",
"zh-cht": "查看變更日誌",
"xloc": [
- "default.handlebars->29->2105",
- "default.handlebars->29->2107"
+ "default.handlebars->29->2112",
+ "default.handlebars->29->2114"
]
},
{
@@ -38813,7 +38868,7 @@
"zh-chs": "查看有关此设备组的注释",
"zh-cht": "查看有關此裝置群的註釋",
"xloc": [
- "default.handlebars->29->1345"
+ "default.handlebars->29->1348"
]
},
{
@@ -38833,7 +38888,7 @@
"zh-chs": "查看有关此用户的注释",
"zh-cht": "查看有關此用戶的註釋",
"xloc": [
- "default.handlebars->29->1930"
+ "default.handlebars->29->1935"
]
},
{
@@ -38853,7 +38908,7 @@
"zh-chs": "沃拉普克",
"zh-cht": "沃拉普克",
"xloc": [
- "default.handlebars->29->1221"
+ "default.handlebars->29->1224"
]
},
{
@@ -38913,7 +38968,7 @@
"zh-chs": "正在等待用户授予访问权限...",
"zh-cht": "正在等待用戶授予訪問權限...",
"xloc": [
- "default.handlebars->29->812",
+ "default.handlebars->29->815",
"desktop.handlebars->3->7"
]
},
@@ -38934,8 +38989,8 @@
"zh-chs": "唤醒",
"zh-cht": "喚醒",
"xloc": [
- "default.handlebars->29->671",
- "default.handlebars->29->692"
+ "default.handlebars->29->674",
+ "default.handlebars->29->695"
]
},
{
@@ -38957,8 +39012,8 @@
"xloc": [
"default-mobile.handlebars->9->436",
"default-mobile.handlebars->9->451",
- "default.handlebars->29->1435",
- "default.handlebars->29->1465"
+ "default.handlebars->29->1438",
+ "default.handlebars->29->1468"
]
},
{
@@ -38979,7 +39034,7 @@
"zh-cht": "喚醒",
"xloc": [
"default-mobile.handlebars->9->271",
- "default.handlebars->29->731"
+ "default.handlebars->29->734"
]
},
{
@@ -39019,7 +39074,7 @@
"zh-chs": "瓦隆",
"zh-cht": "瓦隆",
"xloc": [
- "default.handlebars->29->1222"
+ "default.handlebars->29->1225"
]
},
{
@@ -39039,7 +39094,7 @@
"zh-chs": "弱",
"zh-cht": "弱",
"xloc": [
- "default.handlebars->29->1276"
+ "default.handlebars->29->1279"
]
},
{
@@ -39084,8 +39139,8 @@
"zh-chs": "网络服务器",
"zh-cht": "網絡伺服器",
"xloc": [
- "default.handlebars->29->2091",
- "default.handlebars->29->2092"
+ "default.handlebars->29->2098",
+ "default.handlebars->29->2099"
]
},
{
@@ -39105,7 +39160,7 @@
"zh-chs": "Web服务器请求",
"zh-cht": "Web伺服器請求",
"xloc": [
- "default.handlebars->29->2093"
+ "default.handlebars->29->2100"
]
},
{
@@ -39125,7 +39180,7 @@
"zh-chs": "Web套接字中继",
"zh-cht": "Web插座中繼",
"xloc": [
- "default.handlebars->29->2094"
+ "default.handlebars->29->2101"
]
},
{
@@ -39207,7 +39262,7 @@
"zh-chs": "威尔士文",
"zh-cht": "威爾士文",
"xloc": [
- "default.handlebars->29->1223"
+ "default.handlebars->29->1226"
]
},
{
@@ -39227,7 +39282,7 @@
"zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:",
"zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->29->1488"
+ "default.handlebars->29->1491"
]
},
{
@@ -39248,14 +39303,14 @@
"zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。",
"xloc": [
"default-mobile.handlebars->9->69",
- "default.handlebars->29->1015"
+ "default.handlebars->29->1018"
]
},
{
"en": "When this policy is selected, Intel® AMT is not managed by this server. Intel AMT can still be used by manually activating and configuring it.",
"nl": "Als dit beleid is geselecteerd, wordt Intel® AMT niet beheerd door deze server. Intel AMT kan nog steeds worden gebruikt door het handmatig te activeren en te configureren.",
"xloc": [
- "default.handlebars->29->1383"
+ "default.handlebars->29->1386"
]
},
{
@@ -39266,7 +39321,7 @@
"en": "When this policy is selected, any Intel® AMT in Client Control Mode (CCM) will be deactivated. Other devices will have CIRA cleared and can still be managed manually.",
"nl": "Wanneer dit beleid is geselecteerd, wordt elke Intel® AMT in Client Control Mode (CCM) gedeactiveerd. Bij andere apparaten is CIRA gewist en kunnen ze nog steeds handmatig worden beheerd.",
"xloc": [
- "default.handlebars->29->1384"
+ "default.handlebars->29->1387"
]
},
{
@@ -39286,7 +39341,7 @@
"zh-chs": "下次登录时将更改。",
"zh-cht": "下次登入時將更改。",
"xloc": [
- "default.handlebars->29->1902"
+ "default.handlebars->29->1907"
]
},
{
@@ -39480,7 +39535,7 @@
"zh-chs": "Win32可执行档案",
"zh-cht": "Win32可執行檔案",
"xloc": [
- "default.handlebars->29->780"
+ "default.handlebars->29->783"
]
},
{
@@ -39561,7 +39616,7 @@
"zh-chs": "Windows(32位)",
"zh-cht": "Windows(32位)",
"xloc": [
- "default.handlebars->29->784"
+ "default.handlebars->29->787"
]
},
{
@@ -39581,7 +39636,7 @@
"zh-chs": "Windows(64位)",
"zh-cht": "Windows(64位)",
"xloc": [
- "default.handlebars->29->785"
+ "default.handlebars->29->788"
]
},
{
@@ -39746,7 +39801,7 @@
"zh-cht": "Windows命令提示",
"xloc": [
"default.handlebars->29->453",
- "default.handlebars->29->742"
+ "default.handlebars->29->745"
]
},
{
@@ -39809,7 +39864,7 @@
"zh-cht": "Windows PowerShell",
"xloc": [
"default.handlebars->29->454",
- "default.handlebars->29->743"
+ "default.handlebars->29->746"
]
},
{
@@ -39890,7 +39945,7 @@
"zh-chs": "换行:关",
"zh-cht": "换行:關",
"xloc": [
- "default.handlebars->29->904"
+ "default.handlebars->29->907"
]
},
{
@@ -39910,7 +39965,7 @@
"zh-chs": "换行:开",
"zh-cht": "换行:開",
"xloc": [
- "default.handlebars->29->903"
+ "default.handlebars->29->906"
]
},
{
@@ -40011,7 +40066,7 @@
"zh-chs": "科萨",
"zh-cht": "科薩",
"xloc": [
- "default.handlebars->29->1224"
+ "default.handlebars->29->1227"
]
},
{
@@ -40031,7 +40086,7 @@
"zh-chs": "意第绪文",
"zh-cht": "意第緒文",
"xloc": [
- "default.handlebars->29->1225"
+ "default.handlebars->29->1228"
]
},
{
@@ -40149,7 +40204,7 @@
"zh-chs": "YubiKey™ OTP",
"zh-cht": "YubiKey™OTP",
"xloc": [
- "default.handlebars->29->1027"
+ "default.handlebars->29->1030"
]
},
{
@@ -40189,7 +40244,7 @@
"zh-chs": "邮编档案名",
"zh-cht": "郵編檔案名",
"xloc": [
- "default.handlebars->29->888"
+ "default.handlebars->29->891"
]
},
{
@@ -40271,7 +40326,7 @@
"zh-chs": "祖鲁族",
"zh-cht": "祖魯族",
"xloc": [
- "default.handlebars->29->1226"
+ "default.handlebars->29->1229"
]
},
{
@@ -40539,7 +40594,7 @@
"zh-chs": "\\\\'",
"zh-cht": "\\\\'",
"xloc": [
- "default.handlebars->29->2103"
+ "default.handlebars->29->2110"
]
},
{
@@ -40765,7 +40820,7 @@
"zh-chs": "console.txt",
"zh-cht": "console.txt",
"xloc": [
- "default.handlebars->29->998"
+ "default.handlebars->29->1001"
]
},
{
@@ -40786,7 +40841,7 @@
"zh-cht": "複製",
"xloc": [
"default-mobile.handlebars->9->130",
- "default.handlebars->29->1560"
+ "default.handlebars->29->1563"
]
},
{
@@ -40885,8 +40940,8 @@
"zh-chs": "eventslist.csv",
"zh-cht": "eventslist.csv",
"xloc": [
- "default.handlebars->29->1683",
- "default.handlebars->29->1688"
+ "default.handlebars->29->1688",
+ "default.handlebars->29->1693"
]
},
{
@@ -40906,8 +40961,8 @@
"zh-chs": "eventslist.json",
"zh-cht": "eventslist.json",
"xloc": [
- "default.handlebars->29->1685",
- "default.handlebars->29->1689"
+ "default.handlebars->29->1690",
+ "default.handlebars->29->1694"
]
},
{
@@ -40947,8 +41002,8 @@
"zh-chs": "免费",
"zh-cht": "免費",
"xloc": [
- "default.handlebars->29->2063",
- "default.handlebars->29->2066"
+ "default.handlebars->29->2070",
+ "default.handlebars->29->2073"
]
},
{
@@ -41163,7 +41218,7 @@
"zh-chs": "id, name, email, creation, lastlogin, groups, authfactors",
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
"xloc": [
- "default.handlebars->29->1752"
+ "default.handlebars->29->1757"
]
},
{
@@ -41286,7 +41341,7 @@
"zh-chs": "k max,默认为空白",
"zh-cht": "k max,默認為空白",
"xloc": [
- "default.handlebars->29->1780"
+ "default.handlebars->29->1785"
]
},
{
@@ -41347,7 +41402,7 @@
"zh-chs": "macOS (64位)",
"zh-cht": "macOS(64位)",
"xloc": [
- "default.handlebars->29->788"
+ "default.handlebars->29->791"
]
},
{
@@ -41428,7 +41483,7 @@
"zh-cht": "移動",
"xloc": [
"default-mobile.handlebars->9->131",
- "default.handlebars->29->1561"
+ "default.handlebars->29->1564"
]
},
{
@@ -41525,7 +41580,7 @@
"zh-chs": "servererrors.txt",
"zh-cht": "servererrors.txt",
"xloc": [
- "default.handlebars->29->1300"
+ "default.handlebars->29->1303"
]
},
{
@@ -41545,7 +41600,7 @@
"zh-chs": "servertrace.csv",
"zh-cht": "servertrace.csv",
"xloc": [
- "default.handlebars->29->2101"
+ "default.handlebars->29->2108"
]
},
{
@@ -41611,7 +41666,7 @@
"zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
"zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
"xloc": [
- "default.handlebars->29->2079"
+ "default.handlebars->29->2086"
]
},
{
@@ -41631,7 +41686,7 @@
"zh-chs": "时间,来源,信息",
"zh-cht": "時間,來源,訊息",
"xloc": [
- "default.handlebars->29->2100"
+ "default.handlebars->29->2107"
]
},
{
@@ -41668,8 +41723,8 @@
"zh-chs": "总计",
"zh-cht": "總",
"xloc": [
- "default.handlebars->29->2064",
- "default.handlebars->29->2067"
+ "default.handlebars->29->2071",
+ "default.handlebars->29->2074"
]
},
{
@@ -41752,8 +41807,8 @@
"zh-chs": "userlist.csv",
"zh-cht": "userlist.csv",
"xloc": [
- "default.handlebars->29->1748",
- "default.handlebars->29->1753"
+ "default.handlebars->29->1753",
+ "default.handlebars->29->1758"
]
},
{
@@ -41773,8 +41828,8 @@
"zh-chs": "userlist.json",
"zh-cht": "userlist.json",
"xloc": [
- "default.handlebars->29->1750",
- "default.handlebars->29->1754"
+ "default.handlebars->29->1755",
+ "default.handlebars->29->1759"
]
},
{
@@ -41794,7 +41849,7 @@
"zh-chs": "utc,时间,类型,指令,用户,设备,消息",
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
"xloc": [
- "default.handlebars->29->1687"
+ "default.handlebars->29->1692"
]
},
{
@@ -41834,8 +41889,8 @@
"zh-chs": "{0} Gb",
"zh-cht": "{0} Gb",
"xloc": [
- "default.handlebars->29->1535",
- "default.handlebars->29->1540"
+ "default.handlebars->29->1538",
+ "default.handlebars->29->1543"
]
},
{
@@ -41855,9 +41910,9 @@
"zh-chs": "{0} Kb",
"zh-cht": "{0} Kb",
"xloc": [
- "default.handlebars->29->1533",
- "default.handlebars->29->1538",
- "default.handlebars->29->2004"
+ "default.handlebars->29->1536",
+ "default.handlebars->29->1541",
+ "default.handlebars->29->2011"
]
},
{
@@ -41879,10 +41934,10 @@
"xloc": [
"default-mobile.handlebars->9->396",
"default-mobile.handlebars->9->401",
- "default.handlebars->29->1534",
- "default.handlebars->29->1539",
- "default.handlebars->29->982",
- "default.handlebars->29->987"
+ "default.handlebars->29->1537",
+ "default.handlebars->29->1542",
+ "default.handlebars->29->985",
+ "default.handlebars->29->990"
]
},
{
@@ -41903,7 +41958,7 @@
"zh-cht": "{0} Mb,{1} Mhz",
"xloc": [
"default-mobile.handlebars->9->394",
- "default.handlebars->29->980"
+ "default.handlebars->29->983"
]
},
{
@@ -41923,7 +41978,7 @@
"zh-chs": "{0}个活跃会话",
"zh-cht": "{0}個活躍節",
"xloc": [
- "default.handlebars->29->1942"
+ "default.handlebars->29->1947"
]
},
{
@@ -41943,8 +41998,8 @@
"zh-chs": "{0} b",
"zh-cht": "{0} b",
"xloc": [
- "default.handlebars->29->1532",
- "default.handlebars->29->1537"
+ "default.handlebars->29->1535",
+ "default.handlebars->29->1540"
]
},
{
@@ -41965,8 +42020,8 @@
"zh-cht": "{0}個字節",
"xloc": [
"default-mobile.handlebars->9->119",
- "default.handlebars->29->1548",
- "default.handlebars->29->2019",
+ "default.handlebars->29->1551",
+ "default.handlebars->29->2026",
"download.handlebars->3->2",
"download2.handlebars->5->2"
]
@@ -41988,7 +42043,7 @@
"zh-chs": "剩余{0}个字节",
"zh-cht": "剩餘{0}個字節",
"xloc": [
- "default.handlebars->29->1527"
+ "default.handlebars->29->1530"
]
},
{
@@ -42008,7 +42063,7 @@
"zh-chs": "{0}个连接",
"zh-cht": "{0}個連接",
"xloc": [
- "default.handlebars->29->822",
+ "default.handlebars->29->825",
"desktop.handlebars->3->17"
]
},
@@ -42029,7 +42084,7 @@
"zh-chs": "剩余{0} GB",
"zh-cht": "剩餘{0} GB",
"xloc": [
- "default.handlebars->29->1530"
+ "default.handlebars->29->1533"
]
},
{
@@ -42049,7 +42104,7 @@
"zh-chs": "{0}个群组",
"zh-cht": "{0}個群組",
"xloc": [
- "default.handlebars->29->1907"
+ "default.handlebars->29->1912"
]
},
{
@@ -42106,7 +42161,7 @@
"zh-chs": "剩余{0}千字节",
"zh-cht": "剩餘{0}千字節",
"xloc": [
- "default.handlebars->29->1528"
+ "default.handlebars->29->1531"
]
},
{
@@ -42148,7 +42203,7 @@
"zh-chs": "剩余{0}兆字节",
"zh-cht": "剩餘{0}兆字節",
"xloc": [
- "default.handlebars->29->1529"
+ "default.handlebars->29->1532"
]
},
{
@@ -42188,7 +42243,7 @@
"zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
"xloc": [
- "default.handlebars->29->1697"
+ "default.handlebars->29->1702"
]
},
{
@@ -42352,7 +42407,7 @@
"default-mobile.handlebars->9->173",
"default-mobile.handlebars->9->176",
"default-mobile.handlebars->9->179",
- "default.handlebars->29->1701",
+ "default.handlebars->29->1706",
"default.handlebars->29->251",
"default.handlebars->29->254",
"default.handlebars->29->257",
@@ -42500,7 +42555,7 @@
"zh-chs": "{0}k在1档案内。最多{1}k",
"zh-cht": "{0}k在1檔案內。最多{1}k",
"xloc": [
- "default.handlebars->29->1542"
+ "default.handlebars->29->1545"
]
},
{
@@ -42520,7 +42575,7 @@
"zh-chs": "{1}k在{0}个档案中。最多{2}k",
"zh-cht": "{1}k在{0}個檔案中。最多{2}k",
"xloc": [
- "default.handlebars->29->1541"
+ "default.handlebars->29->1544"
]
},
{
diff --git a/views/default.handlebars b/views/default.handlebars
index 0f946d42..2936835d 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -1795,6 +1795,7 @@
powerTimelineReq = null;
powerTimelineNode = null;
powerTimelineUpdate = null;
+ deviceShares = null;
deleteAllNotifications(); // Close and clear notifications if present
hideContextMenu(); // Hide the context menu if present
QV('verifyEmailId2', false);
@@ -2116,6 +2117,13 @@
if (currentNode._id == message.nodeid) { mainUpdate(256); }
break;
}
+ case 'deviceShares': {
+ if (message.nodeid != deviceSharesReq) break;
+ deviceSharesNode = message.nodeid;
+ deviceShares = message.deviceShares;
+ if (currentNode._id == message.nodeid) { gotoDevice(currentNode._id, xxcurrentView, true); }
+ break;
+ }
case 'getsysinfo': {
if (message.nodeid != powerTimelineReq) break;
if (message.noinfo === true) {
@@ -2495,7 +2503,7 @@
}
case 'event': {
if (!message.event.nolog) {
- if (currentNode && (message.event.nodeid == currentNode._id)) {
+ if (currentNode && (message.event.nodeid == currentNode._id) && (currentDeviceEvents != null)) {
// If this event has a nodeid and we are looking at this node, update the log in real time.
currentDeviceEvents.unshift(message.event);
var eventLimit = parseInt(p16limitdropdown.value);
@@ -2520,6 +2528,13 @@
if (message.event.noact) break; // Take no action on this event
switch (message.event.action) {
+ case 'deviceShareUpdate': {
+ if (message.event.nodeid != deviceSharesReq) break;
+ deviceSharesNode = message.event.nodeid;
+ deviceShares = message.event.deviceShares;
+ if (currentNode._id == deviceSharesNode) { gotoDevice(currentNode._id, xxcurrentView, true); }
+ break;
+ }
case 'agentlog': {
if (message.event.msgid == 98) {
// This is a agent help request, popup a notification.
@@ -5525,6 +5540,11 @@
var powerTimelineReq = null;
var powerTimelineUpdate = null;
var powerTimeline = null;
+
+ var deviceSharesNode = null;
+ var deviceSharesReq = null;
+ var deviceShares = null;
+
function getCurrentNode() { return currentNode; };
function gotoDevice(nodeid, panel, refresh, event) {
// Remind the user to verify the email address
@@ -5881,6 +5901,12 @@
QH('p17info', '');
}
+ // Request device sharing
+ if ((deviceSharesNode != currentNode._id) && (deviceSharesReq != currentNode._id)) {
+ deviceSharesReq = currentNode._id;
+ meshserver.send({ action: 'deviceShares', nodeid: currentNode._id });
+ }
+
// Reset the desktop tools
QV('DeskTools', false);
showDeskToolsProcesses();
@@ -5957,8 +5983,23 @@
}
if (count == 1) { x += ' ' + "No users with special device permissions" + ' | |
'; }
x += '';
+
+ // Show device shares
+ if ((deviceShares != null) && (deviceSharesNode == currentNode._id) && (deviceShares.length > 0)) {
+ x += '
' + "Active Device Sharing" + ' | |
';
+ count = 1;
+ for (var i = 0; i < deviceShares.length; i++) {
+ var dshare = deviceShares[i];
+ var trash = ' ';
+ var details = printFlexDateTime(new Date(dshare.startTime)) + ' to ' + printFlexDateTime(new Date(dshare.expireTime));
+ if (dshare.consent) { if ((dshare.consent & 8) != 0) { details += ', Prompt for consent'; } }
+ x += ' | ' + trash + ' ' + details + ' |
';
+ }
+ x += '
';
+ }
QH('p10html4', x);
+
// Change the URL
var urlviewmode = '';
if (((features & 0x10000000) == 0) && (xxcurrentView >= 10) && (xxcurrentView <= 19) && (currentNode != null)) {
@@ -8415,7 +8456,12 @@
msg = EscapeHtml(event.msg).split('(R)').join('®');
} else {
msg = eventsMessageId[event.msgid];
- if (event.msgArgs != null) { for (var i in event.msgArgs) { msg = msg.split('{' + i + '}').join(event.msgArgs[i]); } }
+ for (var i in event.msgArgs) {
+ var xx = event.msgArgs[i];
+ if ((typeof xx == 'string') && (xx.indexOf('DATETIME:') == 0)) { xx = printFlexDateTime(new Date(parseInt(xx.substring(9)))); }
+ msg = msg.split('{' + i + '}').join(xx);
+ }
+ //if (event.msgArgs != null) { for (var i in event.msgArgs) { msg = msg.split('{' + i + '}').join(event.msgArgs[i]); } }
msg = EscapeHtml(msg).split('(R)').join('®');
}
if (event.username) {
@@ -10828,7 +10874,9 @@
97: "Removed phone number of user {0}",
98: "Help Requested, user: {0}, details: {1}",
99: "Running commands as user",
- 100: "Running commands as user if possible"
+ 100: "Running commands as user if possible",
+ 101: "Added device share {0} from {1} to {2}",
+ 102: "Removed device share {0}"
};
// Highlights the device being hovered
@@ -10861,7 +10909,13 @@
msg = EscapeHtml(event.msg).split('(R)').join('®');
} else {
msg = eventsMessageId[event.msgid];
- if (event.msgArgs != null) { for (var i in event.msgArgs) { msg = msg.split('{' + i + '}').join(event.msgArgs[i]); } }
+ if (event.msgArgs != null) {
+ for (var i in event.msgArgs) {
+ var xx = event.msgArgs[i];
+ if ((typeof xx == 'string') && (xx.indexOf('DATETIME:') == 0)) { xx = printFlexDateTime(new Date(parseInt(xx.substring(9)))); }
+ msg = msg.split('{' + i + '}').join(xx);
+ }
+ }
msg = EscapeHtml(msg).split('(R)').join('®');
}
if (event.nodeid) {
@@ -12357,6 +12411,11 @@
QH('p30html2', x);
}
+ function p30removeDeviceSharing(event, nodeid, publicid, guestname) {
+ if (xxdialogMode) return;
+ setDialogMode(2, "Remove Device Share", 3, function(b, tag) { meshserver.send({ action: 'removeDeviceShare', nodeid: tag[0], publicid: tag[1] }); }, format("Confirm removal of device share \"{0}\"?", decodeURIComponent(guestname)), [ decodeURIComponent(nodeid), decodeURIComponent(publicid) ]);
+ }
+
function p30removeNodeFromUser(event, nodeid) {
if (xxdialogMode) return;
var node = getNodeFromId(decodeURIComponent(nodeid));
@@ -12441,7 +12500,12 @@
msg = EscapeHtml(event.msg).split('(R)').join('®');
} else {
msg = eventsMessageId[event.msgid];
- if (event.msgArgs != null) { for (var i in event.msgArgs) { msg = msg.split('{' + i + '}').join(event.msgArgs[i]); } }
+ for (var i in event.msgArgs) {
+ var xx = event.msgArgs[i];
+ if ((typeof xx == 'string') && (xx.indexOf('DATETIME:') == 0)) { xx = printFlexDateTime(new Date(parseInt(xx.substring(9)))); }
+ msg = msg.split('{' + i + '}').join(xx);
+ }
+ //if (event.msgArgs != null) { for (var i in event.msgArgs) { msg = msg.split('{' + i + '}').join(event.msgArgs[i]); } }
msg = EscapeHtml(msg).split('(R)').join('®');
}
if (event.nodeid) {
@@ -13700,6 +13764,7 @@
function printDate(d) { return d.toLocaleDateString(args.locale); }
function printTime(d) { return d.toLocaleTimeString(args.locale); }
function printDateTime(d) { return d.toLocaleString(args.locale); }
+ function printFlexDateTime(d) { if (printDate(new Date()) == printDate(d)) { return printTime(d); } else { return printDateTime(d); } }
function addDetailItem(title, value, state) { return '' + nobreak(title) + ' | ' + value + ' |
'; }
function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };
function addTextLink(subtext, text, link) { var i = text.toLowerCase().indexOf(subtext.toLowerCase()); if (i == -1) { return text; } return text.substring(0, i) + '' + subtext + '' + text.substring(i + subtext.length); }
diff --git a/webserver.js b/webserver.js
index 4e8cf902..48634fa1 100644
--- a/webserver.js
+++ b/webserver.js
@@ -2922,17 +2922,30 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
// Check the inbound desktop sharing cookie
var c = obj.parent.decodeCookie(req.query.c, obj.parent.invitationLinkEncryptionKey, 60); // 60 minute timeout
- if ((c == null) || (c.a !== 5) || (typeof c.uid != 'string') || (typeof c.nid != 'string') || (typeof c.gn != 'string') || (typeof c.cf != 'number') || (typeof c.expire != 'number') || (c.expire <= Date.now())) { res.sendStatus(404); return; }
+ if ((c == null) || (c.a !== 5) || (typeof c.uid != 'string') || (typeof c.nid != 'string') || (typeof c.gn != 'string') || (typeof c.cf != 'number') || (typeof c.start != 'number') || (typeof c.expire != 'number') || (typeof c.pid != 'string') || (c.expire <= Date.now())) { res.sendStatus(404); return; }
- // Looks good, let's create the outbound session cookies.
- // Consent flags are 1 = Notify, 8 = Prompt, 64 = Privacy Bar.
- const authCookie = obj.parent.encodeCookie({ userid: c.uid, domainid: domain.id, nid: c.nid, ip: req.clientIp, gn: c.gn, cf: 65 | c.cf, r: 8, expire: c.expire }, obj.parent.loginCookieEncryptionKey);
+ // Check the start time
+ if ((c.start > Date.now()) || (c.start > c.expire)) { res.sendStatus(404); return; }
- // Lets respond by sending out the desktop viewer.
- var httpsPort = ((obj.args.aliasport == null) ? obj.args.port : obj.args.aliasport); // Use HTTPS alias port is specified
- parent.debug('web', 'handleDesktopRequest: Sending guest desktop page for \"' + c.uid + '\", guest \"' + c.gn + '\".');
- res.set({ 'Cache-Control': 'no-store' });
- render(req, res, getRenderPage('desktop', req, domain), getRenderArgs({ authCookie: authCookie, authRelayCookie: '', domainurl: encodeURIComponent(domain.url).replace(/'/g, '%27'), nodeid: c.nid, serverDnsName: obj.getWebServerName(domain), serverRedirPort: args.redirport, serverPublicPort: httpsPort, expire: c.expire }, req, domain));
+ // Check the public id
+ obj.db.GetAllTypeNodeFiltered([c.nid], domain.id, 'deviceshare', null, function (err, docs) {
+ if ((err != null) || (docs.length == 0)) { res.sendStatus(404); return; }
+
+ // Search for the device share public identifier
+ var found = false;
+ for (var i = 0; i < docs.length; i++) { if (docs[i].publicid == c.pid) { found = true; } }
+ if (found == false) { res.sendStatus(404); return; }
+
+ // Looks good, let's create the outbound session cookies.
+ // Consent flags are 1 = Notify, 8 = Prompt, 64 = Privacy Bar.
+ const authCookie = obj.parent.encodeCookie({ userid: c.uid, domainid: domain.id, nid: c.nid, ip: req.clientIp, gn: c.gn, cf: 65 | c.cf, r: 8, expire: c.expire, pid: c.pid }, obj.parent.loginCookieEncryptionKey);
+
+ // Lets respond by sending out the desktop viewer.
+ var httpsPort = ((obj.args.aliasport == null) ? obj.args.port : obj.args.aliasport); // Use HTTPS alias port is specified
+ parent.debug('web', 'handleDesktopRequest: Sending guest desktop page for \"' + c.uid + '\", guest \"' + c.gn + '\".');
+ res.set({ 'Cache-Control': 'no-store' });
+ render(req, res, getRenderPage('desktop', req, domain), getRenderArgs({ authCookie: authCookie, authRelayCookie: '', domainurl: encodeURIComponent(domain.url).replace(/'/g, '%27'), nodeid: c.nid, serverDnsName: obj.getWebServerName(domain), serverRedirPort: args.redirport, serverPublicPort: httpsPort, expire: c.expire }, req, domain));
+ });
}
// Handle domain redirection