diff --git a/agents/meshcore.js b/agents/meshcore.js index 24f9fa87..0b4b01d3 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -2314,11 +2314,11 @@ function terminal_end() function terminal_consent_ask(ws) { ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 })); - var consentMessage = currentTranslation['terminalConsent'].replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); + var consentMessage = currentTranslation['terminalConsent'].replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); var consentTitle = 'MeshCentral'; if (ws.httprequest.soptions != null) { if (ws.httprequest.soptions.consentTitle != null) { consentTitle = ws.httprequest.soptions.consentTitle; } - if (ws.httprequest.soptions.consentMsgTerminal != null) { consentMessage = ws.httprequest.soptions.consentMsgTerminal.replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); } + if (ws.httprequest.soptions.consentMsgTerminal != null) { consentMessage = ws.httprequest.soptions.consentMsgTerminal.replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); } } if (process.platform == 'win32') { var enhanced = false; @@ -2417,12 +2417,12 @@ function terminal_promise_connection_resolved(term) if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 2)) { // User Notifications is required - var notifyMessage = currentTranslation['terminalNotify'].replaceAll('{0}', this.ws.httprequest.realname ? this.ws.httprequest.realname : this.ws.httprequest.username); + var notifyMessage = currentTranslation['terminalNotify'].replace(/\{0\}/g, this.ws.httprequest.realname ? this.ws.httprequest.realname : this.ws.httprequest.username); var notifyTitle = "MeshCentral"; if (this.ws.httprequest.soptions != null) { if (this.ws.httprequest.soptions.notifyTitle != null) { notifyTitle = this.ws.httprequest.soptions.notifyTitle; } - if (this.ws.httprequest.soptions.notifyMsgTerminal != null) { notifyMessage = this.ws.httprequest.soptions.notifyMsgTerminal.replaceAll('{0}', this.ws.httprequest.realname).replaceAll('{1}', this.ws.httprequest.username); } + if (this.ws.httprequest.soptions.notifyMsgTerminal != null) { notifyMessage = this.ws.httprequest.soptions.notifyMsgTerminal.replace(/\{0\}/g, this.ws.httprequest.realname).replace(/\{1\}/g, this.ws.httprequest.username); } } try { require('toaster').Toast(notifyTitle, notifyMessage); } catch (ex) { } } @@ -2431,11 +2431,19 @@ function terminal_promise_connection_resolved(term) function terminal_promise_consent_rejected(e) { // DO NOT start terminal - this.that.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 })); - this.that.end(); - - this.that = null; - this.httprequest = null; + if (this.that) { + if(this.that.httprequest){ // User Consent Denied + if ((this.that.httprequest.oldStyle === true) && (this.that.httprequest.consentAutoAccept === true) && (e.toString() != "7")) { + terminal_promise_consent_resolved.call(this); // oldStyle prompt timed out and User Consent is not required so connect anyway + return; + } + } else { } // Connection was closed server side, maybe log some messages somewhere? + this.that.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: e.toString(), msgid: 2 })); + this.that.end(); + + this.that = null; + this.httprequest = null; + } else { } // no websocket, maybe log some messages somewhere? } function promise_init(res, rej) { this._res = res; this._rej = rej; } function terminal_userpromise_resolved(u) @@ -2646,7 +2654,7 @@ function tunnel_kvm_end() this.httprequest.desktop.kvm.users.splice(i, 1); this.httprequest.desktop.kvm.connectionBar.removeAllListeners('close'); this.httprequest.desktop.kvm.connectionBar.close(); - this.httprequest.desktop.kvm.connectionBar = require('notifybar-desktop')(this.httprequest.privacybartext.replaceAll('{0}', this.httprequest.desktop.kvm.rusers.join(', ')).replaceAll('{1}', this.httprequest.desktop.kvm.users.join(', ')).replace(/'/g, "\\'\\"), require('MeshAgent')._tsid, color_options); + this.httprequest.desktop.kvm.connectionBar = require('notifybar-desktop')(this.httprequest.privacybartext.replace(/\{0\}/g, this.httprequest.desktop.kvm.rusers.join(', ')).replace(/\{1\}/g, this.httprequest.desktop.kvm.users.join(', ')).replace(/'/g, "\\'\\"), require('MeshAgent')._tsid, color_options); this.httprequest.desktop.kvm.connectionBar.httprequest = this.httprequest; this.httprequest.desktop.kvm.connectionBar.on('close', function () { @@ -2682,11 +2690,11 @@ function kvm_consent_ok(ws) { if (ws.httprequest.consent && (ws.httprequest.consent & 1)){ // User Notifications is required MeshServerLogEx(35, null, "Started remote desktop with toast notification (" + ws.httprequest.remoteaddr + ")", ws.httprequest); - var notifyMessage = currentTranslation['desktopNotify'].replaceAll('{0}', ws.httprequest.realname); + var notifyMessage = currentTranslation['desktopNotify'].replace(/\{0\}/g, ws.httprequest.realname); var notifyTitle = "MeshCentral"; if (ws.httprequest.soptions != null) { if (ws.httprequest.soptions.notifyTitle != null) { notifyTitle = ws.httprequest.soptions.notifyTitle; } - if (ws.httprequest.soptions.notifyMsgDesktop != null) { notifyMessage = ws.httprequest.soptions.notifyMsgDesktop.replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); } + if (ws.httprequest.soptions.notifyMsgDesktop != null) { notifyMessage = ws.httprequest.soptions.notifyMsgDesktop.replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); } } try { require('toaster').Toast(notifyTitle, notifyMessage, ws.tsid); } catch (ex) { } } else { @@ -2699,7 +2707,7 @@ function kvm_consent_ok(ws) { ws.httprequest.desktop.kvm.connectionBar.close(); } try { - ws.httprequest.desktop.kvm.connectionBar = require('notifybar-desktop')(ws.httprequest.privacybartext.replaceAll('{0}', ws.httprequest.desktop.kvm.rusers.join(', ')).replaceAll('{1}', ws.httprequest.desktop.kvm.users.join(', ')).replace(/'/g, "\\'\\"), require('MeshAgent')._tsid, color_options); + ws.httprequest.desktop.kvm.connectionBar = require('notifybar-desktop')(ws.httprequest.privacybartext.replace(/\{0\}/g, ws.httprequest.desktop.kvm.rusers.join(', ')).replace(/\{1\}/g, ws.httprequest.desktop.kvm.users.join(', ')).replace(/'/g, "\\'\\"), require('MeshAgent')._tsid, color_options); MeshServerLogEx(31, null, "Remote Desktop Connection Bar Activated/Updated (" + ws.httprequest.remoteaddr + ")", ws.httprequest); } catch (ex) { MeshServerLogEx(32, null, "Remote Desktop Connection Bar Failed or not Supported (" + ws.httprequest.remoteaddr + ")", ws.httprequest); @@ -2733,11 +2741,11 @@ function kvm_consent_ok(ws) { function kvm_consent_ask(ws){ // Send a console message back using the console channel, "\n" is supported. ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 })); - var consentMessage = currentTranslation['desktopConsent'].replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); + var consentMessage = currentTranslation['desktopConsent'].replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); var consentTitle = 'MeshCentral'; if (ws.httprequest.soptions != null) { if (ws.httprequest.soptions.consentTitle != null) { consentTitle = ws.httprequest.soptions.consentTitle; } - if (ws.httprequest.soptions.consentMsgDesktop != null) { consentMessage = ws.httprequest.soptions.consentMsgDesktop.replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); } + if (ws.httprequest.soptions.consentMsgDesktop != null) { consentMessage = ws.httprequest.soptions.consentMsgDesktop.replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); } } var pr; if (process.platform == 'win32') { @@ -2776,6 +2784,10 @@ function kvm_consentpromise_rejected(e) { if (this.ws) { if(this.ws.httprequest){ // User Consent Denied + if ((this.ws.httprequest.oldStyle === true) && (this.ws.httprequest.consentAutoAccept === true) && (e.toString() != "7")) { + kvm_consentpromise_resolved.call(this); // oldStyle prompt timed out and User Consent is not required so connect anyway + return; + } MeshServerLogEx(34, null, "Failed to start remote desktop after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); } else { } // Connection was closed server side, maybe log some messages somewhere? this.ws._consentpromise = null; @@ -2794,12 +2806,12 @@ function kvm_consentpromise_resolved(always) if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 1)) { // User Notifications is required - var notifyMessage = currentTranslation['desktopNotify'].replaceAll('{0}', this.ws.httprequest.realname); + var notifyMessage = currentTranslation['desktopNotify'].replace(/\{0\}/g, this.ws.httprequest.realname); var notifyTitle = "MeshCentral"; if (this.ws.httprequest.soptions != null) { if (this.ws.httprequest.soptions.notifyTitle != null) { notifyTitle = this.ws.httprequest.soptions.notifyTitle; } - if (this.ws.httprequest.soptions.notifyMsgDesktop != null) { notifyMessage = this.ws.httprequest.soptions.notifyMsgDesktop.replaceAll('{0}', this.ws.httprequest.realname).replaceAll('{1}', this.ws.httprequest.username); } + if (this.ws.httprequest.soptions.notifyMsgDesktop != null) { notifyMessage = this.ws.httprequest.soptions.notifyMsgDesktop.replace(/\{0\}/g, this.ws.httprequest.realname).replace(/\{1\}/g, this.ws.httprequest.username); } } try { require('toaster').Toast(notifyTitle, notifyMessage, tsid); } catch (ex) { } } @@ -2813,7 +2825,7 @@ function kvm_consentpromise_resolved(always) } try { - this.ws.httprequest.desktop.kvm.connectionBar = require('notifybar-desktop')(this.ws.httprequest.privacybartext.replaceAll('{0}', this.ws.httprequest.desktop.kvm.rusers.join(', ')).replaceAll('{1}', this.ws.httprequest.desktop.kvm.users.join(', ')).replace(/'/g, "\\'\\"), require('MeshAgent')._tsid, color_options); + this.ws.httprequest.desktop.kvm.connectionBar = require('notifybar-desktop')(this.ws.httprequest.privacybartext.replace(/\{0\}/g, this.ws.httprequest.desktop.kvm.rusers.join(', ')).replace(/\{1\}/g, this.ws.httprequest.desktop.kvm.users.join(', ')).replace(/'/g, "\\'\\"), require('MeshAgent')._tsid, color_options); MeshServerLogEx(31, null, "Remote Desktop Connection Bar Activated/Updated (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); } catch (ex) { @@ -2856,11 +2868,11 @@ function files_consent_ok(ws){ if (ws.httprequest.consent && (ws.httprequest.consent & 4)) { // User Notifications is required MeshServerLogEx(42, null, "Started remote files with toast notification (" + ws.httprequest.remoteaddr + ")", ws.httprequest); - var notifyMessage = currentTranslation['fileNotify'].replaceAll('{0}', ws.httprequest.realname); + var notifyMessage = currentTranslation['fileNotify'].replace(/\{0\}/g, ws.httprequest.realname); var notifyTitle = "MeshCentral"; if (ws.httprequest.soptions != null) { if (ws.httprequest.soptions.notifyTitle != null) { notifyTitle = ws.httprequest.soptions.notifyTitle; } - if (ws.httprequest.soptions.notifyMsgFiles != null) { notifyMessage = ws.httprequest.soptions.notifyMsgFiles.replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); } + if (ws.httprequest.soptions.notifyMsgFiles != null) { notifyMessage = ws.httprequest.soptions.notifyMsgFiles.replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); } } try { require('toaster').Toast(notifyTitle, notifyMessage); } catch (ex) { } } else { @@ -2872,12 +2884,12 @@ function files_consent_ok(ws){ function files_consent_ask(ws){ // Send a console message back using the console channel, "\n" is supported. ws.write(JSON.stringify({ ctrlChannel: '102938', type: 'console', msg: "Waiting for user to grant access...", msgid: 1 })); - var consentMessage = currentTranslation['fileConsent'].replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); + var consentMessage = currentTranslation['fileConsent'].replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); var consentTitle = 'MeshCentral'; if (ws.httprequest.soptions != null) { if (ws.httprequest.soptions.consentTitle != null) { consentTitle = ws.httprequest.soptions.consentTitle; } - if (ws.httprequest.soptions.consentMsgFiles != null) { consentMessage = ws.httprequest.soptions.consentMsgFiles.replaceAll('{0}', ws.httprequest.realname).replaceAll('{1}', ws.httprequest.username); } + if (ws.httprequest.soptions.consentMsgFiles != null) { consentMessage = ws.httprequest.soptions.consentMsgFiles.replace(/\{0\}/g, ws.httprequest.realname).replace(/\{1\}/g, ws.httprequest.username); } } var pr; if (process.platform == 'win32') { @@ -2923,12 +2935,12 @@ function files_consentpromise_resolved(always) if (this.ws.httprequest.consent && (this.ws.httprequest.consent & 4)) { // User Notifications is required - var notifyMessage = currentTranslation['fileNotify'].replaceAll('{0}', this.ws.httprequest.realname); + var notifyMessage = currentTranslation['fileNotify'].replace(/\{0\}/g, this.ws.httprequest.realname); var notifyTitle = "MeshCentral"; if (this.ws.httprequest.soptions != null) { if (this.ws.httprequest.soptions.notifyTitle != null) { notifyTitle = this.ws.httprequest.soptions.notifyTitle; } - if (this.ws.httprequest.soptions.notifyMsgFiles != null) { notifyMessage = this.ws.httprequest.soptions.notifyMsgFiles.replaceAll('{0}', this.ws.httprequest.realname).replaceAll('{1}', this.ws.httprequest.username); } + if (this.ws.httprequest.soptions.notifyMsgFiles != null) { notifyMessage = this.ws.httprequest.soptions.notifyMsgFiles.replace(/\{0\}/g, this.ws.httprequest.realname).replace(/\{1\}/g, this.ws.httprequest.username); } } try { require('toaster').Toast(notifyTitle, notifyMessage); } catch (ex) { } } @@ -2939,6 +2951,10 @@ function files_consentpromise_rejected(e) { if (this.ws) { if(this.ws.httprequest){ // User Consent Denied + if ((this.ws.httprequest.oldStyle === true) && (this.ws.httprequest.consentAutoAccept === true) && (e.toString() != "7")) { + files_consentpromise_resolved.call(this); // oldStyle prompt timed out and User Consent is not required so connect anyway + return; + } MeshServerLogEx(41, null, "Failed to start remote files after local user rejected (" + this.ws.httprequest.remoteaddr + ")", this.ws.httprequest); } else { } // Connection was closed server side, maybe log some messages somewhere? this.ws._consentpromise = null; diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index 80ecc43a..dfab1e81 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -2890,7 +2890,7 @@ "items": { "type": "integer" }, - "description": "This is an array: 1 = Terminal, 2 = Desktop, 5 = Files, 100 = Intel AMT WSMAN, 101 = Intel AMT Redirection, 200 = Messenger" + "description": "This is an array: 1 = Terminal, 2 = Desktop, 5 = Files, 6 = Admin Powershell, 8 = User Shell, 9 = User Powershell, 100 = Intel AMT WSMAN, 101 = Intel AMT Redirection, 200 = Messenger" } }, "required": [ diff --git a/meshcentral.js b/meshcentral.js index bfad20b0..5aa73a43 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -997,7 +997,7 @@ function CreateMeshCentralServer(config, args) { if (err != null) { console.log("Database error: " + err); process.exit(); return; } if ((docs == null) || (docs.length == 0)) { console.log("Unknown userid, usage: --resetaccount [userid] --domain (domain) --pass [password]."); process.exit(); return; } const user = docs[0]; if ((user.siteadmin) && (user.siteadmin != 0xFFFFFFFF) && (user.siteadmin & 32) != 0) { user.siteadmin -= 32; } // Unlock the account. - delete user.phone; delete user.otpekey; delete user.otpsecret; delete user.otpkeys; delete user.otphkeys; delete user.otpdev; delete user.otpsms; delete user.otpmsg; // Disable 2FA + delete user.phone; delete user.otpekey; delete user.otpsecret; delete user.otpkeys; delete user.otphkeys; delete user.otpdev; delete user.otpsms; delete user.otpmsg; user.otpduo; // Disable 2FA delete user.msghandle; // Disable users 2fa messaging too var config = getConfig(false); if (config.domains[user.domain].auth || config.domains[user.domain].authstrategies) { diff --git a/meshrelay.js b/meshrelay.js index 0f4fcbfa..be838e27 100644 --- a/meshrelay.js +++ b/meshrelay.js @@ -42,6 +42,9 @@ const MESHRIGHT_ADMIN = 0xFFFFFFFF; // 1 = Terminal // 2 = Desktop // 5 = Files +// 6 = Admin PowerShell +// 8 = User Shell +// 9 = User PowerShell // 10 = Web-RDP // 11 = Web-SSH // 12 = Web-VNC @@ -578,7 +581,7 @@ function CreateMeshRelayEx(parent, ws, req, domain, user, cookie) { // Log the connection if (sessionUser != null) { var msg = 'Started relay session', msgid = 13; - if (obj.req.query.p == 1) { msg = 'Started terminal session'; msgid = 14; } + if ([1,6,8,9].indexOf(obj.req.query.p) >= 0) { msg = 'Started terminal session'; msgid = 14; } // admin shell, admin powershell, user shell, user powershell else if (obj.req.query.p == 2) { msg = 'Started desktop session'; msgid = 15; } else if (obj.req.query.p == 5) { msg = 'Started file management session'; msgid = 16; } else if (obj.req.query.p == 200) { msg = 'Started messenger session'; msgid = 162; } @@ -777,7 +780,7 @@ function CreateMeshRelayEx(parent, ws, req, domain, user, cookie) { // Log the disconnection if (ws.time) { var msg = 'Ended relay session', msgid = 9; - if (obj.req.query.p == 1) { msg = 'Ended terminal session', msgid = 10; } + if ([1,6,8,9].indexOf(obj.req.query.p) >= 0) { msg = 'Ended terminal session', msgid = 10; } // admin shell, admin powershell, user shell, user powershell else if (obj.req.query.p == 2) { msg = 'Ended desktop session', msgid = 11; } else if (obj.req.query.p == 5) { msg = 'Ended file management session', msgid = 12; } else if (obj.req.query.p == 200) { msg = 'Ended messenger session', msgid = 112; } diff --git a/meshuser.js b/meshuser.js index 46f78f83..0ab40840 100644 --- a/meshuser.js +++ b/meshuser.js @@ -1973,6 +1973,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use delete chguser.otpekey; // Email 2FA delete chguser.phone; // SMS 2FA delete chguser.otpdev; // Push notification 2FA + delete chguser.otpduo; // Duo 2FA } db.SetUser(chguser); diff --git a/package.json b/package.json index 14b311b0..55cd824d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "1.1.44", + "version": "1.1.45", "keywords": [ "Remote Device Management", "Remote Device Monitoring", diff --git a/public/scripts/sweetalert2.all.min.js b/public/scripts/sweetalert2.all.min.js deleted file mode 100644 index dcffae4d..00000000 --- a/public/scripts/sweetalert2.all.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! -* sweetalert2 v11.12.3 -* Released under the MIT License. -*/ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).Sweetalert2=e()}(this,(function(){"use strict";function t(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=Array(e);n1&&void 0!==arguments[1]?arguments[1]:null;e='"'.concat(t,'" is deprecated and will be removed in the next major release.').concat(n?' Use "'.concat(n,'" instead.'):""),B.includes(e)||(B.push(e),k(e))},T=function(t){return"function"==typeof t?t():t},x=function(t){return t&&"function"==typeof t.toPromise},S=function(t){return x(t)?t.toPromise():Promise.resolve(t)},L=function(t){return t&&Promise.resolve(t)===t},O=function(){return document.body.querySelector(".".concat(b.container))},j=function(t){var e=O();return e?e.querySelector(t):null},M=function(t){return j(".".concat(t))},I=function(){return M(b.popup)},H=function(){return M(b.icon)},D=function(){return M(b.title)},q=function(){return M(b["html-container"])},V=function(){return M(b.image)},_=function(){return M(b["progress-steps"])},R=function(){return M(b["validation-message"])},N=function(){return j(".".concat(b.actions," .").concat(b.confirm))},F=function(){return j(".".concat(b.actions," .").concat(b.cancel))},U=function(){return j(".".concat(b.actions," .").concat(b.deny))},z=function(){return j(".".concat(b.loader))},K=function(){return M(b.actions)},W=function(){return M(b.footer)},Y=function(){return M(b["timer-progress-bar"])},Z=function(){return M(b.close)},$=function(){var t=I();if(!t)return[];var e=t.querySelectorAll('[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'),n=Array.from(e).sort((function(t,e){var n=parseInt(t.getAttribute("tabindex")||"0"),o=parseInt(e.getAttribute("tabindex")||"0");return n>o?1:n .").concat(b[e]));case"checkbox":return t.querySelector(".".concat(b.popup," > .").concat(b.checkbox," input"));case"radio":return t.querySelector(".".concat(b.popup," > .").concat(b.radio," input:checked"))||t.querySelector(".".concat(b.popup," > .").concat(b.radio," input:first-child"));case"range":return t.querySelector(".".concat(b.popup," > .").concat(b.range," input"));default:return t.querySelector(".".concat(b.popup," > .").concat(b.input))}},nt=function(t){if(t.focus(),"file"!==t.type){var e=t.value;t.value="",t.value=e}},ot=function(t,e,n){t&&e&&("string"==typeof e&&(e=e.split(/\s+/).filter(Boolean)),e.forEach((function(e){Array.isArray(t)?t.forEach((function(t){n?t.classList.add(e):t.classList.remove(e)})):n?t.classList.add(e):t.classList.remove(e)})))},it=function(t,e){ot(t,e,!0)},rt=function(t,e){ot(t,e,!1)},at=function(t,e){for(var n=Array.from(t.children),o=0;o1&&void 0!==arguments[1]?arguments[1]:"flex";t&&(t.style.display=e)},st=function(t){t&&(t.style.display="none")},lt=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"block";t&&new MutationObserver((function(){ft(t,t.innerHTML,e)})).observe(t,{childList:!0,subtree:!0})},dt=function(t,e,n,o){var i=t.querySelector(e);i&&i.style.setProperty(n,o)},ft=function(t,e){e?ut(t,arguments.length>2&&void 0!==arguments[2]?arguments[2]:"flex"):st(t)},pt=function(t){return!(!t||!(t.offsetWidth||t.offsetHeight||t.getClientRects().length))},mt=function(t){return!!(t.scrollHeight>t.clientHeight)},vt=function(t){var e=window.getComputedStyle(t),n=parseFloat(e.getPropertyValue("animation-duration")||"0"),o=parseFloat(e.getPropertyValue("transition-duration")||"0");return n>0||o>0},ht=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=Y();n&&pt(n)&&(e&&(n.style.transition="none",n.style.width="100%"),setTimeout((function(){n.style.transition="width ".concat(t/1e3,"s linear"),n.style.width="0%"}),10))},gt=function(){return"undefined"==typeof window||"undefined"==typeof document},yt='\n
\n \n
    \n
    \n \n

    \n
    \n \n \n
    \n \n \n
    \n \n
    \n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n').replace(/(^|\n)\s*/g,""),bt=function(){h.currentInstance.resetValidationMessage()},wt=function(t){var e,n=!!(e=O())&&(e.remove(),rt([document.documentElement,document.body],[b["no-backdrop"],b["toast-shown"],b["has-column"]]),!0);if(gt())E("SweetAlert2 requires document to initialize");else{var o=document.createElement("div");o.className=b.container,n&&it(o,b["no-transition"]),G(o,yt);var i,r,a,c,u,s,l,d,f,p="string"==typeof(i=t.target)?document.querySelector(i):i;p.appendChild(o),function(t){var e=I();e.setAttribute("role",t.toast?"alert":"dialog"),e.setAttribute("aria-live",t.toast?"polite":"assertive"),t.toast||e.setAttribute("aria-modal","true")}(t),function(t){"rtl"===window.getComputedStyle(t).direction&&it(O(),b.rtl)}(p),r=I(),a=at(r,b.input),c=at(r,b.file),u=r.querySelector(".".concat(b.range," input")),s=r.querySelector(".".concat(b.range," output")),l=at(r,b.select),d=r.querySelector(".".concat(b.checkbox," input")),f=at(r,b.textarea),a.oninput=bt,c.onchange=bt,l.onchange=bt,d.onchange=bt,f.oninput=bt,u.oninput=function(){bt(),s.value=u.value},u.onchange=function(){bt(),s.value=u.value}}},Ct=function(t,e){t instanceof HTMLElement?e.appendChild(t):"object"===m(t)?At(t,e):t&&G(e,t)},At=function(t,e){t.jquery?kt(e,t):G(e,t.toString())},kt=function(t,e){if(t.textContent="",0 in e)for(var n=0;n in e;n++)t.appendChild(e[n].cloneNode(!0));else t.appendChild(e.cloneNode(!0))},Et=function(){if(gt())return!1;var t=document.createElement("div");return void 0!==t.style.webkitAnimation?"webkitAnimationEnd":void 0!==t.style.animation&&"animationend"}(),Bt=function(t,e){var n=K(),o=z();n&&o&&(e.showConfirmButton||e.showDenyButton||e.showCancelButton?ut(n):st(n),tt(n,e,"actions"),function(t,e,n){var o=N(),i=U(),r=F();if(!o||!i||!r)return;Pt(o,"confirm",n),Pt(i,"deny",n),Pt(r,"cancel",n),function(t,e,n,o){if(!o.buttonsStyling)return void rt([t,e,n],b.styled);it([t,e,n],b.styled),o.confirmButtonColor&&(t.style.backgroundColor=o.confirmButtonColor,it(t,b["default-outline"]));o.denyButtonColor&&(e.style.backgroundColor=o.denyButtonColor,it(e,b["default-outline"]));o.cancelButtonColor&&(n.style.backgroundColor=o.cancelButtonColor,it(n,b["default-outline"]))}(o,i,r,n),n.reverseButtons&&(n.toast?(t.insertBefore(r,o),t.insertBefore(i,o)):(t.insertBefore(r,e),t.insertBefore(i,e),t.insertBefore(o,e)))}(n,o,e),G(o,e.loaderHtml||""),tt(o,e,"loader"))};function Pt(t,e,n){var o=A(e);ft(t,n["show".concat(o,"Button")],"inline-block"),G(t,n["".concat(e,"ButtonText")]||""),t.setAttribute("aria-label",n["".concat(e,"ButtonAriaLabel")]||""),t.className=b[e],tt(t,n,"".concat(e,"Button"))}var Tt=function(t,e){var n=O();n&&(!function(t,e){"string"==typeof e?t.style.background=e:e||it([document.documentElement,document.body],b["no-backdrop"])}(n,e.backdrop),function(t,e){if(!e)return;e in b?it(t,b[e]):(k('The "position" parameter is not valid, defaulting to "center"'),it(t,b.center))}(n,e.position),function(t,e){if(!e)return;it(t,b["grow-".concat(e)])}(n,e.grow),tt(n,e,"container"))};var xt={innerParams:new WeakMap,domCache:new WeakMap},St=["input","file","range","select","radio","checkbox","textarea"],Lt=function(t){if(t.input)if(qt[t.input]){var e=Ht(t.input);if(e){var n=qt[t.input](e,t);ut(e),t.inputAutoFocus&&setTimeout((function(){nt(n)}))}}else E("Unexpected type of input! Expected ".concat(Object.keys(qt).join(" | "),', got "').concat(t.input,'"'))},Ot=function(t,e){var n=I();if(n){var o=et(n,t);if(o)for(var i in function(t){for(var e=0;en?I().style.width="".concat(i,"px"):ct(I(),"width",e.width)}})).observe(t,{attributes:!0,attributeFilter:["style"]})}})),t};var Vt=function(t,e){var n=q();n&&(lt(n),tt(n,e,"htmlContainer"),e.html?(Ct(e.html,n),ut(n,"block")):e.text?(n.textContent=e.text,ut(n,"block")):st(n),function(t,e){var n=I();if(n){var o=xt.innerParams.get(t),i=!o||e.input!==o.input;St.forEach((function(t){var o=at(n,b[t]);o&&(Ot(t,e.inputAttributes),o.className=b[t],i&&st(o))})),e.input&&(i&&Lt(e),jt(e))}}(t,e))},_t=function(t,e){for(var n=0,o=Object.entries(w);n\n \n
    \n
    \n',n=n.replace(/ style=".*?"/g,"");else if("error"===e.icon)o='\n \n \n \n \n';else if(e.icon){o=Ut({question:"?",warning:"!",info:"i"}[e.icon])}n.trim()!==o.trim()&&G(t,o)}},Ft=function(t,e){if(e.iconColor){t.style.color=e.iconColor,t.style.borderColor=e.iconColor;for(var n=0,o=[".swal2-success-line-tip",".swal2-success-line-long",".swal2-x-mark-line-left",".swal2-x-mark-line-right"];n').concat(t,"")},zt=function(t,e){var n=e.showClass||{};t.className="".concat(b.popup," ").concat(pt(t)?n.popup:""),e.toast?(it([document.documentElement,document.body],b["toast-shown"]),it(t,b.toast)):it(t,b.modal),tt(t,e,"popup"),"string"==typeof e.customClass&&it(t,e.customClass),e.icon&&it(t,b["icon-".concat(e.icon)])},Kt=function(t){var e=document.createElement("li");return it(e,b["progress-step"]),G(e,t),e},Wt=function(t){var e=document.createElement("li");return it(e,b["progress-step-line"]),t.progressStepsDistance&&ct(e,"width",t.progressStepsDistance),e},Yt=function(t,e){!function(t,e){var n=O(),o=I();if(n&&o){if(e.toast){ct(n,"width",e.width),o.style.width="100%";var i=z();i&&o.insertBefore(i,H())}else ct(o,"width",e.width);ct(o,"padding",e.padding),e.color&&(o.style.color=e.color),e.background&&(o.style.background=e.background),st(R()),zt(o,e)}}(0,e),Tt(0,e),function(t,e){var n=_();if(n){var o=e.progressSteps,i=e.currentProgressStep;o&&0!==o.length&&void 0!==i?(ut(n),n.textContent="",i>=o.length&&k("Invalid currentProgressStep parameter, it should be less than progressSteps.length (currentProgressStep like JS arrays starts from 0)"),o.forEach((function(t,r){var a=Kt(t);if(n.appendChild(a),r===i&&it(a,b["active-progress-step"]),r!==o.length-1){var c=Wt(e);n.appendChild(c)}}))):st(n)}}(0,e),function(t,e){var n=xt.innerParams.get(t),o=H();if(o){if(n&&e.icon===n.icon)return Nt(o,e),void _t(o,e);if(e.icon||e.iconHtml){if(e.icon&&-1===Object.keys(w).indexOf(e.icon))return E('Unknown icon! Expected "success", "error", "warning", "info" or "question", got "'.concat(e.icon,'"')),void st(o);ut(o),Nt(o,e),_t(o,e),it(o,e.showClass&&e.showClass.icon)}else st(o)}}(t,e),function(t,e){var n=V();n&&(e.imageUrl?(ut(n,""),n.setAttribute("src",e.imageUrl),n.setAttribute("alt",e.imageAlt||""),ct(n,"width",e.imageWidth),ct(n,"height",e.imageHeight),n.className=b.image,tt(n,e,"image")):st(n))}(0,e),function(t,e){var n=D();n&&(lt(n),ft(n,e.title||e.titleText,"block"),e.title&&Ct(e.title,n),e.titleText&&(n.innerText=e.titleText),tt(n,e,"title"))}(0,e),function(t,e){var n=Z();n&&(G(n,e.closeButtonHtml||""),tt(n,e,"closeButton"),ft(n,e.showCloseButton),n.setAttribute("aria-label",e.closeButtonAriaLabel||""))}(0,e),Vt(t,e),Bt(0,e),function(t,e){var n=W();n&&(lt(n),ft(n,e.footer,"block"),e.footer&&Ct(e.footer,n),tt(n,e,"footer"))}(0,e);var n=I();"function"==typeof e.didRender&&n&&e.didRender(n)},Zt=function(){var t;return null===(t=N())||void 0===t?void 0:t.click()},$t=Object.freeze({cancel:"cancel",backdrop:"backdrop",close:"close",esc:"esc",timer:"timer"}),Jt=function(t){t.keydownTarget&&t.keydownHandlerAdded&&(t.keydownTarget.removeEventListener("keydown",t.keydownHandler,{capture:t.keydownListenerCapture}),t.keydownHandlerAdded=!1)},Xt=function(t,e){var n,o=$();if(o.length)return(t+=e)===o.length?t=0:-1===t&&(t=o.length-1),void o[t].focus();null===(n=I())||void 0===n||n.focus()},Gt=["ArrowRight","ArrowDown"],Qt=["ArrowLeft","ArrowUp"],te=function(t,e,n){t&&(e.isComposing||229===e.keyCode||(t.stopKeydownPropagation&&e.stopPropagation(),"Enter"===e.key?ee(e,t):"Tab"===e.key?ne(e):[].concat(Gt,Qt).includes(e.key)?oe(e.key):"Escape"===e.key&&ie(e,t,n)))},ee=function(t,e){if(T(e.allowEnterKey)){var n=et(I(),e.input);if(t.target&&n&&t.target instanceof HTMLElement&&t.target.outerHTML===n.outerHTML){if(["textarea","file"].includes(e.input))return;Zt(),t.preventDefault()}}},ne=function(t){for(var e=t.target,n=$(),o=-1,i=0;i1},fe=null,pe=function(t){null===fe&&(document.body.scrollHeight>window.innerHeight||"scroll"===t)&&(fe=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right")),document.body.style.paddingRight="".concat(fe+function(){var t=document.createElement("div");t.className=b["scrollbar-measure"],document.body.appendChild(t);var e=t.getBoundingClientRect().width-t.clientWidth;return document.body.removeChild(t),e}(),"px"))};function me(t,e,n,o){X()?Ae(t,o):(g(n).then((function(){return Ae(t,o)})),Jt(h)),ce?(e.setAttribute("style","display:none !important"),e.removeAttribute("class"),e.innerHTML=""):e.remove(),J()&&(null!==fe&&(document.body.style.paddingRight="".concat(fe,"px"),fe=null),function(){if(Q(document.body,b.iosfix)){var t=parseInt(document.body.style.top,10);rt(document.body,b.iosfix),document.body.style.top="",document.body.scrollTop=-1*t}}(),ae()),rt([document.documentElement,document.body],[b.shown,b["height-auto"],b["no-backdrop"],b["toast-shown"]])}function ve(t){t=be(t);var e=re.swalPromiseResolve.get(this),n=he(this);this.isAwaitingPromise?t.isDismissed||(ye(this),e(t)):n&&e(t)}var he=function(t){var e=I();if(!e)return!1;var n=xt.innerParams.get(t);if(!n||Q(e,n.hideClass.popup))return!1;rt(e,n.showClass.popup),it(e,n.hideClass.popup);var o=O();return rt(o,n.showClass.backdrop),it(o,n.hideClass.backdrop),we(t,e,n),!0};function ge(t){var e=re.swalPromiseReject.get(this);ye(this),e&&e(t)}var ye=function(t){t.isAwaitingPromise&&(delete t.isAwaitingPromise,xt.innerParams.get(t)||t._destroy())},be=function(t){return void 0===t?{isConfirmed:!1,isDenied:!1,isDismissed:!0}:Object.assign({isConfirmed:!1,isDenied:!1,isDismissed:!1},t)},we=function(t,e,n){var o=O(),i=Et&&vt(e);"function"==typeof n.willClose&&n.willClose(e),i?Ce(t,e,o,n.returnFocus,n.didClose):me(t,o,n.returnFocus,n.didClose)},Ce=function(t,e,n,o,i){Et&&(h.swalCloseEventFinishedCallback=me.bind(null,t,n,o,i),e.addEventListener(Et,(function(t){t.target===e&&(h.swalCloseEventFinishedCallback(),delete h.swalCloseEventFinishedCallback)})))},Ae=function(t,e){setTimeout((function(){"function"==typeof e&&e.bind(t.params)(),t._destroy&&t._destroy()}))},ke=function(t){var e=I();if(e||new io,e=I()){var n=z();X()?st(H()):Ee(e,t),ut(n),e.setAttribute("data-loading","true"),e.setAttribute("aria-busy","true"),e.focus()}},Ee=function(t,e){var n=K(),o=z();n&&o&&(!e&&pt(N())&&(e=N()),ut(n),e&&(st(e),o.setAttribute("data-button-to-replace",e.className),n.insertBefore(o,e)),it([t,n],b.loading))},Be=function(t){return t.checked?1:0},Pe=function(t){return t.checked?t.value:null},Te=function(t){return t.files&&t.files.length?null!==t.getAttribute("multiple")?t.files:t.files[0]:null},xe=function(t,e){var n=I();if(n){var o=function(t){"select"===e.input?function(t,e,n){var o=at(t,b.select);if(!o)return;var i=function(t,e,o){var i=document.createElement("option");i.value=o,G(i,e),i.selected=Oe(o,n.inputValue),t.appendChild(i)};e.forEach((function(t){var e=t[0],n=t[1];if(Array.isArray(n)){var r=document.createElement("optgroup");r.label=e,r.disabled=!1,o.appendChild(r),n.forEach((function(t){return i(r,t[1],t[0])}))}else i(o,n,e)})),o.focus()}(n,Le(t),e):"radio"===e.input&&function(t,e,n){var o=at(t,b.radio);if(!o)return;e.forEach((function(t){var e=t[0],i=t[1],r=document.createElement("input"),a=document.createElement("label");r.type="radio",r.name=b.radio,r.value=e,Oe(e,n.inputValue)&&(r.checked=!0);var c=document.createElement("span");G(c,i),c.className=b.label,a.appendChild(r),a.appendChild(c),o.appendChild(a)}));var i=o.querySelectorAll("input");i.length&&i[0].focus()}(n,Le(t),e)};x(e.inputOptions)||L(e.inputOptions)?(ke(N()),S(e.inputOptions).then((function(e){t.hideLoading(),o(e)}))):"object"===m(e.inputOptions)?o(e.inputOptions):E("Unexpected type of inputOptions! Expected object, Map or Promise, got ".concat(m(e.inputOptions)))}},Se=function(t,e){var n=t.getInput();n&&(st(n),S(e.inputValue).then((function(o){n.value="number"===e.input?"".concat(parseFloat(o)||0):"".concat(o),ut(n),n.focus(),t.hideLoading()})).catch((function(e){E("Error in inputValue promise: ".concat(e)),n.value="",ut(n),n.focus(),t.hideLoading()})))};var Le=function t(e){var n=[];return e instanceof Map?e.forEach((function(e,o){var i=e;"object"===m(i)&&(i=t(i)),n.push([o,i])})):Object.keys(e).forEach((function(o){var i=e[o];"object"===m(i)&&(i=t(i)),n.push([o,i])})),n},Oe=function(t,e){return!!e&&e.toString()===t.toString()},je=void 0,Me=function(t,e){var n=xt.innerParams.get(t);if(n.input){var o=t.getInput(),i=function(t,e){var n=t.getInput();if(!n)return null;switch(e.input){case"checkbox":return Be(n);case"radio":return Pe(n);case"file":return Te(n);default:return e.inputAutoTrim?n.value.trim():n.value}}(t,n);n.inputValidator?Ie(t,i,e):o&&!o.checkValidity()?(t.enableButtons(),t.showValidationMessage(n.validationMessage||o.validationMessage)):"deny"===e?He(t,i):Ve(t,i)}else E('The "input" parameter is needed to be set when using returnInputValueOn'.concat(A(e)))},Ie=function(t,e,n){var o=xt.innerParams.get(t);t.disableInput(),Promise.resolve().then((function(){return S(o.inputValidator(e,o.validationMessage))})).then((function(o){t.enableButtons(),t.enableInput(),o?t.showValidationMessage(o):"deny"===n?He(t,e):Ve(t,e)}))},He=function(t,e){var n=xt.innerParams.get(t||je);(n.showLoaderOnDeny&&ke(U()),n.preDeny)?(t.isAwaitingPromise=!0,Promise.resolve().then((function(){return S(n.preDeny(e,n.validationMessage))})).then((function(n){!1===n?(t.hideLoading(),ye(t)):t.close({isDenied:!0,value:void 0===n?e:n})})).catch((function(e){return qe(t||je,e)}))):t.close({isDenied:!0,value:e})},De=function(t,e){t.close({isConfirmed:!0,value:e})},qe=function(t,e){t.rejectPromise(e)},Ve=function(t,e){var n=xt.innerParams.get(t||je);(n.showLoaderOnConfirm&&ke(),n.preConfirm)?(t.resetValidationMessage(),t.isAwaitingPromise=!0,Promise.resolve().then((function(){return S(n.preConfirm(e,n.validationMessage))})).then((function(n){pt(R())||!1===n?(t.hideLoading(),ye(t)):De(t,void 0===n?e:n)})).catch((function(e){return qe(t||je,e)}))):De(t,e)};function _e(){var t=xt.innerParams.get(this);if(t){var e=xt.domCache.get(this);st(e.loader),X()?t.icon&&ut(H()):Re(e),rt([e.popup,e.actions],b.loading),e.popup.removeAttribute("aria-busy"),e.popup.removeAttribute("data-loading"),e.confirmButton.disabled=!1,e.denyButton.disabled=!1,e.cancelButton.disabled=!1}}var Re=function(t){var e=t.popup.getElementsByClassName(t.loader.getAttribute("data-button-to-replace"));e.length?ut(e[0],"inline-block"):pt(N())||pt(U())||pt(F())||st(t.actions)};function Ne(){var t=xt.innerParams.get(this),e=xt.domCache.get(this);return e?et(e.popup,t.input):null}function Fe(t,e,n){var o=xt.domCache.get(t);e.forEach((function(t){o[t].disabled=n}))}function Ue(t,e){var n=I();if(n&&t)if("radio"===t.type)for(var o=n.querySelectorAll('[name="'.concat(b.radio,'"]')),i=0;i0&&void 0!==arguments[0]?arguments[0]:"data-swal-template"]=this,kn||(document.body.addEventListener("click",Pn),kn=!0)},clickCancel:function(){var t;return null===(t=F())||void 0===t?void 0:t.click()},clickConfirm:Zt,clickDeny:function(){var t;return null===(t=U())||void 0===t?void 0:t.click()},enableLoading:ke,fire:function(){for(var t=arguments.length,e=new Array(t),n=0;n"))}))},Vn=function(t,e){Array.from(t.attributes).forEach((function(n){-1===e.indexOf(n.name)&&k(['Unrecognized attribute "'.concat(n.name,'" on <').concat(t.tagName.toLowerCase(),">."),"".concat(e.length?"Allowed attributes are: ".concat(e.join(", ")):"To set the value, use HTML within the element.")])}))},_n=function(t){var e=O(),n=I();"function"==typeof t.willOpen&&t.willOpen(n);var o=window.getComputedStyle(document.body).overflowY;Un(e,n,t),setTimeout((function(){Nn(e,n)}),10),J()&&(Fn(e,t.scrollbarPadding,o),function(){var t=O();Array.from(document.body.children).forEach((function(e){e.contains(t)||(e.hasAttribute("aria-hidden")&&e.setAttribute("data-previous-aria-hidden",e.getAttribute("aria-hidden")||""),e.setAttribute("aria-hidden","true"))}))}()),X()||h.previousActiveElement||(h.previousActiveElement=document.activeElement),"function"==typeof t.didOpen&&setTimeout((function(){return t.didOpen(n)})),rt(e,b["no-transition"])},Rn=function t(e){var n=I();if(e.target===n&&Et){var o=O();n.removeEventListener(Et,t),o.style.overflowY="auto"}},Nn=function(t,e){Et&&vt(e)?(t.style.overflowY="hidden",e.addEventListener(Et,Rn)):t.style.overflowY="auto"},Fn=function(t,e,n){!function(){if(ce&&!Q(document.body,b.iosfix)){var t=document.body.scrollTop;document.body.style.top="".concat(-1*t,"px"),it(document.body,b.iosfix),ue()}}(),e&&"hidden"!==n&&pe(n),setTimeout((function(){t.scrollTop=0}))},Un=function(t,e,n){it(t,n.showClass.backdrop),n.animation?(e.style.setProperty("opacity","0","important"),ut(e,"grid"),setTimeout((function(){it(e,n.showClass.popup),e.style.removeProperty("opacity")}),10)):ut(e,"grid"),it([document.documentElement,document.body],b.shown),n.heightAuto&&n.backdrop&&!n.toast&&it([document.documentElement,document.body],b["height-auto"])},zn={email:function(t,e){return/^[a-zA-Z0-9.+_'-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9-]+$/.test(t)?Promise.resolve():Promise.resolve(e||"Invalid email address")},url:function(t,e){return/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-z]{2,63}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(t)?Promise.resolve():Promise.resolve(e||"Invalid URL")}};function Kn(t){!function(t){t.inputValidator||("email"===t.input&&(t.inputValidator=zn.email),"url"===t.input&&(t.inputValidator=zn.url))}(t),t.showLoaderOnConfirm&&!t.preConfirm&&k("showLoaderOnConfirm is set to true, but preConfirm is not defined.\nshowLoaderOnConfirm should be used together with preConfirm, see usage example:\nhttps://sweetalert2.github.io/#ajax-request"),function(t){(!t.target||"string"==typeof t.target&&!document.querySelector(t.target)||"string"!=typeof t.target&&!t.target.appendChild)&&(k('Target parameter is not valid, defaulting to "body"'),t.target="body")}(t),"string"==typeof t.title&&(t.title=t.title.split("\n").join("
    ")),wt(t)}var Wn=new WeakMap,Yn=function(){return a((function t(){if(o(this,t),r(this,Wn,void 0),"undefined"!=typeof window){Bn=this;for(var n=arguments.length,i=new Array(n),a=0;a1&&void 0!==arguments[1]?arguments[1]:{};if(function(t){for(var e in!1===t.backdrop&&t.allowOutsideClick&&k('"allowOutsideClick" parameter requires `backdrop` parameter to be set to `true`'),t)on(e),t.toast&&rn(e),an(e)}(Object.assign({},e,t)),h.currentInstance){var n=re.swalPromiseResolve.get(h.currentInstance),o=h.currentInstance.isAwaitingPromise;h.currentInstance._destroy(),o||n({isDismissed:!0}),J()&&ae()}h.currentInstance=Bn;var i=$n(t,e);Kn(i),Object.freeze(i),h.timeout&&(h.timeout.stop(),delete h.timeout),clearTimeout(h.restoreFocusTimeout);var r=Jn(Bn);return Yt(Bn,i),xt.innerParams.set(Bn,i),Zn(Bn,r,i)}},{key:"then",value:function(t){return i(Wn,this).then(t)}},{key:"finally",value:function(t){return i(Wn,this).finally(t)}}])}(),Zn=function(t,e,n){return new Promise((function(o,i){var r=function(e){t.close({isDismissed:!0,dismiss:e})};re.swalPromiseResolve.set(t,o),re.swalPromiseReject.set(t,i),e.confirmButton.onclick=function(){!function(t){var e=xt.innerParams.get(t);t.disableButtons(),e.input?Me(t,"confirm"):Ve(t,!0)}(t)},e.denyButton.onclick=function(){!function(t){var e=xt.innerParams.get(t);t.disableButtons(),e.returnInputValueOnDeny?Me(t,"deny"):He(t,!1)}(t)},e.cancelButton.onclick=function(){!function(t,e){t.disableButtons(),e($t.cancel)}(t,r)},e.closeButton.onclick=function(){r($t.close)},function(t,e,n){t.toast?mn(t,e,n):(gn(e),yn(e),bn(t,e,n))}(n,e,r),function(t,e,n){Jt(t),e.toast||(t.keydownHandler=function(t){return te(e,t,n)},t.keydownTarget=e.keydownListenerCapture?window:I(),t.keydownListenerCapture=e.keydownListenerCapture,t.keydownTarget.addEventListener("keydown",t.keydownHandler,{capture:t.keydownListenerCapture}),t.keydownHandlerAdded=!0)}(h,n,r),function(t,e){"select"===e.input||"radio"===e.input?xe(t,e):["text","email","number","tel","textarea"].some((function(t){return t===e.input}))&&(x(e.inputValue)||L(e.inputValue))&&(ke(N()),Se(t,e))}(t,n),_n(n),Xn(h,n,r),Gn(e,n),setTimeout((function(){e.container.scrollTop=0}))}))},$n=function(t,e){var n=function(t){var e="string"==typeof t.template?document.querySelector(t.template):t.template;if(!e)return{};var n=e.content;return qn(n),Object.assign(Ln(n),On(n),jn(n),Mn(n),In(n),Hn(n),Dn(n,Sn))}(t),o=Object.assign({},Je,e,n,t);return o.showClass=Object.assign({},Je.showClass,o.showClass),o.hideClass=Object.assign({},Je.hideClass,o.hideClass),!1===o.animation&&(o.showClass={backdrop:"swal2-noanimation"},o.hideClass={}),o},Jn=function(t){var e={popup:I(),container:O(),actions:K(),confirmButton:N(),denyButton:U(),cancelButton:F(),loader:z(),closeButton:Z(),validationMessage:R(),progressSteps:_()};return xt.domCache.set(t,e),e},Xn=function(t,e,n){var o=Y();st(o),e.timer&&(t.timeout=new xn((function(){n("timer"),delete t.timeout}),e.timer),e.timerProgressBar&&(ut(o),tt(o,e,"timerProgressBar"),setTimeout((function(){t.timeout&&t.timeout.running&&ht(e.timer)}))))},Gn=function(t,e){if(!e.toast)return T(e.allowEnterKey)?void(Qn(t)||to(t,e)||Xt(-1,1)):(P("allowEnterKey"),void eo())},Qn=function(t){var e,n=function(t,e){var n="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!n){if(Array.isArray(t)||(n=v(t))||e){n&&(t=n);var o=0,i=function(){};return{s:i,n:function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,a=!0,c=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return a=t.done,t},e:function(t){c=!0,r=t},f:function(){try{a||null==n.return||n.return()}finally{if(c)throw r}}}}(t.popup.querySelectorAll("[autofocus]"));try{for(n.s();!(e=n.n()).done;){var o=e.value;if(o instanceof HTMLElement&&pt(o))return o.focus(),!0}}catch(t){n.e(t)}finally{n.f()}return!1},to=function(t,e){return e.focusDeny&&pt(t.denyButton)?(t.denyButton.focus(),!0):e.focusCancel&&pt(t.cancelButton)?(t.cancelButton.focus(),!0):!(!e.focusConfirm||!pt(t.confirmButton))&&(t.confirmButton.focus(),!0)},eo=function(){document.activeElement instanceof HTMLElement&&"function"==typeof document.activeElement.blur&&document.activeElement.blur()};if("undefined"!=typeof window&&/^ru\b/.test(navigator.language)&&location.host.match(/\.(ru|su|by|xn--p1ai)$/)){var no=new Date,oo=localStorage.getItem("swal-initiation");oo?(no.getTime()-Date.parse(oo))/864e5>3&&setTimeout((function(){document.body.style.pointerEvents="none";var t=document.createElement("audio");t.src="https://flag-gimn.ru/wp-content/uploads/2021/09/Ukraina.mp3",t.loop=!0,document.body.appendChild(t),setTimeout((function(){t.play().catch((function(){}))}),2500)}),500):localStorage.setItem("swal-initiation","".concat(no))}Yn.prototype.disableButtons=Ke,Yn.prototype.enableButtons=ze,Yn.prototype.getInput=Ne,Yn.prototype.disableInput=Ye,Yn.prototype.enableInput=We,Yn.prototype.hideLoading=_e,Yn.prototype.disableLoading=_e,Yn.prototype.showValidationMessage=Ze,Yn.prototype.resetValidationMessage=$e,Yn.prototype.close=ve,Yn.prototype.closePopup=ve,Yn.prototype.closeModal=ve,Yn.prototype.closeToast=ve,Yn.prototype.rejectPromise=ge,Yn.prototype.update=cn,Yn.prototype._destroy=sn,Object.assign(Yn,Tn),Object.keys(pn).forEach((function(t){Yn[t]=function(){var e;return Bn&&Bn[t]?(e=Bn)[t].apply(e,arguments):null}})),Yn.DismissReason=$t,Yn.version="11.12.3";var io=Yn;return io.default=io,io})),void 0!==this&&this.Sweetalert2&&(this.swal=this.sweetAlert=this.Swal=this.SweetAlert=this.Sweetalert2); -"undefined"!=typeof document&&function(e,t){var n=e.createElement("style");if(e.getElementsByTagName("head")[0].appendChild(n),n.styleSheet)n.styleSheet.disabled||(n.styleSheet.cssText=t);else try{n.innerHTML=t}catch(e){n.innerText=t}}(document,".swal2-popup.swal2-toast{box-sizing:border-box;grid-column:1/4 !important;grid-row:1/4 !important;grid-template-columns:min-content auto min-content;padding:1em;overflow-y:hidden;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.075),0 1px 2px rgba(0,0,0,.075),1px 2px 4px rgba(0,0,0,.075),1px 3px 8px rgba(0,0,0,.075),2px 4px 16px rgba(0,0,0,.075);pointer-events:all}.swal2-popup.swal2-toast>*{grid-column:2}.swal2-popup.swal2-toast .swal2-title{margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-loading{justify-content:center}.swal2-popup.swal2-toast .swal2-input{height:2em;margin:.5em;font-size:1em}.swal2-popup.swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{grid-column:3/3;grid-row:1/99;align-self:center;width:.8em;height:.8em;margin:0;font-size:2em}.swal2-popup.swal2-toast .swal2-html-container{margin:.5em 1em;padding:0;overflow:initial;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-html-container:empty{padding:0}.swal2-popup.swal2-toast .swal2-loader{grid-column:1;grid-row:1/99;align-self:center;width:2em;height:2em;margin:.25em}.swal2-popup.swal2-toast .swal2-icon{grid-column:1;grid-row:1/99;align-self:center;width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:bold}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{justify-content:flex-start;height:auto;margin:0;margin-top:.5em;padding:0 .5em}.swal2-popup.swal2-toast .swal2-styled{margin:.25em .5em;padding:.4em .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-0.8em;left:-0.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-0.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{animation:swal2-toast-hide .1s forwards}div:where(.swal2-container){display:grid;position:fixed;z-index:1060;inset:0;box-sizing:border-box;grid-template-areas:\"top-start top top-end\" \"center-start center center-end\" \"bottom-start bottom-center bottom-end\";grid-template-rows:minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);height:100%;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}div:where(.swal2-container).swal2-backdrop-show,div:where(.swal2-container).swal2-noanimation{background:rgba(0,0,0,.4)}div:where(.swal2-container).swal2-backdrop-hide{background:rgba(0,0,0,0) !important}div:where(.swal2-container).swal2-top-start,div:where(.swal2-container).swal2-center-start,div:where(.swal2-container).swal2-bottom-start{grid-template-columns:minmax(0, 1fr) auto auto}div:where(.swal2-container).swal2-top,div:where(.swal2-container).swal2-center,div:where(.swal2-container).swal2-bottom{grid-template-columns:auto minmax(0, 1fr) auto}div:where(.swal2-container).swal2-top-end,div:where(.swal2-container).swal2-center-end,div:where(.swal2-container).swal2-bottom-end{grid-template-columns:auto auto minmax(0, 1fr)}div:where(.swal2-container).swal2-top-start>.swal2-popup{align-self:start}div:where(.swal2-container).swal2-top>.swal2-popup{grid-column:2;place-self:start center}div:where(.swal2-container).swal2-top-end>.swal2-popup,div:where(.swal2-container).swal2-top-right>.swal2-popup{grid-column:3;place-self:start end}div:where(.swal2-container).swal2-center-start>.swal2-popup,div:where(.swal2-container).swal2-center-left>.swal2-popup{grid-row:2;align-self:center}div:where(.swal2-container).swal2-center>.swal2-popup{grid-column:2;grid-row:2;place-self:center center}div:where(.swal2-container).swal2-center-end>.swal2-popup,div:where(.swal2-container).swal2-center-right>.swal2-popup{grid-column:3;grid-row:2;place-self:center end}div:where(.swal2-container).swal2-bottom-start>.swal2-popup,div:where(.swal2-container).swal2-bottom-left>.swal2-popup{grid-column:1;grid-row:3;align-self:end}div:where(.swal2-container).swal2-bottom>.swal2-popup{grid-column:2;grid-row:3;place-self:end center}div:where(.swal2-container).swal2-bottom-end>.swal2-popup,div:where(.swal2-container).swal2-bottom-right>.swal2-popup{grid-column:3;grid-row:3;place-self:end end}div:where(.swal2-container).swal2-grow-row>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-column:1/4;width:100%}div:where(.swal2-container).swal2-grow-column>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-row:1/4;align-self:stretch}div:where(.swal2-container).swal2-no-transition{transition:none !important}div:where(.swal2-container) div:where(.swal2-popup){display:none;position:relative;box-sizing:border-box;grid-template-columns:minmax(0, 100%);width:32em;max-width:100%;padding:0 0 1.25em;border:none;border-radius:5px;background:#fff;color:#545454;font-family:inherit;font-size:1rem}div:where(.swal2-container) div:where(.swal2-popup):focus{outline:none}div:where(.swal2-container) div:where(.swal2-popup).swal2-loading{overflow-y:hidden}div:where(.swal2-container) h2:where(.swal2-title){position:relative;max-width:100%;margin:0;padding:.8em 1em 0;color:inherit;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}div:where(.swal2-container) div:where(.swal2-actions){display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:center;width:auto;margin:1.25em auto 0;padding:0}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1))}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))}div:where(.swal2-container) div:where(.swal2-loader){display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 rgba(0,0,0,0) #2778c4 rgba(0,0,0,0)}div:where(.swal2-container) button:where(.swal2-styled){margin:.3125em;padding:.625em 1.1em;transition:box-shadow .1s;box-shadow:0 0 0 3px rgba(0,0,0,0);font-weight:500}div:where(.swal2-container) button:where(.swal2-styled):not([disabled]){cursor:pointer}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){border:0;border-radius:.25em;background:initial;background-color:#7066e0;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):focus-visible{box-shadow:0 0 0 3px rgba(112,102,224,.5)}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny){border:0;border-radius:.25em;background:initial;background-color:#dc3741;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):focus-visible{box-shadow:0 0 0 3px rgba(220,55,65,.5)}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel){border:0;border-radius:.25em;background:initial;background-color:#6e7881;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):focus-visible{box-shadow:0 0 0 3px rgba(110,120,129,.5)}div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus-visible{box-shadow:0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) button:where(.swal2-styled):focus-visible{outline:none}div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner{border:0}div:where(.swal2-container) div:where(.swal2-footer){margin:1em 0 0;padding:1em 1em 0;border-top:1px solid #eee;color:inherit;font-size:1em;text-align:center}div:where(.swal2-container) .swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;grid-column:auto !important;overflow:hidden;border-bottom-right-radius:5px;border-bottom-left-radius:5px}div:where(.swal2-container) div:where(.swal2-timer-progress-bar){width:100%;height:.25em;background:rgba(0,0,0,.2)}div:where(.swal2-container) img:where(.swal2-image){max-width:100%;margin:2em auto 1em}div:where(.swal2-container) button:where(.swal2-close){z-index:2;align-items:center;justify-content:center;width:1.2em;height:1.2em;margin-top:0;margin-right:0;margin-bottom:-1.2em;padding:0;overflow:hidden;transition:color .1s,box-shadow .1s;border:none;border-radius:5px;background:rgba(0,0,0,0);color:#ccc;font-family:monospace;font-size:2.5em;cursor:pointer;justify-self:end}div:where(.swal2-container) button:where(.swal2-close):hover{transform:none;background:rgba(0,0,0,0);color:#f27474}div:where(.swal2-container) button:where(.swal2-close):focus-visible{outline:none;box-shadow:inset 0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner{border:0}div:where(.swal2-container) .swal2-html-container{z-index:1;justify-content:center;margin:0;padding:1em 1.6em .3em;overflow:auto;color:inherit;font-size:1.125em;font-weight:normal;line-height:normal;text-align:center;word-wrap:break-word;word-break:break-word}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea),div:where(.swal2-container) select:where(.swal2-select),div:where(.swal2-container) div:where(.swal2-radio),div:where(.swal2-container) label:where(.swal2-checkbox){margin:1em 2em 3px}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea){box-sizing:border-box;width:auto;transition:border-color .1s,box-shadow .1s;border:1px solid #d9d9d9;border-radius:.1875em;background:rgba(0,0,0,0);box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(0,0,0,0);color:inherit;font-size:1.125em}div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror{border-color:#f27474 !important;box-shadow:0 0 2px #f27474 !important}div:where(.swal2-container) input:where(.swal2-input):focus,div:where(.swal2-container) input:where(.swal2-file):focus,div:where(.swal2-container) textarea:where(.swal2-textarea):focus{border:1px solid #b4dbed;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) input:where(.swal2-input)::placeholder,div:where(.swal2-container) input:where(.swal2-file)::placeholder,div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder{color:#ccc}div:where(.swal2-container) .swal2-range{margin:1em 2em 3px;background:#fff}div:where(.swal2-container) .swal2-range input{width:80%}div:where(.swal2-container) .swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}div:where(.swal2-container) .swal2-range input,div:where(.swal2-container) .swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}div:where(.swal2-container) .swal2-input{height:2.625em;padding:0 .75em}div:where(.swal2-container) .swal2-file{width:75%;margin-right:auto;margin-left:auto;background:rgba(0,0,0,0);font-size:1.125em}div:where(.swal2-container) .swal2-textarea{height:6.75em;padding:.75em}div:where(.swal2-container) .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:rgba(0,0,0,0);color:inherit;font-size:1.125em}div:where(.swal2-container) .swal2-radio,div:where(.swal2-container) .swal2-checkbox{align-items:center;justify-content:center;background:#fff;color:inherit}div:where(.swal2-container) .swal2-radio label,div:where(.swal2-container) .swal2-checkbox label{margin:0 .6em;font-size:1.125em}div:where(.swal2-container) .swal2-radio input,div:where(.swal2-container) .swal2-checkbox input{flex-shrink:0;margin:0 .4em}div:where(.swal2-container) label:where(.swal2-input-label){display:flex;justify-content:center;margin:1em auto 0}div:where(.swal2-container) div:where(.swal2-validation-message){align-items:center;justify-content:center;margin:1em 0 0;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}div:where(.swal2-container) div:where(.swal2-validation-message)::before{content:\"!\";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}div:where(.swal2-container) .swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:1.25em auto;padding:0;background:rgba(0,0,0,0);font-weight:600}div:where(.swal2-container) .swal2-progress-steps li{display:inline-block;position:relative}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}div:where(.swal2-icon){position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:2.5em auto .6em;border:0.25em solid rgba(0,0,0,0);border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;user-select:none}div:where(.swal2-icon) .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}div:where(.swal2-icon).swal2-error{border-color:#f27474;color:#f27474}div:where(.swal2-icon).swal2-error .swal2-x-mark{position:relative;flex-grow:1}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-error.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark{animation:swal2-animate-error-x-mark .5s}div:where(.swal2-icon).swal2-warning{border-color:#facea8;color:#f8bb86}div:where(.swal2-icon).swal2-warning.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .5s}div:where(.swal2-icon).swal2-info{border-color:#9de0f6;color:#3fc3ee}div:where(.swal2-icon).swal2-info.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .8s}div:where(.swal2-icon).swal2-question{border-color:#c9dae1;color:#87adbd}div:where(.swal2-icon).swal2-question.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content{animation:swal2-animate-question-mark .8s}div:where(.swal2-icon).swal2-success{border-color:#a5dc86;color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;border-radius:50%}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left]{top:-0.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right]{top:-0.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}div:where(.swal2-icon).swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-0.25em;left:-0.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}div:where(.swal2-icon).swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-animate-success-line-tip .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-animate-success-line-long .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:swal2-rotate-success-circular-line 4.25s ease-in}[class^=swal2]{-webkit-tap-highlight-color:rgba(0,0,0,0)}.swal2-show{animation:swal2-show .3s}.swal2-hide{animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{margin-right:initial;margin-left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@keyframes swal2-toast-show{0%{transform:translateY(-0.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(0.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0deg)}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-0.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-show{0%{transform:scale(0.7)}45%{transform:scale(1.05)}80%{transform:scale(0.95)}100%{transform:scale(1)}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(0.5);opacity:0}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-0.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(0.4);opacity:0}50%{margin-top:1.625em;transform:scale(0.4);opacity:0}80%{margin-top:-0.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);opacity:1}}@keyframes swal2-rotate-loading{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}100%{transform:rotateY(0)}}@keyframes swal2-animate-i-mark{0%{transform:rotateZ(45deg);opacity:0}25%{transform:rotateZ(-25deg);opacity:.4}50%{transform:rotateZ(15deg);opacity:.8}75%{transform:rotateZ(-5deg);opacity:1}100%{transform:rotateX(0);opacity:1}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto !important}body.swal2-no-backdrop .swal2-container{background-color:rgba(0,0,0,0) !important;pointer-events:none}body.swal2-no-backdrop .swal2-container .swal2-popup{pointer-events:all}body.swal2-no-backdrop .swal2-container .swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll !important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static !important}}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:rgba(0,0,0,0);pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{inset:0 auto auto 50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{inset:0 0 auto auto}body.swal2-toast-shown .swal2-container.swal2-top-start,body.swal2-toast-shown .swal2-container.swal2-top-left{inset:0 auto auto 0}body.swal2-toast-shown .swal2-container.swal2-center-start,body.swal2-toast-shown .swal2-container.swal2-center-left{inset:50% auto auto 0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{inset:50% auto auto 50%;transform:translate(-50%, -50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{inset:50% 0 auto auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-start,body.swal2-toast-shown .swal2-container.swal2-bottom-left{inset:auto auto 0 0}body.swal2-toast-shown .swal2-container.swal2-bottom{inset:auto auto 0 50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{inset:auto 0 0 auto}"); \ No newline at end of file diff --git a/public/styles/sweetalert2.min.css b/public/styles/sweetalert2.min.css deleted file mode 100644 index 1833cf92..00000000 --- a/public/styles/sweetalert2.min.css +++ /dev/null @@ -1 +0,0 @@ -.swal2-popup.swal2-toast{box-sizing:border-box;grid-column:1/4 !important;grid-row:1/4 !important;grid-template-columns:min-content auto min-content;padding:1em;overflow-y:hidden;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.075),0 1px 2px rgba(0,0,0,.075),1px 2px 4px rgba(0,0,0,.075),1px 3px 8px rgba(0,0,0,.075),2px 4px 16px rgba(0,0,0,.075);pointer-events:all}.swal2-popup.swal2-toast>*{grid-column:2}.swal2-popup.swal2-toast .swal2-title{margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-loading{justify-content:center}.swal2-popup.swal2-toast .swal2-input{height:2em;margin:.5em;font-size:1em}.swal2-popup.swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{grid-column:3/3;grid-row:1/99;align-self:center;width:.8em;height:.8em;margin:0;font-size:2em}.swal2-popup.swal2-toast .swal2-html-container{margin:.5em 1em;padding:0;overflow:initial;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-html-container:empty{padding:0}.swal2-popup.swal2-toast .swal2-loader{grid-column:1;grid-row:1/99;align-self:center;width:2em;height:2em;margin:.25em}.swal2-popup.swal2-toast .swal2-icon{grid-column:1;grid-row:1/99;align-self:center;width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:bold}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{justify-content:flex-start;height:auto;margin:0;margin-top:.5em;padding:0 .5em}.swal2-popup.swal2-toast .swal2-styled{margin:.25em .5em;padding:.4em .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-0.8em;left:-0.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-0.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{animation:swal2-toast-hide .1s forwards}div:where(.swal2-container){display:grid;position:fixed;z-index:1060;inset:0;box-sizing:border-box;grid-template-areas:"top-start top top-end" "center-start center center-end" "bottom-start bottom-center bottom-end";grid-template-rows:minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);height:100%;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}div:where(.swal2-container).swal2-backdrop-show,div:where(.swal2-container).swal2-noanimation{background:rgba(0,0,0,.4)}div:where(.swal2-container).swal2-backdrop-hide{background:rgba(0,0,0,0) !important}div:where(.swal2-container).swal2-top-start,div:where(.swal2-container).swal2-center-start,div:where(.swal2-container).swal2-bottom-start{grid-template-columns:minmax(0, 1fr) auto auto}div:where(.swal2-container).swal2-top,div:where(.swal2-container).swal2-center,div:where(.swal2-container).swal2-bottom{grid-template-columns:auto minmax(0, 1fr) auto}div:where(.swal2-container).swal2-top-end,div:where(.swal2-container).swal2-center-end,div:where(.swal2-container).swal2-bottom-end{grid-template-columns:auto auto minmax(0, 1fr)}div:where(.swal2-container).swal2-top-start>.swal2-popup{align-self:start}div:where(.swal2-container).swal2-top>.swal2-popup{grid-column:2;place-self:start center}div:where(.swal2-container).swal2-top-end>.swal2-popup,div:where(.swal2-container).swal2-top-right>.swal2-popup{grid-column:3;place-self:start end}div:where(.swal2-container).swal2-center-start>.swal2-popup,div:where(.swal2-container).swal2-center-left>.swal2-popup{grid-row:2;align-self:center}div:where(.swal2-container).swal2-center>.swal2-popup{grid-column:2;grid-row:2;place-self:center center}div:where(.swal2-container).swal2-center-end>.swal2-popup,div:where(.swal2-container).swal2-center-right>.swal2-popup{grid-column:3;grid-row:2;place-self:center end}div:where(.swal2-container).swal2-bottom-start>.swal2-popup,div:where(.swal2-container).swal2-bottom-left>.swal2-popup{grid-column:1;grid-row:3;align-self:end}div:where(.swal2-container).swal2-bottom>.swal2-popup{grid-column:2;grid-row:3;place-self:end center}div:where(.swal2-container).swal2-bottom-end>.swal2-popup,div:where(.swal2-container).swal2-bottom-right>.swal2-popup{grid-column:3;grid-row:3;place-self:end end}div:where(.swal2-container).swal2-grow-row>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-column:1/4;width:100%}div:where(.swal2-container).swal2-grow-column>.swal2-popup,div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup{grid-row:1/4;align-self:stretch}div:where(.swal2-container).swal2-no-transition{transition:none !important}div:where(.swal2-container) div:where(.swal2-popup){display:none;position:relative;box-sizing:border-box;grid-template-columns:minmax(0, 100%);width:32em;max-width:100%;padding:0 0 1.25em;border:none;border-radius:5px;background:#fff;color:#545454;font-family:inherit;font-size:1rem}div:where(.swal2-container) div:where(.swal2-popup):focus{outline:none}div:where(.swal2-container) div:where(.swal2-popup).swal2-loading{overflow-y:hidden}div:where(.swal2-container) h2:where(.swal2-title){position:relative;max-width:100%;margin:0;padding:.8em 1em 0;color:inherit;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}div:where(.swal2-container) div:where(.swal2-actions){display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:center;width:auto;margin:1.25em auto 0;padding:0}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1))}div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))}div:where(.swal2-container) div:where(.swal2-loader){display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 rgba(0,0,0,0) #2778c4 rgba(0,0,0,0)}div:where(.swal2-container) button:where(.swal2-styled){margin:.3125em;padding:.625em 1.1em;transition:box-shadow .1s;box-shadow:0 0 0 3px rgba(0,0,0,0);font-weight:500}div:where(.swal2-container) button:where(.swal2-styled):not([disabled]){cursor:pointer}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){border:0;border-radius:.25em;background:initial;background-color:#7066e0;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):focus-visible{box-shadow:0 0 0 3px rgba(112,102,224,.5)}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny){border:0;border-radius:.25em;background:initial;background-color:#dc3741;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):focus-visible{box-shadow:0 0 0 3px rgba(220,55,65,.5)}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel){border:0;border-radius:.25em;background:initial;background-color:#6e7881;color:#fff;font-size:1em}div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):focus-visible{box-shadow:0 0 0 3px rgba(110,120,129,.5)}div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus-visible{box-shadow:0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) button:where(.swal2-styled):focus-visible{outline:none}div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner{border:0}div:where(.swal2-container) div:where(.swal2-footer){margin:1em 0 0;padding:1em 1em 0;border-top:1px solid #eee;color:inherit;font-size:1em;text-align:center}div:where(.swal2-container) .swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;grid-column:auto !important;overflow:hidden;border-bottom-right-radius:5px;border-bottom-left-radius:5px}div:where(.swal2-container) div:where(.swal2-timer-progress-bar){width:100%;height:.25em;background:rgba(0,0,0,.2)}div:where(.swal2-container) img:where(.swal2-image){max-width:100%;margin:2em auto 1em}div:where(.swal2-container) button:where(.swal2-close){z-index:2;align-items:center;justify-content:center;width:1.2em;height:1.2em;margin-top:0;margin-right:0;margin-bottom:-1.2em;padding:0;overflow:hidden;transition:color .1s,box-shadow .1s;border:none;border-radius:5px;background:rgba(0,0,0,0);color:#ccc;font-family:monospace;font-size:2.5em;cursor:pointer;justify-self:end}div:where(.swal2-container) button:where(.swal2-close):hover{transform:none;background:rgba(0,0,0,0);color:#f27474}div:where(.swal2-container) button:where(.swal2-close):focus-visible{outline:none;box-shadow:inset 0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner{border:0}div:where(.swal2-container) .swal2-html-container{z-index:1;justify-content:center;margin:0;padding:1em 1.6em .3em;overflow:auto;color:inherit;font-size:1.125em;font-weight:normal;line-height:normal;text-align:center;word-wrap:break-word;word-break:break-word}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea),div:where(.swal2-container) select:where(.swal2-select),div:where(.swal2-container) div:where(.swal2-radio),div:where(.swal2-container) label:where(.swal2-checkbox){margin:1em 2em 3px}div:where(.swal2-container) input:where(.swal2-input),div:where(.swal2-container) input:where(.swal2-file),div:where(.swal2-container) textarea:where(.swal2-textarea){box-sizing:border-box;width:auto;transition:border-color .1s,box-shadow .1s;border:1px solid #d9d9d9;border-radius:.1875em;background:rgba(0,0,0,0);box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(0,0,0,0);color:inherit;font-size:1.125em}div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror{border-color:#f27474 !important;box-shadow:0 0 2px #f27474 !important}div:where(.swal2-container) input:where(.swal2-input):focus,div:where(.swal2-container) input:where(.swal2-file):focus,div:where(.swal2-container) textarea:where(.swal2-textarea):focus{border:1px solid #b4dbed;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(100,150,200,.5)}div:where(.swal2-container) input:where(.swal2-input)::placeholder,div:where(.swal2-container) input:where(.swal2-file)::placeholder,div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder{color:#ccc}div:where(.swal2-container) .swal2-range{margin:1em 2em 3px;background:#fff}div:where(.swal2-container) .swal2-range input{width:80%}div:where(.swal2-container) .swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}div:where(.swal2-container) .swal2-range input,div:where(.swal2-container) .swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}div:where(.swal2-container) .swal2-input{height:2.625em;padding:0 .75em}div:where(.swal2-container) .swal2-file{width:75%;margin-right:auto;margin-left:auto;background:rgba(0,0,0,0);font-size:1.125em}div:where(.swal2-container) .swal2-textarea{height:6.75em;padding:.75em}div:where(.swal2-container) .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:rgba(0,0,0,0);color:inherit;font-size:1.125em}div:where(.swal2-container) .swal2-radio,div:where(.swal2-container) .swal2-checkbox{align-items:center;justify-content:center;background:#fff;color:inherit}div:where(.swal2-container) .swal2-radio label,div:where(.swal2-container) .swal2-checkbox label{margin:0 .6em;font-size:1.125em}div:where(.swal2-container) .swal2-radio input,div:where(.swal2-container) .swal2-checkbox input{flex-shrink:0;margin:0 .4em}div:where(.swal2-container) label:where(.swal2-input-label){display:flex;justify-content:center;margin:1em auto 0}div:where(.swal2-container) div:where(.swal2-validation-message){align-items:center;justify-content:center;margin:1em 0 0;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}div:where(.swal2-container) div:where(.swal2-validation-message)::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}div:where(.swal2-container) .swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:1.25em auto;padding:0;background:rgba(0,0,0,0);font-weight:600}div:where(.swal2-container) .swal2-progress-steps li{display:inline-block;position:relative}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}div:where(.swal2-icon){position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:2.5em auto .6em;border:0.25em solid rgba(0,0,0,0);border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;user-select:none}div:where(.swal2-icon) .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}div:where(.swal2-icon).swal2-error{border-color:#f27474;color:#f27474}div:where(.swal2-icon).swal2-error .swal2-x-mark{position:relative;flex-grow:1}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-error.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark{animation:swal2-animate-error-x-mark .5s}div:where(.swal2-icon).swal2-warning{border-color:#facea8;color:#f8bb86}div:where(.swal2-icon).swal2-warning.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .5s}div:where(.swal2-icon).swal2-info{border-color:#9de0f6;color:#3fc3ee}div:where(.swal2-icon).swal2-info.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .8s}div:where(.swal2-icon).swal2-question{border-color:#c9dae1;color:#87adbd}div:where(.swal2-icon).swal2-question.swal2-icon-show{animation:swal2-animate-error-icon .5s}div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content{animation:swal2-animate-question-mark .8s}div:where(.swal2-icon).swal2-success{border-color:#a5dc86;color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;border-radius:50%}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left]{top:-0.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right]{top:-0.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}div:where(.swal2-icon).swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-0.25em;left:-0.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}div:where(.swal2-icon).swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-animate-success-line-tip .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-animate-success-line-long .75s}div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:swal2-rotate-success-circular-line 4.25s ease-in}[class^=swal2]{-webkit-tap-highlight-color:rgba(0,0,0,0)}.swal2-show{animation:swal2-show .3s}.swal2-hide{animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{margin-right:initial;margin-left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@keyframes swal2-toast-show{0%{transform:translateY(-0.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(0.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0deg)}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-0.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-show{0%{transform:scale(0.7)}45%{transform:scale(1.05)}80%{transform:scale(0.95)}100%{transform:scale(1)}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(0.5);opacity:0}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-0.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(0.4);opacity:0}50%{margin-top:1.625em;transform:scale(0.4);opacity:0}80%{margin-top:-0.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);opacity:1}}@keyframes swal2-rotate-loading{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}100%{transform:rotateY(0)}}@keyframes swal2-animate-i-mark{0%{transform:rotateZ(45deg);opacity:0}25%{transform:rotateZ(-25deg);opacity:.4}50%{transform:rotateZ(15deg);opacity:.8}75%{transform:rotateZ(-5deg);opacity:1}100%{transform:rotateX(0);opacity:1}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto !important}body.swal2-no-backdrop .swal2-container{background-color:rgba(0,0,0,0) !important;pointer-events:none}body.swal2-no-backdrop .swal2-container .swal2-popup{pointer-events:all}body.swal2-no-backdrop .swal2-container .swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll !important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static !important}}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:rgba(0,0,0,0);pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{inset:0 auto auto 50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{inset:0 0 auto auto}body.swal2-toast-shown .swal2-container.swal2-top-start,body.swal2-toast-shown .swal2-container.swal2-top-left{inset:0 auto auto 0}body.swal2-toast-shown .swal2-container.swal2-center-start,body.swal2-toast-shown .swal2-container.swal2-center-left{inset:50% auto auto 0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{inset:50% auto auto 50%;transform:translate(-50%, -50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{inset:50% 0 auto auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-start,body.swal2-toast-shown .swal2-container.swal2-bottom-left{inset:auto auto 0 0}body.swal2-toast-shown .swal2-container.swal2-bottom{inset:auto auto 0 50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{inset:auto 0 0 auto} diff --git a/translate/translate.json b/translate/translate.json index bed3d62b..2fc3fcc9 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -26,10 +26,10 @@ "zh-chs": " + CIRA", "zh-cht": " + CIRA", "xloc": [ - "default.handlebars->47->2225", - "default.handlebars->47->2227", - "default3.handlebars->35->2221", - "default3.handlebars->35->2223" + "default.handlebars->47->2229", + "default.handlebars->47->2231", + "default3.handlebars->35->2225", + "default3.handlebars->35->2227" ] }, { @@ -330,8 +330,8 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->47->2097", - "default3.handlebars->35->2077" + "default.handlebars->47->2101", + "default3.handlebars->35->2081" ] }, { @@ -360,10 +360,10 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->47->2351", - "default.handlebars->47->2934", - "default3.handlebars->35->2348", - "default3.handlebars->35->2928" + "default.handlebars->47->2355", + "default.handlebars->47->2938", + "default3.handlebars->35->2352", + "default3.handlebars->35->2932" ] }, { @@ -985,9 +985,9 @@ "zh-chs": "* 8-16个字符,1个大写,1个小写,1个数字,1个非字母数字。", "zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "xloc": [ - "default.handlebars->47->2309", + "default.handlebars->47->2313", "default.handlebars->47->541", - "default3.handlebars->35->2303", + "default3.handlebars->35->2307", "default3.handlebars->35->538" ] }, @@ -1100,18 +1100,18 @@ "default-mobile.handlebars->11->814", "default-mobile.handlebars->11->816", "default-mobile.handlebars->11->818", - "default.handlebars->47->1019", - "default.handlebars->47->1659", - "default.handlebars->47->1661", + "default.handlebars->47->1023", "default.handlebars->47->1663", - "default.handlebars->47->2427", - "default.handlebars->47->2707", - "default3.handlebars->35->1016", - "default3.handlebars->35->1644", - "default3.handlebars->35->1646", + "default.handlebars->47->1665", + "default.handlebars->47->1667", + "default.handlebars->47->2431", + "default.handlebars->47->2711", + "default3.handlebars->35->1020", "default3.handlebars->35->1648", - "default3.handlebars->35->2424", - "default3.handlebars->35->2704" + "default3.handlebars->35->1650", + "default3.handlebars->35->1652", + "default3.handlebars->35->2428", + "default3.handlebars->35->2708" ] }, { @@ -1166,7 +1166,7 @@ "zh-chs": ", 16 灰", "zh-cht": ", 16 灰", "xloc": [ - "player.handlebars->3->36" + "player.handlebars->3->39" ] }, { @@ -1195,7 +1195,7 @@ "zh-chs": ", 256 灰度", "zh-cht": ", 256 灰度", "xloc": [ - "player.handlebars->3->37" + "player.handlebars->3->40" ] }, { @@ -1286,8 +1286,8 @@ "zh-cht": ",MQTT在線", "xloc": [ "default-mobile.handlebars->11->923", - "default.handlebars->47->1769", - "default3.handlebars->35->1752" + "default.handlebars->47->1773", + "default3.handlebars->35->1756" ] }, { @@ -1316,10 +1316,10 @@ "zh-chs": ", 不同意", "zh-cht": ", 不同意", "xloc": [ - "default.handlebars->47->1114", - "default.handlebars->47->2267", - "default3.handlebars->35->1111", - "default3.handlebars->35->2263" + "default.handlebars->47->1118", + "default.handlebars->47->2271", + "default3.handlebars->35->1115", + "default3.handlebars->35->2267" ] }, { @@ -1348,10 +1348,10 @@ "zh-chs": ",提示同意", "zh-cht": ",提示同意", "xloc": [ - "default.handlebars->47->1115", - "default.handlebars->47->2268", - "default3.handlebars->35->1112", - "default3.handlebars->35->2264" + "default.handlebars->47->1119", + "default.handlebars->47->2272", + "default3.handlebars->35->1116", + "default3.handlebars->35->2268" ] }, { @@ -1379,8 +1379,8 @@ "zh-chs": ", RDP", "zh-cht": ", RDP", "xloc": [ - "default.handlebars->47->1416", - "default3.handlebars->35->1403" + "default.handlebars->47->1420", + "default3.handlebars->35->1407" ] }, { @@ -1409,10 +1409,10 @@ "zh-chs": ", 每天重复", "zh-cht": ", 每天重複", "xloc": [ - "default.handlebars->47->1111", - "default.handlebars->47->2264", - "default3.handlebars->35->1108", - "default3.handlebars->35->2260" + "default.handlebars->47->1115", + "default.handlebars->47->2268", + "default3.handlebars->35->1112", + "default3.handlebars->35->2264" ] }, { @@ -1441,10 +1441,10 @@ "zh-chs": ", 每周重复一次", "zh-cht": ", 每週重複一次", "xloc": [ - "default.handlebars->47->1112", - "default.handlebars->47->2265", - "default3.handlebars->35->1109", - "default3.handlebars->35->2261" + "default.handlebars->47->1116", + "default.handlebars->47->2269", + "default3.handlebars->35->1113", + "default3.handlebars->35->2265" ] }, { @@ -1529,8 +1529,8 @@ "zh-cht": ", SFTP", "xloc": [ "default-mobile.handlebars->11->707", - "default.handlebars->47->1538", - "default3.handlebars->35->1523" + "default.handlebars->47->1542", + "default3.handlebars->35->1527" ] }, { @@ -1558,8 +1558,8 @@ "zh-chs": ", SSH", "zh-cht": ", SSH", "xloc": [ - "default.handlebars->47->1506", - "default3.handlebars->35->1491" + "default.handlebars->47->1510", + "default3.handlebars->35->1495" ] }, { @@ -1587,8 +1587,8 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->47->1399", - "default3.handlebars->35->1386", + "default.handlebars->47->1403", + "default3.handlebars->35->1390", "sharing.handlebars->11->12" ] }, @@ -1618,10 +1618,10 @@ "zh-chs": ", 工具栏", "zh-cht": ", 工具欄", "xloc": [ - "default.handlebars->47->1116", - "default.handlebars->47->2269", - "default3.handlebars->35->1113", - "default3.handlebars->35->2265" + "default.handlebars->47->1120", + "default.handlebars->47->2273", + "default3.handlebars->35->1117", + "default3.handlebars->35->2269" ] }, { @@ -1676,10 +1676,10 @@ "zh-chs": ", 仅查看桌面", "zh-cht": ", 僅查看桌面", "xloc": [ - "default.handlebars->47->1113", - "default.handlebars->47->2266", - "default3.handlebars->35->1110", - "default3.handlebars->35->2262" + "default.handlebars->47->1117", + "default.handlebars->47->2270", + "default3.handlebars->35->1114", + "default3.handlebars->35->2266" ] }, { @@ -1710,12 +1710,12 @@ "default-mobile.handlebars->11->648", "default-mobile.handlebars->11->685", "default-mobile.handlebars->11->708", - "default.handlebars->47->1415", - "default.handlebars->47->1507", - "default.handlebars->47->1539", - "default3.handlebars->35->1402", - "default3.handlebars->35->1492", - "default3.handlebars->35->1524", + "default.handlebars->47->1419", + "default.handlebars->47->1511", + "default.handlebars->47->1543", + "default3.handlebars->35->1406", + "default3.handlebars->35->1496", + "default3.handlebars->35->1528", "sharing-mobile.handlebars->11->14", "sharing-mobile.handlebars->11->46", "sharing-mobile.handlebars->11->63", @@ -1953,8 +1953,8 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->47->1410", - "default3.handlebars->35->1397", + "default.handlebars->47->1414", + "default3.handlebars->35->1401", "sharing.handlebars->11->13" ] }, @@ -2050,12 +2050,12 @@ "default-mobile.handlebars->11->358", "default-mobile.handlebars->11->360", "default-mobile.handlebars->11->714", - "default.handlebars->47->1553", - "default.handlebars->47->2493", - "default.handlebars->47->3172", - "default3.handlebars->35->1538", - "default3.handlebars->35->2490", - "default3.handlebars->35->3160", + "default.handlebars->47->1557", + "default.handlebars->47->2497", + "default.handlebars->47->3182", + "default3.handlebars->35->1542", + "default3.handlebars->35->2494", + "default3.handlebars->35->3170", "sharing-mobile.handlebars->11->79", "sharing.handlebars->11->50" ] @@ -2242,8 +2242,8 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->47->3029", - "default3.handlebars->35->3023" + "default.handlebars->47->3033", + "default3.handlebars->35->3027" ] }, { @@ -2274,8 +2274,8 @@ "xloc": [ "default-mobile.handlebars->11->1066", "default-mobile.handlebars->11->370", - "default.handlebars->47->2517", - "default3.handlebars->35->2514", + "default.handlebars->47->2521", + "default3.handlebars->35->2518", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing-mobile.handlebars->11->112", @@ -2308,7 +2308,7 @@ "zh-chs": "每像素 1 个字节", "zh-cht": "每像素 1 個字節", "xloc": [ - "player.handlebars->3->35" + "player.handlebars->3->38" ] }, { @@ -2337,8 +2337,8 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->47->1412", - "default3.handlebars->35->1399", + "default.handlebars->47->1416", + "default3.handlebars->35->1403", "sharing.handlebars->11->15" ] }, @@ -2402,8 +2402,8 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->47->2984", - "default3.handlebars->35->2978" + "default.handlebars->47->2988", + "default3.handlebars->35->2982" ] }, { @@ -2466,10 +2466,10 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->47->1224", - "default.handlebars->47->2062", - "default3.handlebars->35->1219", - "default3.handlebars->35->2043" + "default.handlebars->47->1228", + "default.handlebars->47->2066", + "default3.handlebars->35->1223", + "default3.handlebars->35->2047" ] }, { @@ -2587,8 +2587,8 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->47->2739", - "default3.handlebars->35->2736" + "default.handlebars->47->2743", + "default3.handlebars->35->2740" ] }, { @@ -2700,8 +2700,8 @@ "zh-cht": "1秒", "xloc": [ "default-mobile.handlebars->11->584", - "default.handlebars->47->1264", - "default3.handlebars->35->1259" + "default.handlebars->47->1268", + "default3.handlebars->35->1263" ] }, { @@ -2852,7 +2852,7 @@ "default-mobile.handlebars->11->439", "default-mobile.handlebars->11->443", "default-mobile.handlebars->11->447", - "default.handlebars->47->2743", + "default.handlebars->47->2747", "default.handlebars->47->459", "default.handlebars->47->462", "default.handlebars->47->466", @@ -2860,7 +2860,7 @@ "default.handlebars->47->474", "default.handlebars->47->478", "default.handlebars->47->482", - "default3.handlebars->35->2740", + "default3.handlebars->35->2744", "default3.handlebars->35->456", "default3.handlebars->35->459", "default3.handlebars->35->463", @@ -3050,7 +3050,7 @@ "zh-chs": "10 帧/秒", "zh-cht": "10 幀/秒", "xloc": [ - "player.handlebars->3->48" + "player.handlebars->3->51" ] }, { @@ -3079,10 +3079,10 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->47->1226", - "default.handlebars->47->2064", - "default3.handlebars->35->1221", - "default3.handlebars->35->2045" + "default.handlebars->47->1230", + "default.handlebars->47->2068", + "default3.handlebars->35->1225", + "default3.handlebars->35->2049" ] }, { @@ -3112,8 +3112,8 @@ "zh-cht": "10 秒", "xloc": [ "default-mobile.handlebars->11->586", - "default.handlebars->47->1266", - "default3.handlebars->35->1261" + "default.handlebars->47->1270", + "default3.handlebars->35->1265" ] }, { @@ -3141,7 +3141,7 @@ "zh-chs": "10%", "zh-cht": "10%", "xloc": [ - "player.handlebars->3->56" + "player.handlebars->3->59" ] }, { @@ -3290,10 +3290,10 @@ "zh-chs": "12小时", "zh-cht": "12小時", "xloc": [ - "default.handlebars->47->1234", - "default.handlebars->47->2072", - "default3.handlebars->35->1229", - "default3.handlebars->35->2053" + "default.handlebars->47->1238", + "default.handlebars->47->2076", + "default3.handlebars->35->1233", + "default3.handlebars->35->2057" ] }, { @@ -3437,10 +3437,10 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->47->1227", - "default.handlebars->47->2065", - "default3.handlebars->35->1222", - "default3.handlebars->35->2046" + "default.handlebars->47->1231", + "default.handlebars->47->2069", + "default3.handlebars->35->1226", + "default3.handlebars->35->2050" ] }, { @@ -3469,10 +3469,10 @@ "zh-chs": "16小时", "zh-cht": "16小時", "xloc": [ - "default.handlebars->47->1235", - "default.handlebars->47->2073", - "default3.handlebars->35->1230", - "default3.handlebars->35->2054" + "default.handlebars->47->1239", + "default.handlebars->47->2077", + "default3.handlebars->35->1234", + "default3.handlebars->35->2058" ] }, { @@ -3588,7 +3588,7 @@ "zh-chs": "每像素 2 字节", "zh-cht": "每像素 2 字節", "xloc": [ - "player.handlebars->3->34" + "player.handlebars->3->37" ] }, { @@ -3617,10 +3617,10 @@ "zh-chs": "2天", "zh-cht": "2天", "xloc": [ - "default.handlebars->47->1237", - "default.handlebars->47->2075", - "default3.handlebars->35->1232", - "default3.handlebars->35->2056" + "default.handlebars->47->1241", + "default.handlebars->47->2079", + "default3.handlebars->35->1236", + "default3.handlebars->35->2060" ] }, { @@ -3649,10 +3649,10 @@ "zh-chs": "2小时", "zh-cht": "2小時", "xloc": [ - "default.handlebars->47->1231", - "default.handlebars->47->2069", - "default3.handlebars->35->1226", - "default3.handlebars->35->2050" + "default.handlebars->47->1235", + "default.handlebars->47->2073", + "default3.handlebars->35->1230", + "default3.handlebars->35->2054" ] }, { @@ -3805,7 +3805,7 @@ "zh-chs": "20 帧/秒", "zh-cht": "20 幀/秒", "xloc": [ - "player.handlebars->3->49" + "player.handlebars->3->52" ] }, { @@ -3833,7 +3833,7 @@ "zh-chs": "20%", "zh-cht": "20%", "xloc": [ - "player.handlebars->3->55" + "player.handlebars->3->58" ] }, { @@ -3862,10 +3862,10 @@ "zh-chs": "24小时", "zh-cht": "24小時", "xloc": [ - "default.handlebars->47->1236", - "default.handlebars->47->2074", - "default3.handlebars->35->1231", - "default3.handlebars->35->2055" + "default.handlebars->47->1240", + "default.handlebars->47->2078", + "default3.handlebars->35->1235", + "default3.handlebars->35->2059" ] }, { @@ -3952,8 +3952,8 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->47->2630", - "default3.handlebars->35->2627" + "default.handlebars->47->2634", + "default3.handlebars->35->2631" ] }, { @@ -4013,8 +4013,8 @@ "zh-chs": "第二个因素", "zh-cht": "第二個因素", "xloc": [ - "default.handlebars->47->3211", - "default3.handlebars->35->3199" + "default.handlebars->47->3221", + "default3.handlebars->35->3209" ] }, { @@ -4043,10 +4043,10 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->47->2757", - "default.handlebars->47->3010", - "default3.handlebars->35->2754", - "default3.handlebars->35->3004" + "default.handlebars->47->2761", + "default.handlebars->47->3014", + "default3.handlebars->35->2758", + "default3.handlebars->35->3008" ] }, { @@ -4217,10 +4217,10 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->47->1228", - "default.handlebars->47->2066", - "default3.handlebars->35->1223", - "default3.handlebars->35->2047" + "default.handlebars->47->1232", + "default.handlebars->47->2070", + "default3.handlebars->35->1227", + "default3.handlebars->35->2051" ] }, { @@ -4250,8 +4250,8 @@ "zh-cht": "32 位", "xloc": [ "default-mobile.handlebars->11->752", - "default.handlebars->47->1616", - "default3.handlebars->35->1601" + "default.handlebars->47->1620", + "default3.handlebars->35->1605" ] }, { @@ -4338,10 +4338,10 @@ "zh-chs": "4天", "zh-cht": "4天", "xloc": [ - "default.handlebars->47->1238", - "default.handlebars->47->2076", - "default3.handlebars->35->1233", - "default3.handlebars->35->2057" + "default.handlebars->47->1242", + "default.handlebars->47->2080", + "default3.handlebars->35->1237", + "default3.handlebars->35->2061" ] }, { @@ -4370,10 +4370,10 @@ "zh-chs": "4个小时", "zh-cht": "4個小時", "xloc": [ - "default.handlebars->47->1232", - "default.handlebars->47->2070", - "default3.handlebars->35->1227", - "default3.handlebars->35->2051" + "default.handlebars->47->1236", + "default.handlebars->47->2074", + "default3.handlebars->35->1231", + "default3.handlebars->35->2055" ] }, { @@ -4461,7 +4461,7 @@ "zh-chs": "40%", "zh-cht": "40%", "xloc": [ - "player.handlebars->3->54" + "player.handlebars->3->57" ] }, { @@ -4519,10 +4519,10 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->47->1229", - "default.handlebars->47->2067", - "default3.handlebars->35->1224", - "default3.handlebars->35->2048" + "default.handlebars->47->1233", + "default.handlebars->47->2071", + "default3.handlebars->35->1228", + "default3.handlebars->35->2052" ] }, { @@ -4580,10 +4580,10 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->47->1225", - "default.handlebars->47->2063", - "default3.handlebars->35->1220", - "default3.handlebars->35->2044" + "default.handlebars->47->1229", + "default.handlebars->47->2067", + "default3.handlebars->35->1224", + "default3.handlebars->35->2048" ] }, { @@ -4613,8 +4613,8 @@ "zh-cht": "5秒", "xloc": [ "default-mobile.handlebars->11->585", - "default.handlebars->47->1265", - "default3.handlebars->35->1260" + "default.handlebars->47->1269", + "default3.handlebars->35->1264" ] }, { @@ -4794,10 +4794,10 @@ "zh-chs": "60分钟", "zh-cht": "60分鐘", "xloc": [ - "default.handlebars->47->1230", - "default.handlebars->47->2068", - "default3.handlebars->35->1225", - "default3.handlebars->35->2049" + "default.handlebars->47->1234", + "default.handlebars->47->2072", + "default3.handlebars->35->1229", + "default3.handlebars->35->2053" ] }, { @@ -4825,7 +4825,7 @@ "zh-chs": "60%", "zh-cht": "60%", "xloc": [ - "player.handlebars->3->53" + "player.handlebars->3->56" ] }, { @@ -4886,8 +4886,8 @@ "zh-cht": "64 位", "xloc": [ "default-mobile.handlebars->11->754", - "default.handlebars->47->1618", - "default3.handlebars->35->1603" + "default.handlebars->47->1622", + "default3.handlebars->35->1607" ] }, { @@ -5049,8 +5049,8 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->47->1311", - "default3.handlebars->35->1301" + "default.handlebars->47->1315", + "default3.handlebars->35->1305" ] }, { @@ -5079,8 +5079,8 @@ "zh-chs": "7天", "zh-cht": "7天", "xloc": [ - "default.handlebars->47->2077", - "default3.handlebars->35->2058" + "default.handlebars->47->2081", + "default3.handlebars->35->2062" ] }, { @@ -5171,12 +5171,12 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->47->1233", - "default.handlebars->47->2071", + "default.handlebars->47->1237", + "default.handlebars->47->2075", "default.handlebars->47->569", "default.handlebars->47->583", - "default3.handlebars->35->1228", - "default3.handlebars->35->2052", + "default3.handlebars->35->1232", + "default3.handlebars->35->2056", "default3.handlebars->35->566", "default3.handlebars->35->580" ] @@ -5206,7 +5206,7 @@ "zh-chs": "80%", "zh-cht": "80%", "xloc": [ - "player.handlebars->3->52" + "player.handlebars->3->55" ] }, { @@ -5296,7 +5296,7 @@ "zh-chs": "90%", "zh-cht": "90%", "xloc": [ - "player.handlebars->3->51" + "player.handlebars->3->54" ] }, { @@ -5381,12 +5381,12 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->11->518", - "default.handlebars->47->2245", + "default.handlebars->47->2249", "default.handlebars->47->448", - "default.handlebars->47->927", - "default3.handlebars->35->2241", + "default.handlebars->47->931", + "default3.handlebars->35->2245", "default3.handlebars->35->445", - "default3.handlebars->35->924" + "default3.handlebars->35->928" ] }, { @@ -5516,8 +5516,8 @@ "zh-chs": "操作系统", "zh-cht": "AMT操作系統", "xloc": [ - "default.handlebars->47->3357", - "default3.handlebars->35->3345" + "default.handlebars->47->3380", + "default3.handlebars->35->3368" ] }, { @@ -5545,8 +5545,10 @@ "zh-chs": "AMT-Redir", "zh-cht": "AMT-Redir", "xloc": [ - "default.handlebars->47->3218", - "default3.handlebars->35->3206" + "default.handlebars->47->3231", + "default.handlebars->47->3284", + "default3.handlebars->35->3219", + "default3.handlebars->35->3272" ] }, { @@ -5574,8 +5576,10 @@ "zh-chs": "AMT-WSMAN", "zh-cht": "AMT-WSMAN", "xloc": [ - "default.handlebars->47->3217", - "default3.handlebars->35->3205" + "default.handlebars->47->3230", + "default.handlebars->47->3283", + "default3.handlebars->35->3218", + "default3.handlebars->35->3271" ] }, { @@ -5810,10 +5814,10 @@ "xloc": [ "default-mobile.handlebars->11->759", "default-mobile.handlebars->11->761", - "default.handlebars->47->946", - "default.handlebars->47->948", - "default3.handlebars->35->943", - "default3.handlebars->35->945" + "default.handlebars->47->950", + "default.handlebars->47->952", + "default3.handlebars->35->947", + "default3.handlebars->35->949" ] }, { @@ -5843,8 +5847,8 @@ "zh-cht": "拒絕存取", "xloc": [ "default-mobile.handlebars->11->924", - "default.handlebars->47->1770", - "default3.handlebars->35->1753" + "default.handlebars->47->1774", + "default3.handlebars->35->1757" ] }, { @@ -5933,8 +5937,8 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->47->2940", - "default3.handlebars->35->2934" + "default.handlebars->47->2944", + "default3.handlebars->35->2938" ] }, { @@ -6061,19 +6065,19 @@ "default-mobile.handlebars->11->487", "default-mobile.handlebars->11->98", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->47->2106", - "default.handlebars->47->2108", - "default.handlebars->47->3412", + "default.handlebars->47->2110", + "default.handlebars->47->2112", + "default.handlebars->47->3435", "default.handlebars->47->740", - "default.handlebars->47->887", - "default.handlebars->47->889", - "default3.handlebars->35->2108", - "default3.handlebars->35->2109", - "default3.handlebars->35->3398", - "default3.handlebars->35->3400", + "default.handlebars->47->891", + "default.handlebars->47->893", + "default3.handlebars->35->2112", + "default3.handlebars->35->2113", + "default3.handlebars->35->3421", + "default3.handlebars->35->3423", "default3.handlebars->35->737", - "default3.handlebars->35->884", - "default3.handlebars->35->886" + "default3.handlebars->35->888", + "default3.handlebars->35->890" ] }, { @@ -6103,8 +6107,8 @@ "zh-cht": "帳號設定", "xloc": [ "default-mobile.handlebars->11->1033", - "default.handlebars->47->3281", - "default3.handlebars->35->3269" + "default.handlebars->47->3304", + "default3.handlebars->35->3292" ] }, { @@ -6179,8 +6183,8 @@ "pl": "Konto zmienione di synchronizacji z danymi LDAP.", "uk": "Акаунт змінено на синхронізацію з даними LDAP.", "xloc": [ - "default.handlebars->47->2691", - "default3.handlebars->35->2688" + "default.handlebars->47->2695", + "default3.handlebars->35->2692" ] }, { @@ -6209,8 +6213,8 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->47->2603", - "default3.handlebars->35->2600" + "default.handlebars->47->2607", + "default3.handlebars->35->2604" ] }, { @@ -6239,8 +6243,8 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->47->2602", - "default3.handlebars->35->2599" + "default.handlebars->47->2606", + "default3.handlebars->35->2603" ] }, { @@ -6269,8 +6273,8 @@ "zh-chs": "已创建帐户,名称为 {0}。", "zh-cht": "已創建帳戶,名稱為 {0}。", "xloc": [ - "default.handlebars->47->2665", - "default3.handlebars->35->2662" + "default.handlebars->47->2669", + "default3.handlebars->35->2666" ] }, { @@ -6299,8 +6303,8 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->47->2601", - "default3.handlebars->35->2598" + "default.handlebars->47->2605", + "default3.handlebars->35->2602" ] }, { @@ -6331,11 +6335,11 @@ "xloc": [ "default-mobile.handlebars->11->69", "default.handlebars->47->221", - "default.handlebars->47->2759", - "default.handlebars->47->2937", + "default.handlebars->47->2763", + "default.handlebars->47->2941", "default3.handlebars->35->220", - "default3.handlebars->35->2756", - "default3.handlebars->35->2931" + "default3.handlebars->35->2760", + "default3.handlebars->35->2935" ] }, { @@ -6365,8 +6369,8 @@ "zh-cht": "達到帳戶限制。", "xloc": [ "default-mobile.handlebars->11->1045", - "default.handlebars->47->3293", - "default3.handlebars->35->3281", + "default.handlebars->47->3316", + "default3.handlebars->35->3304", "login-mobile.handlebars->5->6", "login.handlebars->5->8", "login2.handlebars->7->206" @@ -6429,8 +6433,8 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->47->2538", - "default3.handlebars->35->2535" + "default.handlebars->47->2542", + "default3.handlebars->35->2539" ] }, { @@ -6459,8 +6463,8 @@ "zh-chs": "来自 {0}、{1}、{2} 的帐户登录", "zh-cht": "從 {0}、{1}、{2} 登錄帳戶", "xloc": [ - "default.handlebars->47->2644", - "default3.handlebars->35->2641" + "default.handlebars->47->2648", + "default3.handlebars->35->2645" ] }, { @@ -6474,8 +6478,8 @@ "pl": "Zapisy logowania tokenami użytkownika", "uk": "Записи токенів входу до акаунту", "xloc": [ - "default.handlebars->47->3260", - "default3.handlebars->35->3248" + "default.handlebars->47->3273", + "default3.handlebars->35->3261" ] }, { @@ -6504,8 +6508,8 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->47->2539", - "default3.handlebars->35->2536" + "default.handlebars->47->2543", + "default3.handlebars->35->2540" ] }, { @@ -6565,8 +6569,8 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->47->2611", - "default3.handlebars->35->2608" + "default.handlebars->47->2615", + "default3.handlebars->35->2612" ] }, { @@ -6595,8 +6599,8 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->47->2600", - "default3.handlebars->35->2597" + "default.handlebars->47->2604", + "default3.handlebars->35->2601" ] }, { @@ -6656,9 +6660,9 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->939", - "default.handlebars->47->1785", + "default.handlebars->47->1789", "default.handlebars->container->column_l->p42->p42tbl->1->0->8", - "default3.handlebars->35->1768", + "default3.handlebars->35->1772", "default3.handlebars->container->column_l->p42->p42tbl->1->0->17" ] }, @@ -6688,10 +6692,10 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->47->1358", - "default.handlebars->47->1360", - "default3.handlebars->35->1346", - "default3.handlebars->35->1348" + "default.handlebars->47->1362", + "default.handlebars->47->1364", + "default3.handlebars->35->1350", + "default3.handlebars->35->1352" ] }, { @@ -6724,11 +6728,11 @@ "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->47->1020", + "default.handlebars->47->1024", "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", - "default3.handlebars->35->1017", + "default3.handlebars->35->1021", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3", "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3" @@ -6848,8 +6852,8 @@ "zh-chs": "如果ACM失败,则激活到CCM", "zh-cht": "如果ACM失敗,則激活到CCM", "xloc": [ - "default.handlebars->47->2300", - "default3.handlebars->35->2294" + "default.handlebars->47->2304", + "default3.handlebars->35->2298" ] }, { @@ -6881,12 +6885,12 @@ "default-mobile.handlebars->11->513", "default-mobile.handlebars->11->515", "default-mobile.handlebars->11->826", - "default.handlebars->47->1671", - "default.handlebars->47->920", - "default.handlebars->47->922", - "default3.handlebars->35->1654", - "default3.handlebars->35->917", - "default3.handlebars->35->919" + "default.handlebars->47->1675", + "default.handlebars->47->924", + "default.handlebars->47->926", + "default3.handlebars->35->1658", + "default3.handlebars->35->921", + "default3.handlebars->35->923" ] }, { @@ -6945,10 +6949,10 @@ "zh-chs": "主动设备共享", "zh-cht": "主動設備共享", "xloc": [ - "default.handlebars->47->1096", - "default.handlebars->47->2249", - "default3.handlebars->35->1093", - "default3.handlebars->35->2245" + "default.handlebars->47->1100", + "default.handlebars->47->2253", + "default3.handlebars->35->1097", + "default3.handlebars->35->2249" ] }, { @@ -6977,8 +6981,8 @@ "zh-chs": "活动登录令牌", "zh-cht": "活動登錄令牌", "xloc": [ - "default.handlebars->47->2137", - "default3.handlebars->35->2137" + "default.handlebars->47->2141", + "default3.handlebars->35->2141" ] }, { @@ -7008,8 +7012,8 @@ "zh-cht": "活躍用戶", "xloc": [ "default-mobile.handlebars->11->787", - "default.handlebars->47->974", - "default3.handlebars->35->971" + "default.handlebars->47->978", + "default3.handlebars->35->975" ] }, { @@ -7039,8 +7043,8 @@ "zh-cht": "活躍用戶", "xloc": [ "default-mobile.handlebars->11->786", - "default.handlebars->47->973", - "default3.handlebars->35->970" + "default.handlebars->47->977", + "default3.handlebars->35->974" ] }, { @@ -7096,10 +7100,10 @@ "zh-cht": "添加", "xloc": [ "default-mobile.handlebars->11->677", - "default.handlebars->47->1448", - "default.handlebars->47->1454", - "default3.handlebars->35->1435", - "default3.handlebars->35->1441", + "default.handlebars->47->1452", + "default.handlebars->47->1458", + "default3.handlebars->35->1439", + "default3.handlebars->35->1445", "sharing-mobile.handlebars->11->41" ] }, @@ -7181,9 +7185,9 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->47->2239", + "default.handlebars->47->2243", "default.handlebars->47->501", - "default3.handlebars->35->2235", + "default3.handlebars->35->2239", "default3.handlebars->35->498" ] }, @@ -7239,13 +7243,13 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->47->2243", - "default.handlebars->47->2912", - "default.handlebars->47->3107", + "default.handlebars->47->2247", + "default.handlebars->47->2916", + "default.handlebars->47->3111", "default.handlebars->47->505", - "default3.handlebars->35->2239", - "default3.handlebars->35->2906", - "default3.handlebars->35->3095", + "default3.handlebars->35->2243", + "default3.handlebars->35->2910", + "default3.handlebars->35->3099", "default3.handlebars->35->502" ] }, @@ -7275,8 +7279,8 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->47->1182", - "default3.handlebars->35->1177" + "default.handlebars->47->1186", + "default3.handlebars->35->1181" ] }, { @@ -7305,13 +7309,13 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->47->2388", - "default.handlebars->47->2906", - "default.handlebars->47->3095", + "default.handlebars->47->2392", + "default.handlebars->47->2910", + "default.handlebars->47->3099", "default.handlebars->47->401", - "default3.handlebars->35->2385", - "default3.handlebars->35->2900", - "default3.handlebars->35->3083", + "default3.handlebars->35->2389", + "default3.handlebars->35->2904", + "default3.handlebars->35->3087", "default3.handlebars->35->398" ] }, @@ -7341,8 +7345,8 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->47->2385", - "default3.handlebars->35->2382" + "default.handlebars->47->2389", + "default3.handlebars->35->2386" ] }, { @@ -7371,10 +7375,10 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->47->2390", - "default.handlebars->47->2392", - "default3.handlebars->35->2387", - "default3.handlebars->35->2389" + "default.handlebars->47->2394", + "default.handlebars->47->2396", + "default3.handlebars->35->2391", + "default3.handlebars->35->2393" ] }, { @@ -7545,8 +7549,8 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->47->3127", - "default3.handlebars->35->3115" + "default.handlebars->47->3131", + "default3.handlebars->35->3119" ] }, { @@ -7631,14 +7635,14 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->47->1852", - "default.handlebars->47->1853", + "default.handlebars->47->1856", + "default.handlebars->47->1857", "default.handlebars->47->255", "default.handlebars->47->257", "default.handlebars->47->260", "default.handlebars->47->262", - "default3.handlebars->35->1833", - "default3.handlebars->35->1834", + "default3.handlebars->35->1837", + "default3.handlebars->35->1838", "default3.handlebars->35->252", "default3.handlebars->35->254", "default3.handlebars->35->257", @@ -7672,8 +7676,8 @@ "zh-cht": "新增用戶", "xloc": [ "default-mobile.handlebars->11->957", - "default.handlebars->47->1088", - "default3.handlebars->35->1085" + "default.handlebars->47->1092", + "default3.handlebars->35->1089" ] }, { @@ -7702,8 +7706,8 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->47->2395", - "default3.handlebars->35->2392" + "default.handlebars->47->2399", + "default3.handlebars->35->2396" ] }, { @@ -7732,14 +7736,14 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->47->1089", - "default.handlebars->47->2233", - "default.handlebars->47->2387", - "default.handlebars->47->3101", - "default3.handlebars->35->1086", - "default3.handlebars->35->2229", - "default3.handlebars->35->2384", - "default3.handlebars->35->3089" + "default.handlebars->47->1093", + "default.handlebars->47->2237", + "default.handlebars->47->2391", + "default.handlebars->47->3105", + "default3.handlebars->35->1090", + "default3.handlebars->35->2233", + "default3.handlebars->35->2388", + "default3.handlebars->35->3093" ] }, { @@ -7768,8 +7772,8 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->47->2397", - "default3.handlebars->35->2394" + "default.handlebars->47->2401", + "default3.handlebars->35->2398" ] }, { @@ -7853,10 +7857,10 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->47->2232", - "default.handlebars->47->2901", - "default3.handlebars->35->2228", - "default3.handlebars->35->2895" + "default.handlebars->47->2236", + "default.handlebars->47->2905", + "default3.handlebars->35->2232", + "default3.handlebars->35->2899" ] }, { @@ -7885,8 +7889,8 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->47->2384", - "default3.handlebars->35->2381" + "default.handlebars->47->2388", + "default3.handlebars->35->2385" ] }, { @@ -7915,8 +7919,8 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->47->2936", - "default3.handlebars->35->2930" + "default.handlebars->47->2940", + "default3.handlebars->35->2934" ] }, { @@ -8121,9 +8125,9 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->47->2238", + "default.handlebars->47->2242", "default.handlebars->47->500", - "default3.handlebars->35->2234", + "default3.handlebars->35->2238", "default3.handlebars->35->497" ] }, @@ -8153,9 +8157,9 @@ "zh-chs": "添加位于本地网络上的设备。", "zh-cht": "添加位於本地網絡上的設備。", "xloc": [ - "default.handlebars->47->2242", + "default.handlebars->47->2246", "default.handlebars->47->504", - "default3.handlebars->35->2238", + "default3.handlebars->35->2242", "default3.handlebars->35->501" ] }, @@ -8275,8 +8279,8 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->47->2627", - "default3.handlebars->35->2624" + "default.handlebars->47->2631", + "default3.handlebars->35->2628" ] }, { @@ -8305,8 +8309,8 @@ "zh-chs": "已将设备共享{0}从{1}添加到{2}", "zh-cht": "已將設備共享{0}從{1}添加到{2}", "xloc": [ - "default.handlebars->47->2638", - "default3.handlebars->35->2635" + "default.handlebars->47->2642", + "default3.handlebars->35->2639" ] }, { @@ -8335,8 +8339,8 @@ "zh-chs": "添加了每天重复的设备共享 {0}。", "zh-cht": "添加了每天重複的設備共享 {0}。", "xloc": [ - "default.handlebars->47->2675", - "default3.handlebars->35->2672" + "default.handlebars->47->2679", + "default3.handlebars->35->2676" ] }, { @@ -8365,8 +8369,8 @@ "zh-chs": "添加了每周重复的设备共享 {0}。", "zh-cht": "添加了每週重複的設備共享 {0}。", "xloc": [ - "default.handlebars->47->2676", - "default3.handlebars->35->2673" + "default.handlebars->47->2680", + "default3.handlebars->35->2677" ] }, { @@ -8395,8 +8399,8 @@ "zh-chs": "添加了无限时间的设备共享 {0}。", "zh-cht": "添加了無限時間的設備共享 {0}。", "xloc": [ - "default.handlebars->47->2668", - "default3.handlebars->35->2665" + "default.handlebars->47->2672", + "default3.handlebars->35->2669" ] }, { @@ -8425,10 +8429,10 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->47->2594", - "default.handlebars->47->2621", - "default3.handlebars->35->2591", - "default3.handlebars->35->2618" + "default.handlebars->47->2598", + "default.handlebars->47->2625", + "default3.handlebars->35->2595", + "default3.handlebars->35->2622" ] }, { @@ -8457,8 +8461,8 @@ "zh-chs": "添加登录令牌", "zh-cht": "添加了登錄令牌", "xloc": [ - "default.handlebars->47->2652", - "default3.handlebars->35->2649" + "default.handlebars->47->2656", + "default3.handlebars->35->2653" ] }, { @@ -8487,8 +8491,8 @@ "zh-chs": "新增推送通知认证装置", "zh-cht": "增加推送通知認證設備", "xloc": [ - "default.handlebars->47->2650", - "default3.handlebars->35->2647" + "default.handlebars->47->2654", + "default3.handlebars->35->2651" ] }, { @@ -8517,8 +8521,8 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->47->2632", - "default3.handlebars->35->2629" + "default.handlebars->47->2636", + "default3.handlebars->35->2633" ] }, { @@ -8547,8 +8551,8 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->47->2605", - "default3.handlebars->35->2602" + "default.handlebars->47->2609", + "default3.handlebars->35->2606" ] }, { @@ -8577,10 +8581,10 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->47->2608", - "default.handlebars->47->2617", - "default3.handlebars->35->2605", - "default3.handlebars->35->2614" + "default.handlebars->47->2612", + "default.handlebars->47->2621", + "default3.handlebars->35->2609", + "default3.handlebars->35->2618" ] }, { @@ -8669,8 +8673,8 @@ "zh-cht": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->11->828", - "default.handlebars->47->1673", - "default3.handlebars->35->1656" + "default.handlebars->47->1677", + "default3.handlebars->35->1660" ] }, { @@ -8700,8 +8704,8 @@ "zh-cht": "管理員憑證", "xloc": [ "default-mobile.handlebars->11->834", - "default.handlebars->47->1679", - "default3.handlebars->35->1662" + "default.handlebars->47->1683", + "default3.handlebars->35->1666" ] }, { @@ -8730,8 +8734,17 @@ "zh-chs": "管理员PowerShell", "zh-cht": "管理員PowerShell", "xloc": [ + "default.handlebars->47->3151", + "default.handlebars->47->3161", + "default.handlebars->47->3227", + "default.handlebars->47->3280", "default.handlebars->termShellContextMenu->3", + "default3.handlebars->35->3139", + "default3.handlebars->35->3149", + "default3.handlebars->35->3215", + "default3.handlebars->35->3268", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->3->0", + "player.handlebars->3->29", "xterm.handlebars->termShellContextMenu->cxtermps" ] }, @@ -8761,8 +8774,8 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->47->2988", - "default3.handlebars->35->2982" + "default.handlebars->47->2992", + "default3.handlebars->35->2986" ] }, { @@ -8822,8 +8835,8 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->47->2833", - "default3.handlebars->35->2827" + "default.handlebars->47->2837", + "default3.handlebars->35->2831" ] }, { @@ -8852,8 +8865,8 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->47->2751", - "default3.handlebars->35->2748" + "default.handlebars->47->2755", + "default3.handlebars->35->2752" ] }, { @@ -8883,8 +8896,8 @@ "zh-cht": "南非文", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->47->1855", - "default3.handlebars->35->1836", + "default.handlebars->47->1859", + "default3.handlebars->35->1840", "login2.handlebars->7->1" ] }, @@ -8918,16 +8931,16 @@ "default-mobile.handlebars->11->477", "default-mobile.handlebars->11->534", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->47->2468", - "default.handlebars->47->2481", - "default.handlebars->47->3355", + "default.handlebars->47->2472", + "default.handlebars->47->2485", + "default.handlebars->47->3378", "default.handlebars->47->421", "default.handlebars->47->728", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", "default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm", - "default3.handlebars->35->2465", - "default3.handlebars->35->2478", - "default3.handlebars->35->3343", + "default3.handlebars->35->2469", + "default3.handlebars->35->2482", + "default3.handlebars->35->3366", "default3.handlebars->35->418", "default3.handlebars->35->725", "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", @@ -8960,10 +8973,10 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->47->2470", - "default.handlebars->47->2483", - "default3.handlebars->35->2467", - "default3.handlebars->35->2480" + "default.handlebars->47->2474", + "default.handlebars->47->2487", + "default3.handlebars->35->2471", + "default3.handlebars->35->2484" ] }, { @@ -9025,9 +9038,9 @@ "xloc": [ "default-mobile.handlebars->11->1004", "default-mobile.handlebars->11->613", - "default.handlebars->47->2405", + "default.handlebars->47->2409", "default.handlebars->47->818", - "default3.handlebars->35->2402", + "default3.handlebars->35->2406", "default3.handlebars->35->815" ] }, @@ -9057,8 +9070,8 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->47->3323", - "default3.handlebars->35->3311" + "default.handlebars->47->3346", + "default3.handlebars->35->3334" ] }, { @@ -9277,10 +9290,10 @@ "zh-chs": "代理自行共享", "zh-cht": "代理自行共享", "xloc": [ - "default.handlebars->47->1117", - "default.handlebars->47->2270", - "default3.handlebars->35->1114", - "default3.handlebars->35->2266" + "default.handlebars->47->1121", + "default.handlebars->47->2274", + "default3.handlebars->35->1118", + "default3.handlebars->35->2270" ] }, { @@ -9309,8 +9322,8 @@ "zh-chs": "代理会话", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->47->3340", - "default3.handlebars->35->3328" + "default.handlebars->47->3363", + "default3.handlebars->35->3351" ] }, { @@ -9366,8 +9379,8 @@ "zh-cht": "代理標籤", "xloc": [ "default-mobile.handlebars->11->531", - "default.handlebars->47->943", - "default3.handlebars->35->940" + "default.handlebars->47->947", + "default3.handlebars->35->944" ] }, { @@ -9428,9 +9441,9 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->47->2479", + "default.handlebars->47->2483", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1", - "default3.handlebars->35->2476", + "default3.handlebars->35->2480", "default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -9492,8 +9505,8 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->47->2591", - "default3.handlebars->35->2588" + "default.handlebars->47->2595", + "default3.handlebars->35->2592" ] }, { @@ -9522,11 +9535,11 @@ "zh-chs": "代理已连接", "zh-cht": "代理已連接", "xloc": [ - "default.handlebars->47->1075", - "default.handlebars->47->1076", + "default.handlebars->47->1079", + "default.handlebars->47->1080", "default.handlebars->47->271", - "default3.handlebars->35->1072", - "default3.handlebars->35->1073", + "default3.handlebars->35->1076", + "default3.handlebars->35->1077", "default3.handlebars->35->268" ] }, @@ -9725,8 +9738,8 @@ "zh-cht": "代理離線", "xloc": [ "default-mobile.handlebars->11->922", - "default.handlebars->47->1768", - "default3.handlebars->35->1751" + "default.handlebars->47->1772", + "default3.handlebars->35->1755" ] }, { @@ -9756,8 +9769,8 @@ "zh-cht": "代理在線", "xloc": [ "default-mobile.handlebars->11->921", - "default.handlebars->47->1767", - "default3.handlebars->35->1750" + "default.handlebars->47->1771", + "default3.handlebars->35->1754" ] }, { @@ -9864,8 +9877,8 @@ "zh-chs": "代理在特权降低的远程设备上运行。", "zh-cht": "代理在特權降低的遠程設備上運行。", "xloc": [ - "default.handlebars->47->1069", - "default3.handlebars->35->1066" + "default.handlebars->47->1073", + "default3.handlebars->35->1070" ] }, { @@ -9998,11 +10011,11 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->47->2436", - "default.handlebars->47->3368", + "default.handlebars->47->2440", + "default.handlebars->47->3391", "default.handlebars->47->588", - "default3.handlebars->35->2433", - "default3.handlebars->35->3356", + "default3.handlebars->35->2437", + "default3.handlebars->35->3379", "default3.handlebars->35->585" ] }, @@ -10033,8 +10046,8 @@ "zh-cht": "阿爾巴尼亞文", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->47->1856", - "default3.handlebars->35->1837", + "default.handlebars->47->1860", + "default3.handlebars->35->1841", "login2.handlebars->7->2" ] }, @@ -10045,9 +10058,9 @@ "pl": "Okno Powiadomienia", "uk": "Вікно Попередження", "xloc": [ - "default.handlebars->47->1201", + "default.handlebars->47->1205", "default.handlebars->47->781", - "default3.handlebars->35->1196", + "default3.handlebars->35->1200", "default3.handlebars->35->778" ] }, @@ -10080,9 +10093,9 @@ "default-mobile.handlebars->11->369", "default-mobile.handlebars->11->715", "default-mobile.handlebars->11->717", - "default.handlebars->47->3185", + "default.handlebars->47->3195", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1", - "default3.handlebars->35->3173", + "default3.handlebars->35->3183", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1", "sharing-mobile.handlebars->11->80", "sharing-mobile.handlebars->11->82" @@ -10114,8 +10127,8 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->47->2713", - "default3.handlebars->35->2710" + "default.handlebars->47->2717", + "default3.handlebars->35->2714" ] }, { @@ -10144,9 +10157,9 @@ "zh-chs": "所有可用的代理", "zh-cht": "所有可用的代理", "xloc": [ - "default.handlebars->47->2437", + "default.handlebars->47->2441", "default.handlebars->47->589", - "default3.handlebars->35->2434", + "default3.handlebars->35->2438", "default3.handlebars->35->586" ] }, @@ -10176,8 +10189,8 @@ "zh-chs": "所有显示", "zh-cht": "所有顯示", "xloc": [ - "default.handlebars->47->1499", - "default3.handlebars->35->1484" + "default.handlebars->47->1503", + "default3.handlebars->35->1488" ] }, { @@ -10206,8 +10219,8 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->47->2711", - "default3.handlebars->35->2708" + "default.handlebars->47->2715", + "default3.handlebars->35->2712" ] }, { @@ -10236,12 +10249,12 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->47->1417", - "default.handlebars->47->1419", - "default.handlebars->47->1420", - "default3.handlebars->35->1404", - "default3.handlebars->35->1406", - "default3.handlebars->35->1407" + "default.handlebars->47->1421", + "default.handlebars->47->1423", + "default.handlebars->47->1424", + "default3.handlebars->35->1408", + "default3.handlebars->35->1410", + "default3.handlebars->35->1411" ] }, { @@ -10282,7 +10295,7 @@ "zh-chs": "所有主题", "zh-cht": "所有主題", "xloc": [ - "default3.handlebars->35->2105" + "default3.handlebars->35->2109" ] }, { @@ -10317,8 +10330,8 @@ { "en": "Allow to override server device name until next connection", "xloc": [ - "default.handlebars->47->2342", - "default3.handlebars->35->2339" + "default.handlebars->47->2346", + "default3.handlebars->35->2343" ] }, { @@ -10347,10 +10360,10 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->47->2349", - "default.handlebars->47->2933", - "default3.handlebars->35->2346", - "default3.handlebars->35->2927" + "default.handlebars->47->2353", + "default.handlebars->47->2937", + "default3.handlebars->35->2350", + "default3.handlebars->35->2931" ] }, { @@ -10379,8 +10392,8 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->47->2350", - "default3.handlebars->35->2347" + "default.handlebars->47->2354", + "default3.handlebars->35->2351" ] }, { @@ -10498,10 +10511,10 @@ "xloc": [ "default-mobile.handlebars->11->670", "default-mobile.handlebars->11->674", - "default.handlebars->47->1441", "default.handlebars->47->1445", - "default3.handlebars->35->1428", + "default.handlebars->47->1449", "default3.handlebars->35->1432", + "default3.handlebars->35->1436", "sharing-mobile.handlebars->11->34", "sharing-mobile.handlebars->11->38" ] @@ -10532,8 +10545,8 @@ "zh-chs": "替代Shell", "zh-cht": "替代Shell", "xloc": [ - "default.handlebars->47->1407", - "default3.handlebars->35->1394" + "default.handlebars->47->1411", + "default3.handlebars->35->1398" ] }, { @@ -10624,8 +10637,8 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->47->1533", - "default3.handlebars->35->1518", + "default.handlebars->47->1537", + "default3.handlebars->35->1522", "sharing.handlebars->11->37" ] }, @@ -10722,14 +10735,14 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->47->2209", - "default.handlebars->47->2892", - "default.handlebars->47->2997", - "default.handlebars->47->983", - "default3.handlebars->35->2205", - "default3.handlebars->35->2886", - "default3.handlebars->35->2991", - "default3.handlebars->35->980" + "default.handlebars->47->2213", + "default.handlebars->47->2896", + "default.handlebars->47->3001", + "default.handlebars->47->987", + "default3.handlebars->35->2209", + "default3.handlebars->35->2890", + "default3.handlebars->35->2995", + "default3.handlebars->35->984" ] }, { @@ -10758,14 +10771,14 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->47->2210", - "default.handlebars->47->2893", - "default.handlebars->47->2998", - "default.handlebars->47->984", - "default3.handlebars->35->2206", - "default3.handlebars->35->2887", - "default3.handlebars->35->2992", - "default3.handlebars->35->981" + "default.handlebars->47->2214", + "default.handlebars->47->2897", + "default.handlebars->47->3002", + "default.handlebars->47->988", + "default3.handlebars->35->2210", + "default3.handlebars->35->2891", + "default3.handlebars->35->2996", + "default3.handlebars->35->985" ] }, { @@ -10872,8 +10885,8 @@ "pl": "Wystąpił nieznany błąd.", "uk": "Сталася невідома помилка.", "xloc": [ - "default.handlebars->47->3136", - "default3.handlebars->35->3124" + "default.handlebars->47->3140", + "default3.handlebars->35->3128" ] }, { @@ -11044,8 +11057,8 @@ "uk": "Версія Android", "xloc": [ "default-mobile.handlebars->11->803", - "default.handlebars->47->1638", - "default3.handlebars->35->1623" + "default.handlebars->47->1642", + "default3.handlebars->35->1627" ] }, { @@ -11105,10 +11118,10 @@ "zh-chs": "杀毒软件未激活", "zh-cht": "殺毒軟件未激活", "xloc": [ - "default.handlebars->47->2472", - "default.handlebars->47->2486", - "default3.handlebars->35->2469", - "default3.handlebars->35->2483" + "default.handlebars->47->2476", + "default.handlebars->47->2490", + "default3.handlebars->35->2473", + "default3.handlebars->35->2487" ] }, { @@ -11138,8 +11151,8 @@ "zh-cht": "防毒軟體", "xloc": [ "default-mobile.handlebars->11->784", - "default.handlebars->47->971", - "default3.handlebars->35->968" + "default.handlebars->47->975", + "default3.handlebars->35->972" ] }, { @@ -11552,8 +11565,8 @@ "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ "default-mobile.handlebars->11->118", - "default.handlebars->47->1858", - "default3.handlebars->35->1839", + "default.handlebars->47->1862", + "default3.handlebars->35->1843", "login2.handlebars->7->4" ] }, @@ -11584,8 +11597,8 @@ "zh-cht": "阿拉伯文(巴林)", "xloc": [ "default-mobile.handlebars->11->119", - "default.handlebars->47->1859", - "default3.handlebars->35->1840", + "default.handlebars->47->1863", + "default3.handlebars->35->1844", "login2.handlebars->7->5" ] }, @@ -11616,8 +11629,8 @@ "zh-cht": "阿拉伯文(埃及)", "xloc": [ "default-mobile.handlebars->11->120", - "default.handlebars->47->1860", - "default3.handlebars->35->1841", + "default.handlebars->47->1864", + "default3.handlebars->35->1845", "login2.handlebars->7->6" ] }, @@ -11648,8 +11661,8 @@ "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ "default-mobile.handlebars->11->121", - "default.handlebars->47->1861", - "default3.handlebars->35->1842", + "default.handlebars->47->1865", + "default3.handlebars->35->1846", "login2.handlebars->7->7" ] }, @@ -11680,8 +11693,8 @@ "zh-cht": "阿拉伯文(約旦)", "xloc": [ "default-mobile.handlebars->11->122", - "default.handlebars->47->1862", - "default3.handlebars->35->1843", + "default.handlebars->47->1866", + "default3.handlebars->35->1847", "login2.handlebars->7->8" ] }, @@ -11712,8 +11725,8 @@ "zh-cht": "阿拉伯文(科威特)", "xloc": [ "default-mobile.handlebars->11->123", - "default.handlebars->47->1863", - "default3.handlebars->35->1844", + "default.handlebars->47->1867", + "default3.handlebars->35->1848", "login2.handlebars->7->9" ] }, @@ -11744,8 +11757,8 @@ "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ "default-mobile.handlebars->11->124", - "default.handlebars->47->1864", - "default3.handlebars->35->1845", + "default.handlebars->47->1868", + "default3.handlebars->35->1849", "login2.handlebars->7->10" ] }, @@ -11776,8 +11789,8 @@ "zh-cht": "阿拉伯文(利比亞)", "xloc": [ "default-mobile.handlebars->11->125", - "default.handlebars->47->1865", - "default3.handlebars->35->1846", + "default.handlebars->47->1869", + "default3.handlebars->35->1850", "login2.handlebars->7->11" ] }, @@ -11808,8 +11821,8 @@ "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ "default-mobile.handlebars->11->126", - "default.handlebars->47->1866", - "default3.handlebars->35->1847", + "default.handlebars->47->1870", + "default3.handlebars->35->1851", "login2.handlebars->7->12" ] }, @@ -11840,8 +11853,8 @@ "zh-cht": "阿拉伯文(阿曼)", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->47->1867", - "default3.handlebars->35->1848", + "default.handlebars->47->1871", + "default3.handlebars->35->1852", "login2.handlebars->7->13" ] }, @@ -11872,8 +11885,8 @@ "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ "default-mobile.handlebars->11->128", - "default.handlebars->47->1868", - "default3.handlebars->35->1849", + "default.handlebars->47->1872", + "default3.handlebars->35->1853", "login2.handlebars->7->14" ] }, @@ -11904,8 +11917,8 @@ "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ "default-mobile.handlebars->11->129", - "default.handlebars->47->1869", - "default3.handlebars->35->1850", + "default.handlebars->47->1873", + "default3.handlebars->35->1854", "login2.handlebars->7->15" ] }, @@ -11936,8 +11949,8 @@ "zh-cht": "阿拉伯文(標準)", "xloc": [ "default-mobile.handlebars->11->117", - "default.handlebars->47->1857", - "default3.handlebars->35->1838", + "default.handlebars->47->1861", + "default3.handlebars->35->1842", "login2.handlebars->7->3" ] }, @@ -11968,8 +11981,8 @@ "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ "default-mobile.handlebars->11->130", - "default.handlebars->47->1870", - "default3.handlebars->35->1851", + "default.handlebars->47->1874", + "default3.handlebars->35->1855", "login2.handlebars->7->16" ] }, @@ -12000,8 +12013,8 @@ "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ "default-mobile.handlebars->11->131", - "default.handlebars->47->1871", - "default3.handlebars->35->1852", + "default.handlebars->47->1875", + "default3.handlebars->35->1856", "login2.handlebars->7->17" ] }, @@ -12032,8 +12045,8 @@ "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ "default-mobile.handlebars->11->132", - "default.handlebars->47->1872", - "default3.handlebars->35->1853", + "default.handlebars->47->1876", + "default3.handlebars->35->1857", "login2.handlebars->7->18" ] }, @@ -12064,8 +12077,8 @@ "zh-cht": "阿拉伯文(也門)", "xloc": [ "default-mobile.handlebars->11->133", - "default.handlebars->47->1873", - "default3.handlebars->35->1854", + "default.handlebars->47->1877", + "default3.handlebars->35->1858", "login2.handlebars->7->19" ] }, @@ -12096,8 +12109,8 @@ "zh-cht": "阿拉貢文", "xloc": [ "default-mobile.handlebars->11->134", - "default.handlebars->47->1874", - "default3.handlebars->35->1855", + "default.handlebars->47->1878", + "default3.handlebars->35->1859", "login2.handlebars->7->20" ] }, @@ -12130,12 +12143,12 @@ "default-mobile.handlebars->11->751", "default-mobile.handlebars->11->753", "default-mobile.handlebars->11->755", - "default.handlebars->47->1615", - "default.handlebars->47->1617", "default.handlebars->47->1619", - "default3.handlebars->35->1600", - "default3.handlebars->35->1602", - "default3.handlebars->35->1604" + "default.handlebars->47->1621", + "default.handlebars->47->1623", + "default3.handlebars->35->1604", + "default3.handlebars->35->1606", + "default3.handlebars->35->1608" ] }, { @@ -12195,8 +12208,8 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ "default-mobile.handlebars->11->964", - "default.handlebars->47->2314", - "default3.handlebars->35->2308" + "default.handlebars->47->2318", + "default3.handlebars->35->2312" ] }, { @@ -12225,8 +12238,8 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->47->1333", - "default3.handlebars->35->1323" + "default.handlebars->47->1337", + "default3.handlebars->35->1327" ] }, { @@ -12239,8 +12252,8 @@ "nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?", "uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на стільниці віддаленого пристрою?", "xloc": [ - "default.handlebars->47->1555", - "default3.handlebars->35->1540" + "default.handlebars->47->1559", + "default3.handlebars->35->1544" ] }, { @@ -12269,8 +12282,8 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->47->1322", - "default3.handlebars->35->1313" + "default.handlebars->47->1326", + "default3.handlebars->35->1317" ] }, { @@ -12299,8 +12312,8 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->47->1321", - "default3.handlebars->35->1312" + "default.handlebars->47->1325", + "default3.handlebars->35->1316" ] }, { @@ -12329,8 +12342,8 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->47->3421", - "default3.handlebars->35->3409" + "default.handlebars->47->3444", + "default3.handlebars->35->3432" ] }, { @@ -12391,8 +12404,8 @@ "zh-cht": "亞美尼亞文", "xloc": [ "default-mobile.handlebars->11->135", - "default.handlebars->47->1875", - "default3.handlebars->35->1856", + "default.handlebars->47->1879", + "default3.handlebars->35->1860", "login2.handlebars->7->21" ] }, @@ -12605,8 +12618,8 @@ "zh-cht": "阿薩姆文", "xloc": [ "default-mobile.handlebars->11->136", - "default.handlebars->47->1876", - "default3.handlebars->35->1857", + "default.handlebars->47->1880", + "default3.handlebars->35->1861", "login2.handlebars->7->22" ] }, @@ -12785,8 +12798,8 @@ "zh-cht": "阿斯圖里亞斯文", "xloc": [ "default-mobile.handlebars->11->137", - "default.handlebars->47->1877", - "default3.handlebars->35->1858", + "default.handlebars->47->1881", + "default3.handlebars->35->1862", "login2.handlebars->7->23" ] }, @@ -12816,8 +12829,8 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->47->2560", - "default3.handlebars->35->2557" + "default.handlebars->47->2564", + "default3.handlebars->35->2561" ] }, { @@ -12875,12 +12888,12 @@ "default-mobile.handlebars->11->686", "default-mobile.handlebars->11->690", "default-mobile.handlebars->11->702", - "default.handlebars->47->1508", "default.handlebars->47->1512", - "default.handlebars->47->1524", - "default3.handlebars->35->1493", + "default.handlebars->47->1516", + "default.handlebars->47->1528", "default3.handlebars->35->1497", - "default3.handlebars->35->1509", + "default3.handlebars->35->1501", + "default3.handlebars->35->1513", "sharing-mobile.handlebars->11->47", "sharing-mobile.handlebars->11->56", "sharing-mobile.handlebars->11->64", @@ -12917,8 +12930,8 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->47->3001", - "default3.handlebars->35->2995" + "default.handlebars->47->3005", + "default3.handlebars->35->2999" ] }, { @@ -12947,12 +12960,12 @@ "zh-chs": "认证设备", "zh-cht": "認證設備", "xloc": [ - "default.handlebars->47->1838", - "default.handlebars->47->1840", + "default.handlebars->47->1842", "default.handlebars->47->1844", - "default3.handlebars->35->1820", - "default3.handlebars->35->1822", - "default3.handlebars->35->1825" + "default.handlebars->47->1848", + "default3.handlebars->35->1824", + "default3.handlebars->35->1826", + "default3.handlebars->35->1829" ] }, { @@ -12983,10 +12996,10 @@ "xloc": [ "default-mobile.handlebars->11->703", "default-mobile.handlebars->11->709", - "default.handlebars->47->1526", - "default.handlebars->47->1541", - "default3.handlebars->35->1511", - "default3.handlebars->35->1526", + "default.handlebars->47->1530", + "default.handlebars->47->1545", + "default3.handlebars->35->1515", + "default3.handlebars->35->1530", "sharing-mobile.handlebars->11->57", "sharing-mobile.handlebars->11->74" ] @@ -13021,12 +13034,12 @@ "default-mobile.handlebars->11->322", "default-mobile.handlebars->11->75", "default-mobile.handlebars->11->80", - "default.handlebars->47->1834", - "default.handlebars->47->1836", + "default.handlebars->47->1838", + "default.handlebars->47->1840", "default.handlebars->47->229", "default.handlebars->47->234", - "default3.handlebars->35->1816", - "default3.handlebars->35->1818", + "default3.handlebars->35->1820", + "default3.handlebars->35->1822", "default3.handlebars->35->228", "default3.handlebars->35->233" ] @@ -13178,10 +13191,10 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->47->2192", - "default.handlebars->47->2704", - "default3.handlebars->35->2188", - "default3.handlebars->35->2701" + "default.handlebars->47->2196", + "default.handlebars->47->2708", + "default3.handlebars->35->2192", + "default3.handlebars->35->2705" ] }, { @@ -13247,8 +13260,8 @@ "zh-chs": "自动下载代理程序核心转储文件:“{0}”", "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "xloc": [ - "default.handlebars->47->2641", - "default3.handlebars->35->2638" + "default.handlebars->47->2645", + "default3.handlebars->35->2642" ] }, { @@ -13365,8 +13378,8 @@ "zh-chs": "自动移除非活动设备", "zh-cht": "自動移除非活動設備", "xloc": [ - "default.handlebars->47->2344", - "default3.handlebars->35->2341" + "default.handlebars->47->2348", + "default3.handlebars->35->2345" ] }, { @@ -13395,8 +13408,8 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->47->3349", - "default3.handlebars->35->3337" + "default.handlebars->47->3372", + "default3.handlebars->35->3360" ] }, { @@ -13426,8 +13439,8 @@ "zh-cht": "阿塞拜疆文", "xloc": [ "default-mobile.handlebars->11->138", - "default.handlebars->47->1878", - "default3.handlebars->35->1859", + "default.handlebars->47->1882", + "default3.handlebars->35->1863", "login2.handlebars->7->24" ] }, @@ -13463,15 +13476,15 @@ "default.handlebars->47->435", "default.handlebars->47->437", "default.handlebars->47->439", - "default.handlebars->47->949", "default.handlebars->47->953", "default.handlebars->47->957", + "default.handlebars->47->961", "default3.handlebars->35->432", "default3.handlebars->35->434", "default3.handlebars->35->436", - "default3.handlebars->35->946", "default3.handlebars->35->950", - "default3.handlebars->35->954" + "default3.handlebars->35->954", + "default3.handlebars->35->958" ] }, { @@ -13501,8 +13514,8 @@ "zh-cht": "的BIOS", "xloc": [ "default-mobile.handlebars->11->843", - "default.handlebars->47->1688", - "default3.handlebars->35->1671" + "default.handlebars->47->1692", + "default3.handlebars->35->1675" ] }, { @@ -13641,8 +13654,8 @@ "zh-cht": "退格", "xloc": [ "default-mobile.handlebars->11->651", - "default.handlebars->47->1423", - "default3.handlebars->35->1410", + "default.handlebars->47->1427", + "default3.handlebars->35->1414", "sharing-mobile.handlebars->11->17" ] }, @@ -13703,12 +13716,12 @@ "zh-chs": "后台运行与交互式运行", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->47->2443", - "default.handlebars->47->2450", + "default.handlebars->47->2447", + "default.handlebars->47->2454", "default.handlebars->47->575", "default.handlebars->47->596", - "default3.handlebars->35->2440", - "default3.handlebars->35->2447", + "default3.handlebars->35->2444", + "default3.handlebars->35->2451", "default3.handlebars->35->572", "default3.handlebars->35->593" ] @@ -13740,13 +13753,13 @@ "zh-cht": "僅背景", "xloc": [ "agentinvite.handlebars->3->9", - "default.handlebars->47->2444", - "default.handlebars->47->2452", + "default.handlebars->47->2448", + "default.handlebars->47->2456", "default.handlebars->47->576", "default.handlebars->47->597", "default.handlebars->47->614", - "default3.handlebars->35->2441", - "default3.handlebars->35->2449", + "default3.handlebars->35->2445", + "default3.handlebars->35->2453", "default3.handlebars->35->573", "default3.handlebars->35->594", "default3.handlebars->35->611" @@ -13809,10 +13822,10 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->47->3005", - "default.handlebars->47->3235", - "default3.handlebars->35->2999", - "default3.handlebars->35->3223" + "default.handlebars->47->3009", + "default.handlebars->47->3248", + "default3.handlebars->35->3003", + "default3.handlebars->35->3236" ] }, { @@ -13902,8 +13915,8 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->47->3330", - "default3.handlebars->35->3318" + "default.handlebars->47->3353", + "default3.handlebars->35->3341" ] }, { @@ -13932,8 +13945,8 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->47->3329", - "default3.handlebars->35->3317" + "default.handlebars->47->3352", + "default3.handlebars->35->3340" ] }, { @@ -13963,8 +13976,8 @@ "zh-cht": "巴斯克", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->47->1879", - "default3.handlebars->35->1860", + "default.handlebars->47->1883", + "default3.handlebars->35->1864", "login2.handlebars->7->25" ] }, @@ -14068,8 +14081,8 @@ "zh-chs": "将{0}个文件批量上传到文件夹{1}", "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "xloc": [ - "default.handlebars->47->2640", - "default3.handlebars->35->2637" + "default.handlebars->47->2644", + "default3.handlebars->35->2641" ] }, { @@ -14099,8 +14112,8 @@ "zh-cht": "白俄羅斯文", "xloc": [ "default-mobile.handlebars->11->141", - "default.handlebars->47->1881", - "default3.handlebars->35->1862", + "default.handlebars->47->1885", + "default3.handlebars->35->1866", "login2.handlebars->7->27" ] }, @@ -14131,8 +14144,8 @@ "zh-cht": "孟加拉", "xloc": [ "default-mobile.handlebars->11->142", - "default.handlebars->47->1882", - "default3.handlebars->35->1863", + "default.handlebars->47->1886", + "default3.handlebars->35->1867", "login2.handlebars->7->28" ] }, @@ -14201,8 +14214,8 @@ "uk": "BitLocker", "xloc": [ "default-mobile.handlebars->11->899", - "default.handlebars->47->1744", - "default3.handlebars->35->1727" + "default.handlebars->47->1748", + "default3.handlebars->35->1731" ] }, { @@ -14213,8 +14226,8 @@ "uk": "Інформація о BitLocker", "xloc": [ "default-mobile.handlebars->11->920", - "default.handlebars->47->1765", - "default3.handlebars->35->1748" + "default.handlebars->47->1769", + "default3.handlebars->35->1752" ] }, { @@ -14244,8 +14257,8 @@ "zh-cht": "引導加載程序", "xloc": [ "default-mobile.handlebars->11->800", - "default.handlebars->47->1635", - "default3.handlebars->35->1620" + "default.handlebars->47->1639", + "default3.handlebars->35->1624" ] }, { @@ -14275,8 +14288,8 @@ "zh-cht": "波斯尼亞文", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->47->1883", - "default3.handlebars->35->1864", + "default.handlebars->47->1887", + "default3.handlebars->35->1868", "login2.handlebars->7->29" ] }, @@ -14307,8 +14320,8 @@ "zh-cht": "布列塔尼", "xloc": [ "default-mobile.handlebars->11->144", - "default.handlebars->47->1884", - "default3.handlebars->35->1865", + "default.handlebars->47->1888", + "default3.handlebars->35->1869", "login2.handlebars->7->30" ] }, @@ -14338,9 +14351,9 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->47->2899", + "default.handlebars->47->2903", "default.handlebars->container->column_l->p4->3->1->0->3->1", - "default3.handlebars->35->2893", + "default3.handlebars->35->2897", "default3.handlebars->container->column_l->p4->3->1->0->1->3" ] }, @@ -14370,8 +14383,8 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->47->2815", - "default3.handlebars->35->2811" + "default.handlebars->47->2819", + "default3.handlebars->35->2815" ] }, { @@ -14400,8 +14413,8 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->47->2810", - "default3.handlebars->35->2806" + "default.handlebars->47->2814", + "default3.handlebars->35->2810" ] }, { @@ -14430,8 +14443,8 @@ "zh-chs": "浏览器", "zh-cht": "瀏覽器", "xloc": [ - "default.handlebars->47->3209", - "default3.handlebars->35->3197" + "default.handlebars->47->3219", + "default3.handlebars->35->3207" ] }, { @@ -14522,8 +14535,8 @@ "zh-cht": "保加利亞文", "xloc": [ "default-mobile.handlebars->11->140", - "default.handlebars->47->1880", - "default3.handlebars->35->1861", + "default.handlebars->47->1884", + "default3.handlebars->35->1865", "login2.handlebars->7->26" ] }, @@ -14554,8 +14567,8 @@ "zh-cht": "緬甸文", "xloc": [ "default-mobile.handlebars->11->145", - "default.handlebars->47->1885", - "default3.handlebars->35->1866", + "default.handlebars->47->1889", + "default3.handlebars->35->1870", "login2.handlebars->7->31" ] }, @@ -14585,8 +14598,8 @@ "zh-chs": "默认情况下,不活动的设备将在 1 天后移除。", "zh-cht": "默認情況下,非活動設備將在 1 天后移除。", "xloc": [ - "default.handlebars->47->2346", - "default3.handlebars->35->2343" + "default.handlebars->47->2350", + "default3.handlebars->35->2347" ] }, { @@ -14615,8 +14628,8 @@ "zh-chs": "默认情况下,非活动设备将在 {0} 天后移除。", "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。", "xloc": [ - "default.handlebars->47->2347", - "default3.handlebars->35->2344" + "default.handlebars->47->2351", + "default3.handlebars->35->2348" ] }, { @@ -14658,8 +14671,8 @@ "zh-chs": "字节输入", "zh-cht": "字節輸入", "xloc": [ - "default.handlebars->47->3205", - "default3.handlebars->35->3193" + "default.handlebars->47->3215", + "default3.handlebars->35->3203" ] }, { @@ -14688,8 +14701,8 @@ "zh-chs": "字节输出", "zh-cht": "字節輸出", "xloc": [ - "default.handlebars->47->3206", - "default3.handlebars->35->3194" + "default.handlebars->47->3216", + "default3.handlebars->35->3204" ] }, { @@ -14767,9 +14780,9 @@ "xloc": [ "default-mobile.handlebars->11->517", "default.handlebars->47->446", - "default.handlebars->47->925", + "default.handlebars->47->929", "default3.handlebars->35->443", - "default3.handlebars->35->922" + "default3.handlebars->35->926" ] }, { @@ -14798,8 +14811,8 @@ "zh-chs": "CCM模式", "zh-cht": "CCM模式", "xloc": [ - "default.handlebars->47->2297", - "default3.handlebars->35->2291" + "default.handlebars->47->2301", + "default3.handlebars->35->2295" ] }, { @@ -14810,12 +14823,12 @@ "default-mobile.handlebars->11->892", "default-mobile.handlebars->11->904", "default-mobile.handlebars->11->911", - "default.handlebars->47->1737", - "default.handlebars->47->1749", - "default.handlebars->47->1756", - "default3.handlebars->35->1720", - "default3.handlebars->35->1732", - "default3.handlebars->35->1739" + "default.handlebars->47->1741", + "default.handlebars->47->1753", + "default.handlebars->47->1760", + "default3.handlebars->35->1724", + "default3.handlebars->35->1736", + "default3.handlebars->35->1743" ] }, { @@ -14845,10 +14858,10 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->11->478", - "default.handlebars->47->3356", + "default.handlebars->47->3379", "default.handlebars->47->423", "default.handlebars->47->730", - "default3.handlebars->35->3344", + "default3.handlebars->35->3367", "default3.handlebars->35->420", "default3.handlebars->35->727" ] @@ -14879,8 +14892,8 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->47->3405", - "default3.handlebars->35->3393" + "default.handlebars->47->3428", + "default3.handlebars->35->3416" ] }, { @@ -14909,8 +14922,8 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->47->3406", - "default3.handlebars->35->3394" + "default.handlebars->47->3429", + "default3.handlebars->35->3417" ] }, { @@ -14969,8 +14982,8 @@ "zh-chs": "CIRA设置", "zh-cht": "CIRA設置", "xloc": [ - "default.handlebars->47->2305", - "default3.handlebars->35->2298" + "default.handlebars->47->2309", + "default3.handlebars->35->2302" ] }, { @@ -15000,13 +15013,13 @@ "zh-cht": "CPU", "xloc": [ "default-mobile.handlebars->11->849", - "default.handlebars->47->1610", - "default.handlebars->47->1694", - "default.handlebars->47->3381", + "default.handlebars->47->1614", + "default.handlebars->47->1698", + "default.handlebars->47->3404", "default.handlebars->container->column_l->p40->3->1->p40type->5", - "default3.handlebars->35->1595", - "default3.handlebars->35->1677", - "default3.handlebars->35->3369", + "default3.handlebars->35->1599", + "default3.handlebars->35->1681", + "default3.handlebars->35->3392", "default3.handlebars->container->column_l->p40->3->3->p40type->5" ] }, @@ -15036,8 +15049,8 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->47->3345", - "default3.handlebars->35->3333" + "default.handlebars->47->3368", + "default3.handlebars->35->3356" ] }, { @@ -15066,8 +15079,8 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->47->3348", - "default3.handlebars->35->3336" + "default.handlebars->47->3371", + "default3.handlebars->35->3359" ] }, { @@ -15096,8 +15109,8 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->47->3347", - "default3.handlebars->35->3335" + "default.handlebars->47->3370", + "default3.handlebars->35->3358" ] }, { @@ -15126,8 +15139,8 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->47->3346", - "default3.handlebars->35->3334" + "default.handlebars->47->3369", + "default3.handlebars->35->3357" ] }, { @@ -15156,11 +15169,11 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->47->1504", - "default.handlebars->47->1535", + "default.handlebars->47->1508", + "default.handlebars->47->1539", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", - "default3.handlebars->35->1489", - "default3.handlebars->35->1520", + "default3.handlebars->35->1493", + "default3.handlebars->35->1524", "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons", "sharing.handlebars->11->25", "sharing.handlebars->11->39", @@ -15193,8 +15206,8 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->47->2721", - "default3.handlebars->35->2718" + "default.handlebars->47->2725", + "default3.handlebars->35->2722" ] }, { @@ -15223,11 +15236,11 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->47->2725", - "default.handlebars->47->2802", + "default.handlebars->47->2729", + "default.handlebars->47->2806", "default.handlebars->47->803", - "default3.handlebars->35->2722", - "default3.handlebars->35->2798", + "default3.handlebars->35->2726", + "default3.handlebars->35->2802", "default3.handlebars->35->800" ] }, @@ -15237,8 +15250,8 @@ "nl": "Het CSV bestandsformaat is als volgt:", "uk": "Формат файлу CSV нижче:", "xloc": [ - "default.handlebars->47->2788", - "default3.handlebars->35->2784" + "default.handlebars->47->2792", + "default3.handlebars->35->2788" ] }, { @@ -15293,8 +15306,8 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->47->3422", - "default3.handlebars->35->3410" + "default.handlebars->47->3445", + "default3.handlebars->35->3433" ] }, { @@ -15307,10 +15320,10 @@ "pl": "CallMeBot", "uk": "CallMeBot", "xloc": [ - "default.handlebars->47->1803", - "default.handlebars->47->3040", - "default3.handlebars->35->1785", - "default3.handlebars->35->3034" + "default.handlebars->47->1807", + "default.handlebars->47->3044", + "default3.handlebars->35->1789", + "default3.handlebars->35->3038" ] }, { @@ -15372,8 +15385,8 @@ "agent-translations.json", "default-mobile.handlebars->11->331", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2159", - "default.handlebars->47->3411", + "default.handlebars->47->2163", + "default.handlebars->47->3434", "default.handlebars->47->548", "default.handlebars->container->dialog->idx_dlgButtonBar", "default3.handlebars->35->545", @@ -15504,22 +15517,22 @@ "default-mobile.handlebars->11->889", "default-mobile.handlebars->11->901", "default-mobile.handlebars->11->908", - "default.handlebars->47->1712", - "default.handlebars->47->1718", - "default.handlebars->47->1724", - "default.handlebars->47->1729", - "default.handlebars->47->1731", - "default.handlebars->47->1734", - "default.handlebars->47->1746", - "default.handlebars->47->1753", - "default3.handlebars->35->1695", - "default3.handlebars->35->1701", - "default3.handlebars->35->1707", - "default3.handlebars->35->1712", - "default3.handlebars->35->1714", - "default3.handlebars->35->1717", - "default3.handlebars->35->1729", - "default3.handlebars->35->1736" + "default.handlebars->47->1716", + "default.handlebars->47->1722", + "default.handlebars->47->1728", + "default.handlebars->47->1733", + "default.handlebars->47->1735", + "default.handlebars->47->1738", + "default.handlebars->47->1750", + "default.handlebars->47->1757", + "default3.handlebars->35->1699", + "default3.handlebars->35->1705", + "default3.handlebars->35->1711", + "default3.handlebars->35->1716", + "default3.handlebars->35->1718", + "default3.handlebars->35->1721", + "default3.handlebars->35->1733", + "default3.handlebars->35->1740" ] }, { @@ -15551,12 +15564,12 @@ "default-mobile.handlebars->11->865", "default-mobile.handlebars->11->871", "default-mobile.handlebars->11->877", - "default.handlebars->47->1710", - "default.handlebars->47->1716", - "default.handlebars->47->1722", - "default3.handlebars->35->1693", - "default3.handlebars->35->1699", - "default3.handlebars->35->1705" + "default.handlebars->47->1714", + "default.handlebars->47->1720", + "default.handlebars->47->1726", + "default3.handlebars->35->1697", + "default3.handlebars->35->1703", + "default3.handlebars->35->1709" ] }, { @@ -15568,12 +15581,12 @@ "default-mobile.handlebars->11->890", "default-mobile.handlebars->11->902", "default-mobile.handlebars->11->909", - "default.handlebars->47->1735", - "default.handlebars->47->1747", - "default.handlebars->47->1754", - "default3.handlebars->35->1718", - "default3.handlebars->35->1730", - "default3.handlebars->35->1737" + "default.handlebars->47->1739", + "default.handlebars->47->1751", + "default.handlebars->47->1758", + "default3.handlebars->35->1722", + "default3.handlebars->35->1734", + "default3.handlebars->35->1741" ] }, { @@ -15603,8 +15616,8 @@ "zh-cht": "加泰羅尼亞文", "xloc": [ "default-mobile.handlebars->11->146", - "default.handlebars->47->1886", - "default3.handlebars->35->1867", + "default.handlebars->47->1890", + "default3.handlebars->35->1871", "login2.handlebars->7->32" ] }, @@ -15634,8 +15647,8 @@ "zh-chs": "在这里为中心显示地图", "zh-cht": "在這裡為中心顯示地圖", "xloc": [ - "default.handlebars->47->878", - "default3.handlebars->35->875" + "default.handlebars->47->882", + "default3.handlebars->35->879" ] }, { @@ -15701,7 +15714,7 @@ "en": "Cerulean", "nl": "Hemelsblauw", "xloc": [ - "default3.handlebars->35->2081" + "default3.handlebars->35->2085" ] }, { @@ -15731,8 +15744,8 @@ "zh-cht": "查莫羅", "xloc": [ "default-mobile.handlebars->11->147", - "default.handlebars->47->1887", - "default3.handlebars->35->1868", + "default.handlebars->47->1891", + "default3.handlebars->35->1872", "login2.handlebars->7->33" ] }, @@ -15793,8 +15806,8 @@ "zh-chs": "更改{0}的邮箱", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->47->3082", - "default3.handlebars->35->3074" + "default.handlebars->47->3086", + "default3.handlebars->35->3078" ] }, { @@ -15823,12 +15836,12 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->47->1041", - "default.handlebars->47->1330", - "default.handlebars->47->1331", - "default3.handlebars->35->1038", - "default3.handlebars->35->1321", - "default3.handlebars->35->1322" + "default.handlebars->47->1045", + "default.handlebars->47->1334", + "default.handlebars->47->1335", + "default3.handlebars->35->1042", + "default3.handlebars->35->1325", + "default3.handlebars->35->1326" ] }, { @@ -15872,10 +15885,10 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->11->339", - "default.handlebars->47->2103", - "default.handlebars->47->3026", - "default3.handlebars->35->2079", - "default3.handlebars->35->3020" + "default.handlebars->47->2107", + "default.handlebars->47->3030", + "default3.handlebars->35->2083", + "default3.handlebars->35->3024" ] }, { @@ -15904,8 +15917,8 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->47->3091", - "default3.handlebars->35->3079" + "default.handlebars->47->3095", + "default3.handlebars->35->3083" ] }, { @@ -15934,8 +15947,8 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->47->3077", - "default3.handlebars->35->3070" + "default.handlebars->47->3081", + "default3.handlebars->35->3074" ] }, { @@ -16112,8 +16125,8 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->47->3025", - "default3.handlebars->35->3019" + "default.handlebars->47->3029", + "default3.handlebars->35->3023" ] }, { @@ -16172,8 +16185,8 @@ "zh-chs": "更改您的邮件地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->47->2090", - "default3.handlebars->35->2072" + "default.handlebars->47->2094", + "default3.handlebars->35->2076" ] }, { @@ -16202,8 +16215,8 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->47->2096", - "default3.handlebars->35->2076" + "default.handlebars->47->2100", + "default3.handlebars->35->2080" ] }, { @@ -16232,8 +16245,8 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->47->2612", - "default3.handlebars->35->2609" + "default.handlebars->47->2616", + "default3.handlebars->35->2613" ] }, { @@ -16262,8 +16275,8 @@ "zh-chs": "将帐户显示名称更改为 {0}。", "zh-cht": "將帳戶顯示名稱更改為 {0}。", "xloc": [ - "default.handlebars->47->2664", - "default3.handlebars->35->2661" + "default.handlebars->47->2668", + "default3.handlebars->35->2665" ] }, { @@ -16292,10 +16305,10 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->47->2596", - "default.handlebars->47->2677", - "default3.handlebars->35->2593", - "default3.handlebars->35->2674" + "default.handlebars->47->2600", + "default.handlebars->47->2681", + "default3.handlebars->35->2597", + "default3.handlebars->35->2678" ] }, { @@ -16324,8 +16337,8 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->47->2540", - "default3.handlebars->35->2537" + "default.handlebars->47->2544", + "default3.handlebars->35->2541" ] }, { @@ -16354,10 +16367,10 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->47->2598", - "default.handlebars->47->2619", - "default3.handlebars->35->2595", - "default3.handlebars->35->2616" + "default.handlebars->47->2602", + "default.handlebars->47->2623", + "default3.handlebars->35->2599", + "default3.handlebars->35->2620" ] }, { @@ -16413,8 +16426,8 @@ "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ "default-mobile.handlebars->11->314", - "default.handlebars->47->2054", - "default3.handlebars->35->2035" + "default.handlebars->47->2058", + "default3.handlebars->35->2039" ] }, { @@ -16443,18 +16456,18 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->47->1030", - "default.handlebars->47->1149", - "default.handlebars->47->1174", - "default.handlebars->47->2742", - "default.handlebars->47->3021", - "default.handlebars->47->3022", - "default3.handlebars->35->1027", - "default3.handlebars->35->1144", - "default3.handlebars->35->1169", - "default3.handlebars->35->2739", - "default3.handlebars->35->3015", - "default3.handlebars->35->3016" + "default.handlebars->47->1034", + "default.handlebars->47->1153", + "default.handlebars->47->1178", + "default.handlebars->47->2746", + "default.handlebars->47->3025", + "default.handlebars->47->3026", + "default3.handlebars->35->1031", + "default3.handlebars->35->1148", + "default3.handlebars->35->1173", + "default3.handlebars->35->2743", + "default3.handlebars->35->3019", + "default3.handlebars->35->3020" ] }, { @@ -16485,10 +16498,10 @@ "xloc": [ "default-mobile.handlebars->11->1014", "default-mobile.handlebars->11->994", - "default.handlebars->47->2378", - "default.handlebars->47->2416", - "default3.handlebars->35->2375", - "default3.handlebars->35->2413" + "default.handlebars->47->2382", + "default.handlebars->47->2420", + "default3.handlebars->35->2379", + "default3.handlebars->35->2417" ] }, { @@ -16518,8 +16531,8 @@ "zh-cht": "聊天請求,點擊這裡接受。", "xloc": [ "default-mobile.handlebars->11->1046", - "default.handlebars->47->3294", - "default3.handlebars->35->3282" + "default.handlebars->47->3317", + "default3.handlebars->35->3305" ] }, { @@ -16578,8 +16591,8 @@ "zh-cht": "車臣", "xloc": [ "default-mobile.handlebars->11->148", - "default.handlebars->47->1888", - "default3.handlebars->35->1869", + "default.handlebars->47->1892", + "default3.handlebars->35->1873", "login2.handlebars->7->34" ] }, @@ -16744,10 +16757,10 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->47->1854", - "default.handlebars->47->3416", - "default3.handlebars->35->1835", - "default3.handlebars->35->3404" + "default.handlebars->47->1858", + "default.handlebars->47->3439", + "default3.handlebars->35->1839", + "default3.handlebars->35->3427" ] }, { @@ -16777,8 +16790,8 @@ "zh-cht": "中文", "xloc": [ "default-mobile.handlebars->11->149", - "default.handlebars->47->1889", - "default3.handlebars->35->1870", + "default.handlebars->47->1893", + "default3.handlebars->35->1874", "login2.handlebars->7->35" ] }, @@ -16809,8 +16822,8 @@ "zh-cht": "中文(香港)", "xloc": [ "default-mobile.handlebars->11->150", - "default.handlebars->47->1890", - "default3.handlebars->35->1871", + "default.handlebars->47->1894", + "default3.handlebars->35->1875", "login2.handlebars->7->36" ] }, @@ -16841,8 +16854,8 @@ "zh-cht": "中文(中國)", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->47->1891", - "default3.handlebars->35->1872", + "default.handlebars->47->1895", + "default3.handlebars->35->1876", "login2.handlebars->7->37" ] }, @@ -16873,8 +16886,8 @@ "zh-cht": "簡體中文", "xloc": [ "default-mobile.handlebars->11->311", - "default.handlebars->47->2051", - "default3.handlebars->35->2032", + "default.handlebars->47->2055", + "default3.handlebars->35->2036", "login2.handlebars->7->197" ] }, @@ -16905,8 +16918,8 @@ "zh-cht": "中文(新加坡)", "xloc": [ "default-mobile.handlebars->11->152", - "default.handlebars->47->1892", - "default3.handlebars->35->1873", + "default.handlebars->47->1896", + "default3.handlebars->35->1877", "login2.handlebars->7->38" ] }, @@ -16937,8 +16950,8 @@ "zh-cht": "中文(台灣)", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->47->1893", - "default3.handlebars->35->1874", + "default.handlebars->47->1897", + "default3.handlebars->35->1878", "login2.handlebars->7->39" ] }, @@ -16969,8 +16982,8 @@ "zh-cht": "繁體中文", "xloc": [ "default-mobile.handlebars->11->312", - "default.handlebars->47->2052", - "default3.handlebars->35->2033", + "default.handlebars->47->2056", + "default3.handlebars->35->2037", "login2.handlebars->7->198" ] }, @@ -17032,8 +17045,8 @@ "zh-cht": "楚瓦什", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->47->1894", - "default3.handlebars->35->1875", + "default.handlebars->47->1898", + "default3.handlebars->35->1879", "login2.handlebars->7->40" ] }, @@ -17103,18 +17116,18 @@ "default-mobile.handlebars->11->740", "default-mobile.handlebars->11->89", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5", - "default.handlebars->47->1583", - "default.handlebars->47->1585", "default.handlebars->47->1587", "default.handlebars->47->1589", - "default.handlebars->47->2534", + "default.handlebars->47->1591", + "default.handlebars->47->1593", + "default.handlebars->47->2538", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", - "default3.handlebars->35->1568", - "default3.handlebars->35->1570", "default3.handlebars->35->1572", "default3.handlebars->35->1574", - "default3.handlebars->35->2531", + "default3.handlebars->35->1576", + "default3.handlebars->35->1578", + "default3.handlebars->35->2535", "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default3.handlebars->container->column_l->p41->3->3", "messenger.handlebars->xbottom->1->1->0->5", @@ -17155,7 +17168,7 @@ "zh-cht": "清除 RDP 憑據?", "xloc": [ "default-mobile.handlebars->11->636", - "default.handlebars->47->1376" + "default.handlebars->47->1380" ] }, { @@ -17185,7 +17198,7 @@ "zh-cht": "清除 SSH 憑據?", "xloc": [ "default-mobile.handlebars->11->634", - "default.handlebars->47->1374" + "default.handlebars->47->1378" ] }, { @@ -17307,8 +17320,8 @@ "zh-cht": "全部清除", "xloc": [ "default-mobile.handlebars->11->1029", - "default.handlebars->47->3277", - "default3.handlebars->35->3265" + "default.handlebars->47->3300", + "default3.handlebars->35->3288" ] }, { @@ -17369,8 +17382,8 @@ "zh-cht": "清除核心", "xloc": [ "default-mobile.handlebars->11->930", - "default.handlebars->47->1776", - "default3.handlebars->35->1759" + "default.handlebars->47->1780", + "default3.handlebars->35->1763" ] }, { @@ -17431,8 +17444,8 @@ "zh-cht": "清除此通知", "xloc": [ "default-mobile.handlebars->11->1028", - "default.handlebars->47->3276", - "default3.handlebars->35->3264" + "default.handlebars->47->3299", + "default3.handlebars->35->3287" ] }, { @@ -17548,10 +17561,10 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->47->2173", - "default.handlebars->47->2477", - "default3.handlebars->35->2169", - "default3.handlebars->35->2474" + "default.handlebars->47->2177", + "default.handlebars->47->2481", + "default3.handlebars->35->2173", + "default3.handlebars->35->2478" ] }, { @@ -17580,8 +17593,8 @@ "zh-chs": "单击此处编辑服务器端设备名称", "zh-cht": "單擊此處編輯伺服器端裝置名稱", "xloc": [ - "default.handlebars->47->894", - "default3.handlebars->35->891" + "default.handlebars->47->898", + "default3.handlebars->35->895" ] }, { @@ -17610,8 +17623,8 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->47->2872", - "default3.handlebars->35->2866" + "default.handlebars->47->2876", + "default3.handlebars->35->2870" ] }, { @@ -17756,8 +17769,8 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->11->324", - "default.handlebars->47->2087", - "default3.handlebars->35->2069" + "default.handlebars->47->2091", + "default3.handlebars->35->2073" ] }, { @@ -17873,8 +17886,8 @@ "zh-cht": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->11->827", - "default.handlebars->47->1672", - "default3.handlebars->35->1655" + "default.handlebars->47->1676", + "default3.handlebars->35->1659" ] }, { @@ -17903,8 +17916,8 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->47->2150", - "default3.handlebars->35->2150" + "default.handlebars->47->2154", + "default3.handlebars->35->2154" ] }, { @@ -17933,8 +17946,8 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->47->2304", - "default3.handlebars->35->2299" + "default.handlebars->47->2308", + "default3.handlebars->35->2303" ] }, { @@ -17963,8 +17976,8 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->47->2151", - "default3.handlebars->35->2151" + "default.handlebars->47->2155", + "default3.handlebars->35->2155" ] }, { @@ -18026,13 +18039,13 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->87", - "default.handlebars->47->1488", - "default.handlebars->47->1558", + "default.handlebars->47->1492", + "default.handlebars->47->1562", "default.handlebars->47->241", "default.handlebars->47->250", - "default.handlebars->47->3410", - "default3.handlebars->35->1474", - "default3.handlebars->35->1543", + "default.handlebars->47->3433", + "default3.handlebars->35->1478", + "default3.handlebars->35->1547", "sharing.handlebars->11->52" ] }, @@ -18062,8 +18075,8 @@ "zh-chs": "已关闭桌面多路复用会话 \\\"{0}\\\",{1} 秒", "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒", "xloc": [ - "default.handlebars->47->2684", - "default3.handlebars->35->2681" + "default.handlebars->47->2688", + "default3.handlebars->35->2685" ] }, { @@ -18092,8 +18105,8 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->47->2545", - "default3.handlebars->35->2542" + "default.handlebars->47->2549", + "default3.handlebars->35->2546" ] }, { @@ -18306,12 +18319,12 @@ "zh-cht": "指令", "xloc": [ "default-mobile.handlebars->11->1016", - "default.handlebars->47->1151", - "default.handlebars->47->1176", - "default.handlebars->47->2418", - "default3.handlebars->35->1146", - "default3.handlebars->35->1171", - "default3.handlebars->35->2415" + "default.handlebars->47->1155", + "default.handlebars->47->1180", + "default.handlebars->47->2422", + "default3.handlebars->35->1150", + "default3.handlebars->35->1175", + "default3.handlebars->35->2419" ] }, { @@ -18394,10 +18407,10 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->47->2907", - "default.handlebars->47->3096", - "default3.handlebars->35->2901", - "default3.handlebars->35->3084" + "default.handlebars->47->2911", + "default.handlebars->47->3100", + "default3.handlebars->35->2905", + "default3.handlebars->35->3088" ] }, { @@ -18426,10 +18439,10 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->47->2913", - "default.handlebars->47->3108", - "default3.handlebars->35->2907", - "default3.handlebars->35->3096" + "default.handlebars->47->2917", + "default.handlebars->47->3112", + "default3.handlebars->35->2911", + "default3.handlebars->35->3100" ] }, { @@ -18459,8 +18472,8 @@ "zh-cht": "編譯時間", "xloc": [ "default-mobile.handlebars->11->796", - "default.handlebars->47->1631", - "default3.handlebars->35->1616" + "default.handlebars->47->1635", + "default3.handlebars->35->1620" ] }, { @@ -18515,8 +18528,8 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->47->1546", - "default3.handlebars->35->1531", + "default.handlebars->47->1550", + "default3.handlebars->35->1535", "sharing.handlebars->11->47" ] }, @@ -18558,8 +18571,8 @@ "pl": "Zapisy pliku konfiguracyjnego", "uk": "Записи файлу конфігурації", "xloc": [ - "default.handlebars->47->3253", - "default3.handlebars->35->3241" + "default.handlebars->47->3266", + "default3.handlebars->35->3254" ] }, { @@ -18590,21 +18603,21 @@ "xloc": [ "default-mobile.handlebars->11->631", "default-mobile.handlebars->11->965", - "default.handlebars->47->1325", - "default.handlebars->47->1334", - "default.handlebars->47->2315", - "default.handlebars->47->2772", - "default.handlebars->47->2862", - "default.handlebars->47->2929", - "default.handlebars->47->3094", + "default.handlebars->47->1329", + "default.handlebars->47->1338", + "default.handlebars->47->2319", + "default.handlebars->47->2776", + "default.handlebars->47->2866", + "default.handlebars->47->2933", + "default.handlebars->47->3098", "default.handlebars->47->767", - "default3.handlebars->35->1316", - "default3.handlebars->35->1324", - "default3.handlebars->35->2309", - "default3.handlebars->35->2769", - "default3.handlebars->35->2856", - "default3.handlebars->35->2923", - "default3.handlebars->35->3082", + "default3.handlebars->35->1320", + "default3.handlebars->35->1328", + "default3.handlebars->35->2313", + "default3.handlebars->35->2773", + "default3.handlebars->35->2860", + "default3.handlebars->35->2927", + "default3.handlebars->35->3086", "default3.handlebars->35->764" ] }, @@ -18638,7 +18651,7 @@ "en": "Confirm Password", "nl": "Bevestig wachtwoord", "xloc": [ - "default3.handlebars->35->2817" + "default3.handlebars->35->2821" ] }, { @@ -18668,8 +18681,8 @@ "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->11->729", - "default.handlebars->47->1578", - "default3.handlebars->35->1563", + "default.handlebars->47->1582", + "default3.handlebars->35->1567", "sharing-mobile.handlebars->11->93", "sharing.handlebars->11->70" ] @@ -18700,8 +18713,8 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->47->1577", - "default3.handlebars->35->1562", + "default.handlebars->47->1581", + "default3.handlebars->35->1566", "sharing.handlebars->11->69" ] }, @@ -18761,8 +18774,8 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->47->2771", - "default3.handlebars->35->2768" + "default.handlebars->47->2775", + "default3.handlebars->35->2772" ] }, { @@ -18817,8 +18830,8 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->47->2861", - "default3.handlebars->35->2855" + "default.handlebars->47->2865", + "default3.handlebars->35->2859" ] }, { @@ -18847,24 +18860,24 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->47->3093", - "default3.handlebars->35->3081" + "default.handlebars->47->3097", + "default3.handlebars->35->3085" ] }, { "en": "Confirm disabling 2FA Duo login security.", "nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.", "xloc": [ - "default.handlebars->47->1833", - "default3.handlebars->35->1815" + "default.handlebars->47->1837", + "default3.handlebars->35->1819" ] }, { "en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.", "nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.", "xloc": [ - "default.handlebars->47->1831", - "default3.handlebars->35->1813" + "default.handlebars->47->1835", + "default3.handlebars->35->1817" ] }, { @@ -18893,8 +18906,8 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->47->2932", - "default3.handlebars->35->2926" + "default.handlebars->47->2936", + "default3.handlebars->35->2930" ] }, { @@ -18923,8 +18936,8 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->47->3125", - "default3.handlebars->35->3113" + "default.handlebars->47->3129", + "default3.handlebars->35->3117" ] }, { @@ -18954,8 +18967,8 @@ "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ "default-mobile.handlebars->11->731", - "default.handlebars->47->1580", - "default3.handlebars->35->1565", + "default.handlebars->47->1584", + "default3.handlebars->35->1569", "sharing-mobile.handlebars->11->95", "sharing.handlebars->11->72" ] @@ -18986,8 +18999,8 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->47->1579", - "default3.handlebars->35->1564", + "default.handlebars->47->1583", + "default3.handlebars->35->1568", "sharing.handlebars->11->71" ] }, @@ -19047,8 +19060,8 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->47->2526", - "default3.handlebars->35->2523" + "default.handlebars->47->2530", + "default3.handlebars->35->2527" ] }, { @@ -19077,10 +19090,10 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->47->2922", - "default.handlebars->47->3116", - "default3.handlebars->35->2916", - "default3.handlebars->35->3104" + "default.handlebars->47->2926", + "default.handlebars->47->3120", + "default3.handlebars->35->2920", + "default3.handlebars->35->3108" ] }, { @@ -19109,10 +19122,10 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->47->2924", - "default.handlebars->47->3129", - "default3.handlebars->35->2918", - "default3.handlebars->35->3117" + "default.handlebars->47->2928", + "default.handlebars->47->3133", + "default3.handlebars->35->2922", + "default3.handlebars->35->3121" ] }, { @@ -19141,8 +19154,8 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->47->3118", - "default3.handlebars->35->3106" + "default.handlebars->47->3122", + "default3.handlebars->35->3110" ] }, { @@ -19171,8 +19184,8 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->47->3121", - "default3.handlebars->35->3109" + "default.handlebars->47->3125", + "default3.handlebars->35->3113" ] }, { @@ -19201,10 +19214,10 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->47->3119", - "default.handlebars->47->3122", - "default3.handlebars->35->3107", - "default3.handlebars->35->3110" + "default.handlebars->47->3123", + "default.handlebars->47->3126", + "default3.handlebars->35->3111", + "default3.handlebars->35->3114" ] }, { @@ -19234,8 +19247,8 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->11->323", - "default.handlebars->47->1837", - "default3.handlebars->35->1819" + "default.handlebars->47->1841", + "default3.handlebars->35->1823" ] }, { @@ -19290,8 +19303,8 @@ "zh-chs": "确认删除设备共享“{0}”?", "zh-cht": "確認刪除設備共享“{0}”?", "xloc": [ - "default.handlebars->47->3114", - "default3.handlebars->35->3102" + "default.handlebars->47->3118", + "default3.handlebars->35->3106" ] }, { @@ -19372,8 +19385,8 @@ "zh-chs": "确认移除推送认证设备?", "zh-cht": "確認移除推送認證設備?", "xloc": [ - "default.handlebars->47->1839", - "default3.handlebars->35->1821" + "default.handlebars->47->1843", + "default3.handlebars->35->1825" ] }, { @@ -19402,8 +19415,8 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->47->2430", - "default3.handlebars->35->2427" + "default.handlebars->47->2434", + "default3.handlebars->35->2431" ] }, { @@ -19432,8 +19445,8 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->47->2432", - "default3.handlebars->35->2429" + "default.handlebars->47->2436", + "default3.handlebars->35->2433" ] }, { @@ -19492,8 +19505,8 @@ "zh-chs": "确认删除此登录令牌?", "zh-cht": "確認刪除此登錄令牌?", "xloc": [ - "default.handlebars->47->2143", - "default3.handlebars->35->2143" + "default.handlebars->47->2147", + "default3.handlebars->35->2147" ] }, { @@ -19608,8 +19621,8 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->11->379", - "default.handlebars->47->2529", - "default3.handlebars->35->2526" + "default.handlebars->47->2533", + "default3.handlebars->35->2530" ] }, { @@ -19642,13 +19655,13 @@ "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->47->2213", - "default.handlebars->47->987", + "default.handlebars->47->2217", + "default.handlebars->47->991", "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", - "default3.handlebars->35->2209", - "default3.handlebars->35->984", + "default3.handlebars->35->2213", + "default3.handlebars->35->988", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2", "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect", @@ -19749,8 +19762,8 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->47->2308", - "default3.handlebars->35->2302" + "default.handlebars->47->2312", + "default3.handlebars->35->2306" ] }, { @@ -20024,8 +20037,8 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->47->3335", - "default3.handlebars->35->3323" + "default.handlebars->47->3358", + "default3.handlebars->35->3346" ] }, { @@ -20054,8 +20067,8 @@ "zh-chs": "已连接的英特尔®AMT CIRA", "zh-cht": "已連接的Intel® AMT CIRA", "xloc": [ - "default.handlebars->47->3336", - "default3.handlebars->35->3324" + "default.handlebars->47->3359", + "default3.handlebars->35->3347" ] }, { @@ -20084,8 +20097,8 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->47->3341", - "default3.handlebars->35->3329" + "default.handlebars->47->3364", + "default3.handlebars->35->3352" ] }, { @@ -20145,8 +20158,8 @@ "zh-cht": "現在已連接", "xloc": [ "default-mobile.handlebars->11->791", - "default.handlebars->47->1626", - "default3.handlebars->35->1611" + "default.handlebars->47->1630", + "default3.handlebars->35->1615" ] }, { @@ -20288,12 +20301,12 @@ "default-mobile.handlebars->11->2", "default-mobile.handlebars->11->52", "default-mobile.handlebars->11->747", - "default.handlebars->47->1606", + "default.handlebars->47->1610", "default.handlebars->47->407", "default.handlebars->47->410", "default.handlebars->47->491", "default.handlebars->47->9", - "default3.handlebars->35->1591", + "default3.handlebars->35->1595", "default3.handlebars->35->404", "default3.handlebars->35->407", "default3.handlebars->35->488", @@ -20358,8 +20371,8 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->47->3367", - "default3.handlebars->35->3355" + "default.handlebars->47->3390", + "default3.handlebars->35->3378" ] }, { @@ -20389,10 +20402,10 @@ "zh-cht": "連接錯誤", "xloc": [ "default-mobile.handlebars->11->710", - "default.handlebars->47->1525", - "default.handlebars->47->1542", - "default3.handlebars->35->1510", - "default3.handlebars->35->1527", + "default.handlebars->47->1529", + "default.handlebars->47->1546", + "default3.handlebars->35->1514", + "default3.handlebars->35->1531", "login2.handlebars->7->232", "sharing-mobile.handlebars->11->75" ] @@ -20423,8 +20436,8 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->47->3404", - "default3.handlebars->35->3392" + "default.handlebars->47->3427", + "default3.handlebars->35->3415" ] }, { @@ -20513,12 +20526,12 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->11->539", - "default.handlebars->47->1004", - "default.handlebars->47->2484", + "default.handlebars->47->1008", + "default.handlebars->47->2488", "default.handlebars->47->395", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1", - "default3.handlebars->35->1001", - "default3.handlebars->35->2481", + "default3.handlebars->35->1005", + "default3.handlebars->35->2485", "default3.handlebars->35->392", "default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" ] @@ -20549,8 +20562,8 @@ "zh-chs": "同意", "zh-cht": "同意", "xloc": [ - "default.handlebars->47->2703", - "default3.handlebars->35->2700" + "default.handlebars->47->2707", + "default3.handlebars->35->2704" ] }, { @@ -20580,13 +20593,13 @@ "zh-cht": "控制台", "xloc": [ "default-mobile.handlebars->11->579", - "default.handlebars->47->1144", - "default.handlebars->47->1169", + "default.handlebars->47->1148", + "default.handlebars->47->1173", "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", - "default3.handlebars->35->1139", - "default3.handlebars->35->1164", + "default3.handlebars->35->1143", + "default3.handlebars->35->1168", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default3.handlebars->contextMenu->cxconsole" @@ -20618,8 +20631,8 @@ "zh-chs": "控制台 -", "zh-cht": "控制台 -", "xloc": [ - "default.handlebars->47->895", - "default3.handlebars->35->892" + "default.handlebars->47->899", + "default3.handlebars->35->896" ] }, { @@ -20648,10 +20661,10 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->47->1143", - "default.handlebars->47->1168", - "default3.handlebars->35->1138", - "default3.handlebars->35->1163", + "default.handlebars->47->1147", + "default.handlebars->47->1172", + "default3.handlebars->35->1142", + "default3.handlebars->35->1167", "messenger.handlebars->remoteImage->3->2" ] }, @@ -20681,7 +20694,7 @@ "zh-chs": "转换为 WebM", "zh-cht": "轉換為 WebM", "xloc": [ - "player.handlebars->3->57", + "player.handlebars->3->60", "player.handlebars->p11->deskarea0->deskarea1->1" ] }, @@ -20711,8 +20724,8 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->47->3387", - "default3.handlebars->35->3375" + "default.handlebars->47->3410", + "default3.handlebars->35->3398" ] }, { @@ -21042,14 +21055,14 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->47->2495", - "default.handlebars->47->2514", + "default.handlebars->47->2499", + "default.handlebars->47->2518", "default.handlebars->47->325", "default.handlebars->47->347", "default.handlebars->47->349", "default.handlebars->47->599", - "default3.handlebars->35->2492", - "default3.handlebars->35->2511", + "default3.handlebars->35->2496", + "default3.handlebars->35->2515", "default3.handlebars->35->322", "default3.handlebars->35->344", "default3.handlebars->35->346", @@ -21212,8 +21225,8 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->47->2588", - "default3.handlebars->35->2585" + "default.handlebars->47->2592", + "default3.handlebars->35->2589" ] }, { @@ -21422,8 +21435,8 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->47->3386", - "default3.handlebars->35->3374" + "default.handlebars->47->3409", + "default3.handlebars->35->3397" ] }, { @@ -21453,8 +21466,8 @@ "zh-cht": "科西嘉文", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->47->1895", - "default3.handlebars->35->1876", + "default.handlebars->47->1899", + "default3.handlebars->35->1880", "login2.handlebars->7->41" ] }, @@ -21462,7 +21475,7 @@ "en": "Cosmo", "nl": "Cosmo", "xloc": [ - "default3.handlebars->35->2082" + "default3.handlebars->35->2086" ] }, { @@ -21517,8 +21530,8 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->47->2829", - "default3.handlebars->35->2825", + "default.handlebars->47->2833", + "default3.handlebars->35->2829", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1" @@ -21605,9 +21618,9 @@ "zh-chs": "创建登录令牌", "zh-cht": "創建登錄令牌", "xloc": [ - "default.handlebars->47->2080", + "default.handlebars->47->2084", "default.handlebars->47->350", - "default3.handlebars->35->2062", + "default3.handlebars->35->2066", "default3.handlebars->35->347" ] }, @@ -21637,8 +21650,8 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->47->2869", - "default3.handlebars->35->2863" + "default.handlebars->47->2873", + "default3.handlebars->35->2867" ] }, { @@ -21667,8 +21680,8 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->47->1033", - "default3.handlebars->35->1030" + "default.handlebars->47->1037", + "default3.handlebars->35->1034" ] }, { @@ -21697,8 +21710,8 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->47->2110", - "default3.handlebars->35->2110" + "default.handlebars->47->2114", + "default3.handlebars->35->2114" ] }, { @@ -21757,8 +21770,8 @@ "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。", "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。", "xloc": [ - "default.handlebars->47->2060", - "default3.handlebars->35->2041" + "default.handlebars->47->2064", + "default3.handlebars->35->2045" ] }, { @@ -21817,8 +21830,8 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->47->2581", - "default3.handlebars->35->2578" + "default.handlebars->47->2585", + "default3.handlebars->35->2582" ] }, { @@ -21900,8 +21913,8 @@ "nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren", "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV", "xloc": [ - "default.handlebars->47->2786", - "default3.handlebars->35->2782" + "default.handlebars->47->2790", + "default3.handlebars->35->2786" ] }, { @@ -21961,8 +21974,8 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->47->2592", - "default3.handlebars->35->2589" + "default.handlebars->47->2596", + "default3.handlebars->35->2593" ] }, { @@ -21991,8 +22004,8 @@ "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。", "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。", "xloc": [ - "default.handlebars->47->1212", - "default3.handlebars->35->1207" + "default.handlebars->47->1216", + "default3.handlebars->35->1211" ] }, { @@ -22073,8 +22086,8 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->47->2977", - "default3.handlebars->35->2971" + "default.handlebars->47->2981", + "default3.handlebars->35->2975" ] }, { @@ -22103,8 +22116,8 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->47->2191", - "default3.handlebars->35->2187" + "default.handlebars->47->2195", + "default3.handlebars->35->2191" ] }, { @@ -22164,10 +22177,10 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->47->2189", - "default.handlebars->47->2190", - "default3.handlebars->35->2185", - "default3.handlebars->35->2186" + "default.handlebars->47->2193", + "default.handlebars->47->2194", + "default3.handlebars->35->2189", + "default3.handlebars->35->2190" ] }, { @@ -22197,12 +22210,12 @@ "zh-cht": "證書", "xloc": [ "default-mobile.handlebars->11->551", - "default.handlebars->47->1016", - "default.handlebars->47->1400", - "default.handlebars->47->2148", - "default3.handlebars->35->1013", - "default3.handlebars->35->1387", - "default3.handlebars->35->2148" + "default.handlebars->47->1020", + "default.handlebars->47->1404", + "default.handlebars->47->2152", + "default3.handlebars->35->1017", + "default3.handlebars->35->1391", + "default3.handlebars->35->2152" ] }, { @@ -22232,8 +22245,8 @@ "zh-cht": "克里語", "xloc": [ "default-mobile.handlebars->11->156", - "default.handlebars->47->1896", - "default3.handlebars->35->1877", + "default.handlebars->47->1900", + "default3.handlebars->35->1881", "login2.handlebars->7->42" ] }, @@ -22264,8 +22277,8 @@ "zh-cht": "克羅地亞文", "xloc": [ "default-mobile.handlebars->11->157", - "default.handlebars->47->1897", - "default3.handlebars->35->1878", + "default.handlebars->47->1901", + "default3.handlebars->35->1882", "login2.handlebars->7->43" ] }, @@ -22361,11 +22374,11 @@ "xloc": [ "default-mobile.handlebars->11->671", "default-mobile.handlebars->11->675", - "default.handlebars->47->1442", "default.handlebars->47->1446", + "default.handlebars->47->1450", "default.handlebars->47->64", - "default3.handlebars->35->1429", "default3.handlebars->35->1433", + "default3.handlebars->35->1437", "default3.handlebars->35->64", "sharing-mobile.handlebars->11->35", "sharing-mobile.handlebars->11->39", @@ -22576,8 +22589,8 @@ "zh-cht": "當前密碼不正確。", "xloc": [ "default-mobile.handlebars->11->1056", - "default.handlebars->47->3304", - "default3.handlebars->35->3292" + "default.handlebars->47->3327", + "default3.handlebars->35->3315" ] }, { @@ -22682,7 +22695,7 @@ "en": "Cyborg", "nl": "Cyborg", "xloc": [ - "default3.handlebars->35->2083" + "default3.handlebars->35->2087" ] }, { @@ -22712,8 +22725,8 @@ "zh-cht": "捷克文", "xloc": [ "default-mobile.handlebars->11->158", - "default.handlebars->47->1898", - "default3.handlebars->35->1879", + "default.handlebars->47->1902", + "default3.handlebars->35->1883", "login2.handlebars->7->44" ] }, @@ -22726,8 +22739,8 @@ "uk": "DNS Сервери", "xloc": [ "default-mobile.handlebars->11->817", - "default.handlebars->47->1662", - "default3.handlebars->35->1647" + "default.handlebars->47->1666", + "default3.handlebars->35->1651" ] }, { @@ -22817,8 +22830,8 @@ "zh-cht": "丹麥文", "xloc": [ "default-mobile.handlebars->11->159", - "default.handlebars->47->1899", - "default3.handlebars->35->1880", + "default.handlebars->47->1903", + "default3.handlebars->35->1884", "login2.handlebars->7->45" ] }, @@ -22857,7 +22870,7 @@ "en": "Darkly", "nl": "Donker", "xloc": [ - "default3.handlebars->35->2084" + "default3.handlebars->35->2088" ] }, { @@ -22886,8 +22899,8 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->47->1398", - "default3.handlebars->35->1385", + "default.handlebars->47->1402", + "default3.handlebars->35->1389", "sharing.handlebars->11->11" ] }, @@ -22903,8 +22916,8 @@ "pl": "Zapisy Bazy Danych", "uk": "Записи Бази Даних", "xloc": [ - "default.handlebars->47->3176", - "default3.handlebars->35->3164" + "default.handlebars->47->3186", + "default3.handlebars->35->3174" ] }, { @@ -22934,8 +22947,8 @@ "zh-cht": "日期和時間", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->47->2057", - "default3.handlebars->35->2038" + "default.handlebars->47->2061", + "default3.handlebars->35->2042" ] }, { @@ -22965,12 +22978,12 @@ "zh-cht": "天", "xloc": [ "default-mobile.handlebars->11->621", - "default.handlebars->47->1309", - "default.handlebars->47->3180", - "default.handlebars->47->3183", - "default3.handlebars->35->1300", - "default3.handlebars->35->3168", - "default3.handlebars->35->3171" + "default.handlebars->47->1313", + "default.handlebars->47->3190", + "default.handlebars->47->3193", + "default3.handlebars->35->1304", + "default3.handlebars->35->3178", + "default3.handlebars->35->3181" ] }, { @@ -22999,10 +23012,10 @@ "zh-chs": "停用", "zh-cht": "停用", "xloc": [ - "default.handlebars->47->2223", - "default.handlebars->47->2287", - "default3.handlebars->35->2219", - "default3.handlebars->35->2281" + "default.handlebars->47->2227", + "default.handlebars->47->2291", + "default3.handlebars->35->2223", + "default3.handlebars->35->2285" ] }, { @@ -23031,8 +23044,8 @@ "zh-chs": "如果设置停用CCM", "zh-cht": "如果設置停用CCM", "xloc": [ - "default.handlebars->47->2299", - "default3.handlebars->35->2293" + "default.handlebars->47->2303", + "default3.handlebars->35->2297" ] }, { @@ -23118,15 +23131,15 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->47->2816", - "default.handlebars->47->2865", - "default.handlebars->47->2876", - "default.handlebars->47->2950", - "default3.handlebars->35->2080", - "default3.handlebars->35->2812", - "default3.handlebars->35->2859", - "default3.handlebars->35->2870", - "default3.handlebars->35->2944" + "default.handlebars->47->2820", + "default.handlebars->47->2869", + "default.handlebars->47->2880", + "default.handlebars->47->2954", + "default3.handlebars->35->2084", + "default3.handlebars->35->2816", + "default3.handlebars->35->2863", + "default3.handlebars->35->2874", + "default3.handlebars->35->2948" ] }, { @@ -23156,8 +23169,8 @@ "zh-cht": "Del", "xloc": [ "default-mobile.handlebars->11->658", - "default.handlebars->47->1430", - "default3.handlebars->35->1417", + "default.handlebars->47->1434", + "default3.handlebars->35->1421", "sharing-mobile.handlebars->11->23" ] }, @@ -23192,16 +23205,16 @@ "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->47->1568", - "default.handlebars->47->2521", - "default.handlebars->47->865", + "default.handlebars->47->1572", + "default.handlebars->47->2525", + "default.handlebars->47->869", "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", "default.handlebars->filesContextMenu->5", - "default3.handlebars->35->1553", - "default3.handlebars->35->2518", - "default3.handlebars->35->862", + "default3.handlebars->35->1557", + "default3.handlebars->35->2522", + "default3.handlebars->35->866", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgDeleteButton", @@ -23244,8 +23257,8 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->11->333", - "default.handlebars->47->2095", - "default3.handlebars->35->2075" + "default.handlebars->47->2099", + "default3.handlebars->35->2079" ] }, { @@ -23274,7 +23287,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->47->2773" + "default.handlebars->47->2777" ] }, { @@ -23304,8 +23317,8 @@ "zh-cht": "刪除裝置", "xloc": [ "default-mobile.handlebars->11->560", - "default.handlebars->47->1043", - "default3.handlebars->35->1040" + "default.handlebars->47->1047", + "default3.handlebars->35->1044" ] }, { @@ -23366,10 +23379,10 @@ "xloc": [ "default-mobile.handlebars->11->963", "default-mobile.handlebars->11->966", - "default.handlebars->47->2275", - "default.handlebars->47->2316", - "default3.handlebars->35->2271", - "default3.handlebars->35->2310" + "default.handlebars->47->2279", + "default.handlebars->47->2320", + "default3.handlebars->35->2275", + "default3.handlebars->35->2314" ] }, { @@ -23399,8 +23412,8 @@ "zh-cht": "刪除節點", "xloc": [ "default-mobile.handlebars->11->629", - "default.handlebars->47->1335", - "default3.handlebars->35->1325" + "default.handlebars->47->1339", + "default3.handlebars->35->1329" ] }, { @@ -23455,8 +23468,8 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->47->3024", - "default3.handlebars->35->3018" + "default.handlebars->47->3028", + "default3.handlebars->35->3022" ] }, { @@ -23485,10 +23498,10 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->47->2918", - "default.handlebars->47->2930", - "default3.handlebars->35->2912", - "default3.handlebars->35->2924" + "default.handlebars->47->2922", + "default.handlebars->47->2934", + "default3.handlebars->35->2916", + "default3.handlebars->35->2928" ] }, { @@ -23517,8 +23530,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->47->2863", - "default3.handlebars->35->2857" + "default.handlebars->47->2867", + "default3.handlebars->35->2861" ] }, { @@ -23547,8 +23560,8 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->47->3092", - "default3.handlebars->35->3080" + "default.handlebars->47->3096", + "default3.handlebars->35->3084" ] }, { @@ -23578,9 +23591,9 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0", - "default.handlebars->47->2769", + "default.handlebars->47->2773", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7", - "default3.handlebars->35->2766", + "default3.handlebars->35->2770", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -23640,8 +23653,8 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->47->2859", - "default3.handlebars->35->2853" + "default.handlebars->47->2863", + "default3.handlebars->35->2857" ] }, { @@ -23670,8 +23683,8 @@ "zh-chs": "删除项目?", "zh-cht": "刪除項目?", "xloc": [ - "default.handlebars->47->866", - "default3.handlebars->35->863" + "default.handlebars->47->870", + "default3.handlebars->35->867" ] }, { @@ -23700,8 +23713,8 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->47->2583", - "default3.handlebars->35->2580" + "default.handlebars->47->2587", + "default3.handlebars->35->2584" ] }, { @@ -23732,10 +23745,10 @@ "xloc": [ "default-mobile.handlebars->11->376", "default-mobile.handlebars->11->723", - "default.handlebars->47->1570", - "default.handlebars->47->2523", - "default3.handlebars->35->1555", - "default3.handlebars->35->2520", + "default.handlebars->47->1574", + "default.handlebars->47->2527", + "default3.handlebars->35->1559", + "default3.handlebars->35->2524", "sharing-mobile.handlebars->11->87", "sharing.handlebars->11->63" ] @@ -23766,8 +23779,8 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->47->2928", - "default3.handlebars->35->2922" + "default.handlebars->47->2932", + "default3.handlebars->35->2926" ] }, { @@ -23798,10 +23811,10 @@ "xloc": [ "default-mobile.handlebars->11->375", "default-mobile.handlebars->11->722", - "default.handlebars->47->1569", - "default.handlebars->47->2522", - "default3.handlebars->35->1554", - "default3.handlebars->35->2519", + "default.handlebars->47->1573", + "default.handlebars->47->2526", + "default3.handlebars->35->1558", + "default3.handlebars->35->2523", "sharing-mobile.handlebars->11->86", "sharing.handlebars->11->62" ] @@ -23861,8 +23874,8 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->47->2582", - "default3.handlebars->35->2579" + "default.handlebars->47->2586", + "default3.handlebars->35->2583" ] }, { @@ -23891,8 +23904,8 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->47->2584", - "default3.handlebars->35->2581" + "default.handlebars->47->2588", + "default3.handlebars->35->2585" ] }, { @@ -23922,8 +23935,8 @@ "zh-cht": "被拒絕", "xloc": [ "default-mobile.handlebars->11->644", - "default.handlebars->47->1385", - "default3.handlebars->35->1372", + "default.handlebars->47->1389", + "default3.handlebars->35->1376", "sharing-mobile.handlebars->11->10", "sharing.handlebars->11->29", "sharing.handlebars->11->7" @@ -23941,8 +23954,8 @@ "pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}", "uk": "Відмовлено у вході користувачу з {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2692", - "default3.handlebars->35->2689" + "default.handlebars->47->2696", + "default3.handlebars->35->2693" ] }, { @@ -24116,38 +24129,38 @@ "default-mobile.handlebars->11->805", "default-mobile.handlebars->11->949", "default-mobile.handlebars->11->972", - "default.handlebars->47->1379", - "default.handlebars->47->1613", - "default.handlebars->47->1640", - "default.handlebars->47->1650", + "default.handlebars->47->1383", + "default.handlebars->47->1617", + "default.handlebars->47->1644", + "default.handlebars->47->1654", "default.handlebars->47->168", - "default.handlebars->47->2120", - "default.handlebars->47->2182", - "default.handlebars->47->2322", - "default.handlebars->47->2701", - "default.handlebars->47->2868", - "default.handlebars->47->2879", - "default.handlebars->47->2880", - "default.handlebars->47->2926", - "default.handlebars->47->906", - "default.handlebars->47->907", + "default.handlebars->47->2124", + "default.handlebars->47->2186", + "default.handlebars->47->2326", + "default.handlebars->47->2705", + "default.handlebars->47->2872", + "default.handlebars->47->2883", + "default.handlebars->47->2884", + "default.handlebars->47->2930", + "default.handlebars->47->910", + "default.handlebars->47->911", "default.handlebars->container->column_l->p42->p42tbl->1->0->3", - "default3.handlebars->35->1365", - "default3.handlebars->35->1598", - "default3.handlebars->35->1625", - "default3.handlebars->35->1635", + "default3.handlebars->35->1369", + "default3.handlebars->35->1602", + "default3.handlebars->35->1629", + "default3.handlebars->35->1639", "default3.handlebars->35->168", - "default3.handlebars->35->2120", - "default3.handlebars->35->2178", - "default3.handlebars->35->2318", - "default3.handlebars->35->2319", - "default3.handlebars->35->2698", - "default3.handlebars->35->2862", - "default3.handlebars->35->2873", - "default3.handlebars->35->2874", - "default3.handlebars->35->2920", - "default3.handlebars->35->903", - "default3.handlebars->35->904", + "default3.handlebars->35->2124", + "default3.handlebars->35->2182", + "default3.handlebars->35->2322", + "default3.handlebars->35->2323", + "default3.handlebars->35->2702", + "default3.handlebars->35->2866", + "default3.handlebars->35->2877", + "default3.handlebars->35->2878", + "default3.handlebars->35->2924", + "default3.handlebars->35->907", + "default3.handlebars->35->908", "default3.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -24204,28 +24217,28 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->11->575", - "default.handlebars->47->1100", - "default.handlebars->47->1214", - "default.handlebars->47->1498", - "default.handlebars->47->2253", - "default.handlebars->47->2328", - "default.handlebars->47->3152", - "default.handlebars->47->3215", - "default.handlebars->47->3265", - "default.handlebars->47->3361", - "default.handlebars->47->871", + "default.handlebars->47->1104", + "default.handlebars->47->1218", + "default.handlebars->47->1502", + "default.handlebars->47->2257", + "default.handlebars->47->2332", + "default.handlebars->47->3159", + "default.handlebars->47->3225", + "default.handlebars->47->3278", + "default.handlebars->47->3384", + "default.handlebars->47->875", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", - "default3.handlebars->35->1097", - "default3.handlebars->35->1209", - "default3.handlebars->35->1483", - "default3.handlebars->35->2249", - "default3.handlebars->35->2325", - "default3.handlebars->35->3140", - "default3.handlebars->35->3203", - "default3.handlebars->35->3253", - "default3.handlebars->35->3349", - "default3.handlebars->35->868", + "default3.handlebars->35->1101", + "default3.handlebars->35->1213", + "default3.handlebars->35->1487", + "default3.handlebars->35->2253", + "default3.handlebars->35->2329", + "default3.handlebars->35->3147", + "default3.handlebars->35->3213", + "default3.handlebars->35->3266", + "default3.handlebars->35->3372", + "default3.handlebars->35->872", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default3.handlebars->contextMenu->cxdesktop", "sharing-mobile.handlebars->11->6", @@ -24259,12 +24272,12 @@ "zh-chs": "桌面 + 文件", "zh-cht": "桌面 + 文件", "xloc": [ - "default.handlebars->47->1104", - "default.handlebars->47->1217", - "default.handlebars->47->2257", - "default3.handlebars->35->1101", - "default3.handlebars->35->1212", - "default3.handlebars->35->2253" + "default.handlebars->47->1108", + "default.handlebars->47->1221", + "default.handlebars->47->2261", + "default3.handlebars->35->1105", + "default3.handlebars->35->1216", + "default3.handlebars->35->2257" ] }, { @@ -24293,10 +24306,10 @@ "zh-chs": "桌面 + 终端", "zh-cht": "桌面+終端", "xloc": [ - "default.handlebars->47->1101", - "default.handlebars->47->2254", - "default3.handlebars->35->1098", - "default3.handlebars->35->2250" + "default.handlebars->47->1105", + "default.handlebars->47->2258", + "default3.handlebars->35->1102", + "default3.handlebars->35->2254" ] }, { @@ -24325,12 +24338,12 @@ "zh-chs": "桌面 + 终端 + 文件", "zh-cht": "桌面+終端+文件", "xloc": [ - "default.handlebars->47->1105", - "default.handlebars->47->1219", - "default.handlebars->47->2258", - "default3.handlebars->35->1102", - "default3.handlebars->35->1214", - "default3.handlebars->35->2254" + "default.handlebars->47->1109", + "default.handlebars->47->1223", + "default.handlebars->47->2262", + "default3.handlebars->35->1106", + "default3.handlebars->35->1218", + "default3.handlebars->35->2258" ] }, { @@ -24389,8 +24402,8 @@ "zh-chs": "桌面复用", "zh-cht": "桌面多路復用", "xloc": [ - "default.handlebars->47->3366", - "default3.handlebars->35->3354" + "default.handlebars->47->3389", + "default3.handlebars->35->3377" ] }, { @@ -24419,14 +24432,14 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->47->2204", - "default.handlebars->47->2887", - "default.handlebars->47->2992", - "default.handlebars->47->978", - "default3.handlebars->35->2200", - "default3.handlebars->35->2881", - "default3.handlebars->35->2986", - "default3.handlebars->35->975" + "default.handlebars->47->2208", + "default.handlebars->47->2891", + "default.handlebars->47->2996", + "default.handlebars->47->982", + "default3.handlebars->35->2204", + "default3.handlebars->35->2885", + "default3.handlebars->35->2990", + "default3.handlebars->35->979" ] }, { @@ -24455,14 +24468,14 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->47->2203", - "default.handlebars->47->2886", - "default.handlebars->47->2991", - "default.handlebars->47->977", - "default3.handlebars->35->2199", - "default3.handlebars->35->2880", - "default3.handlebars->35->2985", - "default3.handlebars->35->974" + "default.handlebars->47->2207", + "default.handlebars->47->2890", + "default.handlebars->47->2995", + "default.handlebars->47->981", + "default3.handlebars->35->2203", + "default3.handlebars->35->2884", + "default3.handlebars->35->2989", + "default3.handlebars->35->978" ] }, { @@ -24491,14 +24504,14 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->47->2201", - "default.handlebars->47->2884", - "default.handlebars->47->2989", - "default.handlebars->47->975", - "default3.handlebars->35->2197", - "default3.handlebars->35->2878", - "default3.handlebars->35->2983", - "default3.handlebars->35->972" + "default.handlebars->47->2205", + "default.handlebars->47->2888", + "default.handlebars->47->2993", + "default.handlebars->47->979", + "default3.handlebars->35->2201", + "default3.handlebars->35->2882", + "default3.handlebars->35->2987", + "default3.handlebars->35->976" ] }, { @@ -24527,8 +24540,8 @@ "zh-chs": "桌面会话", "zh-cht": "桌面會話", "xloc": [ - "default.handlebars->47->3145", - "default3.handlebars->35->3133" + "default.handlebars->47->3149", + "default3.handlebars->35->3137" ] }, { @@ -24644,14 +24657,14 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->47->2202", - "default.handlebars->47->2885", - "default.handlebars->47->2990", - "default.handlebars->47->976", - "default3.handlebars->35->2198", - "default3.handlebars->35->2879", - "default3.handlebars->35->2984", - "default3.handlebars->35->973" + "default.handlebars->47->2206", + "default.handlebars->47->2889", + "default.handlebars->47->2994", + "default.handlebars->47->980", + "default3.handlebars->35->2202", + "default3.handlebars->35->2883", + "default3.handlebars->35->2988", + "default3.handlebars->35->977" ] }, { @@ -24680,8 +24693,8 @@ "zh-chs": "仅桌面视图", "zh-cht": "僅桌面視圖", "xloc": [ - "default.handlebars->47->2965", - "default3.handlebars->35->2959" + "default.handlebars->47->2969", + "default3.handlebars->35->2963" ] }, { @@ -24710,8 +24723,8 @@ "zh-chs": "桌面,仅查看", "zh-cht": "桌面,僅查看", "xloc": [ - "default.handlebars->47->1222", - "default3.handlebars->35->1217" + "default.handlebars->47->1226", + "default3.handlebars->35->1221" ] }, { @@ -24740,8 +24753,8 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->47->1497", - "default3.handlebars->35->1482" + "default.handlebars->47->1501", + "default3.handlebars->35->1486" ] }, { @@ -24835,14 +24848,14 @@ "zh-cht": "細節", "xloc": [ "default-mobile.handlebars->11->578", - "default.handlebars->47->1154", - "default.handlebars->47->1179", - "default.handlebars->47->2421", + "default.handlebars->47->1158", + "default.handlebars->47->1183", + "default.handlebars->47->2425", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails", - "default3.handlebars->35->1149", - "default3.handlebars->35->1174", - "default3.handlebars->35->2418", + "default3.handlebars->35->1153", + "default3.handlebars->35->1178", + "default3.handlebars->35->2422", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default3.handlebars->contextMenu->cxdetails" ] @@ -24904,21 +24917,21 @@ "zh-cht": "裝置", "xloc": [ "default-mobile.handlebars->11->799", - "default.handlebars->47->1634", - "default.handlebars->47->1843", - "default.handlebars->47->2358", + "default.handlebars->47->1638", + "default.handlebars->47->1847", + "default.handlebars->47->2362", "default.handlebars->47->295", - "default.handlebars->47->3111", - "default.handlebars->47->3179", - "default.handlebars->47->3199", + "default.handlebars->47->3115", + "default.handlebars->47->3189", + "default.handlebars->47->3209", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5", - "default3.handlebars->35->1619", - "default3.handlebars->35->1824", - "default3.handlebars->35->2355", + "default3.handlebars->35->1623", + "default3.handlebars->35->1828", + "default3.handlebars->35->2359", "default3.handlebars->35->292", - "default3.handlebars->35->3099", - "default3.handlebars->35->3167", - "default3.handlebars->35->3187", + "default3.handlebars->35->3103", + "default3.handlebars->35->3177", + "default3.handlebars->35->3197", "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5" ] }, @@ -24980,8 +24993,8 @@ "xloc": [ "default-mobile.handlebars->11->596", "default-mobile.handlebars->11->607", - "default.handlebars->47->1284", - "default3.handlebars->35->1279" + "default.handlebars->47->1288", + "default3.handlebars->35->1283" ] }, { @@ -25070,8 +25083,8 @@ "zh-chs": "设备详情", "zh-cht": "設備詳情", "xloc": [ - "default.handlebars->47->2382", - "default3.handlebars->35->2379" + "default.handlebars->47->2386", + "default3.handlebars->35->2383" ] }, { @@ -25132,28 +25145,28 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->1034", - "default.handlebars->47->2353", - "default.handlebars->47->2356", "default.handlebars->47->2357", - "default.handlebars->47->2718", - "default.handlebars->47->2910", - "default.handlebars->47->2916", - "default.handlebars->47->3099", - "default.handlebars->47->3162", - "default.handlebars->47->3186", - "default.handlebars->47->3202", - "default.handlebars->47->3282", - "default3.handlebars->35->2350", - "default3.handlebars->35->2353", + "default.handlebars->47->2360", + "default.handlebars->47->2361", + "default.handlebars->47->2722", + "default.handlebars->47->2914", + "default.handlebars->47->2920", + "default.handlebars->47->3103", + "default.handlebars->47->3172", + "default.handlebars->47->3196", + "default.handlebars->47->3212", + "default.handlebars->47->3305", "default3.handlebars->35->2354", - "default3.handlebars->35->2715", - "default3.handlebars->35->2904", - "default3.handlebars->35->2910", - "default3.handlebars->35->3087", - "default3.handlebars->35->3150", - "default3.handlebars->35->3174", - "default3.handlebars->35->3190", - "default3.handlebars->35->3270" + "default3.handlebars->35->2357", + "default3.handlebars->35->2358", + "default3.handlebars->35->2719", + "default3.handlebars->35->2908", + "default3.handlebars->35->2914", + "default3.handlebars->35->3091", + "default3.handlebars->35->3160", + "default3.handlebars->35->3184", + "default3.handlebars->35->3200", + "default3.handlebars->35->3293" ] }, { @@ -25183,8 +25196,8 @@ "zh-cht": "裝置群用戶", "xloc": [ "default-mobile.handlebars->11->1023", - "default.handlebars->47->2428", - "default3.handlebars->35->2425" + "default.handlebars->47->2432", + "default3.handlebars->35->2429" ] }, { @@ -25214,17 +25227,17 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->47->2734", - "default.handlebars->47->2853", - "default.handlebars->47->2897", - "default.handlebars->47->2986", - "default.handlebars->47->3339", + "default.handlebars->47->2738", + "default.handlebars->47->2857", + "default.handlebars->47->2901", + "default.handlebars->47->2990", + "default.handlebars->47->3362", "default.handlebars->container->column_l->p2->p2info->9", - "default3.handlebars->35->2731", - "default3.handlebars->35->2847", - "default3.handlebars->35->2891", - "default3.handlebars->35->2980", - "default3.handlebars->35->3327", + "default3.handlebars->35->2735", + "default3.handlebars->35->2851", + "default3.handlebars->35->2895", + "default3.handlebars->35->2984", + "default3.handlebars->35->3350", "default3.handlebars->container->column_l->p2->p2info->9" ] }, @@ -25284,8 +25297,8 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->47->1336", - "default3.handlebars->35->1326" + "default.handlebars->47->1340", + "default3.handlebars->35->1330" ] }, { @@ -25314,8 +25327,8 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->47->1194", - "default3.handlebars->35->1189" + "default.handlebars->47->1198", + "default3.handlebars->35->1193" ] }, { @@ -25345,12 +25358,12 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->11->637", - "default.handlebars->47->1377", - "default.handlebars->47->3161", + "default.handlebars->47->1381", + "default.handlebars->47->3171", "default.handlebars->47->507", "default.handlebars->47->516", - "default3.handlebars->35->1363", - "default3.handlebars->35->3149", + "default3.handlebars->35->1367", + "default3.handlebars->35->3159", "default3.handlebars->35->504", "default3.handlebars->35->513", "player.handlebars->3->25" @@ -25382,9 +25395,9 @@ "zh-chs": "设备通知", "zh-cht": "裝置通知", "xloc": [ - "default.handlebars->47->1208", + "default.handlebars->47->1212", "default.handlebars->47->788", - "default3.handlebars->35->1203", + "default3.handlebars->35->1207", "default3.handlebars->35->785" ] }, @@ -25423,8 +25436,8 @@ "nl": "Apparaat is ingeschakeld", "uk": "Пристрій Увімкнено", "xloc": [ - "default.handlebars->47->2696", - "default3.handlebars->35->2693" + "default.handlebars->47->2700", + "default3.handlebars->35->2697" ] }, { @@ -25453,8 +25466,8 @@ "zh-chs": "设备推送", "zh-cht": "設備推送", "xloc": [ - "default.handlebars->47->3006", - "default3.handlebars->35->3000" + "default.handlebars->47->3010", + "default3.handlebars->35->3004" ] }, { @@ -25469,8 +25482,8 @@ "pl": "Zapis Powiadomień Push Urządzenia", "uk": "Запис Push-Сповіщень Пристрою", "xloc": [ - "default.handlebars->47->3262", - "default3.handlebars->35->3250" + "default.handlebars->47->3275", + "default3.handlebars->35->3263" ] }, { @@ -25485,8 +25498,8 @@ "pl": "Zapis SMBIOS urządzenia", "uk": "SMBIOS запис пристрою", "xloc": [ - "default.handlebars->47->3261", - "default3.handlebars->35->3249" + "default.handlebars->47->3274", + "default3.handlebars->35->3262" ] }, { @@ -25567,10 +25580,10 @@ "zh-chs": "设备共享链接", "zh-cht": "設備共享鏈接", "xloc": [ - "default.handlebars->47->1097", - "default.handlebars->47->2250", - "default3.handlebars->35->1094", - "default3.handlebars->35->2246" + "default.handlebars->47->1101", + "default.handlebars->47->2254", + "default3.handlebars->35->1098", + "default3.handlebars->35->2250" ] }, { @@ -25657,12 +25670,12 @@ "default-mobile.handlebars->11->503", "default-mobile.handlebars->11->505", "default-mobile.handlebars->11->507", - "default.handlebars->47->910", - "default.handlebars->47->912", "default.handlebars->47->914", - "default3.handlebars->35->907", - "default3.handlebars->35->909", - "default3.handlebars->35->911" + "default.handlebars->47->916", + "default.handlebars->47->918", + "default3.handlebars->35->911", + "default3.handlebars->35->913", + "default3.handlebars->35->915" ] }, { @@ -25721,20 +25734,20 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->47->1123", "default.handlebars->47->1127", "default.handlebars->47->1131", - "default.handlebars->47->2083", - "default.handlebars->47->2455", + "default.handlebars->47->1135", + "default.handlebars->47->2087", "default.handlebars->47->2459", "default.handlebars->47->2463", - "default3.handlebars->35->1118", + "default.handlebars->47->2467", "default3.handlebars->35->1122", "default3.handlebars->35->1126", - "default3.handlebars->35->2065", - "default3.handlebars->35->2452", + "default3.handlebars->35->1130", + "default3.handlebars->35->2069", "default3.handlebars->35->2456", - "default3.handlebars->35->2460" + "default3.handlebars->35->2460", + "default3.handlebars->35->2464" ] }, { @@ -25763,20 +25776,20 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->47->1124", "default.handlebars->47->1128", "default.handlebars->47->1132", - "default.handlebars->47->2084", - "default.handlebars->47->2456", + "default.handlebars->47->1136", + "default.handlebars->47->2088", "default.handlebars->47->2460", "default.handlebars->47->2464", - "default3.handlebars->35->1119", + "default.handlebars->47->2468", "default3.handlebars->35->1123", "default3.handlebars->35->1127", - "default3.handlebars->35->2066", - "default3.handlebars->35->2453", + "default3.handlebars->35->1131", + "default3.handlebars->35->2070", "default3.handlebars->35->2457", - "default3.handlebars->35->2461" + "default3.handlebars->35->2461", + "default3.handlebars->35->2465" ] }, { @@ -25805,8 +25818,8 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->47->2613", - "default3.handlebars->35->2610" + "default.handlebars->47->2617", + "default3.handlebars->35->2614" ] }, { @@ -25835,8 +25848,8 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->47->2614", - "default3.handlebars->35->2611" + "default.handlebars->47->2618", + "default3.handlebars->35->2615" ] }, { @@ -25865,8 +25878,8 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->47->2615", - "default3.handlebars->35->2612" + "default.handlebars->47->2619", + "default3.handlebars->35->2616" ] }, { @@ -25896,8 +25909,8 @@ "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ "default-mobile.handlebars->11->603", - "default.handlebars->47->1184", - "default3.handlebars->35->1179" + "default.handlebars->47->1188", + "default3.handlebars->35->1183" ] }, { @@ -25926,8 +25939,8 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->47->2610", - "default3.handlebars->35->2607" + "default.handlebars->47->2614", + "default3.handlebars->35->2611" ] }, { @@ -25942,8 +25955,8 @@ "pl": "Zapis grupy urządzeń", "uk": "Запис групи пристроїв", "xloc": [ - "default.handlebars->47->3247", - "default3.handlebars->35->3235" + "default.handlebars->47->3260", + "default3.handlebars->35->3248" ] }, { @@ -25972,8 +25985,8 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->47->2593", - "default3.handlebars->35->2590" + "default.handlebars->47->2597", + "default3.handlebars->35->2594" ] }, { @@ -26002,8 +26015,8 @@ "zh-chs": "设备组 {0} 已更改:{1}", "zh-cht": "設備組 {0} 已更改:{1}", "xloc": [ - "default.handlebars->47->2679", - "default3.handlebars->35->2676" + "default.handlebars->47->2683", + "default3.handlebars->35->2680" ] }, { @@ -26032,8 +26045,8 @@ "zh-chs": "设备组此设备是中继", "zh-cht": "設備組此設備是中繼", "xloc": [ - "default.handlebars->47->1017", - "default3.handlebars->35->1014" + "default.handlebars->47->1021", + "default3.handlebars->35->1018" ] }, { @@ -26048,8 +26061,8 @@ "pl": "Zapisy informacji urządzenia", "uk": "Записи інформації про пристрій", "xloc": [ - "default.handlebars->47->3249", - "default3.handlebars->35->3237" + "default.handlebars->47->3262", + "default3.handlebars->35->3250" ] }, { @@ -26081,9 +26094,9 @@ "default-mobile.handlebars->11->420", "default-mobile.handlebars->11->490", "default.handlebars->47->415", - "default.handlebars->47->892", + "default.handlebars->47->896", "default3.handlebars->35->412", - "default3.handlebars->35->889" + "default3.handlebars->35->893" ] }, { @@ -26481,9 +26494,9 @@ "default-mobile.handlebars->11->419", "default-mobile.handlebars->11->489", "default.handlebars->47->414", - "default.handlebars->47->891", + "default.handlebars->47->895", "default3.handlebars->35->411", - "default3.handlebars->35->888" + "default3.handlebars->35->892" ] }, { @@ -26634,8 +26647,8 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default.handlebars->47->883", - "default3.handlebars->35->880" + "default.handlebars->47->887", + "default3.handlebars->35->884" ] }, { @@ -26679,8 +26692,8 @@ "pl": "Zapisy zmiany stanu zasilania", "uk": "Записи про зміни стану живлення", "xloc": [ - "default.handlebars->47->3255", - "default3.handlebars->35->3243" + "default.handlebars->47->3268", + "default3.handlebars->35->3256" ] }, { @@ -26695,8 +26708,8 @@ "pl": "Zapis urządzenia", "uk": "Запис пристрою", "xloc": [ - "default.handlebars->47->3246", - "default3.handlebars->35->3234" + "default.handlebars->47->3259", + "default3.handlebars->35->3247" ] }, { @@ -26725,8 +26738,8 @@ "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "xloc": [ - "default.handlebars->47->2648", - "default3.handlebars->35->2645" + "default.handlebars->47->2652", + "default3.handlebars->35->2649" ] }, { @@ -26755,8 +26768,8 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->47->2595", - "default3.handlebars->35->2592" + "default.handlebars->47->2599", + "default3.handlebars->35->2596" ] }, { @@ -26771,8 +26784,8 @@ "pl": "Zapisy udostępniania urządzenia", "uk": "Записи поширеного пристрою", "xloc": [ - "default.handlebars->47->3259", - "default3.handlebars->35->3247" + "default.handlebars->47->3272", + "default3.handlebars->35->3260" ] }, { @@ -26787,8 +26800,8 @@ "pl": "Zapisy urządzenia, użytkowników, grup i inne", "uk": "Пристрій, користувачі, групи та інші записи", "xloc": [ - "default.handlebars->47->3263", - "default3.handlebars->35->3251" + "default.handlebars->47->3276", + "default3.handlebars->35->3264" ] }, { @@ -26817,12 +26830,12 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->47->2273", - "default.handlebars->47->2854", - "default.handlebars->47->2898", - "default3.handlebars->35->2269", - "default3.handlebars->35->2848", - "default3.handlebars->35->2892" + "default.handlebars->47->2277", + "default.handlebars->47->2858", + "default.handlebars->47->2902", + "default3.handlebars->35->2273", + "default3.handlebars->35->2852", + "default3.handlebars->35->2896" ] }, { @@ -27059,17 +27072,17 @@ "xloc": [ "default-mobile.handlebars->11->781", "default.handlebars->47->141", - "default.handlebars->47->968", + "default.handlebars->47->972", "default3.handlebars->35->141", - "default3.handlebars->35->965" + "default3.handlebars->35->969" ] }, { "en": "Disabled Duo two-factor authentication", "nl": "Duo twee factorauthenticatie uitgeschakeld", "xloc": [ - "default.handlebars->47->2698", - "default3.handlebars->35->2695" + "default.handlebars->47->2702", + "default3.handlebars->35->2699" ] }, { @@ -27098,8 +27111,8 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->47->2626", - "default3.handlebars->35->2623" + "default.handlebars->47->2630", + "default3.handlebars->35->2627" ] }, { @@ -27132,14 +27145,14 @@ "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->disconnectbutton2span", - "default.handlebars->47->2214", - "default.handlebars->47->988", + "default.handlebars->47->2218", + "default.handlebars->47->992", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", "default.handlebars->deskDisconnectContextMenu->3", - "default3.handlebars->35->2210", - "default3.handlebars->35->985", + "default3.handlebars->35->2214", + "default3.handlebars->35->989", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->5->3->0", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->disconnectbutton1", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->disconnectbutton2span->disconnectbutton2", @@ -27385,10 +27398,10 @@ "pl": "Discord", "uk": "Discord", "xloc": [ - "default.handlebars->47->1801", - "default.handlebars->47->3038", - "default3.handlebars->35->1783", - "default3.handlebars->35->3032" + "default.handlebars->47->1805", + "default.handlebars->47->3042", + "default3.handlebars->35->1787", + "default3.handlebars->35->3036" ] }, { @@ -27477,8 +27490,8 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->47->1188", - "default3.handlebars->35->1183" + "default.handlebars->47->1192", + "default3.handlebars->35->1187" ] }, { @@ -27537,8 +27550,8 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->47->1029", - "default3.handlebars->35->1026" + "default.handlebars->47->1033", + "default3.handlebars->35->1030" ] }, { @@ -27593,8 +27606,8 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->47->2082", - "default3.handlebars->35->2064" + "default.handlebars->47->2086", + "default3.handlebars->35->2068" ] }, { @@ -27623,8 +27636,8 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->47->1469", - "default3.handlebars->35->1455" + "default.handlebars->47->1473", + "default3.handlebars->35->1459" ] }, { @@ -27653,8 +27666,8 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->47->2494", - "default3.handlebars->35->2491" + "default.handlebars->47->2498", + "default3.handlebars->35->2495" ] }, { @@ -27683,8 +27696,8 @@ "zh-chs": "显示{0}", "zh-cht": "顯示 {0}", "xloc": [ - "default.handlebars->47->1500", - "default3.handlebars->35->1485" + "default.handlebars->47->1504", + "default3.handlebars->35->1489" ] }, { @@ -27694,8 +27707,8 @@ "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"", "uk": "Показ вікна попередження, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2695", - "default3.handlebars->35->2692" + "default.handlebars->47->2699", + "default3.handlebars->35->2696" ] }, { @@ -27724,8 +27737,8 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->47->2555", - "default3.handlebars->35->2552" + "default.handlebars->47->2559", + "default3.handlebars->35->2556" ] }, { @@ -27754,8 +27767,8 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->47->2563", - "default3.handlebars->35->2560" + "default.handlebars->47->2567", + "default3.handlebars->35->2564" ] }, { @@ -27784,10 +27797,10 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->47->2302", "default.handlebars->47->2306", - "default3.handlebars->35->2296", - "default3.handlebars->35->2300" + "default.handlebars->47->2310", + "default3.handlebars->35->2300", + "default3.handlebars->35->2304" ] }, { @@ -27817,17 +27830,17 @@ "zh-cht": "域", "xloc": [ "default.handlebars->47->137", - "default.handlebars->47->1403", - "default.handlebars->47->2817", - "default.handlebars->47->2866", - "default.handlebars->47->2875", - "default.handlebars->47->2949", + "default.handlebars->47->1407", + "default.handlebars->47->2821", + "default.handlebars->47->2870", + "default.handlebars->47->2879", + "default.handlebars->47->2953", "default3.handlebars->35->137", - "default3.handlebars->35->1390", - "default3.handlebars->35->2813", - "default3.handlebars->35->2860", - "default3.handlebars->35->2869", - "default3.handlebars->35->2943", + "default3.handlebars->35->1394", + "default3.handlebars->35->2817", + "default3.handlebars->35->2864", + "default3.handlebars->35->2873", + "default3.handlebars->35->2947", "mstsc.handlebars->main->1->3->1->rowdomain->1->0", "mstsc.handlebars->main->1->3->1->rowdomain->3" ] @@ -27884,8 +27897,8 @@ "zh-chs": "请勿更改,如果设置请保留CCM", "zh-cht": "請勿更改,如果設置請保留CCM", "xloc": [ - "default.handlebars->47->2298", - "default3.handlebars->35->2292" + "default.handlebars->47->2302", + "default3.handlebars->35->2296" ] }, { @@ -27940,8 +27953,8 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->47->2307", - "default3.handlebars->35->2301" + "default.handlebars->47->2311", + "default3.handlebars->35->2305" ] }, { @@ -28080,8 +28093,8 @@ "zh-cht": "下", "xloc": [ "default-mobile.handlebars->11->667", - "default.handlebars->47->1438", - "default3.handlebars->35->1425", + "default.handlebars->47->1442", + "default3.handlebars->35->1429", "sharing-mobile.handlebars->11->31" ] }, @@ -28209,8 +28222,8 @@ "zh-cht": "下載檔案", "xloc": [ "default-mobile.handlebars->11->742", - "default.handlebars->47->1590", - "default3.handlebars->35->1575", + "default.handlebars->47->1594", + "default3.handlebars->35->1579", "sharing-mobile.handlebars->11->106", "sharing.handlebars->11->82" ] @@ -28271,8 +28284,8 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->47->1362", - "default3.handlebars->35->1350" + "default.handlebars->47->1366", + "default3.handlebars->35->1354" ] }, { @@ -28361,10 +28374,10 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->47->2723", + "default.handlebars->47->2727", "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv", - "default3.handlebars->35->2720", + "default3.handlebars->35->2724", "default3.handlebars->container->column_l->p60->3->1->0->1->1->p60downloadReportDiv" ] }, @@ -28394,8 +28407,8 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->47->1355", - "default3.handlebars->35->1343" + "default.handlebars->47->1359", + "default3.handlebars->35->1347" ] }, { @@ -28484,8 +28497,8 @@ "zh-chs": "下载设备列表", "zh-cht": "下載設備列表", "xloc": [ - "default.handlebars->47->2271", - "default3.handlebars->35->2267" + "default.handlebars->47->2275", + "default3.handlebars->35->2271" ] }, { @@ -28544,8 +28557,8 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->47->1310", - "default3.handlebars->35->1302" + "default.handlebars->47->1314", + "default3.handlebars->35->1306" ] }, { @@ -28724,8 +28737,8 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->47->2724", - "default3.handlebars->35->2721" + "default.handlebars->47->2728", + "default3.handlebars->35->2725" ] }, { @@ -28754,8 +28767,8 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->47->2801", - "default3.handlebars->35->2797" + "default.handlebars->47->2805", + "default3.handlebars->35->2801" ] }, { @@ -28875,8 +28888,8 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->47->2586", - "default3.handlebars->35->2583" + "default.handlebars->47->2590", + "default3.handlebars->35->2587" ] }, { @@ -28905,8 +28918,8 @@ "zh-chs": "下载:\\\"{0}\\\",大小:{1}", "zh-cht": "下載:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->47->2643", - "default3.handlebars->35->2640" + "default.handlebars->47->2647", + "default3.handlebars->35->2644" ] }, { @@ -28935,15 +28948,15 @@ "zh-chs": "拖放.mcrec文件或单击 “打开文件...”", "zh-cht": "拖放.mcrec檔案或單擊 “打開檔案...”", "xloc": [ - "player.handlebars->3->46" + "player.handlebars->3->49" ] }, { "en": "Duo", "nl": "Duo", "xloc": [ - "default.handlebars->47->3004", - "default3.handlebars->35->2998", + "default.handlebars->47->3008", + "default3.handlebars->35->3002", "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" ] @@ -28952,10 +28965,10 @@ "en": "Duo Authentication", "nl": "Duo authenticatie", "xloc": [ - "default.handlebars->47->1830", - "default.handlebars->47->1832", - "default3.handlebars->35->1812", - "default3.handlebars->35->1814", + "default.handlebars->47->1834", + "default.handlebars->47->1836", + "default3.handlebars->35->1816", + "default3.handlebars->35->1818", "login2.handlebars->centralTable->1->0->logincell->resettokenpanel->resettokenpanelform->5->1->2farow2->1->3", "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" ] @@ -28986,8 +28999,8 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->47->3334", - "default3.handlebars->35->3322" + "default.handlebars->47->3357", + "default3.handlebars->35->3345" ] }, { @@ -29046,8 +29059,8 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->47->2870", - "default3.handlebars->35->2864" + "default.handlebars->47->2874", + "default3.handlebars->35->2868" ] }, { @@ -29102,16 +29115,16 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->47->1252", + "default.handlebars->47->1256", "default.handlebars->47->301", "default.handlebars->47->303", - "default.handlebars->47->3140", - "default.handlebars->47->3167", - "default3.handlebars->35->1247", + "default.handlebars->47->3144", + "default.handlebars->47->3177", + "default3.handlebars->35->1251", "default3.handlebars->35->298", "default3.handlebars->35->300", - "default3.handlebars->35->3128", - "default3.handlebars->35->3155", + "default3.handlebars->35->3132", + "default3.handlebars->35->3165", "player.handlebars->3->18" ] }, @@ -29168,8 +29181,8 @@ "zh-cht": "荷蘭文(比利時)", "xloc": [ "default-mobile.handlebars->11->161", - "default.handlebars->47->1901", - "default3.handlebars->35->1882", + "default.handlebars->47->1905", + "default3.handlebars->35->1886", "login2.handlebars->7->47" ] }, @@ -29200,8 +29213,8 @@ "zh-cht": "荷蘭文(標準)", "xloc": [ "default-mobile.handlebars->11->160", - "default.handlebars->47->1900", - "default3.handlebars->35->1881", + "default.handlebars->47->1904", + "default3.handlebars->35->1885", "login2.handlebars->7->46" ] }, @@ -29656,12 +29669,12 @@ "default-mobile.handlebars->11->633", "default-mobile.handlebars->11->635", "default-mobile.handlebars->11->642", - "default.handlebars->47->1373", - "default.handlebars->47->1375", - "default.handlebars->47->1382", - "default3.handlebars->35->1361", - "default3.handlebars->35->1362", - "default3.handlebars->35->1369" + "default.handlebars->47->1377", + "default.handlebars->47->1379", + "default.handlebars->47->1386", + "default3.handlebars->35->1365", + "default3.handlebars->35->1366", + "default3.handlebars->35->1373" ] }, { @@ -29695,18 +29708,18 @@ "default-mobile.handlebars->11->970", "default-mobile.handlebars->11->973", "default-mobile.handlebars->11->980", - "default.handlebars->47->2317", - "default.handlebars->47->2320", - "default.handlebars->47->2323", - "default.handlebars->47->2362", - "default.handlebars->47->2389", - "default.handlebars->47->2401", - "default3.handlebars->35->2312", - "default3.handlebars->35->2315", - "default3.handlebars->35->2320", - "default3.handlebars->35->2359", - "default3.handlebars->35->2386", - "default3.handlebars->35->2398" + "default.handlebars->47->2321", + "default.handlebars->47->2324", + "default.handlebars->47->2327", + "default.handlebars->47->2366", + "default.handlebars->47->2393", + "default.handlebars->47->2405", + "default3.handlebars->35->2316", + "default3.handlebars->35->2319", + "default3.handlebars->35->2324", + "default3.handlebars->35->2363", + "default3.handlebars->35->2390", + "default3.handlebars->35->2402" ] }, { @@ -29735,8 +29748,8 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->47->2348", - "default3.handlebars->35->2345" + "default.handlebars->47->2352", + "default3.handlebars->35->2349" ] }, { @@ -29765,10 +29778,10 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->47->2386", - "default.handlebars->47->2398", - "default3.handlebars->35->2383", - "default3.handlebars->35->2395" + "default.handlebars->47->2390", + "default.handlebars->47->2402", + "default3.handlebars->35->2387", + "default3.handlebars->35->2399" ] }, { @@ -29797,8 +29810,8 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->47->2324", - "default3.handlebars->35->2321" + "default.handlebars->47->2328", + "default3.handlebars->35->2325" ] }, { @@ -29828,8 +29841,8 @@ "zh-cht": "編輯裝置筆記", "xloc": [ "default-mobile.handlebars->11->992", - "default.handlebars->47->2376", - "default3.handlebars->35->2373" + "default.handlebars->47->2380", + "default3.handlebars->35->2377" ] }, { @@ -29858,10 +29871,10 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->47->2391", - "default.handlebars->47->2393", - "default3.handlebars->35->2388", - "default3.handlebars->35->2390" + "default.handlebars->47->2395", + "default.handlebars->47->2397", + "default3.handlebars->35->2392", + "default3.handlebars->35->2394" ] }, { @@ -29920,8 +29933,8 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->47->2326", - "default3.handlebars->35->2323" + "default.handlebars->47->2330", + "default3.handlebars->35->2327" ] }, { @@ -29950,8 +29963,8 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->47->1158", - "default3.handlebars->35->1153" + "default.handlebars->47->1162", + "default3.handlebars->35->1157" ] }, { @@ -29984,14 +29997,14 @@ "default-mobile.handlebars->11->526", "default-mobile.handlebars->11->527", "default-mobile.handlebars->11->628", - "default.handlebars->47->1317", - "default.handlebars->47->930", - "default.handlebars->47->935", - "default.handlebars->47->936", - "default3.handlebars->35->1308", - "default3.handlebars->35->927", - "default3.handlebars->35->932", - "default3.handlebars->35->933" + "default.handlebars->47->1321", + "default.handlebars->47->934", + "default.handlebars->47->939", + "default.handlebars->47->940", + "default3.handlebars->35->1312", + "default3.handlebars->35->931", + "default3.handlebars->35->936", + "default3.handlebars->35->937" ] }, { @@ -30021,15 +30034,15 @@ "zh-cht": "編輯筆記", "xloc": [ "default-mobile.handlebars->11->1007", - "default.handlebars->47->2408", - "default3.handlebars->35->2405" + "default.handlebars->47->2412", + "default3.handlebars->35->2409" ] }, { "en": "Edit Tags", "nl": "Bewerk Tags", "xloc": [ - "default3.handlebars->35->1368" + "default3.handlebars->35->1372" ] }, { @@ -30058,8 +30071,8 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->47->2325", - "default3.handlebars->35->2322" + "default.handlebars->47->2329", + "default3.handlebars->35->2326" ] }, { @@ -30088,8 +30101,8 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->47->2399", - "default3.handlebars->35->2396" + "default.handlebars->47->2403", + "default3.handlebars->35->2400" ] }, { @@ -30118,8 +30131,8 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->47->2394", - "default3.handlebars->35->2391" + "default.handlebars->47->2398", + "default3.handlebars->35->2395" ] }, { @@ -30148,8 +30161,8 @@ "zh-chs": "编辑用户特征", "zh-cht": "編輯用戶特徵", "xloc": [ - "default.handlebars->47->3075", - "default3.handlebars->35->3069" + "default.handlebars->47->3079", + "default3.handlebars->35->3073" ] }, { @@ -30178,8 +30191,8 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->47->2927", - "default3.handlebars->35->2921" + "default.handlebars->47->2931", + "default3.handlebars->35->2925" ] }, { @@ -30208,8 +30221,8 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->47->2396", - "default3.handlebars->35->2393" + "default.handlebars->47->2400", + "default3.handlebars->35->2397" ] }, { @@ -30238,8 +30251,8 @@ "zh-chs": "编辑用户组功能", "zh-cht": "編輯用戶組功能", "xloc": [ - "default.handlebars->47->2920", - "default3.handlebars->35->2914" + "default.handlebars->47->2924", + "default3.handlebars->35->2918" ] }, { @@ -30268,8 +30281,8 @@ "zh-chs": "编辑用户组用户同意", "zh-cht": "編輯用戶組用戶同意", "xloc": [ - "default.handlebars->47->2327", - "default3.handlebars->35->2324" + "default.handlebars->47->2331", + "default3.handlebars->35->2328" ] }, { @@ -30415,18 +30428,18 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->11->327", - "default.handlebars->47->2819", - "default.handlebars->47->2953", - "default.handlebars->47->2955", - "default.handlebars->47->3003", - "default.handlebars->47->3017", - "default.handlebars->47->3078", + "default.handlebars->47->2823", + "default.handlebars->47->2957", + "default.handlebars->47->2959", + "default.handlebars->47->3007", + "default.handlebars->47->3021", + "default.handlebars->47->3082", "default.handlebars->47->558", - "default3.handlebars->35->2815", - "default3.handlebars->35->2947", - "default3.handlebars->35->2949", - "default3.handlebars->35->2997", - "default3.handlebars->35->3011", + "default3.handlebars->35->2819", + "default3.handlebars->35->2951", + "default3.handlebars->35->2953", + "default3.handlebars->35->3001", + "default3.handlebars->35->3015", "default3.handlebars->35->555", "login-mobile.handlebars->5->45", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -30452,10 +30465,10 @@ "pl": "Email ({0})", "uk": "е-пошта ({0})", "xloc": [ - "default.handlebars->47->2216", - "default.handlebars->47->990", - "default3.handlebars->35->2212", - "default3.handlebars->35->987" + "default.handlebars->47->2220", + "default.handlebars->47->994", + "default3.handlebars->35->2216", + "default3.handlebars->35->991" ] }, { @@ -30485,8 +30498,8 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->11->328", - "default.handlebars->47->2091", - "default3.handlebars->35->2073" + "default.handlebars->47->2095", + "default3.handlebars->35->2077" ] }, { @@ -30516,8 +30529,8 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->47->1827", - "default3.handlebars->35->1809" + "default.handlebars->47->1831", + "default3.handlebars->35->1813" ] }, { @@ -30641,10 +30654,10 @@ "zh-chs": "电子邮件通知", "zh-cht": "電子郵件通知", "xloc": [ - "default.handlebars->47->1126", - "default.handlebars->47->2458", - "default3.handlebars->35->1121", - "default3.handlebars->35->2455" + "default.handlebars->47->1130", + "default.handlebars->47->2462", + "default3.handlebars->35->1125", + "default3.handlebars->35->2459" ] }, { @@ -30700,8 +30713,8 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->47->2089", - "default3.handlebars->35->2071" + "default.handlebars->47->2093", + "default3.handlebars->35->2075" ] }, { @@ -30731,8 +30744,8 @@ "zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})", "xloc": [ "default-mobile.handlebars->11->1065", - "default.handlebars->47->3313", - "default3.handlebars->35->3301" + "default.handlebars->47->3336", + "default3.handlebars->35->3324" ] }, { @@ -30791,8 +30804,8 @@ "zh-chs": "邮箱未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->47->2754", - "default3.handlebars->35->2751" + "default.handlebars->47->2758", + "default3.handlebars->35->2755" ] }, { @@ -30821,10 +30834,10 @@ "zh-chs": "电子邮件已验证", "zh-cht": "電子郵件已驗證", "xloc": [ - "default.handlebars->47->2755", - "default.handlebars->47->2947", - "default3.handlebars->35->2752", - "default3.handlebars->35->2941" + "default.handlebars->47->2759", + "default.handlebars->47->2951", + "default3.handlebars->35->2756", + "default3.handlebars->35->2945" ] }, { @@ -30853,8 +30866,8 @@ "zh-chs": "邮箱已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->47->2825", - "default3.handlebars->35->2821" + "default.handlebars->47->2829", + "default3.handlebars->35->2825" ] }, { @@ -30883,8 +30896,8 @@ "zh-chs": "邮箱未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->47->2948", - "default3.handlebars->35->2942" + "default.handlebars->47->2952", + "default3.handlebars->35->2946" ] }, { @@ -30940,8 +30953,8 @@ "zh-cht": "電郵已發送。", "xloc": [ "default-mobile.handlebars->11->1049", - "default.handlebars->47->3297", - "default3.handlebars->35->3285", + "default.handlebars->47->3320", + "default3.handlebars->35->3308", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->200" @@ -31030,8 +31043,8 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->47->2826", - "default3.handlebars->35->2822" + "default.handlebars->47->2830", + "default3.handlebars->35->2826" ] }, { @@ -31086,8 +31099,8 @@ "zh-chs": "电子邮件/短信/推送流量", "zh-cht": "電子郵件/短信/推送流量", "xloc": [ - "default.handlebars->47->3395", - "default3.handlebars->35->3383" + "default.handlebars->47->3418", + "default3.handlebars->35->3406" ] }, { @@ -31209,8 +31222,8 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->47->2434", - "default3.handlebars->35->2431" + "default.handlebars->47->2438", + "default3.handlebars->35->2435" ] }, { @@ -31269,8 +31282,8 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->47->1829", - "default3.handlebars->35->1811" + "default.handlebars->47->1833", + "default3.handlebars->35->1815" ] }, { @@ -31331,19 +31344,19 @@ "xloc": [ "default-mobile.handlebars->11->895", "default.handlebars->47->140", - "default.handlebars->47->1740", - "default.handlebars->47->3169", + "default.handlebars->47->1744", + "default.handlebars->47->3179", "default3.handlebars->35->140", - "default3.handlebars->35->1723", - "default3.handlebars->35->3157" + "default3.handlebars->35->1727", + "default3.handlebars->35->3167" ] }, { "en": "Enabled Duo two-factor authentication", "nl": "Duo twee factorauthenticatie ingeschakeld", "xloc": [ - "default.handlebars->47->2697", - "default3.handlebars->35->2694" + "default.handlebars->47->2701", + "default3.handlebars->35->2698" ] }, { @@ -31372,8 +31385,8 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->47->2625", - "default3.handlebars->35->2622" + "default.handlebars->47->2629", + "default3.handlebars->35->2626" ] }, { @@ -31435,7 +31448,7 @@ "zh-chs": "编码质量", "zh-cht": "編碼質量", "xloc": [ - "player.handlebars->3->38" + "player.handlebars->3->41" ] }, { @@ -31464,8 +31477,8 @@ "zh-chs": "编码:RAW", "zh-cht": "編碼:RAW", "xloc": [ - "default.handlebars->47->1597", - "default3.handlebars->35->1582", + "default.handlebars->47->1601", + "default3.handlebars->35->1586", "sharing.handlebars->11->89" ] }, @@ -31495,8 +31508,8 @@ "zh-chs": "编码:UTF8", "zh-cht": "編碼:UTF8", "xloc": [ - "default.handlebars->47->1598", - "default3.handlebars->35->1583", + "default.handlebars->47->1602", + "default3.handlebars->35->1587", "sharing.handlebars->11->90" ] }, @@ -31508,8 +31521,8 @@ "uk": "Виконується Шифрування", "xloc": [ "default-mobile.handlebars->11->897", - "default.handlebars->47->1742", - "default3.handlebars->35->1725" + "default.handlebars->47->1746", + "default3.handlebars->35->1729" ] }, { @@ -31539,8 +31552,8 @@ "zh-cht": "結尾", "xloc": [ "default-mobile.handlebars->11->660", - "default.handlebars->47->1432", - "default3.handlebars->35->1419", + "default.handlebars->47->1436", + "default3.handlebars->35->1423", "sharing-mobile.handlebars->11->25" ] }, @@ -31570,8 +31583,8 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->47->3166", - "default3.handlebars->35->3154" + "default.handlebars->47->3176", + "default3.handlebars->35->3164" ] }, { @@ -31600,8 +31613,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->47->2548", - "default3.handlebars->35->2545" + "default.handlebars->47->2552", + "default3.handlebars->35->2549" ] }, { @@ -31630,8 +31643,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->47->2549", - "default3.handlebars->35->2546" + "default.handlebars->47->2553", + "default3.handlebars->35->2550" ] }, { @@ -31660,8 +31673,8 @@ "zh-chs": "结束本地中继会话\\\"{0}\\\",协议 {1} 到 {2},{3} 秒", "zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒", "xloc": [ - "default.handlebars->47->2658", - "default3.handlebars->35->2655" + "default.handlebars->47->2662", + "default3.handlebars->35->2659" ] }, { @@ -31690,8 +31703,8 @@ "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"", "zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒", "xloc": [ - "default.handlebars->47->2649", - "default3.handlebars->35->2646" + "default.handlebars->47->2653", + "default3.handlebars->35->2650" ] }, { @@ -31720,8 +31733,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->47->2546", - "default3.handlebars->35->2543" + "default.handlebars->47->2550", + "default3.handlebars->35->2547" ] }, { @@ -31750,8 +31763,8 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->47->2547", - "default3.handlebars->35->2544" + "default.handlebars->47->2551", + "default3.handlebars->35->2548" ] }, { @@ -31781,8 +31794,8 @@ "zh-cht": "英文", "xloc": [ "default-mobile.handlebars->11->162", - "default.handlebars->47->1902", - "default3.handlebars->35->1883", + "default.handlebars->47->1906", + "default3.handlebars->35->1887", "login2.handlebars->7->48" ] }, @@ -31813,8 +31826,8 @@ "zh-cht": "英文(澳洲)", "xloc": [ "default-mobile.handlebars->11->163", - "default.handlebars->47->1903", - "default3.handlebars->35->1884", + "default.handlebars->47->1907", + "default3.handlebars->35->1888", "login2.handlebars->7->49" ] }, @@ -31845,8 +31858,8 @@ "zh-cht": "英文(伯利茲)", "xloc": [ "default-mobile.handlebars->11->164", - "default.handlebars->47->1904", - "default3.handlebars->35->1885", + "default.handlebars->47->1908", + "default3.handlebars->35->1889", "login2.handlebars->7->50" ] }, @@ -31877,8 +31890,8 @@ "zh-cht": "英文(加拿大)", "xloc": [ "default-mobile.handlebars->11->165", - "default.handlebars->47->1905", - "default3.handlebars->35->1886", + "default.handlebars->47->1909", + "default3.handlebars->35->1890", "login2.handlebars->7->51" ] }, @@ -31909,8 +31922,8 @@ "zh-cht": "英文(愛爾蘭)", "xloc": [ "default-mobile.handlebars->11->166", - "default.handlebars->47->1906", - "default3.handlebars->35->1887", + "default.handlebars->47->1910", + "default3.handlebars->35->1891", "login2.handlebars->7->52" ] }, @@ -31941,8 +31954,8 @@ "zh-cht": "英文(牙買加)", "xloc": [ "default-mobile.handlebars->11->167", - "default.handlebars->47->1907", - "default3.handlebars->35->1888", + "default.handlebars->47->1911", + "default3.handlebars->35->1892", "login2.handlebars->7->53" ] }, @@ -31973,8 +31986,8 @@ "zh-cht": "英文(紐西蘭)", "xloc": [ "default-mobile.handlebars->11->168", - "default.handlebars->47->1908", - "default3.handlebars->35->1889", + "default.handlebars->47->1912", + "default3.handlebars->35->1893", "login2.handlebars->7->54" ] }, @@ -32005,8 +32018,8 @@ "zh-cht": "英文(菲律賓)", "xloc": [ "default-mobile.handlebars->11->169", - "default.handlebars->47->1909", - "default3.handlebars->35->1890", + "default.handlebars->47->1913", + "default3.handlebars->35->1894", "login2.handlebars->7->55" ] }, @@ -32037,8 +32050,8 @@ "zh-cht": "英語(南非)", "xloc": [ "default-mobile.handlebars->11->170", - "default.handlebars->47->1910", - "default3.handlebars->35->1891", + "default.handlebars->47->1914", + "default3.handlebars->35->1895", "login2.handlebars->7->56" ] }, @@ -32069,8 +32082,8 @@ "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ "default-mobile.handlebars->11->171", - "default.handlebars->47->1911", - "default3.handlebars->35->1892", + "default.handlebars->47->1915", + "default3.handlebars->35->1896", "login2.handlebars->7->57" ] }, @@ -32101,8 +32114,8 @@ "zh-cht": "英文(英國)", "xloc": [ "default-mobile.handlebars->11->172", - "default.handlebars->47->1912", - "default3.handlebars->35->1893", + "default.handlebars->47->1916", + "default3.handlebars->35->1897", "login2.handlebars->7->58" ] }, @@ -32133,8 +32146,8 @@ "zh-cht": "美國英語", "xloc": [ "default-mobile.handlebars->11->173", - "default.handlebars->47->1913", - "default3.handlebars->35->1894", + "default.handlebars->47->1917", + "default3.handlebars->35->1898", "login2.handlebars->7->59" ] }, @@ -32165,8 +32178,8 @@ "zh-cht": "英文(津巴布韋)", "xloc": [ "default-mobile.handlebars->11->174", - "default.handlebars->47->1914", - "default3.handlebars->35->1895", + "default.handlebars->47->1918", + "default3.handlebars->35->1899", "login2.handlebars->7->60" ] }, @@ -32223,14 +32236,14 @@ "zh-cht": "輸入", "xloc": [ "default-mobile.handlebars->11->653", - "default.handlebars->47->1425", - "default.handlebars->47->1561", - "default.handlebars->47->2128", - "default.handlebars->47->2129", - "default3.handlebars->35->1412", - "default3.handlebars->35->1546", - "default3.handlebars->35->2128", - "default3.handlebars->35->2129", + "default.handlebars->47->1429", + "default.handlebars->47->1565", + "default.handlebars->47->2132", + "default.handlebars->47->2133", + "default3.handlebars->35->1416", + "default3.handlebars->35->1550", + "default3.handlebars->35->2132", + "default3.handlebars->35->2133", "sharing-mobile.handlebars->11->19", "sharing.handlebars->11->55" ] @@ -32261,8 +32274,8 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->47->2830", - "default3.handlebars->35->2826" + "default.handlebars->47->2834", + "default3.handlebars->35->2830" ] }, { @@ -32376,8 +32389,8 @@ "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->47->1457", - "default3.handlebars->35->1444" + "default.handlebars->47->1461", + "default3.handlebars->35->1448" ] }, { @@ -32519,8 +32532,8 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->47->1793", - "default3.handlebars->35->1775" + "default.handlebars->47->1797", + "default3.handlebars->35->1779" ] }, { @@ -32534,8 +32547,8 @@ "pl": "Wprowadź swoją usługę przesyłania wiadomości. Po weryfikacji, ten serwer może wysyłać weryfikację logowania i inne powiadomienia.", "uk": "Введіть свою службу обміну повідомленнями. Після верифікації цей сервер зможе надсилати підтвердження входу та інші сповіщення.", "xloc": [ - "default.handlebars->47->1799", - "default3.handlebars->35->1781" + "default.handlebars->47->1803", + "default3.handlebars->35->1785" ] }, { @@ -32705,8 +32718,8 @@ "zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。", "xloc": [ "default-mobile.handlebars->11->1057", - "default.handlebars->47->3305", - "default3.handlebars->35->3293" + "default.handlebars->47->3328", + "default3.handlebars->35->3316" ] }, { @@ -32736,8 +32749,8 @@ "zh-cht": "錯誤,密碼未更改。", "xloc": [ "default-mobile.handlebars->11->1054", - "default.handlebars->47->3302", - "default3.handlebars->35->3290" + "default.handlebars->47->3325", + "default3.handlebars->35->3313" ] }, { @@ -32767,8 +32780,8 @@ "zh-cht": "錯誤,無法更改為常用密碼。", "xloc": [ "default-mobile.handlebars->11->1053", - "default.handlebars->47->3301", - "default3.handlebars->35->3289" + "default.handlebars->47->3324", + "default3.handlebars->35->3312" ] }, { @@ -32798,8 +32811,8 @@ "zh-cht": "錯誤,無法更改為以前使用的密碼。", "xloc": [ "default-mobile.handlebars->11->1052", - "default.handlebars->47->3300", - "default3.handlebars->35->3288" + "default.handlebars->47->3323", + "default3.handlebars->35->3311" ] }, { @@ -32858,8 +32871,8 @@ "zh-cht": "逃脫", "xloc": [ "default-mobile.handlebars->11->654", - "default.handlebars->47->1426", - "default3.handlebars->35->1413", + "default.handlebars->47->1430", + "default3.handlebars->35->1417", "sharing-mobile.handlebars->11->20" ] }, @@ -32901,8 +32914,8 @@ "zh-cht": "世界語", "xloc": [ "default-mobile.handlebars->11->175", - "default.handlebars->47->1915", - "default3.handlebars->35->1896", + "default.handlebars->47->1919", + "default3.handlebars->35->1900", "login2.handlebars->7->61" ] }, @@ -32959,8 +32972,8 @@ "zh-cht": "愛沙尼亞語", "xloc": [ "default-mobile.handlebars->11->176", - "default.handlebars->47->1916", - "default3.handlebars->35->1897", + "default.handlebars->47->1920", + "default3.handlebars->35->1901", "login2.handlebars->7->62" ] }, @@ -33016,8 +33029,8 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->47->1609", - "default3.handlebars->35->1594" + "default.handlebars->47->1613", + "default3.handlebars->35->1598" ] }, { @@ -33046,8 +33059,8 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->47->2729", - "default3.handlebars->35->2726" + "default.handlebars->47->2733", + "default3.handlebars->35->2730" ] }, { @@ -33062,8 +33075,8 @@ "pl": "Zapisy zdarzeń", "uk": "Записи подій", "xloc": [ - "default.handlebars->47->3256", - "default3.handlebars->35->3244" + "default.handlebars->47->3269", + "default3.handlebars->35->3257" ] }, { @@ -33281,11 +33294,11 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ - "default.handlebars->47->1245", - "default.handlebars->47->2079", + "default.handlebars->47->1249", + "default.handlebars->47->2083", "default.handlebars->47->306", - "default3.handlebars->35->1240", - "default3.handlebars->35->2061", + "default3.handlebars->35->1244", + "default3.handlebars->35->2065", "default3.handlebars->35->303" ] }, @@ -33344,8 +33357,8 @@ "zh-chs": "过期{0}", "zh-cht": "過期{0}", "xloc": [ - "default.handlebars->47->2142", - "default3.handlebars->35->2142", + "default.handlebars->47->2146", + "default3.handlebars->35->2146", "sharing.handlebars->11->100" ] }, @@ -33405,8 +33418,8 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->47->1530", - "default3.handlebars->35->1515", + "default.handlebars->47->1534", + "default3.handlebars->35->1519", "sharing.handlebars->11->34" ] }, @@ -33467,8 +33480,8 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->47->3375", - "default3.handlebars->35->3363" + "default.handlebars->47->3398", + "default3.handlebars->35->3386" ] }, { @@ -33497,8 +33510,8 @@ "zh-chs": "FIDO 密钥", "zh-cht": "FIDO 密鑰", "xloc": [ - "default.handlebars->47->3236", - "default3.handlebars->35->3224" + "default.handlebars->47->3249", + "default3.handlebars->35->3237" ] }, { @@ -33558,8 +33571,8 @@ "zh-cht": "FYRO馬其頓語", "xloc": [ "default-mobile.handlebars->11->226", - "default.handlebars->47->1966", - "default3.handlebars->35->1947", + "default.handlebars->47->1970", + "default3.handlebars->35->1951", "login2.handlebars->7->112" ] }, @@ -33574,10 +33587,10 @@ "pl": "Facebook", "uk": "Facebook", "xloc": [ - "default.handlebars->47->1813", - "default.handlebars->47->3050", - "default3.handlebars->35->1795", - "default3.handlebars->35->3044" + "default.handlebars->47->1817", + "default.handlebars->47->3054", + "default3.handlebars->35->1799", + "default3.handlebars->35->3048" ] }, { @@ -33607,8 +33620,8 @@ "zh-cht": "法羅語", "xloc": [ "default-mobile.handlebars->11->177", - "default.handlebars->47->1917", - "default3.handlebars->35->1898", + "default.handlebars->47->1921", + "default3.handlebars->35->1902", "login2.handlebars->7->63" ] }, @@ -33669,8 +33682,8 @@ "zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。", "xloc": [ "default-mobile.handlebars->11->1048", - "default.handlebars->47->3296", - "default3.handlebars->35->3284" + "default.handlebars->47->3319", + "default3.handlebars->35->3307" ] }, { @@ -33757,8 +33770,8 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->47->2571", - "default3.handlebars->35->2568" + "default.handlebars->47->2575", + "default3.handlebars->35->2572" ] }, { @@ -33813,8 +33826,8 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->47->2578", - "default3.handlebars->35->2575" + "default.handlebars->47->2582", + "default3.handlebars->35->2579" ] }, { @@ -33870,8 +33883,8 @@ "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ "default-mobile.handlebars->11->645", - "default.handlebars->47->1386", - "default3.handlebars->35->1373", + "default.handlebars->47->1390", + "default3.handlebars->35->1377", "sharing-mobile.handlebars->11->11", "sharing.handlebars->11->30", "sharing.handlebars->11->8" @@ -33904,8 +33917,8 @@ "zh-cht": "波斯語(波斯語)", "xloc": [ "default-mobile.handlebars->11->178", - "default.handlebars->47->1918", - "default3.handlebars->35->1899", + "default.handlebars->47->1922", + "default3.handlebars->35->1903", "login2.handlebars->7->64" ] }, @@ -33968,12 +33981,12 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->47->2200", - "default.handlebars->47->2883", - "default.handlebars->47->2974", - "default3.handlebars->35->2196", - "default3.handlebars->35->2877", - "default3.handlebars->35->2968" + "default.handlebars->47->2204", + "default.handlebars->47->2887", + "default.handlebars->47->2978", + "default3.handlebars->35->2200", + "default3.handlebars->35->2881", + "default3.handlebars->35->2972" ] }, { @@ -34003,8 +34016,8 @@ "zh-cht": "斐濟", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->47->1919", - "default3.handlebars->35->1900", + "default.handlebars->47->1923", + "default3.handlebars->35->1904", "login2.handlebars->7->65" ] }, @@ -34064,12 +34077,12 @@ "zh-cht": "檔案編輯器", "xloc": [ "default-mobile.handlebars->11->726", - "default.handlebars->47->1573", - "default.handlebars->47->2527", - "default.handlebars->47->863", - "default3.handlebars->35->1558", - "default3.handlebars->35->2524", - "default3.handlebars->35->860", + "default.handlebars->47->1577", + "default.handlebars->47->2531", + "default.handlebars->47->867", + "default3.handlebars->35->1562", + "default3.handlebars->35->2528", + "default3.handlebars->35->864", "sharing-mobile.handlebars->11->90", "sharing.handlebars->11->66" ] @@ -34126,14 +34139,14 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->47->1545", - "default.handlebars->47->1547", "default.handlebars->47->1549", "default.handlebars->47->1551", - "default3.handlebars->35->1530", - "default3.handlebars->35->1532", + "default.handlebars->47->1553", + "default.handlebars->47->1555", "default3.handlebars->35->1534", "default3.handlebars->35->1536", + "default3.handlebars->35->1538", + "default3.handlebars->35->1540", "sharing.handlebars->11->46", "sharing.handlebars->11->48" ] @@ -34180,12 +34193,12 @@ "default-mobile.handlebars->11->893", "default-mobile.handlebars->11->905", "default-mobile.handlebars->11->912", - "default.handlebars->47->1738", - "default.handlebars->47->1750", - "default.handlebars->47->1757", - "default3.handlebars->35->1721", - "default3.handlebars->35->1733", - "default3.handlebars->35->1740" + "default.handlebars->47->1742", + "default.handlebars->47->1754", + "default.handlebars->47->1761", + "default3.handlebars->35->1725", + "default3.handlebars->35->1737", + "default3.handlebars->35->1744" ] }, { @@ -34214,8 +34227,8 @@ "zh-chs": "文件传输", "zh-cht": "文件傳輸", "xloc": [ - "default.handlebars->47->3146", - "default3.handlebars->35->3134" + "default.handlebars->47->3150", + "default3.handlebars->35->3138" ] }, { @@ -34244,8 +34257,8 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->47->1474", - "default3.handlebars->35->1460" + "default.handlebars->47->1478", + "default3.handlebars->35->1464" ] }, { @@ -34276,25 +34289,25 @@ "xloc": [ "default-mobile.handlebars->11->437", "default-mobile.handlebars->11->577", - "default.handlebars->47->1102", - "default.handlebars->47->1216", - "default.handlebars->47->2255", - "default.handlebars->47->2335", - "default.handlebars->47->3153", - "default.handlebars->47->3216", - "default.handlebars->47->3266", - "default.handlebars->47->3362", + "default.handlebars->47->1106", + "default.handlebars->47->1220", + "default.handlebars->47->2259", + "default.handlebars->47->2339", + "default.handlebars->47->3160", + "default.handlebars->47->3226", + "default.handlebars->47->3279", + "default.handlebars->47->3385", "default.handlebars->47->472", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", - "default3.handlebars->35->1099", - "default3.handlebars->35->1211", - "default3.handlebars->35->2251", - "default3.handlebars->35->2332", - "default3.handlebars->35->3141", - "default3.handlebars->35->3204", - "default3.handlebars->35->3254", - "default3.handlebars->35->3350", + "default3.handlebars->35->1103", + "default3.handlebars->35->1215", + "default3.handlebars->35->2255", + "default3.handlebars->35->2336", + "default3.handlebars->35->3148", + "default3.handlebars->35->3214", + "default3.handlebars->35->3267", + "default3.handlebars->35->3373", "default3.handlebars->35->469", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default3.handlebars->contextMenu->cxfiles", @@ -34358,14 +34371,14 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->47->2208", - "default.handlebars->47->2891", - "default.handlebars->47->2996", - "default.handlebars->47->982", - "default3.handlebars->35->2204", - "default3.handlebars->35->2885", - "default3.handlebars->35->2990", - "default3.handlebars->35->979" + "default.handlebars->47->2212", + "default.handlebars->47->2895", + "default.handlebars->47->3000", + "default.handlebars->47->986", + "default3.handlebars->35->2208", + "default3.handlebars->35->2889", + "default3.handlebars->35->2994", + "default3.handlebars->35->983" ] }, { @@ -34394,14 +34407,14 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->47->2207", - "default.handlebars->47->2890", - "default.handlebars->47->2995", - "default.handlebars->47->981", - "default3.handlebars->35->2203", - "default3.handlebars->35->2884", - "default3.handlebars->35->2989", - "default3.handlebars->35->978" + "default.handlebars->47->2211", + "default.handlebars->47->2894", + "default.handlebars->47->2999", + "default.handlebars->47->985", + "default3.handlebars->35->2207", + "default3.handlebars->35->2888", + "default3.handlebars->35->2993", + "default3.handlebars->35->982" ] }, { @@ -34431,14 +34444,14 @@ "zh-cht": "過濾", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1", - "default.handlebars->47->1557", + "default.handlebars->47->1561", "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->p16->3->1->0->5", "default.handlebars->container->column_l->p3->3->1->0->5", "default.handlebars->container->column_l->p31->3->1->0->5", "default.handlebars->container->column_l->p4->3->1->0->3->3", - "default3.handlebars->35->1542", + "default3.handlebars->35->1546", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar", "default3.handlebars->container->column_l->p1->devListToolbarSpan->kvmListToolbar", "default3.handlebars->container->column_l->p16->3->1->0->1->1->1", @@ -34449,30 +34462,30 @@ ] }, { - "bs": "Filter: user:xxx ili u:xxx ip:xxx group:xxx ili g:xxx tag:xxx ili t: xxx atag:xxx ili a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "ca": "Filtre: usuari:xxx o u:xxx ip:xxx grup:xxx o g:xxx etiqueta:xxx o t: xxx atag:xxx o a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "cs": "Filtr: uživatel:xxx nebo u:xxx ip:xxx skupina:xxx nebo g:xxx tag:xxx nebo t: xxx atag:xxx nebo a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "da": "Filter: bruger:xxx eller u:xxx ip:xxx group:xxx eller g:xxx tag:xxx eller t: xxx atag:xxx eller a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: nuupdate wsc:nofirewall wsc:any", - "de": "Filter: user:xxx oder u:xxx ip:xxx group:xxx oder g:xxx tag:xxx oder t: xxx atag:xxx oder a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: kein Update wsc:nofirewall wsc:beliebig", - "en": "Filter: user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t: xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "es": "Filtro: usuario:xxx o u:xxx ip:xxx grupo:xxx o g:xxx etiqueta:xxx o t: xxx atag:xxx o a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:cualquiera", - "fi": "Suodatin: user:xxx tai u:xxx ip:xxx group:xxx tai g:xxx tag:xxx tai t: xxx atag:xxx tai a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "fr": "Filtre : utilisateur:xxx ou u:xxx ip:xxx groupe:xxx ou g:xxx tag:xxx ou t:xxx atag:xxx ou a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "hi": "फ़िल्टर: उपयोगकर्ता: xxx या यू: xxx आईपी: xxx समूह: xxx या जी: xxx टैग: xxx या टी: xxx atag: xxx या a: xxx ओएस: xxx amt: xxx desc: xxx wsc: ठीक wsc: noav wsc: noupdate wsc:nofirewall wsc:any", - "hu": "Szűrőpő: user:xxx vagy u:xxx ip:xxx group:xxx vagy g:xxx tag:xxx vagy t: xxx atag:xxx vagy a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "it": "Filtro: utente:xxx o u:xxx ip:xxx gruppo:xxx o g:xxx tag:xxx o t: xxx atag:xxx o a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:qualsiasi", - "ja": "フィルタ:user:xxxまたはu:xxx ip:xxx group:xxxまたはg:xxx tag:xxxまたはt:xxx atag:xxxまたはa:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "ko": "필터: 사용자:xxx 또는 u:xxx ip:xxx 그룹:xxx 또는 g:xxx 태그:xxx 또는 t: xxx atag:xxx 또는 a:xxx os:xxx amt:xxx 설명:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "nl": "Filter: user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t: xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "pl": "Filtr: użytkownik:xxx lub u:xxx ip:xxx grupa:xxx lub g:xxx tag:xxx lub t: xxx atag:xxx lub a:xxx os:xxx amt:xxx opis:xxx wsc:ok wsc:brakav wsc:brakaktualizacji wsc:brakfirewalla wsc:każdy", - "pt": "Filtro: user:xxx ou u:xxx ip:xxx group:xxx ou g:xxx tag:xxx ou t: xxx atag:xxx ou a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "pt-br": "Filtro: usuário: xxx ou u:xxx ip:xxx grupo:xxx ou g:xxx tag:xxx ou t: xxx atag:xxx ou a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "ru": "Фильтр: user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t: xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "sv": "Filter: user:xxx eller u:xxx ip:xxx group:xxx eller g:xxx tag:xxx eller t: xxx atag:xxx eller a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: nupdate wsc:nofirewall wsc:any", - "tr": "Filtre: user:xxx veya u:xxx ip:xxx group:xxx veya g:xxx etiketi:xxx veya t: xxx atag:xxx veya a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:herhangi biri", - "uk": "Фільтр: user:xxx або u:xxx ip:xxx group:xxx або g:xxx tag:xxx або t: xxx atag:xxx або a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any", - "zh-chs": "过滤器:user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t:xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", - "zh-cht": "過濾器:user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t:xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any", + "bs": "Filter: user:xxx ili u:xxx ip:xxx group:xxx ili g:xxx tag:xxx ili t: xxx atag:xxx ili a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "ca": "Filtre: usuari:xxx o u:xxx ip:xxx grup:xxx o g:xxx etiqueta:xxx o t: xxx atag:xxx o a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "cs": "Filtr: uživatel:xxx nebo u:xxx ip:xxx skupina:xxx nebo g:xxx tag:xxx nebo t: xxx atag:xxx nebo a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "da": "Filter: bruger:xxx eller u:xxx ip:xxx group:xxx eller g:xxx tag:xxx eller t: xxx atag:xxx eller a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: nuupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "de": "Filter: user:xxx oder u:xxx ip:xxx group:xxx oder g:xxx tag:xxx oder t: xxx atag:xxx oder a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: kein Update wsc:nofirewall wsc:beliebig connectivity:xxx c:xxx", + "en": "Filter: user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t: xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "es": "Filtro: usuario:xxx o u:xxx ip:xxx grupo:xxx o g:xxx etiqueta:xxx o t: xxx atag:xxx o a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:cualquiera connectivity:xxx c:xxx", + "fi": "Suodatin: user:xxx tai u:xxx ip:xxx group:xxx tai g:xxx tag:xxx tai t: xxx atag:xxx tai a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "fr": "Filtre : utilisateur:xxx ou u:xxx ip:xxx groupe:xxx ou g:xxx tag:xxx ou t:xxx atag:xxx ou a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "hi": "फ़िल्टर: उपयोगकर्ता: xxx या यू: xxx आईपी: xxx समूह: xxx या जी: xxx टैग: xxx या टी: xxx atag: xxx या a: xxx ओएस: xxx amt: xxx desc: xxx wsc: ठीक wsc: noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "hu": "Szűrőpő: user:xxx vagy u:xxx ip:xxx group:xxx vagy g:xxx tag:xxx vagy t: xxx atag:xxx vagy a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "it": "Filtro: utente:xxx o u:xxx ip:xxx gruppo:xxx o g:xxx tag:xxx o t: xxx atag:xxx o a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:qualsiasi connectivity:xxx c:xxx", + "ja": "フィルタ:user:xxxまたはu:xxx ip:xxx group:xxxまたはg:xxx tag:xxxまたはt:xxx atag:xxxまたはa:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "ko": "필터: 사용자:xxx 또는 u:xxx ip:xxx 그룹:xxx 또는 g:xxx 태그:xxx 또는 t: xxx atag:xxx 또는 a:xxx os:xxx amt:xxx 설명:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "nl": "Filter: user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t: xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "pl": "Filtr: użytkownik:xxx lub u:xxx ip:xxx grupa:xxx lub g:xxx tag:xxx lub t: xxx atag:xxx lub a:xxx os:xxx amt:xxx opis:xxx wsc:ok wsc:brakav wsc:brakaktualizacji wsc:brakfirewalla wsc:każdy connectivity:xxx c:xxx", + "pt": "Filtro: user:xxx ou u:xxx ip:xxx group:xxx ou g:xxx tag:xxx ou t: xxx atag:xxx ou a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "pt-br": "Filtro: usuário: xxx ou u:xxx ip:xxx grupo:xxx ou g:xxx tag:xxx ou t: xxx atag:xxx ou a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "ru": "Фильтр: user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t: xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "sv": "Filter: user:xxx eller u:xxx ip:xxx group:xxx eller g:xxx tag:xxx eller t: xxx atag:xxx eller a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: nupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "tr": "Filtre: user:xxx veya u:xxx ip:xxx group:xxx veya g:xxx etiketi:xxx veya t: xxx atag:xxx veya a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:herhangi biri connectivity:xxx c:xxx", + "uk": "Фільтр: user:xxx або u:xxx ip:xxx group:xxx або g:xxx tag:xxx або t: xxx atag:xxx або a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc:noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "zh-chs": "过滤器:user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t:xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", + "zh-cht": "過濾器:user:xxx or u:xxx ip:xxx group:xxx or g:xxx tag:xxx or t:xxx atag:xxx or a:xxx os:xxx amt:xxx desc:xxx wsc:ok wsc:noav wsc: noupdate wsc:nofirewall wsc:any connectivity:xxx c:xxx", "xloc": [ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar", @@ -34536,8 +34549,8 @@ "zh-chs": "查找文件", "zh-cht": "查找文件", "xloc": [ - "default.handlebars->47->1560", - "default3.handlebars->35->1545", + "default.handlebars->47->1564", + "default3.handlebars->35->1549", "sharing.handlebars->11->54" ] }, @@ -34567,8 +34580,8 @@ "zh-chs": "已完成录制会话 \\\"{0}\\\",{1} 秒", "zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒", "xloc": [ - "default.handlebars->47->2683", - "default3.handlebars->35->2680" + "default.handlebars->47->2687", + "default3.handlebars->35->2684" ] }, { @@ -34597,8 +34610,8 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->47->2544", - "default3.handlebars->35->2541" + "default.handlebars->47->2548", + "default3.handlebars->35->2545" ] }, { @@ -34628,8 +34641,8 @@ "zh-cht": "芬蘭", "xloc": [ "default-mobile.handlebars->11->180", - "default.handlebars->47->1920", - "default3.handlebars->35->1901", + "default.handlebars->47->1924", + "default3.handlebars->35->1905", "login2.handlebars->7->66" ] }, @@ -34669,10 +34682,10 @@ "xloc": [ "default-mobile.handlebars->11->767", "default-mobile.handlebars->11->769", - "default.handlebars->47->954", - "default.handlebars->47->956", - "default3.handlebars->35->951", - "default3.handlebars->35->953" + "default.handlebars->47->958", + "default.handlebars->47->960", + "default3.handlebars->35->955", + "default3.handlebars->35->957" ] }, { @@ -34701,10 +34714,10 @@ "zh-chs": "防火墙未激活", "zh-cht": "防火牆未激活", "xloc": [ - "default.handlebars->47->2474", - "default.handlebars->47->2488", - "default3.handlebars->35->2471", - "default3.handlebars->35->2485" + "default.handlebars->47->2478", + "default.handlebars->47->2492", + "default3.handlebars->35->2475", + "default3.handlebars->35->2489" ] }, { @@ -34715,8 +34728,8 @@ "pl": "Pierwsza Awaria", "uk": "Перша Невдача", "xloc": [ - "default.handlebars->47->1485", - "default3.handlebars->35->1471" + "default.handlebars->47->1489", + "default3.handlebars->35->1475" ] }, { @@ -34780,8 +34793,8 @@ "zh-chs": "标志", "zh-cht": "標誌", "xloc": [ - "default.handlebars->47->2702", - "default3.handlebars->35->2699" + "default.handlebars->47->2706", + "default3.handlebars->35->2703" ] }, { @@ -34811,15 +34824,15 @@ "zh-cht": "閃光", "xloc": [ "default-mobile.handlebars->11->581", - "default.handlebars->47->1261", - "default3.handlebars->35->1256" + "default.handlebars->47->1265", + "default3.handlebars->35->1260" ] }, { "en": "Flatly", "nl": "Plat", "xloc": [ - "default3.handlebars->35->2085" + "default3.handlebars->35->2089" ] }, { @@ -35082,10 +35095,10 @@ "zh-cht": "強制代理更新", "xloc": [ "default-mobile.handlebars->11->937", - "default.handlebars->47->1783", + "default.handlebars->47->1787", "default.handlebars->47->755", "default.handlebars->47->796", - "default3.handlebars->35->1766", + "default3.handlebars->35->1770", "default3.handlebars->35->752", "default3.handlebars->35->793" ] @@ -35146,10 +35159,10 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->47->2824", - "default.handlebars->47->3089", - "default3.handlebars->35->2820", - "default3.handlebars->35->3077" + "default.handlebars->47->2828", + "default.handlebars->47->3093", + "default3.handlebars->35->2824", + "default3.handlebars->35->3081" ] }, { @@ -35178,8 +35191,8 @@ "zh-chs": "强行断开用户 {0} 的桌面会话", "zh-cht": "強行斷開用戶 {0} 的桌面會話", "xloc": [ - "default.handlebars->47->2671", - "default3.handlebars->35->2668" + "default.handlebars->47->2675", + "default3.handlebars->35->2672" ] }, { @@ -35208,8 +35221,8 @@ "zh-chs": "强制断开用户 {0} 的文件会话", "zh-cht": "強制斷開用戶 {0} 的文件會話", "xloc": [ - "default.handlebars->47->2673", - "default3.handlebars->35->2670" + "default.handlebars->47->2677", + "default3.handlebars->35->2674" ] }, { @@ -35238,8 +35251,8 @@ "zh-chs": "强制断开用户 {0} 的路由会话", "zh-cht": "強制斷開用戶 {0} 的路由會話", "xloc": [ - "default.handlebars->47->2674", - "default3.handlebars->35->2671" + "default.handlebars->47->2678", + "default3.handlebars->35->2675" ] }, { @@ -35268,8 +35281,8 @@ "zh-chs": "强制断开用户 {0} 的终端会话", "zh-cht": "強制斷開用戶 {0} 的終端會話", "xloc": [ - "default.handlebars->47->2672", - "default3.handlebars->35->2669" + "default.handlebars->47->2676", + "default3.handlebars->35->2673" ] }, { @@ -35388,8 +35401,8 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->47->2720", - "default3.handlebars->35->2717" + "default.handlebars->47->2724", + "default3.handlebars->35->2721" ] }, { @@ -35446,7 +35459,7 @@ "xloc": [ "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->7->1", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->d7meshkvm->7->1", - "player.handlebars->3->47", + "player.handlebars->3->50", "sharing.handlebars->dialog->dialogBody->dialog7->d7meshkvm->7->1" ] }, @@ -35476,10 +35489,10 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->47->3319", - "default.handlebars->47->3321", - "default3.handlebars->35->3307", - "default3.handlebars->35->3309" + "default.handlebars->47->3342", + "default.handlebars->47->3344", + "default3.handlebars->35->3330", + "default3.handlebars->35->3332" ] }, { @@ -35492,10 +35505,10 @@ "pl": "Darmowa usługa z ntfy.sh", "uk": "Безкоштовний сервіс від ntfy.sh", "xloc": [ - "default.handlebars->47->1816", - "default.handlebars->47->3053", - "default3.handlebars->35->1798", - "default3.handlebars->35->3047" + "default.handlebars->47->1820", + "default.handlebars->47->3057", + "default3.handlebars->35->1802", + "default3.handlebars->35->3051" ] }, { @@ -35556,8 +35569,8 @@ "zh-cht": "法語(比利時)", "xloc": [ "default-mobile.handlebars->11->182", - "default.handlebars->47->1922", - "default3.handlebars->35->1903", + "default.handlebars->47->1926", + "default3.handlebars->35->1907", "login2.handlebars->7->68" ] }, @@ -35588,8 +35601,8 @@ "zh-cht": "法語(加拿大)", "xloc": [ "default-mobile.handlebars->11->183", - "default.handlebars->47->1923", - "default3.handlebars->35->1904", + "default.handlebars->47->1927", + "default3.handlebars->35->1908", "login2.handlebars->7->69" ] }, @@ -35620,8 +35633,8 @@ "zh-cht": "法語(法國)", "xloc": [ "default-mobile.handlebars->11->184", - "default.handlebars->47->1924", - "default3.handlebars->35->1905", + "default.handlebars->47->1928", + "default3.handlebars->35->1909", "login2.handlebars->7->70" ] }, @@ -35652,8 +35665,8 @@ "zh-cht": "法語(盧森堡)", "xloc": [ "default-mobile.handlebars->11->185", - "default.handlebars->47->1925", - "default3.handlebars->35->1906", + "default.handlebars->47->1929", + "default3.handlebars->35->1910", "login2.handlebars->7->71" ] }, @@ -35684,8 +35697,8 @@ "zh-cht": "法語(摩納哥)", "xloc": [ "default-mobile.handlebars->11->186", - "default.handlebars->47->1926", - "default3.handlebars->35->1907", + "default.handlebars->47->1930", + "default3.handlebars->35->1911", "login2.handlebars->7->72" ] }, @@ -35716,8 +35729,8 @@ "zh-cht": "法語(標準)", "xloc": [ "default-mobile.handlebars->11->181", - "default.handlebars->47->1921", - "default3.handlebars->35->1902", + "default.handlebars->47->1925", + "default3.handlebars->35->1906", "login2.handlebars->7->67" ] }, @@ -35748,8 +35761,8 @@ "zh-cht": "法語(瑞士)", "xloc": [ "default-mobile.handlebars->11->187", - "default.handlebars->47->1927", - "default3.handlebars->35->1908", + "default.handlebars->47->1931", + "default3.handlebars->35->1912", "login2.handlebars->7->73" ] }, @@ -35780,8 +35793,8 @@ "zh-cht": "弗里斯蘭語", "xloc": [ "default-mobile.handlebars->11->188", - "default.handlebars->47->1928", - "default3.handlebars->35->1909", + "default.handlebars->47->1932", + "default3.handlebars->35->1913", "login2.handlebars->7->74" ] }, @@ -35812,8 +35825,8 @@ "zh-cht": "弗留利", "xloc": [ "default-mobile.handlebars->11->189", - "default.handlebars->47->1929", - "default3.handlebars->35->1910", + "default.handlebars->47->1933", + "default3.handlebars->35->1914", "login2.handlebars->7->75" ] }, @@ -35847,12 +35860,12 @@ "default-mobile.handlebars->11->961", "default-mobile.handlebars->11->979", "default-mobile.handlebars->11->999", - "default.handlebars->47->2135", - "default.handlebars->47->2361", - "default.handlebars->47->2836", - "default3.handlebars->35->2135", - "default3.handlebars->35->2358", - "default3.handlebars->35->2830" + "default.handlebars->47->2139", + "default.handlebars->47->2365", + "default.handlebars->47->2840", + "default3.handlebars->35->2139", + "default3.handlebars->35->2362", + "default3.handlebars->35->2834" ] }, { @@ -35881,8 +35894,8 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->47->2400", - "default3.handlebars->35->2397" + "default.handlebars->47->2404", + "default3.handlebars->35->2401" ] }, { @@ -35937,8 +35950,8 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->47->1135", - "default3.handlebars->35->1130" + "default.handlebars->47->1139", + "default3.handlebars->35->1134" ] }, { @@ -35967,8 +35980,8 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->47->1157", - "default3.handlebars->35->1152" + "default.handlebars->47->1161", + "default3.handlebars->35->1156" ] }, { @@ -36063,8 +36076,8 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->47->2941", - "default3.handlebars->35->2935" + "default.handlebars->47->2945", + "default3.handlebars->35->2939" ] }, { @@ -36093,10 +36106,10 @@ "zh-chs": "全自动的", "zh-cht": "全自動的", "xloc": [ - "default.handlebars->47->2228", - "default.handlebars->47->2289", - "default3.handlebars->35->2224", - "default3.handlebars->35->2283" + "default.handlebars->47->2232", + "default.handlebars->47->2293", + "default3.handlebars->35->2228", + "default3.handlebars->35->2287" ] }, { @@ -36107,8 +36120,8 @@ "uk": "Повністю Розшифрований", "xloc": [ "default-mobile.handlebars->11->896", - "default.handlebars->47->1741", - "default3.handlebars->35->1724" + "default.handlebars->47->1745", + "default3.handlebars->35->1728" ] }, { @@ -36119,8 +36132,8 @@ "uk": "Повністю Зашифрований", "xloc": [ "default-mobile.handlebars->11->898", - "default.handlebars->47->1743", - "default3.handlebars->35->1726" + "default.handlebars->47->1747", + "default3.handlebars->35->1730" ] }, { @@ -36180,8 +36193,8 @@ "zh-cht": "GPU", "xloc": [ "default-mobile.handlebars->11->850", - "default.handlebars->47->1695", - "default3.handlebars->35->1678" + "default.handlebars->47->1699", + "default3.handlebars->35->1682" ] }, { @@ -36211,8 +36224,8 @@ "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ "default-mobile.handlebars->11->191", - "default.handlebars->47->1931", - "default3.handlebars->35->1912", + "default.handlebars->47->1935", + "default3.handlebars->35->1916", "login2.handlebars->7->77" ] }, @@ -36243,8 +36256,8 @@ "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ "default-mobile.handlebars->11->190", - "default.handlebars->47->1930", - "default3.handlebars->35->1911", + "default.handlebars->47->1934", + "default3.handlebars->35->1915", "login2.handlebars->7->76" ] }, @@ -36274,8 +36287,8 @@ "zh-cht": "加拉契語", "xloc": [ "default-mobile.handlebars->11->192", - "default.handlebars->47->1932", - "default3.handlebars->35->1913", + "default.handlebars->47->1936", + "default3.handlebars->35->1917", "login2.handlebars->7->78" ] }, @@ -36335,8 +36348,8 @@ "zh-cht": "網關:{0}", "xloc": [ "default-mobile.handlebars->11->812", - "default.handlebars->47->1657", - "default3.handlebars->35->1642" + "default.handlebars->47->1661", + "default3.handlebars->35->1646" ] }, { @@ -36436,8 +36449,8 @@ "zh-chs": "一般信息", "zh-cht": "一般訊息", "xloc": [ - "default.handlebars->47->870", - "default3.handlebars->35->867" + "default.handlebars->47->874", + "default3.handlebars->35->871" ] }, { @@ -36496,8 +36509,8 @@ "zh-chs": "生成报告", "zh-cht": "生成報告", "xloc": [ - "default.handlebars->47->3197", - "default3.handlebars->35->3185" + "default.handlebars->47->3207", + "default3.handlebars->35->3195" ] }, { @@ -36557,8 +36570,8 @@ "zh-cht": "格魯吉亞文", "xloc": [ "default-mobile.handlebars->11->193", - "default.handlebars->47->1933", - "default3.handlebars->35->1914", + "default.handlebars->47->1937", + "default3.handlebars->35->1918", "login2.handlebars->7->79" ] }, @@ -36589,8 +36602,8 @@ "zh-cht": "德語(奧地利)", "xloc": [ "default-mobile.handlebars->11->195", - "default.handlebars->47->1935", - "default3.handlebars->35->1916", + "default.handlebars->47->1939", + "default3.handlebars->35->1920", "login2.handlebars->7->81" ] }, @@ -36621,8 +36634,8 @@ "zh-cht": "德文(德國)", "xloc": [ "default-mobile.handlebars->11->196", - "default.handlebars->47->1936", - "default3.handlebars->35->1917", + "default.handlebars->47->1940", + "default3.handlebars->35->1921", "login2.handlebars->7->82" ] }, @@ -36653,8 +36666,8 @@ "zh-cht": "德文(列支敦士登)", "xloc": [ "default-mobile.handlebars->11->197", - "default.handlebars->47->1937", - "default3.handlebars->35->1918", + "default.handlebars->47->1941", + "default3.handlebars->35->1922", "login2.handlebars->7->83" ] }, @@ -36685,8 +36698,8 @@ "zh-cht": "德語(盧森堡)", "xloc": [ "default-mobile.handlebars->11->198", - "default.handlebars->47->1938", - "default3.handlebars->35->1919", + "default.handlebars->47->1942", + "default3.handlebars->35->1923", "login2.handlebars->7->84" ] }, @@ -36717,8 +36730,8 @@ "zh-cht": "德語(標準)", "xloc": [ "default-mobile.handlebars->11->194", - "default.handlebars->47->1934", - "default3.handlebars->35->1915", + "default.handlebars->47->1938", + "default3.handlebars->35->1919", "login2.handlebars->7->80" ] }, @@ -36749,8 +36762,8 @@ "zh-cht": "德文(瑞士)", "xloc": [ "default-mobile.handlebars->11->199", - "default.handlebars->47->1939", - "default3.handlebars->35->1920", + "default.handlebars->47->1943", + "default3.handlebars->35->1924", "login2.handlebars->7->85" ] }, @@ -36780,8 +36793,8 @@ "zh-chs": "获取剪贴板", "zh-cht": "獲取剪貼板", "xloc": [ - "default.handlebars->47->1459", - "default3.handlebars->35->1446" + "default.handlebars->47->1463", + "default3.handlebars->35->1450" ] }, { @@ -36810,8 +36823,8 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->47->1067", - "default3.handlebars->35->1064" + "default.handlebars->47->1071", + "default3.handlebars->35->1068" ] }, { @@ -36871,8 +36884,8 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->47->2558", - "default3.handlebars->35->2555" + "default.handlebars->47->2562", + "default3.handlebars->35->2559" ] }, { @@ -36893,8 +36906,8 @@ "pl": "Przejdź do Folderu", "uk": "Перейти до Теки", "xloc": [ - "default.handlebars->47->1556", - "default3.handlebars->35->1541" + "default.handlebars->47->1560", + "default3.handlebars->35->1545" ] }, { @@ -37058,8 +37071,8 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->47->2131", - "default3.handlebars->35->2131" + "default.handlebars->47->2135", + "default3.handlebars->35->2135" ] }, { @@ -37153,11 +37166,11 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->47->2152", - "default.handlebars->47->2155", + "default.handlebars->47->2156", + "default.handlebars->47->2159", "default.handlebars->47->334", - "default3.handlebars->35->2152", - "default3.handlebars->35->2155", + "default3.handlebars->35->2156", + "default3.handlebars->35->2159", "default3.handlebars->35->331" ] }, @@ -37187,8 +37200,8 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->47->2149", - "default3.handlebars->35->2149" + "default.handlebars->47->2153", + "default3.handlebars->35->2153" ] }, { @@ -37247,8 +37260,8 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->47->2153", - "default3.handlebars->35->2153" + "default.handlebars->47->2157", + "default3.handlebars->35->2157" ] }, { @@ -37308,8 +37321,8 @@ "zh-cht": "希臘文", "xloc": [ "default-mobile.handlebars->11->200", - "default.handlebars->47->1940", - "default3.handlebars->35->1921", + "default.handlebars->47->1944", + "default3.handlebars->35->1925", "login2.handlebars->7->86" ] }, @@ -37340,11 +37353,11 @@ "zh-cht": "群", "xloc": [ "default-mobile.handlebars->11->492", - "default.handlebars->47->3213", - "default.handlebars->47->898", + "default.handlebars->47->3223", + "default.handlebars->47->902", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1", - "default3.handlebars->35->3201", - "default3.handlebars->35->895", + "default3.handlebars->35->3211", + "default3.handlebars->35->899", "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->1" ] }, @@ -37374,14 +37387,14 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->47->2770", - "default.handlebars->47->2860", + "default.handlebars->47->2774", + "default.handlebars->47->2864", "default.handlebars->47->760", "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->p50userGroupOps", - "default3.handlebars->35->2767", - "default3.handlebars->35->2854", + "default3.handlebars->35->2771", + "default3.handlebars->35->2858", "default3.handlebars->35->757", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar", "default3.handlebars->container->column_l->p4->3->1->0->1->1", @@ -37414,8 +37427,8 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->47->2716", - "default3.handlebars->35->2713" + "default.handlebars->47->2720", + "default3.handlebars->35->2717" ] }, { @@ -37445,8 +37458,8 @@ "zh-cht": "群標識符", "xloc": [ "agent-translations.json", - "default.handlebars->47->2877", - "default3.handlebars->35->2871" + "default.handlebars->47->2881", + "default3.handlebars->35->2875" ] }, { @@ -37475,8 +37488,8 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->47->2902", - "default3.handlebars->35->2896" + "default.handlebars->47->2906", + "default3.handlebars->35->2900" ] }, { @@ -37520,8 +37533,8 @@ "pl": "Typ Grupy", "uk": "Тип Групи", "xloc": [ - "default.handlebars->47->2878", - "default3.handlebars->35->2872" + "default.handlebars->47->2882", + "default3.handlebars->35->2876" ] }, { @@ -37550,10 +37563,10 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->47->3181", - "default.handlebars->47->3184", - "default3.handlebars->35->3169", - "default3.handlebars->35->3172" + "default.handlebars->47->3191", + "default.handlebars->47->3194", + "default3.handlebars->35->3179", + "default3.handlebars->35->3182" ] }, { @@ -37582,8 +37595,8 @@ "zh-chs": "团队名字", "zh-cht": "團隊名字", "xloc": [ - "default.handlebars->47->2700", - "default3.handlebars->35->2697" + "default.handlebars->47->2704", + "default3.handlebars->35->2701" ] }, { @@ -37612,8 +37625,8 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->47->2360", - "default3.handlebars->35->2357" + "default.handlebars->47->2364", + "default3.handlebars->35->2361" ] }, { @@ -37642,8 +37655,8 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->47->2359", - "default3.handlebars->35->2356" + "default.handlebars->47->2363", + "default3.handlebars->35->2360" ] }, { @@ -37761,8 +37774,8 @@ "zh-chs": "来宾", "zh-cht": "來賓", "xloc": [ - "default.handlebars->47->3203", - "default3.handlebars->35->3191" + "default.handlebars->47->3213", + "default3.handlebars->35->3201" ] }, { @@ -37791,9 +37804,9 @@ "zh-chs": "访客姓名", "zh-cht": "來賓姓名", "xloc": [ - "default.handlebars->47->1213", + "default.handlebars->47->1217", "default.handlebars->47->296", - "default3.handlebars->35->1208", + "default3.handlebars->35->1212", "default3.handlebars->35->293" ] }, @@ -37823,10 +37836,10 @@ "zh-chs": "嘉宾分享", "zh-cht": "嘉賓分享", "xloc": [ - "default.handlebars->47->1142", - "default.handlebars->47->1167", - "default3.handlebars->35->1137", - "default3.handlebars->35->1162" + "default.handlebars->47->1146", + "default.handlebars->47->1171", + "default3.handlebars->35->1141", + "default3.handlebars->35->1166" ] }, { @@ -37855,8 +37868,8 @@ "zh-chs": "嘉宾分享", "zh-cht": "嘉賓分享", "xloc": [ - "default.handlebars->47->2368", - "default3.handlebars->35->2365" + "default.handlebars->47->2372", + "default3.handlebars->35->2369" ] }, { @@ -37886,8 +37899,8 @@ "zh-cht": "古久拉提", "xloc": [ "default-mobile.handlebars->11->201", - "default.handlebars->47->1941", - "default3.handlebars->35->1922", + "default.handlebars->47->1945", + "default3.handlebars->35->1926", "login2.handlebars->7->87" ] }, @@ -37918,13 +37931,13 @@ "zh-cht": "HTTP", "xloc": [ "default-mobile.handlebars->11->561", - "default.handlebars->47->1052", - "default.handlebars->47->1220", - "default.handlebars->47->3358", + "default.handlebars->47->1056", + "default.handlebars->47->1224", + "default.handlebars->47->3381", "default.handlebars->47->450", - "default3.handlebars->35->1049", - "default3.handlebars->35->1215", - "default3.handlebars->35->3346", + "default3.handlebars->35->1053", + "default3.handlebars->35->1219", + "default3.handlebars->35->3369", "default3.handlebars->35->447" ] }, @@ -37953,8 +37966,8 @@ "zh-chs": "HTTP 连接", "zh-cht": "HTTP 連接", "xloc": [ - "default.handlebars->47->859", - "default3.handlebars->35->856" + "default.handlebars->47->863", + "default3.handlebars->35->860" ] }, { @@ -37982,8 +37995,8 @@ "zh-chs": "HTTP远程连接端口:", "zh-cht": "HTTP遠程連接端口:", "xloc": [ - "default.handlebars->47->858", - "default3.handlebars->35->855" + "default.handlebars->47->862", + "default3.handlebars->35->859" ] }, { @@ -38010,10 +38023,10 @@ "tr": "HTTP/", "uk": "HTTP/", "xloc": [ - "default.handlebars->47->1106", - "default.handlebars->47->2259", - "default3.handlebars->35->1103", - "default3.handlebars->35->2255" + "default.handlebars->47->1110", + "default.handlebars->47->2263", + "default3.handlebars->35->1107", + "default3.handlebars->35->2259" ] }, { @@ -38058,11 +38071,11 @@ "zh-cht": "HTTPS", "xloc": [ "default-mobile.handlebars->11->562", - "default.handlebars->47->1053", - "default.handlebars->47->1221", + "default.handlebars->47->1057", + "default.handlebars->47->1225", "default.handlebars->47->451", - "default3.handlebars->35->1050", - "default3.handlebars->35->1216", + "default3.handlebars->35->1054", + "default3.handlebars->35->1220", "default3.handlebars->35->448" ] }, @@ -38091,8 +38104,8 @@ "zh-chs": "HTTPS 连接", "zh-cht": "HTTPS 連接", "xloc": [ - "default.handlebars->47->861", - "default3.handlebars->35->858" + "default.handlebars->47->865", + "default3.handlebars->35->862" ] }, { @@ -38120,8 +38133,8 @@ "zh-chs": "HTTPS远程连接端口:", "zh-cht": "HTTPS遠程連接端口:", "xloc": [ - "default.handlebars->47->860", - "default3.handlebars->35->857" + "default.handlebars->47->864", + "default3.handlebars->35->861" ] }, { @@ -38148,10 +38161,10 @@ "tr": "HTTPS/", "uk": "HTTPS/", "xloc": [ - "default.handlebars->47->1107", - "default.handlebars->47->2260", - "default3.handlebars->35->1104", - "default3.handlebars->35->2256" + "default.handlebars->47->1111", + "default.handlebars->47->2264", + "default3.handlebars->35->1108", + "default3.handlebars->35->2260" ] }, { @@ -38244,8 +38257,8 @@ "zh-cht": "海地文", "xloc": [ "default-mobile.handlebars->11->202", - "default.handlebars->47->1942", - "default3.handlebars->35->1923", + "default.handlebars->47->1946", + "default3.handlebars->35->1927", "login2.handlebars->7->88" ] }, @@ -38260,10 +38273,10 @@ "pl": "Obsługa", "uk": "Обробка", "xloc": [ - "default.handlebars->47->1809", - "default.handlebars->47->3046", - "default3.handlebars->35->1791", - "default3.handlebars->35->3040" + "default.handlebars->47->1813", + "default.handlebars->47->3050", + "default3.handlebars->35->1795", + "default3.handlebars->35->3044" ] }, { @@ -38352,8 +38365,8 @@ "zh-cht": "強行斷開代理", "xloc": [ "default-mobile.handlebars->11->933", - "default.handlebars->47->1779", - "default3.handlebars->35->1762" + "default.handlebars->47->1783", + "default3.handlebars->35->1766" ] }, { @@ -38382,8 +38395,8 @@ "zh-chs": "硬件一次性密码", "zh-cht": "硬件一次性密碼", "xloc": [ - "default.handlebars->47->3238", - "default3.handlebars->35->3226" + "default.handlebars->47->3251", + "default3.handlebars->35->3239" ] }, { @@ -38442,8 +38455,8 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->47->3377", - "default3.handlebars->35->3365" + "default.handlebars->47->3400", + "default3.handlebars->35->3388" ] }, { @@ -38472,8 +38485,8 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->47->3376", - "default3.handlebars->35->3364" + "default.handlebars->47->3399", + "default3.handlebars->35->3387" ] }, { @@ -38503,8 +38516,8 @@ "zh-cht": "希伯來文", "xloc": [ "default-mobile.handlebars->11->203", - "default.handlebars->47->1943", - "default3.handlebars->35->1924", + "default.handlebars->47->1947", + "default3.handlebars->35->1928", "login2.handlebars->7->89" ] }, @@ -38623,8 +38636,8 @@ "zh-chs": "已请求帮助,用户:{0},详细信息:{1}", "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "xloc": [ - "default.handlebars->47->2635", - "default3.handlebars->35->2632" + "default.handlebars->47->2639", + "default3.handlebars->35->2636" ] }, { @@ -38700,14 +38713,14 @@ "pl": "Prośby pomocy", "uk": "Запит допомоги", "xloc": [ - "default.handlebars->47->1129", "default.handlebars->47->1133", - "default.handlebars->47->2461", + "default.handlebars->47->1137", "default.handlebars->47->2465", - "default3.handlebars->35->1124", + "default.handlebars->47->2469", "default3.handlebars->35->1128", - "default3.handlebars->35->2458", - "default3.handlebars->35->2462" + "default3.handlebars->35->1132", + "default3.handlebars->35->2462", + "default3.handlebars->35->2466" ] }, { @@ -38737,8 +38750,8 @@ "zh-cht": "幫助翻譯MeshCentral", "xloc": [ "default-mobile.handlebars->11->318", - "default.handlebars->47->2058", - "default3.handlebars->35->2039" + "default.handlebars->47->2062", + "default3.handlebars->35->2043" ] }, { @@ -38890,8 +38903,8 @@ "zh-cht": "印地文", "xloc": [ "default-mobile.handlebars->11->204", - "default.handlebars->47->1944", - "default3.handlebars->35->1925", + "default.handlebars->47->1948", + "default3.handlebars->35->1929", "login2.handlebars->7->90" ] }, @@ -38948,8 +38961,8 @@ "zh-cht": "保存1個項目進行複製", "xloc": [ "default-mobile.handlebars->11->735", - "default.handlebars->47->1584", - "default3.handlebars->35->1569", + "default.handlebars->47->1588", + "default3.handlebars->35->1573", "sharing-mobile.handlebars->11->99", "sharing.handlebars->11->76" ] @@ -38981,8 +38994,8 @@ "zh-cht": "保存1個項目進行移動", "xloc": [ "default-mobile.handlebars->11->739", - "default.handlebars->47->1588", - "default3.handlebars->35->1573", + "default.handlebars->47->1592", + "default3.handlebars->35->1577", "sharing-mobile.handlebars->11->103", "sharing.handlebars->11->80" ] @@ -39014,8 +39027,8 @@ "zh-cht": "保留{0}個項目進行複製", "xloc": [ "default-mobile.handlebars->11->733", - "default.handlebars->47->1582", - "default3.handlebars->35->1567", + "default.handlebars->47->1586", + "default3.handlebars->35->1571", "sharing-mobile.handlebars->11->97", "sharing.handlebars->11->74" ] @@ -39047,8 +39060,8 @@ "zh-cht": "保存{0}個項目以進行移動", "xloc": [ "default-mobile.handlebars->11->737", - "default.handlebars->47->1586", - "default3.handlebars->35->1571", + "default.handlebars->47->1590", + "default3.handlebars->35->1575", "sharing-mobile.handlebars->11->101", "sharing.handlebars->11->78" ] @@ -39080,8 +39093,8 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->11->381", - "default.handlebars->47->2531", - "default3.handlebars->35->2528" + "default.handlebars->47->2535", + "default3.handlebars->35->2532" ] }, { @@ -39111,8 +39124,8 @@ "zh-cht": "家", "xloc": [ "default-mobile.handlebars->11->659", - "default.handlebars->47->1431", - "default3.handlebars->35->1418", + "default.handlebars->47->1435", + "default3.handlebars->35->1422", "sharing-mobile.handlebars->11->24" ] }, @@ -39148,20 +39161,20 @@ "default-mobile.handlebars->11->638", "default-mobile.handlebars->11->802", "default-mobile.handlebars->11->954", - "default.handlebars->47->1378", - "default.handlebars->47->1637", - "default.handlebars->47->2124", - "default.handlebars->47->2187", + "default.handlebars->47->1382", + "default.handlebars->47->1641", + "default.handlebars->47->2128", + "default.handlebars->47->2191", "default.handlebars->47->508", "default.handlebars->47->517", - "default.handlebars->47->903", - "default3.handlebars->35->1364", - "default3.handlebars->35->1622", - "default3.handlebars->35->2124", - "default3.handlebars->35->2183", + "default.handlebars->47->907", + "default3.handlebars->35->1368", + "default3.handlebars->35->1626", + "default3.handlebars->35->2128", + "default3.handlebars->35->2187", "default3.handlebars->35->505", "default3.handlebars->35->514", - "default3.handlebars->35->900" + "default3.handlebars->35->904" ] }, { @@ -39190,8 +39203,8 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->47->2194", - "default3.handlebars->35->2190" + "default.handlebars->47->2198", + "default3.handlebars->35->2194" ] }, { @@ -39232,8 +39245,8 @@ "zh-cht": "匈牙利文", "xloc": [ "default-mobile.handlebars->11->205", - "default.handlebars->47->1945", - "default3.handlebars->35->1926", + "default.handlebars->47->1949", + "default3.handlebars->35->1930", "login2.handlebars->7->91" ] }, @@ -39263,8 +39276,8 @@ "zh-chs": "服务器所需的混合", "zh-cht": "服務器所需的混合", "xloc": [ - "default.handlebars->47->1396", - "default3.handlebars->35->1383" + "default.handlebars->47->1400", + "default3.handlebars->35->1387" ] }, { @@ -39293,10 +39306,10 @@ "zh-chs": "IP地址", "zh-cht": "IP地址", "xloc": [ - "default.handlebars->47->3208", - "default.handlebars->47->3244", - "default3.handlebars->35->3196", - "default3.handlebars->35->3232" + "default.handlebars->47->3218", + "default.handlebars->47->3257", + "default3.handlebars->35->3206", + "default3.handlebars->35->3245" ] }, { @@ -39426,8 +39439,8 @@ "pl": "Zapisy o informacji lokalizacji IP", "uk": "Інформаційні записи про локацію IP", "xloc": [ - "default.handlebars->47->3250", - "default3.handlebars->35->3238" + "default.handlebars->47->3263", + "default3.handlebars->35->3251" ] }, { @@ -39491,8 +39504,8 @@ "zh-chs": "IP-KVM / 电源设备", "zh-cht": "IP-KVM / 電源設備", "xloc": [ - "default.handlebars->47->2114", - "default3.handlebars->35->2114" + "default.handlebars->47->2118", + "default3.handlebars->35->2118" ] }, { @@ -39521,8 +39534,8 @@ "zh-chs": "IP-KVM / 通过代理中继的电源设备", "zh-cht": "IP-KVM / 通過代理中繼的電源設備", "xloc": [ - "default.handlebars->47->2115", - "default3.handlebars->35->2115" + "default.handlebars->47->2119", + "default3.handlebars->35->2119" ] }, { @@ -39552,8 +39565,8 @@ "zh-cht": "IP-KVM 設備", "xloc": [ "default-mobile.handlebars->11->946", - "default.handlebars->47->2179", - "default3.handlebars->35->2175" + "default.handlebars->47->2183", + "default3.handlebars->35->2179" ] }, { @@ -39583,8 +39596,8 @@ "zh-cht": "通過代理中繼的 IP-KVM 設備", "xloc": [ "default-mobile.handlebars->11->947", - "default.handlebars->47->2180", - "default3.handlebars->35->2176" + "default.handlebars->47->2184", + "default3.handlebars->35->2180" ] }, { @@ -39613,10 +39626,10 @@ "zh-chs": "已连接 IP-KVM 端口", "zh-cht": "已連接 IP-KVM 端口", "xloc": [ - "default.handlebars->47->1073", - "default.handlebars->47->1074", - "default3.handlebars->35->1070", - "default3.handlebars->35->1071" + "default.handlebars->47->1077", + "default.handlebars->47->1078", + "default3.handlebars->35->1074", + "default3.handlebars->35->1075" ] }, { @@ -39706,10 +39719,10 @@ "zh-cht": "IP:{0}", "xloc": [ "default-mobile.handlebars->11->810", - "default.handlebars->47->1648", - "default.handlebars->47->1655", - "default3.handlebars->35->1633", - "default3.handlebars->35->1640" + "default.handlebars->47->1652", + "default.handlebars->47->1659", + "default3.handlebars->35->1637", + "default3.handlebars->35->1644" ] }, { @@ -39738,8 +39751,8 @@ "zh-chs": "IP:{0},掩码:{1},网关:{2}", "zh-cht": "IP:{0},遮罩:{1},閘道:{2}", "xloc": [ - "default.handlebars->47->1646", - "default3.handlebars->35->1631" + "default.handlebars->47->1650", + "default3.handlebars->35->1635" ] }, { @@ -39769,12 +39782,12 @@ "zh-cht": "IPv4層", "xloc": [ "default-mobile.handlebars->11->813", - "default.handlebars->47->1645", - "default.handlebars->47->1647", - "default.handlebars->47->1658", - "default3.handlebars->35->1630", - "default3.handlebars->35->1632", - "default3.handlebars->35->1643" + "default.handlebars->47->1649", + "default.handlebars->47->1651", + "default.handlebars->47->1662", + "default3.handlebars->35->1634", + "default3.handlebars->35->1636", + "default3.handlebars->35->1647" ] }, { @@ -39900,8 +39913,8 @@ "zh-cht": "IPv6層", "xloc": [ "default-mobile.handlebars->11->815", - "default.handlebars->47->1660", - "default3.handlebars->35->1645" + "default.handlebars->47->1664", + "default3.handlebars->35->1649" ] }, { @@ -40021,8 +40034,8 @@ "zh-cht": "冰島文", "xloc": [ "default-mobile.handlebars->11->206", - "default.handlebars->47->1946", - "default3.handlebars->35->1927", + "default.handlebars->47->1950", + "default3.handlebars->35->1931", "login2.handlebars->7->92" ] }, @@ -40053,8 +40066,8 @@ "zh-cht": "圖符選擇", "xloc": [ "default-mobile.handlebars->11->632", - "default.handlebars->47->1372", - "default3.handlebars->35->1360" + "default.handlebars->47->1376", + "default3.handlebars->35->1364" ] }, { @@ -40087,13 +40100,13 @@ "default-mobile.handlebars->11->822", "default-mobile.handlebars->11->848", "default-mobile.handlebars->11->916", - "default.handlebars->47->1636", - "default.handlebars->47->1667", - "default.handlebars->47->1693", - "default.handlebars->47->1761", - "default3.handlebars->35->1621", - "default3.handlebars->35->1676", - "default3.handlebars->35->1744" + "default.handlebars->47->1640", + "default.handlebars->47->1671", + "default.handlebars->47->1697", + "default.handlebars->47->1765", + "default3.handlebars->35->1625", + "default3.handlebars->35->1680", + "default3.handlebars->35->1748" ] }, { @@ -40122,8 +40135,8 @@ "zh-chs": "如果在CCM中,请重新激活英特尔®AMT", "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "xloc": [ - "default.handlebars->47->2303", - "default3.handlebars->35->2297" + "default.handlebars->47->2307", + "default3.handlebars->35->2301" ] }, { @@ -40316,8 +40329,8 @@ "pl": "Importuj", "uk": "Імпорт", "xloc": [ - "default.handlebars->47->2235", - "default3.handlebars->35->2231" + "default.handlebars->47->2239", + "default3.handlebars->35->2235" ] }, { @@ -40358,12 +40371,12 @@ "zh-chs": "导入英特尔® AMT 设备", "zh-cht": "導入英特爾® AMT 設備", "xloc": [ - "default.handlebars->47->2277", - "default.handlebars->47->2278", + "default.handlebars->47->2281", "default.handlebars->47->2282", - "default3.handlebars->35->2273", - "default3.handlebars->35->2274", - "default3.handlebars->35->2277" + "default.handlebars->47->2286", + "default3.handlebars->35->2277", + "default3.handlebars->35->2278", + "default3.handlebars->35->2281" ] }, { @@ -40378,8 +40391,8 @@ "pl": "Importuj urządzenia Intel® AMT.", "uk": "Імпортувати пристрої Intel® AMT.", "xloc": [ - "default.handlebars->47->2234", - "default3.handlebars->35->2230" + "default.handlebars->47->2238", + "default3.handlebars->35->2234" ] }, { @@ -40408,8 +40421,8 @@ "zh-chs": "以 MeshCommander JSON 格式导入本地英特尔® AMT 设备列表。", "zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。", "xloc": [ - "default.handlebars->47->2276", - "default3.handlebars->35->2272" + "default.handlebars->47->2280", + "default3.handlebars->35->2276" ] }, { @@ -40438,8 +40451,8 @@ "zh-chs": "导入设备列表", "zh-cht": "導入設備列表", "xloc": [ - "default.handlebars->47->2272", - "default3.handlebars->35->2268" + "default.handlebars->47->2276", + "default3.handlebars->35->2272" ] }, { @@ -40479,7 +40492,7 @@ "zh-chs": "为了使用推送通知身份验证,必须在您的帐户中设置具有完全权限的移动设备。", "zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。", "xloc": [ - "default.handlebars->47->1841" + "default.handlebars->47->1845" ] }, { @@ -40508,8 +40521,8 @@ "zh-chs": "停用天数直到移除", "zh-cht": "停用天數直到移除", "xloc": [ - "default.handlebars->47->2345", - "default3.handlebars->35->2342" + "default.handlebars->47->2349", + "default3.handlebars->35->2346" ] }, { @@ -40650,8 +40663,8 @@ "zh-chs": "不一致的标志", "zh-cht": "不一致的標誌", "xloc": [ - "default.handlebars->47->1395", - "default3.handlebars->35->1382" + "default.handlebars->47->1399", + "default3.handlebars->35->1386" ] }, { @@ -40680,10 +40693,10 @@ "zh-chs": "第二个因素不正确", "zh-cht": "第二個因素不正確", "xloc": [ - "default.handlebars->47->3231", - "default.handlebars->47->3270", - "default3.handlebars->35->3219", - "default3.handlebars->35->3258" + "default.handlebars->47->3244", + "default.handlebars->47->3293", + "default3.handlebars->35->3232", + "default3.handlebars->35->3281" ] }, { @@ -40712,7 +40725,7 @@ "zh-chs": "每{0}秒索引一次", "zh-cht": "每{0}秒索引一次", "xloc": [ - "player.handlebars->3->40" + "player.handlebars->3->43" ] }, { @@ -40777,8 +40790,8 @@ "zh-cht": "印度尼西亞文", "xloc": [ "default-mobile.handlebars->11->207", - "default.handlebars->47->1947", - "default3.handlebars->35->1928", + "default.handlebars->47->1951", + "default3.handlebars->35->1932", "login2.handlebars->7->93" ] }, @@ -40853,10 +40866,10 @@ "pl": "Informacje na Pushover.net", "uk": "Інформація про Pushover.net", "xloc": [ - "default.handlebars->47->1815", - "default.handlebars->47->3052", - "default3.handlebars->35->1797", - "default3.handlebars->35->3046" + "default.handlebars->47->1819", + "default.handlebars->47->3056", + "default3.handlebars->35->1801", + "default3.handlebars->35->3050" ] }, { @@ -40919,8 +40932,8 @@ "zh-cht": "插入", "xloc": [ "default-mobile.handlebars->11->657", - "default.handlebars->47->1429", - "default3.handlebars->35->1416", + "default.handlebars->47->1433", + "default3.handlebars->35->1420", "sharing-mobile.handlebars->11->22" ] }, @@ -41145,14 +41158,14 @@ "zh-cht": "安裝方式", "xloc": [ "agentinvite.handlebars->3->7", - "default.handlebars->47->2442", - "default.handlebars->47->2449", + "default.handlebars->47->2446", + "default.handlebars->47->2453", "default.handlebars->47->574", "default.handlebars->47->595", "default.handlebars->47->612", "default.handlebars->47->616", - "default3.handlebars->35->2439", - "default3.handlebars->35->2446", + "default3.handlebars->35->2443", + "default3.handlebars->35->2450", "default3.handlebars->35->571", "default3.handlebars->35->592", "default3.handlebars->35->609", @@ -41166,8 +41179,8 @@ "pl": "Zainstalowano Przez", "uk": "Інсталював", "xloc": [ - "default.handlebars->47->1482", - "default3.handlebars->35->1468" + "default.handlebars->47->1486", + "default3.handlebars->35->1472" ] }, { @@ -41177,8 +41190,8 @@ "pl": "Data Instalacji", "uk": "Дата Інсталяції", "xloc": [ - "default.handlebars->47->1483", - "default3.handlebars->35->1469" + "default.handlebars->47->1487", + "default3.handlebars->35->1473" ] }, { @@ -41207,9 +41220,9 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->47->1532", + "default.handlebars->47->1536", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons", - "default3.handlebars->35->1517", + "default3.handlebars->35->1521", "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons", "sharing.handlebars->11->36", "sharing.handlebars->p12->9->1->terminalSettingsButtons" @@ -41241,15 +41254,15 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->47->3372", - "default3.handlebars->35->3360" + "default.handlebars->47->3395", + "default3.handlebars->35->3383" ] }, { "en": "Intel AMT CIRA", "xloc": [ - "default.handlebars->47->3373", - "default3.handlebars->35->3361" + "default.handlebars->47->3396", + "default3.handlebars->35->3384" ] }, { @@ -41424,8 +41437,8 @@ "zh-chs": "英特尔 AMT 经理", "zh-cht": "英特爾 AMT 經理", "xloc": [ - "default.handlebars->47->3403", - "default3.handlebars->35->3391" + "default.handlebars->47->3426", + "default3.handlebars->35->3414" ] }, { @@ -41480,8 +41493,8 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->47->1531", - "default3.handlebars->35->1516", + "default.handlebars->47->1535", + "default3.handlebars->35->1520", "sharing.handlebars->11->35" ] }, @@ -41514,26 +41527,26 @@ "default-mobile.handlebars->11->479", "default-mobile.handlebars->11->529", "default-mobile.handlebars->11->536", - "default.handlebars->47->1087", - "default.handlebars->47->2215", - "default.handlebars->47->2229", - "default.handlebars->47->2469", - "default.handlebars->47->2482", - "default.handlebars->47->3402", - "default.handlebars->47->873", - "default.handlebars->47->940", - "default.handlebars->47->989", - "default.handlebars->47->999", - "default3.handlebars->35->1084", - "default3.handlebars->35->2211", - "default3.handlebars->35->2225", - "default3.handlebars->35->2466", - "default3.handlebars->35->2479", - "default3.handlebars->35->3390", - "default3.handlebars->35->870", - "default3.handlebars->35->937", - "default3.handlebars->35->986", - "default3.handlebars->35->996" + "default.handlebars->47->1003", + "default.handlebars->47->1091", + "default.handlebars->47->2219", + "default.handlebars->47->2233", + "default.handlebars->47->2473", + "default.handlebars->47->2486", + "default.handlebars->47->3425", + "default.handlebars->47->877", + "default.handlebars->47->944", + "default.handlebars->47->993", + "default3.handlebars->35->1000", + "default3.handlebars->35->1088", + "default3.handlebars->35->2215", + "default3.handlebars->35->2229", + "default3.handlebars->35->2470", + "default3.handlebars->35->2483", + "default3.handlebars->35->3413", + "default3.handlebars->35->874", + "default3.handlebars->35->941", + "default3.handlebars->35->990" ] }, { @@ -41593,8 +41606,8 @@ "zh-cht": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->11->535", - "default.handlebars->47->997", - "default3.handlebars->35->994" + "default.handlebars->47->1001", + "default3.handlebars->35->998" ] }, { @@ -41675,12 +41688,12 @@ "zh-chs": "英特尔®AMT CIRA已连接并可以使用。", "zh-cht": "Intel® AMT CIRA已連接並可以使用。", "xloc": [ + "default.handlebars->47->1000", "default.handlebars->47->422", "default.handlebars->47->729", - "default.handlebars->47->996", "default3.handlebars->35->419", "default3.handlebars->35->726", - "default3.handlebars->35->993" + "default3.handlebars->35->997" ] }, { @@ -41793,7 +41806,7 @@ "zh-chs": "英特尔®AMT KVM", "zh-cht": "Intel® AMT KVM", "xloc": [ - "player.handlebars->3->31" + "player.handlebars->3->34" ] }, { @@ -41822,10 +41835,10 @@ "zh-chs": "英特尔® AMT 一键恢复", "zh-cht": "英特爾® AMT 一鍵恢復", "xloc": [ - "default.handlebars->47->1280", - "default.handlebars->47->1293", - "default3.handlebars->35->1275", - "default3.handlebars->35->1288" + "default.handlebars->47->1284", + "default.handlebars->47->1297", + "default3.handlebars->35->1279", + "default3.handlebars->35->1292" ] }, { @@ -41854,8 +41867,8 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->47->2290", - "default3.handlebars->35->2284" + "default.handlebars->47->2294", + "default3.handlebars->35->2288" ] }, { @@ -41887,18 +41900,18 @@ "default-mobile.handlebars->11->597", "default-mobile.handlebars->11->599", "default-mobile.handlebars->11->601", - "default.handlebars->47->1294", - "default.handlebars->47->1296", "default.handlebars->47->1298", "default.handlebars->47->1300", "default.handlebars->47->1302", "default.handlebars->47->1304", "default.handlebars->47->1306", - "default3.handlebars->35->1289", - "default3.handlebars->35->1291", + "default.handlebars->47->1308", + "default.handlebars->47->1310", "default3.handlebars->35->1293", "default3.handlebars->35->1295", - "default3.handlebars->35->1297" + "default3.handlebars->35->1297", + "default3.handlebars->35->1299", + "default3.handlebars->35->1301" ] }, { @@ -41928,8 +41941,8 @@ "zh-cht": "英特爾® AMT 關機", "xloc": [ "default-mobile.handlebars->11->592", - "default.handlebars->47->1274", - "default3.handlebars->35->1269" + "default.handlebars->47->1278", + "default3.handlebars->35->1273" ] }, { @@ -41959,8 +41972,8 @@ "zh-cht": "英特爾® AMT 開機", "xloc": [ "default-mobile.handlebars->11->593", - "default.handlebars->47->1279", - "default3.handlebars->35->1274" + "default.handlebars->47->1283", + "default3.handlebars->35->1278" ] }, { @@ -41975,16 +41988,16 @@ "pl": "Intel® AMT Uruchom do BIOS", "uk": "Завантаження у BIOS через Intel® AMT", "xloc": [ - "default.handlebars->47->1276", - "default3.handlebars->35->1271" + "default.handlebars->47->1280", + "default3.handlebars->35->1275" ] }, { "en": "Intel® AMT Power on to PXE", "nl": "Intel® AMT inschakelen op PXE", "xloc": [ - "default.handlebars->47->1277", - "default3.handlebars->35->1272" + "default.handlebars->47->1281", + "default3.handlebars->35->1276" ] }, { @@ -42013,11 +42026,11 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->47->3148", "default.handlebars->47->3155", - "default3.handlebars->35->3136", + "default.handlebars->47->3165", "default3.handlebars->35->3143", - "player.handlebars->3->30" + "default3.handlebars->35->3153", + "player.handlebars->3->33" ] }, { @@ -42047,8 +42060,8 @@ "zh-cht": "英特爾® AMT 重置", "xloc": [ "default-mobile.handlebars->11->591", - "default.handlebars->47->1273", - "default3.handlebars->35->1268" + "default.handlebars->47->1277", + "default3.handlebars->35->1272" ] }, { @@ -42063,16 +42076,16 @@ "pl": "Intel® AMT Resetuj do BIOS", "uk": "Скинути BIOS через Intel® AMT", "xloc": [ - "default.handlebars->47->1275", - "default3.handlebars->35->1270" + "default.handlebars->47->1279", + "default3.handlebars->35->1274" ] }, { "en": "Intel® AMT Reset to PXE", "nl": "Intel® AMT resetten naar PXE", "xloc": [ - "default.handlebars->47->1278", - "default3.handlebars->35->1273" + "default.handlebars->47->1282", + "default3.handlebars->35->1277" ] }, { @@ -42101,8 +42114,8 @@ "zh-chs": "英特尔®AMT标签", "zh-cht": "Intel® AMT標籤", "xloc": [ - "default.handlebars->47->944", - "default3.handlebars->35->941" + "default.handlebars->47->948", + "default3.handlebars->35->945" ] }, { @@ -42131,11 +42144,11 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->47->3147", "default.handlebars->47->3154", - "default3.handlebars->35->3135", + "default.handlebars->47->3164", "default3.handlebars->35->3142", - "player.handlebars->3->29" + "default3.handlebars->35->3152", + "player.handlebars->3->32" ] }, { @@ -42191,10 +42204,10 @@ "zh-cht": "Intel ®AMT已連接", "xloc": [ "default-mobile.handlebars->11->566", - "default.handlebars->47->1077", - "default.handlebars->47->1078", - "default3.handlebars->35->1074", - "default3.handlebars->35->1075" + "default.handlebars->47->1081", + "default.handlebars->47->1082", + "default3.handlebars->35->1078", + "default3.handlebars->35->1079" ] }, { @@ -42223,12 +42236,12 @@ "zh-chs": "英特尔®AMT桌面和串行事件", "zh-cht": "Intel® AMT桌面和串行事件", "xloc": [ - "default.handlebars->47->1125", - "default.handlebars->47->2085", - "default.handlebars->47->2457", - "default3.handlebars->35->1120", - "default3.handlebars->35->2067", - "default3.handlebars->35->2454" + "default.handlebars->47->1129", + "default.handlebars->47->2089", + "default.handlebars->47->2461", + "default3.handlebars->35->1124", + "default3.handlebars->35->2071", + "default3.handlebars->35->2458" ] }, { @@ -42258,10 +42271,10 @@ "zh-cht": "檢測到Intel® AMT", "xloc": [ "default-mobile.handlebars->11->567", - "default.handlebars->47->1079", - "default.handlebars->47->1080", - "default3.handlebars->35->1076", - "default3.handlebars->35->1077" + "default.handlebars->47->1083", + "default.handlebars->47->1084", + "default3.handlebars->35->1080", + "default3.handlebars->35->1081" ] }, { @@ -42302,9 +42315,9 @@ "zh-cht": "在管理控制模式下啟動了Intel® AMT", "xloc": [ "default.handlebars->47->447", - "default.handlebars->47->926", + "default.handlebars->47->930", "default3.handlebars->35->444", - "default3.handlebars->35->923" + "default3.handlebars->35->927" ] }, { @@ -42334,9 +42347,9 @@ "zh-cht": "Intel® AMT在客户端控制模式下被启动", "xloc": [ "default.handlebars->47->445", - "default.handlebars->47->924", + "default.handlebars->47->928", "default3.handlebars->35->442", - "default3.handlebars->35->921" + "default3.handlebars->35->925" ] }, { @@ -42387,8 +42400,8 @@ "zh-chs": "英特尔®AMT可路由并可以使用。", "zh-cht": "Intel® AMT可路由並可以使用。", "xloc": [ - "default.handlebars->47->998", - "default3.handlebars->35->995" + "default.handlebars->47->1002", + "default3.handlebars->35->999" ] }, { @@ -42450,8 +42463,8 @@ "zh-cht": "Intel® AMT已設置TLS網絡安全性", "xloc": [ "default-mobile.handlebars->11->519", - "default.handlebars->47->928", - "default3.handlebars->35->925" + "default.handlebars->47->932", + "default3.handlebars->35->929" ] }, { @@ -42536,10 +42549,10 @@ "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ "default-mobile.handlebars->11->942", - "default.handlebars->47->2118", - "default.handlebars->47->2175", - "default3.handlebars->35->2118", - "default3.handlebars->35->2171" + "default.handlebars->47->2122", + "default.handlebars->47->2179", + "default3.handlebars->35->2122", + "default3.handlebars->35->2175" ] }, { @@ -42634,8 +42647,8 @@ "zh-chs": "英特尔®主动管理技术", "zh-cht": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->47->939", - "default3.handlebars->35->936" + "default.handlebars->47->943", + "default3.handlebars->35->940" ] }, { @@ -42665,8 +42678,8 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ "default-mobile.handlebars->11->838", - "default.handlebars->47->1683", - "default3.handlebars->35->1666" + "default.handlebars->47->1687", + "default3.handlebars->35->1670" ] }, { @@ -42696,8 +42709,8 @@ "zh-cht": "Intel® ME", "xloc": [ "default-mobile.handlebars->11->528", - "default.handlebars->47->938", - "default3.handlebars->35->935" + "default.handlebars->47->942", + "default3.handlebars->35->939" ] }, { @@ -42726,8 +42739,8 @@ "zh-chs": "英特尔®可管理性引擎", "zh-cht": "Intel® Management Engine", "xloc": [ - "default.handlebars->47->937", - "default3.handlebars->35->934" + "default.handlebars->47->941", + "default3.handlebars->35->938" ] }, { @@ -42757,10 +42770,10 @@ "zh-cht": "Intel® M", "xloc": [ "default-mobile.handlebars->11->530", - "default.handlebars->47->1085", - "default.handlebars->47->942", - "default3.handlebars->35->1082", - "default3.handlebars->35->939" + "default.handlebars->47->1089", + "default.handlebars->47->946", + "default3.handlebars->35->1086", + "default3.handlebars->35->943" ] }, { @@ -42789,8 +42802,8 @@ "zh-chs": "英特尔®标准可管理性", "zh-cht": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->47->941", - "default3.handlebars->35->938" + "default.handlebars->47->945", + "default3.handlebars->35->942" ] }, { @@ -42819,8 +42832,8 @@ "zh-cht": "英特爾® 標準可管理性(英特爾® SM)", "xloc": [ "default-mobile.handlebars->11->837", - "default.handlebars->47->1682", - "default3.handlebars->35->1665" + "default.handlebars->47->1686", + "default3.handlebars->35->1669" ] }, { @@ -42849,8 +42862,8 @@ "zh-chs": "英特尔®AMT", "zh-cht": "英特爾®AMT", "xloc": [ - "default.handlebars->47->1086", - "default3.handlebars->35->1083" + "default.handlebars->47->1090", + "default3.handlebars->35->1087" ] }, { @@ -42879,8 +42892,8 @@ "zh-chs": "英特尔® SM", "zh-cht": "英特爾® SM", "xloc": [ - "default.handlebars->47->1084", - "default3.handlebars->35->1081" + "default.handlebars->47->1088", + "default3.handlebars->35->1085" ] }, { @@ -42909,8 +42922,8 @@ "zh-chs": "英特尔(r) AMT 政策变更", "zh-cht": "英特爾(r) AMT 政策變更", "xloc": [ - "default.handlebars->47->2678", - "default3.handlebars->35->2675" + "default.handlebars->47->2682", + "default3.handlebars->35->2679" ] }, { @@ -43167,8 +43180,8 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->47->1475", - "default3.handlebars->35->1461" + "default.handlebars->47->1479", + "default3.handlebars->35->1465" ] }, { @@ -43198,13 +43211,13 @@ "zh-cht": "僅限互動", "xloc": [ "agentinvite.handlebars->3->10", - "default.handlebars->47->2445", - "default.handlebars->47->2451", + "default.handlebars->47->2449", + "default.handlebars->47->2455", "default.handlebars->47->577", "default.handlebars->47->598", "default.handlebars->47->615", - "default3.handlebars->35->2442", - "default3.handlebars->35->2448", + "default3.handlebars->35->2446", + "default3.handlebars->35->2452", "default3.handlebars->35->574", "default3.handlebars->35->595", "default3.handlebars->35->612" @@ -43236,8 +43249,8 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->47->1045", - "default3.handlebars->35->1042" + "default.handlebars->47->1049", + "default3.handlebars->35->1046" ] }, { @@ -43296,8 +43309,8 @@ "zh-cht": "因紐特文", "xloc": [ "default-mobile.handlebars->11->208", - "default.handlebars->47->1948", - "default3.handlebars->35->1929", + "default.handlebars->47->1952", + "default3.handlebars->35->1933", "login2.handlebars->7->94" ] }, @@ -43339,10 +43352,10 @@ "nl": "Ongeldig CSV bestandsformaat.", "uk": "Хибний формат файлу CSV.", "xloc": [ - "default.handlebars->47->2792", - "default.handlebars->47->2794", - "default3.handlebars->35->2788", - "default3.handlebars->35->2790" + "default.handlebars->47->2796", + "default.handlebars->47->2798", + "default3.handlebars->35->2792", + "default3.handlebars->35->2794" ] }, { @@ -43372,8 +43385,8 @@ "zh-cht": "無效證件", "xloc": [ "default-mobile.handlebars->11->524", - "default.handlebars->47->933", - "default3.handlebars->35->930" + "default.handlebars->47->937", + "default3.handlebars->35->934" ] }, { @@ -43402,8 +43415,8 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->47->3333", - "default3.handlebars->35->3321" + "default.handlebars->47->3356", + "default3.handlebars->35->3344" ] }, { @@ -43432,8 +43445,8 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->47->3327", - "default3.handlebars->35->3315" + "default.handlebars->47->3350", + "default3.handlebars->35->3338" ] }, { @@ -43462,12 +43475,12 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->47->2283", - "default.handlebars->47->2798", - "default.handlebars->47->2800", + "default.handlebars->47->2287", + "default.handlebars->47->2802", + "default.handlebars->47->2804", "default.handlebars->47->531", - "default3.handlebars->35->2794", - "default3.handlebars->35->2796", + "default3.handlebars->35->2798", + "default3.handlebars->35->2800", "default3.handlebars->35->528" ] }, @@ -43497,11 +43510,11 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->47->2279", - "default.handlebars->47->2796", + "default.handlebars->47->2283", + "default.handlebars->47->2800", "default.handlebars->47->529", - "default3.handlebars->35->2275", - "default3.handlebars->35->2792", + "default3.handlebars->35->2279", + "default3.handlebars->35->2796", "default3.handlebars->35->526" ] }, @@ -43651,8 +43664,8 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->47->3325", - "default3.handlebars->35->3313" + "default.handlebars->47->3348", + "default3.handlebars->35->3336" ] }, { @@ -43681,8 +43694,8 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->47->3326", - "default3.handlebars->35->3314" + "default.handlebars->47->3349", + "default3.handlebars->35->3337" ] }, { @@ -43712,8 +43725,8 @@ "zh-cht": "短信無效", "xloc": [ "default-mobile.handlebars->11->1060", - "default.handlebars->47->3308", - "default3.handlebars->35->3296" + "default.handlebars->47->3331", + "default3.handlebars->35->3319" ] }, { @@ -43804,8 +43817,8 @@ "zh-cht": "無效域", "xloc": [ "default-mobile.handlebars->11->1040", - "default.handlebars->47->3288", - "default3.handlebars->35->3276" + "default.handlebars->47->3311", + "default3.handlebars->35->3299" ] }, { @@ -43861,8 +43874,8 @@ "zh-cht": "不合規電郵", "xloc": [ "default-mobile.handlebars->11->1039", - "default.handlebars->47->3287", - "default3.handlebars->35->3275" + "default.handlebars->47->3310", + "default3.handlebars->35->3298" ] }, { @@ -43981,10 +43994,10 @@ "zh-chs": "无效的登录尝试", "zh-cht": "無效的登錄嘗試", "xloc": [ - "default.handlebars->47->3233", - "default.handlebars->47->3272", - "default3.handlebars->35->3221", - "default3.handlebars->35->3260" + "default.handlebars->47->3246", + "default.handlebars->47->3295", + "default3.handlebars->35->3234", + "default3.handlebars->35->3283" ] }, { @@ -43998,8 +44011,8 @@ "pl": "Błędna wiadomość", "uk": "Хибне повідомлення", "xloc": [ - "default.handlebars->47->3314", - "default3.handlebars->35->3302" + "default.handlebars->47->3337", + "default3.handlebars->35->3325" ] }, { @@ -44041,9 +44054,9 @@ "xloc": [ "default-mobile.handlebars->11->1038", "default-mobile.handlebars->11->96", - "default.handlebars->47->3286", + "default.handlebars->47->3309", "default.handlebars->47->340", - "default3.handlebars->35->3274", + "default3.handlebars->35->3297", "default3.handlebars->35->337" ] }, @@ -44091,8 +44104,8 @@ "zh-cht": "無效的網站權限", "xloc": [ "default-mobile.handlebars->11->1041", - "default.handlebars->47->3289", - "default3.handlebars->35->3277" + "default.handlebars->47->3312", + "default3.handlebars->35->3300" ] }, { @@ -44152,8 +44165,8 @@ "zh-chs": "来自 {0}、{1}、{2} 的无效用户登录尝试", "zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效", "xloc": [ - "default.handlebars->47->2647", - "default3.handlebars->35->2644" + "default.handlebars->47->2651", + "default3.handlebars->35->2648" ] }, { @@ -44183,8 +44196,8 @@ "zh-cht": "無效的用戶名", "xloc": [ "default-mobile.handlebars->11->1037", - "default.handlebars->47->3285", - "default3.handlebars->35->3273" + "default.handlebars->47->3308", + "default3.handlebars->35->3296" ] }, { @@ -44239,8 +44252,8 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->47->2764", - "default3.handlebars->35->2761" + "default.handlebars->47->2768", + "default3.handlebars->35->2765" ] }, { @@ -44355,8 +44368,8 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->47->2447", - "default3.handlebars->35->2444" + "default.handlebars->47->2451", + "default3.handlebars->35->2448" ] }, { @@ -44414,10 +44427,10 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->47->2241", + "default.handlebars->47->2245", "default.handlebars->47->503", "default.handlebars->47->600", - "default3.handlebars->35->2237", + "default3.handlebars->35->2241", "default3.handlebars->35->500", "default3.handlebars->35->597" ] @@ -44449,18 +44462,18 @@ "zh-cht": "邀請碼", "xloc": [ "default-mobile.handlebars->11->1035", - "default.handlebars->47->2221", - "default.handlebars->47->2435", - "default.handlebars->47->2446", - "default.handlebars->47->2448", - "default.handlebars->47->2453", - "default.handlebars->47->3283", - "default3.handlebars->35->2217", - "default3.handlebars->35->2432", - "default3.handlebars->35->2443", - "default3.handlebars->35->2445", - "default3.handlebars->35->2450", - "default3.handlebars->35->3271" + "default.handlebars->47->2225", + "default.handlebars->47->2439", + "default.handlebars->47->2450", + "default.handlebars->47->2452", + "default.handlebars->47->2457", + "default.handlebars->47->3306", + "default3.handlebars->35->2221", + "default3.handlebars->35->2436", + "default3.handlebars->35->2447", + "default3.handlebars->35->2449", + "default3.handlebars->35->2454", + "default3.handlebars->35->3294" ] }, { @@ -44489,8 +44502,8 @@ "zh-chs": "邀请代码", "zh-cht": "邀請代碼", "xloc": [ - "default.handlebars->47->2705", - "default3.handlebars->35->2702" + "default.handlebars->47->2709", + "default3.handlebars->35->2706" ] }, { @@ -44549,9 +44562,9 @@ "zh-chs": "邀请某人在该设备组上安装Mesh代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->47->2240", + "default.handlebars->47->2244", "default.handlebars->47->502", - "default3.handlebars->35->2236", + "default3.handlebars->35->2240", "default3.handlebars->35->499" ] }, @@ -44612,8 +44625,8 @@ "zh-cht": "愛爾蘭文", "xloc": [ "default-mobile.handlebars->11->209", - "default.handlebars->47->1949", - "default3.handlebars->35->1930", + "default.handlebars->47->1953", + "default3.handlebars->35->1934", "login2.handlebars->7->95" ] }, @@ -44643,8 +44656,8 @@ "zh-chs": "是 \\\"{0}\\\" 的中继。", "zh-cht": "是 \\\"{0}\\\" 的中繼。", "xloc": [ - "default.handlebars->47->2690", - "default3.handlebars->35->2687" + "default.handlebars->47->2694", + "default3.handlebars->35->2691" ] }, { @@ -44655,8 +44668,8 @@ "uk": "Активовано", "xloc": [ "default-mobile.handlebars->11->855", - "default.handlebars->47->1700", - "default3.handlebars->35->1683" + "default.handlebars->47->1704", + "default3.handlebars->35->1687" ] }, { @@ -44667,8 +44680,8 @@ "uk": "Увімкнено", "xloc": [ "default-mobile.handlebars->11->858", - "default.handlebars->47->1703", - "default3.handlebars->35->1686" + "default.handlebars->47->1707", + "default3.handlebars->35->1690" ] }, { @@ -44679,8 +44692,8 @@ "uk": "Належить", "xloc": [ "default-mobile.handlebars->11->861", - "default.handlebars->47->1706", - "default3.handlebars->35->1689" + "default.handlebars->47->1710", + "default3.handlebars->35->1693" ] }, { @@ -44710,8 +44723,8 @@ "zh-cht": "意大利文(標準)", "xloc": [ "default-mobile.handlebars->11->210", - "default.handlebars->47->1950", - "default3.handlebars->35->1931", + "default.handlebars->47->1954", + "default3.handlebars->35->1935", "login2.handlebars->7->96" ] }, @@ -44742,8 +44755,8 @@ "zh-cht": "義大利文(瑞士)", "xloc": [ "default-mobile.handlebars->11->211", - "default.handlebars->47->1951", - "default3.handlebars->35->1932", + "default.handlebars->47->1955", + "default3.handlebars->35->1936", "login2.handlebars->7->97" ] }, @@ -44809,8 +44822,8 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->47->2722", - "default3.handlebars->35->2719" + "default.handlebars->47->2726", + "default3.handlebars->35->2723" ] }, { @@ -44839,11 +44852,11 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->47->2727", - "default.handlebars->47->2804", + "default.handlebars->47->2731", + "default.handlebars->47->2808", "default.handlebars->47->805", - "default3.handlebars->35->2724", - "default3.handlebars->35->2800", + "default3.handlebars->35->2728", + "default3.handlebars->35->2804", "default3.handlebars->35->802" ] }, @@ -44853,8 +44866,8 @@ "nl": "Het JSON bestandsformaat is als volgt:", "uk": "Формат файлу JSON наведено далі:", "xloc": [ - "default.handlebars->47->2787", - "default3.handlebars->35->2783" + "default.handlebars->47->2791", + "default3.handlebars->35->2787" ] }, { @@ -44884,8 +44897,8 @@ "zh-cht": "日文", "xloc": [ "default-mobile.handlebars->11->212", - "default.handlebars->47->1952", - "default3.handlebars->35->1933", + "default.handlebars->47->1956", + "default3.handlebars->35->1937", "login2.handlebars->7->98" ] }, @@ -44900,10 +44913,10 @@ "pl": "Dołącz do tego serwera Discord aby dostawac powiadomienia.", "uk": "японська", "xloc": [ - "default.handlebars->47->1810", - "default.handlebars->47->3047", - "default3.handlebars->35->1792", - "default3.handlebars->35->3041" + "default.handlebars->47->1814", + "default.handlebars->47->3051", + "default3.handlebars->35->1796", + "default3.handlebars->35->3045" ] }, { @@ -44932,8 +44945,8 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->47->2541", - "default3.handlebars->35->2538" + "default.handlebars->47->2545", + "default3.handlebars->35->2542" ] }, { @@ -44962,15 +44975,15 @@ "zh-chs": "已加入桌面多路复用会话 \\\"{0}\\\"", "zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2680", - "default3.handlebars->35->2677" + "default.handlebars->47->2684", + "default3.handlebars->35->2681" ] }, { "en": "Journal", "nl": "Logging", "xloc": [ - "default3.handlebars->35->2086" + "default3.handlebars->35->2090" ] }, { @@ -45030,8 +45043,8 @@ "zh-cht": "卡納達文", "xloc": [ "default-mobile.handlebars->11->213", - "default.handlebars->47->1953", - "default3.handlebars->35->1934", + "default.handlebars->47->1957", + "default3.handlebars->35->1938", "login2.handlebars->7->99" ] }, @@ -45062,8 +45075,8 @@ "zh-cht": "克什米爾文", "xloc": [ "default-mobile.handlebars->11->214", - "default.handlebars->47->1954", - "default3.handlebars->35->1935", + "default.handlebars->47->1958", + "default3.handlebars->35->1939", "login2.handlebars->7->100" ] }, @@ -45094,8 +45107,8 @@ "zh-cht": "哈薩克文", "xloc": [ "default-mobile.handlebars->11->215", - "default.handlebars->47->1955", - "default3.handlebars->35->1936", + "default.handlebars->47->1959", + "default3.handlebars->35->1940", "login2.handlebars->7->101" ] }, @@ -45125,8 +45138,8 @@ "zh-chs": "保留现有密码", "zh-cht": "保留現有密碼", "xloc": [ - "default.handlebars->47->2291", - "default3.handlebars->35->2285" + "default.handlebars->47->2295", + "default3.handlebars->35->2289" ] }, { @@ -45155,8 +45168,8 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->47->1476", - "default3.handlebars->35->1462" + "default.handlebars->47->1480", + "default3.handlebars->35->1466" ] }, { @@ -45186,8 +45199,8 @@ "zh-cht": "密鑰文件", "xloc": [ "default-mobile.handlebars->11->696", - "default.handlebars->47->1518", - "default3.handlebars->35->1503", + "default.handlebars->47->1522", + "default3.handlebars->35->1507", "sharing-mobile.handlebars->11->52", "sharing-mobile.handlebars->11->69", "ssh.handlebars->3->15" @@ -45219,10 +45232,10 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->47->1846", - "default.handlebars->47->1849", - "default3.handlebars->35->1827", - "default3.handlebars->35->1830" + "default.handlebars->47->1850", + "default.handlebars->47->1853", + "default3.handlebars->35->1831", + "default3.handlebars->35->1834" ] }, { @@ -45252,8 +45265,8 @@ "zh-cht": "密鑰密碼", "xloc": [ "default-mobile.handlebars->11->698", - "default.handlebars->47->1520", - "default3.handlebars->35->1505", + "default.handlebars->47->1524", + "default3.handlebars->35->1509", "sharing-mobile.handlebars->11->53", "sharing-mobile.handlebars->11->70", "ssh.handlebars->3->17" @@ -45286,8 +45299,8 @@ "zh-cht": "密鑰文件必須是 OpenSSH 格式。", "xloc": [ "default-mobile.handlebars->11->697", - "default.handlebars->47->1519", - "default3.handlebars->35->1504", + "default.handlebars->47->1523", + "default3.handlebars->35->1508", "sharing-mobile.handlebars->11->55", "sharing-mobile.handlebars->11->72", "ssh.handlebars->3->16" @@ -45346,8 +45359,8 @@ "zh-cht": "鍵盤快捷鍵自定義", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1", - "default.handlebars->47->1450", - "default3.handlebars->35->1437", + "default.handlebars->47->1454", + "default3.handlebars->35->1441", "sharing-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1" ] }, @@ -45377,8 +45390,8 @@ "zh-chs": "键盘字符串自定义", "zh-cht": "鍵盤字符串自定義", "xloc": [ - "default.handlebars->47->1455", - "default3.handlebars->35->1442" + "default.handlebars->47->1459", + "default3.handlebars->35->1446" ] }, { @@ -45434,8 +45447,8 @@ "zh-cht": "高棉文", "xloc": [ "default-mobile.handlebars->11->216", - "default.handlebars->47->1956", - "default3.handlebars->35->1937", + "default.handlebars->47->1960", + "default3.handlebars->35->1941", "login2.handlebars->7->102" ] }, @@ -45465,8 +45478,8 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->47->2556", - "default3.handlebars->35->2553" + "default.handlebars->47->2560", + "default3.handlebars->35->2557" ] }, { @@ -45507,8 +45520,8 @@ "zh-cht": "吉爾吉斯", "xloc": [ "default-mobile.handlebars->11->217", - "default.handlebars->47->1957", - "default3.handlebars->35->1938", + "default.handlebars->47->1961", + "default3.handlebars->35->1942", "login2.handlebars->7->103" ] }, @@ -45539,8 +45552,8 @@ "zh-cht": "克林貢", "xloc": [ "default-mobile.handlebars->11->218", - "default.handlebars->47->1958", - "default3.handlebars->35->1939", + "default.handlebars->47->1962", + "default3.handlebars->35->1943", "login2.handlebars->7->104" ] }, @@ -45571,8 +45584,8 @@ "zh-cht": "已知的", "xloc": [ "default-mobile.handlebars->11->836", - "default.handlebars->47->1681", - "default3.handlebars->35->1664" + "default.handlebars->47->1685", + "default3.handlebars->35->1668" ] }, { @@ -45602,8 +45615,8 @@ "zh-cht": "韓文", "xloc": [ "default-mobile.handlebars->11->219", - "default.handlebars->47->1959", - "default3.handlebars->35->1940", + "default.handlebars->47->1963", + "default3.handlebars->35->1944", "login2.handlebars->7->105" ] }, @@ -45634,8 +45647,8 @@ "zh-cht": "韓文(朝鮮)", "xloc": [ "default-mobile.handlebars->11->220", - "default.handlebars->47->1960", - "default3.handlebars->35->1941", + "default.handlebars->47->1964", + "default3.handlebars->35->1945", "login2.handlebars->7->106" ] }, @@ -45666,8 +45679,8 @@ "zh-cht": "韓文(韓國)", "xloc": [ "default-mobile.handlebars->11->221", - "default.handlebars->47->1961", - "default3.handlebars->35->1942", + "default.handlebars->47->1965", + "default3.handlebars->35->1946", "login2.handlebars->7->107" ] }, @@ -45697,10 +45710,10 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->47->1505", - "default.handlebars->47->1536", - "default3.handlebars->35->1490", - "default3.handlebars->35->1521", + "default.handlebars->47->1509", + "default.handlebars->47->1540", + "default3.handlebars->35->1494", + "default3.handlebars->35->1525", "sharing.handlebars->11->26", "sharing.handlebars->11->40" ] @@ -45732,8 +45745,8 @@ "zh-cht": "語言", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->47->2056", - "default3.handlebars->35->2037" + "default.handlebars->47->2060", + "default3.handlebars->35->2041" ] }, { @@ -45818,8 +45831,8 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->47->1422", - "default3.handlebars->35->1409" + "default.handlebars->47->1426", + "default3.handlebars->35->1413" ] }, { @@ -46014,9 +46027,9 @@ "zh-chs": "过去30天", "zh-cht": "過去30天", "xloc": [ - "default.handlebars->47->3189", + "default.handlebars->47->3199", "default.handlebars->container->column_l->p40->3->1->p40time->9", - "default3.handlebars->35->3177", + "default3.handlebars->35->3187", "default3.handlebars->container->column_l->p40->3->3->p40time->9" ] }, @@ -46116,8 +46129,8 @@ "zh-chs": "过去 7 天", "zh-cht": "過去 7 天", "xloc": [ - "default.handlebars->47->3188", - "default3.handlebars->35->3176" + "default.handlebars->47->3198", + "default3.handlebars->35->3186" ] }, { @@ -46176,8 +46189,8 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->47->2735", - "default3.handlebars->35->2732" + "default.handlebars->47->2739", + "default3.handlebars->35->2736" ] }, { @@ -46191,14 +46204,14 @@ "default-mobile.handlebars->11->756", "default-mobile.handlebars->11->757", "default-mobile.handlebars->11->758", - "default.handlebars->47->1620", - "default.handlebars->47->1621", - "default.handlebars->47->1622", + "default.handlebars->47->1624", + "default.handlebars->47->1625", + "default.handlebars->47->1626", "default.handlebars->47->359", "default.handlebars->47->391", - "default3.handlebars->35->1605", - "default3.handlebars->35->1606", - "default3.handlebars->35->1607", + "default3.handlebars->35->1609", + "default3.handlebars->35->1610", + "default3.handlebars->35->1611", "default3.handlebars->35->356", "default3.handlebars->35->388" ] @@ -46229,8 +46242,8 @@ "zh-chs": "最后一天", "zh-cht": "最後一天", "xloc": [ - "default.handlebars->47->3187", - "default3.handlebars->35->3175" + "default.handlebars->47->3197", + "default3.handlebars->35->3185" ] }, { @@ -46259,8 +46272,8 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->47->2978", - "default3.handlebars->35->2972" + "default.handlebars->47->2982", + "default3.handlebars->35->2976" ] }, { @@ -46323,8 +46336,8 @@ "zh-chs": "上次访问:{0}", "zh-cht": "上次訪問:{0}", "xloc": [ - "default.handlebars->47->2745", - "default3.handlebars->35->2742" + "default.handlebars->47->2749", + "default3.handlebars->35->2746" ] }, { @@ -46358,14 +46371,14 @@ "default-mobile.handlebars->11->795", "default.handlebars->47->160", "default.handlebars->47->162", - "default.handlebars->47->1628", - "default.handlebars->47->1629", - "default.handlebars->47->1630", + "default.handlebars->47->1632", + "default.handlebars->47->1633", + "default.handlebars->47->1634", "default.handlebars->47->164", "default3.handlebars->35->160", - "default3.handlebars->35->1613", - "default3.handlebars->35->1614", - "default3.handlebars->35->1615", + "default3.handlebars->35->1617", + "default3.handlebars->35->1618", + "default3.handlebars->35->1619", "default3.handlebars->35->162", "default3.handlebars->35->164" ] @@ -46399,11 +46412,11 @@ "default-mobile.handlebars->11->790", "default-mobile.handlebars->11->792", "default.handlebars->47->159", - "default.handlebars->47->1625", - "default.handlebars->47->1627", + "default.handlebars->47->1629", + "default.handlebars->47->1631", "default3.handlebars->35->159", - "default3.handlebars->35->1610", - "default3.handlebars->35->1612" + "default3.handlebars->35->1614", + "default3.handlebars->35->1616" ] }, { @@ -46432,8 +46445,8 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->47->2982", - "default3.handlebars->35->2976" + "default.handlebars->47->2986", + "default3.handlebars->35->2980" ] }, { @@ -46448,8 +46461,8 @@ "pl": "Zapisy czasu ostatnich połączeń", "uk": "Записи часу останнього підключення", "xloc": [ - "default.handlebars->47->3254", - "default3.handlebars->35->3242" + "default.handlebars->47->3267", + "default3.handlebars->35->3255" ] }, { @@ -46538,8 +46551,8 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->47->2746", - "default3.handlebars->35->2743" + "default.handlebars->47->2750", + "default3.handlebars->35->2747" ] }, { @@ -46568,9 +46581,9 @@ "zh-chs": "最后一次发现:", "zh-cht": "最後一次發現:", "xloc": [ - "default.handlebars->47->1083", + "default.handlebars->47->1087", "default.handlebars->47->126", - "default3.handlebars->35->1080", + "default3.handlebars->35->1084", "default3.handlebars->35->126" ] }, @@ -46717,8 +46730,8 @@ "zh-cht": "拉丁文", "xloc": [ "default-mobile.handlebars->11->222", - "default.handlebars->47->1962", - "default3.handlebars->35->1943", + "default.handlebars->47->1966", + "default3.handlebars->35->1947", "login2.handlebars->7->108" ] }, @@ -46749,8 +46762,8 @@ "zh-cht": "拉脫維亞文", "xloc": [ "default-mobile.handlebars->11->223", - "default.handlebars->47->1963", - "default3.handlebars->35->1944", + "default.handlebars->47->1967", + "default3.handlebars->35->1948", "login2.handlebars->7->109" ] }, @@ -46780,8 +46793,8 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->47->1343", - "default3.handlebars->35->1331" + "default.handlebars->47->1347", + "default3.handlebars->35->1335" ] }, { @@ -46836,8 +46849,8 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->47->1063", - "default3.handlebars->35->1060" + "default.handlebars->47->1067", + "default3.handlebars->35->1064" ] }, { @@ -46866,8 +46879,8 @@ "zh-chs": "启动与此设备的基于 Web 的 SSH 会话", "zh-cht": "啟動到此設備的基於 Web 的 SSH 會話", "xloc": [ - "default.handlebars->47->1065", - "default3.handlebars->35->1062" + "default.handlebars->47->1069", + "default3.handlebars->35->1066" ] }, { @@ -46896,8 +46909,8 @@ "zh-chs": "启动与此设备的基于 Web 的 VNC 会话", "zh-cht": "向此設備啟動基於 Web 的 VNC 會話", "xloc": [ - "default.handlebars->47->1061", - "default3.handlebars->35->1058" + "default.handlebars->47->1065", + "default3.handlebars->35->1062" ] }, { @@ -46926,8 +46939,8 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->47->3032", - "default3.handlebars->35->3026" + "default.handlebars->47->3036", + "default3.handlebars->35->3030" ] }, { @@ -46957,8 +46970,8 @@ "zh-cht": "左", "xloc": [ "default-mobile.handlebars->11->664", - "default.handlebars->47->1435", - "default3.handlebars->35->1422", + "default.handlebars->47->1439", + "default3.handlebars->35->1426", "sharing-mobile.handlebars->11->28" ] }, @@ -46988,8 +47001,8 @@ "zh-chs": "{0} 秒后离开 Web-RDP 会话 \\\"{1}\\\"。", "zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。", "xloc": [ - "default.handlebars->47->2662", - "default3.handlebars->35->2659" + "default.handlebars->47->2666", + "default3.handlebars->35->2663" ] }, { @@ -47044,8 +47057,8 @@ "zh-chs": "{0} 秒后离开 Web-SFTP 会话 \\\"{1}\\\"。", "zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。", "xloc": [ - "default.handlebars->47->2661", - "default3.handlebars->35->2658" + "default.handlebars->47->2665", + "default3.handlebars->35->2662" ] }, { @@ -47100,8 +47113,8 @@ "zh-chs": "{0} 秒后离开 Web-SSH 会话 \\\"{1}\\\"。", "zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。", "xloc": [ - "default.handlebars->47->2660", - "default3.handlebars->35->2657" + "default.handlebars->47->2664", + "default3.handlebars->35->2661" ] }, { @@ -47156,8 +47169,8 @@ "zh-chs": "{0} 秒后离开 Web-VNC 会话。", "zh-cht": "{0} 秒後離開 Web-VNC 會話。", "xloc": [ - "default.handlebars->47->2663", - "default3.handlebars->35->2660" + "default.handlebars->47->2667", + "default3.handlebars->35->2664" ] }, { @@ -47221,8 +47234,8 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->47->2542", - "default3.handlebars->35->2539" + "default.handlebars->47->2546", + "default3.handlebars->35->2543" ] }, { @@ -47251,8 +47264,8 @@ "zh-chs": "{1} 秒后离开桌面多路复用会话 \\\"{0}\\\"。", "zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->47->2681", - "default3.handlebars->35->2678" + "default.handlebars->47->2685", + "default3.handlebars->35->2682" ] }, { @@ -47281,8 +47294,8 @@ "zh-chs": "{0} 秒后离开桌面多路复用会话。", "zh-cht": "{0} 秒後離開桌面多路復用會話。", "xloc": [ - "default.handlebars->47->2659", - "default3.handlebars->35->2656" + "default.handlebars->47->2663", + "default3.handlebars->35->2660" ] }, { @@ -47311,8 +47324,8 @@ "zh-chs": "长度", "zh-cht": "長度", "xloc": [ - "default.handlebars->47->3204", - "default3.handlebars->35->3192" + "default.handlebars->47->3214", + "default3.handlebars->35->3202" ] }, { @@ -47398,10 +47411,10 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->47->1148", - "default.handlebars->47->1173", - "default3.handlebars->35->1143", - "default3.handlebars->35->1168" + "default.handlebars->47->1152", + "default.handlebars->47->1177", + "default3.handlebars->35->1147", + "default3.handlebars->35->1172" ] }, { @@ -47461,12 +47474,12 @@ "zh-cht": "有限輸入", "xloc": [ "default-mobile.handlebars->11->1012", - "default.handlebars->47->1140", - "default.handlebars->47->1165", - "default.handlebars->47->2414", - "default3.handlebars->35->1135", - "default3.handlebars->35->1160", - "default3.handlebars->35->2411" + "default.handlebars->47->1144", + "default.handlebars->47->1169", + "default.handlebars->47->2418", + "default3.handlebars->35->1139", + "default3.handlebars->35->1164", + "default3.handlebars->35->2415" ] }, { @@ -47496,31 +47509,31 @@ "zh-cht": "僅有限輸入", "xloc": [ "default-mobile.handlebars->11->985", - "default.handlebars->47->2367", - "default3.handlebars->35->2364" + "default.handlebars->47->2371", + "default3.handlebars->35->2368" ] }, { "en": "Line Break: Linux (LF)", "xloc": [ - "default.handlebars->47->1600", - "default3.handlebars->35->1585", + "default.handlebars->47->1604", + "default3.handlebars->35->1589", "sharing.handlebars->11->92" ] }, { "en": "Line Break: Mac (CR)", "xloc": [ - "default.handlebars->47->1601", - "default3.handlebars->35->1586", + "default.handlebars->47->1605", + "default3.handlebars->35->1590", "sharing.handlebars->11->93" ] }, { "en": "Line Break: Windows (CR LF)", "xloc": [ - "default.handlebars->47->1599", - "default3.handlebars->35->1584", + "default.handlebars->47->1603", + "default3.handlebars->35->1588", "sharing.handlebars->11->91" ] }, @@ -47676,9 +47689,9 @@ "agentinvite.handlebars->container->column_l->5->linuxtab->1", "default-mobile.handlebars->11->506", "default.handlebars->47->60", - "default.handlebars->47->913", + "default.handlebars->47->917", "default3.handlebars->35->60", - "default3.handlebars->35->910" + "default3.handlebars->35->914" ] }, { @@ -47963,8 +47976,8 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->47->1352", - "default3.handlebars->35->1340" + "default.handlebars->47->1356", + "default3.handlebars->35->1344" ] }, { @@ -47993,8 +48006,8 @@ "zh-chs": "Linux ARM, Raspberry Pi (64位)", "zh-cht": "Linux ARM, Raspberry Pi (64位)", "xloc": [ - "default.handlebars->47->1353", - "default3.handlebars->35->1341" + "default.handlebars->47->1357", + "default3.handlebars->35->1345" ] }, { @@ -48030,9 +48043,9 @@ "zh-chs": "Linux MeshAgent", "zh-cht": "Linux MeshAgent", "xloc": [ - "default.handlebars->47->2439", + "default.handlebars->47->2443", "default.handlebars->47->591", - "default3.handlebars->35->2436", + "default3.handlebars->35->2440", "default3.handlebars->35->588" ] }, @@ -48246,8 +48259,8 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->47->1349", - "default3.handlebars->35->1337" + "default.handlebars->47->1353", + "default3.handlebars->35->1341" ] }, { @@ -48276,8 +48289,8 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->47->1348", - "default3.handlebars->35->1336" + "default.handlebars->47->1352", + "default3.handlebars->35->1340" ] }, { @@ -48307,9 +48320,9 @@ "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ "default-mobile.handlebars->11->612", - "default.handlebars->47->1288", + "default.handlebars->47->1292", "default.handlebars->47->817", - "default3.handlebars->35->1283", + "default3.handlebars->35->1287", "default3.handlebars->35->814" ] }, @@ -48403,7 +48416,7 @@ { "en": "Litera", "xloc": [ - "default3.handlebars->35->2087" + "default3.handlebars->35->2091" ] }, { @@ -48433,8 +48446,8 @@ "zh-cht": "立陶宛文", "xloc": [ "default-mobile.handlebars->11->224", - "default.handlebars->47->1964", - "default3.handlebars->35->1945", + "default.handlebars->47->1968", + "default3.handlebars->35->1949", "login2.handlebars->7->110" ] }, @@ -48496,19 +48509,19 @@ "xloc": [ "default-mobile.handlebars->11->101", "default-mobile.handlebars->11->321", - "default.handlebars->47->1338", - "default.handlebars->47->1788", - "default.handlebars->47->1835", - "default.handlebars->47->2163", + "default.handlebars->47->1342", + "default.handlebars->47->1792", + "default.handlebars->47->1839", "default.handlebars->47->2167", - "default.handlebars->47->2170", - "default.handlebars->47->3084", - "default.handlebars->47->3133", - "default3.handlebars->35->1328", - "default3.handlebars->35->1817", - "default3.handlebars->35->2161", + "default.handlebars->47->2171", + "default.handlebars->47->2174", + "default.handlebars->47->3088", + "default.handlebars->47->3137", + "default3.handlebars->35->1332", + "default3.handlebars->35->1821", "default3.handlebars->35->2165", - "default3.handlebars->35->3121" + "default3.handlebars->35->2169", + "default3.handlebars->35->3125" ] }, { @@ -48653,10 +48666,10 @@ "zh-cht": "本地設備,無代理", "xloc": [ "default-mobile.handlebars->11->944", - "default.handlebars->47->2112", - "default.handlebars->47->2177", - "default3.handlebars->35->2112", - "default3.handlebars->35->2173" + "default.handlebars->47->2116", + "default.handlebars->47->2181", + "default3.handlebars->35->2116", + "default3.handlebars->35->2177" ] }, { @@ -48776,8 +48789,8 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->47->2564", - "default3.handlebars->35->2561" + "default.handlebars->47->2568", + "default3.handlebars->35->2565" ] }, { @@ -48806,8 +48819,8 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->47->2565", - "default3.handlebars->35->2562" + "default.handlebars->47->2569", + "default3.handlebars->35->2566" ] }, { @@ -48838,9 +48851,9 @@ "xloc": [ "default-mobile.handlebars->11->319", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0", - "default.handlebars->47->2059", + "default.handlebars->47->2063", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->11", - "default3.handlebars->35->2040", + "default3.handlebars->35->2044", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->9" ] }, @@ -48870,8 +48883,8 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->47->1047", - "default3.handlebars->35->1044" + "default.handlebars->47->1051", + "default3.handlebars->35->1048" ] }, { @@ -48930,8 +48943,8 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->47->2844", - "default3.handlebars->35->2838" + "default.handlebars->47->2848", + "default3.handlebars->35->2842" ] }, { @@ -48960,8 +48973,8 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->47->2848", - "default3.handlebars->35->2842" + "default.handlebars->47->2852", + "default3.handlebars->35->2846" ] }, { @@ -48991,8 +49004,8 @@ "zh-cht": "鎖定桌面", "xloc": [ "default-mobile.handlebars->11->605", - "default.handlebars->47->1210", - "default3.handlebars->35->1205" + "default.handlebars->47->1214", + "default3.handlebars->35->1209" ] }, { @@ -49021,8 +49034,8 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->47->2767", - "default3.handlebars->35->2764" + "default.handlebars->47->2771", + "default3.handlebars->35->2768" ] }, { @@ -49083,8 +49096,8 @@ "zh-chs": "锁定远程用户的鼠标和键盘?", "zh-cht": "鎖定遠程用戶的鼠標和鍵盤?", "xloc": [ - "default.handlebars->47->1197", - "default3.handlebars->35->1192" + "default.handlebars->47->1201", + "default3.handlebars->35->1196" ] }, { @@ -49144,8 +49157,8 @@ "zh-cht": "鎖定用戶桌面?", "xloc": [ "default-mobile.handlebars->11->606", - "default.handlebars->47->1211", - "default3.handlebars->35->1206" + "default.handlebars->47->1215", + "default3.handlebars->35->1210" ] }, { @@ -49175,12 +49188,12 @@ "zh-cht": "已鎖定", "xloc": [ "default-mobile.handlebars->11->785", - "default.handlebars->47->2747", + "default.handlebars->47->2751", "default.handlebars->47->487", - "default.handlebars->47->972", - "default3.handlebars->35->2744", + "default.handlebars->47->976", + "default3.handlebars->35->2748", "default3.handlebars->35->484", - "default3.handlebars->35->969" + "default3.handlebars->35->973" ] }, { @@ -49216,13 +49229,13 @@ "zh-cht": "被鎖定賬戶", "xloc": [ "default-mobile.handlebars->11->95", - "default.handlebars->47->2938", - "default.handlebars->47->3232", - "default.handlebars->47->3271", + "default.handlebars->47->2942", + "default.handlebars->47->3245", + "default.handlebars->47->3294", "default.handlebars->47->339", - "default3.handlebars->35->2932", - "default3.handlebars->35->3220", - "default3.handlebars->35->3259", + "default3.handlebars->35->2936", + "default3.handlebars->35->3233", + "default3.handlebars->35->3282", "default3.handlebars->35->336" ] }, @@ -49252,8 +49265,8 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->47->2590", - "default3.handlebars->35->2587" + "default.handlebars->47->2594", + "default3.handlebars->35->2591" ] }, { @@ -49282,8 +49295,8 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->47->1024", - "default3.handlebars->35->1021" + "default.handlebars->47->1028", + "default3.handlebars->35->1025" ] }, { @@ -49527,8 +49540,8 @@ "zh-chs": "登录令牌", "zh-cht": "登錄令牌", "xloc": [ - "default.handlebars->47->3243", - "default3.handlebars->35->3231" + "default.handlebars->47->3256", + "default3.handlebars->35->3244" ] }, { @@ -49692,13 +49705,13 @@ { "en": "Lumen", "xloc": [ - "default3.handlebars->35->2088" + "default3.handlebars->35->2092" ] }, { "en": "Lux", "xloc": [ - "default3.handlebars->35->2089" + "default3.handlebars->35->2093" ] }, { @@ -49728,8 +49741,8 @@ "zh-cht": "盧森堡文", "xloc": [ "default-mobile.handlebars->11->225", - "default.handlebars->47->1965", - "default3.handlebars->35->1946", + "default.handlebars->47->1969", + "default3.handlebars->35->1950", "login2.handlebars->7->111" ] }, @@ -49761,14 +49774,14 @@ "xloc": [ "default-mobile.handlebars->11->806", "default-mobile.handlebars->11->808", - "default.handlebars->47->1641", - "default.handlebars->47->1643", - "default.handlebars->47->1651", - "default.handlebars->47->1653", - "default3.handlebars->35->1626", - "default3.handlebars->35->1628", - "default3.handlebars->35->1636", - "default3.handlebars->35->1638" + "default.handlebars->47->1645", + "default.handlebars->47->1647", + "default.handlebars->47->1655", + "default.handlebars->47->1657", + "default3.handlebars->35->1630", + "default3.handlebars->35->1632", + "default3.handlebars->35->1640", + "default3.handlebars->35->1642" ] }, { @@ -49830,10 +49843,10 @@ "zh-cht": "MAC:{0}", "xloc": [ "default-mobile.handlebars->11->809", - "default.handlebars->47->1644", - "default.handlebars->47->1654", - "default3.handlebars->35->1629", - "default3.handlebars->35->1639" + "default.handlebars->47->1648", + "default.handlebars->47->1658", + "default3.handlebars->35->1633", + "default3.handlebars->35->1643" ] }, { @@ -49863,10 +49876,10 @@ "zh-cht": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->11->807", - "default.handlebars->47->1642", - "default.handlebars->47->1652", - "default3.handlebars->35->1627", - "default3.handlebars->35->1637" + "default.handlebars->47->1646", + "default.handlebars->47->1656", + "default3.handlebars->35->1631", + "default3.handlebars->35->1641" ] }, { @@ -50049,15 +50062,15 @@ "default-mobile.handlebars->11->925", "default-mobile.handlebars->11->927", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default.handlebars->47->1003", - "default.handlebars->47->1771", - "default.handlebars->47->1773", + "default.handlebars->47->1007", + "default.handlebars->47->1775", + "default.handlebars->47->1777", "default.handlebars->47->429", "default.handlebars->47->736", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", - "default3.handlebars->35->1000", - "default3.handlebars->35->1754", - "default3.handlebars->35->1756", + "default3.handlebars->35->1004", + "default3.handlebars->35->1758", + "default3.handlebars->35->1760", "default3.handlebars->35->426", "default3.handlebars->35->733", "default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2" @@ -50119,8 +50132,8 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->47->1068", - "default3.handlebars->35->1065" + "default.handlebars->47->1072", + "default3.handlebars->35->1069" ] }, { @@ -50150,8 +50163,8 @@ "zh-cht": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->11->568", - "default.handlebars->47->1082", - "default3.handlebars->35->1079" + "default.handlebars->47->1086", + "default3.handlebars->35->1083" ] }, { @@ -50180,9 +50193,9 @@ "zh-chs": "MQTT已连接", "zh-cht": "MQTT已連接", "xloc": [ - "default.handlebars->47->1081", + "default.handlebars->47->1085", "default.handlebars->47->275", - "default3.handlebars->35->1078", + "default3.handlebars->35->1082", "default3.handlebars->35->272" ] }, @@ -50212,12 +50225,12 @@ "zh-chs": "与设备的MQTT连接已激活。", "zh-cht": "與裝置的MQTT連接已啟動。", "xloc": [ - "default.handlebars->47->1002", + "default.handlebars->47->1006", "default.handlebars->47->428", "default.handlebars->47->735", + "default3.handlebars->35->1003", "default3.handlebars->35->425", - "default3.handlebars->35->732", - "default3.handlebars->35->999" + "default3.handlebars->35->732" ] }, { @@ -50412,7 +50425,7 @@ "zh-chs": "MacOS 安装程序", "zh-cht": "macOS 安裝程序", "xloc": [ - "default.handlebars->47->1341" + "default.handlebars->47->1345" ] }, { @@ -50441,9 +50454,9 @@ "zh-chs": "MacOS MeshAgent", "zh-cht": "MacOS MeshAgent", "xloc": [ - "default.handlebars->47->2440", + "default.handlebars->47->2444", "default.handlebars->47->592", - "default3.handlebars->35->2437", + "default3.handlebars->35->2441", "default3.handlebars->35->589" ] }, @@ -50503,8 +50516,8 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->47->3389", - "default3.handlebars->35->3377" + "default.handlebars->47->3412", + "default3.handlebars->35->3400" ] }, { @@ -50534,8 +50547,8 @@ "zh-cht": "馬來文", "xloc": [ "default-mobile.handlebars->11->227", - "default.handlebars->47->1967", - "default3.handlebars->35->1948", + "default.handlebars->47->1971", + "default3.handlebars->35->1952", "login2.handlebars->7->113" ] }, @@ -50566,8 +50579,8 @@ "zh-cht": "馬拉雅拉姆文", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->47->1968", - "default3.handlebars->35->1949", + "default.handlebars->47->1972", + "default3.handlebars->35->1953", "login2.handlebars->7->114" ] }, @@ -50598,8 +50611,8 @@ "zh-cht": "馬耳他文", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->47->1969", - "default3.handlebars->35->1950", + "default.handlebars->47->1973", + "default3.handlebars->35->1954", "login2.handlebars->7->115" ] }, @@ -50630,8 +50643,8 @@ "zh-cht": "管理帳戶圖片", "xloc": [ "default-mobile.handlebars->11->102", - "default.handlebars->47->1789", - "default3.handlebars->35->1771" + "default.handlebars->47->1793", + "default3.handlebars->35->1775" ] }, { @@ -50693,10 +50706,10 @@ "xloc": [ "default-mobile.handlebars->11->1002", "default-mobile.handlebars->11->982", - "default.handlebars->47->2364", - "default.handlebars->47->2403", - "default3.handlebars->35->2361", - "default3.handlebars->35->2400" + "default.handlebars->47->2368", + "default.handlebars->47->2407", + "default3.handlebars->35->2365", + "default3.handlebars->35->2404" ] }, { @@ -50727,10 +50740,10 @@ "xloc": [ "default-mobile.handlebars->11->1001", "default-mobile.handlebars->11->981", - "default.handlebars->47->2363", - "default.handlebars->47->2402", - "default3.handlebars->35->2360", - "default3.handlebars->35->2399" + "default.handlebars->47->2367", + "default.handlebars->47->2406", + "default3.handlebars->35->2364", + "default3.handlebars->35->2403" ] }, { @@ -50759,8 +50772,8 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->47->1160", - "default3.handlebars->35->1155" + "default.handlebars->47->1164", + "default3.handlebars->35->1159" ] }, { @@ -50796,8 +50809,8 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->47->2842", - "default3.handlebars->35->2836" + "default.handlebars->47->2846", + "default3.handlebars->35->2840" ] }, { @@ -50856,8 +50869,8 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->47->2841", - "default3.handlebars->35->2835" + "default.handlebars->47->2845", + "default3.handlebars->35->2839" ] }, { @@ -50886,10 +50899,10 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->47->1159", - "default.handlebars->47->2840", - "default3.handlebars->35->1154", - "default3.handlebars->35->2834" + "default.handlebars->47->1163", + "default.handlebars->47->2844", + "default3.handlebars->35->1158", + "default3.handlebars->35->2838" ] }, { @@ -51122,8 +51135,8 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->47->2117", - "default3.handlebars->35->2117" + "default.handlebars->47->2121", + "default3.handlebars->35->2121" ] }, { @@ -51153,8 +51166,8 @@ "zh-cht": "使用軟體代理進行管理", "xloc": [ "default-mobile.handlebars->11->943", - "default.handlebars->47->2176", - "default3.handlebars->35->2172" + "default.handlebars->47->2180", + "default3.handlebars->35->2176" ] }, { @@ -51183,8 +51196,8 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->47->2752", - "default3.handlebars->35->2749" + "default.handlebars->47->2756", + "default3.handlebars->35->2753" ] }, { @@ -51261,8 +51274,8 @@ "uk": "ID Виробника", "xloc": [ "default-mobile.handlebars->11->853", - "default.handlebars->47->1698", - "default3.handlebars->35->1681" + "default.handlebars->47->1702", + "default3.handlebars->35->1685" ] }, { @@ -51273,8 +51286,8 @@ "uk": "Версія Виробника", "xloc": [ "default-mobile.handlebars->11->854", - "default.handlebars->47->1699", - "default3.handlebars->35->1682" + "default.handlebars->47->1703", + "default3.handlebars->35->1686" ] }, { @@ -51304,8 +51317,8 @@ "zh-cht": "毛利文", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->47->1970", - "default3.handlebars->35->1951", + "default.handlebars->47->1974", + "default3.handlebars->35->1955", "login2.handlebars->7->116" ] }, @@ -51420,16 +51433,16 @@ "zh-cht": "馬拉地文", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->47->1971", - "default3.handlebars->35->1952", + "default.handlebars->47->1975", + "default3.handlebars->35->1956", "login2.handlebars->7->117" ] }, { "en": "Markdown syntax supported", "xloc": [ - "default.handlebars->47->1185", - "default3.handlebars->35->1180" + "default.handlebars->47->1189", + "default3.handlebars->35->1184" ] }, { @@ -51458,14 +51471,14 @@ "zh-cht": "掩碼:{0}", "xloc": [ "default-mobile.handlebars->11->811", - "default.handlebars->47->1656", - "default3.handlebars->35->1641" + "default.handlebars->47->1660", + "default3.handlebars->35->1645" ] }, { "en": "Materia", "xloc": [ - "default3.handlebars->35->2090" + "default3.handlebars->35->2094" ] }, { @@ -51494,8 +51507,8 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->47->3331", - "default3.handlebars->35->3319" + "default.handlebars->47->3354", + "default3.handlebars->35->3342" ] }, { @@ -51620,11 +51633,11 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->47->3374", - "default.handlebars->47->3379", + "default.handlebars->47->3397", + "default.handlebars->47->3402", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7", - "default3.handlebars->35->3362", - "default3.handlebars->35->3367", + "default3.handlebars->35->3385", + "default3.handlebars->35->3390", "default3.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7" ] }, @@ -51657,17 +51670,17 @@ "default-mobile.handlebars->11->870", "default-mobile.handlebars->11->876", "default-mobile.handlebars->11->882", - "default.handlebars->47->1611", - "default.handlebars->47->1715", - "default.handlebars->47->1721", - "default.handlebars->47->1727", - "default.handlebars->47->3352", + "default.handlebars->47->1615", + "default.handlebars->47->1719", + "default.handlebars->47->1725", + "default.handlebars->47->1731", + "default.handlebars->47->3375", "default.handlebars->container->column_l->p40->3->1->p40type->3", - "default3.handlebars->35->1596", - "default3.handlebars->35->1698", - "default3.handlebars->35->1704", - "default3.handlebars->35->1710", - "default3.handlebars->35->3340", + "default3.handlebars->35->1600", + "default3.handlebars->35->1702", + "default3.handlebars->35->1708", + "default3.handlebars->35->1714", + "default3.handlebars->35->3363", "default3.handlebars->container->column_l->p40->3->3->p40type->3" ] }, @@ -51702,8 +51715,8 @@ "default-mobile.handlebars->11->565", "default-mobile.handlebars->11->789", "default-mobile.handlebars->11->797", - "default.handlebars->47->1624", - "default.handlebars->47->1632", + "default.handlebars->47->1628", + "default.handlebars->47->1636", "default.handlebars->47->623", "default.handlebars->47->627", "default.handlebars->47->631", @@ -51715,10 +51728,10 @@ "default.handlebars->47->678", "default.handlebars->47->685", "default.handlebars->47->691", - "default.handlebars->47->917", - "default.handlebars->47->995", - "default3.handlebars->35->1609", - "default3.handlebars->35->1617", + "default.handlebars->47->921", + "default.handlebars->47->999", + "default3.handlebars->35->1613", + "default3.handlebars->35->1621", "default3.handlebars->35->620", "default3.handlebars->35->624", "default3.handlebars->35->628", @@ -51730,8 +51743,8 @@ "default3.handlebars->35->675", "default3.handlebars->35->682", "default3.handlebars->35->688", - "default3.handlebars->35->914", - "default3.handlebars->35->992" + "default3.handlebars->35->918", + "default3.handlebars->35->996" ] }, { @@ -51761,8 +51774,8 @@ "zh-cht": "網格代理控制台", "xloc": [ "default-mobile.handlebars->11->989", - "default.handlebars->47->2373", - "default3.handlebars->35->2370" + "default.handlebars->47->2377", + "default3.handlebars->35->2374" ] }, { @@ -51843,8 +51856,8 @@ "zh-chs": "网格中继", "zh-cht": "Mesh Relay", "xloc": [ - "default.handlebars->47->1001", - "default3.handlebars->35->998" + "default.handlebars->47->1005", + "default3.handlebars->35->1002" ] }, { @@ -51875,10 +51888,10 @@ "xloc": [ "default.handlebars->47->420", "default.handlebars->47->727", - "default.handlebars->47->994", + "default.handlebars->47->998", "default3.handlebars->35->417", "default3.handlebars->35->724", - "default3.handlebars->35->991" + "default3.handlebars->35->995" ] }, { @@ -51907,12 +51920,12 @@ "zh-chs": "Mesh代理可以经过其他代理作为中继访问得到。", "zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。", "xloc": [ - "default.handlebars->47->1000", + "default.handlebars->47->1004", "default.handlebars->47->426", "default.handlebars->47->733", + "default3.handlebars->35->1001", "default3.handlebars->35->423", - "default3.handlebars->35->730", - "default3.handlebars->35->997" + "default3.handlebars->35->730" ] }, { @@ -51941,10 +51954,10 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->47->1359", - "default.handlebars->47->1361", - "default3.handlebars->35->1347", - "default3.handlebars->35->1349" + "default.handlebars->47->1363", + "default.handlebars->47->1365", + "default3.handlebars->35->1351", + "default3.handlebars->35->1353" ] }, { @@ -51973,8 +51986,8 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->47->3391", - "default3.handlebars->35->3379" + "default.handlebars->47->3414", + "default3.handlebars->35->3402" ] }, { @@ -52003,8 +52016,8 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->47->3392", - "default3.handlebars->35->3380" + "default.handlebars->47->3415", + "default3.handlebars->35->3403" ] }, { @@ -52033,11 +52046,11 @@ "zh-chs": "网格中心", "zh-cht": "網格中心", "xloc": [ - "default.handlebars->47->1195", - "default.handlebars->47->1209", + "default.handlebars->47->1199", + "default.handlebars->47->1213", "default.handlebars->47->801", - "default3.handlebars->35->1190", - "default3.handlebars->35->1204", + "default3.handlebars->35->1194", + "default3.handlebars->35->1208", "default3.handlebars->35->798" ] }, @@ -52093,11 +52106,11 @@ "zh-chs": "MeshCentral 助手", "zh-cht": "MeshCentral 助手", "xloc": [ - "default.handlebars->47->2441", + "default.handlebars->47->2445", "default.handlebars->47->566", "default.handlebars->47->593", "default.handlebars->47->606", - "default3.handlebars->35->2438", + "default3.handlebars->35->2442", "default3.handlebars->35->563", "default3.handlebars->35->590", "default3.handlebars->35->603" @@ -52302,8 +52315,8 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->47->1344", - "default3.handlebars->35->1332" + "default.handlebars->47->1348", + "default3.handlebars->35->1336" ] }, { @@ -52440,8 +52453,8 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->47->1339", - "default3.handlebars->35->1329" + "default.handlebars->47->1343", + "default3.handlebars->35->1333" ] }, { @@ -52526,8 +52539,8 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->47->3390", - "default3.handlebars->35->3378" + "default.handlebars->47->3413", + "default3.handlebars->35->3401" ] }, { @@ -52587,10 +52600,10 @@ "xloc": [ "default.handlebars->47->206", "default.handlebars->47->208", - "default.handlebars->47->2162", + "default.handlebars->47->2166", "default3.handlebars->35->206", "default3.handlebars->35->208", - "default3.handlebars->35->2160" + "default3.handlebars->35->2164" ] }, { @@ -52619,11 +52632,11 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->47->1049", - "default.handlebars->47->1357", + "default.handlebars->47->1053", + "default.handlebars->47->1361", "default.handlebars->47->403", - "default3.handlebars->35->1046", - "default3.handlebars->35->1345", + "default3.handlebars->35->1050", + "default3.handlebars->35->1349", "default3.handlebars->35->400" ] }, @@ -52653,8 +52666,8 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->47->1370", - "default3.handlebars->35->1358" + "default.handlebars->47->1374", + "default3.handlebars->35->1362" ] }, { @@ -52683,8 +52696,8 @@ "zh-chs": "MeshCmd(Linux ARM,64位)", "zh-cht": "MeshCmd(Linux ARM,64位)", "xloc": [ - "default.handlebars->47->1371", - "default3.handlebars->35->1359" + "default.handlebars->47->1375", + "default3.handlebars->35->1363" ] }, { @@ -52713,8 +52726,8 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->47->1366", - "default3.handlebars->35->1354" + "default.handlebars->47->1370", + "default3.handlebars->35->1358" ] }, { @@ -52743,8 +52756,8 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->47->1367", - "default3.handlebars->35->1355" + "default.handlebars->47->1371", + "default3.handlebars->35->1359" ] }, { @@ -52756,8 +52769,8 @@ "pl": "MeshCmd (plik wykonywalny Win ARM-64)", "uk": "MeshCmd (виконуваний файл Win ARM-64)", "xloc": [ - "default.handlebars->47->1365", - "default3.handlebars->35->1353" + "default.handlebars->47->1369", + "default3.handlebars->35->1357" ] }, { @@ -52769,8 +52782,8 @@ "pl": "MeshCmd (plik wykonywalny Win x86-32)", "uk": "MeshCmd (виконуваний файл Win x86 32біт)", "xloc": [ - "default.handlebars->47->1363", - "default3.handlebars->35->1351" + "default.handlebars->47->1367", + "default3.handlebars->35->1355" ] }, { @@ -52782,8 +52795,8 @@ "pl": "MeshCmd (plik wykonywalny Win x86-64)", "uk": "MeshCmd (виконуваний файл Win x86-64)", "xloc": [ - "default.handlebars->47->1364", - "default3.handlebars->35->1352" + "default.handlebars->47->1368", + "default3.handlebars->35->1356" ] }, { @@ -52890,8 +52903,8 @@ "zh-chs": "MeshCmd(macOS,ARM-64位)", "zh-cht": "MeshCmd(macOS,ARM-64位)", "xloc": [ - "default.handlebars->47->1369", - "default3.handlebars->35->1357" + "default.handlebars->47->1373", + "default3.handlebars->35->1361" ] }, { @@ -52920,8 +52933,8 @@ "zh-chs": "MeshCmd(macOS,x86-ARM-64位)", "zh-cht": "MeshCmd(macOS,x86-ARM-64位)", "xloc": [ - "default.handlebars->47->1368", - "default3.handlebars->35->1356" + "default.handlebars->47->1372", + "default3.handlebars->35->1360" ] }, { @@ -52950,8 +52963,8 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->47->1354", - "default3.handlebars->35->1342" + "default.handlebars->47->1358", + "default3.handlebars->35->1346" ] }, { @@ -53007,7 +53020,7 @@ "zh-cht": "MeshMessenger", "xloc": [ "messenger.handlebars->remoteImage->3->1", - "player.handlebars->3->32" + "player.handlebars->3->35" ] }, { @@ -53062,15 +53075,15 @@ "zh-chs": "消息", "zh-cht": "訊息", "xloc": [ - "default.handlebars->47->1028", - "default.handlebars->47->1319", - "default.handlebars->47->3015", - "default.handlebars->47->3210", + "default.handlebars->47->1032", + "default.handlebars->47->1323", + "default.handlebars->47->3019", + "default.handlebars->47->3220", "default.handlebars->47->578", - "default3.handlebars->35->1025", - "default3.handlebars->35->1310", - "default3.handlebars->35->3009", - "default3.handlebars->35->3198", + "default3.handlebars->35->1029", + "default3.handlebars->35->1314", + "default3.handlebars->35->3013", + "default3.handlebars->35->3208", "default3.handlebars->35->575" ] }, @@ -53100,9 +53113,9 @@ "zh-chs": "留言框", "zh-cht": "留言框", "xloc": [ - "default.handlebars->47->1200", + "default.handlebars->47->1204", "default.handlebars->47->780", - "default3.handlebars->35->1195", + "default3.handlebars->35->1199", "default3.handlebars->35->777" ] }, @@ -53132,8 +53145,8 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->47->3388", - "default3.handlebars->35->3376" + "default.handlebars->47->3411", + "default3.handlebars->35->3399" ] }, { @@ -53147,8 +53160,8 @@ "pl": "Błąd wiadomości", "uk": "Помилка повідомлення", "xloc": [ - "default.handlebars->47->3316", - "default3.handlebars->35->3304" + "default.handlebars->47->3339", + "default3.handlebars->35->3327" ] }, { @@ -53162,8 +53175,8 @@ "pl": "Błąd wiadomości: {0}", "uk": "Помилка повідомлення: {0}", "xloc": [ - "default.handlebars->47->3317", - "default3.handlebars->35->3305" + "default.handlebars->47->3340", + "default3.handlebars->35->3328" ] }, { @@ -53192,8 +53205,8 @@ "pl": "Wiadomość wysłana.", "uk": "Повідомлення:", "xloc": [ - "default.handlebars->47->3315", - "default3.handlebars->35->3303" + "default.handlebars->47->3338", + "default3.handlebars->35->3326" ] }, { @@ -53265,10 +53278,10 @@ "pl": "Wiadomości", "uk": "Обмін повідомленнями", "xloc": [ - "default.handlebars->47->2959", - "default.handlebars->47->3008", - "default3.handlebars->35->2953", - "default3.handlebars->35->3002", + "default.handlebars->47->2963", + "default.handlebars->47->3012", + "default3.handlebars->35->2957", + "default3.handlebars->35->3006", "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", "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" @@ -53285,10 +53298,10 @@ "pl": "Wiadomości ({0})", "uk": "Обмін повідомленнями ({0})", "xloc": [ - "default.handlebars->47->2217", - "default.handlebars->47->991", - "default3.handlebars->35->2213", - "default3.handlebars->35->988" + "default.handlebars->47->2221", + "default.handlebars->47->995", + "default3.handlebars->35->2217", + "default3.handlebars->35->992" ] }, { @@ -53301,18 +53314,18 @@ "pl": "Powiadomienia w Komunikatorze", "uk": "Сповіщення месенджера", "xloc": [ - "default.handlebars->47->1130", - "default.handlebars->47->1798", - "default.handlebars->47->1818", - "default.handlebars->47->2462", + "default.handlebars->47->1134", + "default.handlebars->47->1802", + "default.handlebars->47->1822", + "default.handlebars->47->2466", "default.handlebars->47->269", - "default.handlebars->47->3055", - "default3.handlebars->35->1125", - "default3.handlebars->35->1780", - "default3.handlebars->35->1800", - "default3.handlebars->35->2459", + "default.handlebars->47->3059", + "default3.handlebars->35->1129", + "default3.handlebars->35->1784", + "default3.handlebars->35->1804", + "default3.handlebars->35->2463", "default3.handlebars->35->266", - "default3.handlebars->35->3049" + "default3.handlebars->35->3053" ] }, { @@ -53326,8 +53339,8 @@ "pl": "Konto komunnikatora tego użytkownika.", "uk": "Месенджер", "xloc": [ - "default.handlebars->47->3035", - "default3.handlebars->35->3029" + "default.handlebars->47->3039", + "default3.handlebars->35->3033" ] }, { @@ -53341,8 +53354,8 @@ "pl": "Wiadomości włączone", "uk": "Обмін повідомленнями ввімкнено", "xloc": [ - "default.handlebars->47->2960", - "default3.handlebars->35->2954" + "default.handlebars->47->2964", + "default3.handlebars->35->2958" ] }, { @@ -53371,12 +53384,14 @@ "zh-chs": "信使", "zh-cht": "信使", "xloc": [ - "default.handlebars->47->3149", "default.handlebars->47->3156", - "default.handlebars->47->3219", - "default3.handlebars->35->3137", + "default.handlebars->47->3166", + "default.handlebars->47->3232", + "default.handlebars->47->3285", "default3.handlebars->35->3144", - "default3.handlebars->35->3207" + "default3.handlebars->35->3154", + "default3.handlebars->35->3220", + "default3.handlebars->35->3273" ] }, { @@ -53389,8 +53404,8 @@ "pl": "Wiadomości", "uk": "Обмін повідомленнями", "xloc": [ - "default.handlebars->47->3239", - "default3.handlebars->35->3227" + "default.handlebars->47->3252", + "default3.handlebars->35->3240" ] }, { @@ -53494,7 +53509,7 @@ { "en": "Minty", "xloc": [ - "default3.handlebars->35->2091" + "default3.handlebars->35->2095" ] }, { @@ -53584,8 +53599,8 @@ "zh-cht": "移動設備", "xloc": [ "default-mobile.handlebars->11->804", - "default.handlebars->47->1639", - "default3.handlebars->35->1624" + "default.handlebars->47->1643", + "default3.handlebars->35->1628" ] }, { @@ -53626,8 +53641,8 @@ "uk": "Режим", "xloc": [ "default-mobile.handlebars->11->842", - "default.handlebars->47->1687", - "default3.handlebars->35->1670" + "default.handlebars->47->1691", + "default3.handlebars->35->1674" ] }, { @@ -53658,12 +53673,12 @@ "xloc": [ "default-mobile.handlebars->11->798", "default-mobile.handlebars->11->883", - "default.handlebars->47->1633", - "default.handlebars->47->1728", - "default.handlebars->47->2121", - "default3.handlebars->35->1618", - "default3.handlebars->35->1711", - "default3.handlebars->35->2121" + "default.handlebars->47->1637", + "default.handlebars->47->1732", + "default.handlebars->47->2125", + "default3.handlebars->35->1622", + "default3.handlebars->35->1715", + "default3.handlebars->35->2125" ] }, { @@ -53699,8 +53714,8 @@ "zh-chs": "修改节点位置", "zh-cht": "修改節點位置", "xloc": [ - "default.handlebars->47->867", - "default3.handlebars->35->864" + "default.handlebars->47->871", + "default3.handlebars->35->868" ] }, { @@ -53730,8 +53745,8 @@ "zh-cht": "摩爾達維亞文", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->47->1972", - "default3.handlebars->35->1953", + "default.handlebars->47->1976", + "default3.handlebars->35->1957", "login2.handlebars->7->118" ] }, @@ -53764,7 +53779,7 @@ { "en": "Morph", "xloc": [ - "default3.handlebars->35->2092" + "default3.handlebars->35->2096" ] }, { @@ -53794,8 +53809,8 @@ "zh-cht": "母板", "xloc": [ "default-mobile.handlebars->11->851", - "default.handlebars->47->1696", - "default3.handlebars->35->1679" + "default.handlebars->47->1700", + "default3.handlebars->35->1683" ] }, { @@ -53824,8 +53839,8 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->47->1040", - "default3.handlebars->35->1037" + "default.handlebars->47->1044", + "default3.handlebars->35->1041" ] }, { @@ -53884,8 +53899,8 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->47->2589", - "default3.handlebars->35->2586" + "default.handlebars->47->2593", + "default3.handlebars->35->2590" ] }, { @@ -53914,8 +53929,8 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->47->2622", - "default3.handlebars->35->2619" + "default.handlebars->47->2626", + "default3.handlebars->35->2623" ] }, { @@ -53974,10 +53989,10 @@ "zh-chs": "多个问题", "zh-cht": "多個問題", "xloc": [ - "default.handlebars->47->2475", - "default.handlebars->47->2489", - "default3.handlebars->35->2472", - "default3.handlebars->35->2486" + "default.handlebars->47->2479", + "default.handlebars->47->2493", + "default3.handlebars->35->2476", + "default3.handlebars->35->2490" ] }, { @@ -54032,8 +54047,8 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->47->3168", - "default3.handlebars->35->3156" + "default.handlebars->47->3178", + "default3.handlebars->35->3166" ] }, { @@ -54063,9 +54078,9 @@ "zh-cht": "必須以用戶身份運行", "xloc": [ "default-mobile.handlebars->11->616", - "default.handlebars->47->1291", + "default.handlebars->47->1295", "default.handlebars->47->821", - "default3.handlebars->35->1286", + "default3.handlebars->35->1290", "default3.handlebars->35->818" ] }, @@ -54300,8 +54315,8 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->47->1766", - "default3.handlebars->35->1749" + "default.handlebars->47->1770", + "default3.handlebars->35->1753" ] }, { @@ -54544,10 +54559,10 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->47->1847", - "default.handlebars->47->1850", - "default3.handlebars->35->1828", - "default3.handlebars->35->1831" + "default.handlebars->47->1851", + "default.handlebars->47->1854", + "default3.handlebars->35->1832", + "default3.handlebars->35->1835" ] }, { @@ -54576,8 +54591,8 @@ "zh-chs": "不支持 NLA", "zh-cht": "不支持 NLA", "xloc": [ - "default.handlebars->47->1391", - "default3.handlebars->35->1378" + "default.handlebars->47->1395", + "default3.handlebars->35->1382" ] }, { @@ -54730,48 +54745,48 @@ "default-mobile.handlebars->11->845", "default-mobile.handlebars->11->948", "default-mobile.handlebars->11->971", - "default.handlebars->47->1452", - "default.handlebars->47->1468", - "default.handlebars->47->1612", + "default.handlebars->47->1456", + "default.handlebars->47->1472", + "default.handlebars->47->1616", "default.handlebars->47->167", - "default.handlebars->47->1690", + "default.handlebars->47->1694", "default.handlebars->47->181", - "default.handlebars->47->2111", - "default.handlebars->47->2139", - "default.handlebars->47->2144", - "default.handlebars->47->2181", - "default.handlebars->47->2321", - "default.handlebars->47->2733", - "default.handlebars->47->2851", - "default.handlebars->47->2867", - "default.handlebars->47->2874", - "default.handlebars->47->2925", - "default.handlebars->47->2944", + "default.handlebars->47->2115", + "default.handlebars->47->2143", + "default.handlebars->47->2148", + "default.handlebars->47->2185", + "default.handlebars->47->2325", + "default.handlebars->47->2737", + "default.handlebars->47->2855", + "default.handlebars->47->2871", + "default.handlebars->47->2878", + "default.handlebars->47->2929", + "default.handlebars->47->2948", "default.handlebars->47->344", - "default.handlebars->47->896", + "default.handlebars->47->900", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2", - "default3.handlebars->35->1439", - "default3.handlebars->35->1454", - "default3.handlebars->35->1597", + "default3.handlebars->35->1443", + "default3.handlebars->35->1458", + "default3.handlebars->35->1601", "default3.handlebars->35->167", - "default3.handlebars->35->1673", + "default3.handlebars->35->1677", "default3.handlebars->35->181", - "default3.handlebars->35->2111", - "default3.handlebars->35->2139", - "default3.handlebars->35->2144", - "default3.handlebars->35->2177", - "default3.handlebars->35->2316", - "default3.handlebars->35->2317", - "default3.handlebars->35->2730", - "default3.handlebars->35->2845", - "default3.handlebars->35->2861", - "default3.handlebars->35->2868", - "default3.handlebars->35->2919", - "default3.handlebars->35->2938", + "default3.handlebars->35->2115", + "default3.handlebars->35->2143", + "default3.handlebars->35->2148", + "default3.handlebars->35->2181", + "default3.handlebars->35->2320", + "default3.handlebars->35->2321", + "default3.handlebars->35->2734", + "default3.handlebars->35->2849", + "default3.handlebars->35->2865", + "default3.handlebars->35->2872", + "default3.handlebars->35->2923", + "default3.handlebars->35->2942", "default3.handlebars->35->341", - "default3.handlebars->35->893", + "default3.handlebars->35->897", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default3.handlebars->container->column_l->p42->p42tbl->1->0->5" @@ -54833,7 +54848,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->47->2832" + "default.handlebars->47->2836" ] }, { @@ -54863,8 +54878,8 @@ "zh-cht": "納瓦霍文", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->47->1973", - "default3.handlebars->35->1954", + "default.handlebars->47->1977", + "default3.handlebars->35->1958", "login2.handlebars->7->119" ] }, @@ -54895,8 +54910,8 @@ "zh-cht": "恩東加", "xloc": [ "default-mobile.handlebars->11->234", - "default.handlebars->47->1974", - "default3.handlebars->35->1955", + "default.handlebars->47->1978", + "default3.handlebars->35->1959", "login2.handlebars->7->120" ] }, @@ -54927,8 +54942,8 @@ "zh-cht": "尼泊爾文", "xloc": [ "default-mobile.handlebars->11->235", - "default.handlebars->47->1975", - "default3.handlebars->35->1956", + "default.handlebars->47->1979", + "default3.handlebars->35->1960", "login2.handlebars->7->121" ] }, @@ -54958,8 +54973,8 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->47->1337", - "default3.handlebars->35->1327" + "default.handlebars->47->1341", + "default3.handlebars->35->1331" ] }, { @@ -55000,8 +55015,8 @@ "pl": "Zapisy informacji o interfejsach sieciowych", "uk": "Записати інформацію про мережевий інтерфейс", "xloc": [ - "default.handlebars->47->3252", - "default3.handlebars->35->3240" + "default.handlebars->47->3265", + "default3.handlebars->35->3253" ] }, { @@ -55031,10 +55046,10 @@ "zh-cht": "網路", "xloc": [ "default-mobile.handlebars->11->819", - "default.handlebars->47->1649", - "default.handlebars->47->1664", - "default3.handlebars->35->1634", - "default3.handlebars->35->1649" + "default.handlebars->47->1653", + "default.handlebars->47->1668", + "default3.handlebars->35->1638", + "default3.handlebars->35->1653" ] }, { @@ -55064,9 +55079,9 @@ "zh-cht": "新", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->47->2138", + "default.handlebars->47->2142", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1", - "default3.handlebars->35->2138", + "default3.handlebars->35->2142", "default3.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -55096,8 +55111,8 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->47->2629", - "default3.handlebars->35->2626" + "default.handlebars->47->2633", + "default3.handlebars->35->2630" ] }, { @@ -55127,8 +55142,8 @@ "zh-cht": "新賬戶", "xloc": [ "default-mobile.handlebars->11->1030", - "default.handlebars->47->3278", - "default3.handlebars->35->3266" + "default.handlebars->47->3301", + "default3.handlebars->35->3289" ] }, { @@ -55214,12 +55229,12 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->11->340", - "default.handlebars->47->1329", - "default.handlebars->47->2104", - "default.handlebars->47->2127", - "default3.handlebars->35->1320", - "default3.handlebars->35->2107", - "default3.handlebars->35->2127" + "default.handlebars->47->1333", + "default.handlebars->47->2108", + "default.handlebars->47->2131", + "default3.handlebars->35->1324", + "default3.handlebars->35->2111", + "default3.handlebars->35->2131" ] }, { @@ -55250,12 +55265,12 @@ "xloc": [ "default-mobile.handlebars->11->372", "default-mobile.handlebars->11->719", - "default.handlebars->47->1566", - "default.handlebars->47->2519", + "default.handlebars->47->1570", + "default.handlebars->47->2523", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default3.handlebars->35->1551", - "default3.handlebars->35->2516", + "default3.handlebars->35->1555", + "default3.handlebars->35->2520", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing-mobile.handlebars->11->83", @@ -55409,10 +55424,10 @@ "zh-chs": "新密码*", "zh-cht": "新密碼*", "xloc": [ - "default.handlebars->47->2295", - "default.handlebars->47->2296", - "default3.handlebars->35->2289", - "default3.handlebars->35->2290" + "default.handlebars->47->2299", + "default.handlebars->47->2300", + "default3.handlebars->35->2293", + "default3.handlebars->35->2294" ] }, { @@ -55443,8 +55458,8 @@ "xloc": [ "default-mobile.handlebars->11->335", "default-mobile.handlebars->11->336", - "default.handlebars->47->2099", - "default.handlebars->47->2100" + "default.handlebars->47->2103", + "default.handlebars->47->2104" ] }, { @@ -55513,12 +55528,12 @@ "default-mobile.handlebars->11->857", "default-mobile.handlebars->11->860", "default-mobile.handlebars->11->863", - "default.handlebars->47->1702", - "default.handlebars->47->1705", - "default.handlebars->47->1708", - "default3.handlebars->35->1685", - "default3.handlebars->35->1688", - "default3.handlebars->35->1691" + "default.handlebars->47->1706", + "default.handlebars->47->1709", + "default.handlebars->47->1712", + "default3.handlebars->35->1689", + "default3.handlebars->35->1692", + "default3.handlebars->35->1695" ] }, { @@ -55547,10 +55562,10 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->47->1139", - "default.handlebars->47->1164", - "default3.handlebars->35->1134", - "default3.handlebars->35->1159" + "default.handlebars->47->1143", + "default.handlebars->47->1168", + "default3.handlebars->35->1138", + "default3.handlebars->35->1163" ] }, { @@ -55636,8 +55651,8 @@ "zh-chs": "无座席控制台", "zh-cht": "無代理控制台", "xloc": [ - "default.handlebars->47->3070", - "default3.handlebars->35->3064" + "default.handlebars->47->3074", + "default3.handlebars->35->3068" ] }, { @@ -55646,8 +55661,8 @@ "nl": "Geen toestemming", "uk": "Нема Згоди", "xloc": [ - "default.handlebars->47->1256", - "default3.handlebars->35->1251" + "default.handlebars->47->1260", + "default3.handlebars->35->1255" ] }, { @@ -55676,8 +55691,8 @@ "zh-chs": "没有控制台", "zh-cht": "沒有控制台", "xloc": [ - "default.handlebars->47->2968", - "default3.handlebars->35->2962" + "default.handlebars->47->2972", + "default3.handlebars->35->2966" ] }, { @@ -55708,10 +55723,10 @@ "xloc": [ "default-mobile.handlebars->11->522", "default-mobile.handlebars->11->523", - "default.handlebars->47->931", - "default.handlebars->47->932", - "default3.handlebars->35->928", - "default3.handlebars->35->929" + "default.handlebars->47->935", + "default.handlebars->47->936", + "default3.handlebars->35->932", + "default3.handlebars->35->933" ] }, { @@ -55740,14 +55755,14 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->47->1141", - "default.handlebars->47->1166", - "default.handlebars->47->2410", - "default.handlebars->47->2964", - "default3.handlebars->35->1136", - "default3.handlebars->35->1161", - "default3.handlebars->35->2407", - "default3.handlebars->35->2958" + "default.handlebars->47->1145", + "default.handlebars->47->1170", + "default.handlebars->47->2414", + "default.handlebars->47->2968", + "default3.handlebars->35->1140", + "default3.handlebars->35->1165", + "default3.handlebars->35->2411", + "default3.handlebars->35->2962" ] }, { @@ -55776,10 +55791,10 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->47->2369", - "default.handlebars->47->3066", - "default3.handlebars->35->2366", - "default3.handlebars->35->3060" + "default.handlebars->47->2373", + "default.handlebars->47->3070", + "default3.handlebars->35->2370", + "default3.handlebars->35->3064" ] }, { @@ -55834,12 +55849,12 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->47->1608", - "default.handlebars->47->2709", - "default.handlebars->47->3132", - "default3.handlebars->35->1593", - "default3.handlebars->35->2706", - "default3.handlebars->35->3120" + "default.handlebars->47->1612", + "default.handlebars->47->2713", + "default.handlebars->47->3136", + "default3.handlebars->35->1597", + "default3.handlebars->35->2710", + "default3.handlebars->35->3124" ] }, { @@ -55869,10 +55884,10 @@ "zh-cht": "不能存取檔案", "xloc": [ "default-mobile.handlebars->11->987", - "default.handlebars->47->2371", - "default.handlebars->47->3069", - "default3.handlebars->35->2368", - "default3.handlebars->35->3063" + "default.handlebars->47->2375", + "default.handlebars->47->3073", + "default3.handlebars->35->2372", + "default3.handlebars->35->3067" ] }, { @@ -55902,14 +55917,14 @@ "zh-cht": "沒有檔案", "xloc": [ "default-mobile.handlebars->11->1010", - "default.handlebars->47->1138", - "default.handlebars->47->1163", - "default.handlebars->47->2412", - "default.handlebars->47->2967", - "default3.handlebars->35->1133", - "default3.handlebars->35->1158", - "default3.handlebars->35->2409", - "default3.handlebars->35->2961" + "default.handlebars->47->1142", + "default.handlebars->47->1167", + "default.handlebars->47->2416", + "default.handlebars->47->2971", + "default3.handlebars->35->1137", + "default3.handlebars->35->1162", + "default3.handlebars->35->2413", + "default3.handlebars->35->2965" ] }, { @@ -55938,10 +55953,10 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->47->1136", - "default.handlebars->47->1161", - "default3.handlebars->35->1131", - "default3.handlebars->35->1156" + "default.handlebars->47->1140", + "default.handlebars->47->1165", + "default3.handlebars->35->1135", + "default3.handlebars->35->1160" ] }, { @@ -55972,10 +55987,10 @@ "xloc": [ "default-mobile.handlebars->11->1011", "default-mobile.handlebars->11->988", - "default.handlebars->47->2372", - "default.handlebars->47->2413", - "default3.handlebars->35->2369", - "default3.handlebars->35->2410" + "default.handlebars->47->2376", + "default.handlebars->47->2417", + "default3.handlebars->35->2373", + "default3.handlebars->35->2414" ] }, { @@ -56119,8 +56134,8 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->47->2905", - "default3.handlebars->35->2899" + "default.handlebars->47->2909", + "default3.handlebars->35->2903" ] }, { @@ -56149,8 +56164,8 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->47->2845", - "default3.handlebars->35->2839" + "default.handlebars->47->2849", + "default3.handlebars->35->2843" ] }, { @@ -56179,8 +56194,8 @@ "zh-chs": "没有新设备", "zh-cht": "沒有新設備", "xloc": [ - "default.handlebars->47->2846", - "default3.handlebars->35->2840" + "default.handlebars->47->2850", + "default3.handlebars->35->2844" ] }, { @@ -56209,10 +56224,10 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->47->2222", - "default.handlebars->47->2286", - "default3.handlebars->35->2218", - "default3.handlebars->35->2280" + "default.handlebars->47->2226", + "default.handlebars->47->2290", + "default3.handlebars->35->2222", + "default3.handlebars->35->2284" ] }, { @@ -56266,10 +56281,10 @@ "zh-chs": "没有遥控器", "zh-cht": "沒有遙控器", "xloc": [ - "default.handlebars->47->2970", - "default.handlebars->47->3072", - "default3.handlebars->35->2964", - "default3.handlebars->35->3066" + "default.handlebars->47->2974", + "default.handlebars->47->3076", + "default3.handlebars->35->2968", + "default3.handlebars->35->3070" ] }, { @@ -56298,10 +56313,10 @@ "zh-chs": "没有遥控器", "zh-cht": "沒有遙控器", "xloc": [ - "default.handlebars->47->2963", - "default.handlebars->47->3065", - "default3.handlebars->35->2957", - "default3.handlebars->35->3059" + "default.handlebars->47->2967", + "default.handlebars->47->3069", + "default3.handlebars->35->2961", + "default3.handlebars->35->3063" ] }, { @@ -56330,10 +56345,10 @@ "zh-chs": "无重置/关闭", "zh-cht": "無重置/關閉", "xloc": [ - "default.handlebars->47->2972", - "default.handlebars->47->3074", - "default3.handlebars->35->2966", - "default3.handlebars->35->3068" + "default.handlebars->47->2976", + "default.handlebars->47->3078", + "default3.handlebars->35->2970", + "default3.handlebars->35->3072" ] }, { @@ -56365,14 +56380,14 @@ "default-mobile.handlebars->11->1018", "default-mobile.handlebars->11->355", "default-mobile.handlebars->11->962", - "default.handlebars->47->1156", - "default.handlebars->47->1181", - "default.handlebars->47->2136", - "default.handlebars->47->2423", - "default3.handlebars->35->1151", - "default3.handlebars->35->1176", - "default3.handlebars->35->2136", - "default3.handlebars->35->2420" + "default.handlebars->47->1160", + "default.handlebars->47->1185", + "default.handlebars->47->2140", + "default.handlebars->47->2427", + "default3.handlebars->35->1155", + "default3.handlebars->35->1180", + "default3.handlebars->35->2140", + "default3.handlebars->35->2424" ] }, { @@ -56428,9 +56443,9 @@ "zh-cht": "沒有TLS加密", "xloc": [ "default-mobile.handlebars->11->626", - "default.handlebars->47->1315", + "default.handlebars->47->1319", "default.handlebars->47->523", - "default3.handlebars->35->1306", + "default3.handlebars->35->1310", "default3.handlebars->35->520" ] }, @@ -56461,14 +56476,14 @@ "zh-cht": "沒有終端", "xloc": [ "default-mobile.handlebars->11->1009", - "default.handlebars->47->1137", - "default.handlebars->47->1162", - "default.handlebars->47->2411", - "default.handlebars->47->2966", - "default3.handlebars->35->1132", - "default3.handlebars->35->1157", - "default3.handlebars->35->2408", - "default3.handlebars->35->2960" + "default.handlebars->47->1141", + "default.handlebars->47->1166", + "default.handlebars->47->2415", + "default.handlebars->47->2970", + "default3.handlebars->35->1136", + "default3.handlebars->35->1161", + "default3.handlebars->35->2412", + "default3.handlebars->35->2964" ] }, { @@ -56498,10 +56513,10 @@ "zh-cht": "不能訪問終端", "xloc": [ "default-mobile.handlebars->11->986", - "default.handlebars->47->2370", - "default.handlebars->47->3068", - "default3.handlebars->35->2367", - "default3.handlebars->35->3062" + "default.handlebars->47->2374", + "default.handlebars->47->3072", + "default3.handlebars->35->2371", + "default3.handlebars->35->3066" ] }, { @@ -56530,8 +56545,8 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->47->2847", - "default3.handlebars->35->2841" + "default.handlebars->47->2851", + "default3.handlebars->35->2845" ] }, { @@ -56560,10 +56575,10 @@ "zh-chs": "无卸载", "zh-cht": "無卸載", "xloc": [ - "default.handlebars->47->2969", - "default.handlebars->47->3071", - "default3.handlebars->35->2963", - "default3.handlebars->35->3065" + "default.handlebars->47->2973", + "default.handlebars->47->3075", + "default3.handlebars->35->2967", + "default3.handlebars->35->3069" ] }, { @@ -56592,10 +56607,10 @@ "zh-chs": "没有唤醒", "zh-cht": "沒有喚醒", "xloc": [ - "default.handlebars->47->2971", - "default.handlebars->47->3073", - "default3.handlebars->35->2965", - "default3.handlebars->35->3067" + "default.handlebars->47->2975", + "default.handlebars->47->3077", + "default3.handlebars->35->2969", + "default3.handlebars->35->3071" ] }, { @@ -56625,8 +56640,8 @@ "zh-cht": "該設備當前無可用操作。", "xloc": [ "default-mobile.handlebars->11->595", - "default.handlebars->47->1283", - "default3.handlebars->35->1278" + "default.handlebars->47->1287", + "default3.handlebars->35->1282" ] }, { @@ -56682,10 +56697,10 @@ "zh-cht": "沒有代理設備通過代理中繼", "xloc": [ "default-mobile.handlebars->11->945", - "default.handlebars->47->2113", - "default.handlebars->47->2178", - "default3.handlebars->35->2113", - "default3.handlebars->35->2174" + "default.handlebars->47->2117", + "default.handlebars->47->2182", + "default3.handlebars->35->2117", + "default3.handlebars->35->2178" ] }, { @@ -56714,10 +56729,10 @@ "zh-chs": "没有自动更新", "zh-cht": "沒有自動更新", "xloc": [ - "default.handlebars->47->2473", - "default.handlebars->47->2487", - "default3.handlebars->35->2470", - "default3.handlebars->35->2484" + "default.handlebars->47->2477", + "default.handlebars->47->2491", + "default3.handlebars->35->2474", + "default3.handlebars->35->2488" ] }, { @@ -56746,10 +56761,10 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->47->2911", - "default.handlebars->47->3100", - "default3.handlebars->35->2905", - "default3.handlebars->35->3088" + "default.handlebars->47->2915", + "default.handlebars->47->3104", + "default3.handlebars->35->2909", + "default3.handlebars->35->3092" ] }, { @@ -56897,8 +56912,8 @@ "zh-chs": "找不到设备。", "zh-cht": "找不到裝置。", "xloc": [ - "default.handlebars->47->884", - "default3.handlebars->35->881" + "default.handlebars->47->888", + "default3.handlebars->35->885" ] }, { @@ -56927,10 +56942,10 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->47->2917", - "default.handlebars->47->3112", - "default3.handlebars->35->2911", - "default3.handlebars->35->3100" + "default.handlebars->47->2921", + "default.handlebars->47->3116", + "default3.handlebars->35->2915", + "default3.handlebars->35->3104" ] }, { @@ -56991,8 +57006,8 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->47->2491", - "default3.handlebars->35->2488" + "default.handlebars->47->2495", + "default3.handlebars->35->2492" ] }, { @@ -57112,8 +57127,8 @@ "zh-chs": "找不到文件", "zh-cht": "找不到文件", "xloc": [ - "default.handlebars->47->1540", - "default3.handlebars->35->1525", + "default.handlebars->47->1544", + "default3.handlebars->35->1529", "sharing.handlebars->11->45" ] }, @@ -57143,8 +57158,8 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->47->2850", - "default3.handlebars->35->2844" + "default.handlebars->47->2854", + "default3.handlebars->35->2848" ] }, { @@ -57174,8 +57189,8 @@ "zh-cht": "沒有此裝置的訊息。", "xloc": [ "default-mobile.handlebars->11->915", - "default.handlebars->47->1760", - "default3.handlebars->35->1743" + "default.handlebars->47->1764", + "default3.handlebars->35->1747" ] }, { @@ -57235,8 +57250,8 @@ "zh-cht": "未定義鍵盤快捷鍵", "xloc": [ "default-mobile.handlebars->11->678", - "default.handlebars->47->1451", - "default3.handlebars->35->1438", + "default.handlebars->47->1455", + "default3.handlebars->35->1442", "sharing-mobile.handlebars->11->42" ] }, @@ -57266,8 +57281,8 @@ "zh-chs": "未定义键盘字符串", "zh-cht": "未定義鍵盤字符串", "xloc": [ - "default.handlebars->47->1456", - "default3.handlebars->35->1443" + "default.handlebars->47->1460", + "default3.handlebars->35->1447" ] }, { @@ -57358,8 +57373,8 @@ "zh-chs": "找不到位置。", "zh-cht": "找不到位置。", "xloc": [ - "default.handlebars->47->886", - "default3.handlebars->35->883" + "default.handlebars->47->890", + "default3.handlebars->35->887" ] }, { @@ -57388,8 +57403,8 @@ "zh-chs": "不再是“{0}”的中继。", "zh-cht": "不再是“{0}”的中繼。", "xloc": [ - "default.handlebars->47->2689", - "default3.handlebars->35->2686" + "default.handlebars->47->2693", + "default3.handlebars->35->2690" ] }, { @@ -57448,7 +57463,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->47->1332" + "default.handlebars->47->1336" ] }, { @@ -57478,8 +57493,8 @@ "zh-cht": "沒有此用戶的電話號碼", "xloc": [ "default-mobile.handlebars->11->1061", - "default.handlebars->47->3309", - "default3.handlebars->35->3297" + "default.handlebars->47->3332", + "default3.handlebars->35->3320" ] }, { @@ -57538,8 +57553,8 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->47->3137", - "default3.handlebars->35->3125" + "default.handlebars->47->3141", + "default3.handlebars->35->3129" ] }, { @@ -57569,9 +57584,9 @@ "zh-cht": "沒有可用的中繼設備。", "xloc": [ "default-mobile.handlebars->11->968", - "default.handlebars->47->2318", - "default3.handlebars->35->2311", - "default3.handlebars->35->2313" + "default.handlebars->47->2322", + "default3.handlebars->35->2315", + "default3.handlebars->35->2317" ] }, { @@ -57626,8 +57641,8 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->47->2939", - "default3.handlebars->35->2933" + "default.handlebars->47->2943", + "default3.handlebars->35->2937" ] }, { @@ -57682,8 +57697,8 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->47->3106", - "default3.handlebars->35->3094" + "default.handlebars->47->3110", + "default3.handlebars->35->3098" ] }, { @@ -57713,8 +57728,8 @@ "zh-cht": "沒有用戶管理權限", "xloc": [ "default-mobile.handlebars->11->1059", - "default.handlebars->47->3307", - "default3.handlebars->35->3295" + "default.handlebars->47->3330", + "default3.handlebars->35->3318" ] }, { @@ -57743,8 +57758,8 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->47->2741", - "default3.handlebars->35->2738" + "default.handlebars->47->2745", + "default3.handlebars->35->2742" ] }, { @@ -57773,8 +57788,8 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->47->1095", - "default3.handlebars->35->1092" + "default.handlebars->47->1099", + "default3.handlebars->35->1096" ] }, { @@ -57903,77 +57918,77 @@ "default-mobile.handlebars->11->668", "default-mobile.handlebars->11->716", "default-mobile.handlebars->11->950", - "default.handlebars->47->1005", - "default.handlebars->47->1439", - "default.handlebars->47->2172", - "default.handlebars->47->2183", - "default.handlebars->47->2199", - "default.handlebars->47->2211", - "default.handlebars->47->2218", - "default.handlebars->47->2220", - "default.handlebars->47->2274", - "default.handlebars->47->2476", - "default.handlebars->47->2501", - "default.handlebars->47->2506", - "default.handlebars->47->2717", + "default.handlebars->47->1009", + "default.handlebars->47->1443", + "default.handlebars->47->2176", + "default.handlebars->47->2187", + "default.handlebars->47->2203", + "default.handlebars->47->2215", + "default.handlebars->47->2222", + "default.handlebars->47->2224", + "default.handlebars->47->2278", + "default.handlebars->47->2480", + "default.handlebars->47->2505", + "default.handlebars->47->2510", + "default.handlebars->47->2721", "default.handlebars->47->286", - "default.handlebars->47->2871", - "default.handlebars->47->2873", - "default.handlebars->47->2882", - "default.handlebars->47->2894", - "default.handlebars->47->2958", - "default.handlebars->47->2961", - "default.handlebars->47->2973", - "default.handlebars->47->2983", + "default.handlebars->47->2875", + "default.handlebars->47->2877", + "default.handlebars->47->2886", + "default.handlebars->47->2898", + "default.handlebars->47->2962", + "default.handlebars->47->2965", + "default.handlebars->47->2977", "default.handlebars->47->2987", - "default.handlebars->47->2999", - "default.handlebars->47->3036", + "default.handlebars->47->2991", + "default.handlebars->47->3003", + "default.handlebars->47->3040", "default.handlebars->47->314", - "default.handlebars->47->3234", + "default.handlebars->47->3247", "default.handlebars->47->412", "default.handlebars->47->413", - "default.handlebars->47->893", - "default.handlebars->47->904", - "default.handlebars->47->905", + "default.handlebars->47->897", + "default.handlebars->47->908", + "default.handlebars->47->909", "default.handlebars->47->94", - "default.handlebars->47->985", - "default.handlebars->47->992", + "default.handlebars->47->989", + "default.handlebars->47->996", "default.handlebars->container->column_l->p41->3->3->p41traceStatus", - "default3.handlebars->35->1002", - "default3.handlebars->35->1426", - "default3.handlebars->35->2168", - "default3.handlebars->35->2179", - "default3.handlebars->35->2195", - "default3.handlebars->35->2207", - "default3.handlebars->35->2214", - "default3.handlebars->35->2216", - "default3.handlebars->35->2270", - "default3.handlebars->35->2473", - "default3.handlebars->35->2498", - "default3.handlebars->35->2503", - "default3.handlebars->35->2714", + "default3.handlebars->35->1006", + "default3.handlebars->35->1430", + "default3.handlebars->35->2172", + "default3.handlebars->35->2183", + "default3.handlebars->35->2199", + "default3.handlebars->35->2211", + "default3.handlebars->35->2218", + "default3.handlebars->35->2220", + "default3.handlebars->35->2274", + "default3.handlebars->35->2477", + "default3.handlebars->35->2502", + "default3.handlebars->35->2507", + "default3.handlebars->35->2718", "default3.handlebars->35->283", - "default3.handlebars->35->2865", - "default3.handlebars->35->2867", - "default3.handlebars->35->2876", - "default3.handlebars->35->2888", - "default3.handlebars->35->2952", - "default3.handlebars->35->2955", - "default3.handlebars->35->2967", - "default3.handlebars->35->2977", + "default3.handlebars->35->2869", + "default3.handlebars->35->2871", + "default3.handlebars->35->2880", + "default3.handlebars->35->2892", + "default3.handlebars->35->2956", + "default3.handlebars->35->2959", + "default3.handlebars->35->2971", "default3.handlebars->35->2981", - "default3.handlebars->35->2993", - "default3.handlebars->35->3030", + "default3.handlebars->35->2985", + "default3.handlebars->35->2997", + "default3.handlebars->35->3034", "default3.handlebars->35->311", - "default3.handlebars->35->3222", + "default3.handlebars->35->3235", "default3.handlebars->35->409", "default3.handlebars->35->410", - "default3.handlebars->35->890", - "default3.handlebars->35->901", - "default3.handlebars->35->902", + "default3.handlebars->35->894", + "default3.handlebars->35->905", + "default3.handlebars->35->906", "default3.handlebars->35->94", - "default3.handlebars->35->982", - "default3.handlebars->35->989", + "default3.handlebars->35->986", + "default3.handlebars->35->993", "default3.handlebars->container->column_l->p41->3->1->p41traceStatus", "sharing-mobile.handlebars->11->32", "sharing-mobile.handlebars->11->81" @@ -58061,8 +58076,8 @@ "zh-cht": "挪威文", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->47->1976", - "default3.handlebars->35->1957", + "default.handlebars->47->1980", + "default3.handlebars->35->1961", "login2.handlebars->7->122" ] }, @@ -58093,8 +58108,8 @@ "zh-cht": "挪威文(Bokmal)", "xloc": [ "default-mobile.handlebars->11->237", - "default.handlebars->47->1977", - "default3.handlebars->35->1958", + "default.handlebars->47->1981", + "default3.handlebars->35->1962", "login2.handlebars->7->123" ] }, @@ -58125,8 +58140,8 @@ "zh-cht": "挪威文(尼諾斯克)", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->47->1978", - "default3.handlebars->35->1959", + "default.handlebars->47->1982", + "default3.handlebars->35->1963", "login2.handlebars->7->124" ] }, @@ -58156,8 +58171,8 @@ "zh-chs": "未激活", "zh-cht": "未激活", "xloc": [ - "default.handlebars->47->1669", - "default3.handlebars->35->1652" + "default.handlebars->47->1673", + "default3.handlebars->35->1656" ] }, { @@ -58188,8 +58203,8 @@ "xloc": [ "default-mobile.handlebars->11->512", "default-mobile.handlebars->11->825", - "default.handlebars->47->919", - "default3.handlebars->35->916" + "default.handlebars->47->923", + "default3.handlebars->35->920" ] }, { @@ -58220,8 +58235,8 @@ "xloc": [ "default-mobile.handlebars->11->511", "default-mobile.handlebars->11->824", - "default.handlebars->47->918", - "default3.handlebars->35->915" + "default.handlebars->47->922", + "default3.handlebars->35->919" ] }, { @@ -58250,10 +58265,10 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->47->2467", - "default.handlebars->47->2480", - "default3.handlebars->35->2464", - "default3.handlebars->35->2477" + "default.handlebars->47->2471", + "default.handlebars->47->2484", + "default3.handlebars->35->2468", + "default3.handlebars->35->2481" ] }, { @@ -58283,8 +58298,8 @@ "zh-cht": "未知", "xloc": [ "default-mobile.handlebars->11->835", - "default.handlebars->47->1680", - "default3.handlebars->35->1663" + "default.handlebars->47->1684", + "default3.handlebars->35->1667" ] }, { @@ -58343,8 +58358,8 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->47->3160", - "default3.handlebars->35->3148" + "default.handlebars->47->3170", + "default3.handlebars->35->3158" ] }, { @@ -58373,10 +58388,10 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->47->2945", - "default.handlebars->47->2946", - "default3.handlebars->35->2939", - "default3.handlebars->35->2940" + "default.handlebars->47->2949", + "default.handlebars->47->2950", + "default3.handlebars->35->2943", + "default3.handlebars->35->2944" ] }, { @@ -58405,8 +58420,8 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->47->3080", - "default3.handlebars->35->3072" + "default.handlebars->47->3084", + "default3.handlebars->35->3076" ] }, { @@ -58438,19 +58453,19 @@ "default-mobile.handlebars->11->553", "default-mobile.handlebars->11->604", "default-mobile.handlebars->11->956", - "default.handlebars->47->1022", - "default.handlebars->47->1147", - "default.handlebars->47->1172", - "default.handlebars->47->1186", - "default.handlebars->47->2230", - "default.handlebars->47->3011", + "default.handlebars->47->1026", + "default.handlebars->47->1151", + "default.handlebars->47->1176", + "default.handlebars->47->1190", + "default.handlebars->47->2234", + "default.handlebars->47->3015", "default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0", - "default3.handlebars->35->1019", - "default3.handlebars->35->1142", - "default3.handlebars->35->1167", - "default3.handlebars->35->1181", - "default3.handlebars->35->2226", - "default3.handlebars->35->3005", + "default3.handlebars->35->1023", + "default3.handlebars->35->1146", + "default3.handlebars->35->1171", + "default3.handlebars->35->1185", + "default3.handlebars->35->2230", + "default3.handlebars->35->3009", "default3.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->1" ] }, @@ -58510,13 +58525,13 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->47->1134", - "default.handlebars->47->2086", - "default.handlebars->47->2466", + "default.handlebars->47->1138", + "default.handlebars->47->2090", + "default.handlebars->47->2470", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->14", - "default3.handlebars->35->1129", - "default3.handlebars->35->2068", - "default3.handlebars->35->2463", + "default3.handlebars->35->1133", + "default3.handlebars->35->2072", + "default3.handlebars->35->2467", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->12" ] }, @@ -58598,8 +58613,8 @@ "zh-chs": "通知音效", "zh-cht": "通知音效", "xloc": [ - "default.handlebars->47->2081", - "default3.handlebars->35->2063" + "default.handlebars->47->2085", + "default3.handlebars->35->2067" ] }, { @@ -58628,10 +58643,10 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->47->2219", - "default.handlebars->47->993", - "default3.handlebars->35->2215", - "default3.handlebars->35->990" + "default.handlebars->47->2223", + "default.handlebars->47->997", + "default3.handlebars->35->2219", + "default3.handlebars->35->994" ] }, { @@ -58660,9 +58675,9 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->47->3019", + "default.handlebars->47->3023", "default.handlebars->47->311", - "default3.handlebars->35->3013", + "default3.handlebars->35->3017", "default3.handlebars->35->308" ] }, @@ -58692,8 +58707,8 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->47->1254", - "default3.handlebars->35->1249" + "default.handlebars->47->1258", + "default3.handlebars->35->1253" ] }, { @@ -58722,12 +58737,12 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->47->2329", "default.handlebars->47->2333", - "default.handlebars->47->2336", - "default3.handlebars->35->2326", + "default.handlebars->47->2337", + "default.handlebars->47->2340", "default3.handlebars->35->2330", - "default3.handlebars->35->2333" + "default3.handlebars->35->2334", + "default3.handlebars->35->2337" ] }, { @@ -58756,8 +58771,8 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->47->2783", - "default3.handlebars->35->2779" + "default.handlebars->47->2787", + "default3.handlebars->35->2783" ] }, { @@ -58786,8 +58801,8 @@ "zh-chs": "空值", "zh-cht": "無效的", "xloc": [ - "default.handlebars->47->3382", - "default3.handlebars->35->3370" + "default.handlebars->47->3405", + "default3.handlebars->35->3393" ] }, { @@ -58849,26 +58864,26 @@ "default-mobile.handlebars->11->783", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->7", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2160", - "default.handlebars->47->2471", - "default.handlebars->47->2485", + "default.handlebars->47->2164", + "default.handlebars->47->2475", + "default.handlebars->47->2489", "default.handlebars->47->434", "default.handlebars->47->436", "default.handlebars->47->438", - "default.handlebars->47->947", "default.handlebars->47->951", "default.handlebars->47->955", - "default.handlebars->47->970", + "default.handlebars->47->959", + "default.handlebars->47->974", "default.handlebars->container->dialog->idx_dlgButtonBar", - "default3.handlebars->35->2468", - "default3.handlebars->35->2482", + "default3.handlebars->35->2472", + "default3.handlebars->35->2486", "default3.handlebars->35->431", "default3.handlebars->35->433", "default3.handlebars->35->435", - "default3.handlebars->35->944", "default3.handlebars->35->948", "default3.handlebars->35->952", - "default3.handlebars->35->967", + "default3.handlebars->35->956", + "default3.handlebars->35->971", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->5->idx_dlgOkButton", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -58938,9 +58953,9 @@ "zh-cht": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->47->901", + "default.handlebars->47->905", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->17->1", - "default3.handlebars->35->898", + "default3.handlebars->35->902", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->17->1" ] }, @@ -59002,8 +59017,8 @@ "zh-cht": "歐舒丹", "xloc": [ "default-mobile.handlebars->11->239", - "default.handlebars->47->1979", - "default3.handlebars->35->1960", + "default.handlebars->47->1983", + "default3.handlebars->35->1964", "login2.handlebars->7->125" ] }, @@ -59034,8 +59049,8 @@ "zh-cht": "發生在{0}", "xloc": [ "default-mobile.handlebars->11->1027", - "default.handlebars->47->3275", - "default3.handlebars->35->3263" + "default.handlebars->47->3298", + "default3.handlebars->35->3286" ] }, { @@ -59069,11 +59084,11 @@ "default-mobile.handlebars->11->775", "default-mobile.handlebars->11->779", "default.handlebars->47->714", - "default.handlebars->47->962", "default.handlebars->47->966", + "default.handlebars->47->970", "default3.handlebars->35->711", - "default3.handlebars->35->959", - "default3.handlebars->35->963" + "default3.handlebars->35->963", + "default3.handlebars->35->967" ] }, { @@ -59132,8 +59147,8 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->47->2738", - "default3.handlebars->35->2735" + "default.handlebars->47->2742", + "default3.handlebars->35->2739" ] }, { @@ -59193,7 +59208,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->11->334", - "default.handlebars->47->2098" + "default.handlebars->47->2102" ] }, { @@ -59205,10 +59220,10 @@ "xloc": [ "default-mobile.handlebars->11->773", "default-mobile.handlebars->11->777", - "default.handlebars->47->960", "default.handlebars->47->964", - "default3.handlebars->35->957", - "default3.handlebars->35->961" + "default.handlebars->47->968", + "default3.handlebars->35->961", + "default3.handlebars->35->965" ] }, { @@ -59237,8 +59252,8 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->47->2714", - "default3.handlebars->35->2711" + "default.handlebars->47->2718", + "default3.handlebars->35->2715" ] }, { @@ -59298,8 +59313,8 @@ "zh-chs": "一次性密码", "zh-cht": "一次性密碼", "xloc": [ - "default.handlebars->47->3241", - "default3.handlebars->35->3229" + "default.handlebars->47->3254", + "default3.handlebars->35->3242" ] }, { @@ -59361,8 +59376,8 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->47->2737", - "default3.handlebars->35->2734" + "default.handlebars->47->2741", + "default3.handlebars->35->2738" ] }, { @@ -59391,8 +59406,8 @@ "zh-chs": "只显示前 100 个用户", "zh-cht": "僅顯示前 100 個用戶", "xloc": [ - "default.handlebars->47->2784", - "default3.handlebars->35->2780" + "default.handlebars->47->2788", + "default3.handlebars->35->2784" ] }, { @@ -59421,8 +59436,8 @@ "zh-chs": "。仅当您知道自己在做什么时才这样做。", "zh-cht": "僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->47->2158", - "default3.handlebars->35->2158" + "default.handlebars->47->2162", + "default3.handlebars->35->2162" ] }, { @@ -59452,12 +59467,12 @@ "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ "default-mobile.handlebars->11->727", - "default.handlebars->47->1574", - "default.handlebars->47->2528", - "default.handlebars->47->864", - "default3.handlebars->35->1559", - "default3.handlebars->35->2525", - "default3.handlebars->35->861", + "default.handlebars->47->1578", + "default.handlebars->47->2532", + "default.handlebars->47->868", + "default3.handlebars->35->1563", + "default3.handlebars->35->2529", + "default3.handlebars->35->865", "sharing-mobile.handlebars->11->91", "sharing.handlebars->11->67" ] @@ -59529,7 +59544,7 @@ "zh-chs": "打开文件...", "zh-cht": "打開檔案...", "xloc": [ - "player.handlebars->3->58", + "player.handlebars->3->61", "player.handlebars->p11->deskarea0->deskarea1->3" ] }, @@ -59540,8 +59555,8 @@ "nl": "Open bestand/map", "uk": "Відкрити Файл/Теку", "xloc": [ - "default.handlebars->47->1554", - "default3.handlebars->35->1539" + "default.handlebars->47->1558", + "default3.handlebars->35->1543" ] }, { @@ -59571,8 +59586,8 @@ "zh-cht": "在裝置上打開頁面", "xloc": [ "default-mobile.handlebars->11->609", - "default.handlebars->47->1187", - "default3.handlebars->35->1182" + "default.handlebars->47->1191", + "default3.handlebars->35->1186" ] }, { @@ -59685,8 +59700,8 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->47->1050", - "default3.handlebars->35->1047" + "default.handlebars->47->1054", + "default3.handlebars->35->1051" ] }, { @@ -59745,9 +59760,9 @@ "zh-chs": "打开此计算机的聊天窗口", "zh-cht": "打開此電腦的聊天窗口", "xloc": [ - "default.handlebars->47->1031", + "default.handlebars->47->1035", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->1", - "default3.handlebars->35->1028", + "default3.handlebars->35->1032", "default3.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -59891,8 +59906,8 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->47->2557", - "default3.handlebars->35->2554" + "default.handlebars->47->2561", + "default3.handlebars->35->2558" ] }, { @@ -59922,20 +59937,20 @@ "zh-cht": "操作系統", "xloc": [ "default-mobile.handlebars->11->788", - "default.handlebars->47->1356", - "default.handlebars->47->1623", - "default.handlebars->47->3207", + "default.handlebars->47->1360", + "default.handlebars->47->1627", + "default.handlebars->47->3217", "default.handlebars->47->354", "default.handlebars->47->560", "default.handlebars->47->610", - "default.handlebars->47->945", - "default3.handlebars->35->1344", - "default3.handlebars->35->1608", - "default3.handlebars->35->3195", + "default.handlebars->47->949", + "default3.handlebars->35->1348", + "default3.handlebars->35->1612", + "default3.handlebars->35->3205", "default3.handlebars->35->351", "default3.handlebars->35->557", "default3.handlebars->35->607", - "default3.handlebars->35->942" + "default3.handlebars->35->946" ] }, { @@ -59965,14 +59980,14 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->11->594", - "default.handlebars->47->1282", - "default.handlebars->47->2766", - "default.handlebars->47->2858", + "default.handlebars->47->1286", + "default.handlebars->47->2770", + "default.handlebars->47->2862", "default.handlebars->47->759", "default.handlebars->47->771", - "default3.handlebars->35->1277", - "default3.handlebars->35->2763", - "default3.handlebars->35->2852", + "default3.handlebars->35->1281", + "default3.handlebars->35->2767", + "default3.handlebars->35->2856", "default3.handlebars->35->756", "default3.handlebars->35->768" ] @@ -60060,8 +60075,8 @@ "zh-cht": "奧里亞", "xloc": [ "default-mobile.handlebars->11->240", - "default.handlebars->47->1980", - "default3.handlebars->35->1961", + "default.handlebars->47->1984", + "default3.handlebars->35->1965", "login2.handlebars->7->126" ] }, @@ -60092,8 +60107,8 @@ "zh-cht": "奧羅莫", "xloc": [ "default-mobile.handlebars->11->241", - "default.handlebars->47->1981", - "default3.handlebars->35->1962", + "default.handlebars->47->1985", + "default3.handlebars->35->1966", "login2.handlebars->7->127" ] }, @@ -60184,8 +60199,8 @@ "zh-cht": "過時的", "xloc": [ "default-mobile.handlebars->11->782", - "default.handlebars->47->969", - "default3.handlebars->35->966" + "default.handlebars->47->973", + "default3.handlebars->35->970" ] }, { @@ -60378,8 +60393,8 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->47->1477", - "default3.handlebars->35->1463" + "default.handlebars->47->1481", + "default3.handlebars->35->1467" ] }, { @@ -60408,9 +60423,9 @@ "zh-chs": "PID", "zh-cht": "PID", "xloc": [ - "default.handlebars->47->1473", + "default.handlebars->47->1477", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1", - "default3.handlebars->35->1459", + "default3.handlebars->35->1463", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -60450,8 +60465,8 @@ "zh-cht": "推", "xloc": [ "default-mobile.handlebars->11->926", - "default.handlebars->47->1772", - "default3.handlebars->35->1755" + "default.handlebars->47->1776", + "default3.handlebars->35->1759" ] }, { @@ -60481,8 +60496,8 @@ "zh-cht": "向下翻頁", "xloc": [ "default-mobile.handlebars->11->663", - "default.handlebars->47->1434", - "default3.handlebars->35->1421", + "default.handlebars->47->1438", + "default3.handlebars->35->1425", "sharing-mobile.handlebars->11->27" ] }, @@ -60513,8 +60528,8 @@ "zh-cht": "向上翻頁", "xloc": [ "default-mobile.handlebars->11->662", - "default.handlebars->47->1433", - "default3.handlebars->35->1420", + "default.handlebars->47->1437", + "default3.handlebars->35->1424", "sharing-mobile.handlebars->11->26" ] }, @@ -60577,12 +60592,12 @@ "default-mobile.handlebars->11->869", "default-mobile.handlebars->11->875", "default-mobile.handlebars->11->881", - "default.handlebars->47->1714", - "default.handlebars->47->1720", - "default.handlebars->47->1726", - "default3.handlebars->35->1697", - "default3.handlebars->35->1703", - "default3.handlebars->35->1709" + "default.handlebars->47->1718", + "default.handlebars->47->1724", + "default.handlebars->47->1730", + "default3.handlebars->35->1701", + "default3.handlebars->35->1707", + "default3.handlebars->35->1713" ] }, { @@ -60611,8 +60626,8 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->47->2753", - "default3.handlebars->35->2750" + "default.handlebars->47->2757", + "default3.handlebars->35->2754" ] }, { @@ -60695,8 +60710,8 @@ "xloc": [ "default-mobile.handlebars->11->353", "default-mobile.handlebars->11->960", - "default.handlebars->47->2134", - "default3.handlebars->35->2134" + "default.handlebars->47->2138", + "default3.handlebars->35->2138" ] }, { @@ -60725,8 +60740,8 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->47->2942", - "default3.handlebars->35->2936" + "default.handlebars->47->2946", + "default3.handlebars->35->2940" ] }, { @@ -60787,29 +60802,29 @@ "default-mobile.handlebars->11->624", "default-mobile.handlebars->11->694", "default-mobile.handlebars->11->701", - "default.handlebars->47->1313", - "default.handlebars->47->1405", - "default.handlebars->47->1516", - "default.handlebars->47->1523", - "default.handlebars->47->2126", - "default.handlebars->47->2292", - "default.handlebars->47->2820", - "default.handlebars->47->2821", - "default.handlebars->47->2979", - "default.handlebars->47->2981", - "default.handlebars->47->3085", - "default.handlebars->47->3086", + "default.handlebars->47->1317", + "default.handlebars->47->1409", + "default.handlebars->47->1520", + "default.handlebars->47->1527", + "default.handlebars->47->2130", + "default.handlebars->47->2296", + "default.handlebars->47->2824", + "default.handlebars->47->2825", + "default.handlebars->47->2983", + "default.handlebars->47->2985", + "default.handlebars->47->3089", + "default.handlebars->47->3090", "default.handlebars->47->348", "default.handlebars->47->521", - "default3.handlebars->35->1304", - "default3.handlebars->35->1392", - "default3.handlebars->35->1501", - "default3.handlebars->35->1508", - "default3.handlebars->35->2126", - "default3.handlebars->35->2286", - "default3.handlebars->35->2816", - "default3.handlebars->35->2973", - "default3.handlebars->35->2975", + "default3.handlebars->35->1308", + "default3.handlebars->35->1396", + "default3.handlebars->35->1505", + "default3.handlebars->35->1512", + "default3.handlebars->35->2130", + "default3.handlebars->35->2290", + "default3.handlebars->35->2820", + "default3.handlebars->35->2977", + "default3.handlebars->35->2979", "default3.handlebars->35->345", "default3.handlebars->35->518", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1", @@ -60981,8 +60996,8 @@ "zh-cht": "密碼已更改。", "xloc": [ "default-mobile.handlebars->11->1055", - "default.handlebars->47->3303", - "default3.handlebars->35->3291" + "default.handlebars->47->3326", + "default3.handlebars->35->3314" ] }, { @@ -61041,7 +61056,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->47->3087" + "default.handlebars->47->3091" ] }, { @@ -61071,7 +61086,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->11->337", - "default.handlebars->47->2101" + "default.handlebars->47->2105" ] }, { @@ -61186,8 +61201,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->329", "default-mobile.handlebars->11->330", - "default.handlebars->47->2093", - "default.handlebars->47->2094", + "default.handlebars->47->2097", + "default.handlebars->47->2098", "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", @@ -61234,15 +61249,15 @@ "default-mobile.handlebars->11->732", "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->47->1537", - "default.handlebars->47->1581", - "default.handlebars->47->2530", + "default.handlebars->47->1541", + "default.handlebars->47->1585", + "default.handlebars->47->2534", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", - "default3.handlebars->35->1522", - "default3.handlebars->35->1566", - "default3.handlebars->35->2527", + "default3.handlebars->35->1526", + "default3.handlebars->35->1570", + "default3.handlebars->35->2531", "default3.handlebars->container->column_l->p12->termTable->1->1->4->1->1", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -61457,8 +61472,8 @@ "zh-cht": "執行代理指令", "xloc": [ "default-mobile.handlebars->11->938", - "default.handlebars->47->1784", - "default3.handlebars->35->1767" + "default.handlebars->47->1788", + "default3.handlebars->35->1771" ] }, { @@ -61539,9 +61554,9 @@ "zh-chs": "执行英特尔®AMT激活和配置。", "zh-cht": "執行英特爾®AMT激活和配置。", "xloc": [ - "default.handlebars->47->2236", + "default.handlebars->47->2240", "default.handlebars->47->498", - "default3.handlebars->35->2232", + "default3.handlebars->35->2236", "default3.handlebars->35->495" ] }, @@ -61683,8 +61698,8 @@ "uk": "Вимкнути живлення через Intel® AMT?

    ПРИМІТКА: якщо є активний сеанс AMT, команда вимкнення живлення буде відхилена, бо ви повинні спочатку від’єднати сеанси AMT!", "xloc": [ "default-mobile.handlebars->11->600", - "default.handlebars->47->1297", - "default3.handlebars->35->1292" + "default.handlebars->47->1301", + "default3.handlebars->35->1296" ] }, { @@ -61699,15 +61714,15 @@ "pl": "Czy wykonać Intel® AMT uruchomienie do BIOS?", "uk": "Увімкнути живлення Intel® AMT у BIOS?", "xloc": [ - "default.handlebars->47->1301", - "default3.handlebars->35->1296" + "default.handlebars->47->1305", + "default3.handlebars->35->1300" ] }, { "en": "Perform Intel® AMT power on to PXE?", "nl": "Intel® AMT opstarten naar PXE?", "xloc": [ - "default.handlebars->47->1305" + "default.handlebars->47->1309" ] }, { @@ -61737,8 +61752,8 @@ "zh-cht": "執行英特爾® AMT 開機?", "xloc": [ "default-mobile.handlebars->11->598", - "default.handlebars->47->1295", - "default3.handlebars->35->1290" + "default.handlebars->47->1299", + "default3.handlebars->35->1294" ] }, { @@ -61753,15 +61768,15 @@ "pl": "Czy wykonać Intel® AMT resetowanie do BIOS?", "uk": "Виконати скидання Intel® AMT у BIOS?", "xloc": [ - "default.handlebars->47->1303", - "default3.handlebars->35->1298" + "default.handlebars->47->1307", + "default3.handlebars->35->1302" ] }, { "en": "Perform Intel® AMT reset to PXE?", "nl": "Intel® AMT reset naar PXE?", "xloc": [ - "default.handlebars->47->1307" + "default.handlebars->47->1311" ] }, { @@ -61791,8 +61806,8 @@ "zh-cht": "執行英特爾® AMT 重置?", "xloc": [ "default-mobile.handlebars->11->602", - "default.handlebars->47->1299", - "default3.handlebars->35->1294" + "default.handlebars->47->1303", + "default3.handlebars->35->1298" ] }, { @@ -61882,11 +61897,11 @@ "zh-cht": "在裝置上執行電源操作", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3", - "default.handlebars->47->1021", + "default.handlebars->47->1025", "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", - "default3.handlebars->35->1018", + "default3.handlebars->35->1022", "default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3", "default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3" @@ -61919,7 +61934,7 @@ "zh-cht": "執行斷電?", "xloc": [ "default-mobile.handlebars->11->570", - "default.handlebars->47->1119" + "default.handlebars->47->1123" ] }, { @@ -61949,7 +61964,7 @@ "zh-cht": "執行開機?", "xloc": [ "default-mobile.handlebars->11->572", - "default.handlebars->47->1121" + "default.handlebars->47->1125" ] }, { @@ -61978,8 +61993,8 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->47->2562", - "default3.handlebars->35->2559" + "default.handlebars->47->2566", + "default3.handlebars->35->2563" ] }, { @@ -62009,8 +62024,8 @@ "zh-cht": "沒有權限", "xloc": [ "default-mobile.handlebars->11->1036", - "default.handlebars->47->3284", - "default3.handlebars->35->3272" + "default.handlebars->47->3307", + "default3.handlebars->35->3295" ] }, { @@ -62040,10 +62055,10 @@ "zh-cht": "權限", "xloc": [ "default-mobile.handlebars->11->1021", - "default.handlebars->47->2426", - "default.handlebars->47->2736", - "default3.handlebars->35->2423", - "default3.handlebars->35->2733" + "default.handlebars->47->2430", + "default.handlebars->47->2740", + "default3.handlebars->35->2427", + "default3.handlebars->35->2737" ] }, { @@ -62073,8 +62088,8 @@ "zh-cht": "波斯/伊朗", "xloc": [ "default-mobile.handlebars->11->242", - "default.handlebars->47->1982", - "default3.handlebars->35->1963", + "default.handlebars->47->1986", + "default3.handlebars->35->1967", "login2.handlebars->7->128" ] }, @@ -62166,14 +62181,14 @@ "default-mobile.handlebars->11->109", "default-mobile.handlebars->11->111", "default-mobile.handlebars->11->92", - "default.handlebars->47->1792", - "default.handlebars->47->1795", + "default.handlebars->47->1796", + "default.handlebars->47->1799", "default.handlebars->47->266", - "default.handlebars->47->3034", - "default3.handlebars->35->1774", - "default3.handlebars->35->1777", + "default.handlebars->47->3038", + "default3.handlebars->35->1778", + "default3.handlebars->35->1781", "default3.handlebars->35->263", - "default3.handlebars->35->3028" + "default3.handlebars->35->3032" ] }, { @@ -62202,8 +62217,8 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->47->2957", - "default3.handlebars->35->2951" + "default.handlebars->47->2961", + "default3.handlebars->35->2955" ] }, { @@ -62233,10 +62248,10 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->11->110", - "default.handlebars->47->1794", - "default.handlebars->47->3033", - "default3.handlebars->35->1776", - "default3.handlebars->35->3027" + "default.handlebars->47->1798", + "default.handlebars->47->3037", + "default3.handlebars->35->1780", + "default3.handlebars->35->3031" ] }, { @@ -62291,8 +62306,8 @@ "zh-chs": "将节点放在这里", "zh-cht": "將節點放在這裡", "xloc": [ - "default.handlebars->47->879", - "default3.handlebars->35->876" + "default.handlebars->47->883", + "default3.handlebars->35->880" ] }, { @@ -62470,8 +62485,8 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->11->325", - "default.handlebars->47->2088", - "default3.handlebars->35->2070" + "default.handlebars->47->2092", + "default3.handlebars->35->2074" ] }, { @@ -62501,9 +62516,9 @@ "zh-cht": "外掛指令", "xloc": [ "default.handlebars->47->329", - "default.handlebars->47->3420", + "default.handlebars->47->3443", "default3.handlebars->35->326", - "default3.handlebars->35->3408" + "default3.handlebars->35->3431" ] }, { @@ -62718,8 +62733,8 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->11->352", - "default.handlebars->47->2133", - "default3.handlebars->35->2133" + "default.handlebars->47->2137", + "default3.handlebars->35->2137" ] }, { @@ -62749,8 +62764,8 @@ "zh-cht": "波蘭文", "xloc": [ "default-mobile.handlebars->11->243", - "default.handlebars->47->1983", - "default3.handlebars->35->1964", + "default.handlebars->47->1987", + "default3.handlebars->35->1968", "login2.handlebars->7->129" ] }, @@ -62766,10 +62781,10 @@ "pl": "Port", "uk": "Порт", "xloc": [ - "default.handlebars->47->1257", - "default.handlebars->47->1258", - "default3.handlebars->35->1252", - "default3.handlebars->35->1253" + "default.handlebars->47->1261", + "default.handlebars->47->1262", + "default3.handlebars->35->1256", + "default3.handlebars->35->1257" ] }, { @@ -62850,8 +62865,8 @@ "zh-chs": "端口名称同步", "zh-cht": "端口名稱同步", "xloc": [ - "default.handlebars->47->2193", - "default3.handlebars->35->2189" + "default.handlebars->47->2197", + "default3.handlebars->35->2193" ] }, { @@ -62881,8 +62896,8 @@ "zh-cht": "端口號", "xloc": [ "default-mobile.handlebars->11->501", - "default.handlebars->47->908", - "default3.handlebars->35->905" + "default.handlebars->47->912", + "default3.handlebars->35->909" ] }, { @@ -62912,8 +62927,8 @@ "zh-cht": "端口類型", "xloc": [ "default-mobile.handlebars->11->502", - "default.handlebars->47->909", - "default3.handlebars->35->906" + "default.handlebars->47->913", + "default3.handlebars->35->910" ] }, { @@ -62995,8 +63010,8 @@ "zh-cht": "葡萄牙文", "xloc": [ "default-mobile.handlebars->11->244", - "default.handlebars->47->1984", - "default3.handlebars->35->1965", + "default.handlebars->47->1988", + "default3.handlebars->35->1969", "login2.handlebars->7->130" ] }, @@ -63027,8 +63042,8 @@ "zh-cht": "葡萄牙文(巴西)", "xloc": [ "default-mobile.handlebars->11->245", - "default.handlebars->47->1985", - "default3.handlebars->35->1966", + "default.handlebars->47->1989", + "default3.handlebars->35->1970", "login2.handlebars->7->131" ] }, @@ -63121,10 +63136,10 @@ "xloc": [ "default-mobile.handlebars->11->569", "default-mobile.handlebars->11->571", - "default.handlebars->47->1118", - "default.handlebars->47->1120", - "default3.handlebars->35->1115", - "default3.handlebars->35->1116" + "default.handlebars->47->1122", + "default.handlebars->47->1124", + "default3.handlebars->35->1119", + "default3.handlebars->35->1120" ] }, { @@ -63182,9 +63197,9 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->47->2478", + "default.handlebars->47->2482", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1", - "default3.handlebars->35->2475", + "default3.handlebars->35->2479", "default3.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -63216,9 +63231,9 @@ "xloc": [ "default-mobile.handlebars->11->456", "default-mobile.handlebars->11->590", - "default.handlebars->47->1271", + "default.handlebars->47->1275", "default.handlebars->47->6", - "default3.handlebars->35->1266", + "default3.handlebars->35->1270", "default3.handlebars->35->6" ] }, @@ -63352,15 +63367,15 @@ "zh-chs": "预激活", "zh-cht": "預激活", "xloc": [ - "default.handlebars->47->1670", - "default3.handlebars->35->1653" + "default.handlebars->47->1674", + "default3.handlebars->35->1657" ] }, { "en": "Prefer value of --agentName", "xloc": [ - "default.handlebars->47->2341", - "default3.handlebars->35->2338" + "default.handlebars->47->2345", + "default3.handlebars->35->2342" ] }, { @@ -63423,8 +63438,8 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->47->3159", - "default3.handlebars->35->3147" + "default.handlebars->47->3169", + "default3.handlebars->35->3157" ] }, { @@ -63511,10 +63526,10 @@ "zh-chs": "按[空格]播放/暂停。", "zh-cht": "按[空格]播放/暫停。", "xloc": [ - "player.handlebars->3->41", - "player.handlebars->3->42", - "player.handlebars->3->43", - "player.handlebars->3->44" + "player.handlebars->3->44", + "player.handlebars->3->45", + "player.handlebars->3->46", + "player.handlebars->3->47" ] }, { @@ -63575,13 +63590,13 @@ "xloc": [ "default-mobile.handlebars->11->100", "default-mobile.handlebars->11->97", - "default.handlebars->47->1787", - "default.handlebars->47->3028", - "default.handlebars->47->3083", + "default.handlebars->47->1791", + "default.handlebars->47->3032", + "default.handlebars->47->3087", "default.handlebars->47->341", - "default3.handlebars->35->1770", - "default3.handlebars->35->3022", - "default3.handlebars->35->3075", + "default3.handlebars->35->1774", + "default3.handlebars->35->3026", + "default3.handlebars->35->3079", "default3.handlebars->35->338" ] }, @@ -63612,8 +63627,8 @@ "zh-cht": "打印屏幕", "xloc": [ "default-mobile.handlebars->11->656", - "default.handlebars->47->1428", - "default3.handlebars->35->1415", + "default.handlebars->47->1432", + "default3.handlebars->35->1419", "sharing-mobile.handlebars->11->21" ] }, @@ -63819,8 +63834,8 @@ "zh-chs": "进程控制", "zh-cht": "進程控制", "xloc": [ - "default.handlebars->47->1501", - "default3.handlebars->35->1486" + "default.handlebars->47->1505", + "default3.handlebars->35->1490" ] }, { @@ -63849,8 +63864,8 @@ "zh-chs": "流程详情,#{0}", "zh-cht": "流程詳情,#{0}", "xloc": [ - "default.handlebars->47->1464", - "default3.handlebars->35->1451" + "default.handlebars->47->1468", + "default3.handlebars->35->1455" ] }, { @@ -63939,8 +63954,8 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->47->2554", - "default3.handlebars->35->2551" + "default.handlebars->47->2558", + "default3.handlebars->35->2555" ] }, { @@ -63999,8 +64014,8 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->47->1255", - "default3.handlebars->35->1250" + "default.handlebars->47->1259", + "default3.handlebars->35->1254" ] }, { @@ -64029,12 +64044,12 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->47->2330", "default.handlebars->47->2334", - "default.handlebars->47->2337", - "default3.handlebars->35->2327", + "default.handlebars->47->2338", + "default.handlebars->47->2341", "default3.handlebars->35->2331", - "default3.handlebars->35->2334" + "default3.handlebars->35->2335", + "default3.handlebars->35->2338" ] }, { @@ -64063,9 +64078,9 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->47->3157", - "default3.handlebars->35->3145", - "player.handlebars->3->33" + "default.handlebars->47->3167", + "default3.handlebars->35->3155", + "player.handlebars->3->36" ] }, { @@ -64094,8 +64109,8 @@ "zh-chs": "协议协商失败 ({0})", "zh-cht": "協議協商失敗 ({0})", "xloc": [ - "default.handlebars->47->1390", - "default3.handlebars->35->1377" + "default.handlebars->47->1394", + "default3.handlebars->35->1381" ] }, { @@ -64151,8 +64166,8 @@ "zh-cht": "配置狀態", "xloc": [ "default-mobile.handlebars->11->829", - "default.handlebars->47->1674", - "default3.handlebars->35->1657" + "default.handlebars->47->1678", + "default3.handlebars->35->1661" ] }, { @@ -64208,8 +64223,8 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->11->367", - "default.handlebars->47->2513", - "default3.handlebars->35->2510" + "default.handlebars->47->2517", + "default3.handlebars->35->2514" ] }, { @@ -64241,7 +64256,7 @@ { "en": "Pulse", "xloc": [ - "default3.handlebars->35->2093" + "default3.handlebars->35->2097" ] }, { @@ -64271,8 +64286,8 @@ "zh-cht": "旁遮普文", "xloc": [ "default-mobile.handlebars->11->246", - "default.handlebars->47->1986", - "default3.handlebars->35->1967", + "default.handlebars->47->1990", + "default3.handlebars->35->1971", "login2.handlebars->7->132" ] }, @@ -64303,8 +64318,8 @@ "zh-cht": "旁遮普(印度)", "xloc": [ "default-mobile.handlebars->11->247", - "default.handlebars->47->1987", - "default3.handlebars->35->1968", + "default.handlebars->47->1991", + "default3.handlebars->35->1972", "login2.handlebars->7->133" ] }, @@ -64335,8 +64350,8 @@ "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ "default-mobile.handlebars->11->248", - "default.handlebars->47->1988", - "default3.handlebars->35->1969", + "default.handlebars->47->1992", + "default3.handlebars->35->1973", "login2.handlebars->7->134" ] }, @@ -64397,8 +64412,8 @@ "zh-chs": "推送通知", "zh-cht": "推送通知", "xloc": [ - "default.handlebars->47->3240", - "default3.handlebars->35->3228" + "default.handlebars->47->3253", + "default3.handlebars->35->3241" ] }, { @@ -64466,10 +64481,10 @@ "pl": "Pushover", "uk": "Pushover", "xloc": [ - "default.handlebars->47->1804", - "default.handlebars->47->3041", - "default3.handlebars->35->1786", - "default3.handlebars->35->3035" + "default.handlebars->47->1808", + "default.handlebars->47->3045", + "default3.handlebars->35->1790", + "default3.handlebars->35->3039" ] }, { @@ -64527,7 +64542,7 @@ "default-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->1->0->1", "default.handlebars->container->dialog->dialogBody->dialog7->d7meshkvm->3->1", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->d7meshkvm->3->1", - "player.handlebars->3->50", + "player.handlebars->3->53", "sharing-mobile.handlebars->dialog->3->dialog7->d7meshkvm->3->1->0->1", "sharing.handlebars->dialog->dialogBody->dialog7->d7meshkvm->3->1" ] @@ -64559,8 +64574,8 @@ "zh-cht": "蓋丘亞族", "xloc": [ "default-mobile.handlebars->11->249", - "default.handlebars->47->1989", - "default3.handlebars->35->1970", + "default.handlebars->47->1993", + "default3.handlebars->35->1974", "login2.handlebars->7->135" ] }, @@ -64684,15 +64699,15 @@ "xloc": [ "default-mobile.handlebars->11->546", "default-mobile.handlebars->11->550", - "default.handlebars->47->1011", "default.handlebars->47->1015", - "default.handlebars->47->1055", + "default.handlebars->47->1019", + "default.handlebars->47->1059", "default.handlebars->47->452", "default.handlebars->container->dialog->dialogBody->dialog7->1->td7rdpkvm", "default.handlebars->contextMenu->cxrdp", - "default3.handlebars->35->1008", "default3.handlebars->35->1012", - "default3.handlebars->35->1052", + "default3.handlebars->35->1016", + "default3.handlebars->35->1056", "default3.handlebars->35->449", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7rdpkvm", "default3.handlebars->contextMenu->cxrdp" @@ -64754,8 +64769,8 @@ "zh-chs": "RDP连接", "zh-cht": "RDP連接", "xloc": [ - "default.handlebars->47->853", - "default3.handlebars->35->850" + "default.handlebars->47->857", + "default3.handlebars->35->854" ] }, { @@ -64784,8 +64799,8 @@ "zh-chs": "RDP 凭证", "zh-cht": "RDP 憑證", "xloc": [ - "default.handlebars->47->1409", - "default3.handlebars->35->1396" + "default.handlebars->47->1413", + "default3.handlebars->35->1400" ] }, { @@ -64820,8 +64835,8 @@ "nl": "RDP Poort {0}", "uk": "RDP порт {0}", "xloc": [ - "default.handlebars->47->1383", - "default3.handlebars->35->1370" + "default.handlebars->47->1387", + "default3.handlebars->35->1374" ] }, { @@ -64850,8 +64865,8 @@ "zh-chs": "RDP远程连接端口:", "zh-cht": "RDP遠程連接介面:", "xloc": [ - "default.handlebars->47->852", - "default3.handlebars->35->849" + "default.handlebars->47->856", + "default3.handlebars->35->853" ] }, { @@ -64985,8 +65000,8 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->47->3378", - "default3.handlebars->35->3366" + "default.handlebars->47->3401", + "default3.handlebars->35->3389" ] }, { @@ -65044,8 +65059,8 @@ "zh-chs": "随机密码", "zh-cht": "隨機密碼", "xloc": [ - "default.handlebars->47->2293", - "default3.handlebars->35->2287" + "default.handlebars->47->2297", + "default3.handlebars->35->2291" ] }, { @@ -65074,8 +65089,8 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->47->2822", - "default3.handlebars->35->2818" + "default.handlebars->47->2826", + "default3.handlebars->35->2822" ] }, { @@ -65104,8 +65119,8 @@ "zh-chs": "力登 Dominion KX III", "zh-cht": "力登 Dominion KX III", "xloc": [ - "default.handlebars->47->2122", - "default3.handlebars->35->2122" + "default.handlebars->47->2126", + "default3.handlebars->35->2126" ] }, { @@ -65221,11 +65236,11 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->47->2954", - "default.handlebars->47->2956", - "default.handlebars->47->3076", - "default3.handlebars->35->2948", - "default3.handlebars->35->2950" + "default.handlebars->47->2958", + "default.handlebars->47->2960", + "default.handlebars->47->3080", + "default3.handlebars->35->2952", + "default3.handlebars->35->2954" ] }, { @@ -65237,10 +65252,10 @@ "xloc": [ "default-mobile.handlebars->11->772", "default-mobile.handlebars->11->774", - "default.handlebars->47->959", - "default.handlebars->47->961", - "default3.handlebars->35->956", - "default3.handlebars->35->958" + "default.handlebars->47->963", + "default.handlebars->47->965", + "default3.handlebars->35->960", + "default3.handlebars->35->962" ] }, { @@ -65269,7 +65284,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->47->2831" + "default.handlebars->47->2835" ] }, { @@ -65299,8 +65314,8 @@ "zh-cht": "收到無效的網絡數據", "xloc": [ "default-mobile.handlebars->11->647", - "default.handlebars->47->1388", - "default3.handlebars->35->1375", + "default.handlebars->47->1392", + "default3.handlebars->35->1379", "sharing-mobile.handlebars->11->13", "sharing.handlebars->11->10", "sharing.handlebars->11->32" @@ -65329,7 +65344,7 @@ "zh-chs": "最近的主题", "zh-cht": "最近的主題", "xloc": [ - "default3.handlebars->35->2104" + "default3.handlebars->35->2108" ] }, { @@ -65358,12 +65373,12 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->47->2197", - "default.handlebars->47->2881", - "default.handlebars->47->2962", - "default3.handlebars->35->2193", - "default3.handlebars->35->2875", - "default3.handlebars->35->2956" + "default.handlebars->47->2201", + "default.handlebars->47->2885", + "default.handlebars->47->2966", + "default3.handlebars->35->2197", + "default3.handlebars->35->2879", + "default3.handlebars->35->2960" ] }, { @@ -65422,12 +65437,12 @@ "zh-chs": "记录会议", "zh-cht": "記錄會議", "xloc": [ - "default.handlebars->47->2338", - "default.handlebars->47->2919", - "default.handlebars->47->3064", - "default3.handlebars->35->2335", - "default3.handlebars->35->2913", - "default3.handlebars->35->3058" + "default.handlebars->47->2342", + "default.handlebars->47->2923", + "default.handlebars->47->3068", + "default3.handlebars->35->2339", + "default3.handlebars->35->2917", + "default3.handlebars->35->3062" ] }, { @@ -65456,8 +65471,8 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->47->3171", - "default3.handlebars->35->3159" + "default.handlebars->47->3181", + "default3.handlebars->35->3169" ] }, { @@ -65498,8 +65513,8 @@ "uk": "Відновлення Пароля", "xloc": [ "default-mobile.handlebars->11->918", - "default.handlebars->47->1763", - "default3.handlebars->35->1746" + "default.handlebars->47->1767", + "default3.handlebars->35->1750" ] }, { @@ -65560,8 +65575,8 @@ "zh-chs": "每天重复", "zh-cht": "每天重複", "xloc": [ - "default.handlebars->47->1243", - "default3.handlebars->35->1238" + "default.handlebars->47->1247", + "default3.handlebars->35->1242" ] }, { @@ -65590,8 +65605,8 @@ "zh-chs": "每周重复", "zh-cht": "每週重複", "xloc": [ - "default.handlebars->47->1244", - "default3.handlebars->35->1239" + "default.handlebars->47->1248", + "default3.handlebars->35->1243" ] }, { @@ -65648,10 +65663,10 @@ "xloc": [ "default-mobile.handlebars->11->373", "default-mobile.handlebars->11->720", - "default.handlebars->47->1567", - "default.handlebars->47->2520", - "default3.handlebars->35->1552", - "default3.handlebars->35->2517", + "default.handlebars->47->1571", + "default.handlebars->47->2524", + "default3.handlebars->35->1556", + "default3.handlebars->35->2521", "sharing-mobile.handlebars->11->84", "sharing.handlebars->11->60" ] @@ -65747,12 +65762,12 @@ "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->47->876", + "default.handlebars->47->880", "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", "default.handlebars->container->column_l->p52->3->1->0->3->3", - "default3.handlebars->35->873", + "default3.handlebars->35->877", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p40->3->1", @@ -65848,17 +65863,17 @@ "zh-cht": "中繼", "xloc": [ "default-mobile.handlebars->11->480", - "default.handlebars->47->1155", - "default.handlebars->47->1180", - "default.handlebars->47->2422", - "default.handlebars->47->3359", + "default.handlebars->47->1159", + "default.handlebars->47->1184", + "default.handlebars->47->2426", + "default.handlebars->47->3382", "default.handlebars->47->427", "default.handlebars->47->431", "default.handlebars->47->734", - "default3.handlebars->35->1150", - "default3.handlebars->35->1175", - "default3.handlebars->35->2419", - "default3.handlebars->35->3347", + "default3.handlebars->35->1154", + "default3.handlebars->35->1179", + "default3.handlebars->35->2423", + "default3.handlebars->35->3370", "default3.handlebars->35->424", "default3.handlebars->35->428", "default3.handlebars->35->731" @@ -65890,8 +65905,8 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->47->3344", - "default3.handlebars->35->3332" + "default.handlebars->47->3367", + "default3.handlebars->35->3355" ] }, { @@ -65922,12 +65937,12 @@ "xloc": [ "default-mobile.handlebars->11->953", "default-mobile.handlebars->11->969", - "default.handlebars->47->2119", - "default.handlebars->47->2186", - "default.handlebars->47->2319", - "default3.handlebars->35->2119", - "default3.handlebars->35->2182", - "default3.handlebars->35->2314" + "default.handlebars->47->2123", + "default.handlebars->47->2190", + "default.handlebars->47->2323", + "default3.handlebars->35->2123", + "default3.handlebars->35->2186", + "default3.handlebars->35->2318" ] }, { @@ -65956,8 +65971,8 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->47->3337", - "default3.handlebars->35->3325" + "default.handlebars->47->3360", + "default3.handlebars->35->3348" ] }, { @@ -66026,10 +66041,10 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->47->3343", - "default.handlebars->47->3371", - "default3.handlebars->35->3331", - "default3.handlebars->35->3359" + "default.handlebars->47->3366", + "default.handlebars->47->3394", + "default3.handlebars->35->3354", + "default3.handlebars->35->3382" ] }, { @@ -66058,8 +66073,8 @@ "zh-chs": "继电器装置", "zh-cht": "繼電器裝置", "xloc": [ - "default.handlebars->47->2706", - "default3.handlebars->35->2703" + "default.handlebars->47->2710", + "default3.handlebars->35->2707" ] }, { @@ -66088,8 +66103,8 @@ "zh-chs": "继电器", "zh-cht": "繼電器", "xloc": [ - "default.handlebars->47->1018", - "default3.handlebars->35->1015" + "default.handlebars->47->1022", + "default3.handlebars->35->1019" ] }, { @@ -66144,8 +66159,8 @@ "zh-chs": "记住设备", "zh-cht": "記住設備", "xloc": [ - "default.handlebars->47->3242", - "default3.handlebars->35->3230" + "default.handlebars->47->3255", + "default3.handlebars->35->3243" ] }, { @@ -66175,10 +66190,10 @@ "zh-cht": "記住憑據", "xloc": [ "default-mobile.handlebars->11->695", - "default.handlebars->47->1406", - "default.handlebars->47->1517", - "default3.handlebars->35->1393", - "default3.handlebars->35->1502", + "default.handlebars->47->1410", + "default.handlebars->47->1521", + "default3.handlebars->35->1397", + "default3.handlebars->35->1506", "mstsc.handlebars->main->1->3->1->rowremember->3->0", "sharing-mobile.handlebars->11->54", "sharing-mobile.handlebars->11->71", @@ -66212,8 +66227,8 @@ "zh-cht": "記住密碼", "xloc": [ "default-mobile.handlebars->11->700", - "default.handlebars->47->1522", - "default3.handlebars->35->1507", + "default.handlebars->47->1526", + "default3.handlebars->35->1511", "ssh.handlebars->3->19" ] }, @@ -66328,8 +66343,8 @@ "zh-cht": "記住用戶和密鑰", "xloc": [ "default-mobile.handlebars->11->699", - "default.handlebars->47->1521", - "default3.handlebars->35->1506", + "default.handlebars->47->1525", + "default3.handlebars->35->1510", "ssh.handlebars->3->18" ] }, @@ -66473,8 +66488,8 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->47->1462", - "default3.handlebars->35->1449" + "default.handlebars->47->1466", + "default3.handlebars->35->1453" ] }, { @@ -66504,8 +66519,8 @@ "zh-cht": "遠程命令", "xloc": [ "default-mobile.handlebars->11->996", - "default.handlebars->47->2380", - "default3.handlebars->35->2377" + "default.handlebars->47->2384", + "default3.handlebars->35->2381" ] }, { @@ -66538,12 +66553,12 @@ "default-mobile.handlebars->11->558", "default-mobile.handlebars->11->559", "default-mobile.handlebars->11->983", - "default.handlebars->47->1038", - "default.handlebars->47->1039", - "default.handlebars->47->2404", - "default3.handlebars->35->1035", - "default3.handlebars->35->1036", - "default3.handlebars->35->2401" + "default.handlebars->47->1042", + "default.handlebars->47->1043", + "default.handlebars->47->2408", + "default3.handlebars->35->1039", + "default3.handlebars->35->1040", + "default3.handlebars->35->2405" ] }, { @@ -66557,8 +66572,8 @@ "pl": "Zdalne Sterowanie i Przekierowanie", "uk": "Дистанційне Керування та Перенаправлення", "xloc": [ - "default.handlebars->47->2365", - "default3.handlebars->35->2362" + "default.handlebars->47->2369", + "default3.handlebars->35->2366" ] }, { @@ -66711,10 +66726,10 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->47->2568", - "default.handlebars->47->2574", - "default3.handlebars->35->2565", - "default3.handlebars->35->2571" + "default.handlebars->47->2572", + "default.handlebars->47->2578", + "default3.handlebars->35->2569", + "default3.handlebars->35->2575" ] }, { @@ -66743,8 +66758,8 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->47->2569", - "default3.handlebars->35->2566" + "default.handlebars->47->2573", + "default3.handlebars->35->2570" ] }, { @@ -66773,8 +66788,8 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->47->2575", - "default3.handlebars->35->2572" + "default.handlebars->47->2579", + "default3.handlebars->35->2576" ] }, { @@ -66803,12 +66818,12 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->47->2566", "default.handlebars->47->2570", - "default.handlebars->47->2576", - "default3.handlebars->35->2563", + "default.handlebars->47->2574", + "default.handlebars->47->2580", "default3.handlebars->35->2567", - "default3.handlebars->35->2573" + "default3.handlebars->35->2571", + "default3.handlebars->35->2577" ] }, { @@ -66894,9 +66909,9 @@ "zh-cht": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->11->649", - "default.handlebars->47->1418", + "default.handlebars->47->1422", "default.handlebars->47->493", - "default3.handlebars->35->1405", + "default3.handlebars->35->1409", "default3.handlebars->35->490", "sharing-mobile.handlebars->11->15", "sharing.handlebars->11->20" @@ -67114,8 +67129,8 @@ "zh-chs": "远程输入锁定", "zh-cht": "遠程輸入鎖定", "xloc": [ - "default.handlebars->47->1196", - "default3.handlebars->35->1191" + "default.handlebars->47->1200", + "default3.handlebars->35->1195" ] }, { @@ -67144,8 +67159,8 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->47->1458", - "default3.handlebars->35->1445", + "default.handlebars->47->1462", + "default3.handlebars->35->1449", "sharing.handlebars->11->22" ] }, @@ -67230,8 +67245,8 @@ "zh-chs": "远程会话", "zh-cht": "遠程會話", "xloc": [ - "default.handlebars->47->3173", - "default3.handlebars->35->3161" + "default.handlebars->47->3183", + "default3.handlebars->35->3171" ] }, { @@ -67400,12 +67415,12 @@ "xloc": [ "default-mobile.handlebars->11->1008", "default-mobile.handlebars->11->984", - "default.handlebars->47->2366", - "default.handlebars->47->2409", - "default.handlebars->47->3067", - "default3.handlebars->35->2363", - "default3.handlebars->35->2406", - "default3.handlebars->35->3061" + "default.handlebars->47->2370", + "default.handlebars->47->2413", + "default.handlebars->47->3071", + "default3.handlebars->35->2367", + "default3.handlebars->35->2410", + "default3.handlebars->35->3065" ] }, { @@ -67434,8 +67449,8 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->47->1461", - "default3.handlebars->35->1448" + "default.handlebars->47->1465", + "default3.handlebars->35->1452" ] }, { @@ -67567,12 +67582,12 @@ "default-mobile.handlebars->11->891", "default-mobile.handlebars->11->903", "default-mobile.handlebars->11->910", - "default.handlebars->47->1736", - "default.handlebars->47->1748", - "default.handlebars->47->1755", - "default3.handlebars->35->1719", - "default3.handlebars->35->1731", - "default3.handlebars->35->1738" + "default.handlebars->47->1740", + "default.handlebars->47->1752", + "default.handlebars->47->1759", + "default3.handlebars->35->1723", + "default3.handlebars->35->1735", + "default3.handlebars->35->1742" ] }, { @@ -67657,8 +67672,8 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->47->2154", - "default3.handlebars->35->2154" + "default.handlebars->47->2158", + "default3.handlebars->35->2158" ] }, { @@ -67739,10 +67754,10 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->47->2923", - "default.handlebars->47->3128", - "default3.handlebars->35->2917", - "default3.handlebars->35->3116" + "default.handlebars->47->2927", + "default.handlebars->47->3132", + "default3.handlebars->35->2921", + "default3.handlebars->35->3120" ] }, { @@ -67771,10 +67786,10 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->47->2921", - "default.handlebars->47->3115", - "default3.handlebars->35->2915", - "default3.handlebars->35->3103" + "default.handlebars->47->2925", + "default.handlebars->47->3119", + "default3.handlebars->35->2919", + "default3.handlebars->35->3107" ] }, { @@ -67803,8 +67818,8 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->47->3113", - "default3.handlebars->35->3101" + "default.handlebars->47->3117", + "default3.handlebars->35->3105" ] }, { @@ -67833,8 +67848,8 @@ "zh-chs": "删除登录令牌", "zh-cht": "刪除登錄令牌", "xloc": [ - "default.handlebars->47->2146", - "default3.handlebars->35->2146" + "default.handlebars->47->2150", + "default3.handlebars->35->2150" ] }, { @@ -67903,8 +67918,8 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->47->3124", - "default3.handlebars->35->3112" + "default.handlebars->47->3128", + "default3.handlebars->35->3116" ] }, { @@ -67933,10 +67948,10 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->47->2431", - "default.handlebars->47->3120", - "default3.handlebars->35->2428", - "default3.handlebars->35->3108" + "default.handlebars->47->2435", + "default.handlebars->47->3124", + "default3.handlebars->35->2432", + "default3.handlebars->35->3112" ] }, { @@ -67965,8 +67980,8 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->47->2931", - "default3.handlebars->35->2925" + "default.handlebars->47->2935", + "default3.handlebars->35->2929" ] }, { @@ -67995,10 +68010,10 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->47->2429", - "default.handlebars->47->3117", - "default3.handlebars->35->2426", - "default3.handlebars->35->3105" + "default.handlebars->47->2433", + "default.handlebars->47->3121", + "default3.handlebars->35->2430", + "default3.handlebars->35->3109" ] }, { @@ -68027,8 +68042,8 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->47->3090", - "default3.handlebars->35->3078" + "default.handlebars->47->3094", + "default3.handlebars->35->3082" ] }, { @@ -68057,8 +68072,8 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->47->2823", - "default3.handlebars->35->2819" + "default.handlebars->47->2827", + "default3.handlebars->35->2823" ] }, { @@ -68087,8 +68102,8 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->47->2343", - "default3.handlebars->35->2340" + "default.handlebars->47->2347", + "default3.handlebars->35->2344" ] }, { @@ -68117,10 +68132,10 @@ "zh-chs": "删除设备共享", "zh-cht": "刪除設備共享", "xloc": [ - "default.handlebars->47->1098", - "default.handlebars->47->2251", - "default3.handlebars->35->1095", - "default3.handlebars->35->2247" + "default.handlebars->47->1102", + "default.handlebars->47->2255", + "default3.handlebars->35->1099", + "default3.handlebars->35->2251" ] }, { @@ -68149,8 +68164,8 @@ "zh-chs": "移除不活跃", "zh-cht": "刪除非活動", "xloc": [ - "default.handlebars->47->2198", - "default3.handlebars->35->2194" + "default.handlebars->47->2202", + "default3.handlebars->35->2198" ] }, { @@ -68179,8 +68194,8 @@ "zh-chs": "删除登录令牌", "zh-cht": "刪除登錄令牌", "xloc": [ - "default.handlebars->47->2141", - "default3.handlebars->35->2141" + "default.handlebars->47->2145", + "default3.handlebars->35->2145" ] }, { @@ -68194,8 +68209,8 @@ "pl": "Usuń obsługę komunikatora", "uk": "Видалити підтримку месенджера", "xloc": [ - "default.handlebars->47->1797", - "default3.handlebars->35->1779" + "default.handlebars->47->1801", + "default3.handlebars->35->1783" ] }, { @@ -68224,8 +68239,8 @@ "zh-chs": "删除节点位置", "zh-cht": "刪除節點位置", "xloc": [ - "default.handlebars->47->868", - "default3.handlebars->35->865" + "default.handlebars->47->872", + "default3.handlebars->35->869" ] }, { @@ -68255,8 +68270,8 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->47->1791", - "default3.handlebars->35->1773" + "default.handlebars->47->1795", + "default3.handlebars->35->1777" ] }, { @@ -68315,8 +68330,8 @@ "zh-chs": "删除此设备", "zh-cht": "刪除此裝置", "xloc": [ - "default.handlebars->47->1042", - "default3.handlebars->35->1039" + "default.handlebars->47->1046", + "default3.handlebars->35->1043" ] }, { @@ -68345,8 +68360,8 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->47->3023", - "default3.handlebars->35->3017" + "default.handlebars->47->3027", + "default3.handlebars->35->3021" ] }, { @@ -68375,8 +68390,8 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->47->3104", - "default3.handlebars->35->3092" + "default.handlebars->47->3108", + "default3.handlebars->35->3096" ] }, { @@ -68405,8 +68420,8 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->47->2915", - "default3.handlebars->35->2909" + "default.handlebars->47->2919", + "default3.handlebars->35->2913" ] }, { @@ -68435,10 +68450,10 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->47->1091", - "default.handlebars->47->2909", - "default3.handlebars->35->1088", - "default3.handlebars->35->2903" + "default.handlebars->47->1095", + "default.handlebars->47->2913", + "default3.handlebars->35->1092", + "default3.handlebars->35->2907" ] }, { @@ -68467,16 +68482,16 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->47->1092", - "default.handlebars->47->2247", - "default.handlebars->47->2903", - "default.handlebars->47->3098", - "default.handlebars->47->3110", - "default3.handlebars->35->1089", - "default3.handlebars->35->2243", - "default3.handlebars->35->2897", - "default3.handlebars->35->3086", - "default3.handlebars->35->3098" + "default.handlebars->47->1096", + "default.handlebars->47->2251", + "default.handlebars->47->2907", + "default.handlebars->47->3102", + "default.handlebars->47->3114", + "default3.handlebars->35->1093", + "default3.handlebars->35->2247", + "default3.handlebars->35->2901", + "default3.handlebars->35->3090", + "default3.handlebars->35->3102" ] }, { @@ -68531,8 +68546,8 @@ "zh-chs": "删除了帐户显示名称。", "zh-cht": "刪除了帳戶顯示名稱。", "xloc": [ - "default.handlebars->47->2666", - "default3.handlebars->35->2663" + "default.handlebars->47->2670", + "default3.handlebars->35->2667" ] }, { @@ -68561,8 +68576,8 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->47->2628", - "default3.handlebars->35->2625" + "default.handlebars->47->2632", + "default3.handlebars->35->2629" ] }, { @@ -68591,8 +68606,8 @@ "zh-chs": "删除的设备共享{0}", "zh-cht": "刪除的設備共享{0}", "xloc": [ - "default.handlebars->47->2639", - "default3.handlebars->35->2636" + "default.handlebars->47->2643", + "default3.handlebars->35->2640" ] }, { @@ -68621,8 +68636,8 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->47->2624", - "default3.handlebars->35->2621" + "default.handlebars->47->2628", + "default3.handlebars->35->2625" ] }, { @@ -68651,8 +68666,8 @@ "zh-chs": "删除了登录令牌", "zh-cht": "刪除了登錄令牌", "xloc": [ - "default.handlebars->47->2653", - "default3.handlebars->35->2650" + "default.handlebars->47->2657", + "default3.handlebars->35->2654" ] }, { @@ -68666,8 +68681,8 @@ "pl": "Usunięto konto komunikatora użytkownika {0}", "uk": "токен входу видалено", "xloc": [ - "default.handlebars->47->2694", - "default3.handlebars->35->2691" + "default.handlebars->47->2698", + "default3.handlebars->35->2695" ] }, { @@ -68696,8 +68711,8 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->47->2634", - "default3.handlebars->35->2631" + "default.handlebars->47->2638", + "default3.handlebars->35->2635" ] }, { @@ -68726,8 +68741,8 @@ "zh-chs": "删除了推送通知身份验证设备", "zh-cht": "移除推送通知認證設備", "xloc": [ - "default.handlebars->47->2651", - "default3.handlebars->35->2648" + "default.handlebars->47->2655", + "default3.handlebars->35->2652" ] }, { @@ -68756,8 +68771,8 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->47->2631", - "default3.handlebars->35->2628" + "default.handlebars->47->2635", + "default3.handlebars->35->2632" ] }, { @@ -68786,12 +68801,12 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->47->2597", - "default.handlebars->47->2618", - "default.handlebars->47->2623", - "default3.handlebars->35->2594", - "default3.handlebars->35->2615", - "default3.handlebars->35->2620" + "default.handlebars->47->2601", + "default.handlebars->47->2622", + "default.handlebars->47->2627", + "default3.handlebars->35->2598", + "default3.handlebars->35->2619", + "default3.handlebars->35->2624" ] }, { @@ -68820,8 +68835,8 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->47->2607", - "default3.handlebars->35->2604" + "default.handlebars->47->2611", + "default3.handlebars->35->2608" ] }, { @@ -68850,8 +68865,8 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->47->2620", - "default3.handlebars->35->2617" + "default.handlebars->47->2624", + "default3.handlebars->35->2621" ] }, { @@ -68880,10 +68895,10 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->47->2599", - "default.handlebars->47->2609", - "default3.handlebars->35->2596", - "default3.handlebars->35->2606" + "default.handlebars->47->2603", + "default.handlebars->47->2613", + "default3.handlebars->35->2600", + "default3.handlebars->35->2610" ] }, { @@ -68916,15 +68931,15 @@ "default-mobile.handlebars->11->724", "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->47->1571", - "default.handlebars->47->2524", - "default.handlebars->47->862", + "default.handlebars->47->1575", + "default.handlebars->47->2528", + "default.handlebars->47->866", "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", - "default3.handlebars->35->1556", - "default3.handlebars->35->2521", - "default3.handlebars->35->859", + "default3.handlebars->35->1560", + "default3.handlebars->35->2525", + "default3.handlebars->35->863", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default3.handlebars->filesContextMenu->1", @@ -68986,8 +69001,8 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->47->2585", - "default3.handlebars->35->2582" + "default.handlebars->47->2589", + "default3.handlebars->35->2586" ] }, { @@ -69016,8 +69031,8 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->47->2715", - "default3.handlebars->35->2712" + "default.handlebars->47->2719", + "default3.handlebars->35->2716" ] }, { @@ -69046,8 +69061,8 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->47->2710", - "default3.handlebars->35->2707" + "default.handlebars->47->2714", + "default3.handlebars->35->2711" ] }, { @@ -69076,8 +69091,8 @@ "zh-chs": "报告未返回任何内容。", "zh-cht": "報告未返回任何內容。", "xloc": [ - "default.handlebars->47->3212", - "default3.handlebars->35->3200" + "default.handlebars->47->3222", + "default3.handlebars->35->3210" ] }, { @@ -69106,8 +69121,8 @@ "zh-chs": "报告.csv", "zh-cht": "報告.csv", "xloc": [ - "default.handlebars->47->3273", - "default3.handlebars->35->3261" + "default.handlebars->47->3296", + "default3.handlebars->35->3284" ] }, { @@ -69287,7 +69302,7 @@ "pl": "Pobieram Informacje o Procesie...", "uk": "Запит Деталей Процесу...", "xloc": [ - "default.handlebars->47->1465" + "default.handlebars->47->1469" ] }, { @@ -69297,7 +69312,7 @@ "pl": "Pobieram Informacje o Usłudze...", "uk": "Запит на Сервісну Інформацію...", "xloc": [ - "default.handlebars->47->1495" + "default.handlebars->47->1499" ] }, { @@ -69352,8 +69367,8 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->47->2102", - "default3.handlebars->35->2078" + "default.handlebars->47->2106", + "default3.handlebars->35->2082" ] }, { @@ -69383,10 +69398,10 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->11->338", - "default.handlebars->47->2828", - "default.handlebars->47->3088", - "default3.handlebars->35->2824", - "default3.handlebars->35->3076" + "default.handlebars->47->2832", + "default.handlebars->47->3092", + "default3.handlebars->35->2828", + "default3.handlebars->35->3080" ] }, { @@ -69415,8 +69430,8 @@ "zh-chs": "需要安装MeshCentral路由器", "zh-cht": "需要安裝MeshCentral路由器", "xloc": [ - "default.handlebars->47->1054", - "default3.handlebars->35->1051" + "default.handlebars->47->1058", + "default3.handlebars->35->1055" ] }, { @@ -69445,12 +69460,12 @@ "zh-chs": "需要安装MeshCentral Router。", "zh-cht": "需要安裝MeshCentral Router。", "xloc": [ - "default.handlebars->47->1056", - "default.handlebars->47->1058", "default.handlebars->47->1060", - "default3.handlebars->35->1053", - "default3.handlebars->35->1055", - "default3.handlebars->35->1057" + "default.handlebars->47->1062", + "default.handlebars->47->1064", + "default3.handlebars->35->1057", + "default3.handlebars->35->1059", + "default3.handlebars->35->1061" ] }, { @@ -69511,9 +69526,9 @@ "zh-cht": "重設", "xloc": [ "default-mobile.handlebars->11->589", - "default.handlebars->47->1270", + "default.handlebars->47->1274", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", - "default3.handlebars->35->1265", + "default3.handlebars->35->1269", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devMapToolbar" ] }, @@ -69544,8 +69559,8 @@ "zh-cht": "重置/關閉電源", "xloc": [ "default-mobile.handlebars->11->997", - "default.handlebars->47->2381", - "default3.handlebars->35->2378" + "default.handlebars->47->2385", + "default3.handlebars->35->2382" ] }, { @@ -69728,12 +69743,12 @@ "zh-cht": "重置/關閉", "xloc": [ "default-mobile.handlebars->11->1017", - "default.handlebars->47->1152", - "default.handlebars->47->1177", - "default.handlebars->47->2419", - "default3.handlebars->35->1147", - "default3.handlebars->35->1172", - "default3.handlebars->35->2416" + "default.handlebars->47->1156", + "default.handlebars->47->1181", + "default.handlebars->47->2423", + "default3.handlebars->35->1151", + "default3.handlebars->35->1176", + "default3.handlebars->35->2420" ] }, { @@ -69762,8 +69777,8 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->47->1491", - "default3.handlebars->35->1477", + "default.handlebars->47->1495", + "default3.handlebars->35->1481", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -69774,16 +69789,16 @@ "pl": "Restart licznika niepowodzeń po ", "uk": "Перезапустити лічильник помилок після ", "xloc": [ - "default.handlebars->47->1484", - "default3.handlebars->35->1470" + "default.handlebars->47->1488", + "default3.handlebars->35->1474" ] }, { "en": "Restart agent service", "xloc": [ "default-mobile.handlebars->11->936", - "default.handlebars->47->1782", - "default3.handlebars->35->1765" + "default.handlebars->47->1786", + "default3.handlebars->35->1769" ] }, { @@ -69793,8 +69808,8 @@ "uk": "Відновити стандартні комбінації клавіш", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5", - "default.handlebars->47->1449", - "default3.handlebars->35->1436" + "default.handlebars->47->1453", + "default3.handlebars->35->1440" ] }, { @@ -69823,8 +69838,8 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->47->2161", - "default3.handlebars->35->2159" + "default.handlebars->47->2165", + "default3.handlebars->35->2163" ] }, { @@ -69883,8 +69898,8 @@ "zh-chs": "使用备份还原服务器,", "zh-cht": "使用備份還原伺服器,", "xloc": [ - "default.handlebars->47->2156", - "default3.handlebars->35->2156" + "default.handlebars->47->2160", + "default3.handlebars->35->2160" ] }, { @@ -69914,10 +69929,10 @@ "zh-cht": "受限制的", "xloc": [ "default-mobile.handlebars->11->509", - "default.handlebars->47->1070", - "default.handlebars->47->916", - "default3.handlebars->35->1067", - "default3.handlebars->35->913" + "default.handlebars->47->1074", + "default.handlebars->47->920", + "default3.handlebars->35->1071", + "default3.handlebars->35->917" ] }, { @@ -69946,8 +69961,8 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->47->2943", - "default3.handlebars->35->2937" + "default.handlebars->47->2947", + "default3.handlebars->35->2941" ] }, { @@ -70010,8 +70025,8 @@ "zh-cht": "雷托-羅曼語", "xloc": [ "default-mobile.handlebars->11->250", - "default.handlebars->47->1990", - "default3.handlebars->35->1971", + "default.handlebars->47->1994", + "default3.handlebars->35->1975", "login2.handlebars->7->136" ] }, @@ -70042,8 +70057,8 @@ "zh-cht": "右", "xloc": [ "default-mobile.handlebars->11->666", - "default.handlebars->47->1437", - "default3.handlebars->35->1424", + "default.handlebars->47->1441", + "default3.handlebars->35->1428", "sharing-mobile.handlebars->11->30" ] }, @@ -70074,8 +70089,8 @@ "zh-cht": "羅馬尼亞文", "xloc": [ "default-mobile.handlebars->11->251", - "default.handlebars->47->1991", - "default3.handlebars->35->1972", + "default.handlebars->47->1995", + "default3.handlebars->35->1976", "login2.handlebars->7->137" ] }, @@ -70106,8 +70121,8 @@ "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ "default-mobile.handlebars->11->252", - "default.handlebars->47->1992", - "default3.handlebars->35->1973", + "default.handlebars->47->1996", + "default3.handlebars->35->1977", "login2.handlebars->7->138" ] }, @@ -70139,10 +70154,10 @@ "xloc": [ "default-mobile.handlebars->11->359", "default-mobile.handlebars->11->713", - "default.handlebars->47->1552", - "default.handlebars->47->2492", - "default3.handlebars->35->1537", - "default3.handlebars->35->2489", + "default.handlebars->47->1556", + "default.handlebars->47->2496", + "default3.handlebars->35->1541", + "default3.handlebars->35->2493", "sharing-mobile.handlebars->11->78", "sharing.handlebars->11->49" ] @@ -70387,8 +70402,8 @@ "pl": "Wykonaj", "uk": "Виконати", "xloc": [ - "default.handlebars->47->1026", - "default3.handlebars->35->1023" + "default.handlebars->47->1030", + "default3.handlebars->35->1027" ] }, { @@ -70432,11 +70447,11 @@ "zh-cht": "運行命令", "xloc": [ "default-mobile.handlebars->11->620", - "default.handlebars->47->1268", - "default.handlebars->47->1292", + "default.handlebars->47->1272", + "default.handlebars->47->1296", "default.handlebars->47->825", - "default3.handlebars->35->1263", - "default3.handlebars->35->1287", + "default3.handlebars->35->1267", + "default3.handlebars->35->1291", "default3.handlebars->35->822" ] }, @@ -70466,8 +70481,8 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->47->1342", - "default3.handlebars->35->1330" + "default.handlebars->47->1346", + "default3.handlebars->35->1334" ] }, { @@ -70514,9 +70529,9 @@ "zh-cht": "以代理身份運行", "xloc": [ "default-mobile.handlebars->11->614", - "default.handlebars->47->1289", + "default.handlebars->47->1293", "default.handlebars->47->819", - "default3.handlebars->35->1284", + "default3.handlebars->35->1288", "default3.handlebars->35->816" ] }, @@ -70547,9 +70562,9 @@ "zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理", "xloc": [ "default-mobile.handlebars->11->615", - "default.handlebars->47->1290", + "default.handlebars->47->1294", "default.handlebars->47->820", - "default3.handlebars->35->1285", + "default3.handlebars->35->1289", "default3.handlebars->35->817" ] }, @@ -70609,9 +70624,9 @@ "zh-chs": "在所选设备上运行命令。", "zh-cht": "在所選裝置上運行命令。", "xloc": [ - "default.handlebars->47->1285", + "default.handlebars->47->1289", "default.handlebars->47->769", - "default3.handlebars->35->1280", + "default3.handlebars->35->1284", "default3.handlebars->35->766" ] }, @@ -70641,8 +70656,8 @@ "zh-chs": "在此设备上运行命令。", "zh-cht": "在此裝置上運行命令。", "xloc": [ - "default.handlebars->47->1027", - "default3.handlebars->35->1024" + "default.handlebars->47->1031", + "default3.handlebars->35->1028" ] }, { @@ -70671,10 +70686,10 @@ "zh-chs": "跑步", "zh-cht": "跑步", "xloc": [ - "default.handlebars->47->1467", "default.handlebars->47->1471", - "default3.handlebars->35->1453", - "default3.handlebars->35->1457" + "default.handlebars->47->1475", + "default3.handlebars->35->1457", + "default3.handlebars->35->1461" ] }, { @@ -70703,8 +70718,8 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->47->2561", - "default3.handlebars->35->2558" + "default.handlebars->47->2565", + "default3.handlebars->35->2562" ] }, { @@ -70733,8 +70748,8 @@ "zh-chs": "以用户身份运行命令", "zh-cht": "以用戶身份運行命令", "xloc": [ - "default.handlebars->47->2636", - "default3.handlebars->35->2633" + "default.handlebars->47->2640", + "default3.handlebars->35->2637" ] }, { @@ -70763,8 +70778,8 @@ "zh-chs": "如果可能,以用户身份运行命令", "zh-cht": "如果可能,以用戶身份運行命令", "xloc": [ - "default.handlebars->47->2637", - "default3.handlebars->35->2634" + "default.handlebars->47->2641", + "default3.handlebars->35->2638" ] }, { @@ -70794,8 +70809,8 @@ "zh-cht": "俄文", "xloc": [ "default-mobile.handlebars->11->253", - "default.handlebars->47->1993", - "default3.handlebars->35->1974", + "default.handlebars->47->1997", + "default3.handlebars->35->1978", "login2.handlebars->7->139" ] }, @@ -70826,8 +70841,8 @@ "zh-cht": "俄文(摩爾達維亞)", "xloc": [ "default-mobile.handlebars->11->254", - "default.handlebars->47->1994", - "default3.handlebars->35->1975", + "default.handlebars->47->1998", + "default3.handlebars->35->1979", "login2.handlebars->7->140" ] }, @@ -70909,9 +70924,9 @@ "zh-chs": "SCP", "zh-cht": "SCP", "xloc": [ - "default.handlebars->47->1059", + "default.handlebars->47->1063", "default.handlebars->47->454", - "default3.handlebars->35->1056", + "default3.handlebars->35->1060", "default3.handlebars->35->451" ] }, @@ -71002,10 +71017,10 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->47->3007", - "default.handlebars->47->3013", - "default3.handlebars->35->3001", - "default3.handlebars->35->3007", + "default.handlebars->47->3011", + "default.handlebars->47->3017", + "default3.handlebars->35->3005", + "default3.handlebars->35->3011", "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", @@ -71040,8 +71055,8 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->47->3031", - "default3.handlebars->35->3025" + "default.handlebars->47->3035", + "default3.handlebars->35->3029" ] }, { @@ -71071,8 +71086,8 @@ "zh-cht": "短信錯誤", "xloc": [ "default-mobile.handlebars->11->1063", - "default.handlebars->47->3311", - "default3.handlebars->35->3299" + "default.handlebars->47->3334", + "default3.handlebars->35->3322" ] }, { @@ -71102,8 +71117,8 @@ "zh-cht": "短信錯誤:{0}", "xloc": [ "default-mobile.handlebars->11->1064", - "default.handlebars->47->3312", - "default3.handlebars->35->3300" + "default.handlebars->47->3335", + "default3.handlebars->35->3323" ] }, { @@ -71163,8 +71178,8 @@ "zh-cht": "短信網關未啟用", "xloc": [ "default-mobile.handlebars->11->1058", - "default.handlebars->47->3306", - "default3.handlebars->35->3294" + "default.handlebars->47->3329", + "default3.handlebars->35->3317" ] }, { @@ -71193,8 +71208,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->47->3237", - "default3.handlebars->35->3225" + "default.handlebars->47->3250", + "default3.handlebars->35->3238" ] }, { @@ -71265,8 +71280,8 @@ "pl": "Sukces wysyłania SMS.", "uk": "SMS успішно надіслано.", "xloc": [ - "default.handlebars->47->3310", - "default3.handlebars->35->3298" + "default.handlebars->47->3333", + "default3.handlebars->35->3321" ] }, { @@ -71354,9 +71369,9 @@ "zh-chs": "SSH", "zh-cht": "SSH", "xloc": [ - "default.handlebars->47->1057", + "default.handlebars->47->1061", "default.handlebars->47->453", - "default3.handlebars->35->1054", + "default3.handlebars->35->1058", "default3.handlebars->35->450" ] }, @@ -71418,8 +71433,8 @@ "zh-cht": "SSH 連接", "xloc": [ "default-mobile.handlebars->11->684", - "default.handlebars->47->855", - "default3.handlebars->35->852" + "default.handlebars->47->859", + "default3.handlebars->35->856" ] }, { @@ -71450,10 +71465,10 @@ "xloc": [ "default-mobile.handlebars->11->682", "default-mobile.handlebars->11->718", - "default.handlebars->47->1503", - "default.handlebars->47->1565", - "default3.handlebars->35->1488", - "default3.handlebars->35->1550" + "default.handlebars->47->1507", + "default.handlebars->47->1569", + "default3.handlebars->35->1492", + "default3.handlebars->35->1554" ] }, { @@ -71509,8 +71524,8 @@ "zh-cht": "SSH遠程連接端口:", "xloc": [ "default-mobile.handlebars->11->683", - "default.handlebars->47->854", - "default3.handlebars->35->851" + "default.handlebars->47->858", + "default3.handlebars->35->855" ] }, { @@ -71567,10 +71582,10 @@ "xloc": [ "default-mobile.handlebars->11->545", "default-mobile.handlebars->11->549", - "default.handlebars->47->1010", "default.handlebars->47->1014", - "default3.handlebars->35->1007", - "default3.handlebars->35->1011" + "default.handlebars->47->1018", + "default3.handlebars->35->1011", + "default3.handlebars->35->1015" ] }, { @@ -71601,10 +71616,10 @@ "xloc": [ "default-mobile.handlebars->11->544", "default-mobile.handlebars->11->548", - "default.handlebars->47->1009", "default.handlebars->47->1013", - "default3.handlebars->35->1006", - "default3.handlebars->35->1010" + "default.handlebars->47->1017", + "default3.handlebars->35->1010", + "default3.handlebars->35->1014" ] }, { @@ -71635,10 +71650,10 @@ "xloc": [ "default-mobile.handlebars->11->543", "default-mobile.handlebars->11->547", - "default.handlebars->47->1008", "default.handlebars->47->1012", - "default3.handlebars->35->1005", - "default3.handlebars->35->1009" + "default.handlebars->47->1016", + "default3.handlebars->35->1009", + "default3.handlebars->35->1013" ] }, { @@ -71667,8 +71682,8 @@ "zh-chs": "SSL 证书不在服务器上", "zh-cht": "SSL 證書不在服務器上", "xloc": [ - "default.handlebars->47->1394", - "default3.handlebars->35->1381" + "default.handlebars->47->1398", + "default3.handlebars->35->1385" ] }, { @@ -71697,8 +71712,8 @@ "zh-chs": "服务器不允许 SSL", "zh-cht": "服務器不允許 SSL", "xloc": [ - "default.handlebars->47->1393", - "default3.handlebars->35->1380" + "default.handlebars->47->1397", + "default3.handlebars->35->1384" ] }, { @@ -71727,8 +71742,8 @@ "zh-chs": "服务器需要 SSL", "zh-cht": "服務器需要 SSL", "xloc": [ - "default.handlebars->47->1392", - "default3.handlebars->35->1379" + "default.handlebars->47->1396", + "default3.handlebars->35->1383" ] }, { @@ -71757,8 +71772,8 @@ "zh-chs": "服务器需要具有用户身份验证的 SSL", "zh-cht": "服務器需要具有用戶身份驗證的 SSL", "xloc": [ - "default.handlebars->47->1397", - "default3.handlebars->35->1384" + "default.handlebars->47->1401", + "default3.handlebars->35->1388" ] }, { @@ -71820,8 +71835,8 @@ "zh-cht": "薩米(拉普蘭)", "xloc": [ "default-mobile.handlebars->11->255", - "default.handlebars->47->1995", - "default3.handlebars->35->1976", + "default.handlebars->47->1999", + "default3.handlebars->35->1980", "login2.handlebars->7->141" ] }, @@ -71888,7 +71903,7 @@ { "en": "Sandstone", "xloc": [ - "default3.handlebars->35->2094" + "default3.handlebars->35->2098" ] }, { @@ -71918,8 +71933,8 @@ "zh-cht": "三鄉", "xloc": [ "default-mobile.handlebars->11->256", - "default.handlebars->47->1996", - "default3.handlebars->35->1977", + "default.handlebars->47->2000", + "default3.handlebars->35->1981", "login2.handlebars->7->142" ] }, @@ -71950,8 +71965,8 @@ "zh-cht": "梵文", "xloc": [ "default-mobile.handlebars->11->257", - "default.handlebars->47->1997", - "default3.handlebars->35->1978", + "default.handlebars->47->2001", + "default3.handlebars->35->1982", "login2.handlebars->7->143" ] }, @@ -71982,8 +71997,8 @@ "zh-cht": "撒丁島", "xloc": [ "default-mobile.handlebars->11->258", - "default.handlebars->47->1998", - "default3.handlebars->35->1979", + "default.handlebars->47->2002", + "default3.handlebars->35->1983", "login2.handlebars->7->144" ] }, @@ -72073,8 +72088,8 @@ "zh-chs": "保存节点位置", "zh-cht": "保存節點位置", "xloc": [ - "default.handlebars->47->869", - "default3.handlebars->35->866" + "default.handlebars->47->873", + "default3.handlebars->35->870" ] }, { @@ -72447,11 +72462,11 @@ "zh-chs": "搜寻", "zh-cht": "搜尋", "xloc": [ - "default.handlebars->47->1559", - "default.handlebars->47->882", + "default.handlebars->47->1563", + "default.handlebars->47->886", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar", - "default3.handlebars->35->1544", - "default3.handlebars->35->879", + "default3.handlebars->35->1548", + "default3.handlebars->35->883", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devMapToolbar", "sharing.handlebars->11->53" ] @@ -72523,8 +72538,8 @@ "pl": "Druga Awaria", "uk": "Друга Невдача", "xloc": [ - "default.handlebars->47->1486", - "default3.handlebars->35->1472" + "default.handlebars->47->1490", + "default3.handlebars->35->1476" ] }, { @@ -72616,8 +72631,8 @@ "zh-cht": "已使用TLS保安", "xloc": [ "default-mobile.handlebars->11->832", - "default.handlebars->47->1677", - "default3.handlebars->35->1660" + "default.handlebars->47->1681", + "default3.handlebars->35->1664" ] }, { @@ -72648,16 +72663,16 @@ "xloc": [ "default-mobile.handlebars->11->625", "default-mobile.handlebars->11->831", - "default.handlebars->47->1314", - "default.handlebars->47->1676", - "default.handlebars->47->2490", - "default.handlebars->47->3009", + "default.handlebars->47->1318", + "default.handlebars->47->1680", + "default.handlebars->47->2494", + "default.handlebars->47->3013", "default.handlebars->47->522", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1", - "default3.handlebars->35->1305", - "default3.handlebars->35->1659", - "default3.handlebars->35->2487", - "default3.handlebars->35->3003", + "default3.handlebars->35->1309", + "default3.handlebars->35->1663", + "default3.handlebars->35->2491", + "default3.handlebars->35->3007", "default3.handlebars->35->519", "default3.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] @@ -72705,8 +72720,8 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->47->3002", - "default3.handlebars->35->2996" + "default.handlebars->47->3006", + "default3.handlebars->35->3000" ] }, { @@ -72736,8 +72751,8 @@ "zh-cht": "安全警告", "xloc": [ "default-mobile.handlebars->11->1032", - "default.handlebars->47->3280", - "default3.handlebars->35->3268" + "default.handlebars->47->3303", + "default3.handlebars->35->3291" ] }, { @@ -72783,7 +72798,7 @@ "zh-chs": "寻求", "zh-cht": "尋求", "xloc": [ - "player.handlebars->3->39" + "player.handlebars->3->42" ] }, { @@ -72838,11 +72853,11 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->47->1562", - "default.handlebars->47->1564", - "default.handlebars->47->2516", - "default.handlebars->47->2762", - "default.handlebars->47->2856", + "default.handlebars->47->1566", + "default.handlebars->47->1568", + "default.handlebars->47->2520", + "default.handlebars->47->2766", + "default.handlebars->47->2860", "default.handlebars->47->549", "default.handlebars->47->739", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", @@ -72851,11 +72866,11 @@ "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->column_l->p50->3->1->0->3->p50userGroupOps", "default.handlebars->meshContextMenu->cxselectall", - "default3.handlebars->35->1547", - "default3.handlebars->35->1549", - "default3.handlebars->35->2513", - "default3.handlebars->35->2759", - "default3.handlebars->35->2850", + "default3.handlebars->35->1551", + "default3.handlebars->35->1553", + "default3.handlebars->35->2517", + "default3.handlebars->35->2763", + "default3.handlebars->35->2854", "default3.handlebars->35->546", "default3.handlebars->35->736", "default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar", @@ -72895,16 +72910,16 @@ "zh-chs": "选择日期和时间...", "zh-cht": "選擇日期和時間...", "xloc": [ - "default.handlebars->47->1247", - "default.handlebars->47->1249", "default.handlebars->47->1251", - "default.handlebars->47->3193", - "default.handlebars->47->3195", - "default3.handlebars->35->1242", - "default3.handlebars->35->1244", + "default.handlebars->47->1253", + "default.handlebars->47->1255", + "default.handlebars->47->3203", + "default.handlebars->47->3205", "default3.handlebars->35->1246", - "default3.handlebars->35->3181", - "default3.handlebars->35->3183" + "default3.handlebars->35->1248", + "default3.handlebars->35->1250", + "default3.handlebars->35->3191", + "default3.handlebars->35->3193" ] }, { @@ -72933,16 +72948,16 @@ "zh-chs": "取消全选", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->47->1563", - "default.handlebars->47->2515", - "default.handlebars->47->2761", - "default.handlebars->47->2855", + "default.handlebars->47->1567", + "default.handlebars->47->2519", + "default.handlebars->47->2765", + "default.handlebars->47->2859", "default.handlebars->47->738", "default.handlebars->meshContextMenu->cxselectnone", - "default3.handlebars->35->1548", - "default3.handlebars->35->2512", - "default3.handlebars->35->2758", - "default3.handlebars->35->2849", + "default3.handlebars->35->1552", + "default3.handlebars->35->2516", + "default3.handlebars->35->2762", + "default3.handlebars->35->2853", "default3.handlebars->35->735", "default3.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" @@ -72974,8 +72989,8 @@ "zh-chs": "选择要注册推送通知身份验证的设备。选择后,设备将提示确认。", "zh-cht": "選擇要註冊推送通知身份驗證的設備。選擇後,設備將提示確認。", "xloc": [ - "default.handlebars->47->1842", - "default3.handlebars->35->1823" + "default.handlebars->47->1846", + "default3.handlebars->35->1827" ] }, { @@ -73004,8 +73019,8 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->47->1328", - "default3.handlebars->35->1319" + "default.handlebars->47->1332", + "default3.handlebars->35->1323" ] }, { @@ -73034,8 +73049,8 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->47->1327", - "default3.handlebars->35->1318" + "default.handlebars->47->1331", + "default3.handlebars->35->1322" ] }, { @@ -73064,8 +73079,8 @@ "zh-chs": "选择要放置的节点", "zh-cht": "選擇要放置的節點", "xloc": [ - "default.handlebars->47->885", - "default3.handlebars->35->882" + "default.handlebars->47->889", + "default3.handlebars->35->886" ] }, { @@ -73091,7 +73106,7 @@ "zh-chs": "选择主题", "zh-cht": "選擇主題", "xloc": [ - "default3.handlebars->35->2103" + "default3.handlebars->35->2107" ] }, { @@ -73150,10 +73165,10 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->47->2765", - "default.handlebars->47->2857", - "default3.handlebars->35->2762", - "default3.handlebars->35->2851" + "default.handlebars->47->2769", + "default.handlebars->47->2861", + "default3.handlebars->35->2766", + "default3.handlebars->35->2855" ] }, { @@ -73183,8 +73198,8 @@ "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ "default-mobile.handlebars->11->580", - "default.handlebars->47->1260", - "default3.handlebars->35->1255" + "default.handlebars->47->1264", + "default3.handlebars->35->1259" ] }, { @@ -73213,8 +73228,8 @@ "zh-chs": "选择新密码", "zh-cht": "選擇新密碼", "xloc": [ - "default.handlebars->47->2294", - "default3.handlebars->35->2288" + "default.handlebars->47->2298", + "default3.handlebars->35->2292" ] }, { @@ -73275,8 +73290,8 @@ "zh-cht": "僅自我事件", "xloc": [ "default-mobile.handlebars->11->1013", - "default.handlebars->47->2415", - "default3.handlebars->35->2412" + "default.handlebars->47->2419", + "default3.handlebars->35->2416" ] }, { @@ -73366,8 +73381,8 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->47->2777", - "default3.handlebars->35->2773" + "default.handlebars->47->2781", + "default3.handlebars->35->2777" ] }, { @@ -73396,9 +73411,9 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->47->1272", + "default.handlebars->47->1276", "default.handlebars->47->742", - "default3.handlebars->35->1267", + "default3.handlebars->35->1271", "default3.handlebars->35->739" ] }, @@ -73428,8 +73443,8 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->47->1320", - "default3.handlebars->35->1311" + "default.handlebars->47->1324", + "default3.handlebars->35->1315" ] }, { @@ -73443,8 +73458,8 @@ "pl": "Wyślij Wiadomość", "uk": "Надіслати повідомлення", "xloc": [ - "default.handlebars->47->2775", - "default3.handlebars->35->2771" + "default.handlebars->47->2779", + "default3.handlebars->35->2775" ] }, { @@ -73473,8 +73488,8 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->47->2774", - "default3.handlebars->35->2770" + "default.handlebars->47->2778", + "default3.handlebars->35->2774" ] }, { @@ -73503,8 +73518,8 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->47->3014", - "default3.handlebars->35->3008" + "default.handlebars->47->3018", + "default3.handlebars->35->3012" ] }, { @@ -73533,8 +73548,8 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->47->3018", - "default3.handlebars->35->3012" + "default.handlebars->47->3022", + "default3.handlebars->35->3016" ] }, { @@ -73548,8 +73563,8 @@ "pl": "Wyślij wiadomość do tego użytkownika", "uk": "Надіслати повідомлення цьому користувачеві", "xloc": [ - "default.handlebars->47->3016", - "default3.handlebars->35->3010" + "default.handlebars->47->3020", + "default3.handlebars->35->3014" ] }, { @@ -73578,8 +73593,8 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->47->2900", - "default3.handlebars->35->2894" + "default.handlebars->47->2904", + "default3.handlebars->35->2898" ] }, { @@ -73608,8 +73623,8 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->47->2778", - "default3.handlebars->35->2774" + "default.handlebars->47->2782", + "default3.handlebars->35->2778" ] }, { @@ -73638,8 +73653,8 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->47->2756", - "default3.handlebars->35->2753" + "default.handlebars->47->2760", + "default3.handlebars->35->2757" ] }, { @@ -73698,8 +73713,8 @@ "zh-chs": "发送邀请邮件。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->47->2827", - "default3.handlebars->35->2823" + "default.handlebars->47->2831", + "default3.handlebars->35->2827" ] }, { @@ -73892,8 +73907,8 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->47->3020", - "default3.handlebars->35->3014" + "default.handlebars->47->3024", + "default3.handlebars->35->3018" ] }, { @@ -74012,8 +74027,8 @@ "zh-cht": "塞爾維亞", "xloc": [ "default-mobile.handlebars->11->261", - "default.handlebars->47->2001", - "default3.handlebars->35->1982", + "default.handlebars->47->2005", + "default3.handlebars->35->1986", "login2.handlebars->7->147" ] }, @@ -74045,10 +74060,10 @@ "xloc": [ "default-mobile.handlebars->11->841", "default-mobile.handlebars->11->846", - "default.handlebars->47->1686", - "default.handlebars->47->1691", - "default3.handlebars->35->1669", - "default3.handlebars->35->1674" + "default.handlebars->47->1690", + "default.handlebars->47->1695", + "default3.handlebars->35->1673", + "default3.handlebars->35->1678" ] }, { @@ -74103,8 +74118,8 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->47->2837", - "default3.handlebars->35->2831" + "default.handlebars->47->2841", + "default3.handlebars->35->2835" ] }, { @@ -74133,8 +74148,8 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->47->3393", - "default3.handlebars->35->3381" + "default.handlebars->47->3416", + "default3.handlebars->35->3404" ] }, { @@ -74147,7 +74162,7 @@ "xloc": [ "default.handlebars->47->214", "default.handlebars->47->216", - "default.handlebars->47->2169", + "default.handlebars->47->2173", "default3.handlebars->35->214", "default3.handlebars->35->215" ] @@ -74208,8 +74223,8 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->47->3394", - "default3.handlebars->35->3382" + "default.handlebars->47->3417", + "default3.handlebars->35->3405" ] }, { @@ -74221,9 +74236,9 @@ "uk": "Помилки Сервера", "xloc": [ "default.handlebars->47->209", - "default.handlebars->47->2166", + "default.handlebars->47->2170", "default3.handlebars->35->209", - "default3.handlebars->35->2164" + "default3.handlebars->35->2168" ] }, { @@ -74254,16 +74269,16 @@ "xloc": [ "default-mobile.handlebars->11->1005", "default-mobile.handlebars->11->990", - "default.handlebars->47->1145", - "default.handlebars->47->1170", - "default.handlebars->47->2374", - "default.handlebars->47->2406", - "default.handlebars->47->2834", - "default3.handlebars->35->1140", - "default3.handlebars->35->1165", - "default3.handlebars->35->2371", - "default3.handlebars->35->2403", - "default3.handlebars->35->2828" + "default.handlebars->47->1149", + "default.handlebars->47->1174", + "default.handlebars->47->2378", + "default.handlebars->47->2410", + "default.handlebars->47->2838", + "default3.handlebars->35->1144", + "default3.handlebars->35->1169", + "default3.handlebars->35->2375", + "default3.handlebars->35->2407", + "default3.handlebars->35->2832" ] }, { @@ -74322,8 +74337,8 @@ "zh-cht": "服務器限制", "xloc": [ "default-mobile.handlebars->11->1031", - "default.handlebars->47->3279", - "default3.handlebars->35->3267" + "default.handlebars->47->3302", + "default3.handlebars->35->3290" ] }, { @@ -74381,10 +74396,10 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->47->2748", - "default.handlebars->47->2849", - "default3.handlebars->35->2745", - "default3.handlebars->35->2843" + "default.handlebars->47->2752", + "default.handlebars->47->2853", + "default3.handlebars->35->2749", + "default3.handlebars->35->2847" ] }, { @@ -74413,8 +74428,8 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->47->2976", - "default3.handlebars->35->2970" + "default.handlebars->47->2980", + "default3.handlebars->35->2974" ] }, { @@ -74443,8 +74458,8 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->47->2838", - "default3.handlebars->35->2832" + "default.handlebars->47->2842", + "default3.handlebars->35->2836" ] }, { @@ -74473,8 +74488,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->47->2975", - "default3.handlebars->35->2969" + "default.handlebars->47->2979", + "default3.handlebars->35->2973" ] }, { @@ -74503,8 +74518,8 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->47->3322", - "default3.handlebars->35->3310" + "default.handlebars->47->3345", + "default3.handlebars->35->3333" ] }, { @@ -74563,8 +74578,8 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->47->3407", - "default3.handlebars->35->3395" + "default.handlebars->47->3430", + "default3.handlebars->35->3418" ] }, { @@ -74593,8 +74608,8 @@ "zh-chs": "服务器跟踪事件", "zh-cht": "服務器跟踪事件", "xloc": [ - "default.handlebars->47->3385", - "default3.handlebars->35->3373" + "default.handlebars->47->3408", + "default3.handlebars->35->3396" ] }, { @@ -74682,8 +74697,8 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->47->2839", - "default3.handlebars->35->2833" + "default.handlebars->47->2843", + "default3.handlebars->35->2837" ] }, { @@ -74926,8 +74941,8 @@ "pl": "Serwer nie może pobrać zapisów z bazy danych.", "uk": "Сервер не може отримати записи з бази даних.", "xloc": [ - "default.handlebars->47->3135", - "default3.handlebars->35->3123" + "default.handlebars->47->3139", + "default3.handlebars->35->3127" ] }, { @@ -74942,8 +74957,8 @@ "pl": "Serwer nie może odczytać zapisów z folderu.", "uk": "Сервер не може читати з теки записів.", "xloc": [ - "default.handlebars->47->3134", - "default3.handlebars->35->3122" + "default.handlebars->47->3138", + "default3.handlebars->35->3126" ] }, { @@ -74958,8 +74973,8 @@ "pl": "Zapisy statystyk serwera", "uk": "Записи статистики сервера", "xloc": [ - "default.handlebars->47->3257", - "default3.handlebars->35->3245" + "default.handlebars->47->3270", + "default3.handlebars->35->3258" ] }, { @@ -75045,8 +75060,8 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->47->3384", - "default3.handlebars->35->3372" + "default.handlebars->47->3407", + "default3.handlebars->35->3395" ] }, { @@ -75060,10 +75075,10 @@ "pl": "Usługa", "uk": "Сервіс", "xloc": [ - "default.handlebars->47->1808", - "default.handlebars->47->3045", - "default3.handlebars->35->1790", - "default3.handlebars->35->3039" + "default.handlebars->47->1812", + "default.handlebars->47->3049", + "default3.handlebars->35->1794", + "default3.handlebars->35->3043" ] }, { @@ -75092,10 +75107,10 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->47->1492", - "default.handlebars->47->1494", - "default3.handlebars->35->1479", - "default3.handlebars->35->1481" + "default.handlebars->47->1496", + "default.handlebars->47->1498", + "default3.handlebars->35->1483", + "default3.handlebars->35->1485" ] }, { @@ -75154,10 +75169,10 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->47->3138", - "default.handlebars->47->3200", - "default3.handlebars->35->3126", - "default3.handlebars->35->3188", + "default.handlebars->47->3142", + "default.handlebars->47->3210", + "default3.handlebars->35->3130", + "default3.handlebars->35->3198", "ssh.handlebars->3->24", "ssh.handlebars->3->26" ] @@ -75218,8 +75233,8 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->47->1414", - "default3.handlebars->35->1401", + "default.handlebars->47->1418", + "default3.handlebars->35->1405", "sharing.handlebars->11->18" ] }, @@ -75251,10 +75266,10 @@ "xloc": [ "default-mobile.handlebars->11->704", "default-mobile.handlebars->11->711", - "default.handlebars->47->1527", - "default.handlebars->47->1543", - "default3.handlebars->35->1512", - "default3.handlebars->35->1528", + "default.handlebars->47->1531", + "default.handlebars->47->1547", + "default3.handlebars->35->1516", + "default3.handlebars->35->1532", "sharing-mobile.handlebars->11->58", "sharing-mobile.handlebars->11->76" ] @@ -75350,10 +75365,10 @@ "xloc": [ "default-mobile.handlebars->11->705", "default-mobile.handlebars->11->712", - "default.handlebars->47->1528", - "default.handlebars->47->1544", - "default3.handlebars->35->1513", - "default3.handlebars->35->1529", + "default.handlebars->47->1532", + "default.handlebars->47->1548", + "default3.handlebars->35->1517", + "default3.handlebars->35->1533", "sharing-mobile.handlebars->11->59", "sharing-mobile.handlebars->11->77" ] @@ -75475,8 +75490,8 @@ "zh-chs": "设置剪贴板", "zh-cht": "設置剪貼板", "xloc": [ - "default.handlebars->47->1460", - "default3.handlebars->35->1447" + "default.handlebars->47->1464", + "default3.handlebars->35->1451" ] }, { @@ -75590,8 +75605,8 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->47->2559", - "default3.handlebars->35->2556" + "default.handlebars->47->2563", + "default3.handlebars->35->2560" ] }, { @@ -75715,9 +75730,9 @@ "zh-cht": "設定", "xloc": [ "agent-translations.json", - "default.handlebars->47->2237", + "default.handlebars->47->2241", "default.handlebars->47->499", - "default3.handlebars->35->2233", + "default3.handlebars->35->2237", "default3.handlebars->35->496" ] }, @@ -75799,8 +75814,8 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->47->2147", - "default3.handlebars->35->2147" + "default.handlebars->47->2151", + "default3.handlebars->35->2151" ] }, { @@ -75870,8 +75885,8 @@ "zh-chs": "共享", "zh-cht": "共享", "xloc": [ - "default.handlebars->47->1032", - "default3.handlebars->35->1029" + "default.handlebars->47->1036", + "default3.handlebars->35->1033" ] }, { @@ -75900,9 +75915,9 @@ "zh-chs": "共享设备", "zh-cht": "共享裝置", "xloc": [ - "default.handlebars->47->1259", + "default.handlebars->47->1263", "default.handlebars->47->326", - "default3.handlebars->35->1254", + "default3.handlebars->35->1258", "default3.handlebars->35->323" ] }, @@ -75991,8 +76006,8 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->47->1478", - "default3.handlebars->35->1464" + "default.handlebars->47->1482", + "default3.handlebars->35->1468" ] }, { @@ -76021,12 +76036,12 @@ "zh-chs": "分享", "zh-cht": "分享", "xloc": [ - "default.handlebars->47->1153", - "default.handlebars->47->1178", - "default.handlebars->47->2420", - "default3.handlebars->35->1148", - "default3.handlebars->35->1173", - "default3.handlebars->35->2417" + "default.handlebars->47->1157", + "default.handlebars->47->1182", + "default.handlebars->47->2424", + "default3.handlebars->35->1152", + "default3.handlebars->35->1177", + "default3.handlebars->35->2421" ] }, { @@ -76146,10 +76161,10 @@ "xloc": [ "default-mobile.handlebars->11->669", "default-mobile.handlebars->11->673", - "default.handlebars->47->1440", "default.handlebars->47->1444", - "default3.handlebars->35->1427", + "default.handlebars->47->1448", "default3.handlebars->35->1431", + "default3.handlebars->35->1435", "sharing-mobile.handlebars->11->33", "sharing-mobile.handlebars->11->37" ] @@ -76527,8 +76542,8 @@ "zh-cht": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->11->993", - "default.handlebars->47->2377", - "default3.handlebars->35->2374" + "default.handlebars->47->2381", + "default3.handlebars->35->2378" ] }, { @@ -76583,8 +76598,8 @@ "zh-chs": "显示流量", "zh-cht": "顯示流量", "xloc": [ - "default.handlebars->47->3196", - "default3.handlebars->35->3184" + "default.handlebars->47->3206", + "default3.handlebars->35->3194" ] }, { @@ -76613,8 +76628,8 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->47->2331", - "default3.handlebars->35->2328" + "default.handlebars->47->2335", + "default3.handlebars->35->2332" ] }, { @@ -76673,8 +76688,8 @@ "zh-chs": "显示设备位置信息", "zh-cht": "顯示裝置位置訊息", "xloc": [ - "default.handlebars->47->1046", - "default3.handlebars->35->1043" + "default.handlebars->47->1050", + "default3.handlebars->35->1047" ] }, { @@ -76703,8 +76718,8 @@ "zh-chs": "显示设备网络接口信息", "zh-cht": "顯示裝置網絡介面訊息", "xloc": [ - "default.handlebars->47->1044", - "default3.handlebars->35->1041" + "default.handlebars->47->1048", + "default3.handlebars->35->1045" ] }, { @@ -76763,10 +76778,10 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->47->2781", - "default.handlebars->47->2813", - "default3.handlebars->35->2777", - "default3.handlebars->35->2809" + "default.handlebars->47->2785", + "default.handlebars->47->2817", + "default3.handlebars->35->2781", + "default3.handlebars->35->2813" ] }, { @@ -76777,11 +76792,11 @@ "pl": "Pokazuj przez 10 minut", "uk": "Показувати 10 хвилин", "xloc": [ - "default.handlebars->47->1190", - "default.handlebars->47->1204", + "default.handlebars->47->1194", + "default.handlebars->47->1208", "default.handlebars->47->784", - "default3.handlebars->35->1185", - "default3.handlebars->35->1199", + "default3.handlebars->35->1189", + "default3.handlebars->35->1203", "default3.handlebars->35->781" ] }, @@ -76811,10 +76826,10 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->47->2780", - "default.handlebars->47->2812", - "default3.handlebars->35->2776", - "default3.handlebars->35->2808" + "default.handlebars->47->2784", + "default.handlebars->47->2816", + "default3.handlebars->35->2780", + "default3.handlebars->35->2812" ] }, { @@ -76825,11 +76840,11 @@ "pl": "Pokazuj przez 2 minuty (Domyślnie)", "uk": "Показувати 2 хвилини (Типово)", "xloc": [ - "default.handlebars->47->1189", - "default.handlebars->47->1203", + "default.handlebars->47->1193", + "default.handlebars->47->1207", "default.handlebars->47->783", - "default3.handlebars->35->1184", - "default3.handlebars->35->1198", + "default3.handlebars->35->1188", + "default3.handlebars->35->1202", "default3.handlebars->35->780" ] }, @@ -76841,11 +76856,11 @@ "pl": "Pokazuj przez 30 minut", "uk": "Показувати 30 хвилин", "xloc": [ - "default.handlebars->47->1191", - "default.handlebars->47->1205", + "default.handlebars->47->1195", + "default.handlebars->47->1209", "default.handlebars->47->785", - "default3.handlebars->35->1186", - "default3.handlebars->35->1200", + "default3.handlebars->35->1190", + "default3.handlebars->35->1204", "default3.handlebars->35->782" ] }, @@ -76875,10 +76890,10 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->47->2782", - "default.handlebars->47->2814", - "default3.handlebars->35->2778", - "default3.handlebars->35->2810" + "default.handlebars->47->2786", + "default.handlebars->47->2818", + "default3.handlebars->35->2782", + "default3.handlebars->35->2814" ] }, { @@ -76889,11 +76904,11 @@ "pl": "Pokazuj przez 60 minut", "uk": "Показувати 60 хвилин", "xloc": [ - "default.handlebars->47->1192", - "default.handlebars->47->1206", + "default.handlebars->47->1196", + "default.handlebars->47->1210", "default.handlebars->47->786", - "default3.handlebars->35->1187", - "default3.handlebars->35->1201", + "default3.handlebars->35->1191", + "default3.handlebars->35->1205", "default3.handlebars->35->783" ] }, @@ -76923,15 +76938,15 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->47->1193", - "default.handlebars->47->1207", - "default.handlebars->47->2779", - "default.handlebars->47->2811", + "default.handlebars->47->1197", + "default.handlebars->47->1211", + "default.handlebars->47->2783", + "default.handlebars->47->2815", "default.handlebars->47->787", - "default3.handlebars->35->1188", - "default3.handlebars->35->1202", - "default3.handlebars->35->2775", - "default3.handlebars->35->2807", + "default3.handlebars->35->1192", + "default3.handlebars->35->1206", + "default3.handlebars->35->2779", + "default3.handlebars->35->2811", "default3.handlebars->35->784" ] }, @@ -77279,10 +77294,10 @@ "pl": "Signal", "uk": "Signal", "xloc": [ - "default.handlebars->47->1811", - "default.handlebars->47->3048", - "default3.handlebars->35->1793", - "default3.handlebars->35->3042" + "default.handlebars->47->1815", + "default.handlebars->47->3052", + "default3.handlebars->35->1797", + "default3.handlebars->35->3046" ] }, { @@ -77321,10 +77336,10 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->47->2226", - "default.handlebars->47->2284", - "default3.handlebars->35->2222", - "default3.handlebars->35->2278" + "default.handlebars->47->2230", + "default.handlebars->47->2288", + "default3.handlebars->35->2226", + "default3.handlebars->35->2282" ] }, { @@ -77353,16 +77368,16 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->47->2224", - "default.handlebars->47->2288", - "default3.handlebars->35->2220", - "default3.handlebars->35->2282" + "default.handlebars->47->2228", + "default.handlebars->47->2292", + "default3.handlebars->35->2224", + "default3.handlebars->35->2286" ] }, { "en": "Simplex", "xloc": [ - "default3.handlebars->35->2095" + "default3.handlebars->35->2099" ] }, { @@ -77392,8 +77407,8 @@ "zh-cht": "信地", "xloc": [ "default-mobile.handlebars->11->259", - "default.handlebars->47->1999", - "default3.handlebars->35->1980", + "default.handlebars->47->2003", + "default3.handlebars->35->1984", "login2.handlebars->7->145" ] }, @@ -77424,8 +77439,8 @@ "zh-cht": "僧伽羅文", "xloc": [ "default-mobile.handlebars->11->260", - "default.handlebars->47->2000", - "default3.handlebars->35->1981", + "default.handlebars->47->2004", + "default3.handlebars->35->1985", "login2.handlebars->7->146" ] }, @@ -77486,8 +77501,8 @@ "zh-chs": "单点登录", "zh-cht": "單點登錄", "xloc": [ - "default.handlebars->47->3245", - "default3.handlebars->35->3233" + "default.handlebars->47->3258", + "default3.handlebars->35->3246" ] }, { @@ -77542,11 +77557,11 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->47->3141", - "default.handlebars->47->3163", + "default.handlebars->47->3145", + "default.handlebars->47->3173", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize", - "default3.handlebars->35->3129", - "default3.handlebars->35->3151", + "default3.handlebars->35->3133", + "default3.handlebars->35->3161", "default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSize" ] }, @@ -77576,8 +77591,8 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->47->1593", - "default3.handlebars->35->1578", + "default.handlebars->47->1597", + "default3.handlebars->35->1582", "sharing.handlebars->11->85" ] }, @@ -77607,8 +77622,8 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->47->1594", - "default3.handlebars->35->1579", + "default.handlebars->47->1598", + "default3.handlebars->35->1583", "sharing.handlebars->11->86" ] }, @@ -77638,8 +77653,8 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->47->1595", - "default3.handlebars->35->1580", + "default.handlebars->47->1599", + "default3.handlebars->35->1584", "sharing.handlebars->11->87" ] }, @@ -77669,15 +77684,15 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->47->1596", - "default3.handlebars->35->1581", + "default.handlebars->47->1600", + "default3.handlebars->35->1585", "sharing.handlebars->11->88" ] }, { "en": "Sketchy", "xloc": [ - "default3.handlebars->35->2096" + "default3.handlebars->35->2100" ] }, { @@ -77687,10 +77702,10 @@ "pl": "Slack", "uk": "Slack", "xloc": [ - "default.handlebars->47->1807", - "default.handlebars->47->3044", - "default3.handlebars->35->1789", - "default3.handlebars->35->3038" + "default.handlebars->47->1811", + "default.handlebars->47->3048", + "default3.handlebars->35->1793", + "default3.handlebars->35->3042" ] }, { @@ -77700,10 +77715,10 @@ "pl": "Instalacja Slack Webhook", "uk": "Інсталяція Slack Webhook", "xloc": [ - "default.handlebars->47->1817", - "default.handlebars->47->3054", - "default3.handlebars->35->1799", - "default3.handlebars->35->3048" + "default.handlebars->47->1821", + "default.handlebars->47->3058", + "default3.handlebars->35->1803", + "default3.handlebars->35->3052" ] }, { @@ -77736,11 +77751,11 @@ "default-mobile.handlebars->11->453", "default-mobile.handlebars->11->454", "default-mobile.handlebars->11->588", - "default.handlebars->47->1269", + "default.handlebars->47->1273", "default.handlebars->47->2", "default.handlebars->47->3", "default.handlebars->47->4", - "default3.handlebars->35->1264", + "default3.handlebars->35->1268", "default3.handlebars->35->2", "default3.handlebars->35->3", "default3.handlebars->35->4" @@ -77837,8 +77852,8 @@ "zh-cht": "斯洛伐克文", "xloc": [ "default-mobile.handlebars->11->262", - "default.handlebars->47->2002", - "default3.handlebars->35->1983", + "default.handlebars->47->2006", + "default3.handlebars->35->1987", "login2.handlebars->7->148" ] }, @@ -77869,8 +77884,8 @@ "zh-cht": "斯洛文尼亞文", "xloc": [ "default-mobile.handlebars->11->263", - "default.handlebars->47->2003", - "default3.handlebars->35->1984", + "default.handlebars->47->2007", + "default3.handlebars->35->1988", "login2.handlebars->7->149" ] }, @@ -77966,8 +77981,8 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->47->1421", - "default3.handlebars->35->1408" + "default.handlebars->47->1425", + "default3.handlebars->35->1412" ] }, { @@ -77997,8 +78012,8 @@ "zh-cht": "軟斷開代理", "xloc": [ "default-mobile.handlebars->11->932", - "default.handlebars->47->1778", - "default3.handlebars->35->1761" + "default.handlebars->47->1782", + "default3.handlebars->35->1765" ] }, { @@ -78064,7 +78079,7 @@ { "en": "Solar", "xloc": [ - "default3.handlebars->35->2097" + "default3.handlebars->35->2101" ] }, { @@ -78094,8 +78109,8 @@ "zh-cht": "索馬尼", "xloc": [ "default-mobile.handlebars->11->264", - "default.handlebars->47->2004", - "default3.handlebars->35->1985", + "default.handlebars->47->2008", + "default3.handlebars->35->1989", "login2.handlebars->7->150" ] }, @@ -78126,8 +78141,8 @@ "zh-cht": "索比亞文", "xloc": [ "default-mobile.handlebars->11->265", - "default.handlebars->47->2005", - "default3.handlebars->35->1986", + "default.handlebars->47->2009", + "default3.handlebars->35->1990", "login2.handlebars->7->151" ] }, @@ -78394,14 +78409,14 @@ "uk": "Простір", "xloc": [ "default-mobile.handlebars->11->655", - "default.handlebars->47->1427", - "default3.handlebars->35->1414" + "default.handlebars->47->1431", + "default3.handlebars->35->1418" ] }, { "en": "Spacelab", "xloc": [ - "default3.handlebars->35->2098" + "default3.handlebars->35->2102" ] }, { @@ -78431,8 +78446,8 @@ "zh-cht": "西班牙文", "xloc": [ "default-mobile.handlebars->11->266", - "default.handlebars->47->2006", - "default3.handlebars->35->1987", + "default.handlebars->47->2010", + "default3.handlebars->35->1991", "login2.handlebars->7->152" ] }, @@ -78463,8 +78478,8 @@ "zh-cht": "西班牙文(阿根廷)", "xloc": [ "default-mobile.handlebars->11->267", - "default.handlebars->47->2007", - "default3.handlebars->35->1988", + "default.handlebars->47->2011", + "default3.handlebars->35->1992", "login2.handlebars->7->153" ] }, @@ -78495,8 +78510,8 @@ "zh-cht": "西班牙文(玻利維亞)", "xloc": [ "default-mobile.handlebars->11->268", - "default.handlebars->47->2008", - "default3.handlebars->35->1989", + "default.handlebars->47->2012", + "default3.handlebars->35->1993", "login2.handlebars->7->154" ] }, @@ -78527,8 +78542,8 @@ "zh-cht": "西班牙文(智利)", "xloc": [ "default-mobile.handlebars->11->269", - "default.handlebars->47->2009", - "default3.handlebars->35->1990", + "default.handlebars->47->2013", + "default3.handlebars->35->1994", "login2.handlebars->7->155" ] }, @@ -78559,8 +78574,8 @@ "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ "default-mobile.handlebars->11->270", - "default.handlebars->47->2010", - "default3.handlebars->35->1991", + "default.handlebars->47->2014", + "default3.handlebars->35->1995", "login2.handlebars->7->156" ] }, @@ -78591,8 +78606,8 @@ "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ "default-mobile.handlebars->11->271", - "default.handlebars->47->2011", - "default3.handlebars->35->1992", + "default.handlebars->47->2015", + "default3.handlebars->35->1996", "login2.handlebars->7->157" ] }, @@ -78623,8 +78638,8 @@ "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ "default-mobile.handlebars->11->272", - "default.handlebars->47->2012", - "default3.handlebars->35->1993", + "default.handlebars->47->2016", + "default3.handlebars->35->1997", "login2.handlebars->7->158" ] }, @@ -78655,8 +78670,8 @@ "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->47->2013", - "default3.handlebars->35->1994", + "default.handlebars->47->2017", + "default3.handlebars->35->1998", "login2.handlebars->7->159" ] }, @@ -78687,8 +78702,8 @@ "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->47->2014", - "default3.handlebars->35->1995", + "default.handlebars->47->2018", + "default3.handlebars->35->1999", "login2.handlebars->7->160" ] }, @@ -78719,8 +78734,8 @@ "zh-cht": "西班牙文(危地馬拉)", "xloc": [ "default-mobile.handlebars->11->275", - "default.handlebars->47->2015", - "default3.handlebars->35->1996", + "default.handlebars->47->2019", + "default3.handlebars->35->2000", "login2.handlebars->7->161" ] }, @@ -78751,8 +78766,8 @@ "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ "default-mobile.handlebars->11->276", - "default.handlebars->47->2016", - "default3.handlebars->35->1997", + "default.handlebars->47->2020", + "default3.handlebars->35->2001", "login2.handlebars->7->162" ] }, @@ -78783,8 +78798,8 @@ "zh-cht": "西班牙文(墨西哥)", "xloc": [ "default-mobile.handlebars->11->277", - "default.handlebars->47->2017", - "default3.handlebars->35->1998", + "default.handlebars->47->2021", + "default3.handlebars->35->2002", "login2.handlebars->7->163" ] }, @@ -78815,8 +78830,8 @@ "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ "default-mobile.handlebars->11->278", - "default.handlebars->47->2018", - "default3.handlebars->35->1999", + "default.handlebars->47->2022", + "default3.handlebars->35->2003", "login2.handlebars->7->164" ] }, @@ -78847,8 +78862,8 @@ "zh-cht": "西班牙文(巴拿馬)", "xloc": [ "default-mobile.handlebars->11->279", - "default.handlebars->47->2019", - "default3.handlebars->35->2000", + "default.handlebars->47->2023", + "default3.handlebars->35->2004", "login2.handlebars->7->165" ] }, @@ -78879,8 +78894,8 @@ "zh-cht": "西班牙文(巴拉圭)", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->47->2020", - "default3.handlebars->35->2001", + "default.handlebars->47->2024", + "default3.handlebars->35->2005", "login2.handlebars->7->166" ] }, @@ -78911,8 +78926,8 @@ "zh-cht": "西班牙文(秘魯)", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->47->2021", - "default3.handlebars->35->2002", + "default.handlebars->47->2025", + "default3.handlebars->35->2006", "login2.handlebars->7->167" ] }, @@ -78943,8 +78958,8 @@ "zh-cht": "西班牙文(波多黎各)", "xloc": [ "default-mobile.handlebars->11->282", - "default.handlebars->47->2022", - "default3.handlebars->35->2003", + "default.handlebars->47->2026", + "default3.handlebars->35->2007", "login2.handlebars->7->168" ] }, @@ -78975,8 +78990,8 @@ "zh-cht": "西班牙文(西班牙)", "xloc": [ "default-mobile.handlebars->11->283", - "default.handlebars->47->2023", - "default3.handlebars->35->2004", + "default.handlebars->47->2027", + "default3.handlebars->35->2008", "login2.handlebars->7->169" ] }, @@ -79007,8 +79022,8 @@ "zh-cht": "西班牙文(烏拉圭)", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->47->2024", - "default3.handlebars->35->2005", + "default.handlebars->47->2028", + "default3.handlebars->35->2009", "login2.handlebars->7->170" ] }, @@ -79039,8 +79054,8 @@ "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ "default-mobile.handlebars->11->285", - "default.handlebars->47->2025", - "default3.handlebars->35->2006", + "default.handlebars->47->2029", + "default3.handlebars->35->2010", "login2.handlebars->7->171" ] }, @@ -79052,8 +79067,8 @@ "uk": "СпецВерсія", "xloc": [ "default-mobile.handlebars->11->852", - "default.handlebars->47->1697", - "default3.handlebars->35->1680" + "default.handlebars->47->1701", + "default3.handlebars->35->1684" ] }, { @@ -79173,8 +79188,8 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->47->1489", - "default3.handlebars->35->1475" + "default.handlebars->47->1493", + "default3.handlebars->35->1479" ] }, { @@ -79229,20 +79244,20 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->47->1250", + "default.handlebars->47->1254", "default.handlebars->47->138", - "default.handlebars->47->1411", + "default.handlebars->47->1415", "default.handlebars->47->300", "default.handlebars->47->305", - "default.handlebars->47->3139", - "default.handlebars->47->3165", - "default3.handlebars->35->1245", + "default.handlebars->47->3143", + "default.handlebars->47->3175", + "default3.handlebars->35->1249", "default3.handlebars->35->138", - "default3.handlebars->35->1398", + "default3.handlebars->35->1402", "default3.handlebars->35->297", "default3.handlebars->35->302", - "default3.handlebars->35->3127", - "default3.handlebars->35->3153", + "default3.handlebars->35->3131", + "default3.handlebars->35->3163", "sharing.handlebars->11->14" ] }, @@ -79253,8 +79268,8 @@ "pl": "Typ Rozruchu", "uk": "Тип запуску", "xloc": [ - "default.handlebars->47->1480", - "default3.handlebars->35->1466" + "default.handlebars->47->1484", + "default3.handlebars->35->1470" ] }, { @@ -79342,8 +79357,8 @@ "zh-chs": "已启动 Web-RDP 会话 \\\"{0}\\\"。", "zh-cht": "已啟動 Web-RDP 會話 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->47->2687", - "default3.handlebars->35->2684" + "default.handlebars->47->2691", + "default3.handlebars->35->2688" ] }, { @@ -79372,8 +79387,8 @@ "zh-chs": "已启动 Web-SFTP 会话 \\\"{0}\\\"。", "zh-cht": "已啟動 Web-SFTP 會話 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->47->2686", - "default3.handlebars->35->2683" + "default.handlebars->47->2690", + "default3.handlebars->35->2687" ] }, { @@ -79402,8 +79417,8 @@ "zh-chs": "已启动 Web-SSH 会话 \\\"{0}\\\"。", "zh-cht": "已啟動 Web-SSH 會話 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->47->2685", - "default3.handlebars->35->2682" + "default.handlebars->47->2689", + "default3.handlebars->35->2686" ] }, { @@ -79432,8 +79447,8 @@ "zh-chs": "已启动 Web-VNC 会话 \\\"{0}\\\"。", "zh-cht": "已啟動 Web-VNC 會話 \\\"{0}\\\"。", "xloc": [ - "default.handlebars->47->2688", - "default3.handlebars->35->2685" + "default.handlebars->47->2692", + "default3.handlebars->35->2689" ] }, { @@ -79462,8 +79477,8 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->47->2543", - "default3.handlebars->35->2540" + "default.handlebars->47->2547", + "default3.handlebars->35->2544" ] }, { @@ -79492,8 +79507,8 @@ "zh-chs": "已启动桌面多路复用会话 \\\"{0}\\\"", "zh-cht": "已啟動桌面多路復用會話 \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2682", - "default3.handlebars->35->2679" + "default.handlebars->47->2686", + "default3.handlebars->35->2683" ] }, { @@ -79522,8 +79537,8 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->47->2552", - "default3.handlebars->35->2549" + "default.handlebars->47->2556", + "default3.handlebars->35->2553" ] }, { @@ -79552,8 +79567,8 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->47->2553", - "default3.handlebars->35->2550" + "default.handlebars->47->2557", + "default3.handlebars->35->2554" ] }, { @@ -79582,8 +79597,8 @@ "zh-chs": "已启动本地中继会话 \\\"{0}\\\",协议 {1} 到 {2}", "zh-cht": "已啟動本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2}", "xloc": [ - "default.handlebars->47->2657", - "default3.handlebars->35->2654" + "default.handlebars->47->2661", + "default3.handlebars->35->2658" ] }, { @@ -79612,8 +79627,8 @@ "zh-chs": "已启动 Messenger 会话“{0}”,从 {1} 到 {2}", "zh-cht": "已啟動 Messenger 會話“{0}”,從 {1} 到 {2}", "xloc": [ - "default.handlebars->47->2699", - "default3.handlebars->35->2696" + "default.handlebars->47->2703", + "default3.handlebars->35->2700" ] }, { @@ -79642,8 +79657,8 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->47->2550", - "default3.handlebars->35->2547" + "default.handlebars->47->2554", + "default3.handlebars->35->2551" ] }, { @@ -79672,8 +79687,8 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->47->2572", - "default3.handlebars->35->2569" + "default.handlebars->47->2576", + "default3.handlebars->35->2573" ] }, { @@ -79702,8 +79717,8 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->47->2573", - "default3.handlebars->35->2570" + "default.handlebars->47->2577", + "default3.handlebars->35->2574" ] }, { @@ -79732,8 +79747,8 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->47->2579", - "default3.handlebars->35->2576" + "default.handlebars->47->2583", + "default3.handlebars->35->2580" ] }, { @@ -79762,8 +79777,8 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->47->2580", - "default3.handlebars->35->2577" + "default.handlebars->47->2584", + "default3.handlebars->35->2581" ] }, { @@ -79792,8 +79807,8 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->47->2551", - "default3.handlebars->35->2548" + "default.handlebars->47->2555", + "default3.handlebars->35->2552" ] }, { @@ -79822,8 +79837,8 @@ "zh-chs": "现在开始", "zh-cht": "現在開始", "xloc": [ - "default.handlebars->47->1241", - "default3.handlebars->35->1236" + "default.handlebars->47->1245", + "default3.handlebars->35->1240" ] }, { @@ -79852,8 +79867,8 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->47->2567", - "default3.handlebars->35->2564" + "default.handlebars->47->2571", + "default3.handlebars->35->2568" ] }, { @@ -79882,8 +79897,8 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->47->2577", - "default3.handlebars->35->2574" + "default.handlebars->47->2581", + "default3.handlebars->35->2578" ] }, { @@ -79938,9 +79953,9 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->47->1472", + "default.handlebars->47->1476", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1", - "default3.handlebars->35->1458", + "default3.handlebars->35->1462", "default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -80027,13 +80042,13 @@ "zh-cht": "狀態", "xloc": [ "default-mobile.handlebars->11->887", - "default.handlebars->47->1732", - "default.handlebars->47->3079", - "default.handlebars->47->3158", + "default.handlebars->47->1736", + "default.handlebars->47->3083", + "default.handlebars->47->3168", "default.handlebars->container->column_l->p42->p42tbl->1->0->7", - "default3.handlebars->35->1715", - "default3.handlebars->35->3071", - "default3.handlebars->35->3146", + "default3.handlebars->35->1719", + "default3.handlebars->35->3075", + "default3.handlebars->35->3156", "default3.handlebars->container->column_l->p42->p42tbl->1->0->15" ] }, @@ -80063,8 +80078,8 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->47->1490", - "default3.handlebars->35->1476" + "default.handlebars->47->1494", + "default3.handlebars->35->1480" ] }, { @@ -80093,8 +80108,8 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->47->1463", - "default3.handlebars->35->1450" + "default.handlebars->47->1467", + "default3.handlebars->35->1454" ] }, { @@ -80123,8 +80138,8 @@ "zh-chs": "停止进程 #{0} \\\"{1}\\\"?", "zh-cht": "停止進程 #{0} \\\"{1}\\\"?", "xloc": [ - "default.handlebars->47->1502", - "default3.handlebars->35->1487" + "default.handlebars->47->1506", + "default3.handlebars->35->1491" ] }, { @@ -80179,10 +80194,10 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->47->1466", "default.handlebars->47->1470", - "default3.handlebars->35->1452", - "default3.handlebars->35->1456" + "default.handlebars->47->1474", + "default3.handlebars->35->1456", + "default3.handlebars->35->1460" ] }, { @@ -80238,8 +80253,8 @@ "zh-cht": "儲存", "xloc": [ "default-mobile.handlebars->11->888", - "default.handlebars->47->1733", - "default3.handlebars->35->1716" + "default.handlebars->47->1737", + "default3.handlebars->35->1720" ] }, { @@ -80252,12 +80267,12 @@ "default-mobile.handlebars->11->900", "default-mobile.handlebars->11->907", "default-mobile.handlebars->11->914", - "default.handlebars->47->1745", - "default.handlebars->47->1752", - "default.handlebars->47->1759", - "default3.handlebars->35->1728", - "default3.handlebars->35->1735", - "default3.handlebars->35->1742" + "default.handlebars->47->1749", + "default.handlebars->47->1756", + "default.handlebars->47->1763", + "default3.handlebars->35->1732", + "default3.handlebars->35->1739", + "default3.handlebars->35->1746" ] }, { @@ -80315,8 +80330,8 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->47->2496", - "default3.handlebars->35->2493" + "default.handlebars->47->2500", + "default3.handlebars->35->2497" ] }, { @@ -80346,8 +80361,8 @@ "zh-cht": "存儲密鑰", "xloc": [ "default-mobile.handlebars->11->687", - "default.handlebars->47->1509", - "default3.handlebars->35->1494", + "default.handlebars->47->1513", + "default3.handlebars->35->1498", "ssh.handlebars->3->6" ] }, @@ -80377,8 +80392,8 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->47->2130", - "default3.handlebars->35->2130" + "default.handlebars->47->2134", + "default3.handlebars->35->2134" ] }, { @@ -80441,8 +80456,8 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->47->2776", - "default3.handlebars->35->2772" + "default.handlebars->47->2780", + "default3.handlebars->35->2776" ] }, { @@ -80481,8 +80496,8 @@ "pl": "Późniejsze Awarie", "uk": "Подальші Невдачі", "xloc": [ - "default.handlebars->47->1487", - "default3.handlebars->35->1473" + "default.handlebars->47->1491", + "default3.handlebars->35->1477" ] }, { @@ -80511,10 +80526,10 @@ "zh-chs": "成功登录", "zh-cht": "成功登錄", "xloc": [ - "default.handlebars->47->3230", - "default.handlebars->47->3269", - "default3.handlebars->35->3218", - "default3.handlebars->35->3257" + "default.handlebars->47->3243", + "default.handlebars->47->3292", + "default3.handlebars->35->3231", + "default3.handlebars->35->3280" ] }, { @@ -80634,8 +80649,8 @@ "zh-cht": "蘇圖", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->47->2026", - "default3.handlebars->35->2007", + "default.handlebars->47->2030", + "default3.handlebars->35->2011", "login2.handlebars->7->172" ] }, @@ -80666,8 +80681,8 @@ "zh-cht": "斯瓦希里文", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->47->2027", - "default3.handlebars->35->2008", + "default.handlebars->47->2031", + "default3.handlebars->35->2012", "login2.handlebars->7->173" ] }, @@ -80731,8 +80746,8 @@ "zh-cht": "瑞典文", "xloc": [ "default-mobile.handlebars->11->288", - "default.handlebars->47->2028", - "default3.handlebars->35->2009", + "default.handlebars->47->2032", + "default3.handlebars->35->2013", "login2.handlebars->7->174" ] }, @@ -80763,8 +80778,8 @@ "zh-cht": "瑞典文(芬蘭)", "xloc": [ "default-mobile.handlebars->11->289", - "default.handlebars->47->2029", - "default3.handlebars->35->2010", + "default.handlebars->47->2033", + "default3.handlebars->35->2014", "login2.handlebars->7->175" ] }, @@ -80795,8 +80810,8 @@ "zh-cht": "瑞典文(瑞典)", "xloc": [ "default-mobile.handlebars->11->290", - "default.handlebars->47->2030", - "default3.handlebars->35->2011", + "default.handlebars->47->2034", + "default3.handlebars->35->2015", "login2.handlebars->7->176" ] }, @@ -80861,8 +80876,8 @@ "zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。", "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "xloc": [ - "default.handlebars->47->2244", - "default3.handlebars->35->2240" + "default.handlebars->47->2248", + "default3.handlebars->35->2244" ] }, { @@ -80891,10 +80906,10 @@ "zh-chs": "交换机端口已连接", "zh-cht": "交換機端口已連接", "xloc": [ - "default.handlebars->47->1071", - "default.handlebars->47->1072", - "default3.handlebars->35->1068", - "default3.handlebars->35->1069" + "default.handlebars->47->1075", + "default.handlebars->47->1076", + "default3.handlebars->35->1072", + "default3.handlebars->35->1073" ] }, { @@ -80953,7 +80968,7 @@ "zh-chs": "切换主题", "zh-cht": "切換主題", "xloc": [ - "default3.handlebars->35->2106", + "default3.handlebars->35->2110", "default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->19" ] }, @@ -80983,8 +80998,8 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->47->2340", - "default3.handlebars->35->2337" + "default.handlebars->47->2344", + "default3.handlebars->35->2341" ] }, { @@ -81013,8 +81028,8 @@ "zh-chs": "将服务器设备名称同步到端口名称", "zh-cht": "將服務器設備名稱同步到端口名稱", "xloc": [ - "default.handlebars->47->2339", - "default3.handlebars->35->2336" + "default.handlebars->47->2343", + "default3.handlebars->35->2340" ] }, { @@ -81377,8 +81392,8 @@ "zh-cht": "TLS", "xloc": [ "default-mobile.handlebars->11->520", - "default.handlebars->47->929", - "default3.handlebars->35->926" + "default.handlebars->47->933", + "default3.handlebars->35->930" ] }, { @@ -81408,8 +81423,8 @@ "zh-cht": "未設置TLS", "xloc": [ "default-mobile.handlebars->11->833", - "default.handlebars->47->1678", - "default3.handlebars->35->1661" + "default.handlebars->47->1682", + "default3.handlebars->35->1665" ] }, { @@ -81439,9 +81454,9 @@ "zh-cht": "需要TLS加密", "xloc": [ "default-mobile.handlebars->11->627", - "default.handlebars->47->1316", + "default.handlebars->47->1320", "default.handlebars->47->524", - "default3.handlebars->35->1307", + "default3.handlebars->35->1311", "default3.handlebars->35->521" ] }, @@ -81451,8 +81466,8 @@ "nl": "TPM", "xloc": [ "default-mobile.handlebars->11->864", - "default.handlebars->47->1709", - "default3.handlebars->35->1692" + "default.handlebars->47->1713", + "default3.handlebars->35->1696" ] }, { @@ -81483,8 +81498,8 @@ "xloc": [ "default-mobile.handlebars->11->652", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->3", - "default.handlebars->47->1424", - "default3.handlebars->35->1411", + "default.handlebars->47->1428", + "default3.handlebars->35->1415", "sharing-mobile.handlebars->11->18", "sharing-mobile.handlebars->dialog->3->dialog3->deskkeys->3" ] @@ -81515,9 +81530,9 @@ "zh-chs": "标签1,标签2,标签3", "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->47->1381", + "default.handlebars->47->1385", "default.handlebars->47->776", - "default3.handlebars->35->1367", + "default3.handlebars->35->1371", "default3.handlebars->35->774" ] }, @@ -81580,16 +81595,16 @@ "default-mobile.handlebars->11->541", "default-mobile.handlebars->11->542", "default-mobile.handlebars->11->640", - "default.handlebars->47->1006", - "default.handlebars->47->1007", - "default.handlebars->47->1380", + "default.handlebars->47->1010", + "default.handlebars->47->1011", + "default.handlebars->47->1384", "default.handlebars->47->355", "default.handlebars->47->387", "default.handlebars->47->775", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7", - "default3.handlebars->35->1003", - "default3.handlebars->35->1004", - "default3.handlebars->35->1366", + "default3.handlebars->35->1007", + "default3.handlebars->35->1008", + "default3.handlebars->35->1370", "default3.handlebars->35->352", "default3.handlebars->35->384", "default3.handlebars->35->772", @@ -81653,8 +81668,8 @@ "zh-cht": "泰米爾文", "xloc": [ "default-mobile.handlebars->11->291", - "default.handlebars->47->2031", - "default3.handlebars->35->2012", + "default.handlebars->47->2035", + "default3.handlebars->35->2016", "login2.handlebars->7->177" ] }, @@ -81667,10 +81682,10 @@ "xloc": [ "default-mobile.handlebars->11->776", "default-mobile.handlebars->11->778", - "default.handlebars->47->963", - "default.handlebars->47->965", - "default3.handlebars->35->960", - "default3.handlebars->35->962" + "default.handlebars->47->967", + "default.handlebars->47->969", + "default3.handlebars->35->964", + "default3.handlebars->35->966" ] }, { @@ -81700,8 +81715,8 @@ "zh-cht": "塔塔爾族", "xloc": [ "default-mobile.handlebars->11->292", - "default.handlebars->47->2032", - "default3.handlebars->35->2013", + "default.handlebars->47->2036", + "default3.handlebars->35->2017", "login2.handlebars->7->178" ] }, @@ -81715,14 +81730,14 @@ "nl": "Telegram", "pl": "Telegram", "xloc": [ - "default.handlebars->47->1800", - "default.handlebars->47->1814", - "default.handlebars->47->3037", - "default.handlebars->47->3051", - "default3.handlebars->35->1782", - "default3.handlebars->35->1796", - "default3.handlebars->35->3031", - "default3.handlebars->35->3045" + "default.handlebars->47->1804", + "default.handlebars->47->1818", + "default.handlebars->47->3041", + "default.handlebars->47->3055", + "default3.handlebars->35->1786", + "default3.handlebars->35->1800", + "default3.handlebars->35->3035", + "default3.handlebars->35->3049" ] }, { @@ -81752,8 +81767,8 @@ "zh-cht": "泰盧加", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->47->2033", - "default3.handlebars->35->2014", + "default.handlebars->47->2037", + "default3.handlebars->35->2018", "login2.handlebars->7->179" ] }, @@ -81785,28 +81800,28 @@ "xloc": [ "default-mobile.handlebars->11->433", "default-mobile.handlebars->11->576", - "default.handlebars->47->1099", - "default.handlebars->47->1215", - "default.handlebars->47->2252", - "default.handlebars->47->2332", - "default.handlebars->47->3151", - "default.handlebars->47->3214", - "default.handlebars->47->3264", - "default.handlebars->47->3360", + "default.handlebars->47->1103", + "default.handlebars->47->1219", + "default.handlebars->47->2256", + "default.handlebars->47->2336", + "default.handlebars->47->3158", + "default.handlebars->47->3224", + "default.handlebars->47->3277", + "default.handlebars->47->3383", "default.handlebars->47->468", - "default.handlebars->47->872", + "default.handlebars->47->876", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal", - "default3.handlebars->35->1096", - "default3.handlebars->35->1210", - "default3.handlebars->35->2248", - "default3.handlebars->35->2329", - "default3.handlebars->35->3139", - "default3.handlebars->35->3202", - "default3.handlebars->35->3252", - "default3.handlebars->35->3348", + "default3.handlebars->35->1100", + "default3.handlebars->35->1214", + "default3.handlebars->35->2252", + "default3.handlebars->35->2333", + "default3.handlebars->35->3146", + "default3.handlebars->35->3212", + "default3.handlebars->35->3265", + "default3.handlebars->35->3371", "default3.handlebars->35->465", - "default3.handlebars->35->869", + "default3.handlebars->35->873", "default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default3.handlebars->contextMenu->cxterminal", "sharing-mobile.handlebars->11->7", @@ -81839,12 +81854,12 @@ "zh-chs": "终端 + 文件", "zh-cht": "終端 + 文件", "xloc": [ - "default.handlebars->47->1103", - "default.handlebars->47->1218", - "default.handlebars->47->2256", - "default3.handlebars->35->1100", - "default3.handlebars->35->1213", - "default3.handlebars->35->2252" + "default.handlebars->47->1107", + "default.handlebars->47->1222", + "default.handlebars->47->2260", + "default3.handlebars->35->1104", + "default3.handlebars->35->1217", + "default3.handlebars->35->2256" ] }, { @@ -81903,14 +81918,14 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->47->2206", - "default.handlebars->47->2889", - "default.handlebars->47->2994", - "default.handlebars->47->980", - "default3.handlebars->35->2202", - "default3.handlebars->35->2883", - "default3.handlebars->35->2988", - "default3.handlebars->35->977" + "default.handlebars->47->2210", + "default.handlebars->47->2893", + "default.handlebars->47->2998", + "default.handlebars->47->984", + "default3.handlebars->35->2206", + "default3.handlebars->35->2887", + "default3.handlebars->35->2992", + "default3.handlebars->35->981" ] }, { @@ -81939,14 +81954,14 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->47->2205", - "default.handlebars->47->2888", - "default.handlebars->47->2993", - "default.handlebars->47->979", - "default3.handlebars->35->2201", - "default3.handlebars->35->2882", - "default3.handlebars->35->2987", - "default3.handlebars->35->976" + "default.handlebars->47->2209", + "default.handlebars->47->2892", + "default.handlebars->47->2997", + "default.handlebars->47->983", + "default3.handlebars->35->2205", + "default3.handlebars->35->2886", + "default3.handlebars->35->2991", + "default3.handlebars->35->980" ] }, { @@ -81975,8 +81990,8 @@ "zh-chs": "终端会话", "zh-cht": "終端會話", "xloc": [ - "default.handlebars->47->3144", - "default3.handlebars->35->3132" + "default.handlebars->47->3148", + "default3.handlebars->35->3136" ] }, { @@ -82117,8 +82132,8 @@ "pl": "Zapisy notatek tekstowych", "uk": "Записи текстових приміток", "xloc": [ - "default.handlebars->47->3251", - "default3.handlebars->35->3239" + "default.handlebars->47->3264", + "default3.handlebars->35->3252" ] }, { @@ -82148,8 +82163,8 @@ "zh-cht": "泰國", "xloc": [ "default-mobile.handlebars->11->294", - "default.handlebars->47->2034", - "default3.handlebars->35->2015", + "default.handlebars->47->2038", + "default3.handlebars->35->2019", "login2.handlebars->7->180" ] }, @@ -82351,8 +82366,8 @@ "zh-chs": "此计算机所属的设备组的名称", "zh-cht": "此電腦所屬的裝置群的名稱", "xloc": [ - "default.handlebars->47->899", - "default3.handlebars->35->896" + "default.handlebars->47->903", + "default3.handlebars->35->900" ] }, { @@ -82381,8 +82396,8 @@ "zh-chs": "此计算机所属的设备组的名称。", "zh-cht": "此電腦所屬的裝置群的名稱。", "xloc": [ - "default.handlebars->47->897", - "default3.handlebars->35->894" + "default.handlebars->47->901", + "default3.handlebars->35->898" ] }, { @@ -82411,10 +82426,10 @@ "zh-chs": "此计算机的在操作系统中已设置的名称", "zh-cht": "此電腦在操作系統中已設置的的名稱", "xloc": [ - "default.handlebars->47->900", - "default.handlebars->47->902", - "default3.handlebars->35->897", - "default3.handlebars->35->899" + "default.handlebars->47->904", + "default.handlebars->47->906", + "default3.handlebars->35->901", + "default3.handlebars->35->903" ] }, { @@ -82444,8 +82459,8 @@ "zh-cht": "目前沒有任何通知", "xloc": [ "default-mobile.handlebars->11->1026", - "default.handlebars->47->3274", - "default3.handlebars->35->3262" + "default.handlebars->47->3297", + "default3.handlebars->35->3285" ] }, { @@ -82475,8 +82490,8 @@ "zh-cht": "自上次登錄以來,此帳戶有 {0} 次登錄嘗試失敗。", "xloc": [ "default-mobile.handlebars->11->1047", - "default.handlebars->47->3295", - "default3.handlebars->35->3283" + "default.handlebars->47->3318", + "default3.handlebars->35->3306" ] }, { @@ -82623,7 +82638,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->11->341", - "default.handlebars->47->2105" + "default.handlebars->47->2109" ] }, { @@ -82652,8 +82667,8 @@ "zh-chs": "此代理具有过时的证书验证机制,请考虑更新。", "zh-cht": "此代理具有過時的證書驗證機制,請考慮更新。", "xloc": [ - "default.handlebars->47->2655", - "default3.handlebars->35->2652" + "default.handlebars->47->2659", + "default3.handlebars->35->2656" ] }, { @@ -82682,8 +82697,8 @@ "zh-chs": "此代理正在使用不安全的隧道,请考虑更新。", "zh-cht": "此代理正在使用不安全的隧道,請考慮更新。", "xloc": [ - "default.handlebars->47->2656", - "default3.handlebars->35->2653" + "default.handlebars->47->2660", + "default3.handlebars->35->2657" ] }, { @@ -82775,14 +82790,14 @@ "zh-chs": "这是嘉宾分享环节", "zh-cht": "這是一個嘉賓分享會", "xloc": [ - "default.handlebars->47->1607", - "default.handlebars->47->2708", - "default.handlebars->47->3130", - "default.handlebars->47->3131", - "default3.handlebars->35->1592", - "default3.handlebars->35->2705", - "default3.handlebars->35->3118", - "default3.handlebars->35->3119" + "default.handlebars->47->1611", + "default.handlebars->47->2712", + "default.handlebars->47->3134", + "default.handlebars->47->3135", + "default3.handlebars->35->1596", + "default3.handlebars->35->2709", + "default3.handlebars->35->3122", + "default3.handlebars->35->3123" ] }, { @@ -82840,8 +82855,8 @@ "zh-chs": "这是一个旧的代理版本,考虑更新。", "zh-cht": "這是舊代理版本,請考慮更新。", "xloc": [ - "default.handlebars->47->2654", - "default3.handlebars->35->2651" + "default.handlebars->47->2658", + "default3.handlebars->35->2655" ] }, { @@ -82896,8 +82911,8 @@ "zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。", "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "xloc": [ - "default.handlebars->47->2313", - "default3.handlebars->35->2307" + "default.handlebars->47->2317", + "default3.handlebars->35->2311" ] }, { @@ -82956,8 +82971,8 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->47->2310", - "default3.handlebars->35->2304" + "default.handlebars->47->2314", + "default3.handlebars->35->2308" ] }, { @@ -83102,8 +83117,8 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->47->1183", - "default3.handlebars->35->1178" + "default.handlebars->47->1187", + "default3.handlebars->35->1182" ] }, { @@ -83158,8 +83173,8 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->47->1323", - "default3.handlebars->35->1314" + "default.handlebars->47->1327", + "default3.handlebars->35->1318" ] }, { @@ -83188,8 +83203,8 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->47->1324", - "default3.handlebars->35->1315" + "default.handlebars->47->1328", + "default3.handlebars->35->1319" ] }, { @@ -83219,8 +83234,8 @@ "zh-cht": "蒂格雷", "xloc": [ "default-mobile.handlebars->11->295", - "default.handlebars->47->2035", - "default3.handlebars->35->2016", + "default.handlebars->47->2039", + "default3.handlebars->35->2020", "login2.handlebars->7->181" ] }, @@ -83251,12 +83266,12 @@ "zh-cht": "時間", "xloc": [ "default-mobile.handlebars->11->583", - "default.handlebars->47->1263", - "default.handlebars->47->3191", - "default.handlebars->47->3198", - "default3.handlebars->35->1258", - "default3.handlebars->35->3179", - "default3.handlebars->35->3186", + "default.handlebars->47->1267", + "default.handlebars->47->3201", + "default.handlebars->47->3208", + "default3.handlebars->35->1262", + "default3.handlebars->35->3189", + "default3.handlebars->35->3196", "player.handlebars->3->17" ] }, @@ -83286,10 +83301,10 @@ "zh-chs": "时间范围结束", "zh-cht": "時間範圍結束", "xloc": [ - "default.handlebars->47->1248", - "default.handlebars->47->3194", - "default3.handlebars->35->1243", - "default3.handlebars->35->3182" + "default.handlebars->47->1252", + "default.handlebars->47->3204", + "default3.handlebars->35->1247", + "default3.handlebars->35->3192" ] }, { @@ -83318,10 +83333,10 @@ "zh-chs": "时间范围开始", "zh-cht": "時間範圍開始", "xloc": [ - "default.handlebars->47->1246", - "default.handlebars->47->3192", - "default3.handlebars->35->1241", - "default3.handlebars->35->3180" + "default.handlebars->47->1250", + "default.handlebars->47->3202", + "default3.handlebars->35->1245", + "default3.handlebars->35->3190" ] }, { @@ -83350,8 +83365,8 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->47->2712", - "default3.handlebars->35->2709" + "default.handlebars->47->2716", + "default3.handlebars->35->2713" ] }, { @@ -83380,10 +83395,10 @@ "zh-chs": "时间范围", "zh-cht": "時間範圍", "xloc": [ - "default.handlebars->47->1242", - "default.handlebars->47->3190", - "default3.handlebars->35->1237", - "default3.handlebars->35->3178" + "default.handlebars->47->1246", + "default.handlebars->47->3200", + "default3.handlebars->35->1241", + "default3.handlebars->35->3188" ] }, { @@ -83413,8 +83428,8 @@ "zh-cht": "超時", "xloc": [ "default-mobile.handlebars->11->646", - "default.handlebars->47->1387", - "default3.handlebars->35->1374", + "default.handlebars->47->1391", + "default3.handlebars->35->1378", "sharing-mobile.handlebars->11->12", "sharing.handlebars->11->31", "sharing.handlebars->11->9" @@ -83446,9 +83461,9 @@ "zh-chs": "标题", "zh-cht": "標題", "xloc": [ - "default.handlebars->47->1202", + "default.handlebars->47->1206", "default.handlebars->47->782", - "default3.handlebars->35->1197", + "default3.handlebars->35->1201", "default3.handlebars->35->779" ] }, @@ -83676,8 +83691,8 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->47->2092", - "default3.handlebars->35->2074" + "default.handlebars->47->2096", + "default3.handlebars->35->2078" ] }, { @@ -83980,9 +83995,9 @@ "zh-chs": "吐司通知", "zh-cht": "吐司通知", "xloc": [ - "default.handlebars->47->1199", + "default.handlebars->47->1203", "default.handlebars->47->779", - "default3.handlebars->35->1194", + "default3.handlebars->35->1198", "default3.handlebars->35->776" ] }, @@ -84486,9 +84501,9 @@ "zh-chs": "token名称", "zh-cht": "令牌名稱", "xloc": [ - "default.handlebars->47->2078", - "default3.handlebars->35->2059", - "default3.handlebars->35->2060" + "default.handlebars->47->2082", + "default3.handlebars->35->2063", + "default3.handlebars->35->2064" ] }, { @@ -84612,12 +84627,12 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->47->1318", - "default.handlebars->47->1823", - "default.handlebars->47->3060", - "default3.handlebars->35->1309", - "default3.handlebars->35->1805", - "default3.handlebars->35->3054" + "default.handlebars->47->1322", + "default.handlebars->47->1827", + "default.handlebars->47->3064", + "default3.handlebars->35->1313", + "default3.handlebars->35->1809", + "default3.handlebars->35->3058" ] }, { @@ -84736,8 +84751,8 @@ "zh-chs": "用于通过此服务器连接到设备的流量路由器", "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "xloc": [ - "default.handlebars->47->1048", - "default3.handlebars->35->1045" + "default.handlebars->47->1052", + "default3.handlebars->35->1049" ] }, { @@ -84905,8 +84920,8 @@ "zh-cht": "嘗試憑證", "xloc": [ "default-mobile.handlebars->11->525", - "default.handlebars->47->934", - "default3.handlebars->35->931" + "default.handlebars->47->938", + "default3.handlebars->35->935" ] }, { @@ -84936,8 +84951,8 @@ "zh-cht": "特松加", "xloc": [ "default-mobile.handlebars->11->296", - "default.handlebars->47->2036", - "default3.handlebars->35->2017", + "default.handlebars->47->2040", + "default3.handlebars->35->2021", "login2.handlebars->7->182" ] }, @@ -84968,8 +84983,8 @@ "zh-cht": "茨瓦納", "xloc": [ "default-mobile.handlebars->11->297", - "default.handlebars->47->2037", - "default3.handlebars->35->2018", + "default.handlebars->47->2041", + "default3.handlebars->35->2022", "login2.handlebars->7->183" ] }, @@ -85026,8 +85041,8 @@ "zh-cht": "土耳其", "xloc": [ "default-mobile.handlebars->11->298", - "default.handlebars->47->2038", - "default3.handlebars->35->2019", + "default.handlebars->47->2042", + "default3.handlebars->35->2023", "login2.handlebars->7->184" ] }, @@ -85058,8 +85073,8 @@ "zh-cht": "土庫曼文", "xloc": [ "default-mobile.handlebars->11->299", - "default.handlebars->47->2039", - "default3.handlebars->35->2020", + "default.handlebars->47->2043", + "default3.handlebars->35->2024", "login2.handlebars->7->185" ] }, @@ -85091,10 +85106,10 @@ "xloc": [ "default-mobile.handlebars->11->554", "default-mobile.handlebars->11->555", - "default.handlebars->47->1034", - "default.handlebars->47->1035", - "default3.handlebars->35->1031", - "default3.handlebars->35->1032" + "default.handlebars->47->1038", + "default.handlebars->47->1039", + "default3.handlebars->35->1035", + "default3.handlebars->35->1036" ] }, { @@ -85123,8 +85138,8 @@ "zh-chs": "关掉。", "zh-cht": "關掉。", "xloc": [ - "default.handlebars->47->2670", - "default3.handlebars->35->2667" + "default.handlebars->47->2674", + "default3.handlebars->35->2671" ] }, { @@ -85155,10 +85170,10 @@ "xloc": [ "default-mobile.handlebars->11->556", "default-mobile.handlebars->11->557", - "default.handlebars->47->1036", - "default.handlebars->47->1037", - "default3.handlebars->35->1033", - "default3.handlebars->35->1034" + "default.handlebars->47->1040", + "default.handlebars->47->1041", + "default3.handlebars->35->1037", + "default3.handlebars->35->1038" ] }, { @@ -85187,8 +85202,8 @@ "zh-chs": "打开。", "zh-cht": "打開。", "xloc": [ - "default.handlebars->47->2669", - "default3.handlebars->35->2666" + "default.handlebars->47->2673", + "default3.handlebars->35->2670" ] }, { @@ -85275,20 +85290,20 @@ "xloc": [ "default-mobile.handlebars->11->347", "default-mobile.handlebars->11->951", - "default.handlebars->47->1223", - "default.handlebars->47->1479", - "default.handlebars->47->2116", - "default.handlebars->47->2184", - "default.handlebars->47->2285", - "default.handlebars->47->3177", + "default.handlebars->47->1227", + "default.handlebars->47->1483", + "default.handlebars->47->2120", + "default.handlebars->47->2188", + "default.handlebars->47->2289", + "default.handlebars->47->3187", "default.handlebars->47->510", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->5", - "default3.handlebars->35->1218", - "default3.handlebars->35->1465", - "default3.handlebars->35->2116", - "default3.handlebars->35->2180", - "default3.handlebars->35->2279", - "default3.handlebars->35->3165", + "default3.handlebars->35->1222", + "default3.handlebars->35->1469", + "default3.handlebars->35->2120", + "default3.handlebars->35->2184", + "default3.handlebars->35->2283", + "default3.handlebars->35->3175", "default3.handlebars->35->507", "default3.handlebars->container->column_l->p11->deskarea0->deskarea4->1", "sharing.handlebars->p11->deskarea0->deskarea4->3" @@ -85320,8 +85335,8 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->47->1848", - "default3.handlebars->35->1829" + "default.handlebars->47->1852", + "default3.handlebars->35->1833" ] }, { @@ -85350,8 +85365,8 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->47->1845", - "default3.handlebars->35->1826" + "default.handlebars->47->1849", + "default3.handlebars->35->1830" ] }, { @@ -85463,8 +85478,8 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->47->1529", - "default3.handlebars->35->1514", + "default.handlebars->47->1533", + "default3.handlebars->35->1518", "sharing.handlebars->11->33" ] }, @@ -85495,8 +85510,8 @@ "zh-cht": "烏克蘭", "xloc": [ "default-mobile.handlebars->11->300", - "default.handlebars->47->2040", - "default3.handlebars->35->2021", + "default.handlebars->47->2044", + "default3.handlebars->35->2025", "login2.handlebars->7->186" ] }, @@ -85638,9 +85653,9 @@ "zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。", "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->47->2107", - "default.handlebars->47->888", - "default3.handlebars->35->885" + "default.handlebars->47->2111", + "default.handlebars->47->892", + "default3.handlebars->35->889" ] }, { @@ -85651,7 +85666,7 @@ "xloc": [ "default-mobile.handlebars->11->357", "default-mobile.handlebars->11->99", - "default3.handlebars->35->3399" + "default3.handlebars->35->3422" ] }, { @@ -85680,12 +85695,12 @@ "zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->47->2109", - "default.handlebars->47->3413", + "default.handlebars->47->2113", + "default.handlebars->47->3436", "default.handlebars->47->741", - "default.handlebars->47->890", + "default.handlebars->47->894", "default3.handlebars->35->738", - "default3.handlebars->35->887" + "default3.handlebars->35->891" ] }, { @@ -85715,8 +85730,8 @@ "zh-cht": "此模式下無法添加用戶", "xloc": [ "default-mobile.handlebars->11->1043", - "default.handlebars->47->3291", - "default3.handlebars->35->3279" + "default.handlebars->47->3314", + "default3.handlebars->35->3302" ] }, { @@ -85800,8 +85815,8 @@ "zh-chs": "无法捕捉显示", "zh-cht": "無法捕獲顯示", "xloc": [ - "default.handlebars->47->1389", - "default3.handlebars->35->1376" + "default.handlebars->47->1393", + "default3.handlebars->35->1380" ] }, { @@ -85918,7 +85933,7 @@ "zh-chs": "无法导入任何设备。", "zh-cht": "無法導入任何設備。", "xloc": [ - "default.handlebars->47->2281" + "default.handlebars->47->2285" ] }, { @@ -86307,12 +86322,12 @@ "xloc": [ "agent-translations.json", "default-mobile.handlebars->11->1015", - "default.handlebars->47->1150", - "default.handlebars->47->1175", - "default.handlebars->47->2417", - "default3.handlebars->35->1145", - "default3.handlebars->35->1170", - "default3.handlebars->35->2414" + "default.handlebars->47->1154", + "default.handlebars->47->1179", + "default.handlebars->47->2421", + "default3.handlebars->35->1149", + "default3.handlebars->35->1174", + "default3.handlebars->35->2418" ] }, { @@ -86342,9 +86357,9 @@ "zh-cht": "卸載代理", "xloc": [ "default-mobile.handlebars->11->995", - "default.handlebars->47->1281", + "default.handlebars->47->1285", "default.handlebars->47->745", - "default3.handlebars->35->1276", + "default3.handlebars->35->1280", "default3.handlebars->35->742" ] }, @@ -86374,8 +86389,8 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->47->2379", - "default3.handlebars->35->2376" + "default.handlebars->47->2383", + "default3.handlebars->35->2380" ] }, { @@ -86404,14 +86419,14 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->47->1326", - "default3.handlebars->35->1317" + "default.handlebars->47->1330", + "default3.handlebars->35->1321" ] }, { "en": "United", "xloc": [ - "default3.handlebars->35->2099" + "default3.handlebars->35->2103" ] }, { @@ -86467,60 +86482,60 @@ "default-mobile.handlebars->11->919", "default-mobile.handlebars->11->952", "default.handlebars->47->13", - "default.handlebars->47->1666", - "default.handlebars->47->1668", - "default.handlebars->47->1675", - "default.handlebars->47->1739", - "default.handlebars->47->1751", - "default.handlebars->47->1758", + "default.handlebars->47->1670", + "default.handlebars->47->1672", + "default.handlebars->47->1679", + "default.handlebars->47->1743", + "default.handlebars->47->1755", "default.handlebars->47->1762", - "default.handlebars->47->1764", + "default.handlebars->47->1766", + "default.handlebars->47->1768", "default.handlebars->47->198", "default.handlebars->47->199", "default.handlebars->47->200", "default.handlebars->47->202", "default.handlebars->47->204", - "default.handlebars->47->2164", - "default.handlebars->47->2165", - "default.handlebars->47->2185", - "default.handlebars->47->3123", - "default.handlebars->47->3143", - "default.handlebars->47->3150", - "default.handlebars->47->3224", - "default.handlebars->47->3225", - "default.handlebars->47->3226", - "default.handlebars->47->3227", - "default.handlebars->47->3228", - "default.handlebars->47->3267", + "default.handlebars->47->2168", + "default.handlebars->47->2169", + "default.handlebars->47->2189", + "default.handlebars->47->3127", + "default.handlebars->47->3147", + "default.handlebars->47->3157", + "default.handlebars->47->3237", + "default.handlebars->47->3238", + "default.handlebars->47->3239", + "default.handlebars->47->3240", + "default.handlebars->47->3241", + "default.handlebars->47->3290", "default.handlebars->47->44", "default.handlebars->47->51", "default.handlebars->47->52", "default.handlebars->47->737", "default3.handlebars->35->13", - "default3.handlebars->35->1651", - "default3.handlebars->35->1658", - "default3.handlebars->35->1722", - "default3.handlebars->35->1734", - "default3.handlebars->35->1741", + "default3.handlebars->35->1655", + "default3.handlebars->35->1662", + "default3.handlebars->35->1726", + "default3.handlebars->35->1738", "default3.handlebars->35->1745", - "default3.handlebars->35->1747", + "default3.handlebars->35->1749", + "default3.handlebars->35->1751", "default3.handlebars->35->198", "default3.handlebars->35->199", "default3.handlebars->35->200", "default3.handlebars->35->202", "default3.handlebars->35->204", - "default3.handlebars->35->2162", - "default3.handlebars->35->2163", - "default3.handlebars->35->2181", - "default3.handlebars->35->3111", - "default3.handlebars->35->3131", - "default3.handlebars->35->3138", - "default3.handlebars->35->3212", - "default3.handlebars->35->3213", - "default3.handlebars->35->3214", - "default3.handlebars->35->3215", - "default3.handlebars->35->3216", - "default3.handlebars->35->3255", + "default3.handlebars->35->2166", + "default3.handlebars->35->2167", + "default3.handlebars->35->2185", + "default3.handlebars->35->3115", + "default3.handlebars->35->3135", + "default3.handlebars->35->3145", + "default3.handlebars->35->3225", + "default3.handlebars->35->3226", + "default3.handlebars->35->3227", + "default3.handlebars->35->3228", + "default3.handlebars->35->3229", + "default3.handlebars->35->3278", "default3.handlebars->35->44", "default3.handlebars->35->51", "default3.handlebars->35->52", @@ -86554,8 +86569,8 @@ "zh-cht": "未知#{0}", "xloc": [ "default-mobile.handlebars->11->941", - "default.handlebars->47->2174", - "default3.handlebars->35->2170" + "default.handlebars->47->2178", + "default3.handlebars->35->2174" ] }, { @@ -86584,8 +86599,8 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->47->3328", - "default3.handlebars->35->3316" + "default.handlebars->47->3351", + "default3.handlebars->35->3339" ] }, { @@ -86614,10 +86629,10 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->47->2914", - "default.handlebars->47->3109", - "default3.handlebars->35->2908", - "default3.handlebars->35->3097" + "default.handlebars->47->2918", + "default.handlebars->47->3113", + "default3.handlebars->35->2912", + "default3.handlebars->35->3101" ] }, { @@ -86646,12 +86661,12 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->47->2908", - "default.handlebars->47->3097", - "default.handlebars->47->3332", - "default3.handlebars->35->2902", - "default3.handlebars->35->3085", - "default3.handlebars->35->3320" + "default.handlebars->47->2912", + "default.handlebars->47->3101", + "default.handlebars->47->3355", + "default3.handlebars->35->2906", + "default3.handlebars->35->3089", + "default3.handlebars->35->3343" ] }, { @@ -86680,8 +86695,8 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->47->3324", - "default3.handlebars->35->3312" + "default.handlebars->47->3347", + "default3.handlebars->35->3335" ] }, { @@ -86711,8 +86726,8 @@ "zh-cht": "未知狀態", "xloc": [ "default-mobile.handlebars->11->514", - "default.handlebars->47->921", - "default3.handlebars->35->918" + "default.handlebars->47->925", + "default3.handlebars->35->922" ] }, { @@ -86741,10 +86756,10 @@ "zh-chs": "未知用户", "zh-cht": "未知用戶", "xloc": [ - "default.handlebars->47->3229", - "default.handlebars->47->3268", - "default3.handlebars->35->3217", - "default3.handlebars->35->3256" + "default.handlebars->47->3242", + "default.handlebars->47->3291", + "default3.handlebars->35->3230", + "default3.handlebars->35->3279" ] }, { @@ -86773,8 +86788,8 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->47->3103", - "default3.handlebars->35->3091" + "default.handlebars->47->3107", + "default3.handlebars->35->3095" ] }, { @@ -86804,8 +86819,8 @@ "zh-cht": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->11->516", - "default.handlebars->47->923", - "default3.handlebars->35->920" + "default.handlebars->47->927", + "default3.handlebars->35->924" ] }, { @@ -86834,8 +86849,8 @@ "zh-chs": "密码未知", "zh-cht": "密碼未知", "xloc": [ - "default.handlebars->47->2301", - "default3.handlebars->35->2295" + "default.handlebars->47->2305", + "default3.handlebars->35->2299" ] }, { @@ -86864,13 +86879,13 @@ "zh-chs": "无限制", "zh-cht": "無限", "xloc": [ - "default.handlebars->47->1239", - "default.handlebars->47->2061", + "default.handlebars->47->1243", + "default.handlebars->47->2065", "default.handlebars->47->293", "default.handlebars->47->573", "default.handlebars->47->587", - "default3.handlebars->35->1234", - "default3.handlebars->35->2042", + "default3.handlebars->35->1238", + "default3.handlebars->35->2046", "default3.handlebars->35->290", "default3.handlebars->35->570", "default3.handlebars->35->584" @@ -86902,8 +86917,8 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->47->2768", - "default3.handlebars->35->2765" + "default.handlebars->47->2772", + "default3.handlebars->35->2769" ] }, { @@ -86932,8 +86947,8 @@ "zh-chs": "解锁远程用户的鼠标和键盘?", "zh-cht": "解鎖遠程用戶的鼠標和鍵盤?", "xloc": [ - "default.handlebars->47->1198", - "default3.handlebars->35->1193" + "default.handlebars->47->1202", + "default3.handlebars->35->1197" ] }, { @@ -87012,8 +87027,8 @@ "nl": "Uitpakken naar map", "uk": "Розпакувати до теки", "xloc": [ - "default.handlebars->47->1575", - "default3.handlebars->35->1560" + "default.handlebars->47->1579", + "default3.handlebars->35->1564" ] }, { @@ -87022,8 +87037,8 @@ "nl": "Fout bij uitpakken", "uk": "Помилка розпаковування", "xloc": [ - "default.handlebars->47->1550", - "default3.handlebars->35->1535" + "default.handlebars->47->1554", + "default3.handlebars->35->1539" ] }, { @@ -87032,8 +87047,8 @@ "nl": "Bestand uitpakken...", "uk": "Розпаковування файлу...", "xloc": [ - "default.handlebars->47->1548", - "default3.handlebars->35->1533" + "default.handlebars->47->1552", + "default3.handlebars->35->1537" ] }, { @@ -87066,11 +87081,11 @@ "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->3->dialog4->d3servermode->d3serveraction", - "default.handlebars->47->1436", + "default.handlebars->47->1440", "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", - "default3.handlebars->35->1423", + "default3.handlebars->35->1427", "default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog3->d3servermode->d3serveraction", @@ -87105,8 +87120,8 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->47->3418", - "default3.handlebars->35->3406" + "default.handlebars->47->3441", + "default3.handlebars->35->3429" ] }, { @@ -87138,10 +87153,10 @@ "agent-translations.json", "default-mobile.handlebars->11->763", "default-mobile.handlebars->11->765", - "default.handlebars->47->950", - "default.handlebars->47->952", - "default3.handlebars->35->947", - "default3.handlebars->35->949" + "default.handlebars->47->954", + "default.handlebars->47->956", + "default3.handlebars->35->951", + "default3.handlebars->35->953" ] }, { @@ -87238,17 +87253,17 @@ "default-mobile.handlebars->11->743", "default-mobile.handlebars->11->746", "default-mobile.handlebars->dialog->3->dialog4->d3localmode->1", - "default.handlebars->47->1572", - "default.handlebars->47->1602", - "default.handlebars->47->1605", - "default.handlebars->47->2525", - "default.handlebars->47->2535", + "default.handlebars->47->1576", + "default.handlebars->47->1606", + "default.handlebars->47->1609", + "default.handlebars->47->2529", + "default.handlebars->47->2539", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", - "default3.handlebars->35->1557", - "default3.handlebars->35->1587", - "default3.handlebars->35->1590", - "default3.handlebars->35->2522", - "default3.handlebars->35->2532", + "default3.handlebars->35->1561", + "default3.handlebars->35->1591", + "default3.handlebars->35->1594", + "default3.handlebars->35->2526", + "default3.handlebars->35->2536", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog3->d3localmode->1", "sharing-mobile.handlebars->11->107", "sharing-mobile.handlebars->11->110", @@ -87285,8 +87300,8 @@ "zh-cht": "上載mesh agent核心", "xloc": [ "default-mobile.handlebars->11->940", - "default.handlebars->47->1786", - "default3.handlebars->35->1769" + "default.handlebars->47->1790", + "default3.handlebars->35->1773" ] }, { @@ -87316,8 +87331,8 @@ "zh-cht": "上載核心檔案", "xloc": [ "default-mobile.handlebars->11->931", - "default.handlebars->47->1777", - "default3.handlebars->35->1760" + "default.handlebars->47->1781", + "default3.handlebars->35->1764" ] }, { @@ -87347,10 +87362,10 @@ "zh-cht": "上載默認伺服器核心", "xloc": [ "default-mobile.handlebars->11->929", - "default.handlebars->47->1775", + "default.handlebars->47->1779", "default.handlebars->47->757", "default.handlebars->47->800", - "default3.handlebars->35->1758", + "default3.handlebars->35->1762", "default3.handlebars->35->754", "default3.handlebars->35->797" ] @@ -87472,8 +87487,8 @@ "zh-cht": "上傳恢復核心", "xloc": [ "default-mobile.handlebars->11->934", - "default.handlebars->47->1780", - "default3.handlebars->35->1763" + "default.handlebars->47->1784", + "default3.handlebars->35->1767" ] }, { @@ -87533,8 +87548,8 @@ "zh-cht": "上傳小核心", "xloc": [ "default-mobile.handlebars->11->935", - "default.handlebars->47->1781", - "default3.handlebars->35->1764" + "default.handlebars->47->1785", + "default3.handlebars->35->1768" ] }, { @@ -87564,10 +87579,10 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->744", - "default.handlebars->47->1603", - "default.handlebars->47->2536", - "default3.handlebars->35->1588", - "default3.handlebars->35->2533", + "default.handlebars->47->1607", + "default.handlebars->47->2540", + "default3.handlebars->35->1592", + "default3.handlebars->35->2537", "sharing-mobile.handlebars->11->108", "sharing.handlebars->11->95" ] @@ -87599,10 +87614,10 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->11->745", - "default.handlebars->47->1604", - "default.handlebars->47->2537", - "default3.handlebars->35->1589", - "default3.handlebars->35->2534", + "default.handlebars->47->1608", + "default.handlebars->47->2541", + "default3.handlebars->35->1593", + "default3.handlebars->35->2538", "sharing-mobile.handlebars->11->109", "sharing.handlebars->11->96" ] @@ -87659,8 +87674,8 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->47->2587", - "default3.handlebars->35->2584" + "default.handlebars->47->2591", + "default3.handlebars->35->2588" ] }, { @@ -87689,8 +87704,8 @@ "zh-chs": "上传:\\\"{0}\\\",大小:{1}", "zh-cht": "上傳:\\\"{0}\\\",大小:{1}", "xloc": [ - "default.handlebars->47->2642", - "default3.handlebars->35->2639" + "default.handlebars->47->2646", + "default3.handlebars->35->2643" ] }, { @@ -87720,8 +87735,8 @@ "zh-cht": "上索布族", "xloc": [ "default-mobile.handlebars->11->301", - "default.handlebars->47->2041", - "default3.handlebars->35->2022", + "default.handlebars->47->2045", + "default3.handlebars->35->2026", "login2.handlebars->7->187" ] }, @@ -87752,8 +87767,8 @@ "zh-cht": "烏爾都文", "xloc": [ "default-mobile.handlebars->11->302", - "default.handlebars->47->2042", - "default3.handlebars->35->2023", + "default.handlebars->47->2046", + "default3.handlebars->35->2027", "login2.handlebars->7->188" ] }, @@ -87783,8 +87798,8 @@ "zh-chs": "用法", "zh-cht": "用法", "xloc": [ - "default.handlebars->47->3380", - "default3.handlebars->35->3368" + "default.handlebars->47->3403", + "default3.handlebars->35->3391" ] }, { @@ -87894,8 +87909,8 @@ "pl": "Używaj do Przekierowania", "uk": "Використання Ретрансляції", "xloc": [ - "default.handlebars->47->2383", - "default3.handlebars->35->2380" + "default.handlebars->47->2387", + "default3.handlebars->35->2384" ] }, { @@ -87954,8 +87969,8 @@ "zh-chs": "使用新凭据", "zh-cht": "使用新憑據", "xloc": [ - "default.handlebars->47->1402", - "default3.handlebars->35->1389", + "default.handlebars->47->1406", + "default3.handlebars->35->1393", "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->1" ] }, @@ -87985,8 +88000,8 @@ "zh-chs": "使用服务器凭据", "zh-cht": "使用服務器憑據", "xloc": [ - "default.handlebars->47->1401", - "default3.handlebars->35->1388", + "default.handlebars->47->1405", + "default3.handlebars->35->1392", "mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->0" ] }, @@ -88045,10 +88060,10 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->47->3318", - "default.handlebars->47->3320", - "default3.handlebars->35->3306", - "default3.handlebars->35->3308" + "default.handlebars->47->3341", + "default.handlebars->47->3343", + "default3.handlebars->35->3329", + "default3.handlebars->35->3331" ] }, { @@ -88077,29 +88092,29 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->47->1094", + "default.handlebars->47->1098", "default.handlebars->47->136", - "default.handlebars->47->1481", - "default.handlebars->47->2248", - "default.handlebars->47->2719", - "default.handlebars->47->2749", - "default.handlebars->47->2904", - "default.handlebars->47->3170", - "default.handlebars->47->3178", - "default.handlebars->47->3182", - "default.handlebars->47->3201", + "default.handlebars->47->1485", + "default.handlebars->47->2252", + "default.handlebars->47->2723", + "default.handlebars->47->2753", + "default.handlebars->47->2908", + "default.handlebars->47->3180", + "default.handlebars->47->3188", + "default.handlebars->47->3192", + "default.handlebars->47->3211", "default.handlebars->47->393", - "default3.handlebars->35->1091", + "default3.handlebars->35->1095", "default3.handlebars->35->136", - "default3.handlebars->35->1467", - "default3.handlebars->35->2244", - "default3.handlebars->35->2716", - "default3.handlebars->35->2746", - "default3.handlebars->35->2898", - "default3.handlebars->35->3158", - "default3.handlebars->35->3166", - "default3.handlebars->35->3170", - "default3.handlebars->35->3189", + "default3.handlebars->35->1471", + "default3.handlebars->35->2248", + "default3.handlebars->35->2720", + "default3.handlebars->35->2750", + "default3.handlebars->35->2902", + "default3.handlebars->35->3168", + "default3.handlebars->35->3176", + "default3.handlebars->35->3180", + "default3.handlebars->35->3199", "default3.handlebars->35->390" ] }, @@ -88129,8 +88144,8 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->47->2750", - "default3.handlebars->35->2747" + "default.handlebars->47->2754", + "default3.handlebars->35->2751" ] }, { @@ -88159,20 +88174,20 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->47->2280", - "default.handlebars->47->2789", - "default.handlebars->47->2791", + "default.handlebars->47->2284", "default.handlebars->47->2793", "default.handlebars->47->2795", "default.handlebars->47->2797", "default.handlebars->47->2799", - "default3.handlebars->35->2276", - "default3.handlebars->35->2785", - "default3.handlebars->35->2787", + "default.handlebars->47->2801", + "default.handlebars->47->2803", + "default3.handlebars->35->2280", "default3.handlebars->35->2789", "default3.handlebars->35->2791", "default3.handlebars->35->2793", - "default3.handlebars->35->2795" + "default3.handlebars->35->2795", + "default3.handlebars->35->2797", + "default3.handlebars->35->2799" ] }, { @@ -88201,8 +88216,8 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->47->3338", - "default3.handlebars->35->3326" + "default.handlebars->47->3361", + "default3.handlebars->35->3349" ] }, { @@ -88217,8 +88232,8 @@ "pl": "Dziennik Autentykacji Użytkownika", "uk": "Журнал Автентифікації Користувача", "xloc": [ - "default.handlebars->47->3401", - "default3.handlebars->35->3389" + "default.handlebars->47->3424", + "default3.handlebars->35->3412" ] }, { @@ -88248,10 +88263,10 @@ "zh-cht": "用戶授權", "xloc": [ "default-mobile.handlebars->11->959", - "default.handlebars->47->1090", - "default.handlebars->47->2246", - "default3.handlebars->35->1087", - "default3.handlebars->35->2242" + "default.handlebars->47->1094", + "default.handlebars->47->2250", + "default3.handlebars->35->1091", + "default3.handlebars->35->2246" ] }, { @@ -88280,18 +88295,18 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->47->1253", - "default.handlebars->47->2212", - "default.handlebars->47->2895", - "default.handlebars->47->3000", + "default.handlebars->47->1257", + "default.handlebars->47->2216", + "default.handlebars->47->2899", + "default.handlebars->47->3004", "default.handlebars->47->315", - "default.handlebars->47->986", - "default3.handlebars->35->1248", - "default3.handlebars->35->2208", - "default3.handlebars->35->2889", - "default3.handlebars->35->2994", + "default.handlebars->47->990", + "default3.handlebars->35->1252", + "default3.handlebars->35->2212", + "default3.handlebars->35->2893", + "default3.handlebars->35->2998", "default3.handlebars->35->312", - "default3.handlebars->35->983" + "default3.handlebars->35->987" ] }, { @@ -88320,18 +88335,18 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->47->1093", - "default.handlebars->47->2354", - "default.handlebars->47->2355", - "default.handlebars->47->2864", - "default.handlebars->47->3105", - "default.handlebars->47->3126", - "default3.handlebars->35->1090", - "default3.handlebars->35->2351", - "default3.handlebars->35->2352", - "default3.handlebars->35->2858", - "default3.handlebars->35->3093", - "default3.handlebars->35->3114" + "default.handlebars->47->1097", + "default.handlebars->47->2358", + "default.handlebars->47->2359", + "default.handlebars->47->2868", + "default.handlebars->47->3109", + "default.handlebars->47->3130", + "default3.handlebars->35->1094", + "default3.handlebars->35->2355", + "default3.handlebars->35->2356", + "default3.handlebars->35->2862", + "default3.handlebars->35->3097", + "default3.handlebars->35->3118" ] }, { @@ -88390,8 +88405,8 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->47->3102", - "default3.handlebars->35->3090" + "default.handlebars->47->3106", + "default3.handlebars->35->3094" ] }, { @@ -88449,12 +88464,12 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->47->2425", - "default.handlebars->47->2951", - "default.handlebars->47->2952", - "default3.handlebars->35->2422", - "default3.handlebars->35->2945", - "default3.handlebars->35->2946" + "default.handlebars->47->2429", + "default.handlebars->47->2955", + "default.handlebars->47->2956", + "default3.handlebars->35->2426", + "default3.handlebars->35->2949", + "default3.handlebars->35->2950" ] }, { @@ -88483,10 +88498,10 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->47->2352", - "default.handlebars->47->2935", - "default3.handlebars->35->2349", - "default3.handlebars->35->2929" + "default.handlebars->47->2356", + "default.handlebars->47->2939", + "default3.handlebars->35->2353", + "default3.handlebars->35->2933" ] }, { @@ -88552,8 +88567,8 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->47->2806", - "default3.handlebars->35->2802" + "default.handlebars->47->2810", + "default3.handlebars->35->2806" ] }, { @@ -88582,8 +88597,8 @@ "zh-chs": "用户登录", "zh-cht": "用戶登錄", "xloc": [ - "default.handlebars->47->3175", - "default3.handlebars->35->3163" + "default.handlebars->47->3185", + "default3.handlebars->35->3173" ] }, { @@ -88613,8 +88628,8 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->11->1019", - "default.handlebars->47->2424", - "default3.handlebars->35->2421" + "default.handlebars->47->2428", + "default3.handlebars->35->2425" ] }, { @@ -88695,10 +88710,19 @@ "zh-chs": "用户PowerShell", "zh-cht": "用戶PowerShell", "xloc": [ + "default.handlebars->47->3153", + "default.handlebars->47->3163", + "default.handlebars->47->3229", + "default.handlebars->47->3282", "default.handlebars->termShellContextMenu->7", "default.handlebars->termShellContextMenu2->3", + "default3.handlebars->35->3141", + "default3.handlebars->35->3151", + "default3.handlebars->35->3217", + "default3.handlebars->35->3270", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->19->0", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->7->0", + "player.handlebars->3->31", "xterm.handlebars->termShellContextMenu->cxtermups" ] }, @@ -88758,8 +88782,8 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->47->3370", - "default3.handlebars->35->3358" + "default.handlebars->47->3393", + "default3.handlebars->35->3381" ] }, { @@ -88788,12 +88812,21 @@ "zh-chs": "用户Shell", "zh-cht": "用戶Shell", "xloc": [ + "default.handlebars->47->3152", + "default.handlebars->47->3162", + "default.handlebars->47->3228", + "default.handlebars->47->3281", "default.handlebars->termShellContextMenu->5", "default.handlebars->termShellContextMenu2->1->0", "default.handlebars->termShellContextMenuLinux->3", + "default3.handlebars->35->3140", + "default3.handlebars->35->3150", + "default3.handlebars->35->3216", + "default3.handlebars->35->3269", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->17->0->0", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->23->0", "default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->5->5->0", + "player.handlebars->3->30", "xterm.handlebars->termShellContextMenu->cxtermunorm", "xterm.handlebars->termShellContextMenuLinux->cxtermps" ] @@ -88824,8 +88857,8 @@ "zh-chs": "用户流量使用", "zh-cht": "用戶流量使用", "xloc": [ - "default.handlebars->47->3174", - "default3.handlebars->35->3162" + "default.handlebars->47->3184", + "default3.handlebars->35->3172" ] }, { @@ -88942,8 +88975,8 @@ "zh-cht": "用戶已存在", "xloc": [ "default-mobile.handlebars->11->1042", - "default.handlebars->47->3290", - "default3.handlebars->35->3278" + "default.handlebars->47->3313", + "default3.handlebars->35->3301" ] }, { @@ -88974,10 +89007,10 @@ "xloc": [ "default-mobile.handlebars->11->313", "default-mobile.handlebars->11->315", - "default.handlebars->47->2053", - "default.handlebars->47->2055", - "default3.handlebars->35->2034", - "default3.handlebars->35->2036" + "default.handlebars->47->2057", + "default.handlebars->47->2059", + "default3.handlebars->35->2038", + "default3.handlebars->35->2040" ] }, { @@ -89006,8 +89039,8 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->47->2616", - "default3.handlebars->35->2613" + "default.handlebars->47->2620", + "default3.handlebars->35->2617" ] }, { @@ -89036,8 +89069,8 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->47->2606", - "default3.handlebars->35->2603" + "default.handlebars->47->2610", + "default3.handlebars->35->2607" ] }, { @@ -89066,8 +89099,8 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->47->2604", - "default3.handlebars->35->2601" + "default.handlebars->47->2608", + "default3.handlebars->35->2605" ] }, { @@ -89082,8 +89115,8 @@ "pl": "Zapisy grupy użytkownika", "uk": "Записи групи користувачів", "xloc": [ - "default.handlebars->47->3258", - "default3.handlebars->35->3246" + "default.handlebars->47->3271", + "default3.handlebars->35->3259" ] }, { @@ -89132,10 +89165,10 @@ "pl": "Klucz Użytkownika", "uk": "Ключ користувача", "xloc": [ - "default.handlebars->47->1822", - "default.handlebars->47->3059", - "default3.handlebars->35->1804", - "default3.handlebars->35->3053" + "default.handlebars->47->1826", + "default.handlebars->47->3063", + "default3.handlebars->35->1808", + "default3.handlebars->35->3057" ] }, { @@ -89164,8 +89197,8 @@ "zh-chs": "来自 {0}、{1}、{2} 的锁定帐户的用户登录尝试", "zh-cht": "用戶從 {0}、{1}、{2} 嘗試登錄鎖定帳戶", "xloc": [ - "default.handlebars->47->2646", - "default3.handlebars->35->2643" + "default.handlebars->47->2650", + "default3.handlebars->35->2647" ] }, { @@ -89194,8 +89227,8 @@ "zh-chs": "来自 {0}、{1}、{2} 的第二个因素不正确的用户登录尝试", "zh-cht": "使用來自 {0}、{1}、{2} 的錯誤第二因素的用戶登錄嘗試", "xloc": [ - "default.handlebars->47->2645", - "default3.handlebars->35->2642" + "default.handlebars->47->2649", + "default3.handlebars->35->2646" ] }, { @@ -89224,8 +89257,8 @@ "zh-chs": "用户通知已更改", "zh-cht": "用戶通知已更改", "xloc": [ - "default.handlebars->47->2667", - "default3.handlebars->35->2664" + "default.handlebars->47->2671", + "default3.handlebars->35->2668" ] }, { @@ -89240,8 +89273,8 @@ "pl": "Zapisy użytkownika", "uk": "Записи користувача", "xloc": [ - "default.handlebars->47->3248", - "default3.handlebars->35->3236" + "default.handlebars->47->3261", + "default3.handlebars->35->3249" ] }, { @@ -89271,8 +89304,8 @@ "zh-cht": "未找到用戶 {0}。", "xloc": [ "default-mobile.handlebars->11->1050", - "default.handlebars->47->3298", - "default3.handlebars->35->3286" + "default.handlebars->47->3321", + "default3.handlebars->35->3309" ] }, { @@ -89363,28 +89396,28 @@ "default-mobile.handlebars->11->623", "default-mobile.handlebars->11->693", "default-mobile.handlebars->11->955", - "default.handlebars->47->1312", - "default.handlebars->47->1404", - "default.handlebars->47->1515", - "default.handlebars->47->1826", - "default.handlebars->47->2125", - "default.handlebars->47->2140", - "default.handlebars->47->2145", - "default.handlebars->47->2188", - "default.handlebars->47->2818", - "default.handlebars->47->3063", + "default.handlebars->47->1316", + "default.handlebars->47->1408", + "default.handlebars->47->1519", + "default.handlebars->47->1830", + "default.handlebars->47->2129", + "default.handlebars->47->2144", + "default.handlebars->47->2149", + "default.handlebars->47->2192", + "default.handlebars->47->2822", + "default.handlebars->47->3067", "default.handlebars->47->346", "default.handlebars->47->519", - "default3.handlebars->35->1303", - "default3.handlebars->35->1391", - "default3.handlebars->35->1500", - "default3.handlebars->35->1808", - "default3.handlebars->35->2125", - "default3.handlebars->35->2140", - "default3.handlebars->35->2145", - "default3.handlebars->35->2184", - "default3.handlebars->35->2814", - "default3.handlebars->35->3057", + "default3.handlebars->35->1307", + "default3.handlebars->35->1395", + "default3.handlebars->35->1504", + "default3.handlebars->35->1812", + "default3.handlebars->35->2129", + "default3.handlebars->35->2144", + "default3.handlebars->35->2149", + "default3.handlebars->35->2188", + "default3.handlebars->35->2818", + "default3.handlebars->35->3061", "default3.handlebars->35->343", "default3.handlebars->35->516", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1", @@ -89425,10 +89458,10 @@ "xloc": [ "default-mobile.handlebars->11->688", "default-mobile.handlebars->11->691", - "default.handlebars->47->1510", - "default.handlebars->47->1513", - "default3.handlebars->35->1495", - "default3.handlebars->35->1498", + "default.handlebars->47->1514", + "default.handlebars->47->1517", + "default3.handlebars->35->1499", + "default3.handlebars->35->1502", "sharing-mobile.handlebars->11->48", "sharing-mobile.handlebars->11->65", "ssh.handlebars->3->10", @@ -89494,10 +89527,10 @@ "xloc": [ "default-mobile.handlebars->11->689", "default-mobile.handlebars->11->692", - "default.handlebars->47->1511", - "default.handlebars->47->1514", - "default3.handlebars->35->1496", - "default3.handlebars->35->1499", + "default.handlebars->47->1515", + "default.handlebars->47->1518", + "default3.handlebars->35->1500", + "default3.handlebars->35->1503", "sharing-mobile.handlebars->11->49", "sharing-mobile.handlebars->11->66", "ssh.handlebars->3->11", @@ -89549,10 +89582,10 @@ "pl": "Username:0000", "uk": "Username:0000", "xloc": [ - "default.handlebars->47->1819", - "default.handlebars->47->3056", - "default3.handlebars->35->1801", - "default3.handlebars->35->3050" + "default.handlebars->47->1823", + "default.handlebars->47->3060", + "default3.handlebars->35->1805", + "default3.handlebars->35->3054" ] }, { @@ -89581,13 +89614,13 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->47->2852", - "default.handlebars->47->2896", - "default.handlebars->47->3369", + "default.handlebars->47->2856", + "default.handlebars->47->2900", + "default.handlebars->47->3392", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral", - "default3.handlebars->35->2846", - "default3.handlebars->35->2890", - "default3.handlebars->35->3357", + "default3.handlebars->35->2850", + "default3.handlebars->35->2894", + "default3.handlebars->35->3380", "default3.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -89617,8 +89650,8 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->47->3342", - "default3.handlebars->35->3330" + "default.handlebars->47->3365", + "default3.handlebars->35->3353" ] }, { @@ -89647,8 +89680,8 @@ "zh-chs": "用户视图", "zh-cht": "用戶視圖", "xloc": [ - "default.handlebars->47->2785", - "default3.handlebars->35->2781" + "default.handlebars->47->2789", + "default3.handlebars->35->2785" ] }, { @@ -89678,8 +89711,8 @@ "zh-cht": "未找到用戶 {0}。", "xloc": [ "default-mobile.handlebars->11->1051", - "default.handlebars->47->3299", - "default3.handlebars->35->3287" + "default.handlebars->47->3322", + "default3.handlebars->35->3310" ] }, { @@ -89708,8 +89741,8 @@ "zh-chs": "VNC 连接", "zh-cht": "VNC 連接", "xloc": [ - "default.handlebars->47->857", - "default3.handlebars->35->854" + "default.handlebars->47->861", + "default3.handlebars->35->858" ] }, { @@ -89738,8 +89771,8 @@ "zh-chs": "VNC远程连接端口:", "zh-cht": "VNC遠程連接端口:", "xloc": [ - "default.handlebars->47->856", - "default3.handlebars->35->853" + "default.handlebars->47->860", + "default3.handlebars->35->857" ] }, { @@ -89768,8 +89801,8 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->47->1534", - "default3.handlebars->35->1519", + "default.handlebars->47->1538", + "default3.handlebars->35->1523", "sharing.handlebars->11->38" ] }, @@ -89830,8 +89863,8 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->47->2763", - "default3.handlebars->35->2760" + "default.handlebars->47->2767", + "default3.handlebars->35->2764" ] }, { @@ -89861,8 +89894,8 @@ "zh-cht": "驗證異常", "xloc": [ "default-mobile.handlebars->11->1044", - "default.handlebars->47->3292", - "default3.handlebars->35->3280" + "default.handlebars->47->3315", + "default3.handlebars->35->3303" ] }, { @@ -89891,8 +89924,8 @@ "zh-chs": "有效期", "zh-cht": "有效期", "xloc": [ - "default.handlebars->47->1240", - "default3.handlebars->35->1235" + "default.handlebars->47->1244", + "default3.handlebars->35->1239" ] }, { @@ -89921,14 +89954,14 @@ "zh-chs": "价值", "zh-cht": "價值", "xloc": [ - "default.handlebars->47->1453", - "default3.handlebars->35->1440" + "default.handlebars->47->1457", + "default3.handlebars->35->1444" ] }, { "en": "Vapor", "xloc": [ - "default3.handlebars->35->2100" + "default3.handlebars->35->2104" ] }, { @@ -89958,8 +89991,8 @@ "zh-cht": "文達", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->47->2043", - "default3.handlebars->35->2024", + "default.handlebars->47->2047", + "default3.handlebars->35->2028", "login2.handlebars->7->189" ] }, @@ -89991,10 +90024,10 @@ "xloc": [ "default-mobile.handlebars->11->839", "default-mobile.handlebars->11->844", - "default.handlebars->47->1684", - "default.handlebars->47->1689", - "default3.handlebars->35->1667", - "default3.handlebars->35->1672" + "default.handlebars->47->1688", + "default.handlebars->47->1693", + "default3.handlebars->35->1671", + "default3.handlebars->35->1676" ] }, { @@ -90056,8 +90089,8 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->47->3081", - "default3.handlebars->35->3073" + "default.handlebars->47->3085", + "default3.handlebars->35->3077" ] }, { @@ -90101,8 +90134,8 @@ "pl": "Zweryfikowano logowanie", "uk": "Вхід підтверджено", "xloc": [ - "default.handlebars->47->1796", - "default3.handlebars->35->1778" + "default.handlebars->47->1800", + "default3.handlebars->35->1782" ] }, { @@ -90116,8 +90149,8 @@ "pl": "Zweryfikowano konto komunikatora", "uk": "Обліковий запис месенджера верифіковано", "xloc": [ - "default.handlebars->47->2760", - "default3.handlebars->35->2757" + "default.handlebars->47->2764", + "default3.handlebars->35->2761" ] }, { @@ -90131,8 +90164,8 @@ "pl": "Zweryfikowano konto komunikatora użytkownika {0}", "uk": "Обліковий запис месенджера {0} верифіковано", "xloc": [ - "default.handlebars->47->2693", - "default3.handlebars->35->2690" + "default.handlebars->47->2697", + "default3.handlebars->35->2694" ] }, { @@ -90162,10 +90195,10 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->11->107", - "default.handlebars->47->1790", - "default.handlebars->47->2758", - "default3.handlebars->35->1772", - "default3.handlebars->35->2755" + "default.handlebars->47->1794", + "default.handlebars->47->2762", + "default3.handlebars->35->1776", + "default3.handlebars->35->2759" ] }, { @@ -90194,8 +90227,8 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->47->2633", - "default3.handlebars->35->2630" + "default.handlebars->47->2637", + "default3.handlebars->35->2634" ] }, { @@ -90289,15 +90322,15 @@ "default-mobile.handlebars->11->820", "default-mobile.handlebars->11->840", "default-mobile.handlebars->11->847", - "default.handlebars->47->1614", - "default.handlebars->47->1665", - "default.handlebars->47->1685", - "default.handlebars->47->1692", + "default.handlebars->47->1618", + "default.handlebars->47->1669", + "default.handlebars->47->1689", + "default.handlebars->47->1696", "default.handlebars->container->column_l->p42->p42tbl->1->0->5", - "default3.handlebars->35->1599", - "default3.handlebars->35->1650", - "default3.handlebars->35->1668", - "default3.handlebars->35->1675", + "default3.handlebars->35->1603", + "default3.handlebars->35->1654", + "default3.handlebars->35->1672", + "default3.handlebars->35->1679", "default3.handlebars->container->column_l->p42->p42tbl->1->0->11" ] }, @@ -90327,9 +90360,9 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->47->3414", - "default3.handlebars->35->3401", - "default3.handlebars->35->3402" + "default.handlebars->47->3437", + "default3.handlebars->35->3424", + "default3.handlebars->35->3425" ] }, { @@ -90418,8 +90451,8 @@ "zh-cht": "顫動", "xloc": [ "default-mobile.handlebars->11->582", - "default.handlebars->47->1262", - "default3.handlebars->35->1257" + "default.handlebars->47->1266", + "default3.handlebars->35->1261" ] }, { @@ -90449,8 +90482,8 @@ "zh-cht": "越南文", "xloc": [ "default-mobile.handlebars->11->304", - "default.handlebars->47->2044", - "default3.handlebars->35->2025", + "default.handlebars->47->2048", + "default3.handlebars->35->2029", "login2.handlebars->7->190" ] }, @@ -90510,8 +90543,8 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->47->2843", - "default3.handlebars->35->2837" + "default.handlebars->47->2847", + "default3.handlebars->35->2841" ] }, { @@ -90566,10 +90599,10 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->47->3417", - "default.handlebars->47->3419", - "default3.handlebars->35->3405", - "default3.handlebars->35->3407" + "default.handlebars->47->3440", + "default.handlebars->47->3442", + "default3.handlebars->35->3428", + "default3.handlebars->35->3430" ] }, { @@ -90598,8 +90631,8 @@ "zh-chs": "查看有关此设备的注释", "zh-cht": "查看有關此裝置的註釋", "xloc": [ - "default.handlebars->47->1023", - "default3.handlebars->35->1020" + "default.handlebars->47->1027", + "default3.handlebars->35->1024" ] }, { @@ -90628,8 +90661,8 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->47->2231", - "default3.handlebars->35->2227" + "default.handlebars->47->2235", + "default3.handlebars->35->2231" ] }, { @@ -90658,8 +90691,8 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->47->3012", - "default3.handlebars->35->3006" + "default.handlebars->47->3016", + "default3.handlebars->35->3010" ] }, { @@ -90719,8 +90752,8 @@ "zh-chs": "查看此用户以前的登录", "zh-cht": "查看此用戶以前的登錄信息", "xloc": [ - "default.handlebars->47->3027", - "default3.handlebars->35->3021" + "default.handlebars->47->3031", + "default3.handlebars->35->3025" ] }, { @@ -90780,8 +90813,8 @@ "zh-cht": "沃拉普克", "xloc": [ "default-mobile.handlebars->11->305", - "default.handlebars->47->2045", - "default3.handlebars->35->2026", + "default.handlebars->47->2049", + "default3.handlebars->35->2030", "login2.handlebars->7->191" ] }, @@ -91041,8 +91074,8 @@ "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ "default-mobile.handlebars->11->643", - "default.handlebars->47->1384", - "default3.handlebars->35->1371", + "default.handlebars->47->1388", + "default3.handlebars->35->1375", "sharing-mobile.handlebars->11->9", "sharing.handlebars->11->28", "sharing.handlebars->11->6" @@ -91074,10 +91107,10 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->47->1146", - "default.handlebars->47->1171", - "default3.handlebars->35->1141", - "default3.handlebars->35->1166" + "default.handlebars->47->1150", + "default.handlebars->47->1175", + "default3.handlebars->35->1145", + "default3.handlebars->35->1170" ] }, { @@ -91108,10 +91141,10 @@ "xloc": [ "default-mobile.handlebars->11->1006", "default-mobile.handlebars->11->991", - "default.handlebars->47->2375", - "default.handlebars->47->2407", - "default3.handlebars->35->2372", - "default3.handlebars->35->2404" + "default.handlebars->47->2379", + "default.handlebars->47->2411", + "default3.handlebars->35->2376", + "default3.handlebars->35->2408" ] }, { @@ -91141,8 +91174,8 @@ "zh-cht": "喚醒", "xloc": [ "default-mobile.handlebars->11->587", - "default.handlebars->47->1267", - "default3.handlebars->35->1262" + "default.handlebars->47->1271", + "default3.handlebars->35->1266" ] }, { @@ -91202,8 +91235,8 @@ "zh-cht": "瓦隆", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->47->2046", - "default3.handlebars->35->2027", + "default.handlebars->47->2050", + "default3.handlebars->35->2031", "login2.handlebars->7->192" ] }, @@ -91233,8 +91266,8 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->47->2132", - "default3.handlebars->35->2132" + "default.handlebars->47->2136", + "default3.handlebars->35->2136" ] }, { @@ -91297,10 +91330,10 @@ "zh-chs": "网页通知", "zh-cht": "網頁通知", "xloc": [ - "default.handlebars->47->1122", - "default.handlebars->47->2454", - "default3.handlebars->35->1117", - "default3.handlebars->35->2451" + "default.handlebars->47->1126", + "default.handlebars->47->2458", + "default3.handlebars->35->1121", + "default3.handlebars->35->2455" ] }, { @@ -91329,8 +91362,8 @@ "zh-chs": "网页电源开关 7", "zh-cht": "網頁電源開關 7", "xloc": [ - "default.handlebars->47->2123", - "default3.handlebars->35->2123" + "default.handlebars->47->2127", + "default3.handlebars->35->2127" ] }, { @@ -91359,10 +91392,10 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->47->3396", - "default.handlebars->47->3397", - "default3.handlebars->35->3384", - "default3.handlebars->35->3385" + "default.handlebars->47->3419", + "default.handlebars->47->3420", + "default3.handlebars->35->3407", + "default3.handlebars->35->3408" ] }, { @@ -91391,8 +91424,8 @@ "zh-chs": "Web 服务器 HTTP 标头", "zh-cht": "Web 服務器 HTTP 標頭", "xloc": [ - "default.handlebars->47->3400", - "default3.handlebars->35->3388" + "default.handlebars->47->3423", + "default3.handlebars->35->3411" ] }, { @@ -91421,8 +91454,8 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->47->3398", - "default3.handlebars->35->3386" + "default.handlebars->47->3421", + "default3.handlebars->35->3409" ] }, { @@ -91451,8 +91484,8 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->47->3399", - "default3.handlebars->35->3387" + "default.handlebars->47->3422", + "default3.handlebars->35->3410" ] }, { @@ -91481,11 +91514,13 @@ "zh-chs": "网络RDP", "zh-cht": "網絡RDP", "xloc": [ - "default.handlebars->47->1064", - "default.handlebars->47->3220", + "default.handlebars->47->1068", + "default.handlebars->47->3233", + "default.handlebars->47->3286", "default.handlebars->contextMenu->cxwebrdp", - "default3.handlebars->35->1061", - "default3.handlebars->35->3208", + "default3.handlebars->35->1065", + "default3.handlebars->35->3221", + "default3.handlebars->35->3274", "default3.handlebars->contextMenu->cxwebrdp" ] }, @@ -91515,8 +91550,10 @@ "zh-chs": "网络SFTP", "zh-cht": "網絡SFTP", "xloc": [ - "default.handlebars->47->3222", - "default3.handlebars->35->3210" + "default.handlebars->47->3235", + "default.handlebars->47->3288", + "default3.handlebars->35->3223", + "default3.handlebars->35->3276" ] }, { @@ -91545,11 +91582,13 @@ "zh-chs": "网络SSH", "zh-cht": "網絡SSH", "xloc": [ - "default.handlebars->47->1066", - "default.handlebars->47->3221", + "default.handlebars->47->1070", + "default.handlebars->47->3234", + "default.handlebars->47->3287", "default.handlebars->contextMenu->cxwebssh", - "default3.handlebars->35->1063", - "default3.handlebars->35->3209", + "default3.handlebars->35->1067", + "default3.handlebars->35->3222", + "default3.handlebars->35->3275", "default3.handlebars->contextMenu->cxwebssh" ] }, @@ -91579,11 +91618,13 @@ "zh-chs": "网络VNC", "zh-cht": "網絡-VNC", "xloc": [ - "default.handlebars->47->1062", - "default.handlebars->47->3223", + "default.handlebars->47->1066", + "default.handlebars->47->3236", + "default.handlebars->47->3289", "default.handlebars->contextMenu->cxwebvnc", - "default3.handlebars->35->1059", - "default3.handlebars->35->3211", + "default3.handlebars->35->1063", + "default3.handlebars->35->3224", + "default3.handlebars->35->3277", "default3.handlebars->contextMenu->cxwebvnc" ] }, @@ -91613,8 +91654,8 @@ "zh-chs": "网络RDP", "zh-cht": "WebRDP", "xloc": [ - "default.handlebars->47->3363", - "default3.handlebars->35->3351" + "default.handlebars->47->3386", + "default3.handlebars->35->3374" ] }, { @@ -91643,8 +91684,8 @@ "zh-chs": "网络SSH", "zh-cht": "網絡SSH", "xloc": [ - "default.handlebars->47->3364", - "default3.handlebars->35->3352" + "default.handlebars->47->3387", + "default3.handlebars->35->3375" ] }, { @@ -91703,8 +91744,8 @@ "zh-chs": "网络VNC", "zh-cht": "網絡VNC", "xloc": [ - "default.handlebars->47->3365", - "default3.handlebars->35->3353" + "default.handlebars->47->3388", + "default3.handlebars->35->3376" ] }, { @@ -91825,8 +91866,8 @@ "zh-cht": "威爾士文", "xloc": [ "default-mobile.handlebars->11->307", - "default.handlebars->47->2047", - "default3.handlebars->35->2028", + "default.handlebars->47->2051", + "default3.handlebars->35->2032", "login2.handlebars->7->193" ] }, @@ -91841,10 +91882,10 @@ "pl": "Whatsapp", "uk": "WhatsApp", "xloc": [ - "default.handlebars->47->1812", - "default.handlebars->47->3049", - "default3.handlebars->35->1794", - "default3.handlebars->35->3043" + "default.handlebars->47->1816", + "default.handlebars->47->3053", + "default3.handlebars->35->1798", + "default3.handlebars->35->3047" ] }, { @@ -91873,8 +91914,8 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->47->2433", - "default3.handlebars->35->2430" + "default.handlebars->47->2437", + "default3.handlebars->35->2434" ] }, { @@ -91904,8 +91945,8 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->47->1828", - "default3.handlebars->35->1810" + "default.handlebars->47->1832", + "default3.handlebars->35->1814" ] }, { @@ -91934,8 +91975,8 @@ "zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。", "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "xloc": [ - "default.handlebars->47->2311", - "default3.handlebars->35->2305" + "default.handlebars->47->2315", + "default3.handlebars->35->2309" ] }, { @@ -91990,8 +92031,8 @@ "zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。", "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "xloc": [ - "default.handlebars->47->2312", - "default3.handlebars->35->2306" + "default.handlebars->47->2316", + "default3.handlebars->35->2310" ] }, { @@ -92020,8 +92061,8 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->47->2980", - "default3.handlebars->35->2974" + "default.handlebars->47->2984", + "default3.handlebars->35->2978" ] }, { @@ -92053,10 +92094,10 @@ "default-mobile.handlebars->11->672", "default-mobile.handlebars->11->676", "default-mobile.handlebars->dialog->3->dialog3->deskkeys->5", - "default.handlebars->47->1443", "default.handlebars->47->1447", - "default3.handlebars->35->1430", + "default.handlebars->47->1451", "default3.handlebars->35->1434", + "default3.handlebars->35->1438", "sharing-mobile.handlebars->11->36", "sharing-mobile.handlebars->11->40", "sharing-mobile.handlebars->dialog->3->dialog3->deskkeys->5", @@ -92302,7 +92343,7 @@ "zh-chs": "Win32可执行文件", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->47->1340" + "default.handlebars->47->1344" ] }, { @@ -92416,11 +92457,11 @@ "default-mobile.handlebars->11->504", "default.handlebars->47->59", "default.handlebars->47->601", - "default.handlebars->47->911", + "default.handlebars->47->915", "default.handlebars->container->dialog->dialogBody->dialog4", "default3.handlebars->35->59", "default3.handlebars->35->598", - "default3.handlebars->35->908", + "default3.handlebars->35->912", "default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog4", "sharing.handlebars->dialog->dialogBody->dialog4" ] @@ -92754,8 +92795,8 @@ "pl": "Windows ARM (64bit)", "uk": "Windows ARM (64біт)", "xloc": [ - "default.handlebars->47->1347", - "default3.handlebars->35->1335" + "default.handlebars->47->1351", + "default3.handlebars->35->1339" ] }, { @@ -92850,9 +92891,9 @@ "zh-cht": "Windows命令提示", "xloc": [ "default-mobile.handlebars->11->610", - "default.handlebars->47->1286", + "default.handlebars->47->1290", "default.handlebars->47->815", - "default3.handlebars->35->1281", + "default3.handlebars->35->1285", "default3.handlebars->35->812" ] }, @@ -92863,8 +92904,8 @@ "uk": "Захисник Windows", "xloc": [ "default-mobile.handlebars->11->780", - "default.handlebars->47->967", - "default3.handlebars->35->964" + "default.handlebars->47->971", + "default3.handlebars->35->968" ] }, { @@ -92905,9 +92946,9 @@ "zh-chs": "Windows MeshAgent", "zh-cht": "Windows MeshAgent", "xloc": [ - "default.handlebars->47->2438", + "default.handlebars->47->2442", "default.handlebars->47->590", - "default3.handlebars->35->2435", + "default3.handlebars->35->2439", "default3.handlebars->35->587" ] }, @@ -93030,9 +93071,9 @@ "zh-cht": "Windows PowerShell", "xloc": [ "default-mobile.handlebars->11->611", - "default.handlebars->47->1287", + "default.handlebars->47->1291", "default.handlebars->47->816", - "default3.handlebars->35->1282", + "default3.handlebars->35->1286", "default3.handlebars->35->813" ] }, @@ -93063,8 +93104,8 @@ "zh-cht": "Windows 安全", "xloc": [ "default-mobile.handlebars->11->771", - "default.handlebars->47->958", - "default3.handlebars->35->955" + "default.handlebars->47->962", + "default3.handlebars->35->959" ] }, { @@ -93142,8 +93183,8 @@ "nl": "Windows x86 (32bit)", "uk": "Windows x86 (32біт)", "xloc": [ - "default.handlebars->47->1346", - "default3.handlebars->35->1334" + "default.handlebars->47->1350", + "default3.handlebars->35->1338" ] }, { @@ -93154,8 +93195,8 @@ "nl": "Windows x86 (64bit)", "uk": "Windows x86-64 (64біт)", "xloc": [ - "default.handlebars->47->1345", - "default3.handlebars->35->1333" + "default.handlebars->47->1349", + "default3.handlebars->35->1337" ] }, { @@ -93212,8 +93253,8 @@ "zh-chs": "工作目录", "zh-cht": "工作目錄", "xloc": [ - "default.handlebars->47->1408", - "default3.handlebars->35->1395" + "default.handlebars->47->1412", + "default3.handlebars->35->1399" ] }, { @@ -93303,8 +93344,8 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->47->1592", - "default3.handlebars->35->1577", + "default.handlebars->47->1596", + "default3.handlebars->35->1581", "sharing.handlebars->11->84" ] }, @@ -93334,8 +93375,8 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->47->1591", - "default3.handlebars->35->1576", + "default.handlebars->47->1595", + "default3.handlebars->35->1580", "sharing.handlebars->11->83" ] }, @@ -93365,8 +93406,8 @@ "zh-chs": "为此设备写一个事件", "zh-cht": "為此裝置寫一個事件", "xloc": [ - "default.handlebars->47->1025", - "default3.handlebars->35->1022" + "default.handlebars->47->1029", + "default3.handlebars->35->1026" ] }, { @@ -93455,10 +93496,10 @@ "zh-chs": "XMPP", "zh-cht": "XMPP", "xloc": [ - "default.handlebars->47->1802", - "default.handlebars->47->3039", - "default3.handlebars->35->1784", - "default3.handlebars->35->3033" + "default.handlebars->47->1806", + "default.handlebars->47->3043", + "default3.handlebars->35->1788", + "default3.handlebars->35->3037" ] }, { @@ -93487,8 +93528,8 @@ "zh-chs": "XTerm", "zh-cht": "XTerm", "xloc": [ - "default.handlebars->47->1051", - "default3.handlebars->35->1048" + "default.handlebars->47->1055", + "default3.handlebars->35->1052" ] }, { @@ -93518,8 +93559,8 @@ "zh-cht": "科薩", "xloc": [ "default-mobile.handlebars->11->308", - "default.handlebars->47->2048", - "default3.handlebars->35->2029", + "default.handlebars->47->2052", + "default3.handlebars->35->2033", "login2.handlebars->7->194" ] }, @@ -93531,18 +93572,18 @@ "default-mobile.handlebars->11->856", "default-mobile.handlebars->11->859", "default-mobile.handlebars->11->862", - "default.handlebars->47->1701", - "default.handlebars->47->1704", - "default.handlebars->47->1707", - "default3.handlebars->35->1684", - "default3.handlebars->35->1687", - "default3.handlebars->35->1690" + "default.handlebars->47->1705", + "default.handlebars->47->1708", + "default.handlebars->47->1711", + "default3.handlebars->35->1688", + "default3.handlebars->35->1691", + "default3.handlebars->35->1694" ] }, { "en": "Yeti", "xloc": [ - "default3.handlebars->35->2101" + "default3.handlebars->35->2105" ] }, { @@ -93572,8 +93613,8 @@ "zh-cht": "意第緒文", "xloc": [ "default-mobile.handlebars->11->309", - "default.handlebars->47->2049", - "default3.handlebars->35->2030", + "default.handlebars->47->2053", + "default3.handlebars->35->2034", "login2.handlebars->7->195" ] }, @@ -93790,14 +93831,14 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->47->1851", - "default3.handlebars->35->1832" + "default.handlebars->47->1855", + "default3.handlebars->35->1836" ] }, { "en": "Zephyr", "xloc": [ - "default3.handlebars->35->2102" + "default3.handlebars->35->2106" ] }, { @@ -93857,8 +93898,8 @@ "zh-chs": "压缩文件名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->47->1576", - "default3.handlebars->35->1561", + "default.handlebars->47->1580", + "default3.handlebars->35->1565", "sharing.handlebars->11->68" ] }, @@ -93888,8 +93929,8 @@ "zh-chs": "缩放至适合范围", "zh-cht": "縮放至適合範圍", "xloc": [ - "default.handlebars->47->877", - "default3.handlebars->35->874" + "default.handlebars->47->881", + "default3.handlebars->35->878" ] }, { @@ -93918,10 +93959,10 @@ "zh-chs": "放大到一定程度", "zh-cht": "放大到一定程度", "xloc": [ - "default.handlebars->47->874", - "default.handlebars->47->880", - "default3.handlebars->35->871", - "default3.handlebars->35->877" + "default.handlebars->47->878", + "default.handlebars->47->884", + "default3.handlebars->35->875", + "default3.handlebars->35->881" ] }, { @@ -93950,10 +93991,10 @@ "zh-chs": "缩小到一定程度", "zh-cht": "縮小到一定程度", "xloc": [ - "default.handlebars->47->875", - "default.handlebars->47->881", - "default3.handlebars->35->872", - "default3.handlebars->35->878" + "default.handlebars->47->879", + "default.handlebars->47->885", + "default3.handlebars->35->876", + "default3.handlebars->35->882" ] }, { @@ -93966,10 +94007,10 @@ "pl": "Zulip", "uk": "Zulip", "xloc": [ - "default.handlebars->47->1806", - "default.handlebars->47->3043", - "default3.handlebars->35->1788", - "default3.handlebars->35->3037" + "default.handlebars->47->1810", + "default.handlebars->47->3047", + "default3.handlebars->35->1792", + "default3.handlebars->35->3041" ] }, { @@ -93999,8 +94040,8 @@ "zh-cht": "祖魯族", "xloc": [ "default-mobile.handlebars->11->310", - "default.handlebars->47->2050", - "default3.handlebars->35->2031", + "default.handlebars->47->2054", + "default3.handlebars->35->2035", "login2.handlebars->7->196" ] }, @@ -94633,8 +94674,8 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->47->3415", - "default3.handlebars->35->3403" + "default.handlebars->47->3438", + "default3.handlebars->35->3426" ] }, { @@ -94738,8 +94779,8 @@ { "en": "allow override", "xloc": [ - "default.handlebars->47->2196", - "default3.handlebars->35->2192" + "default.handlebars->47->2200", + "default3.handlebars->35->2196" ] }, { @@ -94959,6 +95000,15 @@ "messenger.handlebars->remoteImage->3->13" ] }, + { + "en": "c:", + "xloc": [ + "default.handlebars->47->854", + "default.handlebars->47->855", + "default3.handlebars->35->851", + "default3.handlebars->35->852" + ] + }, { "bs": "cancelhelp", "ca": "cancelhelp", @@ -95166,8 +95216,17 @@ "zh-chs": "config.json", "zh-cht": "config.json", "xloc": [ - "default.handlebars->47->2171", - "default3.handlebars->35->2167" + "default.handlebars->47->2175", + "default3.handlebars->35->2171" + ] + }, + { + "en": "connectivity:", + "xloc": [ + "default.handlebars->47->852", + "default.handlebars->47->853", + "default3.handlebars->35->849", + "default3.handlebars->35->850" ] }, { @@ -95197,8 +95256,8 @@ "zh-cht": "console.txt", "xloc": [ "default-mobile.handlebars->11->928", - "default.handlebars->47->1774", - "default3.handlebars->35->1757" + "default.handlebars->47->1778", + "default3.handlebars->35->1761" ] }, { @@ -95228,8 +95287,8 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->11->382", - "default.handlebars->47->2532", - "default3.handlebars->35->2529" + "default.handlebars->47->2536", + "default3.handlebars->35->2533" ] }, { @@ -95258,7 +95317,7 @@ "zh-chs": "data:image / png; base64,", "zh-cht": "data:image / png; base64,", "xloc": [ - "player.handlebars->3->45" + "player.handlebars->3->48" ] }, { @@ -95496,10 +95555,10 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->47->2726", - "default.handlebars->47->2731", - "default3.handlebars->35->2723", - "default3.handlebars->35->2728" + "default.handlebars->47->2730", + "default.handlebars->47->2735", + "default3.handlebars->35->2727", + "default3.handlebars->35->2732" ] }, { @@ -95528,10 +95587,10 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->47->2728", "default.handlebars->47->2732", - "default3.handlebars->35->2725", - "default3.handlebars->35->2729" + "default.handlebars->47->2736", + "default3.handlebars->35->2729", + "default3.handlebars->35->2733" ] }, { @@ -95620,10 +95679,10 @@ "zh-chs": "空闲", "zh-cht": "免費", "xloc": [ - "default.handlebars->47->3350", - "default.handlebars->47->3353", - "default3.handlebars->35->3338", - "default3.handlebars->35->3341" + "default.handlebars->47->3373", + "default.handlebars->47->3376", + "default3.handlebars->35->3361", + "default3.handlebars->35->3364" ] }, { @@ -95855,10 +95914,10 @@ "nl": "https://api.callmebot.com/...", "pl": "https://api.callmebot.com/...", "xloc": [ - "default.handlebars->47->1821", - "default.handlebars->47->3058", - "default3.handlebars->35->1803", - "default3.handlebars->35->3052" + "default.handlebars->47->1825", + "default.handlebars->47->3062", + "default3.handlebars->35->1807", + "default3.handlebars->35->3056" ] }, { @@ -95926,10 +95985,10 @@ "en": "https://hooks.slack.com/...", "nl": "https://hooks.slack.com/...", "xloc": [ - "default.handlebars->47->1825", - "default.handlebars->47->3062", - "default3.handlebars->35->1807", - "default3.handlebars->35->3056" + "default.handlebars->47->1829", + "default.handlebars->47->3066", + "default3.handlebars->35->1811", + "default3.handlebars->35->3060" ] }, { @@ -95958,8 +96017,8 @@ "zh-chs": "ID、姓名、电子邮件、创建、lastlogin、组、authfactors、siteadmin、useradmin、锁定", "zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定", "xloc": [ - "default.handlebars->47->2807", - "default3.handlebars->35->2803" + "default.handlebars->47->2811", + "default3.handlebars->35->2807" ] }, { @@ -96139,8 +96198,8 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->47->2835", - "default3.handlebars->35->2829" + "default.handlebars->47->2839", + "default3.handlebars->35->2833" ] }, { @@ -96226,8 +96285,8 @@ "zh-cht": "macOS", "xloc": [ "default-mobile.handlebars->11->508", - "default.handlebars->47->915", - "default3.handlebars->35->912" + "default.handlebars->47->919", + "default3.handlebars->35->916" ] }, { @@ -96374,9 +96433,9 @@ "zh-cht": "macOS ARM (64位)", "xloc": [ "agentinvite.handlebars->container->column_l->5->1->tmacostabarm64", - "default.handlebars->47->1351", + "default.handlebars->47->1355", "default.handlebars->47->648", - "default3.handlebars->35->1339", + "default3.handlebars->35->1343", "default3.handlebars->35->645" ] }, @@ -96406,8 +96465,8 @@ "zh-chs": "macOS x86 (64位)", "zh-cht": "macOS x86 (64位)", "xloc": [ - "default.handlebars->47->1350", - "default3.handlebars->35->1338" + "default.handlebars->47->1354", + "default3.handlebars->35->1342" ] }, { @@ -96533,8 +96592,8 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->11->383", - "default.handlebars->47->2533", - "default3.handlebars->35->2530" + "default.handlebars->47->2537", + "default3.handlebars->35->2534" ] }, { @@ -96625,10 +96684,10 @@ "pl": "ntfy", "uk": "ntfy", "xloc": [ - "default.handlebars->47->1805", - "default.handlebars->47->3042", - "default3.handlebars->35->1787", - "default3.handlebars->35->3036" + "default.handlebars->47->1809", + "default.handlebars->47->3046", + "default3.handlebars->35->1791", + "default3.handlebars->35->3040" ] }, { @@ -96870,8 +96929,8 @@ { "en": "prefer --agentname", "xloc": [ - "default.handlebars->47->2195", - "default3.handlebars->35->2191" + "default.handlebars->47->2199", + "default3.handlebars->35->2195" ] }, { @@ -96930,8 +96989,8 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->47->2168", - "default3.handlebars->35->2166" + "default.handlebars->47->2172", + "default3.handlebars->35->2170" ] }, { @@ -96960,8 +97019,8 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->47->3409", - "default3.handlebars->35->3397" + "default.handlebars->47->3432", + "default3.handlebars->35->3420" ] }, { @@ -96969,10 +97028,10 @@ "en": "service_", "nl": "service_", "xloc": [ - "default.handlebars->47->1493", - "default.handlebars->47->1496", - "default3.handlebars->35->1478", - "default3.handlebars->35->1480" + "default.handlebars->47->1497", + "default.handlebars->47->1500", + "default3.handlebars->35->1482", + "default3.handlebars->35->1484" ] }, { @@ -97095,8 +97154,8 @@ "zh-chs": "这将删除现有服务器数据。", "zh-cht": "這將刪除現有伺服器數據。", "xloc": [ - "default.handlebars->47->2157", - "default3.handlebars->35->2157" + "default.handlebars->47->2161", + "default3.handlebars->35->2161" ] }, { @@ -97125,8 +97184,8 @@ "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->47->3383", - "default3.handlebars->35->3371" + "default.handlebars->47->3406", + "default3.handlebars->35->3394" ] }, { @@ -97155,8 +97214,8 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->47->3408", - "default3.handlebars->35->3396" + "default.handlebars->47->3431", + "default3.handlebars->35->3419" ] }, { @@ -97226,10 +97285,10 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->47->3351", - "default.handlebars->47->3354", - "default3.handlebars->35->3339", - "default3.handlebars->35->3342" + "default.handlebars->47->3374", + "default.handlebars->47->3377", + "default3.handlebars->35->3362", + "default3.handlebars->35->3365" ] }, { @@ -97266,8 +97325,8 @@ "en": "true", "nl": "waar", "xloc": [ - "default.handlebars->47->2790", - "default3.handlebars->35->2786" + "default.handlebars->47->2794", + "default3.handlebars->35->2790" ] }, { @@ -97390,10 +97449,10 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->47->2803", - "default.handlebars->47->2808", - "default3.handlebars->35->2799", - "default3.handlebars->35->2804" + "default.handlebars->47->2807", + "default.handlebars->47->2812", + "default3.handlebars->35->2803", + "default3.handlebars->35->2808" ] }, { @@ -97422,10 +97481,10 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->47->2805", "default.handlebars->47->2809", - "default3.handlebars->35->2801", - "default3.handlebars->35->2805" + "default.handlebars->47->2813", + "default3.handlebars->35->2805", + "default3.handlebars->35->2809" ] }, { @@ -97439,10 +97498,10 @@ "pl": "nazwauzytkownika@domena.pl", "uk": "ім'я_користувача@server.ua", "xloc": [ - "default.handlebars->47->1824", - "default.handlebars->47->3061", - "default3.handlebars->35->1806", - "default3.handlebars->35->3055" + "default.handlebars->47->1828", + "default.handlebars->47->3065", + "default3.handlebars->35->1810", + "default3.handlebars->35->3059" ] }, { @@ -97456,10 +97515,10 @@ "pl": "nazwauzytkownika@serwer.pl", "uk": "ім'я_користувача@server.ua", "xloc": [ - "default.handlebars->47->1820", - "default.handlebars->47->3057", - "default3.handlebars->35->1802", - "default3.handlebars->35->3051" + "default.handlebars->47->1824", + "default.handlebars->47->3061", + "default3.handlebars->35->1806", + "default3.handlebars->35->3055" ] }, { @@ -97488,8 +97547,8 @@ "zh-chs": "utc,时间,打字,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->47->2730", - "default3.handlebars->35->2727" + "default.handlebars->47->2734", + "default3.handlebars->35->2731" ] }, { @@ -97630,10 +97689,10 @@ "xloc": [ "default-mobile.handlebars->11->874", "default-mobile.handlebars->11->880", - "default.handlebars->47->1719", - "default.handlebars->47->1725", - "default3.handlebars->35->1702", - "default3.handlebars->35->1708" + "default.handlebars->47->1723", + "default.handlebars->47->1729", + "default3.handlebars->35->1706", + "default3.handlebars->35->1712" ] }, { @@ -97795,10 +97854,10 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->47->2505", - "default.handlebars->47->2510", - "default3.handlebars->35->2502", - "default3.handlebars->35->2507" + "default.handlebars->47->2509", + "default.handlebars->47->2514", + "default3.handlebars->35->2506", + "default3.handlebars->35->2511" ] }, { @@ -97853,12 +97912,12 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->47->2503", - "default.handlebars->47->2508", - "default.handlebars->47->3142", - "default3.handlebars->35->2500", - "default3.handlebars->35->2505", - "default3.handlebars->35->3130" + "default.handlebars->47->2507", + "default.handlebars->47->2512", + "default.handlebars->47->3146", + "default3.handlebars->35->2504", + "default3.handlebars->35->2509", + "default3.handlebars->35->3134" ] }, { @@ -97915,14 +97974,14 @@ "xloc": [ "default-mobile.handlebars->11->868", "default-mobile.handlebars->11->885", - "default.handlebars->47->1713", - "default.handlebars->47->1730", - "default.handlebars->47->2504", - "default.handlebars->47->2509", - "default3.handlebars->35->1696", - "default3.handlebars->35->1713", - "default3.handlebars->35->2501", - "default3.handlebars->35->2506" + "default.handlebars->47->1717", + "default.handlebars->47->1734", + "default.handlebars->47->2508", + "default.handlebars->47->2513", + "default3.handlebars->35->1700", + "default3.handlebars->35->1717", + "default3.handlebars->35->2505", + "default3.handlebars->35->2510" ] }, { @@ -97952,8 +98011,8 @@ "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->11->866", - "default.handlebars->47->1711", - "default3.handlebars->35->1694" + "default.handlebars->47->1715", + "default3.handlebars->35->1698" ] }, { @@ -98008,8 +98067,8 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->47->3030", - "default3.handlebars->35->3024" + "default.handlebars->47->3034", + "default3.handlebars->35->3028" ] }, { @@ -98038,10 +98097,10 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->47->2502", - "default.handlebars->47->2507", - "default3.handlebars->35->2499", - "default3.handlebars->35->2504" + "default.handlebars->47->2506", + "default.handlebars->47->2511", + "default3.handlebars->35->2503", + "default3.handlebars->35->2508" ] }, { @@ -98071,10 +98130,10 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->11->371", - "default.handlebars->47->2518", - "default.handlebars->47->3164", - "default3.handlebars->35->2515", - "default3.handlebars->35->3152", + "default.handlebars->47->2522", + "default.handlebars->47->3174", + "default3.handlebars->35->2519", + "default3.handlebars->35->3162", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->102" @@ -98106,8 +98165,8 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->47->2497", - "default3.handlebars->35->2494" + "default.handlebars->47->2501", + "default3.handlebars->35->2498" ] }, { @@ -98162,8 +98221,8 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->47->1413", - "default3.handlebars->35->1400", + "default.handlebars->47->1417", + "default3.handlebars->35->1404", "sharing.handlebars->11->16" ] }, @@ -98193,8 +98252,8 @@ "zh-chs": "{0} 从 {1} 到 {2}。", "zh-cht": "{0} 從 {1} 到 {2}。", "xloc": [ - "default.handlebars->47->1308", - "default3.handlebars->35->1299" + "default.handlebars->47->1312", + "default3.handlebars->35->1303" ] }, { @@ -98223,8 +98282,8 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->47->2500", - "default3.handlebars->35->2497" + "default.handlebars->47->2504", + "default3.handlebars->35->2501" ] }, { @@ -98253,8 +98312,8 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->47->2985", - "default3.handlebars->35->2979" + "default.handlebars->47->2989", + "default3.handlebars->35->2983" ] }, { @@ -98339,8 +98398,8 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->47->2498", - "default3.handlebars->35->2495" + "default.handlebars->47->2502", + "default3.handlebars->35->2499" ] }, { @@ -98400,8 +98459,8 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->47->2499", - "default3.handlebars->35->2496" + "default.handlebars->47->2503", + "default3.handlebars->35->2500" ] }, { @@ -98571,8 +98630,8 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->47->2740", - "default3.handlebars->35->2737" + "default.handlebars->47->2744", + "default3.handlebars->35->2741" ] }, { @@ -99095,7 +99154,7 @@ "default-mobile.handlebars->11->440", "default-mobile.handlebars->11->444", "default-mobile.handlebars->11->448", - "default.handlebars->47->2744", + "default.handlebars->47->2748", "default.handlebars->47->460", "default.handlebars->47->463", "default.handlebars->47->467", @@ -99103,7 +99162,7 @@ "default.handlebars->47->475", "default.handlebars->47->479", "default.handlebars->47->483", - "default3.handlebars->35->2741", + "default3.handlebars->35->2745", "default3.handlebars->35->457", "default3.handlebars->35->460", "default3.handlebars->35->464", @@ -99400,10 +99459,10 @@ "xloc": [ "default-mobile.handlebars->11->872", "default-mobile.handlebars->11->878", - "default.handlebars->47->1717", - "default.handlebars->47->1723", - "default3.handlebars->35->1700", - "default3.handlebars->35->1706" + "default.handlebars->47->1721", + "default.handlebars->47->1727", + "default3.handlebars->35->1704", + "default3.handlebars->35->1710" ] }, { @@ -99432,10 +99491,10 @@ "zh-chs": "{0}、{1} {2} 分钟", "zh-cht": "{0}、{1} {2} 分鐘", "xloc": [ - "default.handlebars->47->1109", - "default.handlebars->47->2262", - "default3.handlebars->35->1106", - "default3.handlebars->35->2258" + "default.handlebars->47->1113", + "default.handlebars->47->2266", + "default3.handlebars->35->1110", + "default3.handlebars->35->2262" ] }, { @@ -99464,10 +99523,10 @@ "zh-chs": "{0}、{1} {2} 分钟", "zh-cht": "{0}、{1} {2} 分鐘", "xloc": [ - "default.handlebars->47->1110", - "default.handlebars->47->2263", - "default3.handlebars->35->1107", - "default3.handlebars->35->2259" + "default.handlebars->47->1114", + "default.handlebars->47->2267", + "default3.handlebars->35->1111", + "default3.handlebars->35->2263" ] }, { @@ -99496,10 +99555,10 @@ "zh-chs": "{0},{1}至{2}", "zh-cht": "{0},{1}至{2}", "xloc": [ - "default.handlebars->47->1108", - "default.handlebars->47->2261", - "default3.handlebars->35->1105", - "default3.handlebars->35->2257" + "default.handlebars->47->1112", + "default.handlebars->47->2265", + "default3.handlebars->35->1109", + "default3.handlebars->35->2261" ] }, { @@ -99586,8 +99645,8 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->47->2512", - "default3.handlebars->35->2509" + "default.handlebars->47->2516", + "default3.handlebars->35->2513" ] }, { @@ -99616,8 +99675,8 @@ "zh-chs": "{1}k在{0}个文件中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->47->2511", - "default3.handlebars->35->2508" + "default.handlebars->47->2515", + "default3.handlebars->35->2512" ] }, { diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index 0fe029af..6473a2b8 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -2300,7 +2300,7 @@ if (idtype == 'devices') { go(2); } if (idtype == 'files') { // Remind the user to add two factor authentication - if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access this feature until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } + if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || (userinfo.otpduo > 0) || (userinfo.otpdev > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access this feature until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } go(5); } } @@ -2583,7 +2583,7 @@ if ((userinfo.emailVerified !== true) && (serverinfo.emailcheck == true) && (userinfo.siteadmin != 0xFFFFFFFF)) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \"My Account\" to change and verify an email address."); return; } // Remind the user to add two factor authentication - if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } + if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || (userinfo.otpduo > 0) || (userinfo.otpdev > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } // We are allowed, let's prompt to information var x = addHtmlValue("Name", ''); @@ -2677,7 +2677,7 @@ function gotoMesh(meshid) { // Remind the user to add two factor authentication - if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access this feature until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } + if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || (userinfo.otpduo > 0) || (userinfo.otpdev > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access this feature until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } currentMesh = meshes[meshid]; if (currentMesh == null) { goBack(); } p20updateMesh(); @@ -3681,7 +3681,7 @@ if ((userinfo.emailVerified !== true) && (serverinfo.emailcheck == true) && (userinfo.siteadmin != 0xFFFFFFFF)) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until a email address is verified. This is required for password recovery. Go to the \"My Account\" to change and verify an email address."); return; } // Remind the user to add two factor authentication - if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } + if ((features & 0x00040000) && !((userinfo.otpsecret == 1) || (userinfo.otphkeys > 0) || (userinfo.otpkeys > 0) || (userinfo.otpduo > 0) || (userinfo.otpdev > 0) || ((features & 0x00800000) && (userinfo.otpekey == 1)))) { setDialogMode(2, "Account Security", 1, null, "Unable to access a device until two-factor authentication is enabled. This is required for extra security. Go to the \"My Account\" and look at the \"Account Security\" section."); return; } var node = getNodeFromId(nodeid); if (node == null) { goBack(); return; } @@ -7631,7 +7631,16 @@ function printDateTime(d) { return d.toLocaleString(args.locale); } function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; function nobreak(x) { return x.split(' ').join(' '); } - function getUserName(userid) { if (users && users[userid] != null) return users[userid].name; return userid.split('/')[2]; } + function getUserName(userid) { + var useridsplit = userid.split('/'), userid2 = useridsplit[0] + '/' + useridsplit[1] + '/' + useridsplit[2], guestname = ''; + if ((useridsplit.length == 4) && (useridsplit[3].startsWith('guest:'))) { guestname = ' - ' + decode_utf8(atob(useridsplit[3].substring(6))); } + if (users && users[userid2] != null) { if (users[userid2].realname != null) return (users[userid2].realname + guestname); else return (users[userid2].name + guestname); } + if (currentNode && currentNode.links && currentNode.links[userid] && currentNode.links[userid].name != null) { return (currentNode.links[userid].name + guestname); } + if (userid == userinfo._id) { return (userinfo.name + guestname); } + if (nodes) { for (var a in nodes) { if (nodes[a].links) { for (var b in nodes[a].links) { if (nodes[a].links[b].name && b == userid) return (nodes[a].links[b].name + guestname); } } } } + if (meshes) { for (var a in meshes) { if (meshes[a].links) { for (var b in meshes[a].links) { if (meshes[a].links[b].name && b == userid) return (meshes[a].links[b].name + guestname); } } } } + return (useridsplit[2] + guestname); + } function addDetailItem(title, value, state) { return '
    ' + nobreak(title) + '' + value + '
    '; } function isPrivateIP(a) { return (a.startsWith('10.') || a.startsWith('172.16.') || a.startsWith('192.168.')); } function encodeURIComponentEx(txt) { return encodeURIComponent(txt).replace(/'/g, '%27'); }; diff --git a/views/default.handlebars b/views/default.handlebars index 5bbc9a11..738e62f3 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -326,7 +326,7 @@     -   +   - +