From 8ce24152f4fbf6a55822cbb98a785c96fcf7bb40 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Fri, 16 Apr 2021 18:55:03 -0700 Subject: [PATCH] Completed login token support. --- meshuser.js | 102 +- public/scripts/agent-desktop-0.0.2-min.js | 2 +- translate/translate.json | 4422 +++++++++++---------- views/default-mobile.handlebars | 6 +- views/default.handlebars | 5 +- webserver.js | 27 + 6 files changed, 2396 insertions(+), 2168 deletions(-) diff --git a/meshuser.js b/meshuser.js index 582c3b4e..40f8565e 100644 --- a/meshuser.js +++ b/meshuser.js @@ -95,6 +95,13 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use const Wsman = require('./amt/amt-wsman.js'); const Amt = require('./amt/amt.js'); + // If this session has an expire time, setup a timer now. + if ((req.session != null) && (typeof req.session.expire == 'number')) { + var delta = (req.session.expire - Date.now()); + if (delta <= 0) { req.session = {}; try { ws.close(); } catch (ex) { } return; } // Session is already expired, close now. + obj.expireTimer = setTimeout(function () { for (var i in req.session) { delete req.session[i]; } obj.close(); }, delta); + } + // Send a message to the user //obj.send = function (data) { try { if (typeof data == 'string') { ws.send(Buffer.from(data, 'binary')); } else { ws.send(data); } } catch (e) { } } @@ -118,6 +125,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (obj.pingtimer) { clearInterval(obj.pingtimer); delete obj.pingtimer; } if (obj.pongtimer) { clearInterval(obj.pongtimer); delete obj.pongtimer; } + // Clear expire timeout + if (obj.expireTimer != null) { clearTimeout(obj.expireTimer); delete obj.expireTimer; } + // Perform cleanup parent.parent.RemoveAllEventDispatch(ws); if (obj.serverStatsTimer != null) { clearInterval(obj.serverStatsTimer); delete obj.serverStatsTimer; } @@ -340,6 +350,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Handle events ws.HandleEvent = function (source, event, ids, id) { + // If this session is logged in using a loginToken and the token is removed, disconnect. + if ((req.session.loginToken != null) && (typeof event == 'object') && (event.action == 'loginTokenChanged') && (event.removed != null) && (event.removed.indexOf(req.session.loginToken) >= 0)) { delete req.session; obj.close(); return; } + // Normally, only allow this user to receive messages from it's own domain. // If the user is a cross domain administrator, allow some select messages from different domains. if ((event.domain == null) || (event.domain == domain.id) || ((obj.crossDomain === true) && (allowedCrossDomainMessages.indexOf(event.action) >= 0))) { @@ -874,6 +887,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'serverconsole': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // This is a server console message, only process this if full administrator if (user.siteadmin != SITERIGHT_ADMIN) break; @@ -1573,6 +1589,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'changelang': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // If this account is settings locked, return here. if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; @@ -1599,6 +1618,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'changeemail': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // If the email is the username, this command is not allowed. if (domain.usernameisemail) return; @@ -1650,6 +1672,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'verifyemail': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // If this account is settings locked, return here. if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; @@ -1795,6 +1820,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use db.Remove('ntp' + deluser._id); // Remove personal notes for this user db.Remove('im' + deluser._id); // Remove image for this user + // Delete any login tokens + parent.parent.db.GetAllTypeNodeFiltered(['logintoken-' + deluser._id], domain.id, 'logintoken', null, function (err, docs) { + if ((err == null) && (docs != null)) { for (var i = 0; i < docs.length; i++) { parent.parent.db.Remove(docs[i]._id, function () { }); } } + }); + // Delete all files on the server for this account try { var deluserpath = parent.getServerRootFilePath(deluser); @@ -2209,6 +2239,8 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'updateUserImage': { + if (req.session.loginToken != null) break; // Do not allow this command when logged in using a login token + var uid = user._id; if ((typeof command.userid == 'string') && ((user.siteadmin & SITERIGHT_MANAGEUSERS) != 0)) { uid = command.userid; } @@ -2653,6 +2685,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'changepassword': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // If this account is settings locked, return here. if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; @@ -2878,6 +2913,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'serverversion': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Check the server version if ((user.siteadmin & 16) == 0) break; if ((domain.myserver === false) || ((domain.myserver != null) && (domain.myserver !== true) && (domain.myserver.upgrade !== true))) break; @@ -2887,6 +2925,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'serverupdate': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Perform server update if ((user.siteadmin & 16) == 0) break; if ((domain.myserver === false) || ((domain.myserver != null) && (domain.myserver !== true) && (domain.myserver.upgrade !== true))) break; @@ -4357,6 +4398,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpemail': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Check input @@ -4381,6 +4425,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-request': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Check if 2-step login is supported @@ -4400,6 +4447,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-setup': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Check if 2-step login is supported @@ -4430,6 +4480,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-clear': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Check if 2-step login is supported @@ -4455,6 +4508,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpauth-getpasswords': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Check if 2-step login is supported const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if (twoStepLoginSupported == false) break; @@ -4500,6 +4556,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otp-hkey-get': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Check if 2-step login is supported const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if (twoStepLoginSupported == false) break; @@ -4513,6 +4572,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otp-hkey-remove': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Check if 2-step login is supported @@ -4537,6 +4599,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otp-hkey-yubikey-add': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Yubico API id and signature key can be requested from https://upgrade.yubico.com/getapikey/ @@ -4592,6 +4657,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpdev-clear': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Remove the authentication push notification device if (user.otpdev != null) { // Change the user @@ -4609,6 +4677,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'otpdev-set': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Attempt to add a authentication push notification device // This will only send a push notification to the device, the device needs to confirm for the auth device to be added. if (common.validateString(command.nodeid, 1, 1024) == false) break; // Check nodeid @@ -4635,6 +4706,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'webauthn-startregister': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. // Check if 2-step login is supported @@ -4649,6 +4723,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use } case 'webauthn-endregister': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. const twoStepLoginSupported = ((parent.parent.config.settings.no2factorauth !== true) && (domain.auth != 'sspi') && (parent.parent.certificates.CommonName.indexOf('.') != -1) && (args.nousers !== true)); if ((twoStepLoginSupported == false) || (obj.webAuthnReqistrationRequest == null)) return; @@ -4689,6 +4766,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'verifyPhone': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. if (parent.parent.smsserver == null) return; if (common.validateString(command.phone, 1, 18) == false) break; // Check phone length @@ -4702,6 +4782,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'confirmPhone': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. if ((parent.parent.smsserver == null) || (typeof command.cookie != 'string') || (typeof command.code != 'string') || (obj.failedSmsCookieCheck == 1)) break; // Input checks var cookie = parent.parent.decodeCookie(command.cookie); @@ -4729,6 +4812,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'removePhone': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. if (user.phone == null) break; @@ -5381,6 +5467,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'serverBackup': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + if ((user.siteadmin != SITERIGHT_ADMIN) || (typeof parent.parent.config.settings.autobackup.googledrive != 'object')) return; if (command.service == 'googleDrive') { if (command.state == 0) { @@ -5403,6 +5492,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'twoFactorCookie': { + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + // Generate a two-factor cookie if (((domain.twofactorcookiedurationdays == null) || (domain.twofactorcookiedurationdays > 0))) { var maxCookieAge = domain.twofactorcookiedurationdays; @@ -5611,6 +5703,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'loginTokens': { // Respond with the list of currently valid login tokens + if (req.session.loginToken != null) break; // Do not allow this command when logged in using a login token if ((typeof domain.passwordrequirements != 'object') && (domain.passwordrequirements.logintokens == false)) break; // Login tokens are not supported on this server // If remove is an array or strings, we are going to be removing these and returning the results. @@ -5618,12 +5711,12 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use parent.db.GetAllTypeNodeFiltered(['logintoken-' + user._id], domain.id, 'logintoken', null, function (err, docs) { if (err != null) return; - var now = Date.now(), removed = 0, okDocs = []; + var now = Date.now(), removed = [], okDocs = []; for (var i = 0; i < docs.length; i++) { const doc = docs[i]; if (((doc.expire != 0) && (doc.expire < now)) || (doc.tokenUser == null) || ((command.remove != null) && (command.remove.indexOf(doc.tokenUser) >= 0))) { // This share is expired. - parent.db.Remove(doc._id, function () { }); removed++; + parent.db.Remove(doc._id, function () { }); removed.push(doc.tokenUser); } 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; delete doc.userid; delete doc.salt; delete doc.hash; @@ -5633,17 +5726,18 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use try { ws.send(JSON.stringify({ action: 'loginTokens', loginTokens: okDocs })); } catch (ex) { } // If any login tokens where removed, event the change. - if (removed > 0) { + if (removed.length > 0) { // Dispatch the new event var targets = ['*', 'server-users', user._id]; if (user.groups) { for (var i in user.groups) { targets.push('server-users:' + i); } } - var event = { etype: 'user', userid: user._id, username: user.name, action: 'loginTokenChanged', domain: domain.id, loginTokens: okDocs, nolog: 1 }; + var event = { etype: 'user', userid: user._id, username: user.name, action: 'loginTokenChanged', domain: domain.id, loginTokens: okDocs, removed: removed, nolog: 1 }; parent.parent.DispatchEvent(targets, obj, event); } }); break; } case 'createLoginToken': { // Create a new login token + if (req.session.loginToken != null) break; // Do not allow this command when logged in using a login token if ((typeof domain.passwordrequirements != 'object') && (domain.passwordrequirements.logintokens == false)) break; // Login tokens are not supported on this server if (common.validateString(command.name, 1, 100) == false) break; // Check name if ((typeof command.expire != 'number') || (command.expire < 0)) break; // Check expire diff --git a/public/scripts/agent-desktop-0.0.2-min.js b/public/scripts/agent-desktop-0.0.2-min.js index 2cbf2afe..da55fc33 100644 --- a/public/scripts/agent-desktop-0.0.2-min.js +++ b/public/scripts/agent-desktop-0.0.2-min.js @@ -1 +1 @@ -Uint8Array.prototype.slice||Object.defineProperty(Uint8Array.prototype,"slice",{value:function(e,t){return new Uint8Array(Array.prototype.slice.call(this,e,t))}});var CreateAgentRemoteDesktop=function(e,t){var d={};"string"==typeof(d.CanvasId=e)&&(d.CanvasId=Q(e)),d.Canvas=d.CanvasId.getContext("2d"),d.scrolldiv=t,d.State=0,d.PendingOperations=[],d.tilesReceived=0,d.TilesDrawn=0,d.KillDraw=0,d.ipad=!1,d.tabletKeyboardVisible=!1,d.LastX=0,d.LastY=0,d.touchenabled=0,d.submenuoffset=0,d.touchtimer=null,d.TouchArray={},d.connectmode=0,d.connectioncount=0,d.rotation=0,d.protocol=2,d.debugmode=0,d.firstUpKeys=[],d.stopInput=!1,d.localKeyMap=!0,d.remoteKeyMap=!1,d.pressedKeys=[],d.sessionid=0,d.username,d.oldie=!1,d.CompressionLevel=50,d.ScalingLevel=1024,d.FrameRateTimer=100,d.SwapMouse=!1,d.FirstDraw=!1,d.ScreenWidth=960,d.ScreenHeight=701,d.width=960,d.height=960,d.displays=null,d.selectedDisplay=null,d.onScreenSizeChange=null,d.onMessage=null,d.onConnectCountChanged=null,d.onDebugMessage=null,d.onTouchEnabledChanged=null,d.onDisplayinfo=null;var h=!(d.accumulator=null),g="default";d.mouseCursorActive=function(e){h!=e&&(h=e,d.CanvasId.style.cursor=1==e?g:"default")};var p=["default","progress","crosshair","pointer","help","text","no-drop","move","nesw-resize","ns-resize","nwse-resize","w-resize","alias","wait","none","not-allowed","col-resize","row-resize","copy","zoom-in","zoom-out"];d.Start=function(){d.State=0,d.accumulator=null},d.Stop=function(){d.setRotation(0),d.UnGrabKeyInput(),d.UnGrabMouseInput(),d.touchenabled=0,null!=d.onScreenSizeChange&&d.onScreenSizeChange(d,d.ScreenWidth,d.ScreenHeight,d.CanvasId),d.Canvas.clearRect(0,0,d.CanvasId.width,d.CanvasId.height)},d.xxStateChange=function(e){d.State!=e&&(d.State=e,d.CanvasId.style.cursor="default",0===e&&d.Stop())},d.send=function(e){2>32)+d.intToStr(32&o)):(d.recordedSize+=n.length,d.shortToStr(e)+d.shortToStr(t)+d.intToStr(n.length)+d.intToStr(o>>32)+d.intToStr(32&o)+n)}return d.SendKeyMsg=function(e,t){var n;null!=e&&((t=t||window.event).code&&0==d.localKeyMap?null!=(n=(n=t).code.startsWith("Key")&&4==n.code.length?n.code.charCodeAt(3):n.code.startsWith("Digit")&&6==n.code.length?n.code.charCodeAt(5):n.code.startsWith("Numpad")&&7==n.code.length?n.code.charCodeAt(6)+48:o[n.code])&&d.SendKeyMsgKC(e,n):(59==(n=t.keyCode)?n=186:173==n?n=189:61==n&&(n=187),d.SendKeyMsgKC(e,n)))},d.SendMessage=function(e){3==d.State&&d.send(String.fromCharCode(0,17)+d.shortToStr(4+e.length)+e)},d.SendKeyMsgKC=function(e,t){if(3==d.State)if("object"==typeof e)for(var n in e)d.SendKeyMsgKC(e[n][0],e[n][1]);else 1==e?-1==d.pressedKeys.indexOf(t)&&d.pressedKeys.unshift(t):2==e&&-1!=(n=d.pressedKeys.indexOf(t))&&d.pressedKeys.splice(n,1),0>8),255-(255&Math.abs(r))):(s=r>>8,255&r),String.fromCharCode(0,d.InputType.MOUSE,0,12,0,0,n/256&255,255&n,o/256&255,255&o,s,t)):String.fromCharCode(0,d.InputType.MOUSE,0,10,0,e==d.KeyAction.DOWN?a:2*a&255,n/256&255,255&n,o/256&255,255&o),d.Action==d.KeyAction.NONE?0==d.Alternate||d.ipad?(d.send(i),d.Alternate=1):d.Alternate=0:d.send(i)))},d.GetDisplayNumbers=function(){d.send(String.fromCharCode(0,11,0,4))},d.SetDisplay=function(e){d.send(String.fromCharCode(0,12,0,6,e>>8,255&e))},d.intToStr=function(e){return String.fromCharCode(e>>24&255,e>>16&255,e>>8&255,255&e)},d.shortToStr=function(e){return String.fromCharCode(e>>8&255,255&e)},d.onResize=function(){0!=d.ScreenWidth&&0!=d.ScreenHeight&&(d.Canvas.canvas.width==d.ScreenWidth&&d.Canvas.canvas.height==d.ScreenHeight||(d.FirstDraw&&(d.Canvas.canvas.width=d.ScreenWidth,d.Canvas.canvas.height=d.ScreenHeight,d.Canvas.fillRect(0,0,d.ScreenWidth,d.ScreenHeight),null!=d.onScreenSizeChange&&d.onScreenSizeChange(d,d.ScreenWidth,d.ScreenHeight,d.CanvasId)),d.FirstDraw=!1,1>32)+l.intToStr(32&o)):(l.recordedSize+=n.length,l.shortToStr(e)+l.shortToStr(t)+l.intToStr(n.length)+l.intToStr(o>>32)+l.intToStr(32&o)+n)}return l.SendKeyMsg=function(e,t){var n;null!=e&&((t=t||window.event).code&&0==l.localKeyMap?null!=(n=(n=t).code.startsWith("Key")&&4==n.code.length?n.code.charCodeAt(3):n.code.startsWith("Digit")&&6==n.code.length?n.code.charCodeAt(5):n.code.startsWith("Numpad")&&7==n.code.length?n.code.charCodeAt(6)+48:o[n.code])&&l.SendKeyMsgKC(e,n):(59==(n=t.keyCode)?n=186:173==n?n=189:61==n&&(n=187),l.SendKeyMsgKC(e,n)))},l.SendMessage=function(e){3==l.State&&l.send(String.fromCharCode(0,17)+l.shortToStr(4+e.length)+e)},l.SendKeyMsgKC=function(e,t){if(3==l.State)if("object"==typeof e)for(var n in e)l.SendKeyMsgKC(e[n][0],e[n][1]);else 1==e?-1==l.pressedKeys.indexOf(t)&&l.pressedKeys.unshift(t):2==e&&-1!=(n=l.pressedKeys.indexOf(t))&&l.pressedKeys.splice(n,1),0>8),255-(255&Math.abs(r))):(s=r>>8,255&r),String.fromCharCode(0,l.InputType.MOUSE,0,12,0,0,n/256&255,255&n,o/256&255,255&o,s,t)):String.fromCharCode(0,l.InputType.MOUSE,0,10,0,e==l.KeyAction.DOWN?a:2*a&255,n/256&255,255&n,o/256&255,255&o),l.Action==l.KeyAction.NONE?0==l.Alternate||l.ipad?(l.send(i),l.Alternate=1):l.Alternate=0:l.send(i)))},l.GetDisplayNumbers=function(){l.send(String.fromCharCode(0,11,0,4))},l.SetDisplay=function(e){l.send(String.fromCharCode(0,12,0,6,e>>8,255&e))},l.intToStr=function(e){return String.fromCharCode(e>>24&255,e>>16&255,e>>8&255,255&e)},l.shortToStr=function(e){return String.fromCharCode(e>>8&255,255&e)},l.onResize=function(){0!=l.ScreenWidth&&0!=l.ScreenHeight&&(l.Canvas.canvas.width==l.ScreenWidth&&l.Canvas.canvas.height==l.ScreenHeight||(l.FirstDraw&&(l.Canvas.canvas.width=l.ScreenWidth,l.Canvas.canvas.height=l.ScreenHeight,l.Canvas.fillRect(0,0,l.ScreenWidth,l.ScreenHeight),null!=l.onScreenSizeChange&&l.onScreenSizeChange(l,l.ScreenWidth,l.ScreenHeight,l.CanvasId)),l.FirstDraw=!1,131->1533", - "default.handlebars->31->1535" + "default.handlebars->31->1572", + "default.handlebars->31->1574" ] }, { @@ -204,7 +204,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->31->1446" + "default.handlebars->31->1475" ] }, { @@ -224,8 +224,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->31->1610", - "default.handlebars->31->2096" + "default.handlebars->31->1649", + "default.handlebars->31->2137" ] }, { @@ -374,8 +374,7 @@ "pt": "(", "ru": "(", "xloc": [ - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1", - "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1" ] }, { @@ -395,7 +394,7 @@ "zh-chs": "(可选的)", "zh-cht": "(可選的)", "xloc": [ - "default.handlebars->31->382" + "default.handlebars->31->391" ] }, { @@ -411,8 +410,7 @@ "pt": ")", "ru": ")", "xloc": [ - "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1", - "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1" + "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1" ] }, { @@ -432,8 +430,8 @@ "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。", "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "xloc": [ - "default.handlebars->31->1579", - "default.handlebars->31->348" + "default.handlebars->31->1618", + "default.handlebars->31->357" ] }, { @@ -453,7 +451,7 @@ "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。", "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。", "xloc": [ - "default.handlebars->31->422" + "default.handlebars->31->431" ] }, { @@ -508,7 +506,7 @@ "zh-cht": ",", "xloc": [ "default-mobile.handlebars->11->598", - "default.handlebars->31->1681" + "default.handlebars->31->1720" ] }, { @@ -529,7 +527,7 @@ "zh-cht": ",只適用於Intel®AMT", "xloc": [ "default-mobile.handlebars->11->178", - "default.handlebars->31->242" + "default.handlebars->31->251" ] }, { @@ -550,7 +548,7 @@ "zh-cht": ",MQTT在線", "xloc": [ "default-mobile.handlebars->11->515", - "default.handlebars->31->1176" + "default.handlebars->31->1185" ] }, { @@ -559,7 +557,7 @@ "nl": ", Geen toestemming", "de": ", keine Zustimmung", "xloc": [ - "default.handlebars->31->761" + "default.handlebars->31->770" ] }, { @@ -579,7 +577,7 @@ "zh-chs": ",提示同意", "zh-cht": ",提示同意", "xloc": [ - "default.handlebars->31->762" + "default.handlebars->31->771" ] }, { @@ -599,7 +597,7 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->31->958", + "default.handlebars->31->967", "desktop.handlebars->3->12", "sharing.handlebars->11->12" ] @@ -609,7 +607,7 @@ "fr": ", barre d'outils", "nl": ", Werkbalk", "xloc": [ - "default.handlebars->31->763" + "default.handlebars->31->772" ] }, { @@ -618,7 +616,7 @@ "fr": ", Visualisation seulement", "de": ", nur ansehen", "xloc": [ - "default.handlebars->31->760" + "default.handlebars->31->769" ] }, { @@ -641,9 +639,9 @@ "default-mobile.handlebars->11->353", "default-mobile.handlebars->11->385", "default-mobile.handlebars->11->389", - "default.handlebars->31->1027", - "default.handlebars->31->1039", - "default.handlebars->31->965", + "default.handlebars->31->1036", + "default.handlebars->31->1048", + "default.handlebars->31->974", "desktop.handlebars->3->19", "sharing.handlebars->11->19", "sharing.handlebars->11->27", @@ -770,7 +768,7 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->31->959", + "default.handlebars->31->968", "desktop.handlebars->3->13", "sharing.handlebars->11->13" ] @@ -788,6 +786,7 @@ "pt": "-", "ru": "-", "xloc": [ + "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1", "xterm.handlebars->p11->deskarea0->deskarea1->3" ] }, @@ -836,9 +835,9 @@ "xloc": [ "default-mobile.handlebars->11->131", "default-mobile.handlebars->11->391", - "default.handlebars->31->1045", - "default.handlebars->31->1733", - "default.handlebars->31->2265", + "default.handlebars->31->1054", + "default.handlebars->31->1772", + "default.handlebars->31->2306", "sharing.handlebars->11->50" ] }, @@ -896,7 +895,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->31->2169" + "default.handlebars->31->2210" ] }, { @@ -918,7 +917,7 @@ "xloc": [ "default-mobile.handlebars->11->141", "default-mobile.handlebars->11->641", - "default.handlebars->31->1757", + "default.handlebars->31->1796", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->96" @@ -941,7 +940,7 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->31->961", + "default.handlebars->31->970", "desktop.handlebars->3->15", "sharing.handlebars->11->15" ] @@ -964,8 +963,8 @@ "zh-cht": "1天", "xloc": [ "default.handlebars->31->196", - "default.handlebars->31->373", - "default.handlebars->31->387" + "default.handlebars->31->382", + "default.handlebars->31->396" ] }, { @@ -985,7 +984,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->31->2130" + "default.handlebars->31->2171" ] }, { @@ -1006,8 +1005,8 @@ "zh-cht": "1小時", "xloc": [ "default.handlebars->31->194", - "default.handlebars->31->371", - "default.handlebars->31->385" + "default.handlebars->31->380", + "default.handlebars->31->394" ] }, { @@ -1027,7 +1026,8 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->31->823" + "default.handlebars->31->1441", + "default.handlebars->31->832" ] }, { @@ -1068,8 +1068,8 @@ "zh-cht": "1個月", "xloc": [ "default.handlebars->31->198", - "default.handlebars->31->375", - "default.handlebars->31->389" + "default.handlebars->31->384", + "default.handlebars->31->398" ] }, { @@ -1089,7 +1089,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->31->1920" + "default.handlebars->31->1961" ] }, { @@ -1109,7 +1109,7 @@ "zh-chs": "1个节点", "zh-cht": "1個節點", "xloc": [ - "default.handlebars->31->446" + "default.handlebars->31->455" ] }, { @@ -1117,7 +1117,7 @@ "nl": "1 seconde", "xloc": [ "default-mobile.handlebars->11->307", - "default.handlebars->31->851" + "default.handlebars->31->860" ] }, { @@ -1163,13 +1163,13 @@ "default-mobile.handlebars->11->203", "default-mobile.handlebars->11->206", "default-mobile.handlebars->11->209", - "default.handlebars->31->1924", - "default.handlebars->31->292", - "default.handlebars->31->295", - "default.handlebars->31->298", + "default.handlebars->31->1965", "default.handlebars->31->301", "default.handlebars->31->304", - "default.handlebars->31->307" + "default.handlebars->31->307", + "default.handlebars->31->310", + "default.handlebars->31->313", + "default.handlebars->31->316" ] }, { @@ -1190,8 +1190,8 @@ "zh-cht": "1週", "xloc": [ "default.handlebars->31->197", - "default.handlebars->31->374", - "default.handlebars->31->388" + "default.handlebars->31->383", + "default.handlebars->31->397" ] }, { @@ -1295,7 +1295,8 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->31->825" + "default.handlebars->31->1443", + "default.handlebars->31->834" ] }, { @@ -1303,7 +1304,7 @@ "nl": "10 seconden", "xloc": [ "default-mobile.handlebars->11->309", - "default.handlebars->31->853" + "default.handlebars->31->862" ] }, { @@ -1388,7 +1389,8 @@ "zh-chs": "12小时", "zh-cht": "12小時", "xloc": [ - "default.handlebars->31->833" + "default.handlebars->31->1451", + "default.handlebars->31->842" ] }, { @@ -1431,7 +1433,8 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->31->826" + "default.handlebars->31->1444", + "default.handlebars->31->835" ] }, { @@ -1451,7 +1454,8 @@ "zh-chs": "16小时", "zh-cht": "16小時", "xloc": [ - "default.handlebars->31->834" + "default.handlebars->31->1452", + "default.handlebars->31->843" ] }, { @@ -1471,7 +1475,8 @@ "zh-chs": "2天", "zh-cht": "2天", "xloc": [ - "default.handlebars->31->836" + "default.handlebars->31->1454", + "default.handlebars->31->845" ] }, { @@ -1491,7 +1496,8 @@ "zh-chs": "2小时", "zh-cht": "2小時", "xloc": [ - "default.handlebars->31->830" + "default.handlebars->31->1448", + "default.handlebars->31->839" ] }, { @@ -1595,7 +1601,8 @@ "zh-chs": "24小时", "zh-cht": "24小時", "xloc": [ - "default.handlebars->31->835" + "default.handlebars->31->1453", + "default.handlebars->31->844" ] }, { @@ -1658,7 +1665,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->31->1868" + "default.handlebars->31->1907" ] }, { @@ -1678,8 +1685,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->31->1937", - "default.handlebars->31->2152" + "default.handlebars->31->1978", + "default.handlebars->31->2193" ] }, { @@ -1798,7 +1805,8 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->31->827" + "default.handlebars->31->1445", + "default.handlebars->31->836" ] }, { @@ -1818,8 +1826,8 @@ "zh-chs": "MeshAgent的32位版本", "zh-cht": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->31->412", - "default.handlebars->31->432" + "default.handlebars->31->421", + "default.handlebars->31->441" ] }, { @@ -1862,7 +1870,8 @@ "zh-chs": "4天", "zh-cht": "4天", "xloc": [ - "default.handlebars->31->837" + "default.handlebars->31->1455", + "default.handlebars->31->846" ] }, { @@ -1882,7 +1891,8 @@ "zh-chs": "4个小时", "zh-cht": "4個小時", "xloc": [ - "default.handlebars->31->831" + "default.handlebars->31->1449", + "default.handlebars->31->840" ] }, { @@ -1965,7 +1975,8 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->31->828" + "default.handlebars->31->1446", + "default.handlebars->31->837" ] }, { @@ -2005,7 +2016,8 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->31->824" + "default.handlebars->31->1442", + "default.handlebars->31->833" ] }, { @@ -2013,7 +2025,7 @@ "nl": "5 seconden", "xloc": [ "default-mobile.handlebars->11->308", - "default.handlebars->31->852" + "default.handlebars->31->861" ] }, { @@ -2140,7 +2152,8 @@ "zh-chs": "60分钟", "zh-cht": "60分鐘", "xloc": [ - "default.handlebars->31->829" + "default.handlebars->31->1447", + "default.handlebars->31->838" ] }, { @@ -2183,7 +2196,7 @@ "zh-chs": "64位版本的macOS Mesh Agent", "zh-cht": "64位版本的macOS Mesh Agent", "xloc": [ - "default.handlebars->31->426" + "default.handlebars->31->435" ] }, { @@ -2203,8 +2216,8 @@ "zh-chs": "MeshAgent的64位版本", "zh-cht": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->31->416", - "default.handlebars->31->435" + "default.handlebars->31->425", + "default.handlebars->31->444" ] }, { @@ -2261,7 +2274,7 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->31->886" + "default.handlebars->31->895" ] }, { @@ -2325,9 +2338,10 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->31->372", - "default.handlebars->31->386", - "default.handlebars->31->832" + "default.handlebars->31->1450", + "default.handlebars->31->381", + "default.handlebars->31->395", + "default.handlebars->31->841" ] }, { @@ -2400,7 +2414,7 @@ "nl": "
", "fr": "
", "xloc": [ - "default.handlebars->31->429" + "default.handlebars->31->438" ] }, { @@ -2561,8 +2575,8 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->11->267", - "default.handlebars->31->1549", - "default.handlebars->31->631" + "default.handlebars->31->1588", + "default.handlebars->31->640" ] }, { @@ -2616,8 +2630,8 @@ "zh-chs": "AMT", "zh-cht": "AMT", "xloc": [ - "default.handlebars->31->279", - "default.handlebars->31->474" + "default.handlebars->31->288", + "default.handlebars->31->483" ] }, { @@ -2732,8 +2746,8 @@ "xloc": [ "default-mobile.handlebars->11->427", "default-mobile.handlebars->11->429", - "default.handlebars->31->650", - "default.handlebars->31->652" + "default.handlebars->31->659", + "default.handlebars->31->661" ] }, { @@ -2754,7 +2768,7 @@ "zh-cht": "拒絕存取", "xloc": [ "default-mobile.handlebars->11->516", - "default.handlebars->31->1177" + "default.handlebars->31->1186" ] }, { @@ -2802,7 +2816,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->31->2102" + "default.handlebars->31->2143" ] }, { @@ -2891,11 +2905,11 @@ "default-mobile.handlebars->11->242", "default-mobile.handlebars->11->244", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->31->1455", - "default.handlebars->31->1457", - "default.handlebars->31->2381", - "default.handlebars->31->600", - "default.handlebars->31->602" + "default.handlebars->31->1484", + "default.handlebars->31->1486", + "default.handlebars->31->2422", + "default.handlebars->31->609", + "default.handlebars->31->611" ] }, { @@ -2905,7 +2919,7 @@ "de": "Konto Einstellungen", "xloc": [ "default-mobile.handlebars->11->609", - "default.handlebars->31->2273" + "default.handlebars->31->2314" ] }, { @@ -2966,7 +2980,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->31->1841" + "default.handlebars->31->1880" ] }, { @@ -2986,7 +3000,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->31->1840" + "default.handlebars->31->1879" ] }, { @@ -3006,7 +3020,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->31->1839" + "default.handlebars->31->1878" ] }, { @@ -3026,8 +3040,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->31->1939", - "default.handlebars->31->2099" + "default.handlebars->31->1980", + "default.handlebars->31->2140" ] }, { @@ -3048,7 +3062,7 @@ "zh-cht": "達到帳戶限制。", "xloc": [ "default-mobile.handlebars->11->621", - "default.handlebars->31->2285", + "default.handlebars->31->2326", "login-mobile.handlebars->5->6", "login.handlebars->5->6", "login2.handlebars->7->8" @@ -3093,7 +3107,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->31->1776" + "default.handlebars->31->1815" ] }, { @@ -3102,7 +3116,7 @@ "fr": "Connexion de {0}, {1}, {2}", "de": "Konto Login von {0}, {1}, {2}", "xloc": [ - "default.handlebars->31->1882" + "default.handlebars->31->1921" ] }, { @@ -3122,7 +3136,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->31->1777" + "default.handlebars->31->1816" ] }, { @@ -3164,7 +3178,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->31->1849" + "default.handlebars->31->1888" ] }, { @@ -3184,7 +3198,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->31->1838" + "default.handlebars->31->1877" ] }, { @@ -3225,7 +3239,7 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->522", - "default.handlebars->31->1183", + "default.handlebars->31->1192", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -3246,8 +3260,8 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->31->932", - "default.handlebars->31->934" + "default.handlebars->31->941", + "default.handlebars->31->943" ] }, { @@ -3271,7 +3285,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->31->693", + "default.handlebars->31->702", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -3294,7 +3308,7 @@ "zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。", "zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。", "xloc": [ - "default.handlebars->31->342" + "default.handlebars->31->351" ] }, { @@ -3354,7 +3368,7 @@ "zh-chs": "如果ACM失败,则激活到CCM", "zh-cht": "如果ACM失敗,則激活到CCM", "xloc": [ - "default.handlebars->31->1570" + "default.handlebars->31->1609" ] }, { @@ -3377,9 +3391,9 @@ "default-mobile.handlebars->11->262", "default-mobile.handlebars->11->264", "default-mobile.handlebars->11->478", - "default.handlebars->31->1138", - "default.handlebars->31->624", - "default.handlebars->31->626" + "default.handlebars->31->1147", + "default.handlebars->31->633", + "default.handlebars->31->635" ] }, { @@ -3419,7 +3433,13 @@ "zh-chs": "主动设备共享", "zh-cht": "主動設備共享", "xloc": [ - "default.handlebars->31->749" + "default.handlebars->31->758" + ] + }, + { + "en": "Active Login Tokens", + "xloc": [ + "default.handlebars->31->1504" ] }, { @@ -3446,7 +3466,7 @@ "de": "hinzufügen", "xloc": [ "default-mobile.handlebars->11->380", - "default.handlebars->31->996" + "default.handlebars->31->1005" ] }, { @@ -3466,8 +3486,8 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->31->1545", - "default.handlebars->31->325" + "default.handlebars->31->1584", + "default.handlebars->31->334" ] }, { @@ -3504,8 +3524,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->31->2076", - "default.handlebars->31->2206" + "default.handlebars->31->2117", + "default.handlebars->31->2247" ] }, { @@ -3525,7 +3545,7 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->31->805" + "default.handlebars->31->814" ] }, { @@ -3545,10 +3565,10 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->31->1645", - "default.handlebars->31->2070", - "default.handlebars->31->2194", - "default.handlebars->31->259" + "default.handlebars->31->1684", + "default.handlebars->31->2111", + "default.handlebars->31->2235", + "default.handlebars->31->268" ] }, { @@ -3568,7 +3588,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->31->1642" + "default.handlebars->31->1681" ] }, { @@ -3588,8 +3608,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->31->1647", - "default.handlebars->31->1649" + "default.handlebars->31->1686", + "default.handlebars->31->1688" ] }, { @@ -3626,7 +3646,7 @@ "zh-chs": "添加英特尔®AMT设备", "zh-cht": "新增Intel® AMT裝置", "xloc": [ - "default.handlebars->31->338" + "default.handlebars->31->347" ] }, { @@ -3666,7 +3686,7 @@ "zh-chs": "添加本地", "zh-cht": "新增本地", "xloc": [ - "default.handlebars->31->319" + "default.handlebars->31->328" ] }, { @@ -3686,7 +3706,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->31->2226" + "default.handlebars->31->2267" ] }, { @@ -3706,7 +3726,7 @@ "zh-chs": "添加 Mesh Agent", "zh-cht": "新增 Mesh Agent", "xloc": [ - "default.handlebars->31->445" + "default.handlebars->31->454" ] }, { @@ -3726,8 +3746,8 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->31->1222", - "default.handlebars->31->1223", + "default.handlebars->31->1231", + "default.handlebars->31->1232", "default.handlebars->31->164", "default.handlebars->31->166", "default.handlebars->31->169", @@ -3752,7 +3772,7 @@ "zh-cht": "新增用戶", "xloc": [ "default-mobile.handlebars->11->538", - "default.handlebars->31->741" + "default.handlebars->31->750" ] }, { @@ -3772,7 +3792,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->31->1652" + "default.handlebars->31->1691" ] }, { @@ -3792,10 +3812,10 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->31->1541", - "default.handlebars->31->1644", - "default.handlebars->31->2200", - "default.handlebars->31->742" + "default.handlebars->31->1580", + "default.handlebars->31->1683", + "default.handlebars->31->2241", + "default.handlebars->31->751" ] }, { @@ -3815,7 +3835,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->31->1654" + "default.handlebars->31->1693" ] }, { @@ -3872,8 +3892,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->31->1540", - "default.handlebars->31->2065" + "default.handlebars->31->1579", + "default.handlebars->31->2106" ] }, { @@ -3893,7 +3913,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->31->1641" + "default.handlebars->31->1680" ] }, { @@ -3913,7 +3933,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->31->2098" + "default.handlebars->31->2139" ] }, { @@ -3953,7 +3973,7 @@ "zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。", "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。", "xloc": [ - "default.handlebars->31->320" + "default.handlebars->31->329" ] }, { @@ -3990,7 +4010,7 @@ "zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。", "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->31->318" + "default.handlebars->31->327" ] }, { @@ -4010,7 +4030,7 @@ "zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。", "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。", "xloc": [ - "default.handlebars->31->328" + "default.handlebars->31->337" ] }, { @@ -4030,8 +4050,8 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->31->1544", - "default.handlebars->31->324" + "default.handlebars->31->1583", + "default.handlebars->31->333" ] }, { @@ -4051,7 +4071,7 @@ "zh-chs": "添加标签", "zh-cht": "新增標籤", "xloc": [ - "default.handlebars->31->514" + "default.handlebars->31->523" ] }, { @@ -4071,7 +4091,7 @@ "zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel®AMT以将“{0}”分组。", "zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。", "xloc": [ - "default.handlebars->31->339" + "default.handlebars->31->348" ] }, { @@ -4091,7 +4111,7 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->31->1865" + "default.handlebars->31->1904" ] }, { @@ -4111,7 +4131,7 @@ "zh-chs": "已将设备共享{0}从{1}添加到{2}", "zh-cht": "已將設備共享{0}從{1}添加到{2}", "xloc": [ - "default.handlebars->31->1876" + "default.handlebars->31->1915" ] }, { @@ -4131,15 +4151,21 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->31->1832", - "default.handlebars->31->1859" + "default.handlebars->31->1871", + "default.handlebars->31->1898" + ] + }, + { + "en": "Added login token", + "xloc": [ + "default.handlebars->31->1929" ] }, { "en": "Added push notification authentication device", "nl": "Verificatie apparaat voor pushmeldingen toegevoegd", "xloc": [ - "default.handlebars->31->1888" + "default.handlebars->31->1927" ] }, { @@ -4159,7 +4185,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->31->1870" + "default.handlebars->31->1909" ] }, { @@ -4179,7 +4205,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->31->1843" + "default.handlebars->31->1882" ] }, { @@ -4199,8 +4225,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->31->1846", - "default.handlebars->31->1855" + "default.handlebars->31->1885", + "default.handlebars->31->1894" ] }, { @@ -4220,7 +4246,7 @@ "zh-chs": "地址", "zh-cht": "地址", "xloc": [ - "default.handlebars->31->255" + "default.handlebars->31->264" ] }, { @@ -4261,7 +4287,7 @@ "zh-cht": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->11->480", - "default.handlebars->31->1140" + "default.handlebars->31->1149" ] }, { @@ -4282,7 +4308,7 @@ "zh-cht": "管理員憑證", "xloc": [ "default-mobile.handlebars->11->486", - "default.handlebars->31->1146" + "default.handlebars->31->1155" ] }, { @@ -4323,7 +4349,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->31->2134" + "default.handlebars->31->2175" ] }, { @@ -4364,7 +4390,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->31->2002" + "default.handlebars->31->2043" ] }, { @@ -4384,7 +4410,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->31->1931" + "default.handlebars->31->1972" ] }, { @@ -4404,7 +4430,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->31->1225" + "default.handlebars->31->1234" ] }, { @@ -4429,10 +4455,10 @@ "default-mobile.handlebars->11->259", "default-mobile.handlebars->11->281", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->31->1708", - "default.handlebars->31->1721", - "default.handlebars->31->275", - "default.handlebars->31->470", + "default.handlebars->31->1747", + "default.handlebars->31->1760", + "default.handlebars->31->284", + "default.handlebars->31->479", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1" ] }, @@ -4453,8 +4479,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->31->1710", - "default.handlebars->31->1723" + "default.handlebars->31->1749", + "default.handlebars->31->1762" ] }, { @@ -4496,7 +4522,7 @@ "zh-cht": "代理控制台", "xloc": [ "default-mobile.handlebars->11->580", - "default.handlebars->31->1662" + "default.handlebars->31->1701" ] }, { @@ -4516,7 +4542,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->31->2310" + "default.handlebars->31->2351" ] }, { @@ -4524,7 +4550,7 @@ "nl": "IP-adres agent", "de": "Agent IP Adresse", "xloc": [ - "default.handlebars->31->239" + "default.handlebars->31->248" ] }, { @@ -4565,7 +4591,7 @@ "zh-cht": "代理訊息", "xloc": [ "default-mobile.handlebars->11->212", - "default.handlebars->31->310" + "default.handlebars->31->319" ] }, { @@ -4628,7 +4654,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->31->2326" + "default.handlebars->31->2367" ] }, { @@ -4649,7 +4675,7 @@ "zh-cht": "代理標籤", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->31->647" + "default.handlebars->31->656" ] }, { @@ -4669,7 +4695,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->31->1719", + "default.handlebars->31->1758", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -4690,7 +4716,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->31->1829" + "default.handlebars->31->1868" ] }, { @@ -4711,8 +4737,8 @@ "zh-cht": "代理已連接", "xloc": [ "default.handlebars->31->178", - "default.handlebars->31->732", - "default.handlebars->31->733" + "default.handlebars->31->741", + "default.handlebars->31->742" ] }, { @@ -4753,7 +4779,7 @@ "zh-cht": "代理離線", "xloc": [ "default-mobile.handlebars->11->514", - "default.handlebars->31->1175" + "default.handlebars->31->1184" ] }, { @@ -4774,7 +4800,7 @@ "zh-cht": "代理在線", "xloc": [ "default-mobile.handlebars->11->513", - "default.handlebars->31->1174" + "default.handlebars->31->1183" ] }, { @@ -4795,7 +4821,7 @@ "zh-cht": "代理在特權降低的遠程設備上運行。", "xloc": [ "default.handlebars->31->176", - "default.handlebars->31->730" + "default.handlebars->31->739" ] }, { @@ -4815,7 +4841,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->31->2342" + "default.handlebars->31->2383" ] }, { @@ -4835,7 +4861,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->31->1226" + "default.handlebars->31->1235" ] }, { @@ -4878,7 +4904,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->31->1894" + "default.handlebars->31->1935" ] }, { @@ -4898,7 +4924,7 @@ "zh-chs": "所有显示", "zh-cht": "所有顯示", "xloc": [ - "default.handlebars->31->1021" + "default.handlebars->31->1030" ] }, { @@ -4918,7 +4944,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->31->1892" + "default.handlebars->31->1933" ] }, { @@ -4938,9 +4964,9 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->31->966", - "default.handlebars->31->968", - "default.handlebars->31->969" + "default.handlebars->31->975", + "default.handlebars->31->977", + "default.handlebars->31->978" ] }, { @@ -4960,8 +4986,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->31->1608", - "default.handlebars->31->2095" + "default.handlebars->31->1647", + "default.handlebars->31->2136" ] }, { @@ -4981,7 +5007,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->31->1609" + "default.handlebars->31->1648" ] }, { @@ -5021,8 +5047,8 @@ "xloc": [ "default-mobile.handlebars->11->373", "default-mobile.handlebars->11->377", - "default.handlebars->31->989", - "default.handlebars->31->993" + "default.handlebars->31->1002", + "default.handlebars->31->998" ] }, { @@ -5086,7 +5112,7 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->31->1032", + "default.handlebars->31->1041", "sharing.handlebars->11->37", "terminal.handlebars->3->19" ] @@ -5129,10 +5155,10 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->31->1520", - "default.handlebars->31->2056", - "default.handlebars->31->2143", - "default.handlebars->31->675" + "default.handlebars->31->1559", + "default.handlebars->31->2097", + "default.handlebars->31->2184", + "default.handlebars->31->684" ] }, { @@ -5152,10 +5178,10 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->31->1521", - "default.handlebars->31->2057", - "default.handlebars->31->2144", - "default.handlebars->31->676" + "default.handlebars->31->1560", + "default.handlebars->31->2098", + "default.handlebars->31->2185", + "default.handlebars->31->685" ] }, { @@ -5302,8 +5328,8 @@ "fr": "Antivirus désactivé", "de": "Anti-virus ist nicht aktiv", "xloc": [ - "default.handlebars->31->1712", - "default.handlebars->31->1726" + "default.handlebars->31->1751", + "default.handlebars->31->1765" ] }, { @@ -5324,7 +5350,7 @@ "zh-cht": "防毒軟體", "xloc": [ "default-mobile.handlebars->11->443", - "default.handlebars->31->666" + "default.handlebars->31->675" ] }, { @@ -5344,7 +5370,7 @@ "zh-chs": "任何可支持的", "zh-cht": "任何可支持的", "xloc": [ - "default.handlebars->31->366" + "default.handlebars->31->375" ] }, { @@ -5385,7 +5411,7 @@ "zh-chs": "苹果macOS", "zh-cht": "蘋果macOS", "xloc": [ - "default.handlebars->31->400" + "default.handlebars->31->409" ] }, { @@ -5405,7 +5431,7 @@ "zh-chs": "仅限Apple macOS", "zh-cht": "僅限Apple macOS", "xloc": [ - "default.handlebars->31->368" + "default.handlebars->31->377" ] }, { @@ -5445,7 +5471,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->31->1228" + "default.handlebars->31->1237" ] }, { @@ -5465,7 +5491,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->31->1229" + "default.handlebars->31->1238" ] }, { @@ -5485,7 +5511,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->31->1230" + "default.handlebars->31->1239" ] }, { @@ -5505,7 +5531,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->31->1231" + "default.handlebars->31->1240" ] }, { @@ -5525,7 +5551,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->31->1232" + "default.handlebars->31->1241" ] }, { @@ -5545,7 +5571,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->31->1233" + "default.handlebars->31->1242" ] }, { @@ -5565,7 +5591,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->31->1234" + "default.handlebars->31->1243" ] }, { @@ -5585,7 +5611,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->31->1235" + "default.handlebars->31->1244" ] }, { @@ -5605,7 +5631,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->31->1236" + "default.handlebars->31->1245" ] }, { @@ -5625,7 +5651,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->31->1237" + "default.handlebars->31->1246" ] }, { @@ -5645,7 +5671,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->31->1238" + "default.handlebars->31->1247" ] }, { @@ -5665,7 +5691,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->31->1239" + "default.handlebars->31->1248" ] }, { @@ -5685,7 +5711,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->31->1227" + "default.handlebars->31->1236" ] }, { @@ -5705,7 +5731,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->31->1240" + "default.handlebars->31->1249" ] }, { @@ -5725,7 +5751,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->31->1241" + "default.handlebars->31->1250" ] }, { @@ -5745,7 +5771,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->31->1242" + "default.handlebars->31->1251" ] }, { @@ -5765,7 +5791,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->31->1243" + "default.handlebars->31->1252" ] }, { @@ -5785,7 +5811,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->31->1244" + "default.handlebars->31->1253" ] }, { @@ -5806,7 +5832,7 @@ "zh-cht": "結構", "xloc": [ "default-mobile.handlebars->11->426", - "default.handlebars->31->1093" + "default.handlebars->31->1102" ] }, { @@ -5826,7 +5852,7 @@ "zh-chs": "您确定要连接到{0}设备吗?", "zh-cht": "你確定要連接到{0}裝置嗎?", "xloc": [ - "default.handlebars->31->313" + "default.handlebars->31->322" ] }, { @@ -5847,7 +5873,7 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ "default-mobile.handlebars->11->545", - "default.handlebars->31->1584" + "default.handlebars->31->1623" ] }, { @@ -5867,7 +5893,7 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->31->908" + "default.handlebars->31->917" ] }, { @@ -5887,7 +5913,7 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->31->897" + "default.handlebars->31->906" ] }, { @@ -5907,7 +5933,7 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->31->896" + "default.handlebars->31->905" ] }, { @@ -5927,7 +5953,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->31->2390" + "default.handlebars->31->2431" ] }, { @@ -5947,7 +5973,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->31->1245" + "default.handlebars->31->1254" ] }, { @@ -6007,7 +6033,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->31->1246" + "default.handlebars->31->1255" ] }, { @@ -6027,7 +6053,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->31->1247" + "default.handlebars->31->1256" ] }, { @@ -6047,7 +6073,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->31->1798" + "default.handlebars->31->1837" ] }, { @@ -6067,16 +6093,16 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->31->2147" + "default.handlebars->31->2188" ] }, { "en": "Authentication Device", "nl": "Verificatieapparaat", "xloc": [ - "default.handlebars->31->1208", - "default.handlebars->31->1210", - "default.handlebars->31->1214" + "default.handlebars->31->1217", + "default.handlebars->31->1219", + "default.handlebars->31->1223" ] }, { @@ -6100,8 +6126,8 @@ "default-mobile.handlebars->11->63", "default-mobile.handlebars->11->94", "default-mobile.handlebars->11->96", - "default.handlebars->31->1204", - "default.handlebars->31->1206", + "default.handlebars->31->1213", + "default.handlebars->31->1215", "default.handlebars->31->140", "default.handlebars->31->145" ] @@ -6183,7 +6209,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->31->1507" + "default.handlebars->31->1546" ] }, { @@ -6228,7 +6254,7 @@ "zh-chs": "自动下载代理程序核心转储文件:“{0}”", "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "xloc": [ - "default.handlebars->31->1879" + "default.handlebars->31->1918" ] }, { @@ -6268,7 +6294,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->31->2335" + "default.handlebars->31->2376" ] }, { @@ -6288,7 +6314,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->31->1248" + "default.handlebars->31->1257" ] }, { @@ -6300,9 +6326,9 @@ "default-mobile.handlebars->11->430", "default-mobile.handlebars->11->434", "default-mobile.handlebars->11->438", - "default.handlebars->31->653", - "default.handlebars->31->657", - "default.handlebars->31->661" + "default.handlebars->31->662", + "default.handlebars->31->666", + "default.handlebars->31->670" ] }, { @@ -6323,7 +6349,7 @@ "zh-cht": "的BIOS", "xloc": [ "default-mobile.handlebars->11->492", - "default.handlebars->31->1152" + "default.handlebars->31->1161" ] }, { @@ -6409,7 +6435,7 @@ "de": "Rücktaste", "xloc": [ "default-mobile.handlebars->11->356", - "default.handlebars->31->972" + "default.handlebars->31->981" ] }, { @@ -6429,7 +6455,7 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->31->407" + "default.handlebars->31->416" ] }, { @@ -6449,10 +6475,10 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->31->1691", - "default.handlebars->31->1698", - "default.handlebars->31->378", - "default.handlebars->31->392" + "default.handlebars->31->1730", + "default.handlebars->31->1737", + "default.handlebars->31->387", + "default.handlebars->31->401" ] }, { @@ -6472,11 +6498,11 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->31->1692", - "default.handlebars->31->1699", - "default.handlebars->31->379", - "default.handlebars->31->393", - "default.handlebars->31->408" + "default.handlebars->31->1731", + "default.handlebars->31->1738", + "default.handlebars->31->388", + "default.handlebars->31->402", + "default.handlebars->31->417" ] }, { @@ -6518,7 +6544,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->31->2149" + "default.handlebars->31->2190" ] }, { @@ -6538,7 +6564,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->31->2317" + "default.handlebars->31->2358" ] }, { @@ -6558,7 +6584,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->31->2316" + "default.handlebars->31->2357" ] }, { @@ -6578,7 +6604,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->31->1249" + "default.handlebars->31->1258" ] }, { @@ -6598,7 +6624,7 @@ "zh-chs": "批处理文件上传", "zh-cht": "批處理文件上傳", "xloc": [ - "default.handlebars->31->530" + "default.handlebars->31->539" ] }, { @@ -6638,7 +6664,7 @@ "zh-chs": "将{0}个文件批量上传到文件夹{1}", "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "xloc": [ - "default.handlebars->31->1878" + "default.handlebars->31->1917" ] }, { @@ -6658,7 +6684,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->31->1251" + "default.handlebars->31->1260" ] }, { @@ -6678,7 +6704,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->31->1252" + "default.handlebars->31->1261" ] }, { @@ -6710,7 +6736,7 @@ "fr": "Chargeur de démarrage", "xloc": [ "default-mobile.handlebars->11->456", - "default.handlebars->31->1106" + "default.handlebars->31->1115" ] }, { @@ -6730,7 +6756,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->31->1253" + "default.handlebars->31->1262" ] }, { @@ -6750,7 +6776,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->31->1254" + "default.handlebars->31->1263" ] }, { @@ -6770,7 +6796,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->31->2063", + "default.handlebars->31->2104", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6791,7 +6817,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->31->1984" + "default.handlebars->31->2025" ] }, { @@ -6811,7 +6837,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->31->1979" + "default.handlebars->31->2020" ] }, { @@ -6841,7 +6867,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->31->1250" + "default.handlebars->31->1259" ] }, { @@ -6861,7 +6887,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->31->1255" + "default.handlebars->31->1264" ] }, { @@ -6882,7 +6908,7 @@ "zh-cht": "CCM", "xloc": [ "default-mobile.handlebars->11->266", - "default.handlebars->31->629" + "default.handlebars->31->638" ] }, { @@ -6902,7 +6928,7 @@ "zh-chs": "CCM模式", "zh-cht": "CCM模式", "xloc": [ - "default.handlebars->31->1567" + "default.handlebars->31->1606" ] }, { @@ -6923,8 +6949,8 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->11->235", - "default.handlebars->31->277", - "default.handlebars->31->472" + "default.handlebars->31->286", + "default.handlebars->31->481" ] }, { @@ -6944,7 +6970,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->31->2374" + "default.handlebars->31->2415" ] }, { @@ -6964,7 +6990,7 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->31->2375" + "default.handlebars->31->2416" ] }, { @@ -6984,7 +7010,7 @@ "zh-chs": "CIRA设置", "zh-cht": "CIRA設置", "xloc": [ - "default.handlebars->31->1575" + "default.handlebars->31->1614" ] }, { @@ -7005,7 +7031,7 @@ "zh-cht": "CPU", "xloc": [ "default-mobile.handlebars->11->498", - "default.handlebars->31->1158" + "default.handlebars->31->1167" ] }, { @@ -7025,7 +7051,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->31->2331" + "default.handlebars->31->2372" ] }, { @@ -7045,7 +7071,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2334" + "default.handlebars->31->2375" ] }, { @@ -7065,7 +7091,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2333" + "default.handlebars->31->2374" ] }, { @@ -7085,7 +7111,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->31->2332" + "default.handlebars->31->2373" ] }, { @@ -7105,8 +7131,8 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->31->1025", "default.handlebars->31->1034", + "default.handlebars->31->1043", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "sharing.handlebars->11->25", "sharing.handlebars->11->39", @@ -7133,7 +7159,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->31->1902" + "default.handlebars->31->1943" ] }, { @@ -7153,9 +7179,9 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->31->1906", - "default.handlebars->31->1971", - "default.handlebars->31->538" + "default.handlebars->31->1947", + "default.handlebars->31->2012", + "default.handlebars->31->547" ] }, { @@ -7192,7 +7218,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->31->2391" + "default.handlebars->31->2432" ] }, { @@ -7215,8 +7241,8 @@ "agent-translations.json", "default-mobile.handlebars->11->105", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->31->1485", - "default.handlebars->31->2380", + "default.handlebars->31->1524", + "default.handlebars->31->2421", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -7248,9 +7274,9 @@ "default-mobile.handlebars->11->503", "default-mobile.handlebars->11->508", "default-mobile.handlebars->11->510", - "default.handlebars->31->1163", - "default.handlebars->31->1168", - "default.handlebars->31->1170" + "default.handlebars->31->1172", + "default.handlebars->31->1177", + "default.handlebars->31->1179" ] }, { @@ -7271,7 +7297,7 @@ "zh-cht": "容量/速度", "xloc": [ "default-mobile.handlebars->11->501", - "default.handlebars->31->1161" + "default.handlebars->31->1170" ] }, { @@ -7291,7 +7317,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->31->1256" + "default.handlebars->31->1265" ] }, { @@ -7311,7 +7337,7 @@ "zh-chs": "在这里为中心显示地图", "zh-cht": "在這裡為中心顯示地圖", "xloc": [ - "default.handlebars->31->591" + "default.handlebars->31->600" ] }, { @@ -7331,7 +7357,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->31->1257" + "default.handlebars->31->1266" ] }, { @@ -7373,7 +7399,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->31->2181" + "default.handlebars->31->2222" ] }, { @@ -7393,9 +7419,9 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->31->706", - "default.handlebars->31->905", - "default.handlebars->31->906" + "default.handlebars->31->715", + "default.handlebars->31->914", + "default.handlebars->31->915" ] }, { @@ -7416,8 +7442,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->31->1452", - "default.handlebars->31->2166" + "default.handlebars->31->1481", + "default.handlebars->31->2207" ] }, { @@ -7437,7 +7463,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->31->2190" + "default.handlebars->31->2231" ] }, { @@ -7457,7 +7483,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->31->2176" + "default.handlebars->31->2217" ] }, { @@ -7548,7 +7574,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->31->2165" + "default.handlebars->31->2206" ] }, { @@ -7588,7 +7614,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->31->1439" + "default.handlebars->31->1468" ] }, { @@ -7608,7 +7634,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->31->1445" + "default.handlebars->31->1474" ] }, { @@ -7628,7 +7654,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->31->1850" + "default.handlebars->31->1889" ] }, { @@ -7648,7 +7674,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->31->1834" + "default.handlebars->31->1873" ] }, { @@ -7668,7 +7694,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->31->1778" + "default.handlebars->31->1817" ] }, { @@ -7688,8 +7714,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->31->1836", - "default.handlebars->31->1857" + "default.handlebars->31->1875", + "default.handlebars->31->1896" ] }, { @@ -7709,7 +7735,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->31->1424" + "default.handlebars->31->1433" ] }, { @@ -7729,12 +7755,12 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->31->1923", - "default.handlebars->31->2161", - "default.handlebars->31->2162", - "default.handlebars->31->701", - "default.handlebars->31->778", - "default.handlebars->31->800" + "default.handlebars->31->1964", + "default.handlebars->31->2202", + "default.handlebars->31->2203", + "default.handlebars->31->710", + "default.handlebars->31->787", + "default.handlebars->31->809" ] }, { @@ -7756,8 +7782,8 @@ "xloc": [ "default-mobile.handlebars->11->570", "default-mobile.handlebars->11->590", - "default.handlebars->31->1637", - "default.handlebars->31->1673" + "default.handlebars->31->1676", + "default.handlebars->31->1712" ] }, { @@ -7767,7 +7793,7 @@ "de": "Chat Anfrage, Drücke hier zum annehmen.", "xloc": [ "default-mobile.handlebars->11->622", - "default.handlebars->31->2286" + "default.handlebars->31->2327" ] }, { @@ -7807,7 +7833,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->31->1258" + "default.handlebars->31->1267" ] }, { @@ -7907,8 +7933,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->31->1224", - "default.handlebars->31->2385" + "default.handlebars->31->1233", + "default.handlebars->31->2426" ] }, { @@ -7928,7 +7954,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->31->1259" + "default.handlebars->31->1268" ] }, { @@ -7948,7 +7974,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->31->1260" + "default.handlebars->31->1269" ] }, { @@ -7968,7 +7994,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->31->1261" + "default.handlebars->31->1270" ] }, { @@ -7988,7 +8014,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->31->1421" + "default.handlebars->31->1430" ] }, { @@ -8008,7 +8034,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->31->1262" + "default.handlebars->31->1271" ] }, { @@ -8028,7 +8054,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->31->1263" + "default.handlebars->31->1272" ] }, { @@ -8048,7 +8074,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->31->1422" + "default.handlebars->31->1431" ] }, { @@ -8089,7 +8115,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->31->1264" + "default.handlebars->31->1273" ] }, { @@ -8133,11 +8159,11 @@ "default-mobile.handlebars->11->416", "default-mobile.handlebars->11->70", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->31->1070", - "default.handlebars->31->1072", - "default.handlebars->31->1074", - "default.handlebars->31->1076", - "default.handlebars->31->1772", + "default.handlebars->31->1079", + "default.handlebars->31->1081", + "default.handlebars->31->1083", + "default.handlebars->31->1085", + "default.handlebars->31->1811", "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->1->1->0->5", @@ -8173,8 +8199,8 @@ "fr": "Nettoyer l'agent", "de": "Entferne Agent.", "xloc": [ - "default.handlebars->31->495", - "default.handlebars->31->534" + "default.handlebars->31->504", + "default.handlebars->31->543" ] }, { @@ -8183,7 +8209,7 @@ "fr": "Nettoyer l'agent sur les appareils sélectionnés ?", "de": "Agent auf ausgewählten Geräten löschen?", "xloc": [ - "default.handlebars->31->533" + "default.handlebars->31->542" ] }, { @@ -8204,7 +8230,7 @@ "zh-cht": "全部清除", "xloc": [ "default-mobile.handlebars->11->605", - "default.handlebars->31->2269" + "default.handlebars->31->2310" ] }, { @@ -8225,7 +8251,7 @@ "zh-cht": "清除搜索過濾器", "xloc": [ "default-mobile.handlebars->11->185", - "default.handlebars->31->248" + "default.handlebars->31->257" ] }, { @@ -8246,7 +8272,7 @@ "zh-cht": "清除核心", "xloc": [ "default-mobile.handlebars->11->524", - "default.handlebars->31->1185" + "default.handlebars->31->1194" ] }, { @@ -8287,7 +8313,7 @@ "zh-cht": "清除此通知", "xloc": [ "default-mobile.handlebars->11->604", - "default.handlebars->31->2268" + "default.handlebars->31->2309" ] }, { @@ -8347,8 +8373,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->31->1496", - "default.handlebars->31->1717" + "default.handlebars->31->1535", + "default.handlebars->31->1756" ] }, { @@ -8368,7 +8394,7 @@ "zh-chs": "单击此处编辑服务器端设备名称", "zh-cht": "單擊此處編輯伺服器端裝置名稱", "xloc": [ - "default.handlebars->31->607" + "default.handlebars->31->616" ] }, { @@ -8388,7 +8414,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->31->2040" + "default.handlebars->31->2081" ] }, { @@ -8460,7 +8486,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->11->98", - "default.handlebars->31->1436" + "default.handlebars->31->1465" ] }, { @@ -8522,7 +8548,7 @@ "zh-cht": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->11->479", - "default.handlebars->31->1139" + "default.handlebars->31->1148" ] }, { @@ -8542,7 +8568,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->31->1478" + "default.handlebars->31->1517" ] }, { @@ -8562,7 +8588,7 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->31->1574" + "default.handlebars->31->1613" ] }, { @@ -8582,7 +8608,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->31->1479" + "default.handlebars->31->1518" ] }, { @@ -8625,11 +8651,11 @@ "zh-cht": "關", "xloc": [ "default-mobile.handlebars->11->68", - "default.handlebars->31->1014", - "default.handlebars->31->1047", + "default.handlebars->31->1023", + "default.handlebars->31->1056", "default.handlebars->31->152", "default.handlebars->31->160", - "default.handlebars->31->2379", + "default.handlebars->31->2420", "sharing.handlebars->11->52" ] }, @@ -8650,7 +8676,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->31->1783" + "default.handlebars->31->1822" ] }, { @@ -8752,7 +8778,7 @@ "zh-chs": "命令", "zh-cht": "命令", "xloc": [ - "default.handlebars->31->443" + "default.handlebars->31->452" ] }, { @@ -8773,9 +8799,9 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->592", - "default.handlebars->31->1675", - "default.handlebars->31->780", - "default.handlebars->31->802" + "default.handlebars->31->1714", + "default.handlebars->31->789", + "default.handlebars->31->811" ] }, { @@ -8795,8 +8821,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->31->2071", - "default.handlebars->31->2195" + "default.handlebars->31->2112", + "default.handlebars->31->2236" ] }, { @@ -8816,8 +8842,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->31->2077", - "default.handlebars->31->2207" + "default.handlebars->31->2118", + "default.handlebars->31->2248" ] }, { @@ -8827,7 +8853,7 @@ "de": "Kompilierungszeit", "xloc": [ "default-mobile.handlebars->11->452", - "default.handlebars->31->1102" + "default.handlebars->31->1111" ] }, { @@ -8847,7 +8873,7 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->31->1042", + "default.handlebars->31->1051", "sharing.handlebars->11->47" ] }, @@ -8870,14 +8896,14 @@ "xloc": [ "default-mobile.handlebars->11->340", "default-mobile.handlebars->11->546", - "default.handlebars->31->1585", - "default.handlebars->31->1951", - "default.handlebars->31->2030", - "default.handlebars->31->2091", - "default.handlebars->31->2193", - "default.handlebars->31->502", - "default.handlebars->31->900", - "default.handlebars->31->909" + "default.handlebars->31->1624", + "default.handlebars->31->1992", + "default.handlebars->31->2071", + "default.handlebars->31->2132", + "default.handlebars->31->2234", + "default.handlebars->31->511", + "default.handlebars->31->909", + "default.handlebars->31->918" ] }, { @@ -8898,7 +8924,7 @@ "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->11->405", - "default.handlebars->31->1065", + "default.handlebars->31->1074", "sharing.handlebars->11->70" ] }, @@ -8919,7 +8945,7 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->31->1064", + "default.handlebars->31->1073", "sharing.handlebars->11->69" ] }, @@ -8960,7 +8986,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->31->1950" + "default.handlebars->31->1991" ] }, { @@ -8980,7 +9006,7 @@ "zh-chs": "确认删除选定的设备?", "zh-cht": "確認刪除所選裝置?", "xloc": [ - "default.handlebars->31->501" + "default.handlebars->31->510" ] }, { @@ -9000,7 +9026,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->31->2029" + "default.handlebars->31->2070" ] }, { @@ -9020,7 +9046,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->31->2192" + "default.handlebars->31->2233" ] }, { @@ -9040,7 +9066,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->31->2094" + "default.handlebars->31->2135" ] }, { @@ -9060,7 +9086,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->31->2224" + "default.handlebars->31->2265" ] }, { @@ -9081,7 +9107,7 @@ "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ "default-mobile.handlebars->11->407", - "default.handlebars->31->1067", + "default.handlebars->31->1076", "sharing.handlebars->11->72" ] }, @@ -9102,7 +9128,7 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->31->1066", + "default.handlebars->31->1075", "sharing.handlebars->11->71" ] }, @@ -9143,7 +9169,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->31->1766" + "default.handlebars->31->1805" ] }, { @@ -9163,8 +9189,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2084", - "default.handlebars->31->2215" + "default.handlebars->31->2125", + "default.handlebars->31->2256" ] }, { @@ -9184,8 +9210,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2086", - "default.handlebars->31->2228" + "default.handlebars->31->2127", + "default.handlebars->31->2269" ] }, { @@ -9205,7 +9231,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2217" + "default.handlebars->31->2258" ] }, { @@ -9225,7 +9251,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->31->2220" + "default.handlebars->31->2261" ] }, { @@ -9245,8 +9271,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->31->2218", - "default.handlebars->31->2221" + "default.handlebars->31->2259", + "default.handlebars->31->2262" ] }, { @@ -9267,7 +9293,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->11->97", - "default.handlebars->31->1207" + "default.handlebars->31->1216" ] }, { @@ -9304,7 +9330,7 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->31->2213" + "default.handlebars->31->2254" ] }, { @@ -9345,7 +9371,7 @@ "en": "Confirm removal of push authentication device?", "nl": "Verwijderen van push-authenticatieapparaat bevestigen?", "xloc": [ - "default.handlebars->31->1209" + "default.handlebars->31->1218" ] }, { @@ -9365,7 +9391,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->31->1684" + "default.handlebars->31->1723" ] }, { @@ -9385,7 +9411,13 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->31->1686" + "default.handlebars->31->1725" + ] + }, + { + "en": "Confirm removal of this login token?", + "xloc": [ + "default.handlebars->31->1510" ] }, { @@ -9443,7 +9475,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->11->150", - "default.handlebars->31->1767" + "default.handlebars->31->1806" ] }, { @@ -9468,8 +9500,8 @@ "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-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->31->1037", - "default.handlebars->31->1524", + "default.handlebars->31->1046", + "default.handlebars->31->1563", "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", @@ -9500,7 +9532,7 @@ "zh-chs": "全部连接", "zh-cht": "全部連接", "xloc": [ - "default.handlebars->31->312", + "default.handlebars->31->321", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -9521,7 +9553,7 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->31->1578" + "default.handlebars->31->1617" ] }, { @@ -9645,7 +9677,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->31->2322" + "default.handlebars->31->2363" ] }, { @@ -9665,7 +9697,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->31->2327" + "default.handlebars->31->2368" ] }, { @@ -9686,7 +9718,7 @@ "zh-cht": "現在已連接", "xloc": [ "default-mobile.handlebars->11->447", - "default.handlebars->31->1097" + "default.handlebars->31->1106" ] }, { @@ -9729,10 +9761,10 @@ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->423", "default-mobile.handlebars->11->48", - "default.handlebars->31->1088", - "default.handlebars->31->265", - "default.handlebars->31->268", - "default.handlebars->31->315", + "default.handlebars->31->1097", + "default.handlebars->31->274", + "default.handlebars->31->277", + "default.handlebars->31->324", "default.handlebars->31->9", "desktop.handlebars->3->2", "sharing.handlebars->11->2", @@ -9758,7 +9790,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->31->2341" + "default.handlebars->31->2382" ] }, { @@ -9784,7 +9816,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->31->2373" + "default.handlebars->31->2414" ] }, { @@ -9845,9 +9877,9 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->31->1724", - "default.handlebars->31->256", - "default.handlebars->31->689", + "default.handlebars->31->1763", + "default.handlebars->31->265", + "default.handlebars->31->698", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" ] }, @@ -9869,8 +9901,8 @@ "zh-cht": "控制台", "xloc": [ "default-mobile.handlebars->11->302", - "default.handlebars->31->773", - "default.handlebars->31->795", + "default.handlebars->31->782", + "default.handlebars->31->804", "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" @@ -9893,7 +9925,7 @@ "zh-chs": "控制台 -", "zh-cht": "控制台 -", "xloc": [ - "default.handlebars->31->608" + "default.handlebars->31->617" ] }, { @@ -9913,8 +9945,8 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->31->772", - "default.handlebars->31->794", + "default.handlebars->31->781", + "default.handlebars->31->803", "messenger.handlebars->remoteImage->3->2" ] }, @@ -9935,7 +9967,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->31->2357" + "default.handlebars->31->2398" ] }, { @@ -10001,7 +10033,7 @@ "zh-chs": "将Windows 32位代理URL复制到剪贴板", "zh-cht": "將Windows 32位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->31->414" + "default.handlebars->31->423" ] }, { @@ -10021,7 +10053,7 @@ "zh-chs": "将Windows 64位代理URL复制到剪贴板", "zh-cht": "將Windows 64位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->31->418" + "default.handlebars->31->427" ] }, { @@ -10072,8 +10104,8 @@ "zh-chs": "将代理URL复制到剪贴板", "zh-cht": "將代理URL複製到剪貼板", "xloc": [ - "default.handlebars->31->442", - "default.handlebars->31->444" + "default.handlebars->31->451", + "default.handlebars->31->453" ] }, { @@ -10093,10 +10125,12 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->31->1735", - "default.handlebars->31->1754", + "default.handlebars->31->1774", + "default.handlebars->31->1793", "default.handlebars->31->220", - "default.handlebars->31->395" + "default.handlebars->31->242", + "default.handlebars->31->244", + "default.handlebars->31->404" ] }, { @@ -10116,7 +10150,7 @@ "zh-chs": "将macOS代理URL复制到剪贴板", "zh-cht": "將macOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->31->427" + "default.handlebars->31->436" ] }, { @@ -10158,8 +10192,8 @@ "xloc": [ "agentinvite.handlebars->container->column_l->5->linuxtab", "agentinvite.handlebars->container->column_l->5->linuxtab", - "default.handlebars->31->423", - "default.handlebars->31->438" + "default.handlebars->31->432", + "default.handlebars->31->447" ] }, { @@ -10199,7 +10233,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->31->1826" + "default.handlebars->31->1865" ] }, { @@ -10345,7 +10379,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->31->2356" + "default.handlebars->31->2397" ] }, { @@ -10365,7 +10399,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->31->1265" + "default.handlebars->31->1274" ] }, { @@ -10385,7 +10419,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->31->1998", + "default.handlebars->31->2039", "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" @@ -10411,6 +10445,13 @@ "default-mobile.handlebars->11->125" ] }, + { + "en": "Create Login Token", + "xloc": [ + "default.handlebars->31->1458", + "default.handlebars->31->245" + ] + }, { "cs": "Vytvořit skupinu uživatelů", "de": "Benutzergruppe erstellen", @@ -10428,7 +10469,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->31->2037" + "default.handlebars->31->2078" ] }, { @@ -10448,7 +10489,7 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->31->704" + "default.handlebars->31->713" ] }, { @@ -10468,7 +10509,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->31->1459" + "default.handlebars->31->1488" ] }, { @@ -10488,7 +10529,13 @@ "zh-chs": "创建一个新的设备组。", "zh-cht": "創建一個新的裝置群。", "xloc": [ - "default.handlebars->31->258" + "default.handlebars->31->267" + ] + }, + { + "en": "Create a temporary username and password that can be used as alternative login to your account. This is useful for allowing tools or other services to access your account.", + "xloc": [ + "default.handlebars->31->1439" ] }, { @@ -10508,7 +10555,7 @@ "zh-chs": "创建文件夹(如果不存在)?", "zh-cht": "創建文件夾(如果不存在)?", "xloc": [ - "default.handlebars->31->528" + "default.handlebars->31->537" ] }, { @@ -10528,7 +10575,13 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->31->1819" + "default.handlebars->31->1858" + ] + }, + { + "en": "Create login token", + "xloc": [ + "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->accountCreateLoginTokenSpan->0" ] }, { @@ -10548,7 +10601,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->31->1962" + "default.handlebars->31->2003" ] }, { @@ -10590,7 +10643,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->31->1830" + "default.handlebars->31->1869" ] }, { @@ -10610,7 +10663,7 @@ "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。", "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "xloc": [ - "default.handlebars->31->813" + "default.handlebars->31->822" ] }, { @@ -10664,7 +10717,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->31->2123" + "default.handlebars->31->2164" ] }, { @@ -10684,7 +10737,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->31->1506" + "default.handlebars->31->1545" ] }, { @@ -10726,8 +10779,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->31->1504", - "default.handlebars->31->1505" + "default.handlebars->31->1543", + "default.handlebars->31->1544" ] }, { @@ -10747,7 +10800,7 @@ "zh-chs": "证书", "zh-cht": "證書", "xloc": [ - "default.handlebars->31->1476" + "default.handlebars->31->1515" ] }, { @@ -10767,7 +10820,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->31->1266" + "default.handlebars->31->1275" ] }, { @@ -10787,7 +10840,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->31->1267" + "default.handlebars->31->1276" ] }, { @@ -10853,9 +10906,9 @@ "xloc": [ "default-mobile.handlebars->11->374", "default-mobile.handlebars->11->378", + "default.handlebars->31->1003", "default.handlebars->31->57", - "default.handlebars->31->990", - "default.handlebars->31->994", + "default.handlebars->31->999", "sharing.handlebars->11->24", "terminal.handlebars->3->6" ] @@ -10975,7 +11028,7 @@ "de": "Aktuelles Password nicht in korrekt.", "xloc": [ "default-mobile.handlebars->11->632", - "default.handlebars->31->2296" + "default.handlebars->31->2337" ] }, { @@ -11037,7 +11090,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->31->1268" + "default.handlebars->31->1277" ] }, { @@ -11077,7 +11130,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->31->1269" + "default.handlebars->31->1278" ] }, { @@ -11107,7 +11160,7 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->31->957", + "default.handlebars->31->966", "desktop.handlebars->3->11", "sharing.handlebars->11->11" ] @@ -11129,7 +11182,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->31->1427" + "default.handlebars->31->1436" ] }, { @@ -11150,7 +11203,7 @@ "zh-cht": "天", "xloc": [ "default-mobile.handlebars->11->330", - "default.handlebars->31->884" + "default.handlebars->31->893" ] }, { @@ -11170,7 +11223,7 @@ "zh-chs": "停用", "zh-cht": "停用", "xloc": [ - "default.handlebars->31->1557" + "default.handlebars->31->1596" ] }, { @@ -11190,7 +11243,7 @@ "zh-chs": "如果设置停用CCM", "zh-cht": "如果設置停用CCM", "xloc": [ - "default.handlebars->31->1569" + "default.handlebars->31->1608" ] }, { @@ -11228,7 +11281,7 @@ "zh-cht": "沉睡", "xloc": [ "default-mobile.handlebars->11->223", - "default.handlebars->31->455" + "default.handlebars->31->464" ] }, { @@ -11248,10 +11301,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->31->1985", - "default.handlebars->31->2033", - "default.handlebars->31->2044", - "default.handlebars->31->2112" + "default.handlebars->31->2026", + "default.handlebars->31->2074", + "default.handlebars->31->2085", + "default.handlebars->31->2153" ] }, { @@ -11261,7 +11314,7 @@ "de": "Löschen", "xloc": [ "default-mobile.handlebars->11->362", - "default.handlebars->31->978" + "default.handlebars->31->987" ] }, { @@ -11286,9 +11339,9 @@ "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-mobile.handlebars->dialog->idx_dlgButtonBar->5", - "default.handlebars->31->1056", - "default.handlebars->31->1761", - "default.handlebars->31->578", + "default.handlebars->31->1065", + "default.handlebars->31->1800", + "default.handlebars->31->587", "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", @@ -11320,7 +11373,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->11->107", - "default.handlebars->31->1444" + "default.handlebars->31->1473" ] }, { @@ -11340,7 +11393,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->31->1952" + "default.handlebars->31->1993" ] }, { @@ -11361,7 +11414,7 @@ "zh-cht": "刪除裝置", "xloc": [ "default-mobile.handlebars->11->291", - "default.handlebars->31->708" + "default.handlebars->31->717" ] }, { @@ -11383,8 +11436,8 @@ "xloc": [ "default-mobile.handlebars->11->544", "default-mobile.handlebars->11->547", - "default.handlebars->31->1553", - "default.handlebars->31->1586" + "default.handlebars->31->1592", + "default.handlebars->31->1625" ] }, { @@ -11405,7 +11458,7 @@ "zh-cht": "刪除節點", "xloc": [ "default-mobile.handlebars->11->338", - "default.handlebars->31->910" + "default.handlebars->31->919" ] }, { @@ -11425,7 +11478,7 @@ "zh-chs": "删除节点", "zh-cht": "刪除節點", "xloc": [ - "default.handlebars->31->503" + "default.handlebars->31->512" ] }, { @@ -11445,7 +11498,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->31->2164" + "default.handlebars->31->2205" ] }, { @@ -11465,8 +11518,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->31->2082", - "default.handlebars->31->2092" + "default.handlebars->31->2123", + "default.handlebars->31->2133" ] }, { @@ -11486,7 +11539,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->31->2031" + "default.handlebars->31->2072" ] }, { @@ -11506,7 +11559,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->31->2191" + "default.handlebars->31->2232" ] }, { @@ -11527,7 +11580,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->31->1948", + "default.handlebars->31->1989", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -11548,7 +11601,7 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default.handlebars->31->493" + "default.handlebars->31->502" ] }, { @@ -11568,7 +11621,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->31->2027" + "default.handlebars->31->2068" ] }, { @@ -11588,7 +11641,7 @@ "zh-chs": "删除项目?", "zh-cht": "刪除項目?", "xloc": [ - "default.handlebars->31->579" + "default.handlebars->31->588" ] }, { @@ -11608,7 +11661,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->31->1821" + "default.handlebars->31->1860" ] }, { @@ -11630,8 +11683,8 @@ "xloc": [ "default-mobile.handlebars->11->147", "default-mobile.handlebars->11->399", - "default.handlebars->31->1058", - "default.handlebars->31->1763", + "default.handlebars->31->1067", + "default.handlebars->31->1802", "sharing.handlebars->11->63" ] }, @@ -11652,7 +11705,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->31->2090" + "default.handlebars->31->2131" ] }, { @@ -11674,8 +11727,8 @@ "xloc": [ "default-mobile.handlebars->11->146", "default-mobile.handlebars->11->398", - "default.handlebars->31->1057", - "default.handlebars->31->1762", + "default.handlebars->31->1066", + "default.handlebars->31->1801", "sharing.handlebars->11->62" ] }, @@ -11716,7 +11769,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->31->1820" + "default.handlebars->31->1859" ] }, { @@ -11736,7 +11789,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->31->1822" + "default.handlebars->31->1861" ] }, { @@ -11757,7 +11810,7 @@ "zh-cht": "被拒絕", "xloc": [ "default-mobile.handlebars->11->349", - "default.handlebars->31->953", + "default.handlebars->31->962", "desktop.handlebars->3->7", "sharing.handlebars->11->29", "sharing.handlebars->11->7", @@ -11860,19 +11913,19 @@ "default-mobile.handlebars->11->460", "default-mobile.handlebars->11->535", "default-mobile.handlebars->11->549", - "default.handlebars->31->1110", - "default.handlebars->31->1120", - "default.handlebars->31->1464", - "default.handlebars->31->1501", - "default.handlebars->31->1588", - "default.handlebars->31->2036", - "default.handlebars->31->2046", - "default.handlebars->31->2047", + "default.handlebars->31->1119", + "default.handlebars->31->1129", + "default.handlebars->31->1493", + "default.handlebars->31->1540", + "default.handlebars->31->1627", + "default.handlebars->31->2077", + "default.handlebars->31->2087", "default.handlebars->31->2088", - "default.handlebars->31->619", - "default.handlebars->31->620", + "default.handlebars->31->2129", + "default.handlebars->31->628", + "default.handlebars->31->629", "default.handlebars->31->92", - "default.handlebars->31->948", + "default.handlebars->31->957", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -11911,12 +11964,12 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->11->298", - "default.handlebars->31->1020", - "default.handlebars->31->1594", - "default.handlebars->31->2246", - "default.handlebars->31->584", - "default.handlebars->31->753", - "default.handlebars->31->815", + "default.handlebars->31->1029", + "default.handlebars->31->1633", + "default.handlebars->31->2287", + "default.handlebars->31->593", + "default.handlebars->31->762", + "default.handlebars->31->824", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", "desktop.handlebars->3->23", @@ -11928,23 +11981,23 @@ "en": "Desktop + Files", "nl": "Desktop + Bestanden", "xloc": [ - "default.handlebars->31->757", - "default.handlebars->31->818" + "default.handlebars->31->766", + "default.handlebars->31->827" ] }, { "en": "Desktop + Terminal", "nl": "Desktop + Terminal", "xloc": [ - "default.handlebars->31->754" + "default.handlebars->31->763" ] }, { "en": "Desktop + Terminal + Files", "nl": "Desktop + Terminal + Bestanden", "xloc": [ - "default.handlebars->31->758", - "default.handlebars->31->820" + "default.handlebars->31->767", + "default.handlebars->31->829" ] }, { @@ -11984,10 +12037,10 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->31->1515", - "default.handlebars->31->2051", - "default.handlebars->31->2138", - "default.handlebars->31->670" + "default.handlebars->31->1554", + "default.handlebars->31->2092", + "default.handlebars->31->2179", + "default.handlebars->31->679" ] }, { @@ -12007,10 +12060,10 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->31->1514", - "default.handlebars->31->2050", - "default.handlebars->31->2137", - "default.handlebars->31->669" + "default.handlebars->31->1553", + "default.handlebars->31->2091", + "default.handlebars->31->2178", + "default.handlebars->31->678" ] }, { @@ -12030,17 +12083,17 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->31->1512", - "default.handlebars->31->2048", - "default.handlebars->31->2135", - "default.handlebars->31->667" + "default.handlebars->31->1551", + "default.handlebars->31->2089", + "default.handlebars->31->2176", + "default.handlebars->31->676" ] }, { "en": "Desktop Session", "nl": "Desktop sessie", "xloc": [ - "default.handlebars->31->2239" + "default.handlebars->31->2280" ] }, { @@ -12103,10 +12156,10 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->31->1513", - "default.handlebars->31->2049", - "default.handlebars->31->2136", - "default.handlebars->31->668" + "default.handlebars->31->1552", + "default.handlebars->31->2090", + "default.handlebars->31->2177", + "default.handlebars->31->677" ] }, { @@ -12115,7 +12168,7 @@ "fr": "Bureau en visualisation seulement", "de": "Desktop, nur Ansehen", "xloc": [ - "default.handlebars->31->821" + "default.handlebars->31->830" ] }, { @@ -12135,7 +12188,7 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->31->1019" + "default.handlebars->31->1028" ] }, { @@ -12229,11 +12282,11 @@ "zh-cht": "裝置", "xloc": [ "default-mobile.handlebars->11->455", - "default.handlebars->31->1105", - "default.handlebars->31->1213", - "default.handlebars->31->1617", + "default.handlebars->31->1114", + "default.handlebars->31->1222", + "default.handlebars->31->1656", "default.handlebars->31->201", - "default.handlebars->31->2210", + "default.handlebars->31->2251", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -12256,7 +12309,7 @@ "xloc": [ "default-mobile.handlebars->11->319", "default-mobile.handlebars->11->328", - "default.handlebars->31->867" + "default.handlebars->31->876" ] }, { @@ -12306,15 +12359,15 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->610", - "default.handlebars->31->1612", - "default.handlebars->31->1615", - "default.handlebars->31->1616", - "default.handlebars->31->1899", - "default.handlebars->31->2074", - "default.handlebars->31->2080", - "default.handlebars->31->2198", - "default.handlebars->31->2255", - "default.handlebars->31->2274" + "default.handlebars->31->1651", + "default.handlebars->31->1654", + "default.handlebars->31->1655", + "default.handlebars->31->1940", + "default.handlebars->31->2115", + "default.handlebars->31->2121", + "default.handlebars->31->2239", + "default.handlebars->31->2296", + "default.handlebars->31->2315" ] }, { @@ -12335,7 +12388,7 @@ "zh-cht": "裝置群用戶", "xloc": [ "default-mobile.handlebars->11->599", - "default.handlebars->31->1682" + "default.handlebars->31->1721" ] }, { @@ -12356,12 +12409,12 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->31->1915", - "default.handlebars->31->2021", - "default.handlebars->31->2061", - "default.handlebars->31->2132", - "default.handlebars->31->2325", - "default.handlebars->container->column_l->p2->p2info->7" + "default.handlebars->31->1956", + "default.handlebars->31->2062", + "default.handlebars->31->2102", + "default.handlebars->31->2173", + "default.handlebars->31->2366", + "default.handlebars->container->column_l->p2->p2info->9" ] }, { @@ -12381,7 +12434,7 @@ "zh-chs": "设备信息导出", "zh-cht": "裝置訊息輸出", "xloc": [ - "default.handlebars->31->543" + "default.handlebars->31->552" ] }, { @@ -12401,7 +12454,7 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->31->911" + "default.handlebars->31->920" ] }, { @@ -12421,7 +12474,7 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->31->810" + "default.handlebars->31->819" ] }, { @@ -12442,9 +12495,9 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->11->342", - "default.handlebars->31->2254", - "default.handlebars->31->329", - "default.handlebars->31->946", + "default.handlebars->31->2295", + "default.handlebars->31->338", + "default.handlebars->31->955", "player.handlebars->3->9" ] }, @@ -12465,8 +12518,8 @@ "zh-chs": "设备通知", "zh-cht": "裝置通知", "xloc": [ - "default.handlebars->31->524", - "default.handlebars->31->812" + "default.handlebars->31->533", + "default.handlebars->31->821" ] }, { @@ -12512,7 +12565,7 @@ "zh-chs": "设备共享链接", "zh-cht": "設備共享鏈接", "xloc": [ - "default.handlebars->31->750" + "default.handlebars->31->759" ] }, { @@ -12540,7 +12593,7 @@ "nl": "Kolomweergave apparaat", "de": "Aufteilen der Geräteansicht", "xloc": [ - "default.handlebars->31->241" + "default.handlebars->31->250" ] }, { @@ -12560,8 +12613,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->31->1432", - "default.handlebars->31->1703" + "default.handlebars->31->1461", + "default.handlebars->31->1742" ] }, { @@ -12581,8 +12634,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->31->1433", - "default.handlebars->31->1704" + "default.handlebars->31->1462", + "default.handlebars->31->1743" ] }, { @@ -12602,7 +12655,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->31->1851" + "default.handlebars->31->1890" ] }, { @@ -12622,7 +12675,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->31->1852" + "default.handlebars->31->1891" ] }, { @@ -12642,7 +12695,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->31->1853" + "default.handlebars->31->1892" ] }, { @@ -12663,7 +12716,7 @@ "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->31->807" + "default.handlebars->31->816" ] }, { @@ -12683,7 +12736,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->31->1848" + "default.handlebars->31->1887" ] }, { @@ -12703,7 +12756,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->31->1831" + "default.handlebars->31->1870" ] }, { @@ -12725,8 +12778,8 @@ "xloc": [ "default-mobile.handlebars->11->191", "default-mobile.handlebars->11->247", - "default.handlebars->31->273", - "default.handlebars->31->605" + "default.handlebars->31->282", + "default.handlebars->31->614" ] }, { @@ -12746,7 +12799,7 @@ "zh-chs": "检测到设备,但无法获得电源状态。", "zh-cht": "檢測到裝置,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->31->460" + "default.handlebars->31->469" ] }, { @@ -12767,7 +12820,7 @@ "zh-cht": "裝置正在休眠(S4)", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->31->466" + "default.handlebars->31->475" ] }, { @@ -12788,7 +12841,7 @@ "zh-cht": "裝置處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->31->465" + "default.handlebars->31->474" ] }, { @@ -12808,7 +12861,7 @@ "zh-chs": "设备处于深度睡眠状态(S3)。", "zh-cht": "裝置處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->31->454" + "default.handlebars->31->463" ] }, { @@ -12828,7 +12881,7 @@ "zh-chs": "设备处于休眠状态(S4)。", "zh-cht": "裝置處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->31->456" + "default.handlebars->31->465" ] }, { @@ -12848,7 +12901,7 @@ "zh-chs": "设备处于关机状态(S5)。", "zh-cht": "裝置處於關機狀態(S5)。", "xloc": [ - "default.handlebars->31->458" + "default.handlebars->31->467" ] }, { @@ -12869,7 +12922,7 @@ "zh-cht": "裝置處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->31->463" + "default.handlebars->31->472" ] }, { @@ -12889,7 +12942,7 @@ "zh-chs": "设备处于睡眠状态(S1)。", "zh-cht": "裝置處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->31->450" + "default.handlebars->31->459" ] }, { @@ -12910,7 +12963,7 @@ "zh-cht": "裝置處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->31->464" + "default.handlebars->31->473" ] }, { @@ -12930,7 +12983,7 @@ "zh-chs": "设备处于睡眠状态(S2)。", "zh-cht": "裝置處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->31->452" + "default.handlebars->31->461" ] }, { @@ -12951,7 +13004,7 @@ "zh-cht": "裝置處於軟關機狀態(S5)", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->31->467" + "default.handlebars->31->476" ] }, { @@ -12973,8 +13026,8 @@ "xloc": [ "default-mobile.handlebars->11->190", "default-mobile.handlebars->11->246", - "default.handlebars->31->272", - "default.handlebars->31->604" + "default.handlebars->31->281", + "default.handlebars->31->613" ] }, { @@ -12995,7 +13048,7 @@ "zh-cht": "裝置已連接電源", "xloc": [ "default-mobile.handlebars->11->227", - "default.handlebars->31->462" + "default.handlebars->31->471" ] }, { @@ -13015,7 +13068,7 @@ "zh-chs": "设备已连接电源。", "zh-cht": "裝置已連接電源。", "xloc": [ - "default.handlebars->31->448" + "default.handlebars->31->457" ] }, { @@ -13036,7 +13089,7 @@ "zh-cht": "裝置存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->31->468" + "default.handlebars->31->477" ] }, { @@ -13056,7 +13109,7 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default.handlebars->31->596" + "default.handlebars->31->605" ] }, { @@ -13076,7 +13129,7 @@ "zh-chs": "设备通知", "zh-cht": "設備通知", "xloc": [ - "default.handlebars->31->490" + "default.handlebars->31->499" ] }, { @@ -13085,7 +13138,7 @@ "fr": "L'appareil a demandé l'activation d'Intel (R) AMT ACM TLS, nom de domaine complet: {0} ", "de": "Gerät angefordert Intel(R) AMT ACM TLS activation, FQDN: {0}", "xloc": [ - "default.handlebars->31->1886" + "default.handlebars->31->1925" ] }, { @@ -13105,7 +13158,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->31->1833" + "default.handlebars->31->1872" ] }, { @@ -13142,8 +13195,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->31->2022", - "default.handlebars->31->2062" + "default.handlebars->31->2063", + "default.handlebars->31->2103" ] }, { @@ -13164,7 +13217,7 @@ "zh-cht": "已禁用", "xloc": [ "default-mobile.handlebars->11->440", - "default.handlebars->31->663" + "default.handlebars->31->672" ] }, { @@ -13184,7 +13237,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->31->1864" + "default.handlebars->31->1903" ] }, { @@ -13208,8 +13261,8 @@ "default-mobile.handlebars->11->388", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->31->1038", - "default.handlebars->31->1525", + "default.handlebars->31->1047", + "default.handlebars->31->1564", "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", @@ -13261,10 +13314,10 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->termstatus", - "default.handlebars->31->264", - "default.handlebars->31->267", - "default.handlebars->31->284", - "default.handlebars->31->314", + "default.handlebars->31->273", + "default.handlebars->31->276", + "default.handlebars->31->293", + "default.handlebars->31->323", "default.handlebars->31->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", @@ -13297,7 +13350,7 @@ "zh-chs": "解雇", "zh-cht": "解僱", "xloc": [ - "default.handlebars->31->288" + "default.handlebars->31->297" ] }, { @@ -13317,7 +13370,7 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->31->811" + "default.handlebars->31->820" ] }, { @@ -13357,7 +13410,7 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->31->700" + "default.handlebars->31->709" ] }, { @@ -13377,7 +13430,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->31->1431" + "default.handlebars->31->1460" ] }, { @@ -13397,7 +13450,7 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->31->1005" + "default.handlebars->31->1014" ] }, { @@ -13417,7 +13470,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->31->1734" + "default.handlebars->31->1773" ] }, { @@ -13425,7 +13478,7 @@ "nl": "Scherm {0}", "fr": "Affichage {0}", "xloc": [ - "default.handlebars->31->1022" + "default.handlebars->31->1031" ] }, { @@ -13445,7 +13498,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->31->1793" + "default.handlebars->31->1832" ] }, { @@ -13465,7 +13518,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->31->1801" + "default.handlebars->31->1840" ] }, { @@ -13485,8 +13538,8 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->31->1572", - "default.handlebars->31->1576" + "default.handlebars->31->1611", + "default.handlebars->31->1615" ] }, { @@ -13506,10 +13559,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->31->1986", - "default.handlebars->31->2034", - "default.handlebars->31->2043", - "default.handlebars->31->2111", + "default.handlebars->31->2027", + "default.handlebars->31->2075", + "default.handlebars->31->2084", + "default.handlebars->31->2152", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -13531,7 +13584,7 @@ "zh-chs": "请勿更改,如果设置请保留CCM", "zh-cht": "請勿更改,如果設置請保留CCM", "xloc": [ - "default.handlebars->31->1568" + "default.handlebars->31->1607" ] }, { @@ -13568,7 +13621,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->31->1577" + "default.handlebars->31->1616" ] }, { @@ -13634,7 +13687,7 @@ "de": "runter", "xloc": [ "default-mobile.handlebars->11->370", - "default.handlebars->31->986" + "default.handlebars->31->995" ] }, { @@ -13698,7 +13751,7 @@ "zh-cht": "下載檔案", "xloc": [ "default-mobile.handlebars->11->418", - "default.handlebars->31->1077", + "default.handlebars->31->1086", "sharing.handlebars->11->82" ] }, @@ -13719,7 +13772,7 @@ "zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。", "zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->31->262" + "default.handlebars->31->271" ] }, { @@ -13739,7 +13792,7 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->31->936" + "default.handlebars->31->945" ] }, { @@ -13759,7 +13812,7 @@ "zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。", "zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。", "xloc": [ - "default.handlebars->31->260" + "default.handlebars->31->269" ] }, { @@ -13799,7 +13852,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->31->1904", + "default.handlebars->31->1945", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -13820,7 +13873,7 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->31->929" + "default.handlebars->31->938" ] }, { @@ -13900,7 +13953,7 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->31->885" + "default.handlebars->31->894" ] }, { @@ -13989,7 +14042,7 @@ "zh-chs": "使用以下一种档案格式下载设备列表。", "zh-cht": "使用以下一種檔案格式下載裝置列表。", "xloc": [ - "default.handlebars->31->537" + "default.handlebars->31->546" ] }, { @@ -14009,7 +14062,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->31->1905" + "default.handlebars->31->1946" ] }, { @@ -14029,7 +14082,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->31->1970" + "default.handlebars->31->2011" ] }, { @@ -14110,7 +14163,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->31->1824" + "default.handlebars->31->1863" ] }, { @@ -14119,7 +14172,7 @@ "fr": "Téléchargement : \\\"{0}\\\", Taille : {1}", "de": "Download: \\\"{0}\\\", Größe: {1}", "xloc": [ - "default.handlebars->31->1881" + "default.handlebars->31->1920" ] }, { @@ -14159,7 +14212,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->31->2321" + "default.handlebars->31->2362" ] }, { @@ -14199,7 +14252,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->31->2038" + "default.handlebars->31->2079" ] }, { @@ -14236,8 +14289,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->31->2234", - "default.handlebars->31->2260", + "default.handlebars->31->2275", + "default.handlebars->31->2301", "player.handlebars->3->2" ] }, @@ -14275,7 +14328,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->31->1271" + "default.handlebars->31->1280" ] }, { @@ -14295,7 +14348,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->31->1270" + "default.handlebars->31->1279" ] }, { @@ -14586,7 +14639,7 @@ "zh-cht": "編輯裝置", "xloc": [ "default-mobile.handlebars->11->347", - "default.handlebars->31->951" + "default.handlebars->31->960" ] }, { @@ -14609,10 +14662,10 @@ "default-mobile.handlebars->11->550", "default-mobile.handlebars->11->556", "default-mobile.handlebars->11->576", - "default.handlebars->31->1589", - "default.handlebars->31->1621", - "default.handlebars->31->1646", - "default.handlebars->31->1658" + "default.handlebars->31->1628", + "default.handlebars->31->1660", + "default.handlebars->31->1685", + "default.handlebars->31->1697" ] }, { @@ -14632,7 +14685,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->31->1607" + "default.handlebars->31->1646" ] }, { @@ -14652,8 +14705,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->31->1643", - "default.handlebars->31->1655" + "default.handlebars->31->1682", + "default.handlebars->31->1694" ] }, { @@ -14673,7 +14726,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->31->1590" + "default.handlebars->31->1629" ] }, { @@ -14694,7 +14747,7 @@ "zh-cht": "編輯裝置筆記", "xloc": [ "default-mobile.handlebars->11->568", - "default.handlebars->31->1635" + "default.handlebars->31->1674" ] }, { @@ -14714,8 +14767,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->31->1648", - "default.handlebars->31->1650" + "default.handlebars->31->1687", + "default.handlebars->31->1689" ] }, { @@ -14735,7 +14788,7 @@ "zh-chs": "编辑设备标签", "zh-cht": "編輯裝置標籤", "xloc": [ - "default.handlebars->31->519" + "default.handlebars->31->528" ] }, { @@ -14755,7 +14808,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->31->1592" + "default.handlebars->31->1631" ] }, { @@ -14775,7 +14828,7 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->31->784" + "default.handlebars->31->793" ] }, { @@ -14799,10 +14852,10 @@ "default-mobile.handlebars->11->275", "default-mobile.handlebars->11->276", "default-mobile.handlebars->11->337", - "default.handlebars->31->634", - "default.handlebars->31->639", - "default.handlebars->31->640", - "default.handlebars->31->892" + "default.handlebars->31->643", + "default.handlebars->31->648", + "default.handlebars->31->649", + "default.handlebars->31->901" ] }, { @@ -14823,7 +14876,7 @@ "zh-cht": "編輯筆記", "xloc": [ "default-mobile.handlebars->11->583", - "default.handlebars->31->1665" + "default.handlebars->31->1704" ] }, { @@ -14843,7 +14896,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->31->1591" + "default.handlebars->31->1630" ] }, { @@ -14863,7 +14916,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->31->1656" + "default.handlebars->31->1695" ] }, { @@ -14883,7 +14936,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->31->1651" + "default.handlebars->31->1690" ] }, { @@ -14903,7 +14956,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->31->2089" + "default.handlebars->31->2130" ] }, { @@ -14923,7 +14976,7 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->31->1653" + "default.handlebars->31->1692" ] }, { @@ -14943,7 +14996,7 @@ "zh-chs": "编辑用户组用户同意", "zh-cht": "編輯用戶組用戶同意", "xloc": [ - "default.handlebars->31->1593" + "default.handlebars->31->1632" ] }, { @@ -14985,7 +15038,7 @@ "zh-chs": "编辑标签", "zh-cht": "編輯標籤", "xloc": [ - "default.handlebars->31->491" + "default.handlebars->31->500" ] }, { @@ -15026,12 +15079,12 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->11->101", - "default.handlebars->31->1988", - "default.handlebars->31->2115", - "default.handlebars->31->2117", - "default.handlebars->31->2157", - "default.handlebars->31->2177", - "default.handlebars->31->362", + "default.handlebars->31->2029", + "default.handlebars->31->2156", + "default.handlebars->31->2158", + "default.handlebars->31->2198", + "default.handlebars->31->2218", + "default.handlebars->31->371", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->5->44", @@ -15063,7 +15116,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->31->1440" + "default.handlebars->31->1469" ] }, { @@ -15084,7 +15137,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->11->91", - "default.handlebars->31->1201" + "default.handlebars->31->1210" ] }, { @@ -15144,7 +15197,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->11->100", - "default.handlebars->31->1438" + "default.handlebars->31->1467" ] }, { @@ -15164,7 +15217,7 @@ "zh-chs": "电邮邀请", "zh-cht": "電郵邀請", "xloc": [ - "default.handlebars->31->359" + "default.handlebars->31->368" ] }, { @@ -15184,7 +15237,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->31->1934" + "default.handlebars->31->1975" ] }, { @@ -15204,8 +15257,8 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->31->1935", - "default.handlebars->31->2109" + "default.handlebars->31->1976", + "default.handlebars->31->2150" ] }, { @@ -15225,7 +15278,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->31->1994" + "default.handlebars->31->2035" ] }, { @@ -15245,7 +15298,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->31->2110" + "default.handlebars->31->2151" ] }, { @@ -15266,7 +15319,7 @@ "zh-cht": "電郵已發送。", "xloc": [ "default-mobile.handlebars->11->625", - "default.handlebars->31->2289", + "default.handlebars->31->2330", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->3" @@ -15311,7 +15364,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->31->1995" + "default.handlebars->31->2036" ] }, { @@ -15336,7 +15389,7 @@ "nl": "Email/SMS/Push verkeer", "de": "Email/SMS/Push-Verkehr", "xloc": [ - "default.handlebars->31->2365" + "default.handlebars->31->2406" ] }, { @@ -15382,7 +15435,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->31->1688" + "default.handlebars->31->1727" ] }, { @@ -15423,7 +15476,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->11->93", - "default.handlebars->31->1203" + "default.handlebars->31->1212" ] }, { @@ -15463,7 +15516,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->31->2262" + "default.handlebars->31->2303" ] }, { @@ -15483,7 +15536,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->31->1863" + "default.handlebars->31->1902" ] }, { @@ -15513,7 +15566,7 @@ "de": "Ende", "xloc": [ "default-mobile.handlebars->11->364", - "default.handlebars->31->980" + "default.handlebars->31->989" ] }, { @@ -15533,7 +15586,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->31->2259" + "default.handlebars->31->2300" ] }, { @@ -15553,7 +15606,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->31->1786" + "default.handlebars->31->1825" ] }, { @@ -15573,14 +15626,14 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->31->1787" + "default.handlebars->31->1826" ] }, { "en": "Ended messenger session \\\"{0}\\\" from {1} to {2}, {3} second(s)", "nl": "Beëindigde messengersessie \\\"{0}\\\" van {1} naar {2}, {3} second(s)", "xloc": [ - "default.handlebars->31->1887" + "default.handlebars->31->1926" ] }, { @@ -15600,7 +15653,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->31->1784" + "default.handlebars->31->1823" ] }, { @@ -15620,7 +15673,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->31->1785" + "default.handlebars->31->1824" ] }, { @@ -15640,7 +15693,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->31->1272" + "default.handlebars->31->1281" ] }, { @@ -15660,7 +15713,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->31->1273" + "default.handlebars->31->1282" ] }, { @@ -15680,7 +15733,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->31->1274" + "default.handlebars->31->1283" ] }, { @@ -15700,7 +15753,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->31->1275" + "default.handlebars->31->1284" ] }, { @@ -15720,7 +15773,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->31->1276" + "default.handlebars->31->1285" ] }, { @@ -15740,7 +15793,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->31->1277" + "default.handlebars->31->1286" ] }, { @@ -15760,7 +15813,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->31->1278" + "default.handlebars->31->1287" ] }, { @@ -15780,7 +15833,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->31->1279" + "default.handlebars->31->1288" ] }, { @@ -15800,7 +15853,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->31->1280" + "default.handlebars->31->1289" ] }, { @@ -15820,7 +15873,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->31->1281" + "default.handlebars->31->1290" ] }, { @@ -15840,7 +15893,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->31->1282" + "default.handlebars->31->1291" ] }, { @@ -15860,7 +15913,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->31->1283" + "default.handlebars->31->1292" ] }, { @@ -15880,7 +15933,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->31->1284" + "default.handlebars->31->1293" ] }, { @@ -15901,10 +15954,10 @@ "zh-cht": "輸入", "xloc": [ "default-mobile.handlebars->11->358", - "default.handlebars->31->1050", - "default.handlebars->31->1466", - "default.handlebars->31->1467", - "default.handlebars->31->974", + "default.handlebars->31->1059", + "default.handlebars->31->1495", + "default.handlebars->31->1496", + "default.handlebars->31->983", "sharing.handlebars->11->55" ] }, @@ -15925,7 +15978,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->31->1999" + "default.handlebars->31->2040" ] }, { @@ -15945,7 +15998,7 @@ "zh-chs": "输入IP地址范围以扫描英特尔AMT设备。", "zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。", "xloc": [ - "default.handlebars->31->350" + "default.handlebars->31->359" ] }, { @@ -15986,7 +16039,7 @@ "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->31->999" + "default.handlebars->31->1008" ] }, { @@ -16048,7 +16101,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->31->1198" + "default.handlebars->31->1207" ] }, { @@ -16078,7 +16131,7 @@ "de": "Fehler, Einladungscode \\\"{0}\\\" wird bereits verwendet.", "xloc": [ "default-mobile.handlebars->11->633", - "default.handlebars->31->2297" + "default.handlebars->31->2338" ] }, { @@ -16088,7 +16141,7 @@ "de": "Fehler, Password wurde nicht geändert.", "xloc": [ "default-mobile.handlebars->11->630", - "default.handlebars->31->2294" + "default.handlebars->31->2335" ] }, { @@ -16098,7 +16151,7 @@ "de": "Fehler, kann nicht zu häufig verwendeten Passwörtern geändert werden.", "xloc": [ "default-mobile.handlebars->11->629", - "default.handlebars->31->2293" + "default.handlebars->31->2334" ] }, { @@ -16108,7 +16161,7 @@ "de": "Fehler, Änderung des zuvor verwendeten Kennworts nicht möglich.", "xloc": [ "default-mobile.handlebars->11->628", - "default.handlebars->31->2292" + "default.handlebars->31->2333" ] }, { @@ -16137,7 +16190,7 @@ "nl": "Escape", "xloc": [ "default-mobile.handlebars->11->359", - "default.handlebars->31->975" + "default.handlebars->31->984" ] }, { @@ -16157,7 +16210,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->31->1285" + "default.handlebars->31->1294" ] }, { @@ -16177,7 +16230,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->31->1286" + "default.handlebars->31->1295" ] }, { @@ -16197,7 +16250,7 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->31->1090" + "default.handlebars->31->1099" ] }, { @@ -16217,7 +16270,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->31->1910" + "default.handlebars->31->1951" ] }, { @@ -16305,6 +16358,12 @@ "default.handlebars->expandAllContextMenu->1" ] }, + { + "en": "Expire", + "xloc": [ + "default.handlebars->31->240" + ] + }, { "cs": "Čas vypršení platnosti", "de": "Ablaufzeit", @@ -16322,8 +16381,9 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ + "default.handlebars->31->1457", "default.handlebars->31->207", - "default.handlebars->31->841" + "default.handlebars->31->850" ] }, { @@ -16365,6 +16425,7 @@ "zh-chs": "过期{0}", "zh-cht": "過期{0}", "xloc": [ + "default.handlebars->31->1509", "desktop.handlebars->3->27", "sharing.handlebars->11->95", "terminal.handlebars->3->25" @@ -16387,7 +16448,7 @@ "zh-chs": "输出设备信息", "zh-cht": "輸出裝置訊息", "xloc": [ - "default.handlebars->31->499" + "default.handlebars->31->508" ] }, { @@ -16407,7 +16468,7 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->31->1029", + "default.handlebars->31->1038", "sharing.handlebars->11->34", "terminal.handlebars->3->16" ] @@ -16451,7 +16512,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->31->2348" + "default.handlebars->31->2389" ] }, { @@ -16491,7 +16552,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->31->1336" + "default.handlebars->31->1345" ] }, { @@ -16511,7 +16572,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->31->1287" + "default.handlebars->31->1296" ] }, { @@ -16541,7 +16602,7 @@ "de": "Fehler beim ändern der E-Mail-Adresse, wird bereits von einem anderen Konto verwendet: {0}.", "xloc": [ "default-mobile.handlebars->11->624", - "default.handlebars->31->2288" + "default.handlebars->31->2329" ] }, { @@ -16567,7 +16628,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->31->1809" + "default.handlebars->31->1848" ] }, { @@ -16587,7 +16648,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->31->1816" + "default.handlebars->31->1855" ] }, { @@ -16608,7 +16669,7 @@ "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ "default-mobile.handlebars->11->350", - "default.handlebars->31->954", + "default.handlebars->31->963", "desktop.handlebars->3->8", "sharing.handlebars->11->30", "sharing.handlebars->11->8", @@ -16632,7 +16693,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->31->1288" + "default.handlebars->31->1297" ] }, { @@ -16675,7 +16736,7 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->31->1511" + "default.handlebars->31->1550" ] }, { @@ -16695,7 +16756,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->31->1289" + "default.handlebars->31->1298" ] }, { @@ -16736,8 +16797,8 @@ "zh-cht": "檔案編輯器", "xloc": [ "default-mobile.handlebars->11->402", - "default.handlebars->31->1061", - "default.handlebars->31->576", + "default.handlebars->31->1070", + "default.handlebars->31->585", "sharing.handlebars->11->66" ] }, @@ -16774,8 +16835,8 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->31->1041", - "default.handlebars->31->1043", + "default.handlebars->31->1050", + "default.handlebars->31->1052", "sharing.handlebars->11->46", "sharing.handlebars->11->48" ] @@ -16804,7 +16865,7 @@ "en": "File Transfer", "nl": "Bestandsoverdracht", "xloc": [ - "default.handlebars->31->2240" + "default.handlebars->31->2281" ] }, { @@ -16824,7 +16885,7 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->31->1008" + "default.handlebars->31->1017" ] }, { @@ -16846,11 +16907,11 @@ "xloc": [ "default-mobile.handlebars->11->202", "default-mobile.handlebars->11->300", - "default.handlebars->31->1601", - "default.handlebars->31->2247", - "default.handlebars->31->300", - "default.handlebars->31->755", - "default.handlebars->31->817", + "default.handlebars->31->1640", + "default.handlebars->31->2288", + "default.handlebars->31->309", + "default.handlebars->31->764", + "default.handlebars->31->826", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", "sharing.handlebars->LeftSideToolBar" @@ -16893,10 +16954,10 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->31->1519", - "default.handlebars->31->2055", - "default.handlebars->31->2142", - "default.handlebars->31->674" + "default.handlebars->31->1558", + "default.handlebars->31->2096", + "default.handlebars->31->2183", + "default.handlebars->31->683" ] }, { @@ -16916,10 +16977,10 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->31->1518", - "default.handlebars->31->2054", - "default.handlebars->31->2141", - "default.handlebars->31->673" + "default.handlebars->31->1557", + "default.handlebars->31->2095", + "default.handlebars->31->2182", + "default.handlebars->31->682" ] }, { @@ -16940,7 +17001,7 @@ "zh-cht": "過濾", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->31->1046", + "default.handlebars->31->1055", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -16985,7 +17046,7 @@ "zh-chs": "查找文件", "zh-cht": "查找文件", "xloc": [ - "default.handlebars->31->1049", + "default.handlebars->31->1058", "sharing.handlebars->11->54" ] }, @@ -17006,7 +17067,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->31->1782" + "default.handlebars->31->1821" ] }, { @@ -17026,7 +17087,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->31->1290" + "default.handlebars->31->1299" ] }, { @@ -17036,8 +17097,8 @@ "xloc": [ "default-mobile.handlebars->11->435", "default-mobile.handlebars->11->437", - "default.handlebars->31->658", - "default.handlebars->31->660" + "default.handlebars->31->667", + "default.handlebars->31->669" ] }, { @@ -17046,8 +17107,8 @@ "fr": "Pare-feu désactivé", "de": "Firewall nicht aktiv", "xloc": [ - "default.handlebars->31->1714", - "default.handlebars->31->1728" + "default.handlebars->31->1753", + "default.handlebars->31->1767" ] }, { @@ -17080,7 +17141,7 @@ "nl": "Flits", "xloc": [ "default-mobile.handlebars->11->304", - "default.handlebars->31->848" + "default.handlebars->31->857" ] }, { @@ -17141,7 +17202,7 @@ "zh-chs": "对于ACM激活,需要将英特尔®AMT设置为以下受信任的FQDN:", "zh-cht": "對於ACM激活,需要將英特爾®AMT設置為以下受信任的FQDN:", "xloc": [ - "default.handlebars->31->340" + "default.handlebars->31->349" ] }, { @@ -17210,7 +17271,7 @@ "nl": "Voor agent update", "de": "Für die Aktualisierung des Agenten", "xloc": [ - "default.handlebars->31->532" + "default.handlebars->31->541" ] }, { @@ -17219,7 +17280,7 @@ "fr": "Forcer la mise à jour de l'agent", "de": "Aktualisierung des Agenten erzwingen", "xloc": [ - "default.handlebars->31->494" + "default.handlebars->31->503" ] }, { @@ -17228,7 +17289,7 @@ "fr": "Forcer la mise à jour de l'agent sur les appareils sélectionnés", "de": "Agentenaktualisierung auf ausgewählten Geräten erzwingen?", "xloc": [ - "default.handlebars->31->531" + "default.handlebars->31->540" ] }, { @@ -17248,8 +17309,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->31->1993", - "default.handlebars->31->2188" + "default.handlebars->31->2034", + "default.handlebars->31->2229" ] }, { @@ -17332,7 +17393,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->31->1901" + "default.handlebars->31->1942" ] }, { @@ -17374,8 +17435,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->31->2306", - "default.handlebars->31->2308" + "default.handlebars->31->2347", + "default.handlebars->31->2349" ] }, { @@ -17416,7 +17477,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->31->1292" + "default.handlebars->31->1301" ] }, { @@ -17436,7 +17497,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->31->1293" + "default.handlebars->31->1302" ] }, { @@ -17456,7 +17517,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->31->1294" + "default.handlebars->31->1303" ] }, { @@ -17476,7 +17537,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->31->1295" + "default.handlebars->31->1304" ] }, { @@ -17496,7 +17557,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->31->1296" + "default.handlebars->31->1305" ] }, { @@ -17516,7 +17577,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->31->1291" + "default.handlebars->31->1300" ] }, { @@ -17536,7 +17597,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->31->1297" + "default.handlebars->31->1306" ] }, { @@ -17556,7 +17617,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->31->1298" + "default.handlebars->31->1307" ] }, { @@ -17576,7 +17637,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->31->1299" + "default.handlebars->31->1308" ] }, { @@ -17600,9 +17661,9 @@ "default-mobile.handlebars->11->542", "default-mobile.handlebars->11->555", "default-mobile.handlebars->11->575", - "default.handlebars->31->1473", - "default.handlebars->31->1620", - "default.handlebars->31->2005" + "default.handlebars->31->1502", + "default.handlebars->31->1659", + "default.handlebars->31->2046" ] }, { @@ -17622,7 +17683,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->31->1657" + "default.handlebars->31->1696" ] }, { @@ -17659,7 +17720,7 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->31->764" + "default.handlebars->31->773" ] }, { @@ -17679,7 +17740,7 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->31->783" + "default.handlebars->31->792" ] }, { @@ -17742,7 +17803,7 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->31->2103" + "default.handlebars->31->2144" ] }, { @@ -17762,8 +17823,8 @@ "zh-chs": "全自动的", "zh-cht": "全自動的", "xloc": [ - "default.handlebars->31->1536", - "default.handlebars->31->1559" + "default.handlebars->31->1575", + "default.handlebars->31->1598" ] }, { @@ -17784,7 +17845,7 @@ "zh-cht": "GPU", "xloc": [ "default-mobile.handlebars->11->499", - "default.handlebars->31->1159" + "default.handlebars->31->1168" ] }, { @@ -17804,7 +17865,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->31->1301" + "default.handlebars->31->1310" ] }, { @@ -17824,7 +17885,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->31->1300" + "default.handlebars->31->1309" ] }, { @@ -17844,7 +17905,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->31->1302" + "default.handlebars->31->1311" ] }, { @@ -17930,7 +17991,7 @@ "zh-chs": "一般信息", "zh-cht": "一般訊息", "xloc": [ - "default.handlebars->31->583" + "default.handlebars->31->592" ] }, { @@ -17970,7 +18031,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->31->1303" + "default.handlebars->31->1312" ] }, { @@ -17990,7 +18051,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->31->1305" + "default.handlebars->31->1314" ] }, { @@ -18010,7 +18071,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->31->1306" + "default.handlebars->31->1315" ] }, { @@ -18030,7 +18091,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->31->1307" + "default.handlebars->31->1316" ] }, { @@ -18050,7 +18111,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->31->1308" + "default.handlebars->31->1317" ] }, { @@ -18070,7 +18131,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->31->1304" + "default.handlebars->31->1313" ] }, { @@ -18090,7 +18151,7 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->31->1309" + "default.handlebars->31->1318" ] }, { @@ -18110,7 +18171,7 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->31->728" + "default.handlebars->31->737" ] }, { @@ -18151,7 +18212,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->31->1796" + "default.handlebars->31->1835" ] }, { @@ -18213,7 +18274,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->31->1469" + "default.handlebars->31->1498" ] }, { @@ -18258,8 +18319,8 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->31->1480", - "default.handlebars->31->1483", + "default.handlebars->31->1519", + "default.handlebars->31->1522", "default.handlebars->31->229" ] }, @@ -18280,7 +18341,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->31->1477" + "default.handlebars->31->1516" ] }, { @@ -18320,7 +18381,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->31->1481" + "default.handlebars->31->1520" ] }, { @@ -18348,7 +18409,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->31->1310" + "default.handlebars->31->1319" ] }, { @@ -18369,7 +18430,7 @@ "zh-cht": "群", "xloc": [ "default-mobile.handlebars->11->249", - "default.handlebars->31->611", + "default.handlebars->31->620", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -18390,9 +18451,9 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->31->1949", - "default.handlebars->31->2028", - "default.handlebars->31->500", + "default.handlebars->31->1990", + "default.handlebars->31->2069", + "default.handlebars->31->509", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->3" @@ -18415,7 +18476,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->31->1897" + "default.handlebars->31->1938" ] }, { @@ -18435,7 +18496,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->31->2045" + "default.handlebars->31->2086" ] }, { @@ -18455,7 +18516,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->31->2066" + "default.handlebars->31->2107" ] }, { @@ -18475,7 +18536,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->31->1619" + "default.handlebars->31->1658" ] }, { @@ -18495,7 +18556,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->31->1618" + "default.handlebars->31->1657" ] }, { @@ -18576,7 +18637,7 @@ "zh-cht": "來賓姓名", "xloc": [ "default.handlebars->31->202", - "default.handlebars->31->814" + "default.handlebars->31->823" ] }, { @@ -18584,8 +18645,8 @@ "nl": "Gast delen", "de": "Mit einem Gast Teilen", "xloc": [ - "default.handlebars->31->771", - "default.handlebars->31->793" + "default.handlebars->31->780", + "default.handlebars->31->802" ] }, { @@ -18593,7 +18654,7 @@ "nl": "Gastdeling", "de": "Mit einem Gast Teilen", "xloc": [ - "default.handlebars->31->1627" + "default.handlebars->31->1666" ] }, { @@ -18613,7 +18674,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->31->1311" + "default.handlebars->31->1320" ] }, { @@ -18657,7 +18718,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->31->1312" + "default.handlebars->31->1321" ] }, { @@ -18698,7 +18759,7 @@ "zh-cht": "強行斷開代理", "xloc": [ "default-mobile.handlebars->11->529", - "default.handlebars->31->1190" + "default.handlebars->31->1199" ] }, { @@ -18718,7 +18779,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->31->2350" + "default.handlebars->31->2391" ] }, { @@ -18738,7 +18799,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->31->2349" + "default.handlebars->31->2390" ] }, { @@ -18758,7 +18819,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->31->1313" + "default.handlebars->31->1322" ] }, { @@ -18819,7 +18880,7 @@ "zh-chs": "已请求帮助,用户:{0},详细信息:{1}", "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "xloc": [ - "default.handlebars->31->1873" + "default.handlebars->31->1912" ] }, { @@ -18840,7 +18901,7 @@ "zh-cht": "幫助請求", "xloc": [ "default-mobile.handlebars->11->192", - "default.handlebars->31->289" + "default.handlebars->31->298" ] }, { @@ -18880,7 +18941,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->31->1428" + "default.handlebars->31->1437" ] }, { @@ -18963,7 +19024,7 @@ "xloc": [ "default-mobile.handlebars->11->217", "default-mobile.handlebars->11->224", - "default.handlebars->31->457", + "default.handlebars->31->466", "default.handlebars->31->5" ] }, @@ -18984,7 +19045,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->31->1314" + "default.handlebars->31->1323" ] }, { @@ -19022,7 +19083,7 @@ "zh-cht": "保存1個項目進行複製", "xloc": [ "default-mobile.handlebars->11->411", - "default.handlebars->31->1071", + "default.handlebars->31->1080", "sharing.handlebars->11->76" ] }, @@ -19044,7 +19105,7 @@ "zh-cht": "保存1個項目進行移動", "xloc": [ "default-mobile.handlebars->11->415", - "default.handlebars->31->1075", + "default.handlebars->31->1084", "sharing.handlebars->11->80" ] }, @@ -19066,7 +19127,7 @@ "zh-cht": "保留{0}個項目進行複製", "xloc": [ "default-mobile.handlebars->11->409", - "default.handlebars->31->1069", + "default.handlebars->31->1078", "sharing.handlebars->11->74" ] }, @@ -19088,7 +19149,7 @@ "zh-cht": "保存{0}個項目以進行移動", "xloc": [ "default-mobile.handlebars->11->413", - "default.handlebars->31->1073", + "default.handlebars->31->1082", "sharing.handlebars->11->78" ] }, @@ -19110,7 +19171,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->11->152", - "default.handlebars->31->1769" + "default.handlebars->31->1808" ] }, { @@ -19119,7 +19180,7 @@ "nl": "Home", "xloc": [ "default-mobile.handlebars->11->363", - "default.handlebars->31->979" + "default.handlebars->31->988" ] }, { @@ -19144,10 +19205,10 @@ "default-mobile.handlebars->11->254", "default-mobile.handlebars->11->343", "default-mobile.handlebars->11->458", - "default.handlebars->31->1108", - "default.handlebars->31->330", - "default.handlebars->31->616", - "default.handlebars->31->947" + "default.handlebars->31->1117", + "default.handlebars->31->339", + "default.handlebars->31->625", + "default.handlebars->31->956" ] }, { @@ -19167,7 +19228,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->31->1508" + "default.handlebars->31->1547" ] }, { @@ -19187,7 +19248,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->31->1315" + "default.handlebars->31->1324" ] }, { @@ -19207,8 +19268,8 @@ "zh-chs": "IP范围", "zh-cht": "IP範圍", "xloc": [ - "default.handlebars->31->351", - "default.handlebars->31->353" + "default.handlebars->31->360", + "default.handlebars->31->362" ] }, { @@ -19250,9 +19311,9 @@ "zh-chs": "IP:{0}", "zh-cht": "IP:{0}", "xloc": [ - "default.handlebars->31->1118", - "default.handlebars->31->1128", - "default.handlebars->31->1132" + "default.handlebars->31->1127", + "default.handlebars->31->1137", + "default.handlebars->31->1141" ] }, { @@ -19272,9 +19333,9 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default.handlebars->31->1116", - "default.handlebars->31->1126", - "default.handlebars->31->1130" + "default.handlebars->31->1125", + "default.handlebars->31->1135", + "default.handlebars->31->1139" ] }, { @@ -19296,10 +19357,10 @@ "xloc": [ "default-mobile.handlebars->11->465", "default-mobile.handlebars->11->467", - "default.handlebars->31->1115", - "default.handlebars->31->1117", - "default.handlebars->31->1125", - "default.handlebars->31->1127" + "default.handlebars->31->1124", + "default.handlebars->31->1126", + "default.handlebars->31->1134", + "default.handlebars->31->1136" ] }, { @@ -19384,8 +19445,8 @@ "xloc": [ "default-mobile.handlebars->11->469", "default-mobile.handlebars->11->471", - "default.handlebars->31->1129", - "default.handlebars->31->1131" + "default.handlebars->31->1138", + "default.handlebars->31->1140" ] }, { @@ -19465,7 +19526,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->31->1316" + "default.handlebars->31->1325" ] }, { @@ -19486,7 +19547,7 @@ "zh-cht": "圖符選擇", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->31->945" + "default.handlebars->31->954" ] }, { @@ -19508,8 +19569,8 @@ "xloc": [ "default-mobile.handlebars->11->457", "default-mobile.handlebars->11->497", - "default.handlebars->31->1107", - "default.handlebars->31->1157" + "default.handlebars->31->1116", + "default.handlebars->31->1166" ] }, { @@ -19529,7 +19590,7 @@ "zh-chs": "如果在CCM中,请重新激活英特尔®AMT", "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "xloc": [ - "default.handlebars->31->1573" + "default.handlebars->31->1612" ] }, { @@ -19643,14 +19704,14 @@ "en": "In order to use push notification authentication, a mobile device must be setup in your account with full rights.", "nl": "Om authenticatie met pushmeldingen te gebruiken, moet een mobiel apparaat met volledige rechten in uw account zijn ingesteld.", "xloc": [ - "default.handlebars->31->1211" + "default.handlebars->31->1220" ] }, { "en": "Include device details", "nl": "Voeg apparaatdetails toe", "xloc": [ - "default.handlebars->31->542" + "default.handlebars->31->551" ] }, { @@ -19691,9 +19752,9 @@ "zh-cht": "個別裝置", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->31->243", - "default.handlebars->31->244", - "default.handlebars->31->245" + "default.handlebars->31->252", + "default.handlebars->31->253", + "default.handlebars->31->254" ] }, { @@ -19713,7 +19774,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->31->1317" + "default.handlebars->31->1326" ] }, { @@ -19786,7 +19847,7 @@ "de": "Einfügen", "xloc": [ "default-mobile.handlebars->11->361", - "default.handlebars->31->977" + "default.handlebars->31->986" ] }, { @@ -19918,11 +19979,11 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->31->1690", - "default.handlebars->31->1697", - "default.handlebars->31->377", - "default.handlebars->31->391", - "default.handlebars->31->406" + "default.handlebars->31->1729", + "default.handlebars->31->1736", + "default.handlebars->31->386", + "default.handlebars->31->400", + "default.handlebars->31->415" ] }, { @@ -19942,7 +20003,7 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->31->1031", + "default.handlebars->31->1040", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons", "sharing.handlebars->11->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons", @@ -19967,7 +20028,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->31->2346" + "default.handlebars->31->2387" ] }, { @@ -19975,7 +20036,7 @@ "fr": "Gestionnaire Intel AMT", "nl": "Intel AMT beheerder", "xloc": [ - "default.handlebars->31->2372" + "default.handlebars->31->2413" ] }, { @@ -19995,7 +20056,7 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->31->1030", + "default.handlebars->31->1039", "sharing.handlebars->11->35", "terminal.handlebars->3->17" ] @@ -20020,14 +20081,14 @@ "default-mobile.handlebars->11->236", "default-mobile.handlebars->11->278", "default-mobile.handlebars->11->283", - "default.handlebars->31->1526", - "default.handlebars->31->1537", - "default.handlebars->31->1709", - "default.handlebars->31->1722", - "default.handlebars->31->2371", - "default.handlebars->31->586", - "default.handlebars->31->644", - "default.handlebars->31->684" + "default.handlebars->31->1565", + "default.handlebars->31->1576", + "default.handlebars->31->1748", + "default.handlebars->31->1761", + "default.handlebars->31->2412", + "default.handlebars->31->595", + "default.handlebars->31->653", + "default.handlebars->31->693" ] }, { @@ -20047,7 +20108,7 @@ "zh-chs": "英特尔®AMT ACM", "zh-cht": "英特爾®AMT ACM", "xloc": [ - "default.handlebars->31->349" + "default.handlebars->31->358" ] }, { @@ -20068,7 +20129,7 @@ "zh-cht": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->11->282", - "default.handlebars->31->682" + "default.handlebars->31->691" ] }, { @@ -20128,9 +20189,9 @@ "zh-chs": "英特尔®AMT CIRA已连接并可以使用。", "zh-cht": "Intel® AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->31->276", - "default.handlebars->31->471", - "default.handlebars->31->681" + "default.handlebars->31->285", + "default.handlebars->31->480", + "default.handlebars->31->690" ] }, { @@ -20184,8 +20245,8 @@ "nl": "Intel® AMT herstel met één klik", "fr": "Récupération en un clic Intel® AMT", "xloc": [ - "default.handlebars->31->863", - "default.handlebars->31->876" + "default.handlebars->31->872", + "default.handlebars->31->885" ] }, { @@ -20205,7 +20266,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->31->1560" + "default.handlebars->31->1599" ] }, { @@ -20217,9 +20278,9 @@ "default-mobile.handlebars->11->320", "default-mobile.handlebars->11->322", "default-mobile.handlebars->11->324", - "default.handlebars->31->877", - "default.handlebars->31->879", - "default.handlebars->31->881" + "default.handlebars->31->886", + "default.handlebars->31->888", + "default.handlebars->31->890" ] }, { @@ -20229,7 +20290,7 @@ "de": "Intel® AMT Ausschalten", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->31->862" + "default.handlebars->31->871" ] }, { @@ -20239,7 +20300,7 @@ "de": "Intel® AMT Einschalten", "xloc": [ "default-mobile.handlebars->11->315", - "default.handlebars->31->861" + "default.handlebars->31->870" ] }, { @@ -20259,8 +20320,8 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->31->2242", - "default.handlebars->31->2249", + "default.handlebars->31->2283", + "default.handlebars->31->2290", "player.handlebars->3->14" ] }, @@ -20271,7 +20332,7 @@ "de": "Intel® AMT Zurücksetzen", "xloc": [ "default-mobile.handlebars->11->314", - "default.handlebars->31->860" + "default.handlebars->31->869" ] }, { @@ -20295,7 +20356,7 @@ "zh-chs": "英特尔®AMT标签", "zh-cht": "Intel® AMT標籤", "xloc": [ - "default.handlebars->31->648" + "default.handlebars->31->657" ] }, { @@ -20315,8 +20376,8 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->31->2241", - "default.handlebars->31->2248", + "default.handlebars->31->2282", + "default.handlebars->31->2289", "player.handlebars->3->13" ] }, @@ -20355,8 +20416,8 @@ "zh-cht": "Intel ®AMT已連接", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->31->734", - "default.handlebars->31->735" + "default.handlebars->31->743", + "default.handlebars->31->744" ] }, { @@ -20376,8 +20437,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->31->1434", - "default.handlebars->31->1705" + "default.handlebars->31->1463", + "default.handlebars->31->1744" ] }, { @@ -20399,8 +20460,8 @@ "xloc": [ "default-mobile.handlebars->11->294", "default.handlebars->31->179", - "default.handlebars->31->736", - "default.handlebars->31->737" + "default.handlebars->31->745", + "default.handlebars->31->746" ] }, { @@ -20424,7 +20485,7 @@ "zh-chs": "在Intel® AMT尔AMT", "zh-cht": "在管理控制模式下啟動了Intel® AMT", "xloc": [ - "default.handlebars->31->630" + "default.handlebars->31->639" ] }, { @@ -20444,7 +20505,7 @@ "zh-chs": "英特尔AMT在客户端控制模式下被激活", "zh-cht": "Intel® AMT在客户端控制模式下被启动", "xloc": [ - "default.handlebars->31->628" + "default.handlebars->31->637" ] }, { @@ -20464,7 +20525,7 @@ "zh-chs": "英特尔®AMT可路由并可以使用。", "zh-cht": "Intel® AMT可路由並可以使用。", "xloc": [ - "default.handlebars->31->683" + "default.handlebars->31->692" ] }, { @@ -20484,8 +20545,8 @@ "zh-chs": "英特尔®AMT是可路由的。", "zh-cht": "Intel® AMT是可路由的。", "xloc": [ - "default.handlebars->31->278", - "default.handlebars->31->473" + "default.handlebars->31->287", + "default.handlebars->31->482" ] }, { @@ -20506,7 +20567,7 @@ "zh-cht": "Intel® AMT已設置TLS網絡安全性", "xloc": [ "default-mobile.handlebars->11->268", - "default.handlebars->31->632" + "default.handlebars->31->641" ] }, { @@ -20567,8 +20628,8 @@ "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ "default-mobile.handlebars->11->532", - "default.handlebars->31->1463", - "default.handlebars->31->1498" + "default.handlebars->31->1492", + "default.handlebars->31->1537" ] }, { @@ -20588,7 +20649,7 @@ "zh-chs": "英特尔®AMT设置", "zh-cht": "英特爾®AMT設置", "xloc": [ - "default.handlebars->31->341" + "default.handlebars->31->350" ] }, { @@ -20625,7 +20686,7 @@ "zh-chs": "英特尔®主动管理技术", "zh-cht": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->31->643" + "default.handlebars->31->652" ] }, { @@ -20646,7 +20707,7 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ "default-mobile.handlebars->11->489", - "default.handlebars->31->1149" + "default.handlebars->31->1158" ] }, { @@ -20667,7 +20728,7 @@ "zh-cht": "Intel® ME", "xloc": [ "default-mobile.handlebars->11->277", - "default.handlebars->31->642" + "default.handlebars->31->651" ] }, { @@ -20687,7 +20748,7 @@ "zh-chs": "英特尔®可管理性引擎", "zh-cht": "Intel® Management Engine", "xloc": [ - "default.handlebars->31->641" + "default.handlebars->31->650" ] }, { @@ -20708,7 +20769,7 @@ "zh-cht": "Intel® M", "xloc": [ "default-mobile.handlebars->11->279", - "default.handlebars->31->646" + "default.handlebars->31->655" ] }, { @@ -20728,7 +20789,7 @@ "zh-chs": "英特尔®标准可管理性", "zh-cht": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->31->645" + "default.handlebars->31->654" ] }, { @@ -20854,7 +20915,7 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->31->1009" + "default.handlebars->31->1018" ] }, { @@ -20874,11 +20935,11 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->31->1693", - "default.handlebars->31->1700", - "default.handlebars->31->380", - "default.handlebars->31->394", - "default.handlebars->31->409" + "default.handlebars->31->1732", + "default.handlebars->31->1739", + "default.handlebars->31->389", + "default.handlebars->31->403", + "default.handlebars->31->418" ] }, { @@ -20898,7 +20959,7 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->31->710" + "default.handlebars->31->719" ] }, { @@ -20918,7 +20979,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->31->1318" + "default.handlebars->31->1327" ] }, { @@ -20928,7 +20989,7 @@ "de": "Ungültige 2FA", "xloc": [ "default-mobile.handlebars->11->75", - "default.handlebars->31->232" + "default.handlebars->31->233" ] }, { @@ -20949,7 +21010,7 @@ "zh-cht": "無效證件", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->31->637" + "default.handlebars->31->646" ] }, { @@ -20969,7 +21030,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->31->2320" + "default.handlebars->31->2361" ] }, { @@ -20989,7 +21050,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->31->2314" + "default.handlebars->31->2355" ] }, { @@ -21009,8 +21070,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->31->1967", - "default.handlebars->31->1969" + "default.handlebars->31->2008", + "default.handlebars->31->2010" ] }, { @@ -21030,7 +21091,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->31->1965" + "default.handlebars->31->2006" ] }, { @@ -21050,7 +21111,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->31->2312" + "default.handlebars->31->2353" ] }, { @@ -21070,7 +21131,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->31->2313" + "default.handlebars->31->2354" ] }, { @@ -21080,7 +21141,7 @@ "de": "Ungültige SMS Nachricht", "xloc": [ "default-mobile.handlebars->11->636", - "default.handlebars->31->2300" + "default.handlebars->31->2341" ] }, { @@ -21112,7 +21173,7 @@ "de": "Ungültige Domain", "xloc": [ "default-mobile.handlebars->11->616", - "default.handlebars->31->2280" + "default.handlebars->31->2321" ] }, { @@ -21122,7 +21183,7 @@ "de": "Ungültige Email", "xloc": [ "default-mobile.handlebars->11->615", - "default.handlebars->31->2279" + "default.handlebars->31->2320" ] }, { @@ -21196,8 +21257,8 @@ "xloc": [ "default-mobile.handlebars->11->614", "default-mobile.handlebars->11->77", - "default.handlebars->31->2278", - "default.handlebars->31->234" + "default.handlebars->31->2319", + "default.handlebars->31->235" ] }, { @@ -21207,7 +21268,7 @@ "de": "Ungültige Berechtigung der Seite", "xloc": [ "default-mobile.handlebars->11->617", - "default.handlebars->31->2281" + "default.handlebars->31->2322" ] }, { @@ -21238,7 +21299,7 @@ "fr": "Tentative de connexion invalide de {0}, {1}, {2}", "de": "Ungültiger Anmeldeversuch von", "xloc": [ - "default.handlebars->31->1885" + "default.handlebars->31->1924" ] }, { @@ -21248,7 +21309,7 @@ "de": "Ungültiger Benutzername", "xloc": [ "default-mobile.handlebars->11->613", - "default.handlebars->31->2277" + "default.handlebars->31->2318" ] }, { @@ -21268,7 +21329,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->31->1943" + "default.handlebars->31->1984" ] }, { @@ -21325,7 +21386,7 @@ "zh-chs": "邀请类型", "zh-cht": "邀請類型", "xloc": [ - "default.handlebars->31->357" + "default.handlebars->31->366" ] }, { @@ -21345,7 +21406,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->31->1695" + "default.handlebars->31->1734" ] }, { @@ -21385,9 +21446,9 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->31->1547", - "default.handlebars->31->327", - "default.handlebars->31->396" + "default.handlebars->31->1586", + "default.handlebars->31->336", + "default.handlebars->31->405" ] }, { @@ -21408,12 +21469,12 @@ "zh-cht": "邀請碼", "xloc": [ "default-mobile.handlebars->11->611", - "default.handlebars->31->1530", - "default.handlebars->31->1689", - "default.handlebars->31->1694", - "default.handlebars->31->1696", - "default.handlebars->31->1701", - "default.handlebars->31->2275" + "default.handlebars->31->1569", + "default.handlebars->31->1728", + "default.handlebars->31->1733", + "default.handlebars->31->1735", + "default.handlebars->31->1740", + "default.handlebars->31->2316" ] }, { @@ -21433,7 +21494,7 @@ "zh-chs": "通过共享邀请连结来邀请某人安装网格代理。该连结为用户提供“ {0} ”设备组的安装说明。该连结是公用的,不需要这服务器的帐户。", "zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。", "xloc": [ - "default.handlebars->31->383" + "default.handlebars->31->392" ] }, { @@ -21453,8 +21514,8 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->31->1546", - "default.handlebars->31->326" + "default.handlebars->31->1585", + "default.handlebars->31->335" ] }, { @@ -21474,7 +21535,7 @@ "zh-chs": "邀请某人安装网状代理。将发送一封电邮,其中包含指向“ {0} ”设备组的网状代理安装的连结。", "zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。", "xloc": [ - "default.handlebars->31->360" + "default.handlebars->31->369" ] }, { @@ -21494,7 +21555,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->31->1319" + "default.handlebars->31->1328" ] }, { @@ -21514,7 +21575,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->31->1320" + "default.handlebars->31->1329" ] }, { @@ -21534,7 +21595,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->31->1321" + "default.handlebars->31->1330" ] }, { @@ -21554,7 +21615,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->31->1903" + "default.handlebars->31->1944" ] }, { @@ -21574,9 +21635,9 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->31->1908", - "default.handlebars->31->1973", - "default.handlebars->31->540" + "default.handlebars->31->1949", + "default.handlebars->31->2014", + "default.handlebars->31->549" ] }, { @@ -21596,7 +21657,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->31->1322" + "default.handlebars->31->1331" ] }, { @@ -21616,7 +21677,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->31->1779" + "default.handlebars->31->1818" ] }, { @@ -21636,7 +21697,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->31->1323" + "default.handlebars->31->1332" ] }, { @@ -21656,7 +21717,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->31->1324" + "default.handlebars->31->1333" ] }, { @@ -21676,7 +21737,7 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->31->1325" + "default.handlebars->31->1334" ] }, { @@ -21696,7 +21757,7 @@ "zh-chs": "保留现有密码", "zh-cht": "保留現有密碼", "xloc": [ - "default.handlebars->31->1561" + "default.handlebars->31->1600" ] }, { @@ -21716,7 +21777,7 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->31->1010" + "default.handlebars->31->1019" ] }, { @@ -21736,8 +21797,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->31->1216", - "default.handlebars->31->1219" + "default.handlebars->31->1225", + "default.handlebars->31->1228" ] }, { @@ -21764,7 +21825,7 @@ "de": "Anpassung der Tastaturkürzel", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->31->997" + "default.handlebars->31->1006" ] }, { @@ -21801,7 +21862,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->31->1326" + "default.handlebars->31->1335" ] }, { @@ -21821,7 +21882,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->31->1794" + "default.handlebars->31->1833" ] }, { @@ -21841,7 +21902,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->31->1327" + "default.handlebars->31->1336" ] }, { @@ -21861,7 +21922,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->31->1328" + "default.handlebars->31->1337" ] }, { @@ -21882,7 +21943,7 @@ "zh-cht": "已知的", "xloc": [ "default-mobile.handlebars->11->488", - "default.handlebars->31->1148" + "default.handlebars->31->1157" ] }, { @@ -21902,7 +21963,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->31->1329" + "default.handlebars->31->1338" ] }, { @@ -21922,7 +21983,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->31->1330" + "default.handlebars->31->1339" ] }, { @@ -21942,7 +22003,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->31->1331" + "default.handlebars->31->1340" ] }, { @@ -21962,8 +22023,8 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->31->1026", "default.handlebars->31->1035", + "default.handlebars->31->1044", "sharing.handlebars->11->26", "sharing.handlebars->11->40", "terminal.handlebars->3->22", @@ -21987,7 +22048,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->31->1426" + "default.handlebars->31->1435" ] }, { @@ -22027,7 +22088,7 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->31->971" + "default.handlebars->31->980" ] }, { @@ -22240,7 +22301,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->31->1916" + "default.handlebars->31->1957" ] }, { @@ -22260,7 +22321,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->31->2124" + "default.handlebars->31->2165" ] }, { @@ -22283,9 +22344,9 @@ "default-mobile.handlebars->11->449", "default-mobile.handlebars->11->450", "default-mobile.handlebars->11->451", - "default.handlebars->31->1099", - "default.handlebars->31->1100", - "default.handlebars->31->1101", + "default.handlebars->31->1108", + "default.handlebars->31->1109", + "default.handlebars->31->1110", "default.handlebars->31->84", "default.handlebars->31->86", "default.handlebars->31->88" @@ -22310,8 +22371,8 @@ "xloc": [ "default-mobile.handlebars->11->446", "default-mobile.handlebars->11->448", - "default.handlebars->31->1096", - "default.handlebars->31->1098", + "default.handlebars->31->1105", + "default.handlebars->31->1107", "default.handlebars->31->83" ] }, @@ -22332,7 +22393,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->31->2128" + "default.handlebars->31->2169" ] }, { @@ -22392,7 +22453,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->31->1926" + "default.handlebars->31->1967" ] }, { @@ -22412,7 +22473,7 @@ "zh-chs": "最后一次发现:", "zh-cht": "最後一次發現:", "xloc": [ - "default.handlebars->31->740", + "default.handlebars->31->749", "default.handlebars->31->80" ] }, @@ -22493,7 +22554,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->31->1332" + "default.handlebars->31->1341" ] }, { @@ -22513,7 +22574,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->31->1333" + "default.handlebars->31->1342" ] }, { @@ -22533,7 +22594,7 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->31->918" + "default.handlebars->31->927" ] }, { @@ -22553,7 +22614,7 @@ "zh-chs": "启动noVNC连接到此设备", "zh-cht": "啟動noVNC連接到此裝置", "xloc": [ - "default.handlebars->31->724" + "default.handlebars->31->733" ] }, { @@ -22573,7 +22634,7 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->31->726" + "default.handlebars->31->735" ] }, { @@ -22593,7 +22654,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->31->2172" + "default.handlebars->31->2213" ] }, { @@ -22603,7 +22664,7 @@ "de": "links", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->31->983" + "default.handlebars->31->992" ] }, { @@ -22648,7 +22709,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->31->1780" + "default.handlebars->31->1819" ] }, { @@ -22668,7 +22729,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->31->2393" + "default.handlebars->31->2434" ] }, { @@ -22698,8 +22759,8 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->31->777", - "default.handlebars->31->799" + "default.handlebars->31->786", + "default.handlebars->31->808" ] }, { @@ -22741,9 +22802,9 @@ "zh-cht": "有限輸入", "xloc": [ "default-mobile.handlebars->11->588", - "default.handlebars->31->1671", - "default.handlebars->31->769", - "default.handlebars->31->791" + "default.handlebars->31->1710", + "default.handlebars->31->778", + "default.handlebars->31->800" ] }, { @@ -22764,7 +22825,7 @@ "zh-cht": "僅有限輸入", "xloc": [ "default-mobile.handlebars->11->561", - "default.handlebars->31->1626" + "default.handlebars->31->1665" ] }, { @@ -22805,8 +22866,8 @@ "zh-chs": "连结过期", "zh-cht": "鏈結過期", "xloc": [ - "default.handlebars->31->370", - "default.handlebars->31->384" + "default.handlebars->31->379", + "default.handlebars->31->393" ] }, { @@ -22826,14 +22887,14 @@ "zh-chs": "连结邀请", "zh-cht": "鏈結邀請", "xloc": [ - "default.handlebars->31->358" + "default.handlebars->31->367" ] }, { "en": "Links", "nl": "Links", "xloc": [ - "default.handlebars->31->253" + "default.handlebars->31->262" ] }, { @@ -22874,7 +22935,7 @@ "zh-chs": "Linux / BSD", "zh-cht": "Linux / BSD", "xloc": [ - "default.handlebars->31->398" + "default.handlebars->31->407" ] }, { @@ -22894,7 +22955,7 @@ "zh-chs": "Linux / BSD(卸载)", "zh-cht": "Linux / BSD(解除安裝)", "xloc": [ - "default.handlebars->31->403" + "default.handlebars->31->412" ] }, { @@ -22914,7 +22975,7 @@ "zh-chs": "Linux / BSD / macOS二进制安装程序", "zh-cht": "Linux / BSD / macOS二進制安裝軟體", "xloc": [ - "default.handlebars->31->399" + "default.handlebars->31->408" ] }, { @@ -23018,7 +23079,7 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->31->926" + "default.handlebars->31->935" ] }, { @@ -23038,7 +23099,7 @@ "zh-chs": "Linux ARM, Raspberry Pi (64位)", "zh-cht": "Linux ARM, Raspberry Pi (64位)", "xloc": [ - "default.handlebars->31->927" + "default.handlebars->31->936" ] }, { @@ -23100,7 +23161,7 @@ "zh-chs": "Linux路径", "zh-cht": "Linux路徑", "xloc": [ - "default.handlebars->31->527" + "default.handlebars->31->536" ] }, { @@ -23162,7 +23223,7 @@ "zh-chs": "只限Linux", "zh-cht": "只限Linux", "xloc": [ - "default.handlebars->31->369" + "default.handlebars->31->378" ] }, { @@ -23182,7 +23243,7 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->31->923" + "default.handlebars->31->932" ] }, { @@ -23202,7 +23263,7 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->31->922" + "default.handlebars->31->931" ] }, { @@ -23222,8 +23283,8 @@ "zh-chs": "Linux / BSD / macOS命令外壳", "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ - "default.handlebars->31->507", - "default.handlebars->31->871" + "default.handlebars->31->516", + "default.handlebars->31->880" ] }, { @@ -23281,7 +23342,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->31->1334" + "default.handlebars->31->1343" ] }, { @@ -23323,13 +23384,13 @@ "xloc": [ "default-mobile.handlebars->11->80", "default-mobile.handlebars->11->95", - "default.handlebars->31->1193", - "default.handlebars->31->1205", - "default.handlebars->31->1489", - "default.handlebars->31->1493", - "default.handlebars->31->2183", - "default.handlebars->31->2230", - "default.handlebars->31->913" + "default.handlebars->31->1202", + "default.handlebars->31->1214", + "default.handlebars->31->1528", + "default.handlebars->31->1532", + "default.handlebars->31->2224", + "default.handlebars->31->2271", + "default.handlebars->31->922" ] }, { @@ -23412,7 +23473,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->31->1802" + "default.handlebars->31->1841" ] }, { @@ -23432,7 +23493,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->31->1803" + "default.handlebars->31->1842" ] }, { @@ -23452,7 +23513,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->31->1429", + "default.handlebars->31->1438", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -23473,7 +23534,7 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->31->712" + "default.handlebars->31->721" ] }, { @@ -23513,7 +23574,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->31->2013" + "default.handlebars->31->2054" ] }, { @@ -23533,7 +23594,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->31->2016" + "default.handlebars->31->2057" ] }, { @@ -23553,7 +23614,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->31->1946" + "default.handlebars->31->1987" ] }, { @@ -23582,7 +23643,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->31->1927" + "default.handlebars->31->1968" ] }, { @@ -23603,8 +23664,8 @@ "zh-cht": "被鎖定賬戶", "xloc": [ "default-mobile.handlebars->11->76", - "default.handlebars->31->2100", - "default.handlebars->31->233" + "default.handlebars->31->2141", + "default.handlebars->31->234" ] }, { @@ -23624,7 +23685,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->31->1828" + "default.handlebars->31->1867" ] }, { @@ -23644,7 +23705,7 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->31->697" + "default.handlebars->31->706" ] }, { @@ -23720,7 +23781,7 @@ "nl": "Ingelogde gebruikers", "de": "Eingeloggte Benutzer", "xloc": [ - "default.handlebars->31->238" + "default.handlebars->31->247" ] }, { @@ -23872,7 +23933,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->31->1335" + "default.handlebars->31->1344" ] }, { @@ -23894,10 +23955,10 @@ "xloc": [ "default-mobile.handlebars->11->461", "default-mobile.handlebars->11->463", - "default.handlebars->31->1111", - "default.handlebars->31->1113", - "default.handlebars->31->1121", - "default.handlebars->31->1123" + "default.handlebars->31->1120", + "default.handlebars->31->1122", + "default.handlebars->31->1130", + "default.handlebars->31->1132" ] }, { @@ -23939,8 +24000,8 @@ "zh-cht": "MAC:{0}", "xloc": [ "default-mobile.handlebars->11->464", - "default.handlebars->31->1114", - "default.handlebars->31->1124" + "default.handlebars->31->1123", + "default.handlebars->31->1133" ] }, { @@ -23961,8 +24022,8 @@ "zh-cht": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->11->462", - "default.handlebars->31->1112", - "default.handlebars->31->1122" + "default.handlebars->31->1121", + "default.handlebars->31->1131" ] }, { @@ -24055,11 +24116,11 @@ "default-mobile.handlebars->11->517", "default-mobile.handlebars->11->519", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->31->1178", - "default.handlebars->31->1180", - "default.handlebars->31->283", - "default.handlebars->31->478", - "default.handlebars->31->688", + "default.handlebars->31->1187", + "default.handlebars->31->1189", + "default.handlebars->31->292", + "default.handlebars->31->487", + "default.handlebars->31->697", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2" ] }, @@ -24100,7 +24161,7 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->31->729" + "default.handlebars->31->738" ] }, { @@ -24121,7 +24182,7 @@ "zh-cht": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->11->295", - "default.handlebars->31->739" + "default.handlebars->31->748" ] }, { @@ -24142,7 +24203,7 @@ "zh-cht": "MQTT已連接", "xloc": [ "default.handlebars->31->181", - "default.handlebars->31->738" + "default.handlebars->31->747" ] }, { @@ -24162,9 +24223,9 @@ "zh-chs": "与设备的MQTT连接已激活。", "zh-cht": "與裝置的MQTT連接已啟動。", "xloc": [ - "default.handlebars->31->282", - "default.handlebars->31->477", - "default.handlebars->31->687" + "default.handlebars->31->291", + "default.handlebars->31->486", + "default.handlebars->31->696" ] }, { @@ -24246,7 +24307,7 @@ "nl": "MacOS installatieprogramma", "fr": "Installateur MacOS", "xloc": [ - "default.handlebars->31->916" + "default.handlebars->31->925" ] }, { @@ -24266,7 +24327,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->31->2359" + "default.handlebars->31->2400" ] }, { @@ -24286,7 +24347,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->31->1337" + "default.handlebars->31->1346" ] }, { @@ -24306,7 +24367,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->31->1338" + "default.handlebars->31->1347" ] }, { @@ -24326,7 +24387,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->31->1339" + "default.handlebars->31->1348" ] }, { @@ -24336,7 +24397,7 @@ "de": "Verwaltetes Konto Bild", "xloc": [ "default-mobile.handlebars->11->81", - "default.handlebars->31->1194" + "default.handlebars->31->1203" ] }, { @@ -24379,8 +24440,8 @@ "xloc": [ "default-mobile.handlebars->11->558", "default-mobile.handlebars->11->578", - "default.handlebars->31->1623", - "default.handlebars->31->1660" + "default.handlebars->31->1662", + "default.handlebars->31->1699" ] }, { @@ -24402,8 +24463,8 @@ "xloc": [ "default-mobile.handlebars->11->557", "default-mobile.handlebars->11->577", - "default.handlebars->31->1622", - "default.handlebars->31->1659" + "default.handlebars->31->1661", + "default.handlebars->31->1698" ] }, { @@ -24423,7 +24484,7 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->31->786" + "default.handlebars->31->795" ] }, { @@ -24443,7 +24504,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->31->2011" + "default.handlebars->31->2052" ] }, { @@ -24483,7 +24544,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->31->2010" + "default.handlebars->31->2051" ] }, { @@ -24503,8 +24564,8 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->31->2009", - "default.handlebars->31->785" + "default.handlebars->31->2050", + "default.handlebars->31->794" ] }, { @@ -24637,7 +24698,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->31->1462" + "default.handlebars->31->1491" ] }, { @@ -24658,7 +24719,7 @@ "zh-cht": "使用軟體代理進行管理", "xloc": [ "default-mobile.handlebars->11->533", - "default.handlebars->31->1499" + "default.handlebars->31->1538" ] }, { @@ -24678,7 +24739,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->31->1932" + "default.handlebars->31->1973" ] }, { @@ -24732,7 +24793,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->31->1340" + "default.handlebars->31->1349" ] }, { @@ -24773,7 +24834,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->31->1341" + "default.handlebars->31->1350" ] }, { @@ -24793,7 +24854,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->31->2318" + "default.handlebars->31->2359" ] }, { @@ -24859,7 +24920,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->31->2347" + "default.handlebars->31->2388" ] }, { @@ -24880,8 +24941,8 @@ "zh-cht": "記憶體", "xloc": [ "default-mobile.handlebars->11->506", - "default.handlebars->31->1166", - "default.handlebars->31->2338", + "default.handlebars->31->1175", + "default.handlebars->31->2379", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -24905,16 +24966,16 @@ "default-mobile.handlebars->11->292", "default-mobile.handlebars->11->445", "default-mobile.handlebars->11->453", - "default.handlebars->31->1095", - "default.handlebars->31->1103", - "default.handlebars->31->411", - "default.handlebars->31->415", - "default.handlebars->31->425", - "default.handlebars->31->431", + "default.handlebars->31->1104", + "default.handlebars->31->1112", + "default.handlebars->31->420", + "default.handlebars->31->424", "default.handlebars->31->434", "default.handlebars->31->440", - "default.handlebars->31->621", - "default.handlebars->31->680" + "default.handlebars->31->443", + "default.handlebars->31->449", + "default.handlebars->31->630", + "default.handlebars->31->689" ] }, { @@ -24935,7 +24996,7 @@ "zh-cht": "網格代理控制台", "xloc": [ "default-mobile.handlebars->11->565", - "default.handlebars->31->1632" + "default.handlebars->31->1671" ] }, { @@ -24995,7 +25056,7 @@ "zh-chs": "网格中继", "zh-cht": "Mesh Relay", "xloc": [ - "default.handlebars->31->686" + "default.handlebars->31->695" ] }, { @@ -25015,9 +25076,9 @@ "zh-chs": "已连接网状代理并准备使用。", "zh-cht": "已連接Mesh Agent並準備使用。", "xloc": [ - "default.handlebars->31->274", - "default.handlebars->31->469", - "default.handlebars->31->679" + "default.handlebars->31->283", + "default.handlebars->31->478", + "default.handlebars->31->688" ] }, { @@ -25037,9 +25098,9 @@ "zh-chs": "网格代理可以经过其他代理作为中继访问得到。", "zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。", "xloc": [ - "default.handlebars->31->280", - "default.handlebars->31->475", - "default.handlebars->31->685" + "default.handlebars->31->289", + "default.handlebars->31->484", + "default.handlebars->31->694" ] }, { @@ -25059,8 +25120,8 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->31->933", - "default.handlebars->31->935" + "default.handlebars->31->942", + "default.handlebars->31->944" ] }, { @@ -25080,7 +25141,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->31->2361" + "default.handlebars->31->2402" ] }, { @@ -25100,7 +25161,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->31->2362" + "default.handlebars->31->2403" ] }, { @@ -25149,7 +25210,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->31->1492" + "default.handlebars->31->1531" ] }, { @@ -25169,14 +25230,14 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->31->919" + "default.handlebars->31->928" ] }, { "en": "MeshCentral Router Links", "nl": "MeshCentral Router Links", "xloc": [ - "default.handlebars->31->237" + "default.handlebars->31->246" ] }, { @@ -25196,7 +25257,7 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->31->914" + "default.handlebars->31->923" ] }, { @@ -25237,7 +25298,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->31->2360" + "default.handlebars->31->2401" ] }, { @@ -25279,7 +25340,7 @@ "xloc": [ "default.handlebars->31->130", "default.handlebars->31->132", - "default.handlebars->31->1488" + "default.handlebars->31->1527" ] }, { @@ -25299,9 +25360,9 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->31->261", - "default.handlebars->31->714", - "default.handlebars->31->931" + "default.handlebars->31->270", + "default.handlebars->31->723", + "default.handlebars->31->940" ] }, { @@ -25321,7 +25382,7 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->31->943" + "default.handlebars->31->952" ] }, { @@ -25341,7 +25402,7 @@ "zh-chs": "MeshCmd(Linux ARM,64位)", "zh-cht": "MeshCmd(Linux ARM,64位)", "xloc": [ - "default.handlebars->31->944" + "default.handlebars->31->953" ] }, { @@ -25361,7 +25422,7 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->31->939" + "default.handlebars->31->948" ] }, { @@ -25381,7 +25442,7 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->31->940" + "default.handlebars->31->949" ] }, { @@ -25401,7 +25462,7 @@ "zh-chs": "MeshCmd(Win32可执行档案)", "zh-cht": "MeshCmd(Win32可執行檔案)", "xloc": [ - "default.handlebars->31->937" + "default.handlebars->31->946" ] }, { @@ -25421,7 +25482,7 @@ "zh-chs": "MeshCmd(Win64可执行档案)", "zh-cht": "MeshCmd(Win64可執行檔案)", "xloc": [ - "default.handlebars->31->938" + "default.handlebars->31->947" ] }, { @@ -25458,7 +25519,7 @@ "zh-chs": "MeshCmd(macOS,ARM-64位)", "zh-cht": "MeshCmd(macOS,ARM-64位)", "xloc": [ - "default.handlebars->31->942" + "default.handlebars->31->951" ] }, { @@ -25478,7 +25539,7 @@ "zh-chs": "MeshCmd(macOS,x86-ARM-64位)", "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "xloc": [ - "default.handlebars->31->941" + "default.handlebars->31->950" ] }, { @@ -25498,7 +25559,7 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->31->928" + "default.handlebars->31->937" ] }, { @@ -25572,9 +25633,9 @@ "zh-chs": "消息", "zh-cht": "訊息", "xloc": [ - "default.handlebars->31->381", - "default.handlebars->31->699", - "default.handlebars->31->894" + "default.handlebars->31->390", + "default.handlebars->31->708", + "default.handlebars->31->903" ] }, { @@ -25594,7 +25655,7 @@ "zh-chs": "留言框", "zh-cht": "留言框", "xloc": [ - "default.handlebars->31->522" + "default.handlebars->31->531" ] }, { @@ -25614,7 +25675,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->31->2358" + "default.handlebars->31->2399" ] }, { @@ -25661,7 +25722,7 @@ "en": "Messenger", "nl": "Messenger", "xloc": [ - "default.handlebars->31->2243" + "default.handlebars->31->2284" ] }, { @@ -25733,7 +25794,7 @@ "de": "Mobiles Gerät", "xloc": [ "default-mobile.handlebars->11->459", - "default.handlebars->31->1109" + "default.handlebars->31->1118" ] }, { @@ -25742,7 +25803,7 @@ "fr": "Appareil mobile", "de": "Mobiles Gerät", "xloc": [ - "default.handlebars->31->401" + "default.handlebars->31->410" ] }, { @@ -25764,8 +25825,8 @@ "xloc": [ "default-mobile.handlebars->11->454", "default-mobile.handlebars->11->507", - "default.handlebars->31->1104", - "default.handlebars->31->1167" + "default.handlebars->31->1113", + "default.handlebars->31->1176" ] }, { @@ -25785,7 +25846,7 @@ "zh-chs": "修改节点位置", "zh-cht": "修改節點位置", "xloc": [ - "default.handlebars->31->580" + "default.handlebars->31->589" ] }, { @@ -25805,7 +25866,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->31->1342" + "default.handlebars->31->1351" ] }, { @@ -25825,7 +25886,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->31->2392" + "default.handlebars->31->2433" ] }, { @@ -25846,7 +25907,7 @@ "zh-cht": "母板", "xloc": [ "default-mobile.handlebars->11->500", - "default.handlebars->31->1160" + "default.handlebars->31->1169" ] }, { @@ -25866,7 +25927,7 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->31->705" + "default.handlebars->31->714" ] }, { @@ -25886,7 +25947,7 @@ "zh-chs": "移至设备组", "zh-cht": "移至裝置群", "xloc": [ - "default.handlebars->31->483" + "default.handlebars->31->492" ] }, { @@ -25906,7 +25967,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->31->1827" + "default.handlebars->31->1866" ] }, { @@ -25926,7 +25987,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->31->1860" + "default.handlebars->31->1899" ] }, { @@ -25955,8 +26016,8 @@ "fr": "Questions multiples", "de": "Mehrere Probleme", "xloc": [ - "default.handlebars->31->1715", - "default.handlebars->31->1729" + "default.handlebars->31->1754", + "default.handlebars->31->1768" ] }, { @@ -25976,7 +26037,7 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->31->2261" + "default.handlebars->31->2302" ] }, { @@ -25996,8 +26057,8 @@ "zh-chs": "必须以用户身份运行", "zh-cht": "必須以用戶身份運行", "xloc": [ - "default.handlebars->31->510", - "default.handlebars->31->874" + "default.handlebars->31->519", + "default.handlebars->31->883" ] }, { @@ -26130,7 +26191,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->31->1173" + "default.handlebars->31->1182" ] }, { @@ -26292,8 +26353,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->31->1217", - "default.handlebars->31->1220" + "default.handlebars->31->1226", + "default.handlebars->31->1229" ] }, { @@ -26379,20 +26440,23 @@ "default-mobile.handlebars->11->494", "default-mobile.handlebars->11->534", "default-mobile.handlebars->11->548", - "default.handlebars->31->1004", + "default.handlebars->31->1013", "default.handlebars->31->105", - "default.handlebars->31->1091", - "default.handlebars->31->1154", - "default.handlebars->31->1460", - "default.handlebars->31->1500", - "default.handlebars->31->1587", - "default.handlebars->31->1914", - "default.handlebars->31->2019", - "default.handlebars->31->2035", - "default.handlebars->31->2042", - "default.handlebars->31->2087", - "default.handlebars->31->2106", - "default.handlebars->31->609", + "default.handlebars->31->1100", + "default.handlebars->31->1163", + "default.handlebars->31->1489", + "default.handlebars->31->1506", + "default.handlebars->31->1511", + "default.handlebars->31->1539", + "default.handlebars->31->1626", + "default.handlebars->31->1955", + "default.handlebars->31->2060", + "default.handlebars->31->2076", + "default.handlebars->31->2083", + "default.handlebars->31->2128", + "default.handlebars->31->2147", + "default.handlebars->31->239", + "default.handlebars->31->618", "default.handlebars->31->91", "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", @@ -26416,7 +26480,7 @@ "zh-chs": "名称(可选)", "zh-cht": "名稱(可選)", "xloc": [ - "default.handlebars->31->361" + "default.handlebars->31->370" ] }, { @@ -26436,7 +26500,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->31->2001" + "default.handlebars->31->2042" ] }, { @@ -26456,7 +26520,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->31->1343" + "default.handlebars->31->1352" ] }, { @@ -26476,7 +26540,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->31->1344" + "default.handlebars->31->1353" ] }, { @@ -26496,7 +26560,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->31->1345" + "default.handlebars->31->1354" ] }, { @@ -26516,7 +26580,7 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->31->912" + "default.handlebars->31->921" ] }, { @@ -26554,8 +26618,8 @@ "zh-cht": "網路", "xloc": [ "default-mobile.handlebars->11->473", - "default.handlebars->31->1119", - "default.handlebars->31->1133" + "default.handlebars->31->1128", + "default.handlebars->31->1142" ] }, { @@ -26576,6 +26640,7 @@ "zh-cht": "新", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", + "default.handlebars->31->1505", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -26596,7 +26661,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->31->1867" + "default.handlebars->31->1906" ] }, { @@ -26606,7 +26671,7 @@ "de": "Neuer Account", "xloc": [ "default-mobile.handlebars->11->606", - "default.handlebars->31->2270" + "default.handlebars->31->2311" ] }, { @@ -26667,9 +26732,9 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->31->1453", - "default.handlebars->31->1465", - "default.handlebars->31->904" + "default.handlebars->31->1482", + "default.handlebars->31->1494", + "default.handlebars->31->913" ] }, { @@ -26691,8 +26756,8 @@ "xloc": [ "default-mobile.handlebars->11->143", "default-mobile.handlebars->11->395", - "default.handlebars->31->1054", - "default.handlebars->31->1759", + "default.handlebars->31->1063", + "default.handlebars->31->1798", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->11->59", @@ -26736,8 +26801,8 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->31->345", - "default.handlebars->31->346" + "default.handlebars->31->354", + "default.handlebars->31->355" ] }, { @@ -26777,8 +26842,8 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->31->1565", - "default.handlebars->31->1566" + "default.handlebars->31->1604", + "default.handlebars->31->1605" ] }, { @@ -26800,8 +26865,8 @@ "xloc": [ "default-mobile.handlebars->11->109", "default-mobile.handlebars->11->110", - "default.handlebars->31->1448", - "default.handlebars->31->1449" + "default.handlebars->31->1477", + "default.handlebars->31->1478" ] }, { @@ -26831,8 +26896,8 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->31->768", - "default.handlebars->31->790" + "default.handlebars->31->777", + "default.handlebars->31->799" ] }, { @@ -26892,8 +26957,8 @@ "xloc": [ "default-mobile.handlebars->11->271", "default-mobile.handlebars->11->272", - "default.handlebars->31->635", - "default.handlebars->31->636" + "default.handlebars->31->644", + "default.handlebars->31->645" ] }, { @@ -26913,9 +26978,9 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->31->1667", - "default.handlebars->31->770", - "default.handlebars->31->792" + "default.handlebars->31->1706", + "default.handlebars->31->779", + "default.handlebars->31->801" ] }, { @@ -26935,7 +27000,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->31->1628" + "default.handlebars->31->1667" ] }, { @@ -26955,9 +27020,9 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->31->1089", - "default.handlebars->31->1890", - "default.handlebars->31->2229" + "default.handlebars->31->1098", + "default.handlebars->31->1931", + "default.handlebars->31->2270" ] }, { @@ -26978,7 +27043,7 @@ "zh-cht": "不能存取檔案", "xloc": [ "default-mobile.handlebars->11->563", - "default.handlebars->31->1630" + "default.handlebars->31->1669" ] }, { @@ -26999,9 +27064,9 @@ "zh-cht": "沒有檔案", "xloc": [ "default-mobile.handlebars->11->586", - "default.handlebars->31->1669", - "default.handlebars->31->767", - "default.handlebars->31->789" + "default.handlebars->31->1708", + "default.handlebars->31->776", + "default.handlebars->31->798" ] }, { @@ -27021,8 +27086,8 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->31->765", - "default.handlebars->31->787" + "default.handlebars->31->774", + "default.handlebars->31->796" ] }, { @@ -27044,8 +27109,8 @@ "xloc": [ "default-mobile.handlebars->11->564", "default-mobile.handlebars->11->587", - "default.handlebars->31->1631", - "default.handlebars->31->1670" + "default.handlebars->31->1670", + "default.handlebars->31->1709" ] }, { @@ -27085,7 +27150,7 @@ "zh-chs": "此网格中没有英特尔®AMT设备", "zh-cht": "此網格中沒有Intel® AMT裝置", "xloc": [ - "default.handlebars->31->249" + "default.handlebars->31->258" ] }, { @@ -27125,7 +27190,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->31->2069" + "default.handlebars->31->2110" ] }, { @@ -27145,7 +27210,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->31->2014" + "default.handlebars->31->2055" ] }, { @@ -27165,8 +27230,8 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->31->1531", - "default.handlebars->31->1556" + "default.handlebars->31->1570", + "default.handlebars->31->1595" ] }, { @@ -27189,10 +27254,10 @@ "default-mobile.handlebars->11->129", "default-mobile.handlebars->11->543", "default-mobile.handlebars->11->594", - "default.handlebars->31->1474", - "default.handlebars->31->1677", - "default.handlebars->31->782", - "default.handlebars->31->804" + "default.handlebars->31->1503", + "default.handlebars->31->1716", + "default.handlebars->31->791", + "default.handlebars->31->813" ] }, { @@ -27213,8 +27278,8 @@ "zh-cht": "沒有TLS加密", "xloc": [ "default-mobile.handlebars->11->335", - "default.handlebars->31->336", - "default.handlebars->31->890" + "default.handlebars->31->345", + "default.handlebars->31->899" ] }, { @@ -27235,9 +27300,9 @@ "zh-cht": "沒有終端", "xloc": [ "default-mobile.handlebars->11->585", - "default.handlebars->31->1668", - "default.handlebars->31->766", - "default.handlebars->31->788" + "default.handlebars->31->1707", + "default.handlebars->31->775", + "default.handlebars->31->797" ] }, { @@ -27258,7 +27323,7 @@ "zh-cht": "不能訪問終端", "xloc": [ "default-mobile.handlebars->11->562", - "default.handlebars->31->1629" + "default.handlebars->31->1668" ] }, { @@ -27278,7 +27343,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->31->2015" + "default.handlebars->31->2056" ] }, { @@ -27299,7 +27364,7 @@ "zh-cht": "該設備當前無可用操作。", "xloc": [ "default-mobile.handlebars->11->318", - "default.handlebars->31->866" + "default.handlebars->31->875" ] }, { @@ -27308,8 +27373,8 @@ "fr": "Pas de mise à jour automatique", "de": "Kein Automatisches Update", "xloc": [ - "default.handlebars->31->1713", - "default.handlebars->31->1727" + "default.handlebars->31->1752", + "default.handlebars->31->1766" ] }, { @@ -27329,8 +27394,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->31->2075", - "default.handlebars->31->2199" + "default.handlebars->31->2116", + "default.handlebars->31->2240" ] }, { @@ -27393,7 +27458,7 @@ "zh-chs": "没有一个设备被加入任何一组,请单击一个设备的“组”以添加到一个组中。", "zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。", "xloc": [ - "default.handlebars->31->246" + "default.handlebars->31->255" ] }, { @@ -27430,7 +27495,7 @@ "zh-chs": "找不到设备。", "zh-cht": "找不到裝置。", "xloc": [ - "default.handlebars->31->597" + "default.handlebars->31->606" ] }, { @@ -27450,8 +27515,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->31->2081", - "default.handlebars->31->2211" + "default.handlebars->31->2122", + "default.handlebars->31->2252" ] }, { @@ -27471,7 +27536,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->31->1731" + "default.handlebars->31->1770" ] }, { @@ -27492,7 +27557,7 @@ "zh-cht": "該群中沒有裝置", "xloc": [ "default-mobile.handlebars->11->182", - "default.handlebars->31->251" + "default.handlebars->31->260" ] }, { @@ -27514,7 +27579,7 @@ "xloc": [ "default-mobile.handlebars->11->180", "default-mobile.handlebars->11->184", - "default.handlebars->31->247" + "default.handlebars->31->256" ] }, { @@ -27534,7 +27599,7 @@ "zh-chs": "找不到带有标签的设备。", "zh-cht": "找不到帶有標籤的裝置。", "xloc": [ - "default.handlebars->31->257" + "default.handlebars->31->266" ] }, { @@ -27554,7 +27619,7 @@ "zh-chs": "找不到文件", "zh-cht": "找不到文件", "xloc": [ - "default.handlebars->31->1040", + "default.handlebars->31->1049", "sharing.handlebars->11->45" ] }, @@ -27575,7 +27640,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->31->2018" + "default.handlebars->31->2059" ] }, { @@ -27596,7 +27661,7 @@ "zh-cht": "沒有此裝置的訊息。", "xloc": [ "default-mobile.handlebars->11->512", - "default.handlebars->31->1172" + "default.handlebars->31->1181" ] }, { @@ -27606,7 +27671,7 @@ "de": "Kein Tastatur Kürzel definiert", "xloc": [ "default-mobile.handlebars->11->381", - "default.handlebars->31->998" + "default.handlebars->31->1007" ] }, { @@ -27626,7 +27691,7 @@ "zh-chs": "找不到位置。", "zh-cht": "找不到位置。", "xloc": [ - "default.handlebars->31->599" + "default.handlebars->31->608" ] }, { @@ -27666,7 +27731,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->31->907" + "default.handlebars->31->916" ] }, { @@ -27676,7 +27741,7 @@ "de": "Keine Telefonnummer für diese Benutzer", "xloc": [ "default-mobile.handlebars->11->637", - "default.handlebars->31->2301" + "default.handlebars->31->2342" ] }, { @@ -27716,7 +27781,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->31->2231" + "default.handlebars->31->2272" ] }, { @@ -27736,7 +27801,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->31->2101" + "default.handlebars->31->2142" ] }, { @@ -27756,7 +27821,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->31->2205" + "default.handlebars->31->2246" ] }, { @@ -27766,7 +27831,7 @@ "de": "Keine Benutzer Verwaltungsrechte", "xloc": [ "default-mobile.handlebars->11->635", - "default.handlebars->31->2299" + "default.handlebars->31->2340" ] }, { @@ -27786,7 +27851,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->31->1922" + "default.handlebars->31->1963" ] }, { @@ -27806,7 +27871,7 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->31->748" + "default.handlebars->31->757" ] }, { @@ -27877,34 +27942,34 @@ "default-mobile.handlebars->11->371", "default-mobile.handlebars->11->393", "default-mobile.handlebars->11->536", - "default.handlebars->31->1495", - "default.handlebars->31->1502", - "default.handlebars->31->1510", - "default.handlebars->31->1522", - "default.handlebars->31->1527", - "default.handlebars->31->1529", - "default.handlebars->31->1716", - "default.handlebars->31->1741", - "default.handlebars->31->1746", - "default.handlebars->31->1898", + "default.handlebars->31->1534", + "default.handlebars->31->1541", + "default.handlebars->31->1549", + "default.handlebars->31->1561", + "default.handlebars->31->1566", + "default.handlebars->31->1568", + "default.handlebars->31->1755", + "default.handlebars->31->1780", + "default.handlebars->31->1785", "default.handlebars->31->192", - "default.handlebars->31->2039", - "default.handlebars->31->2041", - "default.handlebars->31->2058", + "default.handlebars->31->1939", + "default.handlebars->31->2080", + "default.handlebars->31->2082", + "default.handlebars->31->2099", "default.handlebars->31->211", - "default.handlebars->31->2120", - "default.handlebars->31->2129", - "default.handlebars->31->2133", - "default.handlebars->31->2145", - "default.handlebars->31->270", - "default.handlebars->31->271", - "default.handlebars->31->606", - "default.handlebars->31->617", - "default.handlebars->31->618", - "default.handlebars->31->677", - "default.handlebars->31->690", + "default.handlebars->31->2161", + "default.handlebars->31->2170", + "default.handlebars->31->2174", + "default.handlebars->31->2186", + "default.handlebars->31->279", + "default.handlebars->31->280", + "default.handlebars->31->615", + "default.handlebars->31->626", + "default.handlebars->31->627", + "default.handlebars->31->686", + "default.handlebars->31->699", "default.handlebars->31->78", - "default.handlebars->31->987", + "default.handlebars->31->996", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] }, @@ -27945,7 +28010,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->31->1346" + "default.handlebars->31->1355" ] }, { @@ -27965,7 +28030,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->31->1347" + "default.handlebars->31->1356" ] }, { @@ -27985,7 +28050,7 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->31->1348" + "default.handlebars->31->1357" ] }, { @@ -28005,7 +28070,7 @@ "zh-chs": "未激活", "zh-cht": "未激活", "xloc": [ - "default.handlebars->31->1136" + "default.handlebars->31->1145" ] }, { @@ -28027,7 +28092,7 @@ "xloc": [ "default-mobile.handlebars->11->261", "default-mobile.handlebars->11->477", - "default.handlebars->31->623" + "default.handlebars->31->632" ] }, { @@ -28049,7 +28114,7 @@ "xloc": [ "default-mobile.handlebars->11->260", "default-mobile.handlebars->11->476", - "default.handlebars->31->622" + "default.handlebars->31->631" ] }, { @@ -28069,8 +28134,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->31->1707", - "default.handlebars->31->1720" + "default.handlebars->31->1746", + "default.handlebars->31->1759" ] }, { @@ -28091,7 +28156,7 @@ "zh-cht": "未知", "xloc": [ "default-mobile.handlebars->11->487", - "default.handlebars->31->1147" + "default.handlebars->31->1156" ] }, { @@ -28120,7 +28185,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->31->2253" + "default.handlebars->31->2294" ] }, { @@ -28140,8 +28205,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->31->2107", - "default.handlebars->31->2108" + "default.handlebars->31->2148", + "default.handlebars->31->2149" ] }, { @@ -28161,7 +28226,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->31->2179" + "default.handlebars->31->2220" ] }, { @@ -28182,12 +28247,12 @@ "zh-cht": "筆記", "xloc": [ "default-mobile.handlebars->11->327", - "default.handlebars->31->1538", - "default.handlebars->31->2153", - "default.handlebars->31->695", - "default.handlebars->31->776", - "default.handlebars->31->798", - "default.handlebars->31->808" + "default.handlebars->31->1577", + "default.handlebars->31->2194", + "default.handlebars->31->704", + "default.handlebars->31->785", + "default.handlebars->31->807", + "default.handlebars->31->817" ] }, { @@ -28227,8 +28292,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->31->1435", - "default.handlebars->31->1706", + "default.handlebars->31->1464", + "default.handlebars->31->1745", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -28253,7 +28318,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->31->1702" + "default.handlebars->31->1741" ] }, { @@ -28273,7 +28338,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->31->1430" + "default.handlebars->31->1459" ] }, { @@ -28293,7 +28358,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->31->1528" + "default.handlebars->31->1567" ] }, { @@ -28314,7 +28379,7 @@ "zh-cht": "通知", "xloc": [ "default.handlebars->31->208", - "default.handlebars->31->2159" + "default.handlebars->31->2200" ] }, { @@ -28334,7 +28399,7 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->31->845" + "default.handlebars->31->854" ] }, { @@ -28354,9 +28419,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->31->1595", - "default.handlebars->31->1599", - "default.handlebars->31->1602" + "default.handlebars->31->1634", + "default.handlebars->31->1638", + "default.handlebars->31->1641" ] }, { @@ -28376,7 +28441,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->31->1961" + "default.handlebars->31->2002" ] }, { @@ -28384,7 +28449,7 @@ "fr": "Null", "nl": "Null", "xloc": [ - "default.handlebars->31->2352" + "default.handlebars->31->2393" ] }, { @@ -28411,13 +28476,13 @@ "default-mobile.handlebars->11->442", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->31->1486", - "default.handlebars->31->1711", - "default.handlebars->31->1725", - "default.handlebars->31->651", - "default.handlebars->31->655", - "default.handlebars->31->659", - "default.handlebars->31->665", + "default.handlebars->31->1525", + "default.handlebars->31->1750", + "default.handlebars->31->1764", + "default.handlebars->31->660", + "default.handlebars->31->664", + "default.handlebars->31->668", + "default.handlebars->31->674", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -28447,7 +28512,7 @@ "zh-cht": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->31->614", + "default.handlebars->31->623", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->11->1" ] }, @@ -28468,7 +28533,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->31->1349" + "default.handlebars->31->1358" ] }, { @@ -28489,7 +28554,7 @@ "zh-cht": "發生在{0}", "xloc": [ "default-mobile.handlebars->11->603", - "default.handlebars->31->2267" + "default.handlebars->31->2308" ] }, { @@ -28529,7 +28594,7 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->31->1919" + "default.handlebars->31->1960" ] }, { @@ -28549,7 +28614,7 @@ "zh-chs": "旧密码", "zh-cht": "舊密碼", "xloc": [ - "default.handlebars->31->344" + "default.handlebars->31->353" ] }, { @@ -28570,7 +28635,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->31->1447" + "default.handlebars->31->1476" ] }, { @@ -28590,7 +28655,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->31->1895" + "default.handlebars->31->1936" ] }, { @@ -28653,7 +28718,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->31->1918" + "default.handlebars->31->1959" ] }, { @@ -28674,8 +28739,8 @@ "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ "default-mobile.handlebars->11->403", - "default.handlebars->31->1062", - "default.handlebars->31->577", + "default.handlebars->31->1071", + "default.handlebars->31->586", "sharing.handlebars->11->67" ] }, @@ -28737,7 +28802,7 @@ "zh-chs": "在设备上打开页面", "zh-cht": "在裝置上打開頁面", "xloc": [ - "default.handlebars->31->809" + "default.handlebars->31->818" ] }, { @@ -28778,7 +28843,7 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->31->715" + "default.handlebars->31->724" ] }, { @@ -28818,7 +28883,7 @@ "zh-chs": "打开此计算机的聊天窗口", "zh-cht": "打開此電腦的聊天窗口", "xloc": [ - "default.handlebars->31->702", + "default.handlebars->31->711", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1" ] }, @@ -28839,7 +28904,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->31->1795" + "default.handlebars->31->1834" ] }, { @@ -28860,11 +28925,11 @@ "zh-cht": "操作系統", "xloc": [ "default-mobile.handlebars->11->444", - "default.handlebars->31->1094", - "default.handlebars->31->364", - "default.handlebars->31->404", - "default.handlebars->31->649", - "default.handlebars->31->930" + "default.handlebars->31->1103", + "default.handlebars->31->373", + "default.handlebars->31->413", + "default.handlebars->31->658", + "default.handlebars->31->939" ] }, { @@ -28885,11 +28950,11 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->31->1945", - "default.handlebars->31->2026", - "default.handlebars->31->498", - "default.handlebars->31->513", - "default.handlebars->31->865" + "default.handlebars->31->1986", + "default.handlebars->31->2067", + "default.handlebars->31->507", + "default.handlebars->31->522", + "default.handlebars->31->874" ] }, { @@ -28926,7 +28991,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->31->1350" + "default.handlebars->31->1359" ] }, { @@ -28946,7 +29011,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->31->1351" + "default.handlebars->31->1360" ] }, { @@ -29007,7 +29072,7 @@ "zh-cht": "過時的", "xloc": [ "default-mobile.handlebars->11->441", - "default.handlebars->31->664" + "default.handlebars->31->673" ] }, { @@ -29027,7 +29092,7 @@ "zh-chs": "是否覆盖文件存在?", "zh-cht": "是否覆蓋文件存在?", "xloc": [ - "default.handlebars->31->529" + "default.handlebars->31->538" ] }, { @@ -29047,7 +29112,7 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->31->1011" + "default.handlebars->31->1020" ] }, { @@ -29067,7 +29132,7 @@ "zh-chs": "PID", "zh-cht": "PID", "xloc": [ - "default.handlebars->31->1007", + "default.handlebars->31->1016", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -29077,7 +29142,7 @@ "fr": "Envoyer", "xloc": [ "default-mobile.handlebars->11->518", - "default.handlebars->31->1179" + "default.handlebars->31->1188" ] }, { @@ -29087,7 +29152,7 @@ "de": "Seite runter", "xloc": [ "default-mobile.handlebars->11->366", - "default.handlebars->31->982" + "default.handlebars->31->991" ] }, { @@ -29097,7 +29162,7 @@ "de": "Seite hoch", "xloc": [ "default-mobile.handlebars->11->365", - "default.handlebars->31->981" + "default.handlebars->31->990" ] }, { @@ -29118,7 +29183,7 @@ "zh-cht": "零件號", "xloc": [ "default-mobile.handlebars->11->505", - "default.handlebars->31->1165" + "default.handlebars->31->1174" ] }, { @@ -29138,7 +29203,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->31->1933" + "default.handlebars->31->1974" ] }, { @@ -29194,7 +29259,7 @@ "xloc": [ "default-mobile.handlebars->11->127", "default-mobile.handlebars->11->541", - "default.handlebars->31->1472" + "default.handlebars->31->1501" ] }, { @@ -29214,7 +29279,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->31->2104" + "default.handlebars->31->2145" ] }, { @@ -29255,15 +29320,16 @@ "zh-cht": "密碼", "xloc": [ "default-mobile.handlebars->11->333", - "default.handlebars->31->1562", - "default.handlebars->31->1989", - "default.handlebars->31->1990", - "default.handlebars->31->2125", - "default.handlebars->31->2127", - "default.handlebars->31->2184", - "default.handlebars->31->2185", - "default.handlebars->31->334", - "default.handlebars->31->888", + "default.handlebars->31->1601", + "default.handlebars->31->2030", + "default.handlebars->31->2031", + "default.handlebars->31->2166", + "default.handlebars->31->2168", + "default.handlebars->31->2225", + "default.handlebars->31->2226", + "default.handlebars->31->243", + "default.handlebars->31->343", + "default.handlebars->31->897", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1", "mstsc.handlebars->main->1->3->1->6->1->0", @@ -29373,7 +29439,7 @@ "de": "Passwort geändert.", "xloc": [ "default-mobile.handlebars->11->631", - "default.handlebars->31->2295" + "default.handlebars->31->2336" ] }, { @@ -29414,7 +29480,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->31->2186" + "default.handlebars->31->2227" ] }, { @@ -29435,7 +29501,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->11->111", - "default.handlebars->31->1450" + "default.handlebars->31->1479" ] }, { @@ -29514,8 +29580,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->103", "default-mobile.handlebars->11->104", - "default.handlebars->31->1442", - "default.handlebars->31->1443", + "default.handlebars->31->1471", + "default.handlebars->31->1472", "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", @@ -29553,9 +29619,9 @@ "default-mobile.handlebars->11->408", "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->31->1036", - "default.handlebars->31->1068", - "default.handlebars->31->1768", + "default.handlebars->31->1045", + "default.handlebars->31->1077", + "default.handlebars->31->1807", "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", @@ -29627,7 +29693,7 @@ "zh-cht": "執行代理指令", "xloc": [ "default-mobile.handlebars->11->521", - "default.handlebars->31->1182" + "default.handlebars->31->1191" ] }, { @@ -29681,8 +29747,8 @@ "zh-chs": "执行英特尔®AMT激活和配置。", "zh-cht": "執行英特爾®AMT激活和配置。", "xloc": [ - "default.handlebars->31->1542", - "default.handlebars->31->322" + "default.handlebars->31->1581", + "default.handlebars->31->331" ] }, { @@ -29760,7 +29826,7 @@ "de": "Intel® AMT Ausschalten?", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->31->880" + "default.handlebars->31->889" ] }, { @@ -29770,7 +29836,7 @@ "de": "Intel® AMT Einschalten?", "xloc": [ "default-mobile.handlebars->11->321", - "default.handlebars->31->878" + "default.handlebars->31->887" ] }, { @@ -29780,7 +29846,7 @@ "de": "Intel® AMT Zurücksetzen?", "xloc": [ "default-mobile.handlebars->11->325", - "default.handlebars->31->882" + "default.handlebars->31->891" ] }, { @@ -29800,7 +29866,7 @@ "zh-chs": "执行批量设备通知", "zh-cht": "執行批量設備通知", "xloc": [ - "default.handlebars->31->520" + "default.handlebars->31->529" ] }, { @@ -29820,7 +29886,7 @@ "zh-chs": "执行批量设备标签操作", "zh-cht": "執行批次裝置標籤操作", "xloc": [ - "default.handlebars->31->512" + "default.handlebars->31->521" ] }, { @@ -29841,7 +29907,7 @@ "zh-cht": "在裝置上執行電源操作", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->31->694", + "default.handlebars->31->703", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -29864,7 +29930,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->31->1800" + "default.handlebars->31->1839" ] }, { @@ -29874,7 +29940,7 @@ "de": "Zugriff verboten", "xloc": [ "default-mobile.handlebars->11->612", - "default.handlebars->31->2276" + "default.handlebars->31->2317" ] }, { @@ -29895,8 +29961,8 @@ "zh-cht": "權限", "xloc": [ "default-mobile.handlebars->11->597", - "default.handlebars->31->1680", - "default.handlebars->31->1917" + "default.handlebars->31->1719", + "default.handlebars->31->1958" ] }, { @@ -29916,7 +29982,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->31->1352" + "default.handlebars->31->1361" ] }, { @@ -29957,10 +30023,10 @@ "default-mobile.handlebars->11->73", "default-mobile.handlebars->11->88", "default-mobile.handlebars->11->90", - "default.handlebars->31->1197", - "default.handlebars->31->1200", + "default.handlebars->31->1206", + "default.handlebars->31->1209", "default.handlebars->31->174", - "default.handlebars->31->2174" + "default.handlebars->31->2215" ] }, { @@ -29980,7 +30046,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->31->2119" + "default.handlebars->31->2160" ] }, { @@ -30001,8 +30067,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->11->89", - "default.handlebars->31->1199", - "default.handlebars->31->2173" + "default.handlebars->31->1208", + "default.handlebars->31->2214" ] }, { @@ -30039,7 +30105,7 @@ "zh-chs": "将节点放在这里", "zh-cht": "將節點放在這裡", "xloc": [ - "default.handlebars->31->592" + "default.handlebars->31->601" ] }, { @@ -30161,7 +30227,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->11->99", - "default.handlebars->31->1437" + "default.handlebars->31->1466" ] }, { @@ -30182,7 +30248,7 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->31->224", - "default.handlebars->31->2389" + "default.handlebars->31->2430" ] }, { @@ -30326,7 +30392,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->11->126", - "default.handlebars->31->1471" + "default.handlebars->31->1500" ] }, { @@ -30346,7 +30412,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->31->1353" + "default.handlebars->31->1362" ] }, { @@ -30366,7 +30432,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->31->1354" + "default.handlebars->31->1363" ] }, { @@ -30386,7 +30452,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->31->1355" + "default.handlebars->31->1364" ] }, { @@ -30467,7 +30533,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->31->1718", + "default.handlebars->31->1757", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -30491,7 +30557,7 @@ "default-mobile.handlebars->11->218", "default-mobile.handlebars->11->313", "default.handlebars->31->6", - "default.handlebars->31->858" + "default.handlebars->31->867" ] }, { @@ -30511,7 +30577,7 @@ "zh-chs": "关闭设备", "zh-cht": "關閉裝置", "xloc": [ - "default.handlebars->31->488" + "default.handlebars->31->497" ] }, { @@ -30534,7 +30600,7 @@ "default-mobile.handlebars->11->213", "default-mobile.handlebars->11->220", "default.handlebars->31->1", - "default.handlebars->31->449" + "default.handlebars->31->458" ] }, { @@ -30554,7 +30620,7 @@ "zh-chs": "预激活", "zh-cht": "預激活", "xloc": [ - "default.handlebars->31->1137" + "default.handlebars->31->1146" ] }, { @@ -30576,7 +30642,7 @@ "xloc": [ "default-mobile.handlebars->11->219", "default-mobile.handlebars->11->226", - "default.handlebars->31->461", + "default.handlebars->31->470", "default.handlebars->31->7" ] }, @@ -30597,7 +30663,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->31->2252" + "default.handlebars->31->2293" ] }, { @@ -30691,10 +30757,10 @@ "xloc": [ "default-mobile.handlebars->11->78", "default-mobile.handlebars->11->79", - "default.handlebars->31->1192", - "default.handlebars->31->2168", - "default.handlebars->31->2182", - "default.handlebars->31->235" + "default.handlebars->31->1201", + "default.handlebars->31->2209", + "default.handlebars->31->2223", + "default.handlebars->31->236" ] }, { @@ -30704,7 +30770,7 @@ "de": "Bildschirm Drucken", "xloc": [ "default-mobile.handlebars->11->360", - "default.handlebars->31->976" + "default.handlebars->31->985" ] }, { @@ -30764,7 +30830,7 @@ "zh-chs": "进程控制", "zh-cht": "進程控制", "xloc": [ - "default.handlebars->31->1023", + "default.handlebars->31->1032", "desktop.handlebars->3->24" ] }, @@ -30805,7 +30871,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->31->1792" + "default.handlebars->31->1831" ] }, { @@ -30845,7 +30911,7 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->31->844" + "default.handlebars->31->853" ] }, { @@ -30865,9 +30931,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->31->1596", - "default.handlebars->31->1600", - "default.handlebars->31->1603" + "default.handlebars->31->1635", + "default.handlebars->31->1639", + "default.handlebars->31->1642" ] }, { @@ -30887,7 +30953,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->31->2250", + "default.handlebars->31->2291", "player.handlebars->3->16" ] }, @@ -30926,7 +30992,7 @@ "zh-cht": "配置狀態", "xloc": [ "default-mobile.handlebars->11->481", - "default.handlebars->31->1141" + "default.handlebars->31->1150" ] }, { @@ -30947,7 +31013,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->11->138", - "default.handlebars->31->1753" + "default.handlebars->31->1792" ] }, { @@ -30967,7 +31033,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->31->1356" + "default.handlebars->31->1365" ] }, { @@ -30987,7 +31053,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->31->1357" + "default.handlebars->31->1366" ] }, { @@ -31007,7 +31073,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->31->1358" + "default.handlebars->31->1367" ] }, { @@ -31085,7 +31151,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->31->1359" + "default.handlebars->31->1368" ] }, { @@ -31151,8 +31217,8 @@ "zh-chs": "RDP", "zh-cht": "RDP", "xloc": [ - "default.handlebars->31->285", - "default.handlebars->31->718" + "default.handlebars->31->294", + "default.handlebars->31->727" ] }, { @@ -31172,7 +31238,7 @@ "zh-chs": "RDP连接", "zh-cht": "RDP連接", "xloc": [ - "default.handlebars->31->572" + "default.handlebars->31->581" ] }, { @@ -31192,7 +31258,7 @@ "zh-chs": "RDP远程连接端口:", "zh-cht": "RDP遠程連接介面:", "xloc": [ - "default.handlebars->31->571" + "default.handlebars->31->580" ] }, { @@ -31275,7 +31341,7 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->31->2351" + "default.handlebars->31->2392" ] }, { @@ -31315,7 +31381,7 @@ "zh-chs": "随机密码", "zh-cht": "隨機密碼", "xloc": [ - "default.handlebars->31->1563" + "default.handlebars->31->1602" ] }, { @@ -31335,7 +31401,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->31->1991" + "default.handlebars->31->2032" ] }, { @@ -31392,9 +31458,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->31->2116", - "default.handlebars->31->2118", - "default.handlebars->31->2175" + "default.handlebars->31->2157", + "default.handlebars->31->2159", + "default.handlebars->31->2216" ] }, { @@ -31414,7 +31480,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->31->2000" + "default.handlebars->31->2041" ] }, { @@ -31435,7 +31501,7 @@ "zh-cht": "收到無效的網絡數據", "xloc": [ "default-mobile.handlebars->11->352", - "default.handlebars->31->956", + "default.handlebars->31->965", "desktop.handlebars->3->10", "sharing.handlebars->11->10", "sharing.handlebars->11->32", @@ -31459,7 +31525,7 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->31->1509" + "default.handlebars->31->1548" ] }, { @@ -31499,7 +31565,7 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->31->1606" + "default.handlebars->31->1645" ] }, { @@ -31519,7 +31585,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->31->2264" + "default.handlebars->31->2305" ] }, { @@ -31561,8 +31627,8 @@ "xloc": [ "default-mobile.handlebars->11->144", "default-mobile.handlebars->11->396", - "default.handlebars->31->1055", - "default.handlebars->31->1760", + "default.handlebars->31->1064", + "default.handlebars->31->1799", "sharing.handlebars->11->60" ] }, @@ -31608,7 +31674,7 @@ "xloc": [ "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->31->589", + "default.handlebars->31->598", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3", @@ -31674,8 +31740,8 @@ "zh-cht": "中繼", "xloc": [ "default-mobile.handlebars->11->237", - "default.handlebars->31->281", - "default.handlebars->31->476" + "default.handlebars->31->290", + "default.handlebars->31->485" ] }, { @@ -31695,7 +31761,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->31->2330" + "default.handlebars->31->2371" ] }, { @@ -31715,7 +31781,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->31->2323" + "default.handlebars->31->2364" ] }, { @@ -31735,8 +31801,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->31->2329", - "default.handlebars->31->2345" + "default.handlebars->31->2370", + "default.handlebars->31->2386" ] }, { @@ -31874,7 +31940,7 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->31->1002" + "default.handlebars->31->1011" ] }, { @@ -31895,7 +31961,7 @@ "zh-cht": "遠程命令", "xloc": [ "default-mobile.handlebars->11->572", - "default.handlebars->31->1639" + "default.handlebars->31->1678" ] }, { @@ -31917,8 +31983,8 @@ "xloc": [ "default-mobile.handlebars->11->559", "default-mobile.handlebars->11->579", - "default.handlebars->31->1624", - "default.handlebars->31->1661" + "default.handlebars->31->1663", + "default.handlebars->31->1700" ] }, { @@ -31940,8 +32006,8 @@ "xloc": [ "default-mobile.handlebars->11->193", "default-mobile.handlebars->11->196", - "default.handlebars->31->291", - "default.handlebars->31->294" + "default.handlebars->31->300", + "default.handlebars->31->303" ] }, { @@ -31982,8 +32048,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->31->1806", - "default.handlebars->31->1812" + "default.handlebars->31->1845", + "default.handlebars->31->1851" ] }, { @@ -32003,7 +32069,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->31->1807" + "default.handlebars->31->1846" ] }, { @@ -32023,7 +32089,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->31->1813" + "default.handlebars->31->1852" ] }, { @@ -32043,9 +32109,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->31->1804", - "default.handlebars->31->1808", - "default.handlebars->31->1814" + "default.handlebars->31->1843", + "default.handlebars->31->1847", + "default.handlebars->31->1853" ] }, { @@ -32086,8 +32152,8 @@ "zh-cht": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->11->354", - "default.handlebars->31->317", - "default.handlebars->31->967", + "default.handlebars->31->326", + "default.handlebars->31->976", "desktop.handlebars->3->20", "sharing.handlebars->11->20" ] @@ -32116,7 +32182,7 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->31->1000", + "default.handlebars->31->1009", "desktop.handlebars->3->22", "sharing.handlebars->11->22" ] @@ -32204,8 +32270,8 @@ "xloc": [ "default-mobile.handlebars->11->560", "default-mobile.handlebars->11->584", - "default.handlebars->31->1625", - "default.handlebars->31->1666" + "default.handlebars->31->1664", + "default.handlebars->31->1705" ] }, { @@ -32225,7 +32291,7 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->31->1001" + "default.handlebars->31->1010" ] }, { @@ -32288,7 +32354,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->31->1482" + "default.handlebars->31->1521" ] }, { @@ -32342,8 +32408,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->31->2085", - "default.handlebars->31->2227" + "default.handlebars->31->2126", + "default.handlebars->31->2268" ] }, { @@ -32363,8 +32429,8 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->31->2083", - "default.handlebars->31->2214" + "default.handlebars->31->2124", + "default.handlebars->31->2255" ] }, { @@ -32384,7 +32450,13 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->31->2212" + "default.handlebars->31->2253" + ] + }, + { + "en": "Remove Login Token", + "xloc": [ + "default.handlebars->31->1513" ] }, { @@ -32421,7 +32493,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->31->2223" + "default.handlebars->31->2264" ] }, { @@ -32441,8 +32513,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->31->1685", - "default.handlebars->31->2219" + "default.handlebars->31->1724", + "default.handlebars->31->2260" ] }, { @@ -32462,7 +32534,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->31->2093" + "default.handlebars->31->2134" ] }, { @@ -32482,8 +32554,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->31->1683", - "default.handlebars->31->2216" + "default.handlebars->31->1722", + "default.handlebars->31->2257" ] }, { @@ -32503,7 +32575,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->31->2189" + "default.handlebars->31->2230" ] }, { @@ -32523,7 +32595,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->31->1992" + "default.handlebars->31->2033" ] }, { @@ -32543,7 +32615,7 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->31->1604" + "default.handlebars->31->1643" ] }, { @@ -32563,7 +32635,13 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->31->751" + "default.handlebars->31->760" + ] + }, + { + "en": "Remove login token", + "xloc": [ + "default.handlebars->31->1508" ] }, { @@ -32583,7 +32661,7 @@ "zh-chs": "删除节点位置", "zh-cht": "刪除節點位置", "xloc": [ - "default.handlebars->31->581" + "default.handlebars->31->590" ] }, { @@ -32604,7 +32682,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->11->87", - "default.handlebars->31->1196" + "default.handlebars->31->1205" ] }, { @@ -32624,7 +32702,7 @@ "zh-chs": "移除标签", "zh-cht": "删除標籤", "xloc": [ - "default.handlebars->31->516" + "default.handlebars->31->525" ] }, { @@ -32644,7 +32722,7 @@ "zh-chs": "删除此设备", "zh-cht": "刪除此裝置", "xloc": [ - "default.handlebars->31->707" + "default.handlebars->31->716" ] }, { @@ -32664,7 +32742,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->31->2163" + "default.handlebars->31->2204" ] }, { @@ -32684,7 +32762,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->31->2203" + "default.handlebars->31->2244" ] }, { @@ -32704,7 +32782,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->31->2079" + "default.handlebars->31->2120" ] }, { @@ -32724,8 +32802,8 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->31->2073", - "default.handlebars->31->744" + "default.handlebars->31->2114", + "default.handlebars->31->753" ] }, { @@ -32745,11 +32823,11 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->31->1551", - "default.handlebars->31->2067", - "default.handlebars->31->2197", - "default.handlebars->31->2209", - "default.handlebars->31->745" + "default.handlebars->31->1590", + "default.handlebars->31->2108", + "default.handlebars->31->2238", + "default.handlebars->31->2250", + "default.handlebars->31->754" ] }, { @@ -32769,7 +32847,7 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->31->1866" + "default.handlebars->31->1905" ] }, { @@ -32789,7 +32867,7 @@ "zh-chs": "删除的设备共享{0}", "zh-cht": "刪除的設備共享{0}", "xloc": [ - "default.handlebars->31->1877" + "default.handlebars->31->1916" ] }, { @@ -32809,7 +32887,13 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->31->1862" + "default.handlebars->31->1901" + ] + }, + { + "en": "Removed login token", + "xloc": [ + "default.handlebars->31->1930" ] }, { @@ -32829,14 +32913,14 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->31->1872" + "default.handlebars->31->1911" ] }, { "en": "Removed push notification authentication device", "nl": "Verificatieapparaat voor pushmeldingen verwijderd", "xloc": [ - "default.handlebars->31->1889" + "default.handlebars->31->1928" ] }, { @@ -32856,7 +32940,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->31->1869" + "default.handlebars->31->1908" ] }, { @@ -32876,9 +32960,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->31->1835", - "default.handlebars->31->1856", - "default.handlebars->31->1861" + "default.handlebars->31->1874", + "default.handlebars->31->1895", + "default.handlebars->31->1900" ] }, { @@ -32898,7 +32982,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->31->1845" + "default.handlebars->31->1884" ] }, { @@ -32918,7 +33002,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->31->1858" + "default.handlebars->31->1897" ] }, { @@ -32938,8 +33022,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->31->1837", - "default.handlebars->31->1847" + "default.handlebars->31->1876", + "default.handlebars->31->1886" ] }, { @@ -32963,9 +33047,9 @@ "default-mobile.handlebars->11->400", "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->31->1059", - "default.handlebars->31->1764", - "default.handlebars->31->575", + "default.handlebars->31->1068", + "default.handlebars->31->1803", + "default.handlebars->31->584", "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", @@ -32990,7 +33074,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->31->1823" + "default.handlebars->31->1862" ] }, { @@ -33010,7 +33094,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->31->1896" + "default.handlebars->31->1937" ] }, { @@ -33030,7 +33114,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->31->1891" + "default.handlebars->31->1932" ] }, { @@ -33062,7 +33146,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->31->1451" + "default.handlebars->31->1480" ] }, { @@ -33083,8 +33167,8 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->31->1997", - "default.handlebars->31->2187" + "default.handlebars->31->2038", + "default.handlebars->31->2228" ] }, { @@ -33104,7 +33188,7 @@ "zh-chs": "需要安装MeshCentral路由器", "zh-cht": "需要安裝MeshCentral路由器", "xloc": [ - "default.handlebars->31->717" + "default.handlebars->31->726" ] }, { @@ -33124,9 +33208,9 @@ "zh-chs": "需要安装MeshCentral Router。", "zh-cht": "需要安裝MeshCentral Router。", "xloc": [ - "default.handlebars->31->719", - "default.handlebars->31->721", - "default.handlebars->31->723" + "default.handlebars->31->728", + "default.handlebars->31->730", + "default.handlebars->31->732" ] }, { @@ -33169,7 +33253,7 @@ "zh-cht": "重設", "xloc": [ "default-mobile.handlebars->11->312", - "default.handlebars->31->857", + "default.handlebars->31->866", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -33191,7 +33275,7 @@ "zh-cht": "重置/關閉電源", "xloc": [ "default-mobile.handlebars->11->573", - "default.handlebars->31->1640" + "default.handlebars->31->1679" ] }, { @@ -33277,7 +33361,7 @@ "zh-chs": "重置设备", "zh-cht": "重置裝置", "xloc": [ - "default.handlebars->31->487" + "default.handlebars->31->496" ] }, { @@ -33318,9 +33402,9 @@ "zh-cht": "重置/關閉", "xloc": [ "default-mobile.handlebars->11->593", - "default.handlebars->31->1676", - "default.handlebars->31->781", - "default.handlebars->31->803" + "default.handlebars->31->1715", + "default.handlebars->31->790", + "default.handlebars->31->812" ] }, { @@ -33340,7 +33424,7 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->31->1017", + "default.handlebars->31->1026", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -33361,7 +33445,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->31->1487" + "default.handlebars->31->1526" ] }, { @@ -33401,7 +33485,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->31->1484" + "default.handlebars->31->1523" ] }, { @@ -33423,7 +33507,7 @@ "xloc": [ "default-mobile.handlebars->11->258", "default.handlebars->31->177", - "default.handlebars->31->731" + "default.handlebars->31->740" ] }, { @@ -33443,7 +33527,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->31->2105" + "default.handlebars->31->2146" ] }, { @@ -33463,7 +33547,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->31->1360" + "default.handlebars->31->1369" ] }, { @@ -33472,7 +33556,7 @@ "nl": "Rechts", "xloc": [ "default-mobile.handlebars->11->369", - "default.handlebars->31->985" + "default.handlebars->31->994" ] }, { @@ -33492,7 +33576,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->31->1361" + "default.handlebars->31->1370" ] }, { @@ -33512,7 +33596,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->31->1362" + "default.handlebars->31->1371" ] }, { @@ -33534,8 +33618,8 @@ "xloc": [ "default-mobile.handlebars->11->130", "default-mobile.handlebars->11->390", - "default.handlebars->31->1044", - "default.handlebars->31->1732", + "default.handlebars->31->1053", + "default.handlebars->31->1771", "sharing.handlebars->11->49" ] }, @@ -33655,7 +33739,7 @@ "zh-chs": "路由器", "zh-cht": "路由器", "xloc": [ - "default.handlebars->31->263" + "default.handlebars->31->272" ] }, { @@ -33675,9 +33759,9 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->31->511", - "default.handlebars->31->855", - "default.handlebars->31->875" + "default.handlebars->31->520", + "default.handlebars->31->864", + "default.handlebars->31->884" ] }, { @@ -33697,7 +33781,7 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->31->917" + "default.handlebars->31->926" ] }, { @@ -33717,8 +33801,8 @@ "zh-chs": "以代理身份运行", "zh-cht": "以代理身份運行", "xloc": [ - "default.handlebars->31->508", - "default.handlebars->31->872" + "default.handlebars->31->517", + "default.handlebars->31->881" ] }, { @@ -33738,8 +33822,8 @@ "zh-chs": "以用户身份运行,如果没有用户,则运行代理", "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "xloc": [ - "default.handlebars->31->509", - "default.handlebars->31->873" + "default.handlebars->31->518", + "default.handlebars->31->882" ] }, { @@ -33759,7 +33843,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->31->489" + "default.handlebars->31->498" ] }, { @@ -33779,8 +33863,8 @@ "zh-chs": "在所选设备上运行命令。", "zh-cht": "在所選裝置上運行命令。", "xloc": [ - "default.handlebars->31->504", - "default.handlebars->31->868" + "default.handlebars->31->513", + "default.handlebars->31->877" ] }, { @@ -33817,7 +33901,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->31->1799" + "default.handlebars->31->1838" ] }, { @@ -33837,7 +33921,7 @@ "zh-chs": "以用户身份运行命令", "zh-cht": "以用戶身份運行命令", "xloc": [ - "default.handlebars->31->1874" + "default.handlebars->31->1913" ] }, { @@ -33857,7 +33941,7 @@ "zh-chs": "如果可能,以用户身份运行命令", "zh-cht": "如果可能,以用戶身份運行命令", "xloc": [ - "default.handlebars->31->1875" + "default.handlebars->31->1914" ] }, { @@ -33877,7 +33961,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->31->1363" + "default.handlebars->31->1372" ] }, { @@ -33897,7 +33981,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->31->1364" + "default.handlebars->31->1373" ] }, { @@ -33915,8 +33999,8 @@ "es": "SCP", "fr": "SCP", "xloc": [ - "default.handlebars->31->287", - "default.handlebars->31->722" + "default.handlebars->31->296", + "default.handlebars->31->731" ] }, { @@ -33936,8 +34020,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->31->2150", - "default.handlebars->31->2155", + "default.handlebars->31->2191", + "default.handlebars->31->2196", "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", @@ -33962,7 +34046,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->31->2171" + "default.handlebars->31->2212" ] }, { @@ -33972,7 +34056,7 @@ "de": "SMS Fehler", "xloc": [ "default-mobile.handlebars->11->639", - "default.handlebars->31->2303" + "default.handlebars->31->2344" ] }, { @@ -33982,7 +34066,7 @@ "de": "SMS Fehler: {0}", "xloc": [ "default-mobile.handlebars->11->640", - "default.handlebars->31->2304" + "default.handlebars->31->2345" ] }, { @@ -33992,7 +34076,7 @@ "de": "SMS-Gateway nicht aktiviert", "xloc": [ "default-mobile.handlebars->11->634", - "default.handlebars->31->2298" + "default.handlebars->31->2339" ] }, { @@ -34024,7 +34108,7 @@ "de": "SMS Erfolgreich gesendet.", "xloc": [ "default-mobile.handlebars->11->638", - "default.handlebars->31->2302" + "default.handlebars->31->2343" ] }, { @@ -34042,8 +34126,8 @@ "tr": "SSH", "fr": "SSH", "xloc": [ - "default.handlebars->31->286", - "default.handlebars->31->720" + "default.handlebars->31->295", + "default.handlebars->31->729" ] }, { @@ -34063,7 +34147,7 @@ "zh-chs": "与设备名称相同", "zh-cht": "與裝置名稱相同", "xloc": [ - "default.handlebars->31->331" + "default.handlebars->31->340" ] }, { @@ -34083,7 +34167,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->31->1365" + "default.handlebars->31->1374" ] }, { @@ -34141,7 +34225,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->31->1366" + "default.handlebars->31->1375" ] }, { @@ -34161,7 +34245,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->31->1367" + "default.handlebars->31->1376" ] }, { @@ -34181,7 +34265,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->31->1368" + "default.handlebars->31->1377" ] }, { @@ -34243,7 +34327,7 @@ "zh-chs": "保存节点位置", "zh-cht": "保存節點位置", "xloc": [ - "default.handlebars->31->582" + "default.handlebars->31->591" ] }, { @@ -34303,8 +34387,8 @@ "zh-chs": "扫瞄", "zh-cht": "掃瞄", "xloc": [ - "default.handlebars->31->352", - "default.handlebars->31->354" + "default.handlebars->31->361", + "default.handlebars->31->363" ] }, { @@ -34324,7 +34408,7 @@ "zh-chs": "扫描网络", "zh-cht": "掃描網絡", "xloc": [ - "default.handlebars->31->321" + "default.handlebars->31->330" ] }, { @@ -34344,7 +34428,7 @@ "zh-chs": "扫描英特尔®AMT设备", "zh-cht": "掃描Intel® AMT裝置", "xloc": [ - "default.handlebars->31->355" + "default.handlebars->31->364" ] }, { @@ -34384,7 +34468,7 @@ "zh-chs": "扫描...", "zh-cht": "掃描...", "xloc": [ - "default.handlebars->31->356" + "default.handlebars->31->365" ] }, { @@ -34464,8 +34548,8 @@ "zh-chs": "搜寻", "zh-cht": "搜尋", "xloc": [ - "default.handlebars->31->1048", - "default.handlebars->31->595", + "default.handlebars->31->1057", + "default.handlebars->31->604", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", "sharing.handlebars->11->53" ] @@ -34553,7 +34637,7 @@ "zh-cht": "已使用TLS保安", "xloc": [ "default-mobile.handlebars->11->484", - "default.handlebars->31->1144" + "default.handlebars->31->1153" ] }, { @@ -34575,11 +34659,11 @@ "xloc": [ "default-mobile.handlebars->11->334", "default-mobile.handlebars->11->483", - "default.handlebars->31->1143", - "default.handlebars->31->1730", - "default.handlebars->31->2151", - "default.handlebars->31->335", - "default.handlebars->31->889", + "default.handlebars->31->1152", + "default.handlebars->31->1769", + "default.handlebars->31->2192", + "default.handlebars->31->344", + "default.handlebars->31->898", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] }, @@ -34600,7 +34684,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->31->2148" + "default.handlebars->31->2189" ] }, { @@ -34610,7 +34694,7 @@ "de": "Sicherheits Warnung", "xloc": [ "default-mobile.handlebars->11->608", - "default.handlebars->31->2272" + "default.handlebars->31->2313" ] }, { @@ -34650,12 +34734,12 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->31->1051", - "default.handlebars->31->1053", - "default.handlebars->31->1756", - "default.handlebars->31->1941", - "default.handlebars->31->2024", - "default.handlebars->31->481", + "default.handlebars->31->1060", + "default.handlebars->31->1062", + "default.handlebars->31->1795", + "default.handlebars->31->1982", + "default.handlebars->31->2065", + "default.handlebars->31->490", "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", @@ -34684,11 +34768,11 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->31->1052", - "default.handlebars->31->1755", - "default.handlebars->31->1940", - "default.handlebars->31->2023", - "default.handlebars->31->480", + "default.handlebars->31->1061", + "default.handlebars->31->1794", + "default.handlebars->31->1981", + "default.handlebars->31->2064", + "default.handlebars->31->489", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" ] @@ -34697,7 +34781,7 @@ "en": "Select a device to register for push notification authentication. Once selected, the device will prompt for confirmation.", "nl": "Selecteer een apparaat om te registreren voor verificatie via pushmeldingen. Eenmaal geselecteerd, zal het apparaat om bevestiging vragen.", "xloc": [ - "default.handlebars->31->1212" + "default.handlebars->31->1221" ] }, { @@ -34717,7 +34801,7 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->31->903" + "default.handlebars->31->912" ] }, { @@ -34737,7 +34821,7 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->31->902" + "default.handlebars->31->911" ] }, { @@ -34757,7 +34841,7 @@ "zh-chs": "选择要放置的节点", "zh-cht": "選擇要放置的節點", "xloc": [ - "default.handlebars->31->598" + "default.handlebars->31->607" ] }, { @@ -34777,7 +34861,7 @@ "zh-chs": "选择要在所有选定设备上执行的操作。仅在拥有适当权限的情况下才能执行操作。", "zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->31->497" + "default.handlebars->31->506" ] }, { @@ -34797,8 +34881,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->31->1944", - "default.handlebars->31->2025" + "default.handlebars->31->1985", + "default.handlebars->31->2066" ] }, { @@ -34819,7 +34903,7 @@ "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->31->847" + "default.handlebars->31->856" ] }, { @@ -34839,7 +34923,7 @@ "zh-chs": "选择新密码", "zh-cht": "選擇新密碼", "xloc": [ - "default.handlebars->31->1564" + "default.handlebars->31->1603" ] }, { @@ -34881,7 +34965,7 @@ "zh-cht": "僅自我事件", "xloc": [ "default-mobile.handlebars->11->589", - "default.handlebars->31->1672" + "default.handlebars->31->1711" ] }, { @@ -34927,7 +35011,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->31->1955" + "default.handlebars->31->1996" ] }, { @@ -34947,8 +35031,8 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->31->482", - "default.handlebars->31->859" + "default.handlebars->31->491", + "default.handlebars->31->868" ] }, { @@ -34968,7 +35052,7 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->31->895" + "default.handlebars->31->904" ] }, { @@ -34988,7 +35072,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->31->1953" + "default.handlebars->31->1994" ] }, { @@ -35008,7 +35092,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->31->2156" + "default.handlebars->31->2197" ] }, { @@ -35028,7 +35112,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->31->2158" + "default.handlebars->31->2199" ] }, { @@ -35048,7 +35132,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->31->2064" + "default.handlebars->31->2105" ] }, { @@ -35068,7 +35152,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->31->1956" + "default.handlebars->31->1997" ] }, { @@ -35088,7 +35172,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->31->1936" + "default.handlebars->31->1977" ] }, { @@ -35108,7 +35192,7 @@ "zh-chs": "发送安装连结", "zh-cht": "發送安裝鏈結", "xloc": [ - "default.handlebars->31->365" + "default.handlebars->31->374" ] }, { @@ -35128,7 +35212,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->31->1996" + "default.handlebars->31->2037" ] }, { @@ -35252,7 +35336,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->31->2160" + "default.handlebars->31->2201" ] }, { @@ -35287,7 +35371,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->31->1371" + "default.handlebars->31->1380" ] }, { @@ -35308,7 +35392,7 @@ "zh-cht": "序列號", "xloc": [ "default-mobile.handlebars->11->495", - "default.handlebars->31->1155" + "default.handlebars->31->1164" ] }, { @@ -35328,7 +35412,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->31->2006" + "default.handlebars->31->2047" ] }, { @@ -35348,7 +35432,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->31->2363" + "default.handlebars->31->2404" ] }, { @@ -35356,7 +35440,7 @@ "nl": "Server connectiviteit", "de": "Server Verbindung", "xloc": [ - "default.handlebars->31->240" + "default.handlebars->31->249" ] }, { @@ -35376,7 +35460,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->31->2364" + "default.handlebars->31->2405" ] }, { @@ -35398,11 +35482,11 @@ "xloc": [ "default-mobile.handlebars->11->566", "default-mobile.handlebars->11->581", - "default.handlebars->31->1633", - "default.handlebars->31->1663", - "default.handlebars->31->2003", - "default.handlebars->31->774", - "default.handlebars->31->796" + "default.handlebars->31->1672", + "default.handlebars->31->1702", + "default.handlebars->31->2044", + "default.handlebars->31->783", + "default.handlebars->31->805" ] }, { @@ -35431,7 +35515,7 @@ "fr": "Limite du serveur", "xloc": [ "default-mobile.handlebars->11->607", - "default.handlebars->31->2271" + "default.handlebars->31->2312" ] }, { @@ -35459,8 +35543,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->31->1928", - "default.handlebars->31->2017" + "default.handlebars->31->1969", + "default.handlebars->31->2058" ] }, { @@ -35480,7 +35564,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->31->2122" + "default.handlebars->31->2163" ] }, { @@ -35500,7 +35584,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->31->2007" + "default.handlebars->31->2048" ] }, { @@ -35520,7 +35604,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->31->2121" + "default.handlebars->31->2162" ] }, { @@ -35540,7 +35624,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->31->2309" + "default.handlebars->31->2350" ] }, { @@ -35580,7 +35664,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->31->2376" + "default.handlebars->31->2417" ] }, { @@ -35588,7 +35672,7 @@ "nl": "Server Tracing Event", "fr": "Évènement du serveur", "xloc": [ - "default.handlebars->31->2355" + "default.handlebars->31->2396" ] }, { @@ -35649,7 +35733,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->31->2008" + "default.handlebars->31->2049" ] }, { @@ -35817,7 +35901,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->31->2354" + "default.handlebars->31->2395" ] }, { @@ -35837,7 +35921,7 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->31->1018" + "default.handlebars->31->1027" ] }, { @@ -35877,7 +35961,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->31->2232" + "default.handlebars->31->2273" ] }, { @@ -35897,7 +35981,7 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->31->964", + "default.handlebars->31->973", "desktop.handlebars->3->18", "sharing.handlebars->11->18" ] @@ -35965,7 +36049,7 @@ "zh-cht": "節", "xloc": [ "default-mobile.handlebars->11->211", - "default.handlebars->31->309", + "default.handlebars->31->318", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->7" ] }, @@ -35995,7 +36079,7 @@ "zh-chs": "设置标签", "zh-cht": "設置標籤", "xloc": [ - "default.handlebars->31->515" + "default.handlebars->31->524" ] }, { @@ -36015,7 +36099,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->31->1797" + "default.handlebars->31->1836" ] }, { @@ -36056,7 +36140,7 @@ "zh-chs": "设定档案", "zh-cht": "設定檔案", "xloc": [ - "default.handlebars->31->419" + "default.handlebars->31->428" ] }, { @@ -36099,8 +36183,8 @@ "zh-cht": "設定", "xloc": [ "agent-translations.json", - "default.handlebars->31->1543", - "default.handlebars->31->323" + "default.handlebars->31->1582", + "default.handlebars->31->332" ] }, { @@ -36154,7 +36238,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->31->1475" + "default.handlebars->31->1514" ] }, { @@ -36176,9 +36260,9 @@ "xloc": [ "default-mobile.handlebars->11->3", "default.handlebars->31->10", - "default.handlebars->31->266", - "default.handlebars->31->269", - "default.handlebars->31->316", + "default.handlebars->31->275", + "default.handlebars->31->278", + "default.handlebars->31->325", "desktop.handlebars->3->3", "sharing.handlebars->11->3", "terminal.handlebars->3->3", @@ -36202,7 +36286,7 @@ "zh-chs": "共享", "zh-cht": "共享", "xloc": [ - "default.handlebars->31->703" + "default.handlebars->31->712" ] }, { @@ -36223,7 +36307,7 @@ "zh-cht": "共享裝置", "xloc": [ "default.handlebars->31->221", - "default.handlebars->31->846" + "default.handlebars->31->855" ] }, { @@ -36263,7 +36347,7 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->31->1012" + "default.handlebars->31->1021" ] }, { @@ -36315,8 +36399,8 @@ "xloc": [ "default-mobile.handlebars->11->372", "default-mobile.handlebars->11->376", - "default.handlebars->31->988", - "default.handlebars->31->992" + "default.handlebars->31->1001", + "default.handlebars->31->997" ] }, { @@ -36502,7 +36586,7 @@ "zh-cht": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->11->569", - "default.handlebars->31->1636" + "default.handlebars->31->1675" ] }, { @@ -36522,7 +36606,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->31->1597" + "default.handlebars->31->1636" ] }, { @@ -36562,7 +36646,7 @@ "zh-chs": "显示设备位置信息", "zh-cht": "顯示裝置位置訊息", "xloc": [ - "default.handlebars->31->711" + "default.handlebars->31->720" ] }, { @@ -36582,7 +36666,7 @@ "zh-chs": "显示设备网络接口信息", "zh-cht": "顯示裝置網絡介面訊息", "xloc": [ - "default.handlebars->31->709" + "default.handlebars->31->718" ] }, { @@ -36622,8 +36706,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->31->1959", - "default.handlebars->31->1982" + "default.handlebars->31->2000", + "default.handlebars->31->2023" ] }, { @@ -36643,8 +36727,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->31->1958", - "default.handlebars->31->1981" + "default.handlebars->31->1999", + "default.handlebars->31->2022" ] }, { @@ -36664,8 +36748,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->31->1960", - "default.handlebars->31->1983" + "default.handlebars->31->2001", + "default.handlebars->31->2024" ] }, { @@ -36685,8 +36769,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->31->1957", - "default.handlebars->31->1980" + "default.handlebars->31->1998", + "default.handlebars->31->2021" ] }, { @@ -36880,8 +36964,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->31->1534", - "default.handlebars->31->1554" + "default.handlebars->31->1573", + "default.handlebars->31->1593" ] }, { @@ -36901,8 +36985,8 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->31->1532", - "default.handlebars->31->1558" + "default.handlebars->31->1571", + "default.handlebars->31->1597" ] }, { @@ -36922,7 +37006,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->31->1369" + "default.handlebars->31->1378" ] }, { @@ -36942,7 +37026,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->31->1370" + "default.handlebars->31->1379" ] }, { @@ -36984,8 +37068,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->31->2235", - "default.handlebars->31->2256", + "default.handlebars->31->2276", + "default.handlebars->31->2297", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -37006,7 +37090,7 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->31->1080", + "default.handlebars->31->1089", "sharing.handlebars->11->85" ] }, @@ -37027,7 +37111,7 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->31->1081", + "default.handlebars->31->1090", "sharing.handlebars->11->86" ] }, @@ -37048,7 +37132,7 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->31->1082", + "default.handlebars->31->1091", "sharing.handlebars->11->87" ] }, @@ -37069,7 +37153,7 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->31->1083", + "default.handlebars->31->1092", "sharing.handlebars->11->88" ] }, @@ -37097,7 +37181,7 @@ "default.handlebars->31->2", "default.handlebars->31->3", "default.handlebars->31->4", - "default.handlebars->31->856" + "default.handlebars->31->865" ] }, { @@ -37117,7 +37201,7 @@ "zh-chs": "把装置休眠", "zh-cht": "把裝置休眠", "xloc": [ - "default.handlebars->31->486" + "default.handlebars->31->495" ] }, { @@ -37139,8 +37223,8 @@ "xloc": [ "default-mobile.handlebars->11->221", "default-mobile.handlebars->11->222", - "default.handlebars->31->451", - "default.handlebars->31->453" + "default.handlebars->31->460", + "default.handlebars->31->462" ] }, { @@ -37160,7 +37244,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->31->1372" + "default.handlebars->31->1381" ] }, { @@ -37180,7 +37264,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->31->1373" + "default.handlebars->31->1382" ] }, { @@ -37244,7 +37328,7 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->31->970" + "default.handlebars->31->979" ] }, { @@ -37265,7 +37349,7 @@ "zh-cht": "軟斷開代理", "xloc": [ "default-mobile.handlebars->11->528", - "default.handlebars->31->1189" + "default.handlebars->31->1198" ] }, { @@ -37286,7 +37370,7 @@ "zh-cht": "軟關機", "xloc": [ "default-mobile.handlebars->11->225", - "default.handlebars->31->459" + "default.handlebars->31->468" ] }, { @@ -37326,7 +37410,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->31->1374" + "default.handlebars->31->1383" ] }, { @@ -37346,7 +37430,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->31->1375" + "default.handlebars->31->1384" ] }, { @@ -37500,7 +37584,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->31->1376" + "default.handlebars->31->1385" ] }, { @@ -37520,7 +37604,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->31->1377" + "default.handlebars->31->1386" ] }, { @@ -37540,7 +37624,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->31->1378" + "default.handlebars->31->1387" ] }, { @@ -37560,7 +37644,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->31->1379" + "default.handlebars->31->1388" ] }, { @@ -37580,7 +37664,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->31->1380" + "default.handlebars->31->1389" ] }, { @@ -37600,7 +37684,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->31->1381" + "default.handlebars->31->1390" ] }, { @@ -37620,7 +37704,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->31->1382" + "default.handlebars->31->1391" ] }, { @@ -37640,7 +37724,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->31->1383" + "default.handlebars->31->1392" ] }, { @@ -37660,7 +37744,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->31->1384" + "default.handlebars->31->1393" ] }, { @@ -37680,7 +37764,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->31->1385" + "default.handlebars->31->1394" ] }, { @@ -37700,7 +37784,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->31->1386" + "default.handlebars->31->1395" ] }, { @@ -37720,7 +37804,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->31->1387" + "default.handlebars->31->1396" ] }, { @@ -37740,7 +37824,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->31->1388" + "default.handlebars->31->1397" ] }, { @@ -37760,7 +37844,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->31->1389" + "default.handlebars->31->1398" ] }, { @@ -37780,7 +37864,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->31->1390" + "default.handlebars->31->1399" ] }, { @@ -37800,7 +37884,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->31->1391" + "default.handlebars->31->1400" ] }, { @@ -37820,7 +37904,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->31->1392" + "default.handlebars->31->1401" ] }, { @@ -37840,7 +37924,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->31->1393" + "default.handlebars->31->1402" ] }, { @@ -37860,7 +37944,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->31->1394" + "default.handlebars->31->1403" ] }, { @@ -37880,7 +37964,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->31->1395" + "default.handlebars->31->1404" ] }, { @@ -37960,7 +38044,7 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->31->1015" + "default.handlebars->31->1024" ] }, { @@ -37998,9 +38082,9 @@ "zh-cht": "開始時間", "xloc": [ "default.handlebars->31->206", - "default.handlebars->31->2233", - "default.handlebars->31->2258", - "default.handlebars->31->960", + "default.handlebars->31->2274", + "default.handlebars->31->2299", + "default.handlebars->31->969", "desktop.handlebars->3->14", "sharing.handlebars->11->14" ] @@ -38022,7 +38106,7 @@ "zh-chs": "首先输入新旧MBEx密码。", "zh-cht": "首先輸入新舊MBEx密碼。", "xloc": [ - "default.handlebars->31->343" + "default.handlebars->31->352" ] }, { @@ -38051,7 +38135,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->31->1781" + "default.handlebars->31->1820" ] }, { @@ -38071,7 +38155,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->31->1790" + "default.handlebars->31->1829" ] }, { @@ -38091,7 +38175,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->31->1791" + "default.handlebars->31->1830" ] }, { @@ -38111,7 +38195,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->31->1788" + "default.handlebars->31->1827" ] }, { @@ -38131,7 +38215,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->31->1810" + "default.handlebars->31->1849" ] }, { @@ -38151,7 +38235,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->31->1811" + "default.handlebars->31->1850" ] }, { @@ -38171,7 +38255,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->31->1817" + "default.handlebars->31->1856" ] }, { @@ -38191,7 +38275,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->31->1818" + "default.handlebars->31->1857" ] }, { @@ -38211,7 +38295,7 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->31->1789" + "default.handlebars->31->1828" ] }, { @@ -38231,7 +38315,7 @@ "zh-chs": "现在开始", "zh-cht": "現在開始", "xloc": [ - "default.handlebars->31->839" + "default.handlebars->31->848" ] }, { @@ -38251,7 +38335,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->31->1805" + "default.handlebars->31->1844" ] }, { @@ -38271,7 +38355,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->31->1815" + "default.handlebars->31->1854" ] }, { @@ -38291,7 +38375,7 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->31->1006", + "default.handlebars->31->1015", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -38332,8 +38416,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->31->2178", - "default.handlebars->31->2251", + "default.handlebars->31->2219", + "default.handlebars->31->2292", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -38354,7 +38438,7 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->31->1016" + "default.handlebars->31->1025" ] }, { @@ -38374,7 +38458,7 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->31->1003" + "default.handlebars->31->1012" ] }, { @@ -38394,7 +38478,7 @@ "zh-chs": "停止进程#{0} “{1}”?", "zh-cht": "停止進程#{0} “{1}”?", "xloc": [ - "default.handlebars->31->1024", + "default.handlebars->31->1033", "desktop.handlebars->3->25" ] }, @@ -38433,7 +38517,7 @@ "zh-cht": "儲存", "xloc": [ "default-mobile.handlebars->11->511", - "default.handlebars->31->1171" + "default.handlebars->31->1180" ] }, { @@ -38473,7 +38557,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->31->1736" + "default.handlebars->31->1775" ] }, { @@ -38493,7 +38577,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->31->1468" + "default.handlebars->31->1497" ] }, { @@ -38538,7 +38622,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->31->1954" + "default.handlebars->31->1995" ] }, { @@ -38638,7 +38722,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->31->1396" + "default.handlebars->31->1405" ] }, { @@ -38658,7 +38742,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->31->1397" + "default.handlebars->31->1406" ] }, { @@ -38698,7 +38782,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->31->1398" + "default.handlebars->31->1407" ] }, { @@ -38718,7 +38802,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->31->1399" + "default.handlebars->31->1408" ] }, { @@ -38738,7 +38822,7 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->31->1400" + "default.handlebars->31->1409" ] }, { @@ -38758,7 +38842,7 @@ "zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。", "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "xloc": [ - "default.handlebars->31->1548" + "default.handlebars->31->1587" ] }, { @@ -38778,7 +38862,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->31->1605" + "default.handlebars->31->1644" ] }, { @@ -38798,7 +38882,7 @@ "zh-chs": "系统类型", "zh-cht": "系統類型", "xloc": [ - "default.handlebars->31->405" + "default.handlebars->31->414" ] }, { @@ -38836,7 +38920,7 @@ "zh-cht": "TCP路由", "xloc": [ "default-mobile.handlebars->11->205", - "default.handlebars->31->303" + "default.handlebars->31->312" ] }, { @@ -38924,7 +39008,7 @@ "zh-cht": "TLS", "xloc": [ "default-mobile.handlebars->11->269", - "default.handlebars->31->633" + "default.handlebars->31->642" ] }, { @@ -38945,7 +39029,7 @@ "zh-cht": "未設置TLS", "xloc": [ "default-mobile.handlebars->11->485", - "default.handlebars->31->1145" + "default.handlebars->31->1154" ] }, { @@ -38966,8 +39050,8 @@ "zh-cht": "需要TLS加密", "xloc": [ "default-mobile.handlebars->11->336", - "default.handlebars->31->337", - "default.handlebars->31->891" + "default.handlebars->31->346", + "default.handlebars->31->900" ] }, { @@ -38989,7 +39073,7 @@ "xloc": [ "default-mobile.handlebars->11->357", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->31->973" + "default.handlebars->31->982" ] }, { @@ -39009,8 +39093,8 @@ "zh-chs": "标签1,标签2,标签3", "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->31->518", - "default.handlebars->31->950" + "default.handlebars->31->527", + "default.handlebars->31->959" ] }, { @@ -39053,13 +39137,19 @@ "default-mobile.handlebars->11->288", "default-mobile.handlebars->11->289", "default-mobile.handlebars->11->345", - "default.handlebars->31->517", - "default.handlebars->31->691", - "default.handlebars->31->692", - "default.handlebars->31->949", + "default.handlebars->31->526", + "default.handlebars->31->700", + "default.handlebars->31->701", + "default.handlebars->31->958", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, + { + "en": "Take note of this username and password, the password cannot be shown again.", + "xloc": [ + "default.handlebars->31->238" + ] + }, { "cs": "tamilština", "de": "Tamil", @@ -39077,7 +39167,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->31->1401" + "default.handlebars->31->1410" ] }, { @@ -39097,7 +39187,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->31->1402" + "default.handlebars->31->1411" ] }, { @@ -39117,7 +39207,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->31->1403" + "default.handlebars->31->1412" ] }, { @@ -39139,12 +39229,12 @@ "xloc": [ "default-mobile.handlebars->11->199", "default-mobile.handlebars->11->299", - "default.handlebars->31->1598", - "default.handlebars->31->2245", - "default.handlebars->31->297", - "default.handlebars->31->585", - "default.handlebars->31->752", - "default.handlebars->31->816", + "default.handlebars->31->1637", + "default.handlebars->31->2286", + "default.handlebars->31->306", + "default.handlebars->31->594", + "default.handlebars->31->761", + "default.handlebars->31->825", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal", "sharing.handlebars->LeftSideToolBar" @@ -39154,8 +39244,8 @@ "en": "Terminal + Files", "nl": "Terminal + Bestanden", "xloc": [ - "default.handlebars->31->756", - "default.handlebars->31->819" + "default.handlebars->31->765", + "default.handlebars->31->828" ] }, { @@ -39195,10 +39285,10 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->31->1517", - "default.handlebars->31->2053", - "default.handlebars->31->2140", - "default.handlebars->31->672" + "default.handlebars->31->1556", + "default.handlebars->31->2094", + "default.handlebars->31->2181", + "default.handlebars->31->681" ] }, { @@ -39218,17 +39308,17 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->31->1516", - "default.handlebars->31->2052", - "default.handlebars->31->2139", - "default.handlebars->31->671" + "default.handlebars->31->1555", + "default.handlebars->31->2093", + "default.handlebars->31->2180", + "default.handlebars->31->680" ] }, { "en": "Terminal Session", "nl": "Terminal sessie", "xloc": [ - "default.handlebars->31->2238" + "default.handlebars->31->2279" ] }, { @@ -39338,7 +39428,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->31->1404" + "default.handlebars->31->1413" ] }, { @@ -39416,7 +39506,7 @@ "zh-chs": "此计算机所属的设备组的名称", "zh-cht": "此電腦所屬的裝置群的名稱", "xloc": [ - "default.handlebars->31->612" + "default.handlebars->31->621" ] }, { @@ -39436,7 +39526,7 @@ "zh-chs": "此计算机所属的设备组的名称。", "zh-cht": "此電腦所屬的裝置群的名稱。", "xloc": [ - "default.handlebars->31->610" + "default.handlebars->31->619" ] }, { @@ -39456,8 +39546,8 @@ "zh-chs": "此计算机的在操作系统中已设置的名称", "zh-cht": "此電腦在操作系統中已設置的的名稱", "xloc": [ - "default.handlebars->31->613", - "default.handlebars->31->615" + "default.handlebars->31->622", + "default.handlebars->31->624" ] }, { @@ -39478,7 +39568,7 @@ "zh-cht": "目前沒有任何通知", "xloc": [ "default-mobile.handlebars->11->602", - "default.handlebars->31->2266" + "default.handlebars->31->2307" ] }, { @@ -39488,7 +39578,7 @@ "de": "Seit der letzten Anmeldung sind {0} Anmeldeversuche für dieses Konto fehlgeschlagen.", "xloc": [ "default-mobile.handlebars->11->623", - "default.handlebars->31->2287" + "default.handlebars->31->2328" ] }, { @@ -39549,7 +39639,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->31->1454" + "default.handlebars->31->1483" ] }, { @@ -39569,7 +39659,7 @@ "zh-chs": "这是OS图形用户界面上的可执行档案。您需要'chmod + x meshagent'并运行此档案。", "zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。", "xloc": [ - "default.handlebars->31->439" + "default.handlebars->31->448" ] }, { @@ -39643,7 +39733,7 @@ "zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。", "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "xloc": [ - "default.handlebars->31->1583" + "default.handlebars->31->1622" ] }, { @@ -39684,7 +39774,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->31->1580" + "default.handlebars->31->1619" ] }, { @@ -39767,7 +39857,7 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->31->806" + "default.handlebars->31->815" ] }, { @@ -39804,7 +39894,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->31->898" + "default.handlebars->31->907" ] }, { @@ -39824,7 +39914,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->31->899" + "default.handlebars->31->908" ] }, { @@ -39844,7 +39934,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->31->1405" + "default.handlebars->31->1414" ] }, { @@ -39865,7 +39955,7 @@ "zh-cht": "時間", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->31->850", + "default.handlebars->31->859", "player.handlebars->3->1" ] }, @@ -39886,7 +39976,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->31->842" + "default.handlebars->31->851" ] }, { @@ -39906,7 +39996,7 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->31->1893" + "default.handlebars->31->1934" ] }, { @@ -39926,7 +40016,7 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->31->840" + "default.handlebars->31->849" ] }, { @@ -39947,7 +40037,7 @@ "zh-cht": "超時", "xloc": [ "default-mobile.handlebars->11->351", - "default.handlebars->31->955", + "default.handlebars->31->964", "desktop.handlebars->3->9", "sharing.handlebars->11->31", "sharing.handlebars->11->9", @@ -39971,7 +40061,7 @@ "zh-chs": "标题", "zh-cht": "標題", "xloc": [ - "default.handlebars->31->523" + "default.handlebars->31->532" ] }, { @@ -39991,7 +40081,7 @@ "zh-chs": "要将计算机添加到\\\"{0}\\\",请运行以下命令。命令需要root凭证。", "zh-cht": "要將電腦新增到\\\"{0}\\\",請運行以下命令。命令需要root憑據。", "xloc": [ - "default.handlebars->31->421" + "default.handlebars->31->430" ] }, { @@ -40000,7 +40090,7 @@ "fr": "Pour ajouter un appareil mobile au groupe \\\"{0}\\\", téléchargez l'applicatin MeshAgent et scannez ce QR Code.", "de": "Laden Sie die MeshAgent-Anwendung herunter und scannen Sie diesen QR-Code, um der Gruppe \\\"{0}\\\" ein mobiles Gerät hinzuzufügen.", "xloc": [ - "default.handlebars->31->428" + "default.handlebars->31->437" ] }, { @@ -40071,7 +40161,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。这代理中已嵌入了服务器和设备组信息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->31->410" + "default.handlebars->31->419" ] }, { @@ -40091,7 +40181,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。该代理安装程序中已嵌入了服务器和设备组讯息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->31->424" + "default.handlebars->31->433" ] }, { @@ -40111,7 +40201,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->31->1441" + "default.handlebars->31->1470" ] }, { @@ -40211,7 +40301,7 @@ "zh-chs": "要删除网格代理,请下载以下档案,运行并单击“卸载”。", "zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。", "xloc": [ - "default.handlebars->31->430" + "default.handlebars->31->439" ] }, { @@ -40231,7 +40321,7 @@ "zh-chs": "要删除网格代理,请运行以下命令。需要根凭证。", "zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。", "xloc": [ - "default.handlebars->31->437" + "default.handlebars->31->446" ] }, { @@ -40271,7 +40361,7 @@ "zh-chs": "吐司通知", "zh-cht": "吐司通知", "xloc": [ - "default.handlebars->31->521" + "default.handlebars->31->530" ] }, { @@ -40533,6 +40623,18 @@ "login2.handlebars->centralTable->1->0->logincell->tokenpanel->1->7->1->0->1" ] }, + { + "en": "Token Name", + "xloc": [ + "default.handlebars->31->1456" + ] + }, + { + "en": "Token: {0}", + "xloc": [ + "default.handlebars->31->232" + ] + }, { "cs": "Nástroje", "de": "Werkzeuge", @@ -40595,7 +40697,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->31->893" + "default.handlebars->31->902" ] }, { @@ -40655,7 +40757,7 @@ "zh-chs": "用于通过此服务器连接到设备的流量路由器", "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "xloc": [ - "default.handlebars->31->713" + "default.handlebars->31->722" ] }, { @@ -40705,7 +40807,7 @@ "de": "Anmeldeinformationen versuchen", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->31->638" + "default.handlebars->31->647" ] }, { @@ -40725,7 +40827,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->31->1406" + "default.handlebars->31->1415" ] }, { @@ -40745,7 +40847,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->31->1407" + "default.handlebars->31->1416" ] }, { @@ -40765,7 +40867,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->31->1408" + "default.handlebars->31->1417" ] }, { @@ -40785,7 +40887,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->31->1409" + "default.handlebars->31->1418" ] }, { @@ -40827,11 +40929,11 @@ "xloc": [ "default-mobile.handlebars->11->121", "default-mobile.handlebars->11->537", - "default.handlebars->31->1013", - "default.handlebars->31->1461", - "default.handlebars->31->1503", - "default.handlebars->31->1555", - "default.handlebars->31->822", + "default.handlebars->31->1022", + "default.handlebars->31->1490", + "default.handlebars->31->1542", + "default.handlebars->31->1594", + "default.handlebars->31->831", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "desktop.handlebars->p11->deskarea0->deskarea4->3", "sharing.handlebars->p11->deskarea0->deskarea4->3" @@ -40854,7 +40956,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->31->1218" + "default.handlebars->31->1227" ] }, { @@ -40874,7 +40976,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->31->1215" + "default.handlebars->31->1224" ] }, { @@ -40895,7 +40997,7 @@ "zh-cht": "UDP路由", "xloc": [ "default-mobile.handlebars->11->208", - "default.handlebars->31->306" + "default.handlebars->31->315" ] }, { @@ -40915,7 +41017,7 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->31->1028", + "default.handlebars->31->1037", "sharing.handlebars->11->33", "terminal.handlebars->3->15" ] @@ -40937,7 +41039,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->31->1410" + "default.handlebars->31->1419" ] }, { @@ -41033,8 +41135,8 @@ "zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。", "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->31->1456", - "default.handlebars->31->601" + "default.handlebars->31->1485", + "default.handlebars->31->610" ] }, { @@ -41054,9 +41156,9 @@ "zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->31->1458", - "default.handlebars->31->2382", - "default.handlebars->31->603" + "default.handlebars->31->1487", + "default.handlebars->31->2423", + "default.handlebars->31->612" ] }, { @@ -41066,7 +41168,7 @@ "de": "In diesem Modus kann kein Benutzer hinzugefügt werden", "xloc": [ "default-mobile.handlebars->11->619", - "default.handlebars->31->2283" + "default.handlebars->31->2324" ] }, { @@ -41201,9 +41303,9 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->591", - "default.handlebars->31->1674", - "default.handlebars->31->779", - "default.handlebars->31->801" + "default.handlebars->31->1713", + "default.handlebars->31->788", + "default.handlebars->31->810" ] }, { @@ -41224,8 +41326,8 @@ "zh-cht": "卸載代理", "xloc": [ "default-mobile.handlebars->11->571", - "default.handlebars->31->484", - "default.handlebars->31->864" + "default.handlebars->31->493", + "default.handlebars->31->873" ] }, { @@ -41245,7 +41347,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->31->1638" + "default.handlebars->31->1677" ] }, { @@ -41265,7 +41367,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->31->901" + "default.handlebars->31->910" ] }, { @@ -41296,23 +41398,23 @@ "default-mobile.handlebars->11->475", "default-mobile.handlebars->11->482", "default-mobile.handlebars->11->6", - "default.handlebars->31->1135", - "default.handlebars->31->1142", + "default.handlebars->31->1144", + "default.handlebars->31->1151", "default.handlebars->31->122", "default.handlebars->31->123", "default.handlebars->31->124", "default.handlebars->31->126", "default.handlebars->31->128", "default.handlebars->31->13", - "default.handlebars->31->1490", - "default.handlebars->31->1491", - "default.handlebars->31->2222", - "default.handlebars->31->2237", - "default.handlebars->31->2244", + "default.handlebars->31->1529", + "default.handlebars->31->1530", + "default.handlebars->31->2263", + "default.handlebars->31->2278", + "default.handlebars->31->2285", "default.handlebars->31->44", "default.handlebars->31->47", - "default.handlebars->31->479", "default.handlebars->31->48", + "default.handlebars->31->488", "default.handlebars->31->49", "default.handlebars->31->50", "default.handlebars->31->51", @@ -41337,7 +41439,7 @@ "zh-cht": "未知#{0}", "xloc": [ "default-mobile.handlebars->11->531", - "default.handlebars->31->1497" + "default.handlebars->31->1536" ] }, { @@ -41357,7 +41459,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->31->2315" + "default.handlebars->31->2356" ] }, { @@ -41377,8 +41479,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->31->2078", - "default.handlebars->31->2208" + "default.handlebars->31->2119", + "default.handlebars->31->2249" ] }, { @@ -41398,9 +41500,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->31->2072", - "default.handlebars->31->2196", - "default.handlebars->31->2319" + "default.handlebars->31->2113", + "default.handlebars->31->2237", + "default.handlebars->31->2360" ] }, { @@ -41420,7 +41522,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->31->2311" + "default.handlebars->31->2352" ] }, { @@ -41441,7 +41543,7 @@ "zh-cht": "未知狀態", "xloc": [ "default-mobile.handlebars->11->263", - "default.handlebars->31->625" + "default.handlebars->31->634" ] }, { @@ -41461,7 +41563,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->31->2202" + "default.handlebars->31->2243" ] }, { @@ -41482,7 +41584,7 @@ "zh-cht": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->11->265", - "default.handlebars->31->627" + "default.handlebars->31->636" ] }, { @@ -41502,7 +41604,7 @@ "zh-chs": "密码未知", "zh-cht": "密碼未知", "xloc": [ - "default.handlebars->31->1571" + "default.handlebars->31->1610" ] }, { @@ -41522,9 +41624,10 @@ "zh-chs": "无限制", "zh-cht": "無限", "xloc": [ + "default.handlebars->31->1440", "default.handlebars->31->199", - "default.handlebars->31->376", - "default.handlebars->31->390" + "default.handlebars->31->385", + "default.handlebars->31->399" ] }, { @@ -41544,7 +41647,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->31->1947" + "default.handlebars->31->1988" ] }, { @@ -41587,7 +41690,7 @@ "default-mobile.handlebars->11->368", "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->31->984", + "default.handlebars->31->993", "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->dialogBody->dialog3->d3servermode->d3serveraction", @@ -41611,7 +41714,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->31->2387" + "default.handlebars->31->2428" ] }, { @@ -41634,8 +41737,8 @@ "agent-translations.json", "default-mobile.handlebars->11->431", "default-mobile.handlebars->11->433", - "default.handlebars->31->654", - "default.handlebars->31->656" + "default.handlebars->31->663", + "default.handlebars->31->665" ] }, { @@ -41684,11 +41787,11 @@ "default-mobile.handlebars->11->401", "default-mobile.handlebars->11->419", "default-mobile.handlebars->11->422", - "default.handlebars->31->1060", - "default.handlebars->31->1084", - "default.handlebars->31->1087", - "default.handlebars->31->1765", - "default.handlebars->31->1773", + "default.handlebars->31->1069", + "default.handlebars->31->1093", + "default.handlebars->31->1096", + "default.handlebars->31->1804", + "default.handlebars->31->1812", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->89", @@ -41713,7 +41816,7 @@ "zh-cht": "上載mesh agent核心", "xloc": [ "default-mobile.handlebars->11->530", - "default.handlebars->31->1191" + "default.handlebars->31->1200" ] }, { @@ -41734,7 +41837,7 @@ "zh-cht": "上載核心檔案", "xloc": [ "default-mobile.handlebars->11->527", - "default.handlebars->31->1188" + "default.handlebars->31->1197" ] }, { @@ -41755,9 +41858,9 @@ "zh-cht": "上載默認伺服器核心", "xloc": [ "default-mobile.handlebars->11->523", - "default.handlebars->31->1184", - "default.handlebars->31->496", - "default.handlebars->31->536" + "default.handlebars->31->1193", + "default.handlebars->31->505", + "default.handlebars->31->545" ] }, { @@ -41766,7 +41869,7 @@ "fr": "Charger le noyau du serveur par défaut sur les appareils sélectionnés ?", "de": "Standard-Server auf ausgewählten Geräten hochladen?", "xloc": [ - "default.handlebars->31->535" + "default.handlebars->31->544" ] }, { @@ -41786,7 +41889,7 @@ "zh-chs": "上传文件", "zh-cht": "上傳文件", "xloc": [ - "default.handlebars->31->492" + "default.handlebars->31->501" ] }, { @@ -41827,7 +41930,7 @@ "zh-cht": "上傳恢復核心", "xloc": [ "default-mobile.handlebars->11->525", - "default.handlebars->31->1186" + "default.handlebars->31->1195" ] }, { @@ -41847,7 +41950,7 @@ "zh-chs": "将所选文件上传到所有所选设备", "zh-cht": "將所選文件上傳到所有所選設備", "xloc": [ - "default.handlebars->31->525" + "default.handlebars->31->534" ] }, { @@ -41857,7 +41960,7 @@ "de": "Laden Sie den winzigen Kern hoch", "xloc": [ "default-mobile.handlebars->11->526", - "default.handlebars->31->1187" + "default.handlebars->31->1196" ] }, { @@ -41878,8 +41981,8 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->420", - "default.handlebars->31->1085", - "default.handlebars->31->1774", + "default.handlebars->31->1094", + "default.handlebars->31->1813", "sharing.handlebars->11->90" ] }, @@ -41901,8 +42004,8 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->421", - "default.handlebars->31->1086", - "default.handlebars->31->1775", + "default.handlebars->31->1095", + "default.handlebars->31->1814", "sharing.handlebars->11->91" ] }, @@ -41940,7 +42043,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->31->1825" + "default.handlebars->31->1864" ] }, { @@ -41949,7 +42052,7 @@ "fr": "Chargement : \\\"{0}\\\", Taille : {1}", "de": "Hochladen: \\\"{0}\\\", Größe: {1}", "xloc": [ - "default.handlebars->31->1880" + "default.handlebars->31->1919" ] }, { @@ -41969,7 +42072,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->31->1411" + "default.handlebars->31->1420" ] }, { @@ -41989,7 +42092,7 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->31->1412" + "default.handlebars->31->1421" ] }, { @@ -42042,7 +42145,7 @@ "fr": "A utiliser pour l'activation directe du réseau local", "de": "Zur Bare-Metal-LAN-Aktivierung verwenden.", "xloc": [ - "default.handlebars->31->347" + "default.handlebars->31->356" ] }, { @@ -42082,8 +42185,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->31->2305", - "default.handlebars->31->2307" + "default.handlebars->31->2346", + "default.handlebars->31->2348" ] }, { @@ -42103,13 +42206,13 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->31->1552", - "default.handlebars->31->1900", - "default.handlebars->31->1929", - "default.handlebars->31->2068", - "default.handlebars->31->2263", - "default.handlebars->31->254", - "default.handlebars->31->747" + "default.handlebars->31->1591", + "default.handlebars->31->1941", + "default.handlebars->31->1970", + "default.handlebars->31->2109", + "default.handlebars->31->2304", + "default.handlebars->31->263", + "default.handlebars->31->756" ] }, { @@ -42129,7 +42232,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->31->1930" + "default.handlebars->31->1971" ] }, { @@ -42149,10 +42252,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->31->1963", - "default.handlebars->31->1964", - "default.handlebars->31->1966", - "default.handlebars->31->1968" + "default.handlebars->31->2004", + "default.handlebars->31->2005", + "default.handlebars->31->2007", + "default.handlebars->31->2009" ] }, { @@ -42172,7 +42275,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->31->2324" + "default.handlebars->31->2365" ] }, { @@ -42193,8 +42296,8 @@ "zh-cht": "用戶授權", "xloc": [ "default-mobile.handlebars->11->540", - "default.handlebars->31->1550", - "default.handlebars->31->743" + "default.handlebars->31->1589", + "default.handlebars->31->752" ] }, { @@ -42214,12 +42317,12 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->31->1523", - "default.handlebars->31->2059", + "default.handlebars->31->1562", + "default.handlebars->31->2100", "default.handlebars->31->212", - "default.handlebars->31->2146", - "default.handlebars->31->678", - "default.handlebars->31->843" + "default.handlebars->31->2187", + "default.handlebars->31->687", + "default.handlebars->31->852" ] }, { @@ -42239,12 +42342,12 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->31->1613", - "default.handlebars->31->1614", - "default.handlebars->31->2032", - "default.handlebars->31->2204", - "default.handlebars->31->2225", - "default.handlebars->31->746" + "default.handlebars->31->1652", + "default.handlebars->31->1653", + "default.handlebars->31->2073", + "default.handlebars->31->2245", + "default.handlebars->31->2266", + "default.handlebars->31->755" ] }, { @@ -42284,7 +42387,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->31->2201" + "default.handlebars->31->2242" ] }, { @@ -42324,9 +42427,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->31->1679", - "default.handlebars->31->2113", - "default.handlebars->31->2114" + "default.handlebars->31->1718", + "default.handlebars->31->2154", + "default.handlebars->31->2155" ] }, { @@ -42346,8 +42449,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->31->1611", - "default.handlebars->31->2097" + "default.handlebars->31->1650", + "default.handlebars->31->2138" ] }, { @@ -42376,7 +42479,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->31->1975" + "default.handlebars->31->2016" ] }, { @@ -42397,7 +42500,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->595", - "default.handlebars->31->1678" + "default.handlebars->31->1717" ] }, { @@ -42472,7 +42575,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->31->2344" + "default.handlebars->31->2385" ] }, { @@ -42555,7 +42658,7 @@ "zh-chs": "用户“{0}”", "zh-cht": "用戶“{0}”", "xloc": [ - "default.handlebars->31->963", + "default.handlebars->31->972", "desktop.handlebars->3->17", "sharing.handlebars->11->17" ] @@ -42567,7 +42670,7 @@ "de": "Benutzer existiert bereits.", "xloc": [ "default-mobile.handlebars->11->618", - "default.handlebars->31->2282" + "default.handlebars->31->2323" ] }, { @@ -42587,8 +42690,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->31->1423", - "default.handlebars->31->1425" + "default.handlebars->31->1432", + "default.handlebars->31->1434" ] }, { @@ -42608,7 +42711,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->31->1854" + "default.handlebars->31->1893" ] }, { @@ -42628,7 +42731,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->31->1844" + "default.handlebars->31->1883" ] }, { @@ -42648,7 +42751,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->31->1842" + "default.handlebars->31->1881" ] }, { @@ -42682,7 +42785,7 @@ "fr": "Tentative de connexion sur un compte bloqué de {0}, {1}, {2}", "de": "Benutzeranmeldeversuch für gesperrtes Konto von {0}, {1}, {2}", "xloc": [ - "default.handlebars->31->1884" + "default.handlebars->31->1923" ] }, { @@ -42691,7 +42794,7 @@ "fr": "Tentative de connexion avec un second facteur erroné de {0}, {1}, {2}", "de": "Benutzeranmeldeversuch mit falschem 2. Faktor von {0}, {1}, {2}", "xloc": [ - "default.handlebars->31->1883" + "default.handlebars->31->1922" ] }, { @@ -42701,7 +42804,7 @@ "de": "Benutzer {0} nicht gefunden", "xloc": [ "default-mobile.handlebars->11->626", - "default.handlebars->31->2290" + "default.handlebars->31->2331" ] }, { @@ -42742,9 +42845,12 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->332", - "default.handlebars->31->1987", - "default.handlebars->31->332", - "default.handlebars->31->887", + "default.handlebars->31->1507", + "default.handlebars->31->1512", + "default.handlebars->31->2028", + "default.handlebars->31->241", + "default.handlebars->31->341", + "default.handlebars->31->896", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1", "mstsc.handlebars->main->1->3->1->4->1->0", @@ -42816,9 +42922,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->31->2020", - "default.handlebars->31->2060", - "default.handlebars->31->2343", + "default.handlebars->31->2061", + "default.handlebars->31->2101", + "default.handlebars->31->2384", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -42839,7 +42945,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->31->2328" + "default.handlebars->31->2369" ] }, { @@ -42849,7 +42955,7 @@ "de": "Benutzer {0} nicht gefunden", "xloc": [ "default-mobile.handlebars->11->627", - "default.handlebars->31->2291" + "default.handlebars->31->2332" ] }, { @@ -42869,7 +42975,7 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->31->1033", + "default.handlebars->31->1042", "sharing.handlebars->11->38", "terminal.handlebars->3->20" ] @@ -42901,7 +43007,7 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->31->1942" + "default.handlebars->31->1983" ] }, { @@ -42911,7 +43017,7 @@ "de": "Validierungsausnahme", "xloc": [ "default-mobile.handlebars->11->620", - "default.handlebars->31->2284" + "default.handlebars->31->2325" ] }, { @@ -42931,7 +43037,7 @@ "zh-chs": "有效期", "zh-cht": "有效期", "xloc": [ - "default.handlebars->31->838" + "default.handlebars->31->847" ] }, { @@ -42951,7 +43057,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->31->1413" + "default.handlebars->31->1422" ] }, { @@ -42973,8 +43079,8 @@ "xloc": [ "default-mobile.handlebars->11->490", "default-mobile.handlebars->11->493", - "default.handlebars->31->1150", - "default.handlebars->31->1153" + "default.handlebars->31->1159", + "default.handlebars->31->1162" ] }, { @@ -43015,7 +43121,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->31->2180" + "default.handlebars->31->2221" ] }, { @@ -43057,8 +43163,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->11->86", - "default.handlebars->31->1195", - "default.handlebars->31->1938" + "default.handlebars->31->1204", + "default.handlebars->31->1979" ] }, { @@ -43078,7 +43184,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->31->1871" + "default.handlebars->31->1910" ] }, { @@ -43143,10 +43249,10 @@ "default-mobile.handlebars->11->474", "default-mobile.handlebars->11->491", "default-mobile.handlebars->11->496", - "default.handlebars->31->1092", - "default.handlebars->31->1134", - "default.handlebars->31->1151", - "default.handlebars->31->1156", + "default.handlebars->31->1101", + "default.handlebars->31->1143", + "default.handlebars->31->1160", + "default.handlebars->31->1165", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -43167,7 +43273,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->31->2383" + "default.handlebars->31->2424" ] }, { @@ -43198,7 +43304,7 @@ "nl": "Trillen", "xloc": [ "default-mobile.handlebars->11->305", - "default.handlebars->31->849" + "default.handlebars->31->858" ] }, { @@ -43218,7 +43324,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->31->1414" + "default.handlebars->31->1423" ] }, { @@ -43258,7 +43364,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->31->2012" + "default.handlebars->31->2053" ] }, { @@ -43278,8 +43384,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->31->2386", - "default.handlebars->31->2388" + "default.handlebars->31->2427", + "default.handlebars->31->2429" ] }, { @@ -43299,7 +43405,7 @@ "zh-chs": "查看有关此设备的注释", "zh-cht": "查看有關此裝置的註釋", "xloc": [ - "default.handlebars->31->696" + "default.handlebars->31->705" ] }, { @@ -43319,7 +43425,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->31->1539" + "default.handlebars->31->1578" ] }, { @@ -43339,7 +43445,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->31->2154" + "default.handlebars->31->2195" ] }, { @@ -43358,7 +43464,7 @@ "fr": "Historique des connexions de cet utilisateur", "de": "Vorherige Anmeldungen anzeigen für diesen Benutzer", "xloc": [ - "default.handlebars->31->2167" + "default.handlebars->31->2208" ] }, { @@ -43378,7 +43484,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->31->1415" + "default.handlebars->31->1424" ] }, { @@ -43524,7 +43630,7 @@ "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ "default-mobile.handlebars->11->348", - "default.handlebars->31->952", + "default.handlebars->31->961", "desktop.handlebars->3->6", "sharing.handlebars->11->28", "sharing.handlebars->11->6", @@ -43548,8 +43654,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->31->775", - "default.handlebars->31->797" + "default.handlebars->31->784", + "default.handlebars->31->806" ] }, { @@ -43571,8 +43677,8 @@ "xloc": [ "default-mobile.handlebars->11->567", "default-mobile.handlebars->11->582", - "default.handlebars->31->1634", - "default.handlebars->31->1664" + "default.handlebars->31->1673", + "default.handlebars->31->1703" ] }, { @@ -43593,7 +43699,7 @@ "zh-cht": "喚醒", "xloc": [ "default-mobile.handlebars->11->310", - "default.handlebars->31->854" + "default.handlebars->31->863" ] }, { @@ -43613,7 +43719,7 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default.handlebars->31->485" + "default.handlebars->31->494" ] }, { @@ -43633,7 +43739,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->31->1416" + "default.handlebars->31->1425" ] }, { @@ -43653,7 +43759,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->31->1470" + "default.handlebars->31->1499" ] }, { @@ -43698,8 +43804,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->31->2366", - "default.handlebars->31->2367" + "default.handlebars->31->2407", + "default.handlebars->31->2408" ] }, { @@ -43707,7 +43813,7 @@ "nl": "Webserver HTTP Headers", "fr": "Entêtes du serveur web HTTP", "xloc": [ - "default.handlebars->31->2370" + "default.handlebars->31->2411" ] }, { @@ -43727,7 +43833,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->31->2368" + "default.handlebars->31->2409" ] }, { @@ -43747,7 +43853,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->31->2369" + "default.handlebars->31->2410" ] }, { @@ -43767,7 +43873,7 @@ "zh-chs": "网络RDP", "zh-cht": "網絡RDP", "xloc": [ - "default.handlebars->31->727" + "default.handlebars->31->736" ] }, { @@ -43829,7 +43935,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->31->1417" + "default.handlebars->31->1426" ] }, { @@ -43849,7 +43955,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->31->1687" + "default.handlebars->31->1726" ] }, { @@ -43870,7 +43976,7 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->11->92", - "default.handlebars->31->1202" + "default.handlebars->31->1211" ] }, { @@ -43890,7 +43996,7 @@ "zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。", "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "xloc": [ - "default.handlebars->31->1581" + "default.handlebars->31->1620" ] }, { @@ -43927,7 +44033,7 @@ "zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。", "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "xloc": [ - "default.handlebars->31->1582" + "default.handlebars->31->1621" ] }, { @@ -43947,7 +44053,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->31->2126" + "default.handlebars->31->2167" ] }, { @@ -43970,8 +44076,8 @@ "default-mobile.handlebars->11->375", "default-mobile.handlebars->11->379", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->31->991", - "default.handlebars->31->995", + "default.handlebars->31->1000", + "default.handlebars->31->1004", "desktop.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3", "sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3" ] @@ -44145,7 +44251,7 @@ "zh-chs": "Win32可执行档案", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->31->915" + "default.handlebars->31->924" ] }, { @@ -44182,7 +44288,7 @@ "zh-chs": "窗口", "zh-cht": "視窗", "xloc": [ - "default.handlebars->31->397" + "default.handlebars->31->406" ] }, { @@ -44202,8 +44308,8 @@ "zh-chs": "Windows(.exe)", "zh-cht": "Windows(.exe)", "xloc": [ - "default.handlebars->31->413", - "default.handlebars->31->433" + "default.handlebars->31->422", + "default.handlebars->31->442" ] }, { @@ -44223,7 +44329,7 @@ "zh-chs": "Windows(32位)", "zh-cht": "Windows(32位)", "xloc": [ - "default.handlebars->31->921" + "default.handlebars->31->930" ] }, { @@ -44243,7 +44349,7 @@ "zh-chs": "Windows(64位)", "zh-cht": "Windows(64位)", "xloc": [ - "default.handlebars->31->920" + "default.handlebars->31->929" ] }, { @@ -44263,7 +44369,7 @@ "zh-chs": "Windows(卸载)", "zh-cht": "Windows(卸載)", "xloc": [ - "default.handlebars->31->402" + "default.handlebars->31->411" ] }, { @@ -44407,8 +44513,8 @@ "zh-chs": "Windows命令提示", "zh-cht": "Windows命令提示", "xloc": [ - "default.handlebars->31->505", - "default.handlebars->31->869" + "default.handlebars->31->514", + "default.handlebars->31->878" ] }, { @@ -44470,7 +44576,7 @@ "zh-chs": "Windows路径", "zh-cht": "Windows路徑", "xloc": [ - "default.handlebars->31->526" + "default.handlebars->31->535" ] }, { @@ -44490,8 +44596,8 @@ "zh-chs": "Windows PowerShell", "zh-cht": "Windows PowerShell", "xloc": [ - "default.handlebars->31->506", - "default.handlebars->31->870" + "default.handlebars->31->515", + "default.handlebars->31->879" ] }, { @@ -44501,7 +44607,7 @@ "de": "Windows Sicherheit", "xloc": [ "default-mobile.handlebars->11->439", - "default.handlebars->31->662" + "default.handlebars->31->671" ] }, { @@ -44521,7 +44627,7 @@ "zh-chs": "仅Windows", "zh-cht": "僅Windows", "xloc": [ - "default.handlebars->31->367" + "default.handlebars->31->376" ] }, { @@ -44541,8 +44647,8 @@ "zh-chs": "Windows x64(.exe)", "zh-cht": "Windows x64(.exe)", "xloc": [ - "default.handlebars->31->417", - "default.handlebars->31->436" + "default.handlebars->31->426", + "default.handlebars->31->445" ] }, { @@ -44582,7 +44688,7 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->31->1079", + "default.handlebars->31->1088", "sharing.handlebars->11->84" ] }, @@ -44603,7 +44709,7 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->31->1078", + "default.handlebars->31->1087", "sharing.handlebars->11->83" ] }, @@ -44624,7 +44730,7 @@ "zh-chs": "为此设备写一个事件", "zh-cht": "為此裝置寫一個事件", "xloc": [ - "default.handlebars->31->698" + "default.handlebars->31->707" ] }, { @@ -44685,7 +44791,7 @@ "zh-chs": "XTerm", "zh-cht": "XTerm", "xloc": [ - "default.handlebars->31->716" + "default.handlebars->31->725" ] }, { @@ -44705,7 +44811,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->31->1418" + "default.handlebars->31->1427" ] }, { @@ -44725,7 +44831,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->31->1419" + "default.handlebars->31->1428" ] }, { @@ -44863,7 +44969,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->31->1221" + "default.handlebars->31->1230" ] }, { @@ -44904,7 +45010,7 @@ "zh-chs": "邮编档案名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->31->1063", + "default.handlebars->31->1072", "sharing.handlebars->11->68" ] }, @@ -44925,7 +45031,7 @@ "zh-chs": "缩放至适合范围", "zh-cht": "縮放至適合範圍", "xloc": [ - "default.handlebars->31->590" + "default.handlebars->31->599" ] }, { @@ -44945,8 +45051,8 @@ "zh-chs": "放大到一定程度", "zh-cht": "放大到一定程度", "xloc": [ - "default.handlebars->31->587", - "default.handlebars->31->593" + "default.handlebars->31->596", + "default.handlebars->31->602" ] }, { @@ -44966,8 +45072,8 @@ "zh-chs": "缩小到一定程度", "zh-cht": "縮小到一定程度", "xloc": [ - "default.handlebars->31->588", - "default.handlebars->31->594" + "default.handlebars->31->597", + "default.handlebars->31->603" ] }, { @@ -44987,7 +45093,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->31->1420" + "default.handlebars->31->1429" ] }, { @@ -45255,7 +45361,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->31->2384" + "default.handlebars->31->2425" ] }, { @@ -45277,8 +45383,8 @@ "xloc": [ "default-mobile.handlebars->11->172", "default-mobile.handlebars->11->173", - "default.handlebars->31->563", - "default.handlebars->31->564" + "default.handlebars->31->572", + "default.handlebars->31->573" ] }, { @@ -45298,8 +45404,8 @@ "zh-chs": "加一", "zh-cht": "加一", "xloc": [ - "default.handlebars->31->250", - "default.handlebars->31->252" + "default.handlebars->31->259", + "default.handlebars->31->261" ] }, { @@ -45319,7 +45425,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->31->333" + "default.handlebars->31->342" ] }, { @@ -45334,8 +45440,8 @@ "xloc": [ "default-mobile.handlebars->11->176", "default-mobile.handlebars->11->177", - "default.handlebars->31->567", - "default.handlebars->31->568" + "default.handlebars->31->576", + "default.handlebars->31->577" ] }, { @@ -45398,8 +45504,8 @@ "xloc": [ "default-mobile.handlebars->11->170", "default-mobile.handlebars->11->171", - "default.handlebars->31->561", - "default.handlebars->31->562" + "default.handlebars->31->570", + "default.handlebars->31->571" ] }, { @@ -45440,7 +45546,7 @@ "zh-chs": "取消帮助", "zh-cht": "取消幫助", "xloc": [ - "default.handlebars->31->290" + "default.handlebars->31->299" ] }, { @@ -45522,7 +45628,7 @@ "zh-cht": "console.txt", "xloc": [ "default-mobile.handlebars->11->520", - "default.handlebars->31->1181" + "default.handlebars->31->1190" ] }, { @@ -45543,7 +45649,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->31->1770" + "default.handlebars->31->1809" ] }, { @@ -45571,15 +45677,15 @@ "nl": "aflopend:", "fr": "description :", "xloc": [ - "default.handlebars->31->569", - "default.handlebars->31->570" + "default.handlebars->31->578", + "default.handlebars->31->579" ] }, { "en": "devicelist", "nl": "apparaatlijst", "xloc": [ - "default.handlebars->31->236" + "default.handlebars->31->237" ] }, { @@ -45599,8 +45705,8 @@ "zh-chs": "devicelist.csv", "zh-cht": "devicelist.csv", "xloc": [ - "default.handlebars->31->539", - "default.handlebars->31->545" + "default.handlebars->31->548", + "default.handlebars->31->554" ] }, { @@ -45620,8 +45726,8 @@ "zh-chs": "devicelist.json", "zh-cht": "devicelist.json", "xloc": [ - "default.handlebars->31->541", - "default.handlebars->31->546" + "default.handlebars->31->550", + "default.handlebars->31->555" ] }, { @@ -45658,8 +45764,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->31->1907", - "default.handlebars->31->1912" + "default.handlebars->31->1948", + "default.handlebars->31->1953" ] }, { @@ -45679,8 +45785,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->31->1909", - "default.handlebars->31->1913" + "default.handlebars->31->1950", + "default.handlebars->31->1954" ] }, { @@ -45700,7 +45806,7 @@ "zh-chs": "example@email.com", "zh-cht": "example@email.com", "xloc": [ - "default.handlebars->31->363" + "default.handlebars->31->372" ] }, { @@ -45720,8 +45826,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->31->2336", - "default.handlebars->31->2339" + "default.handlebars->31->2377", + "default.handlebars->31->2380" ] }, { @@ -45743,8 +45849,8 @@ "xloc": [ "default-mobile.handlebars->11->164", "default-mobile.handlebars->11->165", - "default.handlebars->31->555", - "default.handlebars->31->556" + "default.handlebars->31->564", + "default.handlebars->31->565" ] }, { @@ -45766,8 +45872,8 @@ "xloc": [ "default-mobile.handlebars->11->162", "default-mobile.handlebars->11->163", - "default.handlebars->31->553", - "default.handlebars->31->554" + "default.handlebars->31->562", + "default.handlebars->31->563" ] }, { @@ -45936,7 +46042,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->31->1976" + "default.handlebars->31->2017" ] }, { @@ -45956,7 +46062,7 @@ "zh-chs": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "zh-cht": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "xloc": [ - "default.handlebars->31->544" + "default.handlebars->31->553" ] }, { @@ -45978,8 +46084,8 @@ "xloc": [ "default-mobile.handlebars->11->160", "default-mobile.handlebars->11->161", - "default.handlebars->31->551", - "default.handlebars->31->552" + "default.handlebars->31->560", + "default.handlebars->31->561" ] }, { @@ -46059,7 +46165,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->31->2004" + "default.handlebars->31->2045" ] }, { @@ -46171,7 +46277,7 @@ "zh-chs": "macOS ARM (64位)", "zh-cht": "macOS ARM (64位)", "xloc": [ - "default.handlebars->31->925" + "default.handlebars->31->934" ] }, { @@ -46191,7 +46297,7 @@ "zh-chs": "macOS x86 (64位)", "zh-cht": "macOS x86 (64位)", "xloc": [ - "default.handlebars->31->924" + "default.handlebars->31->933" ] }, { @@ -46253,7 +46359,7 @@ "zh-chs": "MeshAgent", "zh-cht": "MeshAgent", "xloc": [ - "default.handlebars->31->441" + "default.handlebars->31->450" ] }, { @@ -46274,7 +46380,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->31->1771" + "default.handlebars->31->1810" ] }, { @@ -46294,7 +46400,7 @@ "zh-chs": "无VNC", "zh-cht": "無VNC", "xloc": [ - "default.handlebars->31->725" + "default.handlebars->31->734" ] }, { @@ -46314,7 +46420,7 @@ "zh-chs": "noVNC连接", "zh-cht": "noVNC連接", "xloc": [ - "default.handlebars->31->574" + "default.handlebars->31->583" ] }, { @@ -46334,7 +46440,7 @@ "zh-chs": "noVNC远程连接端口:", "zh-cht": "noVNC遠程連接端口:", "xloc": [ - "default.handlebars->31->573" + "default.handlebars->31->582" ] }, { @@ -46366,8 +46472,8 @@ "xloc": [ "default-mobile.handlebars->11->174", "default-mobile.handlebars->11->175", - "default.handlebars->31->565", - "default.handlebars->31->566" + "default.handlebars->31->574", + "default.handlebars->31->575" ] }, { @@ -46387,7 +46493,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->31->1494" + "default.handlebars->31->1533" ] }, { @@ -46407,7 +46513,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->31->2378" + "default.handlebars->31->2419" ] }, { @@ -46429,8 +46535,8 @@ "xloc": [ "default-mobile.handlebars->11->168", "default-mobile.handlebars->11->169", - "default.handlebars->31->559", - "default.handlebars->31->560" + "default.handlebars->31->568", + "default.handlebars->31->569" ] }, { @@ -46452,8 +46558,8 @@ "xloc": [ "default-mobile.handlebars->11->166", "default-mobile.handlebars->11->167", - "default.handlebars->31->557", - "default.handlebars->31->558" + "default.handlebars->31->566", + "default.handlebars->31->567" ] }, { @@ -46473,7 +46579,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->31->2353" + "default.handlebars->31->2394" ] }, { @@ -46493,7 +46599,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->31->2377" + "default.handlebars->31->2418" ] }, { @@ -46530,8 +46636,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->31->2337", - "default.handlebars->31->2340" + "default.handlebars->31->2378", + "default.handlebars->31->2381" ] }, { @@ -46553,8 +46659,8 @@ "xloc": [ "default-mobile.handlebars->11->158", "default-mobile.handlebars->11->159", - "default.handlebars->31->549", - "default.handlebars->31->550" + "default.handlebars->31->558", + "default.handlebars->31->559" ] }, { @@ -46593,8 +46699,8 @@ "xloc": [ "default-mobile.handlebars->11->156", "default-mobile.handlebars->11->157", - "default.handlebars->31->547", - "default.handlebars->31->548" + "default.handlebars->31->556", + "default.handlebars->31->557" ] }, { @@ -46614,8 +46720,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->31->1972", - "default.handlebars->31->1977" + "default.handlebars->31->2013", + "default.handlebars->31->2018" ] }, { @@ -46635,8 +46741,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->31->1974", - "default.handlebars->31->1978" + "default.handlebars->31->2015", + "default.handlebars->31->2019" ] }, { @@ -46656,7 +46762,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->31->1911" + "default.handlebars->31->1952" ] }, { @@ -46717,8 +46823,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->31->1745", - "default.handlebars->31->1750" + "default.handlebars->31->1784", + "default.handlebars->31->1789" ] }, { @@ -46738,9 +46844,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->31->1743", - "default.handlebars->31->1748", - "default.handlebars->31->2236" + "default.handlebars->31->1782", + "default.handlebars->31->1787", + "default.handlebars->31->2277" ] }, { @@ -46762,10 +46868,10 @@ "xloc": [ "default-mobile.handlebars->11->504", "default-mobile.handlebars->11->509", - "default.handlebars->31->1164", - "default.handlebars->31->1169", - "default.handlebars->31->1744", - "default.handlebars->31->1749" + "default.handlebars->31->1173", + "default.handlebars->31->1178", + "default.handlebars->31->1783", + "default.handlebars->31->1788" ] }, { @@ -46786,7 +46892,7 @@ "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->11->502", - "default.handlebars->31->1162" + "default.handlebars->31->1171" ] }, { @@ -46806,7 +46912,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->31->2170" + "default.handlebars->31->2211" ] }, { @@ -46826,8 +46932,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->31->1742", - "default.handlebars->31->1747" + "default.handlebars->31->1781", + "default.handlebars->31->1786" ] }, { @@ -46848,8 +46954,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->11->142", - "default.handlebars->31->1758", - "default.handlebars->31->2257", + "default.handlebars->31->1797", + "default.handlebars->31->2298", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->97" @@ -46872,7 +46978,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->31->1737" + "default.handlebars->31->1776" ] }, { @@ -46892,7 +46998,7 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->31->962", + "default.handlebars->31->971", "desktop.handlebars->3->16", "sharing.handlebars->11->16" ] @@ -46903,7 +47009,7 @@ "fr": "{0} de {1} à {2}.", "de": "{0} von {1} zu {2}.", "xloc": [ - "default.handlebars->31->883" + "default.handlebars->31->892" ] }, { @@ -46923,7 +47029,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->31->1740" + "default.handlebars->31->1779" ] }, { @@ -46943,7 +47049,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->31->2131" + "default.handlebars->31->2172" ] }, { @@ -47000,7 +47106,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->31->1738" + "default.handlebars->31->1777" ] }, { @@ -47042,7 +47148,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->31->1739" + "default.handlebars->31->1778" ] }, { @@ -47082,7 +47188,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->31->1921" + "default.handlebars->31->1962" ] }, { @@ -47102,7 +47208,7 @@ "zh-chs": "{0}个节点", "zh-cht": "{0}個節點", "xloc": [ - "default.handlebars->31->447" + "default.handlebars->31->456" ] }, { @@ -47246,13 +47352,13 @@ "default-mobile.handlebars->11->204", "default-mobile.handlebars->11->207", "default-mobile.handlebars->11->210", - "default.handlebars->31->1925", - "default.handlebars->31->293", - "default.handlebars->31->296", - "default.handlebars->31->299", + "default.handlebars->31->1966", "default.handlebars->31->302", "default.handlebars->31->305", - "default.handlebars->31->308" + "default.handlebars->31->308", + "default.handlebars->31->311", + "default.handlebars->31->314", + "default.handlebars->31->317" ] }, { @@ -47272,7 +47378,7 @@ "zh-chs": "{0}设置(.msh)", "zh-cht": "{0}设置(.msh)", "xloc": [ - "default.handlebars->31->420" + "default.handlebars->31->429" ] }, { @@ -47334,7 +47440,7 @@ "zh-chs": "{0}个用户", "zh-cht": "{0}個用戶", "xloc": [ - "default.handlebars->31->311" + "default.handlebars->31->320" ] }, { @@ -47363,7 +47469,7 @@ "zh-chs": "{0},{1}至{2}", "zh-cht": "{0},{1}至{2}", "xloc": [ - "default.handlebars->31->759" + "default.handlebars->31->768" ] }, { @@ -47423,7 +47529,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->31->1752" + "default.handlebars->31->1791" ] }, { @@ -47443,7 +47549,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->31->1751" + "default.handlebars->31->1790" ] }, { diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 287d233d..7f65f37f 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -1349,12 +1349,12 @@ } function updateSelf() { - var accountSettingsLocked = false; - if (userinfo) { accountSettingsLocked = ((userinfo.siteadmin != 0xFFFFFFFF) && ((userinfo.siteadmin & 1024) != 0)); } + var accountSettingsLocked = ((features2 & 0x100) != 0); + if (userinfo) { accountSettingsLocked = ((userinfo.siteadmin != 0xFFFFFFFF) && ((userinfo.siteadmin & 1024) != 0)) || ((features2 & 0x100) != 0); } // Not admin and have account features locked, or using a loginToken QV('p3AccountActions', ((features & 4) == 0) && (serverinfo.domainauth == false) && (accountSettingsLocked == false)); // Hide Account Actions if in single user mode or domain authentication QV('logoutMenuOption', ((features & 4) == 0) && (serverinfo.domainauth == false)); // Hide logout if in single user mode or domain authentication QV('p2AccountSecurity', ((features & 4) == 0) && (serverinfo.domainauth == false) && ((features & 4096) != 0) && (accountSettingsLocked == false)); // Hide Account Security if in single user mode or domain authentication, 2 factor auth not supported. - + QV('p2AccountImage', !accountSettingsLocked); QV('verifyEmailId', (userinfo.emailVerified !== true) && (userinfo.email != null) && (serverinfo.emailcheck == true)); QV('manageAuthApp', features & 4096); QV('manageOtp', ((features & 4096) != 0) && ((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0))); diff --git a/views/default.handlebars b/views/default.handlebars index e0df6f25..e89a0773 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -1928,7 +1928,7 @@ function updateSiteAdmin() { var serverFeatures = parseInt('{{{serverfeatures}}}'); var siteRights = userinfo.siteadmin; - var accountSettingsLocked = ((siteRights != 0xFFFFFFFF) && ((siteRights & 1024) != 0)); + var accountSettingsLocked = ((siteRights != 0xFFFFFFFF) && ((siteRights & 1024) != 0)) || ((features2 & 0x100) != 0); // Not admin and have account features locked, or using a loginToken // Update account actions QV('p2AccountSecurity', ((features & 4) == 0) && (serverinfo.domainauth == false) && ((features & 4096) != 0) && (accountSettingsLocked == false)); // Hide Account Security if in single user mode or domain authentication, 2 factor auth not supported. @@ -1939,7 +1939,7 @@ QV('p2AccountPassActions', ((features & 4) == 0) && (serverinfo.domainauth == false) && (userinfo != null) && (userinfo._id.split('/')[2].startsWith('~') == false)); // Hide Account Actions if in single user mode or domain authentication //QV('p2AccountImage', ((features & 4) == 0) && (serverinfo.domainauth == false)); // If account actions are not visible, also remove the image on that panel QV('accountCreateLoginTokenSpan', features2 & 0x00000080); - QV('p2AccountImage', !accountSettingsLocked) + QV('p2AccountImageFrame', !accountSettingsLocked) QV('p2ServerActions', (siteRights & 21) && ((serverFeatures & 15) != 0)); QV('LeftMenuMyServer', (siteRights & 21) && ((serverFeatures & 64) != 0)); // 16 + 4 + 1 QV('MainMenuMyServer', siteRights & 21); @@ -10211,6 +10211,7 @@ x += addHtmlValue("Expire Time", ''); setDialogMode(2, "Create Login Token", 3, account_createLoginTokenEx, x); QE('idx_dlgOkButton', false); + Q('d2tokenName').focus(); } function account_createLoginTokenValidate() { diff --git a/webserver.js b/webserver.js index 34d68751..ef16601f 100644 --- a/webserver.js +++ b/webserver.js @@ -1164,6 +1164,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { delete req.session.messageid; delete req.session.passhint; delete req.session.cuserid; + delete req.session.expire; req.session.userid = userid; req.session.domainid = domain.id; req.session.currentNode = ''; @@ -1205,6 +1206,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (domain == null) { return; } if ((domain.auth == 'sspi') || (domain.auth == 'ldap')) { parent.debug('web', 'handleCreateAccountRequest: failed checks.'); res.sendStatus(404); return; } if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if (req.session.loginToken != null) { res.sendStatus(404); return; } // Do not allow this command when logged in using a login token // Check if we are in maintenance mode if (parent.config.settings.maintenancemode != null) { @@ -1359,6 +1361,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { const domain = checkUserIpAddress(req, res); if (domain == null) { return; } if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if (req.session.loginToken != null) { res.sendStatus(404); return; } // Do not allow this command when logged in using a login token // Check everything is ok if ((domain == null) || (domain.auth == 'sspi') || (domain.auth == 'ldap') || (typeof req.body.rpassword1 != 'string') || (typeof req.body.rpassword2 != 'string') || (req.body.rpassword1 != req.body.rpassword2) || (typeof req.body.rpasswordhint != 'string') || (req.session == null) || (typeof req.session.resettokenusername != 'string') || (typeof req.session.resettokenpassword != 'string')) { @@ -1472,6 +1475,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (domain == null) { return; } if ((domain.auth == 'sspi') || (domain.auth == 'ldap') || (obj.args.lanonly == true) || (obj.parent.certificates.CommonName == null) || (obj.parent.certificates.CommonName.indexOf('.') == -1)) { parent.debug('web', 'handleResetAccountRequest: check failed'); res.sendStatus(404); return; } if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if (req.session.loginToken != null) { res.sendStatus(404); return; } // Do not allow this command when logged in using a login token // Always lowercase the email address if (req.body.email) { req.body.email = req.body.email.toLowerCase(); } @@ -1591,6 +1595,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (domain == null) { return; } if ((domain.mailserver == null) || (domain.auth == 'sspi') || (domain.auth == 'ldap') || (typeof req.session.cuserid != 'string') || (obj.users[req.session.cuserid] == null) || (!obj.common.validateEmail(req.body.email, 1, 256))) { parent.debug('web', 'handleCheckAccountEmailRequest: failed checks.'); res.sendStatus(404); return; } if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if (req.session.loginToken != null) { res.sendStatus(404); return; } // Do not allow this command when logged in using a login token // Always lowercase the email address if (req.body.email) { req.body.email = req.body.email.toLowerCase(); } @@ -1980,6 +1985,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (domain == null) { return; } if ((domain.auth == 'sspi') || (domain.auth == 'ldap')) { parent.debug('web', 'handleDeleteAccountRequest: failed checks.'); res.sendStatus(404); return; } if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if (req.session.loginToken != null) { res.sendStatus(404); return; } // Do not allow this command when logged in using a login token var user = null; if (req.body.authcookie) { @@ -2056,6 +2062,17 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { obj.db.Remove('ntp' + deluser._id); // Remove personal notes for this user obj.db.Remove('im' + deluser._id); // Remove image for this user + // Delete any login tokens + parent.db.GetAllTypeNodeFiltered(['logintoken-' + deluser._id], domain.id, 'logintoken', null, function (err, docs) { + if ((err == null) && (docs != null)) { for (var i = 0; i < docs.length; i++) { parent.db.Remove(docs[i]._id, function () { }); } } + }); + + // Delete all files on the server for this account + try { + var deluserpath = obj.getServerRootFilePath(deluser); + if (deluserpath != null) { obj.deleteFolderRec(deluserpath); } + } catch (e) { } + // Remove the user obj.db.Remove(deluser._id); delete obj.users[deluser._id]; @@ -2151,6 +2168,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (domain == null) { return; } if ((domain.auth == 'sspi') || (domain.auth == 'ldap')) { parent.debug('web', 'handlePasswordChangeRequest: failed checks (1).'); res.sendStatus(404); return; } if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key + if (req.session.loginToken != null) { res.sendStatus(404); return; } // Do not allow this command when logged in using a login token // Check if the user is logged and we have all required parameters if (!req.session || !req.session.userid || !req.body.apassword0 || !req.body.apassword1 || (req.body.apassword1 != req.body.apassword2) || (req.session.domainid != domain.id)) { @@ -2325,6 +2343,9 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if ((domain.loginkey != null) && (domain.loginkey.indexOf(req.query.key) == -1)) { res.sendStatus(404); return; } // Check 3FA URL key if (!obj.args) { parent.debug('web', 'handleRootRequest: no obj.args.'); res.sendStatus(500); return; } + // If the session is expired, clear it. + if ((req.session != null) && (typeof req.session.expire == 'number') && ((req.session.expire - Date.now()) <= 0)) { for (var i in req.session) { delete req.session[i]; } } + // Check if we are in maintenance mode if ((parent.config.settings.maintenancemode != null) && (req.query.admin !== '1')) { parent.debug('web', 'handleLoginRequest: Server under maintenance.'); @@ -2584,6 +2605,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { if (parent.amtProvisioningServer != null) { features2 += 0x00000020; } // Intel AMT LAN provisioning server if (((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.push2factor != false)) && (obj.parent.firebase != null)) { features2 += 0x00000040; } // Indicates device push notification 2FA is enabled if ((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.logintokens != false)) { features2 += 0x00000080; } // Indicates login tokens are allowed + if (req.session.loginToken != null) { features2 += 0x00000100; } // LoginToken mode, no account changes. // Create a authentication cookie const authCookie = obj.parent.encodeCookie({ userid: dbGetFunc.user._id, domainid: domain.id, ip: req.clientIp }, obj.parent.loginCookieEncryptionKey); @@ -6095,6 +6117,11 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) { // Authenticates a session and forwards function PerformWSSessionAuth(ws, req, noAuthOk, func) { + // Check if the session expired + if ((req.session != null) && (typeof req.session.expire == 'number') && (req.session.expire <= Date.now())) { + parent.debug('web', 'WSERROR: Session expired.'); try { ws.send(JSON.stringify({ action: 'close', cause: 'expired', msg: 'expired-1' })); ws.close(); } catch (e) { } return; + } + // Check if this is a banned ip address if (obj.checkAllowLogin(req) == false) { parent.debug('web', 'WSERROR: Banned connection.'); try { ws.send(JSON.stringify({ action: 'close', cause: 'banned', msg: 'banned-1' })); ws.close(); } catch (e) { } return; } try {